{"commit": "b9122dfd25a583844e02614a75b204cd9677bfb6", "message": "libvirt: Reset can_fallocate in test setUp()\n\nimagebackend.Image stores global data in Image.can_fallocate. This is\nnormally irrelevant, but can cause the test_prealloc_image tests\nto fail non-deterministically depending on test order.\n\nChange-Id: I21e666de66b39130d98c6126a4e0c0b9932d7286\n", "proba": 1.8395288861938752e-05} {"commit": "d1335e1e7ade957acc8097954c88a47ca88b1734", "message": "feat(backend): add possible \"departments\" argument for initdb\n", "proba": 2.0267478248570114e-05} {"commit": "479fcc6c1684fed57b07176e7ad789f7868deb0c", "message": "adding more time after switching view to edit\n", "proba": 1.3628681472255266e-07} {"commit": "da6d57e8a7845ef6ec6590935a7d573a1758f524", "message": "add encrypt/decrypt\n", "proba": 0.9986133575439453} {"commit": "7519baec49bfc770c98e8ea184021a36bfba834b", "message": "we should not ignore user_id - oops\n", "proba": 1.0246282045045518e-06} {"commit": "15f48f328c2ee412e423f8274c25edc7fe84967e", "message": "Add links to learnxinyminutes\n", "proba": 1.5676916120810347e-07} {"commit": "34d865275624e804a2faece979db8bd8bac08ead", "message": "swap classes around\n", "proba": 4.1979760112553777e-07} {"commit": "d92837075fddc8eae7c594455747caab3dbdee56", "message": "Workaround for inefficient level generator\n\nThreading! Levels generated while the player plays;\nonly the first should be a bother to wait for.\n", "proba": 1.088479493205341e-07} {"commit": "e2854b074f82de50560499a9551f3f1aaae94989", "message": "CHv3: few optims\n\nStart at Prefix if set\nStop if keys doesn't match anymore prefix\nTurn off the pattern matching\n", "proba": 1.6067856734025554e-07} {"commit": "de4677168fd0ea96025ade878f8c1c5082502055", "message": "\tmodified: libexec/python/utils.py\n", "proba": 1.6281678654195275e-06} {"commit": "a65fe79b415c2bb834c46f50d6533aeea992d60e", "message": "conv batch norm\n", "proba": 7.409000772895524e-07} {"commit": "2643911888f1c7d7f6b96cc7b50478fdda9260a7", "message": "container_hierarchy: fix error message\n", "proba": 3.86778128813603e-06} {"commit": "0dca364aaa308d0f94fa37a8f83bc90533811829", "message": "First lists exercise done\n", "proba": 2.3520573222413077e-07} {"commit": "fc2ce593c4d6fb216939d66c1530604cf765bb72", "message": "list1.py to python3 print syntax\n", "proba": 0.010824664495885372} {"commit": "4c022de00ffea2bdaaea626faf44680dd1c3f9a6", "message": "Updated batchconfig.py to allow for single file output\n", "proba": 2.7637548782877275e-07} {"commit": "4cabb748df354a4e18168e2830558b5dacc3dbd3", "message": "Removed analyze_source.py script.\n", "proba": 1.2604625965195737e-07} {"commit": "e421596724e75e86001b2e28cd81dc7e55e0bbf7", "message": "Use absolute path for system_profiler\n", "proba": 1.021899720399233e-06} {"commit": "439afc337fec1064ff8eff58625f54f8450dce47", "message": "nova.exception.wrap_exception will re-raise some exceptions, but in the process of possibly notifying that an exception has occurred, it may clobber the current exception information. nova.utils.to_primitive in particular (used by the notifier code) will catch and handle an exception clobbering the current exception being handled in wrap_exception. Eventually when using the bare 'raise', it will attempt to raise None resulting a completely different and unhelpful exception.\n\nThe patch saves the exception at the beginning of wrap_exception and then re-raises the original exception avoiding the possibility of a clobbered exception.", "proba": 5.281716539684567e-07} {"commit": "83db44ffe7277f6d68ca153766fe4f8947e8c62f", "message": "More pygear goodies! Fixed, debugged and tested a second gearmand -- tasksets work over multiple servers! Made debug mode more clear; Made non-unique tasks-to-server selection smarter;\n\ngit-svn-id: 4c08e0f901c924964e8626473d70c86c180067a2@299 011c6a6d-750f-0410-a5f6-93fdcd050bc4\n", "proba": 1.5625808202912594e-07} {"commit": "a13613232b854874170affcaaeaf1dcd0afc6edd", "message": "Avoid shadowing Exception 'message' attribute\n\nThe Exception class has a 'message' attribute:\n\n >>> Exception('foo').message\n 'foo'\n\nThis attribute is deprecated since Python 2.6 and removed in Python 3:\n\n http://www.python.org/dev/peps/pep-0352/#retracted-ideas\n\nTo help porting to Python 3, we should avoid using the .message\nattribute at all. However, confusingly, we follow a pattern that results\nin the attribute being shadowed by a class attribute:\n\n >>> class MyException(Exception):\n ... message = 'Foo %s'\n ... def __init__(self, bar):\n ... message = self.message % bar\n ... super(MyException, self).__init__(message)\n ...\n >>> MyException('bar').message\n 'Foo %s'\n >>> str(MyException('bar'))\n 'Foo bar'\n\nwhereas, we obviously want behaviour like this:\n\n >>> class MyException(Exception):\n ... msg_fmt = 'Foo %s'\n ... def __init__(self, bar):\n ... message = self.msg_fmt % bar\n ... super(MyException, self).__init__(message)\n ...\n >>> MyException('bar').message\n 'Foo bar'\n >>> str(MyException('bar'))\n 'Foo bar'\n\nAvoid this shadowing by using 'msg_fmt' as the name of the class\nattribute so it's more obvious where we're actually using the deprecated\n.message attribute.\n\nAlso add a test which fails without this fix.\n\nChange-Id: I304f31edec20b1293cf6c8de931415590fde6752\n", "proba": 0.9999992847442627} {"commit": "2333a7b2ec35dab31efd994acc1ec149914b50d8", "message": "Network: interface attach and detach raised confusing exception\n\nWhen the aforementioned operations failed they raised an exception\nthat was not coherent - this is due to the fact that the instance object\nwas passed to the exception. That would print the whole instance object\nwhich is really confusing to a openstack user. The exceptions should has passed\nthe instance ID and not the instance.\n\nTrivialFix\n\nChange-Id: If3fa89b17210c1db3540cd813157b51e786e1494\nCloses-bug: #1335076\n", "proba": 8.453554619336501e-05} {"commit": "13c9864d6482598e3647bdd296ed978eff0d0cd0", "message": "Don't crash if geodata isn't set", "proba": 7.679135478610988e-07} {"commit": "9ee74816c0c2a28f7d056d524111cd940513766a", "message": "add NotFound to fake.py and document it", "proba": 1.5084309268331708e-07} {"commit": "372abd16aa5ff612ac0c8b17c4615d610639cb18", "message": "1.3-RC3", "proba": 4.658707268845319e-07} {"commit": "489c84c1003a7feca0cfa0ae2f2d55062da12487", "message": "New feature: matrix creation with np.m\n", "proba": 1.0533440217841417e-05} {"commit": "317e2ebc78d27b5e4945f69fec83f5acfe61d4a6", "message": "version bump to 1.1b1\n", "proba": 4.3028430241065507e-07} {"commit": "2343cffbfc1a98eb7cd56875d0da8e94c5cc5576", "message": "hotfix to regret computation functions. Something important was missing.\n", "proba": 1.332267771658735e-07} {"commit": "44eef6340d61f6e289df86dc7fa8f16cae468d11", "message": "Redraw the model if it has changed\n\nThe old model is made not visible and the new model is drwan on the window\n", "proba": 0.00014869903679937124} {"commit": "fe49010f7de06949d293432e68f3389020fc3d1c", "message": "Nicer string representation of a connection\n", "proba": 2.872375489459955e-06} {"commit": "92cde76a64bc1f52a26f70393bf8e66f8cb48579", "message": "fix default image paths in content editor\n", "proba": 1.6987828530545812e-06} {"commit": "75a13d29355cf45dc67f42cb2a5c946747309258", "message": "Tweaked a variable name in VCL utilities.", "proba": 1.0803137939774388e-07} {"commit": "63c3bb0812bf4030e2856d7951b37afa682420a2", "message": "Reproduce POST showing up as PUT error", "proba": 6.675535928479803e-07} {"commit": "ac405c829e11c233fc03f5ec0f77b0da7978cd73", "message": "Fix 'clean_affiliation' function\n\n- Define 'sunet_id' and 'stanford_department' error messages\n- Modify cleaning function to check for both existance and validity of fields\n", "proba": 6.128456334408838e-06} {"commit": "d7c7818277a33477f10a877cf78ec0bac2b77688", "message": "Made logic initialization args optional\n", "proba": 3.31425411559394e-07} {"commit": "db7ec8813841f20b4ae4f47899f81db9c825638a", "message": "test for congresista view\n", "proba": 1.5554323340438714e-07} {"commit": "530edeea6f39ec4b871f1dd0228e91a1f1426bf5", "message": "Fix a bunch of bad links and missing docs in contrib.\nChange: 154820641\n", "proba": 6.850643785583088e-07} {"commit": "df34b174502a32e40cbcac8d9b464a5b3312557d", "message": "lemmas handle regex attempts correctly\n", "proba": 9.999769190471852e-07} {"commit": "965d282e7be24a6472aa69d904c9d83a3a53f9a0", "message": "removes cache from calls to play_round_robin\n", "proba": 8.155078035088081e-07} {"commit": "9472073f0e50e3f0d078f6436ea59e17d70491b1", "message": "Make src_dir optional.\n\nPiperOrigin-RevId: 209220232\n", "proba": 0.9998041987419128} {"commit": "177b4cee1061cd33bf1306f45e2a382f91942547", "message": "fuckit\n", "proba": 1.62198887210252e-06} {"commit": "f58bf32f888f1cc26eea440e67ef95af0e624dd4", "message": "Press and Dyson values for reference\n", "proba": 1.1648771902628141e-07} {"commit": "cf91c81677b372db735fec060af6f0224a0de371", "message": "support mapnik2 as well\n\ngit-svn-id: 73c701e01722c46394f20a5454405c8494da0091@28459 b9d5c4c9-76e1-0310-9c85-f3177eceb1e4\n", "proba": 2.853956004855718e-07} {"commit": "932f5759ace3ea594d30123ea4a1417a992620c5", "message": "Removed commented code\n\n--HG--\nextra : convert_revision : g.bagnoli%40asidev.com-20110520085851-ve2nq7hzdj9i4rc3\n", "proba": 2.60551217934335e-07} {"commit": "ecd0ab9dc47012705d5df10dcd2e43bb4df73088", "message": "unfinished documentation of Jsf*ck\n", "proba": 1.491521430807552e-07} {"commit": "9b3658ae9f3214b48109c66338ef49f9f7d13814", "message": "include correct multiplier for miles\n", "proba": 1.1038300726795569e-05} {"commit": "a14ac562ce82d7386114534b45f9ceaa87868df8", "message": "Move delta_u, sample_size_u to SurfaceContainer\nAltering the API in that level can become extremely time consuming\n", "proba": 1.7904723392803135e-07} {"commit": "de1b02a3712222fa764604868d4f1fb2d06bac14", "message": "Replace set_tessellator with a property and add tessellate function\n", "proba": 3.836712210159021e-07} {"commit": "c6b0657d7e4d7ff2120a5cc2420818c126af9c54", "message": "truediv refactored\n", "proba": 1.9889700979547342e-06} {"commit": "9465a52385f36ef279d299b7e4fabbae5faa5cf7", "message": "removed comment on 806\n", "proba": 1.6965601901119953e-07} {"commit": "808da943a31b0bbae662bc93b7841ccf6c2489c7", "message": "Change to correct a performance problem introduced in change set 537 when implementing the ability to create a BinTableHDU directly from a ndarray (CNSHD787185)\n\ngit-svn-id: 5305e2c1a78737cf7dd5f8f44e9bbbd00348fde7@651 ed100bfc-0583-0410-97f2-c26b58777a21\n", "proba": 6.45789043574041e-07} {"commit": "1d3ada231db0202cc8e4c734ad0fa6a2dd8ed3ac", "message": "Preven infinite loop due to map being generator in Python3\n", "proba": 1.5685439791468525e-07} {"commit": "29bfeb228466659a36cd7bf7a007a9db5506cf45", "message": "Fix default update_interval in ThreadPoolText\n\nPrevious default of \"None\" caused widgets to constantly update\nresulting in high CPU usage. New default is update interval of\n10 minutes.\n\nAlso changes reference to ThreadPoolText in InLoopPollText's\ndocstring.\n", "proba": 1.0272899686469827e-07} {"commit": "58f7da25df162555439f57e00402105c3b6a60be", "message": "Withdrawl_btc function\n", "proba": 8.361192158190534e-06} {"commit": "5f03ef58e5ce32032efc4e0bf6d801ecc318b734", "message": "Fix python-lint complaints\n", "proba": 0.0005190984811633825} {"commit": "b6d8a74d9224878b9dced5b4731fe0b74f1c348f", "message": "Version bump.\n", "proba": 1.5057217694902647e-07} {"commit": "f5319a339566e22e9c470e682b34b47bff4e7e57", "message": "nexys_video: cdc and data_width convertion now handled by litedram\n", "proba": 1.1990506720849226e-07} {"commit": "befd4f47747b97c83b7fcd99d5104ea904d553dc", "message": "[FIX] models: fix permission check in export_data\n\nThe permission check in BaseModel:export_data was checking if the\ncurrent user was the administrator user, instead of checking if the\nenvironment was administrator (i.e. it should also check if the sudo bit\nis set on the environment).\n\nThis commit fixes this and allows to export_data with a simple `sudo()`\ninstead of needing a `with_user(SUPERUSER_ID)`.\n\ncloses odoo/odoo#54645\n\nX-original-commit: f69f47b6ba5c6c462bf617f4876a39233f60034f\nSigned-off-by: Olivier Dony (odo) \nSigned-off-by: Paul Morelle <4950c5a1ead41dfa3dcc3f68ece6c9007ac6ccce@users.noreply.github.com>\n", "proba": 0.00021245582320261747} {"commit": "8242d59790d5588b5f37025684c0d7e3d009ebfa", "message": "Make feature name to be optional\n", "proba": 5.067125130153727e-06} {"commit": "bec42ba60b5359180391dbfc54039b837467eaf6", "message": "bugfix: using current branch as base for feature start\n", "proba": 9.52084917571483e-07} {"commit": "693dcdbed40d1b6e0188541038bd489cd1081f81", "message": "player: prompt > -> # when an admin.\n\nSuggested by Stella.\n", "proba": 9.886910135037397e-08} {"commit": "598049a4446fcecdbbf9b9889575241ac9ad9836", "message": "Fix for rotating non-native endian arrays with OpenCv\n", "proba": 3.3392035447832313e-07} {"commit": "b69bc088a7132473a2a3be4d60f06d5b25d7ea7a", "message": "Add unittest for beam_construct.chunk_atom\n", "proba": 4.905853074888e-06} {"commit": "f6fbd1f39b289e6aa8618332534fb8daebc75fc0", "message": "message: Fix bad comment\n", "proba": 5.576328112510964e-05} {"commit": "5825229ed98eb89da4836d3953da1aee6dcb42f3", "message": "clean up lib.curl\n", "proba": 0.0001094270555768162} {"commit": "b68b10d5d0a66137d9826c19044f313924179e1e", "message": "Moved resfinder resistance determination to separate script\n", "proba": 1.324294771620771e-07} {"commit": "829142d4c30886db2a2622605092072e979afcc9", "message": "Add __future__.annotations to cmd.py2\n", "proba": 0.9989302754402161} {"commit": "0683c7407137f0c3700644191e5c9e6e63dadd53", "message": "increase coverage\n", "proba": 2.526199125441053e-07} {"commit": "4bd681a07957a0c6a19d3cc6b8638df05d1074f5", "message": "Remove asserts that checked how adders created Reverb writers.\n\nAdders can write data to Reverb in different ways. By checking how the data is being written we limit the adders to operate in a specific way. For example, it is totally valid for the adder to store all of the data written via Adder.add() until the end of the episode and add it all then.\n\nPiperOrigin-RevId: 361762417\nChange-Id: I666f6fcceb5dece68a86bff6b2aa46bd3e3ff462\n", "proba": 1.7126977809311938e-06} {"commit": "844f315ed0e075f0ff8849ce9c290ffd7f84155a", "message": "position needs to be set after adding the ellipse to the window\n", "proba": 1.4285476481745718e-06} {"commit": "6d73ef168a421d5f7eb81cedb6010f215c266ad8", "message": "data: add docstring.\n", "proba": 3.4274562494829297e-06} {"commit": "307e76695c8133c1e1e65415ba92e5c6a10df1f7", "message": "fix: setting music artwork when video artwork downloading enabled\n", "proba": 3.119266693829559e-07} {"commit": "fcb73df1cb5680e898e05953e67552711e743ff4", "message": "test: Add another expected restart message (#11821)\n\nThis fixes tests randomly failing with\r\n\r\n File \"test/common/testlib.py\", line 779, in tearDown\r\n self.check_journal_messages()\r\n File \"test/common/testlib.py\", line 956, in check_journal_messages\r\n raise Error(first)\r\n testlib.Error: /base1/fonts/fontawesome.woff: external channel failed: terminated", "proba": 2.7908631636819337e-06} {"commit": "c6eeb54f33ad3acba1a23ac0b46dc2327f7b79bd", "message": "fix: update count notification after process is stopped\n", "proba": 3.9845608057476056e-07} {"commit": "6abd519d758269ce8b8b49b498750473e54a998e", "message": "generate more things from the data that we have\n", "proba": 1.7464926713728346e-05} {"commit": "1cec1ac7557e74f685340ec5d007200b7685cf6c", "message": "bumped sqlite version for empty insert test to 3.4\n\n\ngit-svn-id: 655ff90ec95d1eeadb1ee4bb9db742a3c015d499@3647 8cd8332f-0806-0410-a4b6-96f4b9520244\n", "proba": 1.0370088148192735e-06} {"commit": "d2d30be48b454dc29fbb21712917d0440109cc1b", "message": "Excluding older sqlite versions from the new insert tests. Currently conservative- 2.8 definitely fails, 3.3 works. The 3.0 and 3.1 binaries from sqlite.org segfault for me so the version check should be revisited when possible.\n\n\ngit-svn-id: 655ff90ec95d1eeadb1ee4bb9db742a3c015d499@3645 8cd8332f-0806-0410-a4b6-96f4b9520244\n", "proba": 8.543387593817897e-06} {"commit": "a2192c4d0fb0101526d96c3ad9267fcc653659ca", "message": "Fix error when desc digest parsed from networkstatus is None.\n\n * FIXES a bug where, if the nickname was not to spec (longer than 19\n characters), then the nickname and descriptor digest are both set to\n ``None`` and ``bridgedb.Bridges.parseStatusFile()`` attempts to\n format the null descriptor digest into hexadecimal.\n", "proba": 6.28915529432561e-07} {"commit": "bcae44f657cd4f1b699c3863378de23ab10e0fad", "message": "* Add set path to help in cases where pdb can't figure out the right\n path for its files\n\n* Add \"file\" command to print current file (f as short cut). No more up/down\ncombo\n", "proba": 4.422324764163932e-07} {"commit": "b36103945f792bdbcb22c4173410488ae416b111", "message": "add wait time config commands\n", "proba": 8.773611739343323e-07} {"commit": "3f3cd3dd5b6b971048b911e3530b673a0143d9f3", "message": "STY: quad assignment\n\nRecoded the quadrant definition assessment to remove deprecation warning.\n", "proba": 1.095222756930525e-07} {"commit": "2bcf966107535649d603df895f29f11fd620b512", "message": "Added Swagger constants\n", "proba": 2.0424060664936405e-07} {"commit": "4493247eb210fcc9bc9c6f7102f4b5b6d9f1d5c8", "message": "\n\ngit-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci_python/trunk/pytools@642 fe389314-cf27-0410-b35b-8c050e845b92\n", "proba": 1.1659357141979854e-06} {"commit": "7cc97fa7b837efa2a7a7eab3b934e0208d2a121d", "message": "Modification for actions admin form\n", "proba": 1.597145597997951e-07} {"commit": "3e63d8efcec28758f78c0efa6a02cec818d53aa5", "message": "[ADD] core: support for parent.xxx in modifiers of o2m sub-fields\n\ncloses odoo/odoo#34699\n\nSigned-off-by: Xavier Morel (xmo) <0f311f41b2be8e2b5de98776566d712cdc154ca4@odoo.com>", "proba": 1.1615016148880386e-07} {"commit": "6e3e1953249ab386c2da9ec2615d08b13092f940", "message": "[FIX] tests: chromium executable is chromium-browser\n\nWhen installing chromium using apt\ne.g apt install chromium-browser\nthe executable is `chromium-browser`,\nnot just `chromium`\n", "proba": 0.0004562604590319097} {"commit": "1d236ddc79e849ba937db75b03cd1a5db091ffb2", "message": "doc typo\n", "proba": 2.2402811737265438e-05} {"commit": "057defb76c7f6e126c29354a7fbb87dd86f9fd75", "message": "allow ofx_version to be specified and allow header to be called\n", "proba": 1.7011727493354556e-07} {"commit": "f331bc0e27dfb8dff0a741a3ada6072267686e0f", "message": "Fixed styling issue raised by Ash. Changed errors to unicode. Split 'except Exception' into list of expected errors.\n", "proba": 2.1979417397233192e-07} {"commit": "31d0ed3f4be6af7e871385729f374134cb03bd24", "message": "Add \"Income\" transaction type.\n", "proba": 9.76236624410376e-05} {"commit": "8885b2a0ea570c77b980eb41f3c5c54e3143d9b2", "message": "fix bug #73\n", "proba": 1.4523742208893964e-07} {"commit": "de1f64824baca6982ce953c8a344d3b4537d035b", "message": "https!\n", "proba": 5.122233233123552e-07} {"commit": "2433053e02a8086cf5296f08aec96d00877440f7", "message": "remove debug print\n", "proba": 8.463712219963782e-06} {"commit": "204ddb363ecb537bb98daa0dccfc966a514333ae", "message": "Document PrincipalField\n", "proba": 4.050652648857067e-07} {"commit": "ba1164b7f7328a53b11b111e5fabfe34f3ce9846", "message": "Access entities through dictionary instead of as attributes.\n", "proba": 1.1875182082121682e-07} {"commit": "5ca6f877204d66b8e2d40fdbb2d217840766aca2", "message": "Add comment-line remover\n\nAccessed by _load_config_file()\n", "proba": 1.8987437044870603e-07} {"commit": "72175ff334f863ca47052e10d7d474f86eb91443", "message": "reset counters for better query caching on the server\n", "proba": 2.3990673980733845e-07} {"commit": "e113587f868548ccc539842acc8ffa8dc65165cb", "message": "nan in matrix\n", "proba": 1.1880320926138666e-05} {"commit": "c5fd589bc3b19644611fb19b9f476b14e06eed92", "message": "Worked on more code for doing this. I need to fix how I am talking to the local Splunk API.\n", "proba": 1.5692158683577873e-07} {"commit": "38c78a0d1aed1c708acaa32b596b311361292845", "message": "nova_sync_quotas: allow config file location override\n", "proba": 1.4055874544283142e-06} {"commit": "870281b5d9e90abd45f66ee5d4fbf22e4bb8732d", "message": "libs/wlgen/rta: use a namedtuple to represent RTApp phases\n\nThis patch is just to improve code readability.\n\nSigned-off-by: Patrick Bellasi <431c86f368affbc3148c4669fbd465131f7e82cb@arm.com>\n", "proba": 1.4024982419869048e-07} {"commit": "c2b38ba06558fc5c208af903db2d719d6b32387d", "message": "Add some logging commands during directory creation.\n", "proba": 1.2867739940247702e-07} {"commit": "0ed286590ca756991b679f4de50a0e464ff2342b", "message": "Move selection indicator logic into Entity class.\n", "proba": 1.1984288050825853e-07} {"commit": "3ff53d7ce7fae549609fa3cde6ceb0f615fadfd1", "message": "add stringagg orderable strategy\n", "proba": 0.0008864523842930794} {"commit": "f6482579fae51f6a2632c9b75b9733fb589afea4", "message": "class based view\n", "proba": 5.882814093638444e-07} {"commit": "a5d6d31524925db7a9370db97e6b0064ea7f2873", "message": "adding a --adv-batch-size parameter\n", "proba": 3.2910079426073935e-06} {"commit": "4ae6956b77bf7311482a5b46f5d731e2b68f02e1", "message": "Properly handle Windows' lack of select.select via a thread to read from pulsard stdout.\n", "proba": 1.1054876836169569e-07} {"commit": "ddb9de4ef475033e541bd93c2d4b18d032b1651c", "message": "Added normalisation to dnase_to_javatreeview\n", "proba": 1.4093980382767768e-07} {"commit": "c45df03aefd7255d46565310aebddc4978936ff8", "message": "calibration points: added possibility to specify the segment prefix of calibration points\n", "proba": 4.2089880025741877e-07} {"commit": "71686f84b4d154549a9e146ef0bfbc844c78655e", "message": "py3 fix attempt\n", "proba": 4.1518632087900187e-07} {"commit": "caf6851f06efbacace7164a1df3d656c36f78254", "message": "Added thresholding option to correlation mode\n\nRelates to #180.\n", "proba": 1.0246911585909402e-07} {"commit": "0c89e4d1c5ea7b5236ef1b16237405818051bb26", "message": "user fields\n", "proba": 1.8218134982816991e-06} {"commit": "1814f818f7fdbfc7add99c7c538c24700215df1e", "message": "-> Proper structure\n", "proba": 7.45583179195819e-07} {"commit": "3383fbde098cb06a7ff868981579b64711301849", "message": "Pass two lists or numpy arrays to markers function (Trac ticket #7)\n\ngit-svn-id: 83a0274dba4329d458142e4079227af35a786d9d@18 2f3f69f2-b874-4715-96d5-35985bcb53a6\n", "proba": 6.3544393924530596e-06} {"commit": "e2f3ac5b9f2006020f4e7cdee49e67616c2e1e19", "message": "Uncomment the user login check function\n", "proba": 8.699076943230466e-07} {"commit": "938070024294aa6f236e5c3710842371cdb5c3a5", "message": "DOC: margin parameters and returns\n\nIt's hard to understand what input is expected and follow which return is which from existing docstring. Format of stability_margins docstring is better.", "proba": 6.753149364158162e-07} {"commit": "d6d3360ed07544fadc98d2c15ece0f1d1e378045", "message": "account, kernel: fix recursion in analytic account\n\n- add constraint against recursion (in orm)\n- modify compute quantity, because now browse record in recursive compute will no more work.\n", "proba": 1.2892822098820034e-07} {"commit": "c4ea619dc4ea4510ff68ba6270acbc02155f0625", "message": "Deprecated rdb2rdf view\n", "proba": 1.9834983788769023e-07} {"commit": "4eaf71ae06d7ec3aa8e7e02714d1f0d4350463a2", "message": "[FIX] orm.import_data: also translate SQL constraints error messages that are not callable", "proba": 4.807250775229477e-07} {"commit": "fb1f3f0cc1c93b245771aebdb9a446af3b9c9815", "message": "Set the output shapes in _DefineFunction.\n\nPiperOrigin-RevId: 324123283\n", "proba": 0.9999994039535522} {"commit": "f01ff14dc9530cb2e026f720bf863c1cf52ec990", "message": "Show selected volunteer on map using new show_map parameters.", "proba": 1.0414790807544705e-07} {"commit": "6ea366208dcb9f1d7446f650973275c9c67caec1", "message": "don't attempt to stop the agent if it wasn't running\n", "proba": 4.361030369182117e-05} {"commit": "49de7f49c8a9e507a08eaea9df7a70cd24adc4f4", "message": "Colored Fields red ,those fail in constraint validation.", "proba": 1.1190843451913679e-07} {"commit": "e6db3935bc00f5f07f624d26b56dda34df79d17d", "message": "http://luc.lino-framework.org/blog/2018/0112.html\n", "proba": 1.2663508641708177e-07} {"commit": "390ae9dd9eb4174c9a77de267ad4edb5e977a15a", "message": "Instead of providing just a download link on schema pages, show the original YAML with syntax highlighting *and* provide a raw download linke.\n", "proba": 1.000114551175102e-07} {"commit": "e96a28594e67c0e7f60bf13fa234cae3163ac370", "message": "fixed last layer\n", "proba": 3.3703651070027263e-07} {"commit": "8d67b2c63f21d4ba9079aebf74f77e31362e1a4a", "message": "fixed last login date on user\n", "proba": 1.6426209867859143e-06} {"commit": "1d85e7a0f6d06d94ef2ea436a890ef350b7341bf", "message": "[IMP] orm: additional error message about missing index on parent_[left|right] columns during creation\n\nbzr revid: odo@openerp.com-20101211000951-gn5dejp3b7dyz24e", "proba": 4.144465322042379e-07} {"commit": "3b14f47ac4e5d5118d1dd0c12466e3b22d416c41", "message": "Test to repro conflict between parent and child\n\nSigned-off-by: Fabrice Normandin \n", "proba": 1.1438857683288006e-07} {"commit": "3b5b6f8945a87ae854d07422a8fc40fb1ae7f8b1", "message": "Considering old responses in examr similarity check [skip ci]\n", "proba": 1.1007179523403465e-07} {"commit": "8cd68640faae18318b283ddf577d3715362db08b", "message": "Change schema to default\n", "proba": 5.286816531224758e-07} {"commit": "176511d55057b1e8219f576358d7df2998e51ae2", "message": "[FIX] orm.import_data: look for exact match of name_search (courtesy of Martin Collins)", "proba": 1.049207156711418e-07} {"commit": "df9b71f72996464514f925ad443dbbe88cf5d098", "message": "updated tests to remove the output files.\n", "proba": 1.2102056246021675e-07} {"commit": "3f51586d22980de821207f171329e4289e8fe545", "message": "Check if birthdate is None\n", "proba": 0.9999994039535522} {"commit": "c51ac0093d1781c86ceb00f8c420d23fb1dfa901", "message": "Fix default value when ids is no more in the DB.\n\nbzr revid: ced-ca2697f795913b8806133c02c73639a901869eaa", "proba": 0.00026100859395228326} {"commit": "fcbf3f6d600243574a390d3c8ce94ec723a13b7b", "message": "Aggiornato test formatter\n", "proba": 3.433000301811262e-07} {"commit": "70775d5378c15e0d200b2db9662bc45c9e2b9feb", "message": "[IMP] \"not x in l\" -> \"x not in l\"\n[IMP] use the second parameter of cr.execute instead of formating the query ourself\n\n", "proba": 1.5671948858653195e-05} {"commit": "3816dadb22090212fa6c8eae24b3e9c3076a5e90", "message": "[FIX] error when getting size of a selection field\n\nbzr revid: chs@tinyerp.com-20100112155822-1sidqjavc7gh8m3f", "proba": 2.544019821471011e-07} {"commit": "ae02c1b5371f90c4c9178acf4ca54d644e50157f", "message": "[IMP] osv: improved user-friendly error message for violation of NOT_NULL constraints\n\nbzr revid: odo@openerp.com-20100521155902-mkqvqsgq04djnoak", "proba": 1.356308985123178e-06} {"commit": "f47315a1aac24a9fa263fd302d2fdbc46126f50e", "message": "Add test for single segment, skip failing tests\n", "proba": 3.292793167020136e-07} {"commit": "9f4fec724535921859a027ff42ae3cd253e9c354", "message": "Call the output piction\n\nThis isn't really the final file, its just the output from piction.\n", "proba": 2.6135978714592056e-07} {"commit": "f7c19f844a3f33beb55180ba2ac841ade3e3589a", "message": "Removed timer. Testing suite automatically adds how long it takes.\n", "proba": 1.1665258625725983e-07} {"commit": "cbe36a4946a2b3bb4927ca3b8ac800111ae9ce49", "message": "Removed whitelists from test_partition.py\n\nThe test case where dependent of having whitelists defined for targets\nto run on. This patch removes these whitelists, making it possible to run\non more targets. The test becomes a bit less strict but gets easier to\nmaintain.\n\nSigned-off-by: Andreas Sundstr\u00f6m \n", "proba": 2.8700540610770986e-07} {"commit": "5d54d655e4465357d2eaa95d8e7c840815c4d0f5", "message": "Altered coords from individual values to a list in pdb line parsing\n", "proba": 2.2487044759600394e-07} {"commit": "55cd43819a06feab0a08d04b01fe3d172d4ddf7c", "message": "Removed dependencies in testing\n", "proba": 4.5228986778056424e-07} {"commit": "c9235bac3b9faaa056331fd525609c7ab1e5a1d7", "message": "TST: Adds tests for repr failure when biased\n", "proba": 2.0340127093732008e-07} {"commit": "8aeebc26f87bed0bacee1c5055221e2fd6966947", "message": "update test\n", "proba": 5.018525257582951e-07} {"commit": "aded5ae9effa1ff07cc6b536964e39582cfb6005", "message": "Use more universal argument names for _is_unsorted method\n", "proba": 0.0011440886883065104} {"commit": "dbda7bfc35720fb4d660921565289edf3a65e5b3", "message": "Change to log amp\n", "proba": 6.594360115741438e-07} {"commit": "ae9008d0cdab1ec414d0aa75d97b27722dc940d1", "message": "Force lowercase slugs for city codes.\n", "proba": 7.456969797203783e-07} {"commit": "d869682e0aee2eead79b70682d9c9b36fd1b5b65", "message": "add unique utility function\n", "proba": 8.419831942774181e-07} {"commit": "4d412ddbec150eef829f68cd82406e21092e0ca0", "message": "Fix broken node references in animation data\n", "proba": 1.6207920907618245e-06} {"commit": "c42209e72b42e009a355ce1eea40757ac9ed0de1", "message": "Remove some unused multipath-specific functions from blivet.udev.\n", "proba": 1.07763021617302e-07} {"commit": "0a36c7f05911f4a8b774c690c188932987b1698b", "message": "Clean up new Python build script\n", "proba": 1.999967935262248e-06} {"commit": "01e7d31376590b364107d676b03af5442824a3b9", "message": "add 'is_block_page' to context, so we know we are on a block page.\n", "proba": 4.646128672902705e-07} {"commit": "702edf2f6d939c6d6be8ad79b9730cff856bbc3f", "message": "Remove comments signal", "proba": 1.5607966474817658e-07} {"commit": "956d28cef2388dde58163bca67f9e7da4b01f2cd", "message": "dev - adding call to parent setup/teardown\n", "proba": 1.4662467151538294e-07} {"commit": "2d58dbd57184627253be9daa8eddca80032a868a", "message": "ignore myself for notifications\n", "proba": 2.7563240223571484e-07} {"commit": "169e2a7d59a10c7104c657d831274aad83dcd5dd", "message": "More test\n", "proba": 1.66851577887428e-07} {"commit": "d467053f9a11376a204f6a2333b043113c53d2a5", "message": "updated wait_for docs", "proba": 3.5945569720752246e-07} {"commit": "56d249bf25eaaefa8255874ffee1244675e11015", "message": "added selector for side of pyboard", "proba": 1.4272727355546522e-07} {"commit": "5fe2f20d276feac8542a8d6f8d337ccf5c86f331", "message": "delete the testing info\n", "proba": 1.7039378974459396e-07} {"commit": "f99861db8e7dbb97fcd0980d42a51f826bf39204", "message": "version 1.2.6\n", "proba": 9.857993745754356e-07} {"commit": "f30719e1796c0cd60080a8237c53008d287a70b9", "message": "Change the metrics test to use admin router instead of ssh polling.\n", "proba": 1.1323589177436588e-07} {"commit": "503addbf09441677539c1c77914a94ab394c502a", "message": "correctly have the test for issue #[C179 actually fail\n", "proba": 3.1040758585731965e-07} {"commit": "8a8a10cc8d1b3a06290df2ee2ce76d09708f9eb9", "message": "Test 404 on User not found for resetting throttling\n", "proba": 2.3060145792896947e-07} {"commit": "c8b19555973f7e3a7dff9b2b46409b66d33fe2f0", "message": "added an option to captureOutput to remove broken pipe errors. There appears to be some race condition in the test suite that causes them to show up in the output of otherwise successful tests\n", "proba": 2.8095863058297255e-07} {"commit": "554d4391fe73d5a3d56f657f0912ecd73786049e", "message": "Add missing import in backend/clustering.py\n", "proba": 1.8292665799890528e-06} {"commit": "00d64c768a2f4433d5f5b271e9644d8803bce649", "message": "attempy to fix psycopg2 travis conn\n", "proba": 8.046850439313857e-07} {"commit": "1a5b839e5e350aef353bc06f122eec1379f95929", "message": "Update ipc_lista1.12.py", "proba": 3.5726742453334737e-07} {"commit": "82ab7dfadfa8ea817a6d27d28fb8051d84d0919c", "message": "fix python test\n", "proba": 0.00011975628876825795} {"commit": "0b7b6c7ef3577ced2a0da7771d7e398132433097", "message": "Update ipc_lista1.15.py", "proba": 3.36319857296985e-07} {"commit": "a2c635272765cef7166ca384f4252c0b1def7353", "message": "Update ipc_lista2.02.py", "proba": 4.1964230490521004e-07} {"commit": "00dbeaba9340b534ff6ccab773f56ca1e9401014", "message": "Update ipc_lista2.02.py", "proba": 4.1964230490521004e-07} {"commit": "71e49342d95789cdd16b276abefdc7b9f45efe24", "message": "Update ipc_lista2.03.py", "proba": 4.0151229541152134e-07} {"commit": "dd8edf491eed984f2b9bc684d987d3e26acc8b3c", "message": "Update ipc_lista2.05.py", "proba": 3.720272445661976e-07} {"commit": "6da61d80450b366e3251b0f0b169d68867d78114", "message": "Delete ipc_lista3.22.py", "proba": 2.685360186660546e-06} {"commit": "62f026884afb039bee796bcc9c6adeb38c317fbf", "message": "Update ffi.py", "proba": 5.434806666926306e-07} {"commit": "640e7cb4ceb064ad200860b96c881212699a1384", "message": "Add Function.new in llvmpy compat layer\n", "proba": 3.52704319084296e-07} {"commit": "aeb35d87bd1cddf47a41401201d90355289e34ed", "message": "Fixed bad tests", "proba": 5.580561719398247e-07} {"commit": "7ce3bfc4f4401751939c97ef5e9928546770176b", "message": "dictionary match tests pass, stupid typos..\n", "proba": 1.3814657506827643e-07} {"commit": "87a6eed4f22bb7951ffb2fbc0ee3da66a872eb75", "message": "Some values seeded for 'tee_style' and 'tee_size' properties.\n", "proba": 1.1967715352056985e-07} {"commit": "6134250fb0b141bf44a131505b126234be126d2f", "message": "Add deleteProfile method\n\nAlso return self.profile from createProfile when a profile was\nalready created.\n", "proba": 1.0802973093859691e-07} {"commit": "a55af9451db3dbbe9df45b9eb39dd926bd6ce4d2", "message": "Properly set profile seeded values in profile utils\n", "proba": 1.1396157333365409e-06} {"commit": "9e605ba7ca0d4747dfbe2e390f178e4513f3afe1", "message": "program_id is copied from link_id when a program is seeded.\n\nThese two properties have to be equal. Without this change, they are just generated separately.\n", "proba": 1.096370212394504e-07} {"commit": "3a92992dc49998f59259f927bc80c54b48f49521", "message": "Fixed an error: GCIProgramHelper -> GSoCProgramHelper.\n", "proba": 1.4593246078220545e-07} {"commit": "1f00509b97b6e75ec2f9bb80dc9be54936c73f1e", "message": "flip canned lat/lon coos in test to reflect code changes\n\n\nFormer-commit-id: d9d59b80d86dee52ef302c270dbed5160c934822 [formerly d9d59b80d86dee52ef302c270dbed5160c934822 [formerly afb27ed7509b8a840e083dafbc882cb017754517]]\nFormer-commit-id: 11137f00f418c75574393e814a294f568c7b3ef5\nFormer-commit-id: f78e0be2829b3b20d78e82601fe04873e7d2e0fd", "proba": 4.72948158858344e-06} {"commit": "15481d00e7fff91dbfdfd154bec1f17bf6265351", "message": "fixed sqltable_test.py to import logger correctly\n", "proba": 4.4442802504818246e-07} {"commit": "125bcf571d50f71b18c1ea43c25bdb08d85c098e", "message": "More test coverage\n", "proba": 1.2754433953432454e-07} {"commit": "fb367d0c74a52337cf5ea16308bf134505ce71bf", "message": "Remove debug output from apicalls test suite\n", "proba": 4.762549679071526e-07} {"commit": "1cae51437bf5d8047106a8590d6e750d022b79a4", "message": "Remove leading zero from ints to avoid unintented octal syntax\n", "proba": 1.8632653109307284e-06} {"commit": "278f2ff421b357e070be247ac0d29158b85f648e", "message": "Don't use batch requests with mock requests against astropad either (not that we're running them right now anyway)\n", "proba": 1.0666285987781521e-07} {"commit": "dfbc4f1dc7205ecd037bb4ef0c8781242c695498", "message": "change test\n", "proba": 2.896477781177964e-06} {"commit": "c4a4bcecebf30db0b7170c59202108970cdf2305", "message": "Add tests for recursive tracing\n", "proba": 3.685752574256185e-07} {"commit": "4d7af2f39a7397f2fd16434cb29ad61ac1456e54", "message": "fixing a failed test\n", "proba": 1.3646434126712848e-05} {"commit": "54b0ba3a2f5af39d5d453b00cf81740ef9da5aae", "message": "test_commands pylint 10.00\n", "proba": 1.1982842806901317e-05} {"commit": "7aee728b8dd14aeed9f38866e529744017d9440e", "message": "Add tests for --install of run command\n", "proba": 2.73191034239062e-07} {"commit": "26aedfc7679e510a4bff663658a795501d0e619a", "message": "Remove missing_ok arg from call to Path.unlink()\n\nMeant to do this in the previous commit. The missing_ok arg isn't\nsupported in Python 3.6 or 3.7.\n\nAmends d93136c1f2bfa83b24722182d09c097e201115e8\n", "proba": 1.6007921658456326e-05} {"commit": "233e44722c8ea3c77ebc5f54e0c4f96ea2e28101", "message": "Test some new datestyles\n", "proba": 1.1150675618409878e-06} {"commit": "f2dd054500d1d538b9f0a5dbc0aaa776b1bd6da2", "message": "Test for handle_health_change decrease in combat\n\n", "proba": 6.747021075170778e-07} {"commit": "4fac74365fec7c5ccfb23f9a81e8cc54574ce5ba", "message": "Update a test as Django 3.x returns hexadecimal HTML escape entities.\n", "proba": 1.1033959168571528e-07} {"commit": "7b3600ad4cc471fc194d7798153f452f4d44dd1e", "message": "adding more asserts to test file\n", "proba": 1.5382202889213659e-07} {"commit": "5fa7adc15f31a0be6c87de3cae686fa3104a4605", "message": "ENH: Switch of testing of rlgl\n\nThis branch only changes to firstorder, therefore, switch of testing of rlgl\n", "proba": 1.1783735232029358e-07} {"commit": "7b2e8854237e74d196cdb5b736838b8ac1c8ec68", "message": "Increase test coverage for distutils.filelist (#11751).\n\nPatch by Justin Love.\n", "proba": 9.806957734781463e-08} {"commit": "75f8e8b6245a1b7530f545e5b642760582d5840a", "message": "test numerical flow is isospectral", "proba": 0.9987140893936157} {"commit": "ea203f21a9fd35dc5593064524be744ce54c9c5f", "message": "Use CodeCollector.\n", "proba": 1.4892570732172317e-07} {"commit": "ebfc4715517e3e07a3cb939396a89122f3d44559", "message": "Made test_listener.py more robust if it can't find a private or public key.\n", "proba": 1.0291609697787862e-07} {"commit": "42b476c7fcc68d4762014a7c27df101c05858499", "message": "Retrying\n", "proba": 1.6571470951021183e-06} {"commit": "c05cf51d66b622c9eb889c2915761c5f4476beef", "message": "Update test_nn_utils.py", "proba": 4.003692538390169e-06} {"commit": "d22f948c7330d9468c93b0c2f9cd7557153ee07c", "message": "updated test schema for opupdate\n", "proba": 2.221887314135529e-07} {"commit": "f24c27bc275b1a8286aa2e5a75edcbf2cb3681eb", "message": "add new line at the end of the file\n", "proba": 1.976188741537044e-06} {"commit": "8caee6a2e9ba6a2ae8987b1eeadb926199cf940b", "message": "Coverage fix?\n", "proba": 1.8932378509362024e-07} {"commit": "8d9d81710a747f9d65a74c61a425e6698a24f97d", "message": "Extend unittest\n", "proba": 2.7777275590779027e-06} {"commit": "47a3e44bf7c675ae1c222d594d557450f1f25b37", "message": "Use proper skip instead of reporting success in one distutils test\n", "proba": 1.45090254477509e-07} {"commit": "340902153f49a2ed9316cbe1f44c67032dcc8376", "message": "updating pickling tests for PreparedRequest\n", "proba": 1.3039786495028238e-07} {"commit": "4d372715cd4e0ca45a528d981507f6b8fa1a385c", "message": "fix test for 3.6\n", "proba": 6.807597674196586e-05} {"commit": "98e614aafbfe42ee439436cd4ecabab5189cbbde", "message": "fixed executable issue in tests\n", "proba": 4.168919929270487e-07} {"commit": "b75d2b531f06d988947fa791cb8980076fc5fdc5", "message": "Add tests\n", "proba": 5.818237696075812e-07} {"commit": "e46496f1e176610720553981d527a65996c8c5d4", "message": "Drop duplicate PatchedSessionXMLTests class\n", "proba": 2.126883487107989e-07} {"commit": "5870a5c88ba2e647e908927eb110a1ddc1871cbb", "message": "(Add back trailing comma to tuple)\n", "proba": 2.926580009443569e-07} {"commit": "25ab434e051e0892621ab934e1018a183706e5ef", "message": "More COPY tests\n", "proba": 1.202321016080532e-07} {"commit": "1fc752d844e74e8b45ea2d8f85e677717832c64a", "message": "minor update on test case\n", "proba": 2.4891505745472386e-07} {"commit": "d927e8f11458f479cc45df1d575ca5ce770949ce", "message": "Add failing test cases for #25\n", "proba": 7.916499384919007e-07} {"commit": "c32717c10198902f40bbdc4e34b252e28c0c4b4d", "message": "tests: Add a test for line numbers in systrace\n\nI promised @derkling I would write this so here you go.\n\nSigned-off-by: Joel Fernandes <89f39a38232ac523c7644e47b6ca6563177e40b4@google.com>\nReviewed-by: KP Singh \n", "proba": 1.842258825490717e-05} {"commit": "2d9c159753c09ba43eb00d27f75818a72fbf5744", "message": "Add teardown functionality in unittest.\n", "proba": 1.2544151672955195e-07} {"commit": "f7c2830f7317919813f167882f8dc5a4445bb04c", "message": "Accept dot for float\n\n", "proba": 1.2988460184715223e-05} {"commit": "d93ac0bedb98a9cec3ff6f4653da0d059a7ccb1c", "message": "typo\n\n\tmodified: lib/linux_elementary.py\n", "proba": 1.944100858963793e-06} {"commit": "b9b90ee80960ea81403f7e279c1ce2a9ccfbe59e", "message": "Edge case when looking for overlaps with 1bp features\n", "proba": 1.989841678096127e-07} {"commit": "15d3aa640be13bb8293a1bd0dc83844362017c04", "message": "fixed Message.respond (_raw_text broke it. oops)\n", "proba": 1.2498862815846223e-06} {"commit": "883ba385231ff0d3e202485da4f0d8437e8df7b5", "message": "correct a source of bug in the key assignation;\n", "proba": 1.5233385397550592e-07} {"commit": "341bdca50f9091c212192408f020ff963fe8a396", "message": "use a correct implementation for soft delete;\n", "proba": 1.2471674892822193e-07} {"commit": "4793242158b8b660b973d531d27e76321159bf51", "message": "spack repo add: fix error message when `packages' directory is missing (#11031)\n\n", "proba": 1.2006137239950476e-07} {"commit": "cdd76f4a833ce794bc3435ab2153afe1f880fc7a", "message": "Comments. Prepare a uniform property list.\n", "proba": 1.2051334863372176e-07} {"commit": "142b1350cdfd90afe8da49829b6025dc29658fca", "message": "Start color constants\n", "proba": 6.314709821708675e-07} {"commit": "d2a24d5b812ee46558e0e3117b9ea25504c3e8b9", "message": "init valuelist\n", "proba": 9.97584265860496e-07} {"commit": "48b9f2b7071c7c2ef6a740bba994dfa83b7fe81e", "message": "fix custom database injection & old shadow orb name in database\n", "proba": 1.6980591510673548e-07} {"commit": "39583b69f413ff6ad7e31840487bd24916766950", "message": "Factor out tests for X_labels and y_labels\n", "proba": 0.011806648224592209} {"commit": "c0763a36622629eaab236745038fa7f37372a3af", "message": "unittest for url and name overwrite\n\n\nFormer-commit-id: 934e83286d723ba18593c5bda41e79ad9eab41dd [formerly 74fd8d3ad064811acc4b69a4e6e7df37f883cdd6]\nFormer-commit-id: 91eab2fe4170689695744a89b94fed58d61c6107", "proba": 3.47653913195245e-05} {"commit": "4b7cc73e4f52bc497779795c15c35786955842d5", "message": "Added color differentiation between two BS plots\n", "proba": 1.224681369649261e-07} {"commit": "81aef533f29ea8a23dbe2a52ef669bfc3e47d142", "message": "Misc bugs/errors.\n", "proba": 1.177391766304936e-07} {"commit": "810378ce193252f20cc95caa5ad9a0696c087751", "message": "play around with RGB triangle code sent from Jan ... almost certainly I will abandon this effort\n", "proba": 1.0691583440802788e-07} {"commit": "b3fa384b5a5c0edeccf277332ba44a83e0fb4bfe", "message": "Card is hashable now\n", "proba": 2.7139094527228735e-07} {"commit": "f466f9498d0141ef38699864a3a2c79596116ffb", "message": "Narrowed error handling for haystack searches if USE_HAYSTACK is False.\n", "proba": 5.034132755099563e-07} {"commit": "2df912ada9d3022a4d9f538aa072ab3dcd06cb25", "message": "fixed bug\n", "proba": 6.589494319086953e-07} {"commit": "baac17308440d42fcc5be1997662ff50e7112aad", "message": "Remove dead code.\n", "proba": 1.0484612175787333e-05} {"commit": "0d4087a485ccbb668f800e77d814a6ce391fef8b", "message": "Add an explicit test for inactive users\n", "proba": 9.996899734687759e-07} {"commit": "9d3b057ddc9ffd94c1820a3093b378b3206b8fc2", "message": "Fixing problem which caused attribute editor replace operations to be excessively slow.\n", "proba": 1.285932427208536e-07} {"commit": "9bd2ab429720f4e93d9c7c1c5a82201d96672b34", "message": "\ud83d\udc1b don't cache activity management view\n\nfixes #620\n", "proba": 1.2321156361849717e-07} {"commit": "2d67ef7d223e80b71ddfdfc17fc9739b0ef028cd", "message": "support spatial convultion without bias\n", "proba": 3.632990512869583e-07} {"commit": "e201b45142f0fe71711e0bd812a7320691742640", "message": "Go back to working version to run on python anywhere\n", "proba": 1.6234174893270392e-07} {"commit": "bfaf44e606e50afd71dbb8bd5fb76363a3aa2f45", "message": "Switched print statement in process2\n", "proba": 4.5724266328761587e-07} {"commit": "7b0cc4c0497504b6fae819d96c702d9825497f8d", "message": "Increase height of flask-admin rule fields\n", "proba": 3.871017497658613e-07} {"commit": "eacde5cd3cf796dd307034e8c10ddc63fc9da3d2", "message": "SparseLinear SparseJoinTable DenseToSparse (#1652)\n\n* SparseLinear SparseJoinTable DenseToSparse\r\n\r\n* Python api\r\n\r\n* add DenseToSparseSpec\r\n\r\n* update to upstream\r\n\r\n* add some method\r\n\r\n* meet code review\r\n\r\n* fix python unit test\r\n\r\n* fix python unit test\r\n", "proba": 1.4806977333137183e-07} {"commit": "e5994d5146406e190ff91e23c84daef3e82e1619", "message": "More descriptive message about Tube problem - TFL's reason\n", "proba": 1.3370420504088543e-07} {"commit": "cb8577c65ddcdc0f8530459f02e7cdd6d61b2b33", "message": "Added failing test for ci.find_batch_sources() connection errors\n", "proba": 1.8420656999751372e-07} {"commit": "561e4385d5c790dc3cf058e3e13af8c9ce1c5f46", "message": "Updated docstring\n", "proba": 9.301629120272992e-07} {"commit": "8d3affe4e95a39e7d664350d426e577d2ebcf89f", "message": "add kerword arguments in test_refine_with_conditions for readability\n", "proba": 5.988308089399652e-07} {"commit": "57b69e2f416f73d4fa4c5bd5b6e67b56dd44c69c", "message": "add load caffe model doc, remove useless parameter, add python api (#1266)\n\n* add load caffe model doc, remove useless parameter, add python api\r\n\r\n* update doc\r\n\r\n* add save caffe\r\n\r\n* remove empty lines\r\n\r\n* fix python test\r\n\r\n* Update caffe-support.md\r\n\r\n* fix python\r\n\r\n* update doc\r\n", "proba": 3.7249549222906353e-07} {"commit": "99e574ce7cf8e3af523febd1c5f390eff2507316", "message": "Output the name of the class when invoked by conf.inject_positional_args (#445)\n\n", "proba": 0.0012569198152050376} {"commit": "1f410781813b72ba27ce7297f22a19f66333fb30", "message": "Note Editing Redirection\n\nWhen a user edits a note, they are sent back to the same note that they\nedited.\n\nfixes https://github.com/levlaz/braindump/issues/73\n", "proba": 2.230294376204256e-05} {"commit": "48a07afc43dee1e86acb2e53292118d97dfd5e10", "message": "Get list of taxlot ids instead of request.get\n", "proba": 1.4026534245203948e-07} {"commit": "8fd3b49db27e0b4c9e9838104802cee24c247314", "message": "clear index at teardown\n", "proba": 1.946911964978426e-07} {"commit": "11e269adc1f254408e14b7c1e501e7b1a7ffebfb", "message": "CallShellcode: Optimize the nopsled generation code. Fix bugs.\n", "proba": 1.3632568141019874e-07} {"commit": "2926dfa00fd7f3ec6ef6eea7c3254bdf27ff206d", "message": "support SAME padding in 3d conv and allows user config padding size in convlstm and convlstm3d (#1862)\n\n* support SAME padding in 3d conv\r\n\r\n* allows user config padding size in convlstm and convlstm3d", "proba": 1.3276104482429218e-07} {"commit": "abd2328dfed82b95c562b65b4fd4051402cecde4", "message": "metrics for group joins\n", "proba": 7.512890078942291e-07} {"commit": "064625be42c0e9dd3df0614fca68c65661d073da", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "2c431f9fdc0f0e68d9a6d5ee8ff2956a5010bea2", "message": "* Upd tokenization test\n", "proba": 1.5753350623981532e-07} {"commit": "8b6aca7ba1fd4237bf9d2a6ce917ce57cec3a0a1", "message": "changed address default str\n", "proba": 1.8494812366043334e-06} {"commit": "ba1f591af8db3640f5d7649fe24a94f17a113f75", "message": "[new feature]add generateBackward for loadTF (#2529)\n\n\r\n", "proba": 1.0649413439978161e-07} {"commit": "47d341c079519b626efdcca6a5cc39d2a7ee8ed4", "message": "test: math.isclose only available in python>=3.5\n", "proba": 2.1167094018892385e-05} {"commit": "ba4762d274fef839244622d58df636801c43ce2d", "message": "use the custom test runner and base testcase in component test\n", "proba": 1.5696154775923787e-07} {"commit": "2f56f7dccbc3c9fc416200160bd8616a5e4ab954", "message": "Set logging in overwrite mode\n", "proba": 7.926433340799122e-07} {"commit": "a4fa5c8864391269cddc6bf821143f986f53fab0", "message": "Set Content-Type header for use in upload_part_from_file\n", "proba": 4.5338248355619726e-07} {"commit": "71f41095d5519de52a7493f7498bc6d0aad11048", "message": "Fix class name typos\n\ngit-svn-id: 353d90d4d8d13dcb4e0402680a9155a727f61a5a@902282 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.9999994039535522} {"commit": "3a236a724e5a52e45fb13a1a36171caefd5916ae", "message": "Support api-version when building client\n\nMagnum service API is using micro versions and to get the correct\nfuctions support, user or client have to initialize the correct\nclient with parameter 'api_version'. This patch is following the\nsame way as other OpenStack services to read the version from\nOPENSTACK_API_VERSIONS of Horizon local_settings.py.\n\nChange-Id: I85a3ed665dd6e5c9e9af933e0336d2be7998b928\n", "proba": 1.827435767154384e-06} {"commit": "ebc9f8f90616d099cb9aeaa7c7d9a6d3ce2aec39", "message": "fix recursion issue\n", "proba": 4.159125637670513e-06} {"commit": "1909f4efe4e036bbddbb158c66c3315ca93c4fcb", "message": "Pb support bigmodel (#1976)\n\n* support new format\r\n\r\n* add unit test\r\n\r\n* add unit test\r\n\r\n* refinement\r\n\r\n* fix typo\r\n\r\n* fix unit test\r\n", "proba": 1.276119832027689e-07} {"commit": "cf377716ed1ffebc9a1de0165f739f39a903abfa", "message": "Clean up services in profile\n\nChange-Id: I3cb62e72475f3fb4a8a849833445686845033ede\n", "proba": 4.808800895261811e-07} {"commit": "0986ad016231c3c4f0e22b1e66e5328ceff22c56", "message": "Update the tests for network server:\n\n* In addition to what it was already testing i.e. changes are commited\nincrementally, now it also tests that an errored out action is marked\ncorrectly in the table; and that different action statuses (ERROR, PENDING and\nDONE) all add up in the end.\n", "proba": 1.0832933128313016e-07} {"commit": "77bbd420387e993ff6727066f71cc6c5f0a7b9f2", "message": "changed file as per upstream\n", "proba": 2.397987941549218e-07} {"commit": "3a0ede9e765c0cc9de9e6f8f5f28486be0783629", "message": "Removed another print.\n", "proba": 1.703161416344301e-07} {"commit": "8c5da9d57a8e7e3b53446b975fe6f2c6f81d5812", "message": "fixing one last docstring", "proba": 2.2744117813999765e-05} {"commit": "fd75329adc5cb3ef3ed687425aee9068d5609dfc", "message": "Add debugging information", "proba": 7.605975952174049e-06} {"commit": "2e1bd569f59064ac7c06a178a9d372b0f51a5f7d", "message": "cleaning up query_utils\n", "proba": 0.00014127508620731533} {"commit": "e4a7276ea0173c87697bffe01a35865d2c5b4df7", "message": "Explicitly require hashes for tests that expect it\n\nThe purpose of these tests is not to check implicit hash-checking mode,\nso we can be explicit.\n", "proba": 0.00032998688402585685} {"commit": "42e6b7d1962c54e052cc6e476b71f1597149e532", "message": "Documented HarmonicField.\n", "proba": 1.2135178906191868e-07} {"commit": "28029a9651522e89982c60e07b75921cddc44119", "message": "Added test to capture buggy entry formatting\n", "proba": 1.8065126994315506e-07} {"commit": "687f5dcd3e7d2f8310be9c984f74934b30ac45c3", "message": "Add support for magnitude computation\n", "proba": 4.057328169437824e-06} {"commit": "891e174f71e6aaee8bf207cca5c73f95f1c0d156", "message": "Patch calls to salt.client.Caller and salt.client.get_local_client in spm unit tests\n\nFixes the spm unit test failures in CentOS 6. These calls to the client need to be\npatched so they don't interact with other unit tests.\n", "proba": 1.140390395448776e-07} {"commit": "2e43a85f1ded90d90a22686d96078973507ccce7", "message": "Don't default to fog, too ambiguous\n", "proba": 5.5715759117447305e-06} {"commit": "13a47deb1d01fce09bc4d211934382233cd92945", "message": "Fix type for XInterface[]\n", "proba": 1.440417776166214e-07} {"commit": "8290ce159d6d49bf672f7ca9c391b723d30d1536", "message": "add IV to key derivation\n", "proba": 0.0010014170547947288} {"commit": "cca4ff1fbe68062f239624ccbc2ac3a8d743f9c9", "message": "Always wipe disks by default\n\nUpdate DiskAction to defaulting to wipe the superblock\n\nSigned-off-by: Ryan Harper <7c8ea25f69f5166c51151e84bf5db678c2384828@canonical.com>\n", "proba": 1.2177123664969258e-07} {"commit": "8a2c1c48a9ebb0bec05ba46b69713155e3c940c5", "message": "Make RPC tests cope with server-side timeout between requests\n\nPython's httplib does not graciously handle disconnections from the http server, resulting in BadStatusLine errors.\nSee https://bugs.python.org/issue3566 \"httplib persistent connections violate MUST in RFC2616 sec 8.1.4.\"\n\nThis was fixed in Python 3.5.\n\nWork around it for now.\n", "proba": 1.2880286703875754e-07} {"commit": "5864550ae12f3b40dc5f26d75b860faa73cbe965", "message": "barbarians\n", "proba": 1.824676110118162e-05} {"commit": "8bb0a89b3b4738d5833d8d035a183beb454404af", "message": "go periodic stuff\n", "proba": 8.114202501019463e-07} {"commit": "a385238372f4df725d7d67c38a0a7799dc80428a", "message": "Zero all open requests on load from state file\n", "proba": 9.313948794442695e-06} {"commit": "ddbcb11ba9cb3548807c0f45009f4346163193a9", "message": "new files and code\n", "proba": 2.302243871099563e-07} {"commit": "404210d21f0d33e07a2302ba60c004c60e8cec5e", "message": "seed: terminate seed process if SIGINT was not handled within 10 seconds\n", "proba": 5.755035090260208e-06} {"commit": "376e8cda46acaaf22b8c7b4df8ce8a64a97d0f4b", "message": "Support buildref in /v2/info: https://github.com/mesosphere/marathon/pull/4020\n", "proba": 2.340381968224392e-07} {"commit": "adef2202a7df7da2633832928370110d2a5eafb8", "message": "[Sim][#37] Give things some better names.\n", "proba": 1.3506924290140887e-07} {"commit": "22138ee67be71c97f6c64e6e7e679aa21aad5ff5", "message": "[Sim][#50] Speed up constructing predicates.\n", "proba": 3.850402947591647e-07} {"commit": "3a0d50143c66f67fb3ba03f84b99ac3ec1b4f5a1", "message": "[#37] Refine verbalizing node objects.\n", "proba": 1.3193785264320468e-07} {"commit": "754cd6ef69561d31d3e39a99e998735092816470", "message": "removed label for captcha in form\n", "proba": 2.2826704082490323e-07} {"commit": "e2e781f6975a4bd48b42264bc3caea162b9e9a3a", "message": "Tolerate a missing manhole package\n\nThe vast majority of users won't ever need this.\n\nSigned-off-by: Zack Cerza \n", "proba": 2.0658619177993387e-05} {"commit": "b25334be44b7d49a32c1cfe4bee8dd35d61b55f5", "message": "schedule: use python3 compatible print\n\nSigned-off-by: Kyr Shatskyy <82d0c7561ff7e9a20a19db22e8fb5b2adaa3d71e@suse.com>\n", "proba": 1.5488483029457711e-07} {"commit": "cb7b688d5ef868199ac1bbf74cc8e7e85337d678", "message": "correct some copy errors", "proba": 8.058772800723091e-05} {"commit": "fafbfa5a1a638f4ccc554a81cecd8dc1f506142f", "message": "fixed missing numpy import\n", "proba": 6.05466254910425e-07} {"commit": "8c08ce038ebcda6a0b074154526881af6504ce3a", "message": "update chess piece height constants\n", "proba": 4.3453340481391933e-07} {"commit": "7762a3c95dabd2378d899e446b744e009aeed0bb", "message": "updated MicrodataParser to reflect that pyMicrodata no longer has vocab expansion and cache args\n", "proba": 1.301892353922085e-07} {"commit": "9e5e82191fb4f93f05bac11a6ecacb92aaf29fdc", "message": "bumped up version after branching for release 0.17\n", "proba": 1.4638072798334179e-07} {"commit": "f41b028d94429038108c298685660af4bf21c925", "message": "Compressed AMP commands and now handles multi-batch sending as part of a single AMP command Argument object.\n", "proba": 1.0216331247647759e-07} {"commit": "1c37fcad0700b5817d2bae955643821ede22fde5", "message": "refactoring\n", "proba": 5.272031557979062e-06} {"commit": "72a2d315b2399714753ffdee192803716e3ccce2", "message": "fixed example again\n", "proba": 1.6982728823222715e-07} {"commit": "d7ad79c3bf6cd9accf1001e01ccdace30b9249dd", "message": "fix: flake8\n", "proba": 0.00012468367640394717} {"commit": "ea3c1f29d88d85b1267729134f321bb8b51a6176", "message": "Version 0.1.13.\n", "proba": 1.2581375585796195e-07} {"commit": "998c267cb09c21aa23c7f78d9d8356bb561f7ad5", "message": "change link to regex\n", "proba": 3.197864089088398e-07} {"commit": "8128b0bf8756c17ad1c622d9d2ce691e7e6433a7", "message": "TST: complex ops test correction\n", "proba": 4.813801979253185e-07} {"commit": "112dc17b457b40c9c815305c6573f41b279a91d9", "message": "rename: `main` -> `run`\n", "proba": 1.5466030163224787e-05} {"commit": "a41780c34f9598dff83bc0fed53c5c262abd1750", "message": "isHPO in JD\n", "proba": 0.0003994089493062347} {"commit": "40d355c278feef5901d51391732257e8a8a8b0ac", "message": "Fixed output shape in ConvNet\n", "proba": 4.3308045860612765e-07} {"commit": "0491ab7cc3d199312f805465b0eba0a4c2afa1f9", "message": "Added new atari load into script\n", "proba": 2.0783316756478598e-07} {"commit": "4331b05e0e1b45c86290e9ddd5047a86758d8df2", "message": "allow fit with smearing for range different of range of data\n", "proba": 1.5160442501382931e-07} {"commit": "392e1cafca4ad6124d1cf2e7c43fa2cf8bda928d", "message": "updating template tag tests\n", "proba": 3.771542367303482e-07} {"commit": "32190f971c0c497836adbfd75f0e2c09413bb17a", "message": "[fix] device placement\n", "proba": 4.713640748832404e-07} {"commit": "9cd146ebdee90a73db77fda00f772b66129f491e", "message": "parse string command in _Widget.call_process\n", "proba": 0.00017540754924993962} {"commit": "0c75cecbb606c53578daf8fa417fd350c2fe1620", "message": "Added deleting disk.local.temp\n", "proba": 3.695505483847228e-07} {"commit": "76f1039705ff491e1ed696c2fa29e9d61f62291a", "message": "check closed\n", "proba": 8.869509429132449e-07} {"commit": "e738afe0ffb6ab18bae7b1b8f50a65c6cf560bec", "message": "Documentation Drive.\nAdded examples for HelioProjective class.\nNeed to work on getting 'zeta' to be recognized by SkyCoord.\n", "proba": 9.817400581368929e-08} {"commit": "332c696d03449a4cd8d7b7c89e024b52e73d1b8b", "message": "fix error due to typo in flask example\n\n- fixes `TypeError: as_marshmallow_schema() missing 1 required positional argument: 'self'`", "proba": 1.7035414145993855e-07} {"commit": "ab68446fa7a26ce557ea7ce95239f63babf53307", "message": "Add comment describing battery module interval.\n", "proba": 1.1710490355198999e-07} {"commit": "a74fae27f8a46ba4e62a8451b699b8642f111682", "message": "added arm and x_direction to on_sync callback in the example\n", "proba": 2.787487858313398e-07} {"commit": "a57c058baeec19612103ca6c4f2c7a4b25207700", "message": "Add a comment\n", "proba": 1.9470159884349414e-07} {"commit": "790d4e4044fd48364dbce3aefd8ec3dc6cbe10af", "message": "[COSME] E501 line too long\n", "proba": 2.855791194633639e-07} {"commit": "bcbae96073951ec9bfd0ff6f5688e88bd135482d", "message": "Use pagination built-in errors for raising 404\n", "proba": 3.4502359085308854e-06} {"commit": "110dab98702ec97147ec323f8430ab27175b7e1e", "message": "Bump 0.45\n", "proba": 4.571948011289351e-06} {"commit": "d114a78d105ca3c7c1f2d20506c2f83477468551", "message": "Bump 0.35\n", "proba": 4.1513981159368996e-06} {"commit": "e46872713a690697807ac30dc5951beb278586b0", "message": "code cleanup\n", "proba": 7.806218036421342e-07} {"commit": "08884e278540cc3b3cbe780f6695bc8cbb4c05b6", "message": "improve docstrings\n", "proba": 1.0600634595903102e-05} {"commit": "686506cdfc7a297f85df2f8dfab361b18ce9aefc", "message": "this is much nicer disk info\n", "proba": 1.23000702956233e-07} {"commit": "78df264706d652666e85e34a5f20f0918cfde92d", "message": "webcam support\n", "proba": 6.305749025159457e-07} {"commit": "4fe2df38ae29b75c6b9ef66446f8f4d1904ae5d9", "message": "Fix flake8 linting issues\n", "proba": 1.3513701446754567e-07} {"commit": "b5535b71483788642f893ed9cef138c778c8d82a", "message": "return events from celery task\n", "proba": 0.9999994039535522} {"commit": "6cee1f1dc0118ba1040885824269be7f5ce5abc4", "message": "st_mtime always converted to int\n", "proba": 0.0029491267632693052} {"commit": "84c347b4647d78bbc43c1f9503368e1d194f84f6", "message": "import: Captura KeyboardInterrupt\n", "proba": 9.978144817068824e-07} {"commit": "5c10f5481cfaa39e6d4adeb8bbee6a017f397a3c", "message": "Process first non-visible actions than visible and commands one\n", "proba": 0.00010500936332391575} {"commit": "e6b4c8848b3b5e9e4cad2b675d1b67c5e9445049", "message": "Add missing canned-acl 'log-delivery-write' string\n", "proba": 0.9999755620956421} {"commit": "ca18899ef26c776ad7d2bc73fc42a543a134129e", "message": "tweaks\n", "proba": 9.085585475077096e-07} {"commit": "ffca2f8b1115bfddb9bdbbaffa641684ac7e09a1", "message": "Added coding declaration in bragly\\brag.py\n", "proba": 1.5512326001498877e-07} {"commit": "d49d5fcaa3019a6dc10ee75d7f155688f353854a", "message": "taskstats: example updated\n", "proba": 2.1783168904221384e-06} {"commit": "29849b3bd02995f48ffae4f808bbcf03932bb278", "message": "added documentation\n", "proba": 1.860227740735354e-07} {"commit": "55b440628d4fefa1d136c253513645a1790084b4", "message": "Adding small things\n", "proba": 1.4961577107897028e-05} {"commit": "777002e4cace979a939b36d50dcdc891d198126e", "message": "Documentation for .collections.lists.index/.lastindex\n", "proba": 4.3058724941147375e-07} {"commit": "0f019f047681da23aed98dc95e0f45447991725e", "message": "Rename last subclass_of_id to upper case (#285)\n\n", "proba": 9.618684089218732e-07} {"commit": "ff469acb8152d2eaf5fc49838efa10e65b8fcbf5", "message": "TelegramClient.get_dialogs: Rename 'count' argument to 'limit' (#72)\n\n", "proba": 1.8309386859982624e-06} {"commit": "2aa523c2d744651d17bc240f7bb25fbdb79cae32", "message": "Fixed a Typo\n\nChange-Id: Id9c98132456ce31317ef438f452f46b69bf6a029\n", "proba": 5.594433787337039e-06} {"commit": "b41bc4ca44549824151693514184af04fe7f4e6a", "message": "release 1.5\n", "proba": 2.2968031032633007e-07} {"commit": "6fd49ef66e04e27bd6a4e58c7f51b68c3ac0fbe3", "message": "Bugfix: name got mangled when working with whitespace.\n", "proba": 1.6164345595370833e-07} {"commit": "6c99f4c86773022caa75b259ec52d617c227df8c", "message": "Add missing bits of the tokenise line method.", "proba": 2.402804284429294e-07} {"commit": "e533ab527386c7f5fd9321aa821e2c6d46f41fa9", "message": "open temp file in text mode\n", "proba": 9.36589685807121e-07} {"commit": "f818650fff6558290a07539030491eb142d946c0", "message": "Add documentation for the parameter\n", "proba": 5.437212280412496e-07} {"commit": "930dd84002f384b47297967a3e0a117eb409d582", "message": "CLN: Exception in DataFrame._reduce (#29085)\n\n", "proba": 2.0173814618829056e-07} {"commit": "6c6f6cfee99bef6174702ffccef9dd0c91a83978", "message": "REF: apply native type conv to ix, cols before write_csv\n", "proba": 3.165823727613315e-07} {"commit": "b3f91519991eeb201884a92b39d8082ed1baca5c", "message": "_sanitize_column now reports proper duplicate error\n", "proba": 3.50371635704505e-07} {"commit": "39d685ba89158c093e5cfc895a3e4e6fb623e5c7", "message": "Added util function to handle multiline geometries during manipulation\n", "proba": 1.3407628784989356e-07} {"commit": "2c6896c3e80b9377b856e6476381569684d2fe96", "message": "Test against child model, not abstract PrivateLayerList. Webservice test isnt really valid anymore. Still some work to do to tidy this app up.\n\n--HG--\nbranch : 2.0-cms\n", "proba": 1.4640947654243064e-07} {"commit": "855f1acb4203731f9b5a8dc223be613cb6dd6c60", "message": "Add an argument to PadOrTrimTo() to specify the padding value.\n\nPiperOrigin-RevId: 227481089\n", "proba": 2.1248157281661406e-05} {"commit": "21a4bdc95e0e31373ee252528053f604073c0cba", "message": "Only place variables on worker job for controller/trainer_client/executor_tpu.\n\nPiperOrigin-RevId: 356620782\n", "proba": 1.8808923130109179e-07} {"commit": "b9f2bbae2c5d2ef1d75f4e870cee6b9b8d3c18f5", "message": "Initial commit\n", "proba": 3.003353299391165e-07} {"commit": "bea7d9dc8a913b41182755528acfcdcec71e62d2", "message": "Christ almighty I hate non-DRY versioning\n", "proba": 4.1502954672978376e-07} {"commit": "533f449d25fedea5ff083f7db38cea9046e0c231", "message": "Sometimes rows have 4 fields for some reason, fixes #148\n", "proba": 1.6003839675704512e-07} {"commit": "5506317dc7c8078b771934ddfd730d974929a446", "message": "Support relative directory paths for keyword input\n", "proba": 2.132066043714076e-07} {"commit": "e961ddc60a7cf94ec2245ef56a5060844a65e3fe", "message": "Adicionado novos parsers de blocos.\n", "proba": 1.704880645547746e-07} {"commit": "fbe8eef38c3639ed76d31cfc1a9b64fc0c12d0f0", "message": "http://code.google.com/p/lino/source/browse/docs/blog/2012/0928.rst\n", "proba": 2.2488738693482446e-07} {"commit": "1ac78c77a8efb97e8cda65e239f9b95a4f2bfcf1", "message": "Update ipc_lista1.16.py", "proba": 3.6562153127306374e-07} {"commit": "c7294036d67855fcd24f9dca77b1a815787c3ac5", "message": "Update ipc_lista2.04.py", "proba": 4.190232516521064e-07} {"commit": "5b881dc633d9f724bb8503790c4d4981a22f2529", "message": "Update ipc_lista2.06.py", "proba": 3.186159460710769e-07} {"commit": "549ef694f83a8492602d5d5bc68d46a0e1c16848", "message": "Delete ipc_lista2.11.py", "proba": 4.990413344785338e-06} {"commit": "83c0b06b643de2fbecf8c9aa5bd12a1d99403bc7", "message": "gradient2 precalculate for map optimization\n", "proba": 1.2185068953840528e-07} {"commit": "9e2170c37f148563b291ef9add31064468ed2d86", "message": "make the speed interpolator use the minimum speed correctly.\ncorrected some small datatype differences in speeds array.\n", "proba": 3.1103905939744436e-07} {"commit": "6fc2f57d09682a40478b3ee1b2a06ad5f3d940f5", "message": "Add ability to calculate confidence level contours\n", "proba": 2.1100795493111946e-06} {"commit": "5c5b7c15f602dfd5dfd4f17de55799e71b6fd2c6", "message": "update resource module\n", "proba": 6.164360684124404e-07} {"commit": "065b123198beade2bc5ddf6d7d93ddeb493d20a9", "message": "Removed the monkey-patching of urlresolvers.reverse. This breaks the tests,\nbut I have good hopes that the problem will be fixed in Django 1.0. See Django\nticket #8393.\n\n--HG--\nextra : convert_revision : svn%3Aed756015-4e4f-0410-aee6-ab3afed57ee0/trunk%4028\n", "proba": 6.252882030821638e-06} {"commit": "594d8b9c0ce553062eec309670393e6db19730af", "message": "Add degrees argument.\n\nAllows for rotations other than 90 degrees.", "proba": 0.002787361852824688} {"commit": "3cf70e81d1f2f57f3020ee138e376b62212b6cd2", "message": "get rid of PIL dependency just for PPM loading (incl. own parser)\nalso removes seeking requirement (no StringIO anymore)\n", "proba": 1.0658578020183995e-07} {"commit": "84f08206c0c177a120332d69f5cc45f345f12a7e", "message": "Clean up test case: remove accidentally commited debug print\n", "proba": 1.672061080171261e-05} {"commit": "25e05e39313077cc5cf9cd3f3a0c657bb3498a5e", "message": "remove requirement for root arg\n", "proba": 2.4011464120121673e-05} {"commit": "53549c2df9bb6f2c86071a38c230f9f15820d5a2", "message": "Fix Django 1.5 error (no `_meta.model`)\n", "proba": 6.140476034488529e-05} {"commit": "c5dc4fa11cd8078857e95819126d2dbcb5b39ed6", "message": "default avilability zone calculation wasn't complete. This commit fixes that by using the allege_aws_availablility_zones() function as intended by recent work\n", "proba": 3.114682840532623e-07} {"commit": "cfd1f25fc4be84d7e2b24b09aab983eae8809c1d", "message": "Keep looking for a move until there is at least 1\n", "proba": 6.913519882800756e-06} {"commit": "dab9a73dc359c55543a87b70d1d5dc23b2fd043a", "message": "removing crufty debugging print statements - keep logs clean\n", "proba": 1.3558030786953168e-07} {"commit": "77ddd7bce015ed1d06c862da7fa7941bcd954832", "message": "opt.LMEngine: Making the loop in do_run_x a subfunction, _runx\n", "proba": 1.5702217979196575e-06} {"commit": "15f2b1f66cc0e040c39f6128592c4ceb1dbd479b", "message": "use t instead of this as generated instance variable\n", "proba": 4.7448870077460015e-07} {"commit": "d0b5577bcc353bea0241dbe87038315f51894cfc", "message": "Add a defualt yaml loader to avoid code explotation (closes #41)\n", "proba": 1.115761634196133e-07} {"commit": "c2a735edae21b8c7640b41e38591d2564e723cd0", "message": "LA particle added to regex\n", "proba": 2.344423108979754e-07} {"commit": "da085c2849b5c352f9a4649528a236677094bb73", "message": "Removes unnecessary quotes from around mapred.job.name\n\nIn setting mapred.job.name=\"%s\", we're actually including the quote marks in the\njob name, as subprocess escapes everything passed in the arguments. Removing the\nquotes results in job names that no longer have leading quote marks.\n", "proba": 1.2723090492272604e-07} {"commit": "87981a9d9bdbd00cdf0a6332b4923d1a7d562fbb", "message": "added import loader\n", "proba": 3.033752307146642e-07} {"commit": "75b82a8f2d95a517834d47a3df005e431cbf7782", "message": "Allows package binaries to be passed to job runner\n", "proba": 3.7979847888891527e-07} {"commit": "801a0fefcf5799eed8073b623b2e7fdb2f522c42", "message": "Move all_completions update inside the loop.\n", "proba": 1.305032384379956e-07} {"commit": "573191855ab74011c91769f768782309b0f66b94", "message": "[xferfcn_input_test.py] Style refactor\n\n- pep8 warnings\n- camel case functions to lower case\n", "proba": 1.0713646361182327e-06} {"commit": "46a90b36a79c54034bc98c2567dfbf6305abede3", "message": "[\u03a6] Print paths in verify()\n", "proba": 1.3400355669546116e-07} {"commit": "7682aad3347398ab5250b83c95c54018b2735cd2", "message": "Renamed variable.\n", "proba": 2.6575651190796634e-07} {"commit": "19db84d504e98e42e87b5c5160b6d4316a3b2e14", "message": "Added a check to prevent resizing images that have the same dimensions as the target photosize.\n\ngit-svn-id: 7cd57066f4757936737e83af525e37846a788f28@84 2d8b3452-2338-0410-8a60-9550768eb463\n", "proba": 1.2685703723036568e-06} {"commit": "2686167699464a0f2e0b1cee757a427ec5d12a5f", "message": "Fixed .raw.kwd fallback bug\n", "proba": 3.7132681995899475e-07} {"commit": "a6d8f8bd53bc140085ae1cd48085221c3bf63afd", "message": "More idiot indent problems fixed 2\n", "proba": 1.3929967224157735e-07} {"commit": "cd064940922cdd812c37b029ef99ab28235acbdf", "message": "Finish off bcm_host translation\n", "proba": 1.7230126104550436e-05} {"commit": "95dd82e37d2e527d031168f8eb3ffc9bd93c9ce6", "message": "Only create timeseries data if integrety checks pass.\n", "proba": 1.214057334664176e-07} {"commit": "0e65defb0b5d6ffa48dba84e04f7f5a17b9e9704", "message": "Flake8 correction\n", "proba": 2.0582284321335464e-07} {"commit": "34db2675d37ee205ff7e5376635a388569e52692", "message": "Bump version to 0.1.0.\n", "proba": 1.1852463188688489e-07} {"commit": "a71dde80798b54d6704db3d2425d5eb271803ed9", "message": "remove unnecessary override of base class method\n", "proba": 1.1547933809197275e-06} {"commit": "a96a6ea950282e3a1d195d64e12422fac743f7e3", "message": "fix shape info in concat layer\n\nSummary:\nThe output shape info is incorrect, e.g. if we have 4 embeddings with dim size 32, the actual shape is (4, 32),\nbut the previous implementation in concat layer will give us (128, 1). This bug doesn't affect the dot products\ncalculation because the actual shape of the blob is still (4, 32) in concat_split_op\n\nDifferential Revision: D6264793\n\nfbshipit-source-id: 82995e83a8c859cbd15617ff7850a35b30b453b6\n", "proba": 6.257105269469321e-06} {"commit": "c50f1d0965428d3a5f2375bdc3c29ceb2f4a5d15", "message": "Ignore if the two oldes of three ir right values are -1\n", "proba": 0.9999687671661377} {"commit": "26e16b106c1741a5f2ab98aef0651bc63db1de5e", "message": "Fix doco. Backport candidate.\n", "proba": 1.2636436963475717e-07} {"commit": "a862758b7062776d940284efcad62fc4d3e0166d", "message": "Fix #481\n", "proba": 8.828183695186453e-07} {"commit": "51ff857b4b1a9a09b39229ba3c23030ef935241f", "message": "Update Piano Babble for STFTMagGAN\n", "proba": 1.3968225687222002e-07} {"commit": "ee7cc33eaf58ef260413f4f25c377e732b0cb94e", "message": "Address SF patch #485789 (Stefan Schwarzer).\n\n$BROWSER should be split on os.pathsep, not on \":\".\n", "proba": 1.040567667587311e-07} {"commit": "1c155faa09ce91dc0c50ca756dae9deb279a5ea9", "message": "added default values for the inventory and group in add_hosts\n", "proba": 2.599776109946106e-07} {"commit": "bfa40257433bdd14ea16d56a38762a3d2b2b70a0", "message": "Add some more DocumentCloud links to Hdr, Smry, Splt\n\nAdded from https://www.documentcloud.org/documents/2711616-MapCalFormat2Fields.html", "proba": 1.2234113455633633e-07} {"commit": "f5c823f81d050115076bf0951cb0c21cc6d4241b", "message": "rm useless code\n", "proba": 3.780837118938507e-07} {"commit": "42d4508f87ba3a4218efc9fe58ccc5daf7053a92", "message": "No idea till when have to test\n", "proba": 3.8457716300399625e-07} {"commit": "b27617e9f05c16814db0dd427dfe86d2f0c00f28", "message": "Update Splt_CD\n\nAdded page number for Splt_CD. #1210", "proba": 5.231730142440938e-07} {"commit": "8c5057820996243ff68f5fe1a33429eff687ddce", "message": "Generate the OPF correctly to be a periodical\n", "proba": 0.9999995231628418} {"commit": "4234309ffdc961d6630bd51d8c842110cc310af1", "message": "Target.get_id_or_cache, do order_by id descending before returning first\n", "proba": 3.4579604744067183e-06} {"commit": "e155ab3ead38afff79da7bb6a665f55d73952666", "message": "Refactor coder.py\n", "proba": 1.6775990161477239e-06} {"commit": "24134b93bb08a62249a7d521c515df55917eb864", "message": "Exclude pointers from node children list\n", "proba": 9.193946084451454e-07} {"commit": "3b479501a033b2cca0472e74e8c2767c5e24979e", "message": "updated mail_error.py\n", "proba": 2.196266677856329e-06} {"commit": "f8d6cceb74d37825871c56c951329ef141747670", "message": "smart download\n", "proba": 1.232267663908715e-06} {"commit": "487d16f08e7914237285c214266f1568c6bf1999", "message": "Restrict folders from /v2/nodes/\n", "proba": 2.0116659982249985e-07} {"commit": "bbec35fdc030f9a2a315cd801d25c3793b18d9cc", "message": "Monitor error handling.\n", "proba": 2.1012506579154433e-07} {"commit": "1ac3a70c22939a13be97234c8403d5263db2e4e6", "message": "Update ping.py (#29)\n\nunexpected indent", "proba": 1.8798020562371676e-07} {"commit": "9189436dca7e02d0f6f8438b714d2d8b6a854ac1", "message": "add Quota/Allocation serializers\n", "proba": 2.3993513309505943e-07} {"commit": "2d00160402a09e11f17ae5b44e13f97cd60895b1", "message": "Add Timestamp\n", "proba": 5.555451934924349e-06} {"commit": "44c26b04c7fd13120f1f18cb2be8526cbeebf910", "message": "Started arcade drive\n", "proba": 3.869740510253905e-07} {"commit": "e00e01142abb675acf01295fa71fb205c1278319", "message": "fixed stuff from merge\n", "proba": 2.857360072994197e-07} {"commit": "9a54f11fb8c78bc577c87b5dce5edea4502fd7df", "message": "Make main as simple as possible!\n", "proba": 1.294144794883323e-06} {"commit": "425d109ae457b8f2f5c03d043a64b9e6cdd34a7d", "message": "Changed conf to read firenado.yml files too.\n\nRefs: #83\n", "proba": 1.2241862634709832e-07} {"commit": "d093c1b472851272829386caef2eb97d0d1cfa12", "message": "Introduced a bug yesterday, bad context-passing between serializers. Project endpoint will work again\n", "proba": 1.1811074784873199e-07} {"commit": "ee926fc347c11b98d6f5391e14522ef60558a6ed", "message": "Fix new bug querying pypi for editable local package hashes\n", "proba": 2.2230192087135947e-07} {"commit": "581731de96c2c31692369aa56eb70b3ebe7f0f80", "message": "Fix syntax error in settings\n", "proba": 1.4523962818202563e-05} {"commit": "a049564c7dd3b4670951c11830a16c6275f9d899", "message": "first draft of users list api docs\n", "proba": 1.5600316771724465e-07} {"commit": "67b59111060df6ae6ecf59108ae1405be3ae06fc", "message": "Refactored abrahamson_silva_2008\n", "proba": 4.5088074784871424e-07} {"commit": "ffa4931e527ca927f00232e1587b7d8bd524e7aa", "message": "Increase verison nuber\n", "proba": 1.2533620292742853e-06} {"commit": "3270acb803dda7219196f1602dfa4e4d95ffdb89", "message": "simplify code and add bit==32\n", "proba": 0.00014090861077420413} {"commit": "bc829d8d3a3be8e0de85140bf9a7e019eff735fa", "message": "work on input jobs, subset cont\n", "proba": 3.30155955907685e-07} {"commit": "1e2d35cfe9d5e08783f7c8e73a8cce8a50cdac1e", "message": "ENH: fit_transform on TfidfTransformer\n", "proba": 3.036073508155823e-07} {"commit": "3f946b5278cb964ce1dab1b6e8a3a74e16d00fca", "message": "Fix super() call\n", "proba": 1.292758770432556e-05} {"commit": "3fbc211bd66a058eb2da48a06047462712a0f553", "message": "Fix argument ordering in namespace calculations\n", "proba": 0.00014727706729900092} {"commit": "ad1a91b929b261779a714830558c72c22b2ee9af", "message": "swift: cut down logging for gets failing on 404\n\nPreviously the swift client created a couple of pages of logs (at INFO\nlevel) for every GET to a nonexistent file as it logged a full traceback as\nwell as some made up curl commands to try to perform the same request that\nfailed.\n\nSet Swift's log level to WARNING and filter its exception logging a bit. We\nstill log a lot, but this makes it somewhat manageable.\n\nWe'll probably need to do something to cut down the amount of logs we\ngenerate in cases where a PG cluster is set up as a standby only connected\nto the WAL archive. PG keeps asking us for files that don't exist and we\nkeep logging 4-5 lines for every such request.\n", "proba": 1.8329846795950289e-07} {"commit": "9668d4256eafdf7b6b756f99d02cd478f5d40db3", "message": "Minor code fixes wrt feedback.\n\nAs title.\n", "proba": 1.0415148210540792e-07} {"commit": "a3ccf0811b4f98d1fa90988825252593881afcaa", "message": "Added license support and wait between retries.\n", "proba": 1.05114210668944e-07} {"commit": "1d12f72a744dd7aae868e90620e6e2c00d10b451", "message": "default export_max_rows to unlimited\n", "proba": 1.5405207705043722e-06} {"commit": "7e552124c6a0d9442625a33063ea8914ec94eda1", "message": "Update runtests to be able to run spidermonkey (.js) tests with esc\n", "proba": 2.24414975491527e-07} {"commit": "007a39ac1e6493a11eac1629b65863e8fc543cf6", "message": "add aliases for np.ravel np.transpose\n", "proba": 0.00029180399724282324} {"commit": "7c3dd5f0f249c99b64b9a1cd4c683a3b4324fcc1", "message": "[crawler] support category\n", "proba": 2.823132945195539e-06} {"commit": "8c6a1caca0caa95a93835e9db6f90ddf2ea4717c", "message": "Fix status argument in werkzeug Response\n", "proba": 1.2080670330760768e-06} {"commit": "a9dd1e03f569136906a725dfb1143b939620e07d", "message": "left and right layout commands implemented\n", "proba": 5.047381250733451e-07} {"commit": "db69a29fd5a2bab81e323f4b9b6baae6a852a260", "message": "set g at beginning of auto routes\n", "proba": 2.0084569030132116e-07} {"commit": "9545476242dd74c74b0141432b0b965e60167a25", "message": "print -> warning\n", "proba": 2.409156195426476e-06} {"commit": "64913d527d759c1a790ed22863594f4ae69a0068", "message": "#147 Changing priority for should match from 2 to 1\n", "proba": 3.71171954611782e-05} {"commit": "7b0fdb9959c15093ddf2495f536471394b92a73f", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "77377c90f9a1fa1e1c15f2db88d7e07590aaf4e0", "message": "Do not try to fix children with invalid backref\n\nOnly fix those that have NO backref to their parent\n\nAlso, add logging\n", "proba": 1.6630049515242717e-07} {"commit": "fb042d8c1d2837b986381f5541f86373aa26580d", "message": "Relax check for timers in manual instrumentation test. (#3740)\n\nSome of the threads we filter for do not contain timers since they are\r\ncreated by the lib Orbit injects into the process.\r\nStrictly speaking we could test for exactly three of the threads\r\ncontaining timers. Since the code is already there and we loose nothing\r\nof value we just check for at least one of the track containing timers.\r\nDetails are in the bug.\r\n\r\nTest: Local run.\r\nBug: b/229709116", "proba": 1.3201953663610766e-07} {"commit": "1ded22e9573a5217491804822196ff87dbefcfdf", "message": "Use threshold as the default exclude mesh method; use pad as the default edge method\n", "proba": 5.39429777290934e-07} {"commit": "af869541c14222d9a78fd356b5a764b2d3d3d9b9", "message": "Guard against re-saving json\n", "proba": 2.1049490328550746e-07} {"commit": "bbc061b606e1ed7294d0f867940b19dd2c7623e0", "message": "fix test_synthese_sensitivity\n\nThe test cover insert and update sensitivity triggers.\n", "proba": 1.0802973093859691e-07} {"commit": "2bd2dc06f4e1452c28cf8ef0b224be63cea28aa0", "message": "Update exception syntax", "proba": 5.938109666203673e-07} {"commit": "57c82f35366ea9122908e3b0cbdcf536d430c2de", "message": "support passing alembic context kwargs from constructor into init_app\n", "proba": 2.721041596487339e-07} {"commit": "6d96423fa6be6c2383b5823d2f1a50c6bdea3ab1", "message": "change install location for atoman to Petr fork\n", "proba": 1.4625373978560674e-07} {"commit": "786a05bcd20b46903d225df3dc08c58d5e5541e0", "message": "include current time as part of the db schema name when using a SNAPSHOT \"release\"\n", "proba": 1.0590267152110755e-07} {"commit": "ba317116d0ee298b4d5ca753ca0c741d9acaedb5", "message": "Update lib_path_store_test.py", "proba": 3.205777375114849e-06} {"commit": "614fab454edd0b58852e6c18a69dfcc114edfb49", "message": "fix bug with how refbed gets passed. refactor to not use recursive calls for tree traversal. parallelize bigwig generation\n", "proba": 4.2674528799580003e-07} {"commit": "bdecf7ac2fdf2b13bdeee2c331a47733726a1b9d", "message": "Partially implement PUSHF/POPF.\n", "proba": 2.135700611916036e-07} {"commit": "59cdb432baa8a763dcb019157e2cb360e47856d6", "message": "Added so data to genes\n", "proba": 1.4440350071254215e-07} {"commit": "eb6d9a6392bde0b805b497014974fc83a1c4f0ac", "message": "Bug fix: resource report one bucket offset on sqlite when using daily buckets\nMerci R\u00e9my Cherel pour rapporter le probl\u00e8me.\n", "proba": 1.0240464121125115e-07} {"commit": "3a0b6d7bdd5c027eeec8a0cd7303124e4c8aeb88", "message": "revert write fasta\n", "proba": 4.183822511549806e-06} {"commit": "70b88289d31c1914d79ae3b3bbb78987c3c57cd5", "message": "User of report needs to be in work report\n", "proba": 9.59616272666608e-07} {"commit": "3e36b87dab4af2cf6b4c8dc6bf73129b0e9c9c01", "message": "For each nested field under \"attributes\", do to_representation.\n", "proba": 1.751109408587581e-07} {"commit": "268b67d4147f9f654ff744dfd2e615556a3213f9", "message": "Makes ca9_u more lenient\n", "proba": 0.00012463315215427428} {"commit": "90e859623a873e41e8ff272712fd19ccb2f2be28", "message": "Hound\n", "proba": 9.282309292757418e-06} {"commit": "d62655861d5e8c5ae347df63c2264281f009a492", "message": "averez-mig: fix mig script\n", "proba": 6.31948432783247e-06} {"commit": "b2e000300ff88fc7439cd1c0a8fd3e19e04cd3af", "message": "rebased with changes from rspeed to include auth source, and implement auth mechanism as well.\n", "proba": 1.0000783134955782e-07} {"commit": "3f06795d23d23841e86b0bd16be5e00a04110d04", "message": "yapf 0.27 reformatted these\n", "proba": 3.4457730180292856e-07} {"commit": "9072067ff6741b4b63e2551796fd172d4a992e6e", "message": "Remove the change made for setting widget interactor\n", "proba": 4.064001757342339e-07} {"commit": "d4a5eca334c2a3c01ff60f57316b89d8a272bbcb", "message": "Fix deprecation of matplotlib.pyplot.register_cmap (#2127)\n\n", "proba": 6.0400584516173694e-06} {"commit": "7030eaa462b1a70141e2412342db781a4fe5251c", "message": "setting the absolute path for localize gui icon\n", "proba": 3.0304789788715425e-07} {"commit": "5a040e6462c1f2bd5accd401cc29daff801f8efc", "message": "ENH: fix bug with show on small pspace vectors\n", "proba": 1.8329986062326498e-07} {"commit": "20ce7b93d2c97abcd242ff0f694745614604efd5", "message": "Update extract_intron_gff3_from_gff3.py", "proba": 2.7172552563570207e-06} {"commit": "1bf37aca6546503d0e700997ce7077cd18724ed2", "message": "Prevent runaway memory use during rescan, added debug output\n", "proba": 4.6742835024815577e-07} {"commit": "60d5dbcf45668622334c774ec38fa0b5e5089efe", "message": "Adding the due field to the operation plan export\n", "proba": 1.4712723839238606e-07} {"commit": "a52b92f3699fde06109b672a320f7485f6d88f1c", "message": "Add radd, rsub and rmul\n", "proba": 3.4737961414066376e-06} {"commit": "16c69f452076e1ffbe536003a107ac0319db9298", "message": "dont print extra line\n", "proba": 4.044283627990808e-07} {"commit": "6852ed0324b9250c0d18c9572039edddfe0793f5", "message": "HyperlinkedRelatedFields are used to serialize relationships.\n", "proba": 1.1223634288626272e-07} {"commit": "c5a5ea20c1e2aee05422d8a11a23061ff8f39cef", "message": "change order\n", "proba": 2.7132518880534917e-06} {"commit": "43a79011287228d6a62c9bf1f14182a0b0190ed6", "message": "add PointSerializer\n", "proba": 2.5902679112732585e-07} {"commit": "a2f65385c2bf6a37bbafcf04448f796534fad79a", "message": "api response: serialize all to_dict objects by default\n", "proba": 1.2655737009481527e-06} {"commit": "47aed8e5f3cdb76770a5b737460b0b388869c44e", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "1b61113831158b97a7fe4166cf3ef6dbfd8cf902", "message": "message: Removed unused imports in __init__\n", "proba": 3.5560825040192867e-07} {"commit": "501b082de9c07cb58a4849dfdf6e54e417c51484", "message": "reformat pep8 4 spaces\n", "proba": 0.9998250603675842} {"commit": "a514ba9c124202b80e1b3b9db5fd33101d2679ce", "message": "Expose command.version.\n", "proba": 8.25433971840539e-07} {"commit": "78cf34168b3b17cc26c45908bd3b98e1c05856ce", "message": "Access value by get method with default.\n", "proba": 1.1240537389767269e-07} {"commit": "69fb39ce6a2810128c3e489f5aa871c884038549", "message": "bug correction in HklPlane normal\n", "proba": 1.8896446363214636e-07} {"commit": "98a75f8e9223e3fbd4ec141fa8722ffe4ef90338", "message": "Proc Files\n", "proba": 9.438292067898146e-07} {"commit": "2c8a49a271d1c1b44ee94b8ecb4a793e0fad2656", "message": "fix for 400 error\n", "proba": 6.525737603624293e-07} {"commit": "2c6d5531948dc30bedf933f28fa6c2f8dd8df7ca", "message": "Update example_05_dots_segmentation.py\n\nfixed data fetcher command", "proba": 2.0318374538419448e-07} {"commit": "61906aaab097626b3ce307f4cb29105b8daedafc", "message": "prevent runaway GEMPAK from torpedoing server", "proba": 1.9841303355860873e-07} {"commit": "4f1c32e3ec57473b2a9f2732d4c44303c129c628", "message": "Change run_groundtruth to use the new load data function.\n", "proba": 1.1829110491134998e-07} {"commit": "bb2ca37ac049286c42ac011571e42f88a4bdda13", "message": "fixed URLS\n", "proba": 9.72351244854508e-07} {"commit": "caded9326f46f78fc2982e837ddd06d34e9dcec2", "message": "Fix submission admin\n", "proba": 2.475717906236241e-07} {"commit": "dfd797f7a5793c78b9e3b096336c83a5e9cc14a3", "message": "Updated build number\n", "proba": 4.853537802773644e-07} {"commit": "d98d6bf5d074efd233e72095b4f6d0d4172da251", "message": "Differentiate plab node bootstrap tarball supplimental emulab tarballs\naccording to if the inner plab is on the control or exp net. Other fixes.\n", "proba": 1.077309619290645e-07} {"commit": "46409f30b782411711b3b3af3918970f459b28b1", "message": "brute-force: updates to script\n", "proba": 0.0001655926025705412} {"commit": "a1d301b4758f02f59b8c3645d461128c1a90bece", "message": "Make StackFitter more modular\n", "proba": 2.4130049496307038e-05} {"commit": "8992d1429f99232525105ca103c434fedf73b277", "message": "Try to be lenient to incoming bytes because YAML library stupidly spits out bytes.\n", "proba": 1.3383190378135623e-07} {"commit": "4c80681974d4ba628ad0e9fc21dacf26e939fa8a", "message": "append \u0441\u0440\u0430\u0437\u0443 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\n", "proba": 0.004040755331516266} {"commit": "8ea1f3bc47364ddbee07f76bce97e0df6fa676fc", "message": "more updates\n\n", "proba": 1.12760332626749e-07} {"commit": "4ed581938343f36817c7b1eb33f3a455d3e93338", "message": "JDK8: fix usage of javap in jni_generator\n\nChange-Id: Id40df5cfa83a2b3058e0b4fab71dc01e905f5921\nSigned-off-by: Chet Kener <4bada73e411a9c678a318a79d04d7df4a5fc4429@gmail.com>\n", "proba": 1.2675614868840057e-07} {"commit": "b6703f3cdbbfe63484655f115dfdbb60b4d7ebef", "message": "add voc utils to chainercv.datasets.__init__\n", "proba": 2.382946320267365e-07} {"commit": "133781885acc9b221e404e23a65149d6f0b02ba4", "message": "remove my comment. still wish this could be done in a cleaner way tho\n\n\ngit-svn-id: 655ff90ec95d1eeadb1ee4bb9db742a3c015d499@6691 8cd8332f-0806-0410-a4b6-96f4b9520244\n", "proba": 7.131033044061041e-07} {"commit": "55637e02b74a042ce9ffb27a79731fc0cc41bd2b", "message": "update get_subplots() docstring\n", "proba": 5.902314228478645e-07} {"commit": "ead24a8e7510966a85bc848e452f327b4059dc72", "message": "use new grizli-config repository for fetching config files\n", "proba": 1.7360461868065613e-07} {"commit": "ec9c6a346d492555ab13979e5ff4578ed10157f3", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "72a364e308154745acfbfb554b5e4c1587e7983d", "message": "Modifications to util_arry to work with fixed format.\n", "proba": 1.0278230888616235e-07} {"commit": "b9647d5983e69db63bdb6883819ca8605b713f90", "message": "remove empty module\n", "proba": 4.776359219249571e-06} {"commit": "0a7b18d668f7a4512a91dbdc16167f4225b03e25", "message": "fix bug with mean motion calculation\n", "proba": 2.7395651613915106e-07} {"commit": "2b6f8a9f803020a0ac92c81828243becfc58519b", "message": "L2 v2022.10.2-22+64e8d1 \u0434\u0443\u043c\u0430\u044e \u043d\u0435 \u0441\u0442\u043e\u0438\u0442 \u044d\u0442\u043e \u0432 \u043f\u0438\u0441\u044c\u043c\u0430\u0445 \u0441\u0441\u044b\u043b\u0430\u0442\u044c\u0441\n", "proba": 7.284882030944573e-07} {"commit": "2f61397352cb2c54f8d8d8b6e4397849f096d8f1", "message": "Change debug to false\n", "proba": 0.9999947547912598} {"commit": "d197967ee9e46c69964ab6b8bcacc125ef49d1e2", "message": "compatibility between gstreamer 1.2 and 1.4, for both raspbians: wheezy and jessie\n", "proba": 1.545582932749312e-07} {"commit": "5b4050125133b17190aa601c902787dcb869e4e9", "message": "[channelfilter] amend channel filter warning (only friendlinks)\n", "proba": 1.077691891282484e-07} {"commit": "e6d0f0ae670b172722e8c1cb523beb058902a17c", "message": "Delete generate_domain_subscription_from_date\n", "proba": 2.1659481717506424e-05} {"commit": "97a5ff0775643477db2104933305517df44c93ea", "message": "Changes the arch for iad0t to x86_64-r630 to fix their booting issues, even though they are technically R620s.\n", "proba": 1.0315506671076946e-07} {"commit": "c509e5e853e68968a8c7fe949d5cfe526da4bda4", "message": "Fixed an issue preventing draw_limb and draw_grid from working properly\n", "proba": 1.4424301753024338e-07} {"commit": "346469992c90e01d87d152dbddbe2cb374a3f1ea", "message": "Absolute url for schema in swagger-ui\n", "proba": 1.4346078103244508e-07} {"commit": "361ca915095d744f06d45796f46f96d077a52ee8", "message": "Ignore aggregates with no functions in calculators_for_aggregates(); fix imports\n", "proba": 6.838789659013855e-07} {"commit": "a7333e40949f980565167d5518e9b0a2de3f17d3", "message": "Reactivated meter rewriting and made beams cross divisions.\n", "proba": 1.0554695251130397e-07} {"commit": "a0c831f7c0c302ee508200b54d84c322295980fc", "message": "Adding support for Generator, MediaWiki, Blogger and general content fallback readers\n", "proba": 1.3734315018609777e-07} {"commit": "1776f90a170e1020f2c215d138e3507c94c3c63e", "message": "daenney made me do it\n", "proba": 7.237275099214457e-07} {"commit": "ec05d025686276c8875bd3b2339795ce272a01ad", "message": "mender/cli/inventory: pylint cleanups\n\nSigned-off-by: Maciej Borzecki \n", "proba": 1.1877832406526068e-07} {"commit": "63cddf4f67881a4959ae360a01813e07ef572b02", "message": "Show only Permission groups on the memberlist\n", "proba": 1.2887659295302e-07} {"commit": "98eef3120705efbfc859a0c429982cc9a73d5f6f", "message": "Relax get_entry_model() requirements, using only_installed=False\n", "proba": 0.0004714866227004677} {"commit": "14a3fdba0437401615a86e2689c18ebb38d599d4", "message": "Eliminate potential memory leak for bsdoidstores which are part of reference cycles.\n", "proba": 1.1137183264509076e-07} {"commit": "7f4f65d3f2698555276e95a7da984cef95e252d6", "message": "Update main.py", "proba": 7.280797831299424e-07} {"commit": "fba52a87255976e5809279dc028e48d07705b050", "message": "added hand detection to assistant\n", "proba": 1.352561440626232e-07} {"commit": "7c0cbeeb9d92039d426a0d9a486cfb610e6327f3", "message": "PEP8 formatting\n", "proba": 1.6820575865494902e-07} {"commit": "67c7018c9fe0c44b0a170ef1c2f58ce74c4400af", "message": "Giving nathan credit for the lookup function in dns.py", "proba": 1.9483716187096434e-06} {"commit": "11b2ed73ba3d0c9b69d7fbd0aabae80895a3fcf9", "message": "Fix json formated data\n", "proba": 0.007243708241730928} {"commit": "b5edc504b3c7b2840dca1ef26ad01035628a2db6", "message": "blog post enhance\n", "proba": 1.2640884961001575e-07} {"commit": "35430ad48ace063db8add864c50824c3ece01402", "message": "Skia masters: respect can_merge_requests\n\nSee https://chromereviews.googleplex.com/163447013 for example usage.\n\nBUG=skia:3421\n\nReview URL: https://codereview.chromium.org/1002753002\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@294434 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.4341211428691167e-06} {"commit": "eb71f193787fc09b437c49fd730f838c9a3a7c3b", "message": "include columns for invoice related to subscription adjustment\n", "proba": 1.3921281549755804e-07} {"commit": "569a64ba55a92347d8cd13d29aaf22b146c2ccc5", "message": "Some PEP8 fixes pulled from another PR to ease merging\n", "proba": 1.1019194801065169e-07} {"commit": "d5e80d225e96abc5b24be88a9e68bd137770d4b7", "message": "Print client command to stdout when pipeing\n\nAs long as we aren't logging post backs that is.\n", "proba": 1.1710289982147515e-07} {"commit": "34337a6bb7661518fea0323f4cd13562655f8a52", "message": "Replaced data-URI QR codes with a local temporary file. Fixes #9.\n", "proba": 1.0211870460352657e-07} {"commit": "dc9acab9b5cf3bc60391c1b05b214a366c4f4365", "message": "Improved the snarfer re and added the 'Buy It Now' price to the list of things\nwhich are snarfed.\n", "proba": 9.83194183845626e-08} {"commit": "eb9b6f899b662152044c1f438d30e65ed60b0270", "message": "fix incongruence between db and json schema\n", "proba": 1.0794155969051644e-05} {"commit": "5f6c80d1d9e55d047f753588213e69e7147db0e4", "message": "Skip IPv6 tests if it's not available\n", "proba": 3.775608945488784e-07} {"commit": "b183c4a832f63021a94edf2fa017d4b7c634d7ff", "message": "Improve logging of AssertionErrors\n\nCurrently, when we have an assertion error raised from cmdlib, it looks like this:\n\n [cluster] root@node4:~# gnt-instance grow-disk instance1 0 1G\n Failure: command execution error:\n\nThis is very very confusing. This patch adds a bit of traceback\nformatting to improve this as follows:\n\n [cluster] root@node4:~# gnt-instance grow-disk instance1 0 1G\n Failure: command execution error:\n Internal assertion error: please report this as a bug.\n Error message: ''; location:\n File \"/usr/lib/python2.6/dist-packages/ganeti/cmdlib.py\", line 11954, in CheckPrereq\n assert False\n\nThis is not perfect, but at least it shows better what the problem is.\n\nSigned-off-by: Iustin Pop \nReviewed-by: Michael Hanselmann <68b67885ff74281219b4a4be33cc20fd45078d7c@google.com>\n", "proba": 0.9979658126831055} {"commit": "d027a7a2b5ceb3b4fff46a17690bb9e8ad9d9cf2", "message": "Added docstring.\n", "proba": 1.6358255550130707e-07} {"commit": "125d009be641886f8f8d03a9e72fe9a771ae3894", "message": "Will test saved message to check it matches the test message\n", "proba": 5.563217655435437e-07} {"commit": "4b59a40f6a48a55483f1c7bf4a6b83a2b81f4147", "message": "Fixes #225: arcsec/pixel value refers to resized image: convert it back to the original size\n", "proba": 1.3348443417271483e-07} {"commit": "d5fd87e34b0a99810aa5b4e45bcd82ae8630c8e5", "message": "update 1 USD to read 1 USD /month\n", "proba": 1.685591968225708e-07} {"commit": "1b6b62e0d6b49156d70556686d3e6d1c7b550019", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "e8229768040b8b6ddfe23bc448b03b1613e79b68", "message": "Set default times/coordinates once in mapbase\n", "proba": 5.725778464693576e-07} {"commit": "e9b8221a964b16bfc190eaf71a3bfc56312225df", "message": "Ignore some tests\n", "proba": 6.87130693677318e-07} {"commit": "2f6943ba473caf348cc8c68ecfea01a8769a8c97", "message": "More font tweaking\n", "proba": 1.3788280739390757e-07} {"commit": "f5031bc2d4385609ea574b86392e4ef7c3a50cbb", "message": "[FIX] dmain\n", "proba": 7.807059319020482e-07} {"commit": "9097b0d7ba6ac0926728a48049b4dcd7ba7c87e0", "message": "add ipv6 support\n", "proba": 2.766011846233596e-07} {"commit": "b76ed61d5bb1b2d58b9032c38611cd5146268454", "message": "Privmsg, not PrivmsgCommand\n", "proba": 0.9986003041267395} {"commit": "6af3e78ed93d08552b017b6dfc9fef1493e2bb1c", "message": "doc: just added docstring\n", "proba": 6.134369527899253e-07} {"commit": "e056113ec40f661257c24bf8870e7bd3b1f63451", "message": "Issues: Handle DeviceUpdateException for remove_metatdata\nFixes #54\n\nProblem:\nThe remove_metadata method can throw an exception that is not handled.\n\nAnalysis:\nAdd try .. catch to the DeviceUpdateException\n\nTests:\nManual\n", "proba": 2.132692458189922e-07} {"commit": "d1f4f828975cbccde9a97af71eb17b99bc9a535c", "message": "Fix port autodececting without hwid\n", "proba": 4.6962401256678277e-07} {"commit": "2e9ee111c5c738ba878523e16b461b0e75134886", "message": "more pythonic auth\n", "proba": 2.9657746836164733e-07} {"commit": "bc676ae402499833cd63562b0c7f66f9ba549464", "message": "Improved watched status when nf sync is enabled\n", "proba": 2.287346916318711e-07} {"commit": "0c0640217458dbbe87e712b13d217995a579f2d0", "message": "GH-36 Update block models to use ArrayInstanceProperty\n", "proba": 1.273956655722941e-07} {"commit": "dc1891681efe8a51ac49e2ca5485aee5463726cd", "message": "service test fixtures: remove no-longer-relevant (and slightly incorrect) comments\n", "proba": 4.5831578177057963e-07} {"commit": "c80c544dd23942ef00f00982f6f4307c7c674684", "message": "Fix serializer oops\n", "proba": 4.582005203701556e-06} {"commit": "d3a6de4e53ea3d9e82d86c4b210b1b8dc08c69ed", "message": "Simplify TokenInfo annotation\n\nCo-authored-by: Alex Hall ", "proba": 2.0324190700193867e-05} {"commit": "ff15bde4a1063144da471c9c7e04488f483980ef", "message": "Beef up delete_all_locations\n", "proba": 8.443049591733143e-05} {"commit": "ab2eee1454dbaef6a496eb7ca642a855ab5eb261", "message": "Code review: 23790043: Bug fix for plasm parameter parsing.\n", "proba": 1.0695418239947685e-07} {"commit": "2c605ccbac015310597978e6516c04429edb0bdd", "message": "Add a fall back checking system for VSO client\n\nconnection test with fallback in a function\n\nupdating the method\n\nadding return\n\ncheck connection function\n\nerror as\n\nupdated with list of defaults\n\nlist of dictionaries\n\nupdate\n\nchanging function name and always returning a bool value\n", "proba": 1.4208396237336274e-07} {"commit": "63dc56ba53a65256b80ee3a7ed6c933229f2d12e", "message": "Don't call dumps unnessacerily\n", "proba": 8.129941875267832e-07} {"commit": "1a4b5726de990c04a3143a48559326ecd90f9d37", "message": "Delay evaluation of bootstrapFlags\n", "proba": 2.49500203608477e-07} {"commit": "c6faa0ca3693a54cb4454988b6edb5acb24c3829", "message": "Changes as per bug/NIOS-84427\n", "proba": 1.336830450782145e-07} {"commit": "e4143b467ab6221b29dad046344e3a11e074cff5", "message": "Added a bit to the morehelp for calc to explain floating point inaccuracies.\n", "proba": 1.0684264850624459e-07} {"commit": "1051593bc9d58766ef2d16fa688f99ae1458d5eb", "message": "Unittest for repr of ReProperty\n", "proba": 1.3437852430797648e-07} {"commit": "07fd9c35d467ddef7c19ff6962c75e4c53a920f0", "message": "Using --no-site-packages when creating virtualenv to comply with older virtualenvwrapper\n", "proba": 2.201684452529662e-07} {"commit": "ad68fa263defff91e18a782e7517123c72a8d18b", "message": "remove property GraphManager.training_start_time\n", "proba": 2.1716691662732046e-06} {"commit": "e4a532555bfc7f6744c2d3277f1b29b8294de8a0", "message": "In discovery, treat suite import failure similarly as build failure\n\nInstead of giving up benchmark discovery on import failure, treat it\nsimilarly as build failures.\n\nAlso try branch commits immediately if the first user-provided benchmark\ncommit fails to work, and try rest of the commits only after those.\n", "proba": 1.3219520269558416e-06} {"commit": "28a83cf9d7061d38e7d3d2f3d371c63fa6311d24", "message": "Updated DynamicChoiceListFilter to only accept lists\n", "proba": 1.2705412189006893e-07} {"commit": "2ed3d0cd7cb3864688811210fd17c5c5e4f89774", "message": "go numa go\n", "proba": 0.00024171329278033227} {"commit": "54a40e2a2aa4e995cee1f2fe31ef5d6ae2304ea4", "message": "Changes to storage writer for caching existing event tag (#4004)\n\n", "proba": 1.0750106582690933e-07} {"commit": "cd750391539303d120f15857635788e40550fa17", "message": "Hard-coded the Julian date for J1900.0 and added a comment\n", "proba": 0.0021416896488517523} {"commit": "7bb139816ad8b8898741f1b74c6526e4fc366393", "message": "Add a more direct test of multi-gpu training working (#2084)\n\n* Add a more direct test of multi-gpu training working\r\n\r\n* Update tests/base/develop_pipelines.py\r\n\r\nCo-authored-by: Adrian W\u00e4lchli <5b4e4cffa129a3d56e8f9fb9c37adfa57835aadb@gmail.com>", "proba": 1.2482836098115513e-07} {"commit": "4c6d0512345801efe0dd60939b8260c172b0c8d5", "message": "Add basic functionality for uploading and downloading blobs\nFix add missing references in __all__\n", "proba": 1.2019850714750646e-07} {"commit": "1ccd51bbc6d8f0360d573819f04f27ec17f487fa", "message": "Changed gpl.run_t() to gpl.start() to keep in line with threading.Thread\n\n * Makes more sense yes? :D\nSigned-off-by: Tres Walsh <6d279684697be182a0e83229177fc126bcf5026c@mnmlstc.com>\n", "proba": 1.5099767836090905e-07} {"commit": "ea5e047dc945f2bf1f638c6d716ec5ed1941850f", "message": "updated single_depot_multiple_driver.py filee for codebeat issue\n", "proba": 2.192954440261019e-07} {"commit": "978aec25789d8a029587b9bef6958112c8da4e05", "message": "use new style of ucr testing\n", "proba": 1.4799749692429032e-07} {"commit": "cad2d7cebd471de9d926baa1b42df6d9f9706ff1", "message": "numpy unicode serialized properly as bytes\n", "proba": 0.0008404580294154584} {"commit": "e81480484ddee802cd80bcf20a7bcd128a9d6fa4", "message": "Filter out geometries with NaN coordinates\n", "proba": 8.936934136727359e-06} {"commit": "976c3bedc393a2be78e0492b142aa6a820842bc1", "message": "fix: use correct indicator\n", "proba": 4.80446542496793e-05} {"commit": "8970398779c87df4b1d431974fbc01fcae3acf62", "message": "Fix Django deprecation warning. (#346)\n\n```\r\nRemovedInDjango20Warning: Importing from django.core.urlresolvers is deprecated in favor of django.urls\r\n```", "proba": 3.6235067000234267e-06} {"commit": "00318c73cd43a923b355b4b953500663a20ac021", "message": "add _gc endpoint to recycle written nodes starting from tail\n", "proba": 3.8095276977401227e-07} {"commit": "e4f684046809bf2871f05f069fc84c3827bd5d02", "message": "export delivery", "proba": 2.5951362658815924e-07} {"commit": "f9ac3e7149adda237257db60528562e8da14a198", "message": "fixed 'make install'\n", "proba": 4.927892405248713e-07} {"commit": "506158aea1c888797e4fda5a8f09dacafb812f17", "message": "Close FITS files after reading in tables\n\ngit-svn-id: a4dccb50a9cc6692414b6bc183528f4441778c62@232 a84d3894-9e97-4a94-862a-515d26404f57\n", "proba": 4.725478106593073e-07} {"commit": "eecea6c82d3beb85576d632b84fce12f4309359a", "message": "restricting the endpoint for superusers\n", "proba": 8.142837032210082e-06} {"commit": "9d5a995260add840b6486400823fde70d3642765", "message": "woops\n", "proba": 6.7884320742450655e-06} {"commit": "e1b0f2a16fc03fe5127e74626a249d8f395d8d58", "message": "tests/basics/list_slice_3arg: Add more tests for negative slicing.\n", "proba": 1.2781173097664578e-07} {"commit": "28406b0cfe9a524cd688fdb9cacfadf129866818", "message": "Remove old tests\n", "proba": 4.511918450589292e-05} {"commit": "a1893a67a7f9480f5149daaef1f9846e19c2699a", "message": "set time stamp when updateValue\n", "proba": 6.008656328049256e-07} {"commit": "786f8f4effc76f342a1a026831c20db8828cfaec", "message": "add missing tile_lock_dir to config spec\n", "proba": 8.666203825669072e-07} {"commit": "f3e3083c221ffa564784fa39296733b17b1c456e", "message": "v0.22.1 (#114)\n\n0.22.0 was deployed incorrectly with extra breakpoint statements. 0.22.1 fixes this", "proba": 1.4861004160593438e-07} {"commit": "d8187a3f9d54f557438d4cb3a4c2b530e1a74add", "message": "fix: unicode character throws error for python 2 (#6822)\n\n", "proba": 2.7124914936393907e-07} {"commit": "6eeeb386cbb2501c9c47172a1ac9bf0b02124cb3", "message": "Bump up version", "proba": 2.2680492861582024e-07} {"commit": "63eaa91515d54784dd96594a244dfe0f6d45dd8c", "message": "Removed references to Mile's work from pipeline.py\n\nPCA lightcurve extraction now all done in milesplay/\n", "proba": 1.0774986947126308e-07} {"commit": "d275a5fe1bc8dad9676eb2c01d9f6e399ca9b338", "message": "Make all verification workflows use the same function\n", "proba": 3.973032289650291e-05} {"commit": "5f410aae2c59fb8620c1fa72d72e08b269404fd3", "message": "Changed Message widget for display to and Entry widget\nPlayed around with some of the geometry and padding\nTested by running the script as is.\n", "proba": 9.925360444640319e-08} {"commit": "026c0d5c4abc6b6881da6a6796243e5406ac57b9", "message": "Added TODO\n", "proba": 1.7929842499597726e-07} {"commit": "e352db8e93eb0bedf232adde43af5b8ed829afa6", "message": "cache the total package count\n", "proba": 2.9997402180015342e-06} {"commit": "243819de8fb96e68fe0ca34212696d9582be0f72", "message": "\u4fee\u6b63\u9891\u9053\u663e\u793a\u3001\u9009\u62e9 bug\n", "proba": 1.2554528439068235e-07} {"commit": "6fa2e05684f449bc20f744068e75a946fe77fb2f", "message": "Add day of week in time plugin\n", "proba": 3.022062401214498e-06} {"commit": "de2c4ccb94984100fa2c21521e4ba7c741c2ca39", "message": "updating the api so that when a user selects a behavior, they also get all of that behavior's actions\n", "proba": 7.01486158050102e-07} {"commit": "295c7f5534cd481e74bdc148cf3f5d4a91efec64", "message": "feat: Try different loop structure\n", "proba": 3.207558734175109e-07} {"commit": "ff9d8fd55b4bb1de24b3078e23a2e38decb7ca1a", "message": "Delete levenshtein.py", "proba": 9.185356248053722e-06} {"commit": "1cd6aad96cb2d5ab70eb60e3352b6c2053de39fd", "message": "Catch IOError on code-block include and give a warning.\n\nImproved test file.\n\n\n", "proba": 1.0990166288138425e-07} {"commit": "5614f26bf2f96af6d6d44dc28030fc6bce3384b7", "message": "RSEM reference update for new cluster\n", "proba": 1.3372601870287326e-07} {"commit": "a0e904189172b6748935e4d00bc05d21f340caaa", "message": "Fixing a problem with v1 runtime - plus hopefully finalizing the code to check for tagged pointers\n\ngit-svn-id: 4c4cc70b1ef44ba2b7963015e681894188cea27e@151753 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 1.3338178632693598e-06} {"commit": "c90b21b2bac7d9c63567def744e6196b2eb3858a", "message": "Ensure site exists before trying to run build or clean commands\n", "proba": 1.9658642713693553e-07} {"commit": "81156fd5c9361355a7009e5ee6a9b48659be1118", "message": "[IMP] Cambio nombre de las clases\n", "proba": 2.573583230969234e-07} {"commit": "88b86e92babfefb892523480bb672d617ead82a1", "message": "Fixed filter call to get object\n", "proba": 1.8356787734319369e-07} {"commit": "271359cbc8e636294babe5c55e4ae17b6ad83d14", "message": "Adding thread to sync settings file.\n", "proba": 1.1855560444473667e-07} {"commit": "d823bf02058071103ebf826df3b852ce99706a87", "message": "check no features for update in load codes\n", "proba": 1.4037748030659714e-07} {"commit": "05b62562b5d558a973b0b2924741a3fb852b4a9b", "message": "name anisotropy plot types more consistently with the convention, #518", "proba": 1.2620178324596054e-07} {"commit": "88037363452e574bf8f69eeb72b0d137178ecd77", "message": "Support for specifying access log filepath on HTTP transport\n", "proba": 1.4470900566720957e-07} {"commit": "dd9c83801a9153b7880ef0533df4ccb276ed8efb", "message": "Changes\n", "proba": 4.367296696727863e-06} {"commit": "b2ff6de9b582e67bca1106fdf6587dc48382d322", "message": "Add protection against a null LocalSiteProfile.permissions.\n\nIt appears that it's possible a LocalSiteProfile.permissions to be None,\nand in this case, permission lookups will fail. We're now more careful\nabout this, and default it to {} when processing.\n", "proba": 1.7518961215046147e-07} {"commit": "ecb9b10f80c8ed3c14c336ca985184370c33a47f", "message": "[FIX] no fields are translated correctly\n", "proba": 2.1382982140494278e-06} {"commit": "4b4566646ba5a912be04ac1bf33f4720b8081f43", "message": "Improve JSONTask custom attribute handling\n\n- Don't prefix attributes with task_ for JSONTask\n- Add validation for attributes to ensure we\ndon't overwrite core fields\n", "proba": 1.4794726155287208e-07} {"commit": "331e32077e827e0be4aea786656f87e289ca7d72", "message": "Adding batting scorecard points without dismissal, need to clean the code later\n", "proba": 6.058173767087283e-07} {"commit": "37cbb8e809887fb01c0d35537eb561044292b41e", "message": "initial solution to insert_with_yeild with both generators and dicts\n", "proba": 1.3782285179786413e-07} {"commit": "d59ebb713b23c236ef1d30d0087277889e1daf4f", "message": "Update the AdForm\n", "proba": 2.4977279622362403e-07} {"commit": "de9a250b9418e923ee2fbe7bd8fc3b62c306e883", "message": "factor out some unnecessary mesh lines. Unfortunately, still doesn't\nwork\n", "proba": 9.278664379053225e-07} {"commit": "1eec44f485ec9d6cca8390225dc883a6629c4a51", "message": "Fixed rebuild filters\n", "proba": 3.8109121192064777e-07} {"commit": "9ab5ce35e56f1e9a10902d51e305f54e5de244ab", "message": "fixed bug of getting frew bw\n", "proba": 2.8676055308096693e-07} {"commit": "6351126149cb1da1d66198fcca3e4b08db69bc34", "message": "using fixed seed for some tests\n", "proba": 2.3628241763162805e-07} {"commit": "1a40ef238c83b7df39c03178c5fd35f9afb3c32f", "message": "product_expiry_simple 11.0.1.0.1\n", "proba": 1.1326898174957023e-06} {"commit": "59622b84d739d043bafbbb9e08e80b943f20c885", "message": "[+] v0.1.6\n", "proba": 0.0006430853391066194} {"commit": "635ef9e17580881c4fa8bb8df9655e73a209e2df", "message": "Fix DiscreteVariable.find_compatible not to fail when there are no existing variables with this name\n", "proba": 1.0457682719788863e-06} {"commit": "65de5c6842e09d5a699bbf3631898636c1730622", "message": "check builtin imports on 32-bit server for Python 3.7\n", "proba": 5.795117772322556e-07} {"commit": "d89eea95173fa134b4ee8f88e429ee0c8ba9b58c", "message": "Update version to v0.9.1\n", "proba": 4.1902123371073685e-07} {"commit": "00d82b77cf92d3ca8abc48359590521dcdf7fe6a", "message": "replacing logging info to debug\n", "proba": 6.090800752645009e-07} {"commit": "c7c88002255828eb6b60bd70ecdc59d0d478a63b", "message": "[Windows][hotfix] Remove the msi file after copy it to opt directory\n", "proba": 1.9088238900621946e-07} {"commit": "6aa0aa2460e5915c150fea4c47d2fe45a3988b74", "message": "fix timeit, leave GC enabled\n", "proba": 1.6506520239545353e-07} {"commit": "3364919bd54c3e4237932ae95a58824a977dd170", "message": "removed print statement\n", "proba": 0.0006049564108252525} {"commit": "88f043e979ae87daf08344350f25ed62957b57b9", "message": "always extract verify and certdir in config\n", "proba": 1.4405001991235622e-07} {"commit": "f022dc471b1c86705aea5121c669dfd25783a9ff", "message": "\u4fee\u6539\u6dfb\u52a0\u7ba1\u7406\u5458\u65f6\u7684\u9a8c\u8bc1\u9519\u8bef\n", "proba": 7.54740312913782e-07} {"commit": "03dcff9eae936658f87f229fefcf643dcb43a619", "message": "Enh: UDP DETECT: now choose the lower uuid node to join, so numerous detect should join the same nodes\n", "proba": 3.4463215570212924e-07} {"commit": "8a68ba853006f2b96f63a90ed017ae4da2356b5c", "message": "finished lowercase\n", "proba": 0.9999862909317017} {"commit": "1302a332267f7f6c321054d36e1bf6cd3aaece28", "message": "Update saleor/graphql/attribute/descriptions.py\n\nCo-authored-by: Iga Karbowiak <4e495a5e860a469a7156c86a3931e2633ce3ede8@users.noreply.github.com>", "proba": 1.24881708529756e-07} {"commit": "85166a8f6a7e7e90ee0ad0c89cee852006db0dad", "message": "product_multi_barcode 14.0.1.1.0\n", "proba": 2.619101360323839e-05} {"commit": "9050f649d02fbe7a97e570d1834655ea76b3f70a", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "5885cb852ba72068c0bd3d4f78e7908223c556ea", "message": "Minor fix related to client secret\n", "proba": 1.4479155652225018e-07} {"commit": "2ce3422b1629a8907c1dc5cd59ea0e9b05716113", "message": "adding function for io tiles instead of being composite\n", "proba": 2.618947121391102e-07} {"commit": "41c5f019749fc3c77385882ae1086b70153d2359", "message": "Factored out _setup_java_capture\n\n\nFormer-commit-id: ca7b197b0884f896caff67288013fad08c3473ec", "proba": 0.002727724611759186} {"commit": "61e41bb9ef74102d5262a260f7e33f13f3c58de9", "message": "fix parse_test_results.py typo\n\ngit-svn-id: c39a6fcb73c71bf990fd9353909696546eb40440@9065 a83610d8-ad2a-0410-a6ab-fc0612d85776\n", "proba": 8.016623905859888e-05} {"commit": "4714e8fd0082f2de1e847964a3caaf4693cb6721", "message": "classify fix", "proba": 0.9999992847442627} {"commit": "6fc6c1263016d9e39ca62592b73ff61ef2136f22", "message": "improves page_size\n", "proba": 1.0182701771555003e-05} {"commit": "7d56999ef06f7554007049a2e38f0fa9f42a65ff", "message": "Fixed OutOfBounds error\n", "proba": 2.636237468323088e-07} {"commit": "c4a6853e52a03c85f1446065a32c23fc12add1ee", "message": "Specify update_fields\n", "proba": 9.834424190557911e-07} {"commit": "e63744edd9426ac6b8f439f1c1e55e2b62944329", "message": "REF make salesmangroup uninstallable\n", "proba": 4.409635891988728e-07} {"commit": "3459ebb09762e32ed61a57334b7fda4248c8e917", "message": "rename close to exit\n", "proba": 5.2358063840074465e-05} {"commit": "645d654ada1de726899cb53b10d9a431e442b209", "message": "Updated to use plugins.ChannelUserDB.\n", "proba": 1.11379904410569e-07} {"commit": "1ea9536f724a2d870adb90da530407c29c333c5d", "message": "Added logout function. Imported accidentally deleted u2f libs.\n", "proba": 1.0515552162360109e-07} {"commit": "10fe7d68faba5461a8184830d9663ff55a216408", "message": "Made a compromise, the table is focused only when starting/resuming\n", "proba": 2.37938165810192e-05} {"commit": "fc938713a807a5a35f2159dacc99a47873130b02", "message": "Removed average color stuff. Using 'dominant' only, to simplify tables.\n", "proba": 1.2116237257941975e-07} {"commit": "b98e9541b20e1eb344de89b40847b4c1a07c3a2c", "message": "Fixed virtual_host spelling.\n\n\nFormer-commit-id: dfc0632653154b377c963478a9fd2cb30a387795 [formerly ad3abaef02fe80358f89790a4afd17d7728a5019]\nFormer-commit-id: 8db0d30f85f01b1350e075788fc549a9075a0054", "proba": 5.719833279727027e-05} {"commit": "9b474d458396feacbd16e9a148a92f6849f8a86d", "message": "properly mock new_correlation_id\n", "proba": 2.0479035356402164e-06} {"commit": "7290c19623ca29e0affa8068488487132f2b8ed3", "message": "handle final path correctly\n", "proba": 2.793507292153663e-06} {"commit": "1648d7ea993dafc5aeec2594bdda0b3aa6a063c3", "message": "add tags, append manually tagged addrs to output file\n", "proba": 3.68835799235967e-07} {"commit": "f1c34f32b0d0e0f1c37cc95db4805c4dd690986a", "message": "unwanted code removed\n\n", "proba": 5.020401658839546e-07} {"commit": "35cfa9c656fded83c2d5d4c70e67350391118cf3", "message": "Permissions are needed for all mutations\n", "proba": 3.007773159424687e-07} {"commit": "28d9caa61d629f473b1eea47cd16aa91eaba3a13", "message": "pyflakes line too long\n", "proba": 5.48835600966413e-07} {"commit": "a7a06bd51b7493a5141eda8cc3a827a71d953766", "message": "pre-empt memory issue with plotting\n\nread results in one at a time instead of in bulk\n", "proba": 1.539687985996352e-07} {"commit": "97fc1081410f8ad03f064e880c1375157faa73c1", "message": "optimize album and artist aggregated values updating\n", "proba": 3.78141777446217e-07} {"commit": "6e44d0e480f0c94202defb9ce1cdcd5adbff0488", "message": "update the docstrings\n", "proba": 1.5914332607280812e-06} {"commit": "06ccc36af447c0938b5fb2151d176f25e041deb0", "message": "use isinstance instead of type check\n", "proba": 7.822456495887309e-07} {"commit": "11eace75d89e7bfbfd5755edf9f5551b1d00245f", "message": "Python3-ise the __init__ so things run\n", "proba": 1.6930340279941447e-05} {"commit": "7b0fd6567023ba2415dc6e26161246dfbecf575c", "message": "chi2 moved\n", "proba": 1.288516841668752e-06} {"commit": "6370926a3f01f454b84dffdac8f1d3073518c6b3", "message": "Relative\n", "proba": 1.7653866962064058e-05} {"commit": "96cd6ef8e7e879e64a30ba5bb10cf5a07a301be5", "message": "experimental MCMC plotting tweaks\n", "proba": 2.0405740031037567e-07} {"commit": "bd45d788c0c2a78fd8e065310c94b64a5eab00ac", "message": "Increase warning threshold for SMS failures\n\nSecond attempt [1]. This increases the threshold so:\n\n- It's a more substantial amount of money lost (\u00a316).\n\n- It's 10% of the minimum free allowance for a service.\n\n- It's greater than the threshold we have for TV numbers (500).\n\nHaving a higher threshold for this alert will help prevent wasted\neffort investigating more negligible failures, and reduces the\nambiguity of whether we should take action: we should.\n\n[1]: https://github.com/alphagov/notifications-api/pull/3221\n", "proba": 0.9998334646224976} {"commit": "c70721b56c6ed594a196c5c1678fe5e027827fe6", "message": "Add one-line docstring to _split_version\n", "proba": 0.0016755186952650547} {"commit": "41e9a07f4bee55b8fbfc39fe285a5b9bd7db8093", "message": "add __ne__ and ordering\n", "proba": 0.00157126784324646} {"commit": "6dc93ffd08172271d041bb6e89fc10557c8e11c2", "message": "Change dao_remove_user_from_service query to avoid IntegrityError\n\nWhen triggered by an admin request `dao_remove_user_from_service`\nraised an IntegrityError since the user_to_service delete query was\nissued before the folder permissions one, violating the foreign key\nconstraint on the folder permissions table.\n\nFor some reason this isn't caught by the tests in test_services_dao\nthat check that folder permissions are removed properly.\n", "proba": 1.3483166583228012e-07} {"commit": "039b9233e8c733f8b26e35ee99b42fa37a3248c4", "message": "Fix fake attribute old interface\n\nIn the v2 version, the fake attribute does not need to be\ninitialized with deployable. The deployable fake field\ndoes not contain the necessary information for attribute\ninitialization. This patch will solve this problem.\n\nChange-Id: Ifa9ecf75157b377ea544ba60c6c51fab2bda663c\n", "proba": 6.294085324043408e-05} {"commit": "9966cd564416ffba194e910126b3a944b1250c46", "message": "get namespace map from xml argument\n", "proba": 3.2958686801976e-07} {"commit": "75e7a273c1eed02ec536685ca51a8e5cb31f1ea0", "message": "extra todo note\n", "proba": 1.3017421451877453e-07} {"commit": "8256062f1a61dc095172dd0396d05475cec55306", "message": "slight performance upgrade\n", "proba": 1.9226375513881067e-07} {"commit": "ea33455b6a2b25e623d24db64defc3d54e047efc", "message": "Removed a print, added the info to a correct debug logging call\n", "proba": 3.0896603675500955e-07} {"commit": "cd057688254d9804dec8d51677d75840796ffc8a", "message": "Fixed bug in to_obj() method of win service object\n", "proba": 3.8383737432923226e-07} {"commit": "559214cbaf407bb7c6849d0df242cf1a8f71d09b", "message": "Bugfix\n", "proba": 8.038198870963242e-07} {"commit": "75d458ebfee9aadb59ebfa07ecbc2ef772c5412f", "message": "Add further logging to eve_proxy errors\n", "proba": 1.6522379553407518e-07} {"commit": "d08152f8a5da45712afa0b89eff8d1df0f05b2ad", "message": "Whitelist histograms service account\n\nWe need to actually whitelist the histograms service account so that it can\nbe used to upload histograms.\n\nReview-Url: https://chromiumcodereview.appspot.com/3013863002\n", "proba": 1.4391326658369508e-05} {"commit": "18bd70fba75bcdf1f599852c6d42eb1b8ef2a3db", "message": "add __setattr__ = dict.__setitem__\n", "proba": 2.496666093065869e-05} {"commit": "817a6e4af69bdbd68a35c5bb465f62e349f3932c", "message": "Remove messages application from installed applications.\n\nWe were not using it, it was added by accident when converting settings\n\n", "proba": 1.6429846994014952e-07} {"commit": "0c269c931578112377bd7b78a483950135d35fd5", "message": "Avoid urwid warnings\n\nActually follow their documented API, and avoid warnings.\n", "proba": 1.027891727289898e-07} {"commit": "878dd4b982fc589ca32d5906a213e0f47757e611", "message": "Update ourweatherplot.py\n\ncleaned up plotting, added stacked plots and started write_to_db", "proba": 1.7935794005552452e-07} {"commit": "b0690a2cc1948b992ecf491dd0bb3d9b7b0c2bc1", "message": "No real need for params variable\n", "proba": 1.2502971003414132e-05} {"commit": "6775e557ab4cb87d3decd1d60920d0294937cce8", "message": "Fix segfault when SQL statements are invalid\n", "proba": 0.0003075943677686155} {"commit": "a494480fcc54c0e6bd2e458cfcf53f1c0131759b", "message": "added extra db.session.commit()'s\n", "proba": 2.1826515705924976e-07} {"commit": "85d77aef29e95e737503a05fde151c3ad0e10ba8", "message": "Proxy cache.clear.\n", "proba": 1.6802619029476773e-07} {"commit": "e5960e0ffbae8619878b0b2651ca38ffd8a79fdd", "message": "Updated from Brython Server: 9/15/2015 2:56:04 PM", "proba": 1.1128265242632551e-07} {"commit": "feeb3ede80da1c130cbe86639fab6adce9691959", "message": "Relax Krylov smoother iterations\n", "proba": 1.9169728204815328e-07} {"commit": "a98ab7c24b974612ee34104cf3ebf4abacc27a3c", "message": "Added local_settings\n", "proba": 2.1718047094054782e-07} {"commit": "813ac3ac1f58aecdbf12f8761b0f8dbaf5c10c42", "message": "Added docs to _quality_control method\n", "proba": 1.7216261483099515e-07} {"commit": "ed353554396d819bd59787ca69a0371b8f19a949", "message": "Remove PIL conversion\n", "proba": 9.281346251555078e-07} {"commit": "b44beff586b98e57b65354487befd9313d2cd122", "message": "Remove carafe/rest.py. Determined to be out of scope of carafe.\n", "proba": 2.150464979422395e-07} {"commit": "6bc036c8ffe249a787c95c0e5e3ec0148a0ace9f", "message": "Remove unused argument/attribute reap_timeout\n", "proba": 1.1487334177218145e-06} {"commit": "b6c691855494cbc1a9be1be05a2d662ddbb76945", "message": "Tidy up metric logging.", "proba": 3.208169118806836e-06} {"commit": "542d235c1a647e32bec1a21ebf35854a90801511", "message": "[modules/traffic] ignore all errors during update\n\nto investigate whether the assumption that a stray exception causes\nissues is correct, temporarily catch all errors.\n\nsee #655\n", "proba": 5.5857634606582e-07} {"commit": "6e3e5ec9fc7b44c669d4e4e77fa3c5f70866b15a", "message": "Fix flake8\n", "proba": 4.508962092586444e-07} {"commit": "f505002e2d8183e6ce8da8ffde818c7ba6badfdf", "message": "forgot to remove a LOC from oligoitem.py in propertyview\n", "proba": 1.9334603962306574e-07} {"commit": "0adb38020275a859e50c1b31d3f09deae3238066", "message": "Fixed osu mania\n\n", "proba": 1.227222469424305e-06} {"commit": "90804c8f1beba3391a280ae8bd7043ca4c386923", "message": "raise TemplateSyntaxError if file can not be found\n", "proba": 3.810875739418407e-07} {"commit": "9c901f8a6e478353821c51810d58d43894abbeb3", "message": "added is_yesno_poll utility\n", "proba": 0.0009148490498773754} {"commit": "ff6da828c8381032be0868a1c8b0018a1d30889f", "message": "Sexing things up a bit more.\n", "proba": 1.0799429617236456e-07} {"commit": "8ea26e74768a6b960bae2243ebab6f24862dd6b4", "message": "More Progress\n", "proba": 1.318528148885889e-07} {"commit": "345e2fc65e8c2df3221b21ce669f1c7ef6158cd4", "message": "Fix a pexpect bug where ansible now looks for \"SU password\" instead of\n\"su password\" and that screwed us up a bit\n", "proba": 9.098869782064867e-07} {"commit": "305545d70b0e70e550b8a39e2a2112e8db6b92e9", "message": "* worked on auth logic in PRFRequest\n", "proba": 1.22008131597795e-07} {"commit": "b202dafacbd2e61105b64e920d07731a8fd13047", "message": "Include dependency information in package list\n\nThis adds a count of the number of packages that are actually\ndependencies and not standalone packages. Additionally this is\nsignaled in the package list by wrapping the package name in angle\nbrackets.\n", "proba": 1.068563051376259e-07} {"commit": "973cdc828c3a9709429bc939bbbfc6f611485b28", "message": "Properly close db connections on -os (#2205)\n\n* Properly close db connections\r\n\r\n* Fix speedy coding\r\n", "proba": 1.436603866977748e-07} {"commit": "36cf7051da4e5321289c39bec3c43bc03743f126", "message": "Replace the last print with _log()\n\nAfter the (triumphant) solution to the thread leak problem, I bring\nyou myself realizing I left a single print() in the code when I\nthought I had swapped them all for _log() calls.\n", "proba": 5.15416058988194e-06} {"commit": "01911846e1e3e24e44fa8a471a8dad566ce01112", "message": "Continue bug that didn't allow output (#92)\n\n* error message\r\n\r\n* pep8\r\n\r\n* pep8\r\nl\r\n\r\n* pep8\r\n\r\n* pep8\r\n\r\n* travis\r\n\r\n* pep8 path\r\n\r\n* pep8\r\n\r\n* pep8\r\n\r\n* added licenses\r\n\r\n* pep8\r\n\r\n* pep and license\r\n\r\n* pep8\r\n\r\n* pep8\r\n\r\n* pep8\r\n\r\n* license\r\n\r\n* pep8 + license\r\n\r\n* pep8\r\n\r\n* pep8\r\n\r\n* pep8\r\n\r\n* pep8\r\n\r\n* version number update\r\n\r\n* continue bug\r\n", "proba": 2.61720906564733e-05} {"commit": "c3497cd168f567b43cdbae69c604504340474a88", "message": "Speed scan bug fixes\n", "proba": 3.233095071664138e-07} {"commit": "b4ce9788c4c155d4713e93a889e05f8bd1c70b3c", "message": "Don't kick the server while it's down (#1068)\n\n* Stop kicking the server while it's down\r\n\r\n* don't beat up the server\r\n\r\n* changed from 15 sec to 5\r\n\r\n* changed from 10 failures before sleep to 5\r\n", "proba": 5.712323627449223e-07} {"commit": "28bf4aea163ced21eba88b17555ae694c7b91533", "message": "unitests corrected\n", "proba": 1.1523455896167434e-06} {"commit": "76ee9699f3bbbc142e3b41ba7bceb53e58f1d801", "message": "kurt change to consecutive", "proba": 0.9997949004173279} {"commit": "71cbe482b4822076640c7b05f44c2f808e2ac117", "message": "An explicit call to autodiscover is not needed in Django >= 1.7\n", "proba": 1.7694138421120442e-07} {"commit": "30b77901576bccb8d9ce09e71e206bbd607b82d6", "message": "Small refactoring/optimizatoin\n\ngit-svn-id: cc65bc9ed7fa717314bc8890b6f123117eea230e@1299 698dff77-f410-0410-8918-cf622e150f36\n", "proba": 5.77146238356363e-07} {"commit": "1d63f615ac58cc8c548cdd8e359694355e5b1843", "message": "Add BootstrapForm to beautify form_template\n", "proba": 2.8642574534387677e-07} {"commit": "d0b9824fe29e9c5772c0fc2838e2c6e373013819", "message": "Fix indents on form module\n", "proba": 2.0141626464464935e-06} {"commit": "d446b7be3e5595d5adec5ff9d4a81b16fe3277ec", "message": "Change from an option to an argument for service names\n", "proba": 1.710669312160462e-05} {"commit": "976203e0b2fe8e3c0586e855c27cdb8b60920ea6", "message": "add led feature to power_detect\n", "proba": 2.397544278665009e-07} {"commit": "eda62a8e77172b8bac1fb206378c9a33109ae2c3", "message": "force get token\n\n", "proba": 6.165760169096757e-07} {"commit": "aaa8723626108f4a4adc110224cb3da48c485e31", "message": "Update state.py", "proba": 9.23343407066568e-07} {"commit": "6202c3f16af3076ae9b43ab69cd5ae638ecd2f9c", "message": "update core tests, add TestHelperMixin\n", "proba": 1.45129973816438e-07} {"commit": "ef63bc1dae3347f960f1b6a752bcc3c744ee3d0e", "message": "DEFIVELO-246 Enforce limit to 1 primary email address\n", "proba": 1.1097188234998612e-06} {"commit": "38c2808e51d1170546620eff2003b89ca8244637", "message": "Set count in volu MultiQuerySet\n\nGetting count of a MultiQuerySet is an expensive\noperation, so set it while defining the set\n", "proba": 3.490895323920995e-07} {"commit": "07eeee20b2e56ecd7e7e77e1bdbfac01861e10b8", "message": "added more reasonable convolve test\n", "proba": 2.4578599777669297e-07} {"commit": "00f2887b7b74f3a94462431ac93d637132e16bb6", "message": "Add test for product attribute deletion view in dashboard\n", "proba": 4.0012318436311034e-07} {"commit": "23d516346b88841a0fff56b6e45405ce3b508a3a", "message": "Creating performers and dispatchers\n", "proba": 1.9877288082170708e-07} {"commit": "7b8f636cbd1571f921c7aca3dd214a775fa23563", "message": "Removed debugging print\n", "proba": 8.638198778498918e-07} {"commit": "3c27cdfa8297461c23a2b12cdfcf9890dc328a5e", "message": "Added file name labeling for --use_trigger_sections\n", "proba": 2.051275913572681e-07} {"commit": "58d46fdcf606b1c6e6d013c2743938e3a9d73d8f", "message": "small changes\n", "proba": 2.5906804239639314e-06} {"commit": "a1cd39a953c7a520aad2800e766d1178dc1be5b3", "message": "Fix for get_in/out_nodes.\n", "proba": 1.2349602229733136e-07} {"commit": "d456ad56f3138e14e04cb04f4c98c8f724872f8d", "message": "Update notes_plugin.py", "proba": 1.5410761307066423e-06} {"commit": "c889ba42f2a6acf4d03a6d119a6ea6d47b213aaf", "message": "Fold child 'rich_text' and 'file' objects into parent 'content' model during serialization.\n", "proba": 1.4320202978979069e-07} {"commit": "8d3972e664653ac8930d59a95aae6e4fdd018fe5", "message": "Refs #1. Modified skipped test to trigger the desired error\n", "proba": 4.1382290305591596e-07} {"commit": "e10a8f83ea76a317d9c5e9cd9cedbbeb0eab12e0", "message": "version 5.3 dev\n", "proba": 2.6170445721618307e-07} {"commit": "9c56454de97a241923cab990c37d463a752f0db7", "message": "Improved robustness of concat and meta labels transfer\n", "proba": 1.352713780988779e-07} {"commit": "db1c0f761ad36ef5ec6e45f4ebcdfc7fb265b10b", "message": "time to message\n", "proba": 1.3407935739451204e-07} {"commit": "05735d3085389441d4a160f8a798ac7db231da21", "message": "Incorrect capitilisation giving p=1 acceptance\n", "proba": 3.525705687934533e-05} {"commit": "a868feb7bd6257885c404baa44a4eb1ec0ee9274", "message": "if nSampl == 0 read all dataset", "proba": 0.0007899332558736205} {"commit": "4e1830b372d9ca0c3c9bb8244071723e5336c1c2", "message": "hide the nginx plugin\n", "proba": 4.171899092852982e-07} {"commit": "a1af7d9999dadcd2ed943ef765facfd3f91aae54", "message": "replaced prints to stderr with warnings\nminor changes on path building\n", "proba": 2.8790896067221183e-07} {"commit": "443ec12e8f7e41e78dd170994a1c68f5d1a3b4dd", "message": "Unused mappedTerms commented out\n", "proba": 1.3889480499074125e-07} {"commit": "509aa7101f1c9404cb8e2fa06bfa0c7297acb335", "message": "Define a header for the test report\n", "proba": 0.00017133205255959183} {"commit": "3943437e082bc6f528f1bc1437af5b202e48342c", "message": "Clean up names and prepare for exclude-patterns\n", "proba": 1.0434002888359828e-06} {"commit": "770ed03d57a7a40294f648d5c8c11a7448d75d70", "message": "init.py: Banner now includes if the plugin is a 64-bit build\n\n\ngit-svn-id: 66fa1fecf8be0db4b7985ec55c14546f21eabb40@192 fccdda4b-c33c-0410-84de-61e1e3e5f415\n", "proba": 2.256284005852649e-06} {"commit": "14ff2141495918f9acafe61a64c86ae096c9aee6", "message": "init.py: modules loaded by user scripts are now unloaded when the script finishes. No more reload() needed. Thanks to cbwhiz for the idea.\n\n\ngit-svn-id: 66fa1fecf8be0db4b7985ec55c14546f21eabb40@273 fccdda4b-c33c-0410-84de-61e1e3e5f415\n", "proba": 1.4502707017527428e-06} {"commit": "72fc32d8a03d631422966a015dfcddfd1f1df93f", "message": "Update line.py", "proba": 1.0984671234837151e-06} {"commit": "dd294057e53ddd57b4b798b5267a2ac82f7355c9", "message": "pep:8ball:", "proba": 2.624362593905971e-07} {"commit": "9dad8467097d766b795ec396e9f8e4b00bdf4e6f", "message": "Update test.py", "proba": 1.2969024965059361e-06} {"commit": "3a4ceb34ca3fb1493171bb11fdbb7821ae89e159", "message": "some refactoring\n", "proba": 1.0068649771710625e-06} {"commit": "ab3d7bda23bc02f81d3aac686d9e749b85b48f77", "message": "Refactoring topics method\n", "proba": 6.370631240315561e-07} {"commit": "f9904ec3625e4dfde5538fae6b1d397f16640597", "message": "Added some documentation, and fixed some import paths", "proba": 1.7109299221829133e-07} {"commit": "b928f0fc4bb98928300e37fa2f343b04297064a3", "message": "added documentation link\n", "proba": 1.9722583033399133e-07} {"commit": "34bad842b289c844ed86a374dd211ad5a759bf9e", "message": "testing the svn reload command\n\ngit-svn-id: fdcc8fbb801bf4342a1bf1fbe9cf4518bae30160@118 9307e528-e534-0410-a844-a96db09f00f2\n", "proba": 0.00020140723790973425} {"commit": "01226ce3961ba60874139a2cf255cac993819b8f", "message": "More informative exceptions.\n", "proba": 1.2755783984630398e-07} {"commit": "5bc09b13056f1515848050af9ab6b06d49f7cc5c", "message": "util: we already depend on nullroute.core, so use its logging functions as well\n", "proba": 1.2219595646456582e-07} {"commit": "474d589b5683189b6f7d41d006322c657c3c2240", "message": "Updated baseline for the prediction timeframe\n", "proba": 5.467000505632313e-07} {"commit": "873b7993f5738f88a0cf88ae74a78df121e05573", "message": "Reorder doc sentence about `return_samples`\n", "proba": 0.0002859202795661986} {"commit": "7b28caba1b6dd54825af8da479201d2bde4dd6ad", "message": "Converted karma stuff to use addressedRegexps.\n", "proba": 1.0699845631734206e-07} {"commit": "9da7bee57c0e3fd108d90df1c9086077dce7713e", "message": "Support NetBSD\n", "proba": 4.0778539300845296e-07} {"commit": "4295c97ff718b9a626d69c360927e4fc566ff9e4", "message": "Remove destructor from SBIGDriver class\n\n", "proba": 4.837078222408309e-07} {"commit": "b0158b988df8c1fc1535e39be2d20e4ebb3339ec", "message": "test_pocs is fixed.\n", "proba": 1.1750316275538353e-07} {"commit": "9a0860a0ba73276bc00f7214954e74b354344cb0", "message": "Remove io.py, all moved in to images.py\n", "proba": 5.06295350533037e-07} {"commit": "c852f04d31b888c3bbe302235a06b68d735bbe50", "message": "Bumped version.\n", "proba": 1.313067059527384e-07} {"commit": "a09e1b633559eb198968b94c100a59136b935757", "message": "Add pip installed and removed test (#33178)", "proba": 1.0709952391607658e-07} {"commit": "c546170f95d9686d3c025da535f8a68cafe1793d", "message": "Update the integration test for PullFile#download\n", "proba": 1.3831979117640003e-07} {"commit": "60dd6339600bd32066f43b25496c31e6d900ece9", "message": "Add tests for new blob writing functionality.\n", "proba": 1.2335371479821333e-07} {"commit": "2fb894ec37d93e793ca4dc2f3622d11cdcc1a51d", "message": "Update integration tests\n", "proba": 3.225995897082612e-07} {"commit": "72a6a30e279e7f7e60eb2d706300fbdd0781986a", "message": "truncate unspecified date intervals to present day\n", "proba": 0.9999994039535522} {"commit": "7ee7c32b96a59fb5fb1ea7d69c88f21959afa875", "message": "Add refresh_all\n", "proba": 9.811426480155205e-07} {"commit": "175706892d17559a9a089efdf2f2aa75024aa200", "message": "Make sure messenger thread kills main thread when needed\n", "proba": 3.091307974045776e-07} {"commit": "4c2c590438160e7eb173a7a9b9386330104ccc86", "message": "Added --strandSpecific option to produce strand-specific counts. This allows CHH methylation to be tabulated; in fact it is necessary in order to run CHH methylation\n", "proba": 2.45738192461431e-07} {"commit": "f9384bf5f154887f05232e694ec9843dd4a0e676", "message": "Added region queueing functionality\n", "proba": 2.665665022050234e-07} {"commit": "a67c7190825019521317c341b6a1cc065e5d79b6", "message": "pep8 version of TPI\n", "proba": 1.367477011626761e-07} {"commit": "9df387792ed99cffa070a550d6a86c572f494abf", "message": "minor bug fix for sqlite output in spotlight\n", "proba": 1.7176328981349798e-07} {"commit": "8312efa634a4dfea4e98f7f6da69d7172884850d", "message": "update block architecture\n", "proba": 6.123357820797537e-07} {"commit": "5cf3604c9eddca698f091c773237f80454cb8462", "message": "Fix loop in cl.diff\n", "proba": 2.579593456175644e-06} {"commit": "557840dce999ceac21c60118f229a448ea82c12a", "message": "really python, ceil returns a float, wtf\n", "proba": 1.81758110784358e-07} {"commit": "d1734aa6f7f21132ddcf7903c43cc7e353d08582", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "0419bbc9faf9490ed92f4b722477da74b0147595", "message": "Fix test infrastructure querying for installed Visual Studio versions.\n\n\n", "proba": 1.1177361614045367e-07} {"commit": "1ccf093e7af67378529fe9d8cbd2ff3881223be1", "message": "CWL: finalize runs for toil, cwltool, arvados\n\nProvide easier run environments for tools using versions installed\nwith bcbio-vm. Simplifies shell script writing for running these.\n", "proba": 1.1056163629064031e-07} {"commit": "c3847fb52ad03e55411faf0a34ed18d0c78d4310", "message": "Made AttributeDictionary a bit more robust. Now dictionary values are converted to AttributeDictionary is necessary\n", "proba": 1.2895331735762738e-07} {"commit": "1f95d18fa379375f8cab142db5af8c9b5ac17ef5", "message": "Change range\n", "proba": 7.912008186394814e-07} {"commit": "77e8f21094672f9d2297fab3b12f1bbb3c251b40", "message": "[Play plugin]Respect relative paths when using albums", "proba": 1.486164222797015e-07} {"commit": "9f51e46baeec622d7d73d16390d34c40de4d5aa6", "message": "Add whitelist feature to zero plugin\n", "proba": 4.090103118414845e-07} {"commit": "afa41a7ffbeaae8c899c8ccba4610cbfcd5928b3", "message": "add url params to the request cache key\n", "proba": 3.6219168464413087e-07} {"commit": "2333670d0958f1bf524b5cf438b5acc2b34cc8d8", "message": "Pokemon.types should order by slot. #220\n", "proba": 0.00063444918487221} {"commit": "24449917faa8e55c3ceb09cb16cb5b5fb2c28040", "message": "Update profile.py\n\nProvided inheritance of metadata to subclasses using super()", "proba": 1.6267929936475412e-07} {"commit": "2d6176fbd17f737b51c5e5932cce80f21532542c", "message": "Raise a better exception when openstack vm_type is not found\n", "proba": 3.857334377244115e-06} {"commit": "859a43005a182e7a25daaf1ad98c18667f2ed4e3", "message": "M500 timedrift bug fixed.", "proba": 1.1299565016997803e-07} {"commit": "08c7870bdeea5efd4b67406559fb3c66bc3ce58a", "message": "Unit tests\n", "proba": 7.533021175731847e-07} {"commit": "31ea5e58efb656403d19bd2cd9dabcac73093b15", "message": "better lineno\n", "proba": 0.0015866069588810205} {"commit": "af98e37fc5fa549499d321aea125f979c26f587e", "message": "Fix a couple bugs\n", "proba": 0.00019022804917767644} {"commit": "3990eae8257e2358cdbc7aa2f547302149d8b66b", "message": "Bump module version\n", "proba": 3.365027225754602e-07} {"commit": "740ea6a5906e8cf0ebb90f3d86c9a768325c0910", "message": "Remove dangerous default (see https://stackoverflow.com/questions/9526465/)\n", "proba": 2.935796317160566e-07} {"commit": "cc5edcdabd55ea1f1fce9fd4975760390256e0b2", "message": "Fix GH #9\n", "proba": 1.1330074585202965e-06} {"commit": "7566d40162e3657eaaa685ce8f84875553354f5a", "message": "more work on interfaces\n", "proba": 1.2601597632055928e-07} {"commit": "cb7b8a8815992f74c6882c5080f7c0d55440da4d", "message": "Fix NameError when synchronizing directory.\n", "proba": 1.3901910733693512e-07} {"commit": "8ca0fbe602f09579091825fe3f95d814ea574c38", "message": "Update metrics handler to reflect latest config documentation.\n\nChange-Id: I30440c0212b2d587d7202b6aeaa2cb7def40da7a\nReviewed-on: https://team-review.git.corp.google.com/c/cloud-accelerators-ml/xl-ml-test/+/673167\nReviewed-by: Will Cromar <9dd12cd09dbd89f2974e2a7cca1005dfdecf87da@google.com>\n", "proba": 3.138195836527302e-07} {"commit": "98d595fdb43366c4a093891547d18eda9919d1e6", "message": "Turn doc-strings into comments for better nosetests output\n", "proba": 3.196950956407818e-06} {"commit": "50cebcb73b76c010db39fd19869f25eb77618afb", "message": "Small change in SQL UPDATE command: add spaces around '=' in SET column = value\n", "proba": 0.0002533031802158803} {"commit": "83f8ffc61bdfc0c18f9a21828ab0f1b18fa422e1", "message": "do small part of post-launch application form tweaks\n", "proba": 1.9172654219801188e-07} {"commit": "79920b4dfd8cdd4b251042cb3c6d7c9333daa76f", "message": "chore: black\n", "proba": 0.9999982118606567} {"commit": "e143ad80e9d7bc4b3f8f99dffcd966542a3214c8", "message": "linux: Change permissions on container to user on cleanup\n", "proba": 4.866376457357546e-07} {"commit": "8ec332d363e70ac051676c02b4e72d2f627dc29b", "message": "Cleaned up egg generator\n", "proba": 9.98347559288959e-07} {"commit": "dc8238acb61e776718d733852d9da15f310df230", "message": "Working\n", "proba": 1.3094996802465175e-06} {"commit": "4eb4ef24f5edbcbadd38f941025b671f5b6ebe60", "message": "Unit Tests for he_IL Address Provider (#878)\n\n", "proba": 1.1654950071715575e-07} {"commit": "018abac92a98b62595d1a22a1ba474b2730058f1", "message": "Redirect stderr to stdout for py2exe. Fixed firefox windows paths. Add try/except for importing gui code.\n", "proba": 1.0931649541134902e-07} {"commit": "672b29e4bc5aaf6c4e2385db73bb47eb2f32a5c2", "message": "Failing test for including dues in payday.nusers\n", "proba": 2.226006188266183e-07} {"commit": "072b1c2900e93b8346daafa6126d5e3353495aa4", "message": "verify the last unknown from SetProfileData*\n", "proba": 1.1597892779491303e-07} {"commit": "d100ebc22aa5ebe2c13753c2e023fd5373ee2719", "message": "[#2461] Add test for \"irmtrash -M\" orphaned metadata\n", "proba": 3.100564072155976e-07} {"commit": "780ef751f4475ae52b54685a129c351627ea620b", "message": "User-Agent for reddit\n", "proba": 0.9999755620956421} {"commit": "4e776d612d85fbf443ea316ba9365d1e9d4336bd", "message": "[#858] Add sleep to test_rule_engine_2521 for suse fail\n", "proba": 3.7256123164297605e-07} {"commit": "eb7407a04e80278745ece601bf011576f14053f8", "message": "even more tests\n", "proba": 1.9644043902644626e-07} {"commit": "e07a56d0b30d991319f88d3c47a898d3f42a2b18", "message": "datapaths: Rename packet_length to message_length\n\nSince the variable packet_length actually did not signify the length of\nan actual packet but of an openflow message, its name was changed to\nmessage_length instead.\n", "proba": 4.0710037296776136e-07} {"commit": "8db9ce748ca8c404a92a9ac149c4da9eff30d8a4", "message": "of_json: Better port info for list_switches()\n\nWe now read *current* port info from each Connection object instead\nof the stored info from when the switch connected. Additionally,\nnonzero config and state flags are now returned.\n", "proba": 1.0238511549687246e-07} {"commit": "c72793f87736d34b13df0d5686b8a5474b74e838", "message": "lint: one-liner doctstring.\n\nFormer-commit-id: c6aa54afd1f922aa067c3c489de872cb480a15d7\nFormer-commit-id: bebfea3d5509f31403d02db039b514747a69a217 [formerly d27798053b0ad877000b3a46a5fb8744ce73200b] [formerly 7eb1b449c7f93d55e525f2bc1505129536c7a8fc [formerly 03f7367f38854818dd5d109a4d0783980db542f4]]\nFormer-commit-id: 29f45ef15e900578f6df4153c15108d489ebc69c [formerly b33221f55e552c655b1651bfeb31ef7d116ee5fa]\nFormer-commit-id: 2058f7d7f1b8151ff9f16e79e16bd24106590aaa", "proba": 0.999879002571106} {"commit": "3156b250932cc3a06c33e54c3dbc2d8972e70ca6", "message": "fixes save bug\n", "proba": 4.3188848053432594e-07} {"commit": "610d0e88750d21405ab19362fa9ae94f13436ffa", "message": "Configure curl with SSL support\n", "proba": 2.5594971475584316e-07} {"commit": "e3ab920fbcf332aac0bb52f42a11b5e77aa29faa", "message": "fixes of stream\n", "proba": 2.0701520497823367e-07} {"commit": "592815b4347151246d2d87208113ab7294556916", "message": "updated stream song update\n", "proba": 4.670736473144643e-07} {"commit": "6fdde385f198afcfb98892ec6a48ae30ea721b5c", "message": "minor clean-up\n", "proba": 2.1329609012354922e-07} {"commit": "635f71c95fe0cd132ad0ba488abb67e57be60c2b", "message": "[SW-2014] Remove deprecated get_conf method on H2OContext.py\n", "proba": 1.405620793093476e-07} {"commit": "79bb4d068302ee3385d090776fcc0a4c1cf2f15b", "message": "improve: speed up Reverb by using a shared pool of rooms\n", "proba": 1.9407426066209155e-07} {"commit": "47f257a183680e5e9f847892836692d019655e71", "message": "chore: remove eer logging for labeling tasks\n", "proba": 3.3910502679646015e-05} {"commit": "893c06c0db2840cbc9b1630e38e0ea0d7badffef", "message": "dos2unix\n", "proba": 5.976508873573039e-06} {"commit": "522f045ca264921790476ed3cd0807e4ddd2aacc", "message": "plotly functionality\n", "proba": 2.9067058449072647e-07} {"commit": "19bc1ed3e579b1e237d8d7ef51287d7a60c87c34", "message": "updated comparison from trunk, thanks hvdklauw\n", "proba": 1.1818894307680239e-07} {"commit": "9b31f1678be34e24d6860d70b1ebbdcd290208c8", "message": "Fix running presubmit_support.py directly\n\nR=cmp@chromium.org\nBUG=\nTEST=\n\n\nReview URL: http://codereview.chromium.org/9234038\n\ngit-svn-id: fd409f4bdeea2bb50a5d34bb4d4bfc2046a5a3dd@119264 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 4.3271488721075e-06} {"commit": "75779bfb19af7365a0ca342478274e9c7709fb68", "message": "Removed procedure_thread file\n", "proba": 5.310693040883052e-07} {"commit": "17419fe54cc83f2e8d55e563834e68bc82c48247", "message": "Regularization tests from Andrew Ng's ML course.\n", "proba": 1.1083273676604222e-07} {"commit": "2c1413021cc12284b1ad17d16d6f22359b844da2", "message": "[Typecheck] - Added SeqMotif search to the typecheck for search validation\n", "proba": 1.1200431515590026e-07} {"commit": "6a8e031ca108bd5fcda696f577b3e5a190108392", "message": "SyntaxHighlighter: don't unnecessarily call _reset_stylesheet()\n- Improves performance\n", "proba": 5.989364808556275e-07} {"commit": "ca8222e51d092b95814107b22d09a5acda9a9107", "message": "fix overenthusiastic replacements notes by Johann\n", "proba": 4.398262376525963e-07} {"commit": "8acb93690f099d2897af461ea36db46b45b9da47", "message": "Fix the help text for cert_name_short and cert_name_long\n\nThis resolves the textual issue in [ECOM-2907] (https://openedx.atlassian.net/browse/ECOM-2907).\nThere will also be a data fix.\n", "proba": 0.0005932980566285551} {"commit": "f28ad58033e5387efc7e96612fbde5333adb27ca", "message": "Change joint analysis to return None for pitch when fails\n", "proba": 1.1357910807419103e-05} {"commit": "87cb76235ddf90d34dc73e03d33ea2a588b5e93a", "message": "Slight change to query syntax.\n", "proba": 1.505872546658793e-07} {"commit": "72cda9164af6fed85ed30a619bfe3aa2de44ce48", "message": "Add assert_valid and strict kwargs to instance deserialize\n", "proba": 3.8156505866027146e-07} {"commit": "24cfe78962887b85f49c56eea8d7a9f127805900", "message": "partition table: Fix comment at top of gen_esp32part.py\n", "proba": 2.5993347207986517e-07} {"commit": "4e0d3a5bc4bfc9ad8c31f196fd700e8603b3ab98", "message": "Use comm instead of exec_conf for nranks determination.\n", "proba": 1.1472495486941625e-07} {"commit": "c1242769fca34989d0b7e1a1a53973ef652144ec", "message": "Add command line switches\n", "proba": 5.56690747544053e-06} {"commit": "c345f2d3423d89012d2c4308c960f93c6d492e7a", "message": "Add method sending the email upon lost password declaration\n", "proba": 7.834042889953707e-07} {"commit": "eb363a401983c53a7a6c6f31e9a0b96c0060ea70", "message": "Clarified prompt message to distiguish thread / process.\n", "proba": 1.1029119661998266e-07} {"commit": "2d5a4abb178fa24b86dd9c5c45135832d79db7b6", "message": "Bumped version.\n", "proba": 1.313067059527384e-07} {"commit": "77a81011a7b6e0e21149128a3792192fb41d4708", "message": "Added tests of reading the ASCII table and large, one-byte integers in raw format.\n", "proba": 1.241720042344241e-07} {"commit": "45f311abb1d155adbfb16a615bd382ecbaf108f6", "message": "Bilingual data preparation\n", "proba": 2.6853783197111625e-07} {"commit": "2b62cb8a8f62540c20e455810c9a6e7c7f2cb02e", "message": "Added tests for `concat_datasets_sequentially`\n", "proba": 1.1556985413108123e-07} {"commit": "fe9a5e0d53860514e7fbad5b9b1c7afc33cbb523", "message": "Fixed bug in the version setup. Was being overzealous with the string interpolation\n", "proba": 2.604863595934148e-07} {"commit": "834279dd3693d1504cb98120a9bd45d730ab66c4", "message": "Verify dictionary types in strict mode. This should fix #28\n", "proba": 2.3863672140578274e-06} {"commit": "c7f1836f40633f168cb430707fbb286c2a72955e", "message": "test new rows posted without heartbeat\n", "proba": 1.406002922976768e-07} {"commit": "5b678a6fefddc09a28337d2fe21a73a150496036", "message": "fix(xwiki-renderer): fix regex for macro tokens\n\n* check for `\\\\`, not `~` (`~` will be correctly escaped to `~~` on render)\n* cleanup: remove unused capturing groups\n", "proba": 2.8590820875251666e-06} {"commit": "10e331b7c1f4e6437067aec829ff5b576517d446", "message": "Update config.py\n\nAdd indent to save function", "proba": 5.359644887903414e-07} {"commit": "175d3d2861007e9be11273c39f406ac2350146c4", "message": "Change test assertion for clarity\n", "proba": 6.34603054550098e-07} {"commit": "c078429deb9d381c4430995b8f38377a30804936", "message": "Add workflow_execution_id to task notification object\n\nChange-Id: I76ab5526bd4444059f5163b3767cfebcc37b7a01\nSigned-off-by: Oleg Ovcharuk <2cbacb579a57185327e5bceb6229c02a34a4c052@gmail.com>\n", "proba": 8.542866453353781e-06} {"commit": "5027335b6ef4a85ee34fd100fb1d16efb20f7847", "message": "Fix SADeprecationWarning: The Table.exists() method is deprecated and will be removed in a future release. Please refer to Inspector.has_table(). (deprecated since: 1.4)\n", "proba": 2.6897356519839377e-07} {"commit": "b1d83d3012937967290211fff8e9c6ef909d722d", "message": "Added filetype as an argument to loaddir, to specify the file extension instead of forcing \"*.csv\"\n", "proba": 1.0829338492612806e-07} {"commit": "920ac65bbb7bc621ce0a76c2e6cf9547381ec9f6", "message": "Updated Stefan problem test for new phi interface\n", "proba": 1.2575006280712842e-07} {"commit": "e0181a8e6acef36e9cbbcd677be4ca91ae2c005a", "message": "Normalized data in a transformer\n", "proba": 7.983575414982624e-06} {"commit": "4cefc147cba072aa9c565dbeadd23c6885348c8a", "message": "Add debug mode log\n", "proba": 1.136680680247082e-06} {"commit": "d1c54db4498992be4bf482706c481aee643d668a", "message": "Get rid of deprecation warnings in test_web_urldispatcher.py\n", "proba": 3.0685532692587003e-07} {"commit": "d95bc73dd55cae0b6aa7ddbcf5deefe05e2f4058", "message": "onehot\u95a2\u6570\u3092\u5b9a\u7fa9\u3059\u308b\n", "proba": 5.510159553523408e-06} {"commit": "11cce06d35bccb962c7003e0491336181797275d", "message": "added plugin test case\n", "proba": 3.7042102007944777e-07} {"commit": "6a15d2623ae7e91657a4912d8e693c3cd1d841b0", "message": "Replace ProgressDisplayerTestsBase with ToolTestsBase.\n\nToolTestsBase already patches stdout, so it is useless to have a separate base class for progress-displayer tests.\n", "proba": 1.0306244035973577e-07} {"commit": "14fa55d1827b0d30cba22f526b790c03c341d365", "message": "Fix tests\n", "proba": 2.8394715627655387e-06} {"commit": "3781ac916be069a1d01eaa8b2a42375b689a82fe", "message": "Fixed test_rest.py\n", "proba": 1.7329838328805636e-06} {"commit": "3a7ea06f95c66d86d24239f98bfee2b0d1aa0f66", "message": "Create a failing test to demonstrate bug\n", "proba": 8.348231403942918e-07} {"commit": "0fae29669449b657cfc62589d4e2ec9fd37c6880", "message": "regression tests: import frontend in test function\n\n... to avoid breaking docutils due to the Sphinx import.\n\nSee https://github.com/sphinx-doc/sphinx/issues/2799\n", "proba": 1.6593723728419718e-07} {"commit": "64af5e18be2589d8e0d2a6fe4543f05199b5e536", "message": "Add missing run.Raw() to ceph_ansible.py\n\nFixes issue: #19425\n\nSigned-off-by: Warren Usui \n", "proba": 1.2633520896088157e-07} {"commit": "223b44337a9c876fe892744689f7fb2abe6df353", "message": "Fix line lengths\n", "proba": 0.9985288381576538} {"commit": "cb31a1f7d08776b5a9e42bc944b2e12a23c1613e", "message": "A special case for 'Permission denied' error msg when trying to execute a\npython scripy.\n\nThe script does not have execute permission and/or does not start with !#/usr/...\nIn that case, pre-pend the command with 'python' keyword.\n\nChange-Id: Idf73ee9cf0a523f51c78672188a457b2fcedc1e6\n", "proba": 1.8052009181701578e-05} {"commit": "ebe0fae61e503ec4b2d0a6b06d214b417201fc87", "message": "Ready to go for real this time\n", "proba": 1.202837012215241e-07} {"commit": "f3c67595e57ed6ac92e72db5ba517db6b2c24f80", "message": "Fix initialisation problem on Maxout\n", "proba": 0.00020881199452560395} {"commit": "6b880f3c783e6a278906b8da2aabea29bb106252", "message": "Add predict path for Residual\n", "proba": 0.0010029457043856382} {"commit": "8f9e38d4da8460aa412fd871bcfe3159e3072651", "message": "Remove checks\n", "proba": 3.7007745845585305e-07} {"commit": "d593e488d3b161f4e8f73efdf765dc737e84b966", "message": "Uncomment Print\n\nUncomment print.", "proba": 2.379597162871505e-06} {"commit": "0121631afb2b01a73c2ad743ec1e3af6f18fd363", "message": "fix string module issue in lsq_redo", "proba": 4.909036306344206e-07} {"commit": "7bff72dd6e5a91e59034a5914265e7c00404574d", "message": "ID on convention change\n", "proba": 3.0846965159980755e-07} {"commit": "07162b22873af6d68b775bd364ad396ebe014559", "message": "Add subscription list filter\n", "proba": 4.7178320983221056e-07} {"commit": "0e69895c0066310fdf8fa1a867584875ec80d8cd", "message": "Re-enable serving files in development mode\n", "proba": 3.9138177498898585e-07} {"commit": "fd532015c4693f3907faf9eccd041e39f20ea9b8", "message": "Bumped version number.\n", "proba": 1.5375471207335067e-07} {"commit": "86b6a914e25d0b7bb68122bbeceaa01bba4d8789", "message": "Don't include .exe when building chromium_builder_perf.\n\nBUG=297276,297279\nR=tonyg@chromium.org\n\nReview URL: https://codereview.chromium.org/23876031\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@224820 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.4245666736533167e-06} {"commit": "1f3b77d738b24e891cd112d09909c09bedf2c876", "message": "Avoid bisecting revision prior to r265549 on android bots\n\nBUG=385327\nNOTRY=true\n\nReview URL: https://codereview.chromium.org/413633002\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@284991 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.265333480660047e-06} {"commit": "ab1711b026f8a4915ee2ef2556b2a7dbff18fa63", "message": "Fixes #414: Add rustc + libs to action inputs, add LD_LIBRARY_PATH so that rustc finds its libs on Linux, too.\n\n--\nMOS_MIGRATED_REVID=102362939\n", "proba": 2.828383571795712e-07} {"commit": "35f48d584d5fe9450b4b89bd1d40d11f9fe819bb", "message": "Explicitly import \"util\"\n", "proba": 3.128311050204502e-07} {"commit": "fa1efd1a15637910dfca7247f71575053dcda922", "message": "exekall: Fix classmethod detection\n\nDo not unwrap the callable before checking, as classmethod are never\nwrapped using decorators (since they are not callable).\n", "proba": 1.2238571400757792e-07} {"commit": "19ee168b7c8c26f0ad359780b3c17e931353cb3a", "message": "use env in python shebang to allow running python from venv\n", "proba": 5.337303718988551e-07} {"commit": "7b820e53332a4e407431238e109922b9d6889325", "message": "Use recently added proto in runs info data\n", "proba": 1.2129532933613518e-07} {"commit": "91f1198d4dc78e1519815908f31e016541bb1829", "message": "Fixing problem with previous commit.\n", "proba": 1.3811022370191495e-07} {"commit": "cc98ffc096c45e989092159e933c2c144bf92ec5", "message": "Fixed bug which prevented replace working on a ui whose frameLayout hadn't been opened.\n\n", "proba": 1.0932149763220878e-07} {"commit": "b29c4951c0a1f7a81bf19f362e1570a1b634f18c", "message": "Grouping to avoid ambiguity.\n", "proba": 1.888024826257606e-06} {"commit": "28e7849c8f9e4d6e70da6b79f9cdf4fc93c6a1d1", "message": "adding docstrings and fixing summary_file setup for earlier releases\n", "proba": 1.4803532621954218e-07} {"commit": "8e3e31920cb03f20148f0f573d2b346a24cdcda2", "message": "Print tableschemas + fieldproperties too.\n\n\nsvn path=/trunk/koffice/kexi/scriptingcore/python/; revision=465686\n", "proba": 1.923329364217352e-05} {"commit": "4439b41170d694c84d1d0681daabc0169edc1c2f", "message": "Updated test data\n", "proba": 5.058783472122741e-07} {"commit": "c7ec73e1f203769ba31caaf2eb0cace0dd722833", "message": "CC-2891: Unicode error with metadata that contains unicode strings\n\n-reversed two changes talked about in code review.\n", "proba": 1.1047267634012314e-07} {"commit": "48536304e8d1c9b18715117cae60924af1e7632d", "message": "shared_data_repository() introduced for wikidata clients\n", "proba": 2.552347950768308e-07} {"commit": "925eb3700dda84fce1fef61303a33ef68097e1d3", "message": "Fixed some naming issues RebarWrapper.NumBands -> BandCount\nRemoved some GetProperties that could be implemented using writable_props\n", "proba": 1.235066235949489e-07} {"commit": "d8a4b17bf4cbb2b9ccf05257fcd2458b8856b183", "message": "[UPD]'purchase_proposal': a\u00f1adidas queries para el c\u00e1lculo de ventas 60 d\u00edas\n", "proba": 3.218057372578187e-06} {"commit": "b81f1e465c092aa8b8793599b104b51113c56ec4", "message": "When attempting to merge result infos abort if we find an error result.\n", "proba": 1.0907073999533168e-07} {"commit": "5346d81669f50ff10e7f90d46691c46ce4cff45b", "message": "spinel-cli: fix corner case in hdlc parser. (#859)\n\n", "proba": 1.2920332892463193e-07} {"commit": "5038df098a074316cb7c1a477a46a8e5ba99b838", "message": "handle missing install.json\n", "proba": 1.7492044435130083e-06} {"commit": "be12cbf90afd18ee58bc1d91fe462f7b08c83760", "message": "Added initial value to evolution\n", "proba": 2.2074787864312384e-07} {"commit": "ec6b149ccede6a458e6818ab47415b5b68653f92", "message": "Now finds individual corp URLs.\n", "proba": 1.1190736870503315e-07} {"commit": "c20f7e880b3232873982724fb45c00b5339884a4", "message": "added data migration for unique question variables\n", "proba": 5.977848900329263e-07} {"commit": "1dbc5ca98f30758fb27856da74910e76779a19c0", "message": "Update __version__.py", "proba": 7.871739217080176e-05} {"commit": "b7e5991b81f87100b1019cc4c6439621e357e26c", "message": "Implemented set comprehension inference\n", "proba": 1.4258826013247017e-06} {"commit": "34b2c01929731609fdd03678c57289d22eb09dd9", "message": "FIG save subplots separately to be consistent\n", "proba": 1.3207657900693448e-07} {"commit": "a1463978cac296b19d5c7a26938ed295868c9e57", "message": "Make __init__.py use a relative import (#42)\n\nInstead of making `cytoflow` depend on `fcsparser`, I would like to include `fcsparser` as a submodule. This way, if I have fixes that I want to roll out with a `cytoflow` release, I don't have to wait on you to roll a new release of `fcsparser`. (Making new releases is harder than it should be.)\r\n\r\nThis would be a lot easier on my end if `fcsparser.__init__` used a relative import instead of an absolute import. This way, the directory containing `api.py` doesn't have to be in `sys.path`. It should not effect folks who use `fcsparser` directly.", "proba": 2.9421155431919033e-06} {"commit": "5e1fe70c39d9ead39e4293bb282eaacef85c74b5", "message": "added detailed mode to progressbar\n", "proba": 1.6542718128675915e-07} {"commit": "261cbcd3ee143ddf9df49fe71243811cf54fd001", "message": "build: don't remove wrapper dir gradle/\n\nThe point of removing these was to make sure that gradlew wasn't used,\nand that our gradle was used instead. Removing the scripts already\naccomplishes this.\n\nRemoving gradle/ should be harmless, but some apps like I2P re-use this\ndirectory to also hold other stuff that is actually needed. So be safer\nand don't remove it at all.\n", "proba": 1.34878476387712e-07} {"commit": "95d7ae494f7c55beb2726556af2b0fc50aeb96db", "message": "Improve length and ranging validators", "proba": 5.602285568784282e-07} {"commit": "f41fe592265eb19bb93628926dc05adf2485d7cf", "message": "Fixes V1/V2 dataset serialization in impl/tensorflow_serialization.\n\nPiperOrigin-RevId: 268480213\n", "proba": 1.0193883781539625e-06} {"commit": "cf54c9514c2b0be004f23d79eb4ef99e68ce8860", "message": "Option --resetserver does nothing; have it used instead\n", "proba": 1.625639214353214e-07} {"commit": "252c6cb2bdb4671e20d33e6c3583b5f46bf93b9f", "message": "More elegant error message interpolation", "proba": 1.4727744712672575e-07} {"commit": "ea9dab5bb38501e40ddf6db214a2e1e90d127200", "message": "Refactor Movie search code logic.\n\nThe old logic works but can see problems in logs, e.g., printing\nincorrect warnings. This refactoring removes the problem and make result\nunchanged.\n", "proba": 1.6629431343062606e-07} {"commit": "c08987cf4b8487e4fa6c2e8330a46f028173f471", "message": "Avoid printing the dir ''\n", "proba": 0.015339478850364685} {"commit": "387701dcda2344c735693afb8f9bd76d0eaffa8a", "message": "Also remove 'obj' when removing jni dirs\n", "proba": 2.693400801945245e-06} {"commit": "69b13c128f29a65662204562b7c7fae1c2a033b6", "message": "Introduce space in output\n", "proba": 0.9999994039535522} {"commit": "39a9d3967067dd13cfadd9b5c72b49de11d08d70", "message": "updated feature pipeline\n", "proba": 3.714865499659936e-07} {"commit": "0c0ff96c18ff29eba9f51dc338f36d61494049d9", "message": "Added naive anti aliasing to Images\n", "proba": 1.3727675707286835e-07} {"commit": "4c6edb581342fa1d784a64aeaf4aba07cbfb654a", "message": "set self_consistent to False for diamonds\n", "proba": 0.9989385008811951} {"commit": "ea856750f534c2d18bc5d097df0d6a32d6195ccc", "message": "Add bz email for comzeradd\n", "proba": 4.2851237935792597e-07} {"commit": "83f93cc54ac36d7ec2ce9a2e8ca8d94109e34704", "message": "Update cudatext_init.py", "proba": 7.382995477200893e-07} {"commit": "b6d9cac6d148c937e1f74258a6fc17b3bc45c272", "message": "Make matching logic for drives language-agnostic\n", "proba": 0.00016666406008880585} {"commit": "6c167a4194948b9cb8960f66f718260ab61ee2ae", "message": "devilry_group/views/cradmin_feedbackfeed_base.py: Returns the result of converting temp files to comment files. True on success.\n", "proba": 1.0951350049026587e-07} {"commit": "c94ade6181ef2c5a669a6294b79dfec9a8c4dc4e", "message": "Remove unused imports.\n", "proba": 2.0302917391745723e-07} {"commit": "38984bed1a6fb965e206067c996b6c4b509fc0a9", "message": "Improved feed detection: updated_parsed isn't always present\n", "proba": 2.2785988562645798e-07} {"commit": "3f7b3f35f126f95dd0e6dbccc4f6e52728525981", "message": "deepcopy\n", "proba": 8.078160362856579e-07} {"commit": "0dabbaac736a5d2c9fa7d132977315c449e17a40", "message": "[ITA-97] Fix the DST issues in test (#1715)\n\n", "proba": 2.8576380373124266e-07} {"commit": "a9bd9d688393f91a1598697fa19a9dc5a3585834", "message": "Updates documentation for ilsvrc2012 dataset\n", "proba": 1.4455287100645364e-07} {"commit": "ee99c95a5529eec145931eed64be1231a9f29621", "message": "fixed spacing\n", "proba": 6.809574983890343e-07} {"commit": "3d4624364440f559dfaaf58672de84248c4d663c", "message": "Made guid handling less retarded -- check for existence of URL\n", "proba": 1.0335536160255288e-07} {"commit": "ed981e298832fe856da8539978939b04fece735c", "message": "viewhelpers.listfilter: Fixed AbstractFilter render test.\n", "proba": 1.0796216542985348e-07} {"commit": "041b20eedd134958682cb5d3d8ca593bbdf60d18", "message": "Fix signature\n", "proba": 4.6228242354118265e-06} {"commit": "91e3cccd5e4bf96d6f0d84dfa64839bb6b4c5c89", "message": "Retry hack\n", "proba": 3.551602105744678e-07} {"commit": "1a244f6837b26333493a7ccd8c3bb189dbe3cc51", "message": "simplify func handling in ode\n", "proba": 0.001479443279094994} {"commit": "6f68fba584d2bfd5ff57214a7dbc4d990cfcc527", "message": "Add 'term' validation check to end_term\n", "proba": 7.504056156903971e-06} {"commit": "dacb9408fdafb122ad7c9effa8c40b1278d51cc4", "message": "tests for 1: items belong to different lists, 2: unique URLs for each list\n", "proba": 0.9987344145774841} {"commit": "fce83830cca8ad583c5455485ac053d04c5f86d6", "message": "Drop Py2 and six on salt/modules/boto_elasticache.py\n", "proba": 2.2913597774731898e-07} {"commit": "328cdd8ceb7373b8bc986e5229c75f488cfeb7ea", "message": "always show recommendation log in DEBUG mode\n", "proba": 1.5519859175583406e-07} {"commit": "d4f372a4327fd697f658288ed0f9b3facbc8dd18", "message": "Update the cache directory\n", "proba": 8.370042792193999e-07} {"commit": "4e2ae835abd52dd45cb7b365b6d9ad86e7b29099", "message": "remove colors.py\n", "proba": 5.414723273133859e-05} {"commit": "32c680d111132922e5010241f4a7c132cc8df130", "message": "added validation for total depth drilled and finished well depth.\n", "proba": 1.0346798262617085e-07} {"commit": "82cca8a981f1cf11e8393c82f09026c45164274e", "message": "moved render_template() to common.Template\nmoved nextup actions to nextup\n", "proba": 5.999528980282776e-07} {"commit": "a9e346f78d1a531f633b578bbf6fc2ca2873d776", "message": "Pub/Sub (nit): wrong var name in sample (#7705)\n\n", "proba": 1.2833669416068005e-07} {"commit": "0a21a6b0090b56a1139cbbf72db5b6439cf3999c", "message": "-a flag maybe not\n", "proba": 1.2063585472787963e-06} {"commit": "3bbbdde04e2ae89a14f36d930558d54b680dad24", "message": "Small cleanups to the IPython magic docstrings\n", "proba": 1.321012774724295e-07} {"commit": "86613cef048a928a7c6e58ff906b0df5f422cbda", "message": "socket -> pmu_port\n", "proba": 4.7022319904499454e-07} {"commit": "eb884ef8bd4cd5220aed770e991414c02b8b00f7", "message": "extended functional test for repeated daily journal entries\n", "proba": 1.5086726534718764e-07} {"commit": "232c869f0b5c6c17306b69e27fc0b88c6b96e02b", "message": "lint fixes and better docstrings\n", "proba": 2.585021263712406e-07} {"commit": "2a3ef336a43a99a04c4cac183d3a79a684900209", "message": "Fix bump error in test_source_plugin_requires_old_package (#2437)\n\n", "proba": 1.323581528822615e-07} {"commit": "efed7b246188fff2bec44754da4c6e827d82ad99", "message": "fix user skill calculation in recommendation system\n", "proba": 9.153700375463814e-06} {"commit": "18b9806d99e6d26074f17319fc5e6dabeb724317", "message": "More tests.\n", "proba": 1.384884882327242e-07} {"commit": "993781fd98f181bbb0e357ef1b030b5c1a0dad17", "message": "Never call wpilib.DriverStation()\n", "proba": 1.5005080911123514e-07} {"commit": "70e8d2f19a8fcaa9dc545bca6100308db5915d36", "message": "Fixed bug in __setattr__ that deleted _x\n", "proba": 2.225164507763111e-06} {"commit": "b0bcce974997aff7b2334831c3fb4aa6e85fae58", "message": "moved Founder to contest common\n", "proba": 1.1576720027051124e-07} {"commit": "105ac0020dbc60fe57da7db75fb82cf872a0834d", "message": "FIX bug when sending notification to multiple partners\n", "proba": 1.5793453655987832e-07} {"commit": "554cd8bfe7cff2a3ead997f9f8878e8fa2124538", "message": "add one more exception layer; add debug messages\n", "proba": 2.4308218371515977e-07} {"commit": "3cea21c56fb58ba9e4855058c924c2e47fc77174", "message": "Changes to add BUNIT check\n", "proba": 2.137503969379395e-07} {"commit": "7d803a3ae304e87aab4c5314338bcc17b6b79b90", "message": "wrap it up with a todo\n", "proba": 0.0002639742160681635} {"commit": "89a2324c807c32fc2cf30f1f32f933740eb93038", "message": "Starting with model manager\n", "proba": 8.563213782508683e-07} {"commit": "9533ce9e7216810ec284e77a6fc8e88941744d4d", "message": "Fix failure caused by encryption padding\n", "proba": 2.110076638928149e-05} {"commit": "fda6077db207cb316857c0a15fd4ba2b441782c8", "message": "TST: add tests of valid_names arg for parse_shorthand\n", "proba": 1.5018273188616149e-05} {"commit": "d9962119ac3db19cee5c4d90a2ded0d2f86d1b5b", "message": "properly deal with coordinates in deg\n", "proba": 1.3793084008284495e-06} {"commit": "7d311f281e838085bc19b46fc42a338bf7e65263", "message": "fix file attributes, make executable\n", "proba": 5.622303547170304e-07} {"commit": "5183b3c5b5f660d3fe18eedc15d7d7606a9dbe26", "message": "Update filtering logic to work with bytes headers.\n", "proba": 1.1039327318940195e-07} {"commit": "da25708c59a041cd44cd65ecf87387f7675d87ca", "message": "Add get function with filters\n", "proba": 4.675527236486232e-07} {"commit": "5603880e78ec28d299ca537f889554c815157f96", "message": "Gets int64_t defined in Gentoo. GLX converts without error.\n\n\nIndex: tools/wraptypes/preprocessor.py\n===================================================================\n--- tools/wraptypes/preprocessor.py\t(revision 584)\n+++ tools/wraptypes/preprocessor.py\t(working copy)\n@@ -1165,7 +1165,8 @@\n import platform\n import sys\n\n- gcc_macros = () #'__GNUC__',) # This just causes trouble.\n+ gcc_macros = ('__GLIBC_HAVE_LONG_LONG',)\n+ #'__GNUC__',) # This just causes trouble.\n\n # Get these from `gcc -E -dD empty.c`\n machine_macros = {\n", "proba": 1.2005914868495893e-05} {"commit": "08a9e449e4d1dd95b98bac9411a2ba9c018fa095", "message": "parted: fix set_ valid flags comment.\n\n(cherry picked from commit a51cca17f9ead3306793ebf1ae2f61b3666d2ebd)\n", "proba": 4.2272876044080476e-07} {"commit": "285db69c3bb332397b2b0e4da62b37b0cda18320", "message": "\u0422\u0435\u043f\u0435\u0440\u044c \u043f\u0440\u0438 \u0433\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u0435\u043a\u0442\u043e\u0440\u043e\u0432 \u0442\u0435\u0441\u0442\u043e\u0432\u043e\u0439 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438, \u0432\u043c\u0435\u0441\u0442\u043e \u043e\u0442\u0432\u0435\u0442\u043e\u0432 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u044b \u0438\u043d\u0434\u0435\u043a\u0441\u044b id \u0432 \u0442\u0430\u0431\u043b\u0438\u0446\u0435 \u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445.\n", "proba": 1.191922720522598e-07} {"commit": "3edd7f497c3c92869903d01030da4d0da5d16bc7", "message": "Fix more tests broken in f6ad9eed5ea\n", "proba": 5.21222591487458e-06} {"commit": "c06607c00a8480892ea5d31bdcaf6eb74e4a8b7f", "message": "Handle type inference for Elem nodes (arrays only for now).\n", "proba": 1.037984844742823e-07} {"commit": "4ae6962a494223a67a120e10efb0710374ca4c8c", "message": "Handle MessageStateError\n", "proba": 5.107623337607947e-07} {"commit": "96670d11a4dfe9a4d78c564e93dc4f90e43974b1", "message": "headnode, nic, and hnic have funcetions added\nMerge branch 'cli' of https://github.com/gfaline/GMhil into cli\n\nConflicts:\n\thaas/cli_new.py\n", "proba": 4.837687583858497e-07} {"commit": "a3a7380fa001682dbebd8d6008fe9af3b6a6606d", "message": "Have sleep and wait for new dataset\n", "proba": 2.6147145035793073e-05} {"commit": "fcc7ea16679b4a8e7b87b7c5071d3b0d3df29531", "message": "Fix the test test_unwatch_elected_as_leader.\n\nThe test test_unwatch_elected_as_leader ensure\nthat there is exactly one leader election hook exists after\ncalling watch_elected_as_leader().\n\nBut the assertion actually verify that there is only one group\ninside the dict _hooks_elected_leader.\n\nThis commit fix it by using the actual number of elected\nleader hooks: _hooks_elected_leader[self.group_ip].\n\nChange-Id: If4d6192b451f495154c663151000e6071ac4e02c\n", "proba": 0.9986238479614258} {"commit": "7855d019aebc175473463d0e2f36321f583a855b", "message": "Cambios impuesto por municipio\n", "proba": 4.916719831271621e-07} {"commit": "9f5cd2e425fdb8e89531a5a89ade539b7d79a517", "message": "Speed up run() by caching in local variables\n", "proba": 2.159789119104971e-06} {"commit": "afb48714d34a1b09c3bbc1211139765fa1dbfbc1", "message": "resolve #365\n", "proba": 3.9157119317678735e-05} {"commit": "5249d273f3d35c81519907aa2a98758ed68765ee", "message": "Back to dry_run\n", "proba": 1.9002037277005002e-07} {"commit": "be60a3e39adbadfe7714814e5718a513494ffae3", "message": "add logging messages for id guessing\n", "proba": 4.2840983383030107e-07} {"commit": "0e2d6e2c38abf60e788984432245f43f176a80ef", "message": "come back to accoun tokens because contextBroker has changed its valid tokens\n", "proba": 5.225911081652157e-07} {"commit": "a0dfdd8430fb1d5d395239b4bbf7dda0721726a1", "message": "Mark another test as http/1 only\n", "proba": 2.8039457902195863e-06} {"commit": "09f56684dc9bd6136644cbc08de8eab887b15170", "message": "Added links to Previous and following articles on the description page.\n", "proba": 9.982507265249296e-08} {"commit": "b673c7bd641ea742ec8cc0eee42a30dc1b267a23", "message": "enabled use of more complex ACLs in admin itemdefs\n\ngit-svn-id: c74d769ecf1bfbf057d3f10521a721e84271ea06@1009 ef98d105-df06-0410-9ba4-9cf3429d62c9\n", "proba": 4.92609274260758e-07} {"commit": "8db22c49c6dcf70c9fc387be0f827c9587042980", "message": "Fibonacci sequence\n", "proba": 0.0011050775647163391} {"commit": "9a8bfd0a61d41a0e1c59b5472c3f789791938531", "message": "update test\n", "proba": 5.018525257582951e-07} {"commit": "7601b798f5a604c73784b670f1cf0cdc6c7b73dd", "message": "Generation recurring donation only for the company of the user\n\n", "proba": 1.4117037494543183e-07} {"commit": "c417e120862b5d19718dfd79f387d97871c9845a", "message": "Add type info to handle tool\n", "proba": 1.884098708160309e-07} {"commit": "fa59acb3905851920e9e3d55f61070d99fd97572", "message": "param naming\n", "proba": 2.034991894106497e-06} {"commit": "24e3eeb9bd663d21f9deff30794c12bccf1fd731", "message": "[tools.py] Simplify Deleter class.\n", "proba": 1.1528804577665142e-07} {"commit": "13835dc3b958bb3e198b98732f4cbbb819bb7b80", "message": "remove unused stuff\n", "proba": 1.4272104635892902e-06} {"commit": "4961723357464a25362c725c7f6704893ea7f919", "message": "the function, not the module\n", "proba": 0.003319371957331896} {"commit": "1f07385d70da4be0bc961411c0eb4327e7eac29b", "message": "clean categories in order\n", "proba": 0.00014957260282244533} {"commit": "f62941782fc7eb534970724730579ca40d313b0e", "message": "use new terms icons\n", "proba": 1.698922233117628e-06} {"commit": "bb8d2fa458dd565b88db4e2185062f641864e990", "message": "Disable SSL test on python 2.5\n", "proba": 1.2491021834648564e-06} {"commit": "4118f5134626a162796de5e859727c30529d3489", "message": "revert\n\nrevert", "proba": 4.306749178795144e-05} {"commit": "c39b7f0e39e4f74039eddd96cb0160f9a64302e2", "message": "Analyze Business Seasonals (HourOfWeek and derivatives) #131\n\nAdded some methods to check what is an acceptable value for a criterion (MAPE < 1.0)\n\nUsed when filtering redundant seasonals\n", "proba": 1.2407943472680927e-07} {"commit": "fecf2083dac8e6ca2f03f9c1d2d5f16441157db1", "message": "Update gearbox to be aware of gevent server package.\n\nThe gevent server apparently moved from the gevent.wsgi package\nto the gevent.pywsgi package in recent releases. This commit\nmakes the serve command aware of this change. It should work\nwith both current and older gevent releases.\n", "proba": 1.0516213677647102e-07} {"commit": "1efe608fd4f6917d39e6a068fe8fac2e894602d1", "message": "fix bad variable reference\n", "proba": 2.1981147710903315e-06} {"commit": "2b9f736137569bc1f70fe5ec08e9a0c9fc734a02", "message": "update ldap to include bind username and password\n", "proba": 1.5177121781562164e-07} {"commit": "59bba7c0d238df7ac00a191b3e5e0131ec725c74", "message": "Unroll the network qos policy functional tests\n\nThese seem to have gotten a bit racy in the last revision, just do\nit the long way now.\n\nChange-Id: I3748b8b4f264dbfa8c991b32653682e5c86eeb4c\n", "proba": 4.3433123209979385e-05} {"commit": "8ea2b26eb172c7139e77855c907819776ca944b5", "message": "[SwiftPM] Pass --reconfigure when building swiftpm\n\nThis should help in avoiding incremental build issues on the CI\r\n\r\n PR test failure to build swiftpm", "proba": 1.5156568622387567e-07} {"commit": "4e35a0ee01cede5d05c77a0a8356469b6ce1e616", "message": "Use list comp instead of filter (py3 compat)\n", "proba": 1.2290995243802172e-07} {"commit": "b7c9e2a4c135b05292a3fe4f44b5de8581a1e4c3", "message": "remove unused code\n", "proba": 1.6653786587994546e-05} {"commit": "838857580e23f3f64aba2c510d93eac21656f481", "message": "Fixed a bug where the first note in the group boundary was eating the previous notes\n", "proba": 1.8468888640654768e-07} {"commit": "15ff5297fa2759b119e31c31bad115a13c37b5b4", "message": "removed u\n", "proba": 7.531333494625869e-07} {"commit": "f17e5ff0ef6ff5c293d13bc8d22bd167545b0126", "message": "Pass sentinel connection to rq_dashboard extension\n", "proba": 2.2280876521563187e-07} {"commit": "d81a55538ff554b64f44954e8caa9eb4c91cf450", "message": "added a self.\n", "proba": 1.926537862573241e-07} {"commit": "2e4d11f01e785359e6f213fe7d647032f1212b76", "message": "Used parentheses for print to support Python 3.\n", "proba": 3.9279632346733706e-07} {"commit": "c2bf2b0de7142abed4841cce040a64958f4f02f0", "message": "Override excel export\n", "proba": 5.561223019867612e-07} {"commit": "f102ef761a45b96aab8c318914f46b363b6d8728", "message": "Note which version the new features appeared in\n", "proba": 1.3168794055218314e-07} {"commit": "3d25ca435015bb27693bc13fd928fa1e5bf58196", "message": "Use adjust_times=True in trim(), save n_events to ann.sandbox.scaper\n", "proba": 2.6143632112507476e-06} {"commit": "64e656909a42705d091af7fcec6ab526c4475175", "message": "Switch from MySQL-python to PyMySQL\n\nAs discussed in the Liberty Design Summit \"Moving apps to Python 3\"\ncross-project workshop, the way forward in the near future is to\nswitch to the pure-python PyMySQL library as a default.\n\nhttps://etherpad.openstack.org/p/liberty-cross-project-python3\n\nChange-Id: I4fd721d6f27bc0125144d960ee5028ce842a60f8\n", "proba": 7.478609040845186e-05} {"commit": "d99a20b308a62c979cfebebab029479cbf45286e", "message": "Update search.py\nadded period to send_confirmation_reply() message\n", "proba": 3.791564893163013e-07} {"commit": "6cb5f5288afa911d2feb79d9f6fb3bdccf47c566", "message": "pg database settings with env var HACKOR_PG_PW\n", "proba": 2.528549430280691e-06} {"commit": "6412910512eb51bf7a4e448247f7523a60c4964a", "message": "Refactor.\n", "proba": 8.430390039393387e-07} {"commit": "b026094aca49e062c7a78910fb0cff31c59b7843", "message": "Remove crop_annotation (since now we have jam.trim() in jams)\n", "proba": 1.24283729974195e-07} {"commit": "1eaf5f74d8f8c21f2fc25c04b6dbb8b63bb7aef2", "message": "Parallelize test and fix a race condition in the .dSYM lookup by using separate directories\n", "proba": 1.8982422034241608e-07} {"commit": "241879f3d5be8ee3ec6fd4d326fb293a74e3b6a1", "message": "return citations as an int\n", "proba": 0.9999799728393555} {"commit": "a55437f3a2bbab04c8ca6177044d7e49c90e2ba1", "message": "Fix typo.\n", "proba": 0.0016038167523220181} {"commit": "24f3333929da1c476f2a0a33c4c10cab9286a1ea", "message": "Use _ to avoid pylint warnings.\n", "proba": 1.2757597289692058e-07} {"commit": "7f3dec93161aebb59a687d1bf2af7205f5e3dbb9", "message": "clean main GA file\n", "proba": 3.1681040013609163e-07} {"commit": "71b29dc7c0cc355010f0d43c9c1192a294f9eeff", "message": "Rename areaScraper to scrapeSites\n\nRenamed areaScraper for strong stylistic uniformity.\n", "proba": 9.77705596483247e-08} {"commit": "9fdec363e133c6f341b76ef2aeac762643292e8d", "message": "Separate actuators and sensors in master db\n", "proba": 1.6857977414019842e-07} {"commit": "221dfad143a4043d70e0396fc8746707811b6155", "message": "Retirando par\u00e2metro data=None da fun\u00e7\u00e3o de deletar webhook default\n", "proba": 1.3505523384083062e-06} {"commit": "cd39dcbed3593da75fdde7ea659a7ff209fef081", "message": "Refactor for testing.\n", "proba": 1.4484707833162247e-07} {"commit": "3a1ca41dea3c14fbdf68c0c9aaad0e9c1b3d6b9c", "message": "Minor bug fix\n", "proba": 2.6315581180824665e-07} {"commit": "03c8bb9a1f2ffb7ed3a7c6a4febd8fc8bbe4acf6", "message": "Make docs clearer on `alpha` parameter in LDA model", "proba": 1.4814952919550706e-05} {"commit": "01c6b3296c3ccf16231f35bd713368d74491af14", "message": "brighten a bit more\n", "proba": 2.0990874816106952e-07} {"commit": "cfed1237bb505213d02276415190dbdf62883241", "message": "A simple conditional write method implemented\n", "proba": 4.322519089328125e-07} {"commit": "f9184487beadb7cca1c308b2cbe52fa0502c516b", "message": "1.0.2dev: Added a `go_to_view_tickets` method to the `FunctionalTester` class, which navigates to the \"View Tickets\" page.\n\ngit-svn-id: 3bd1c7f5b9365705bff4dd56977498491f5ac132@11823 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 2.174894007112016e-06} {"commit": "12b84145fc69bc63dca2b1710088efb6b35947e2", "message": "python2 compatibility in _split_lines and _make_globals\n\nThere are subtle differences between python3 and python2 regarding\nbytes/str, which affects the tokenize.tokenize call.\n\nAnd there is a difference how builtins can be accessed. In python3 there\nis an extra module builtins, where python2 has a global dict __builtins__\n", "proba": 3.237014880141942e-06} {"commit": "53135dace787b3201bbd7aad4fe61218078e1e72", "message": "fixing warning and start fixing creation of all grids\n", "proba": 1.411531371786623e-07} {"commit": "d0cd1c2bfa7fd0bf3ccc5c213370ef51f215775c", "message": "Another intermediate commit, this is NOT correct code, it is for testing\n", "proba": 6.202122904142016e-07} {"commit": "1dd6dd5fc47c8b3969128d4417cab6f301d050f6", "message": "The position field in playlist elements should change dependently\n", "proba": 3.074630512855947e-06} {"commit": "dc9fada91543d666382b33b6fedfd0e14190ab02", "message": "Do not forget to add sleep\n", "proba": 9.111799386118946e-07} {"commit": "460e797729653afcd45b0d0e7c976a3326346806", "message": "Fix the reaper's \"MySQL has gone away\" error\n\nWhen set to run with an interval of 6 hours, after a few runs the reaper\nwould start failing continuously with a \"MySQL has gone away\" error.\nThis is due to the persistent connection dropping out between runs, and\nDjango not reconnecting by default.\n\nTo avoid this, close the connection after every run.\n", "proba": 3.2094245398184285e-05} {"commit": "474620f897189a14d412cca7de5da6fc445bf974", "message": "1.1.3dev: Fixed errors resulting from merge of [13421]. Refs #11850.\n\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@13422 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 1.4811329265285167e-06} {"commit": "88ba192a0433489a2ffab81f9b1728bca9b0af1c", "message": "fix init scanner\n", "proba": 4.293366089314077e-07} {"commit": "f5e3b70f7fc8014659f1ad1924c281459dc197a5", "message": "Setup wizard updated\n", "proba": 3.018716085989581e-07} {"commit": "c47cc5d9e5c2c4ba628f0c6e08f4964be564199c", "message": "Fixed bug when handling ISC output.\n", "proba": 1.1515069076040163e-07} {"commit": "531ba31c3c9942121c7d88a03b6b272dea7635b9", "message": "API/MNT: remove dead code\n\ncore_v0.py is an earlier version of FS mongo databases. We no longer\nhave any instances of this on the floor. If accessing older databases\nis required, then use an old version of Filestore (pre-databroker merge).\n", "proba": 1.1254761034251715e-07} {"commit": "d5d27408640285aaa4d1953eb05c315fc7b99064", "message": "bugfix: put properly double encofing in seq_steps\n", "proba": 7.478926704607147e-07} {"commit": "35ad358614ab6fa1ffe4a3781e233be80287c67e", "message": "Update LargeTablePaginator to use cached_property decorator\n", "proba": 1.4635992329203873e-07} {"commit": "0ebbfecfe1e7246fc779486377aba698b0156919", "message": "LALALALALA\n", "proba": 5.0990580348297954e-05} {"commit": "5f6aed19cea1ed9185455cb0bd718649c1820314", "message": "Import script for Bournemouth, Christchurch & Poole (2022-10-06) (closes #4821)\n", "proba": 1.0206067457829704e-07} {"commit": "296aa9b661e184f649443e05ecdcd39fbe4324ec", "message": "Fix float division in clock.\n", "proba": 3.206833696367539e-07} {"commit": "3de8348191ab63da372edc869a1d807fd6f30e1d", "message": "1.0.3dev: `set_owner` uses the author information from prefs for an unathenticated user when restrict_owner is False. Refs #11418.\n\n\ngit-svn-id: 50cd48c816abc7a9f40e8e03a4277466cb30a3e4@13216 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 4.386844466353068e-06} {"commit": "8aa8724b3970cd46122e371696b8e72a31ce435f", "message": "Force platform checks and the like to pick up the local version of sqlite3.\n\n\nFormer-commit-id: 0f21fcd3591572e0777196d5b770b239bada6e87", "proba": 1.324225763710274e-06} {"commit": "eef2445c03cd527a1ca5a8551e08b9f2b03f2e05", "message": "user issues 473,476\n", "proba": 2.3683310246269684e-07} {"commit": "aaf7904af797f341041c1b3270a958f8c886c957", "message": "Fix soft reschedule in presence of zombie items.\n", "proba": 1.0743793410483704e-07} {"commit": "fb28d4354b34eb6910a241511e4b66580838f2ac", "message": "Correcting condition that verify if location isn't Brazil\n", "proba": 3.082570401602425e-05} {"commit": "5c26b29319be9c4327d584381ca616a61a63c464", "message": "Counts of the number of parameters for each section\n", "proba": 3.19148603011854e-06} {"commit": "ff96e63973636834bfb38201c12850f217c5cffa", "message": "De-duplicate test name.\n\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@8879 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 0.9999994039535522} {"commit": "1f1558b7d75e36b9d09f82b3d10cdbacfccdcfb2", "message": "add message to assert\n", "proba": 3.2740490496507846e-07} {"commit": "59f8c9f38e3f2dea3f33f32610c6e979d7a845c0", "message": "make mongoengine more international :) using unicode-strings; str(err) raises errors if it contains non-ascii chars/umlauts\n", "proba": 6.765346370229963e-06} {"commit": "1bcf71c3d15832cb49b4b863a86b8fe7e1767c97", "message": "pyglet.event should not raise WindowException\n", "proba": 0.0005087618483230472} {"commit": "a0cd726fa9f28504945a6852d8ff167e4dcfb716", "message": "fixed fetchall() method which missed reading some result rows\n", "proba": 1.50361231021634e-07} {"commit": "8bbc4d294c876c8b6b7fd2943efda689ad734b9d", "message": "repr function added to ScriptCollector\n", "proba": 2.548874249441724e-07} {"commit": "2c0319f3806671b75b293748653ca0acb1051bf8", "message": "imports in kepfunc.py\n", "proba": 1.2853454336436698e-06} {"commit": "273da09c4a00d13cd7a8837dbb489295a017d289", "message": "FIX: Added leading zero to raw log file names.", "proba": 1.0850944676121799e-07} {"commit": "55684f4cdd9350d1a5dd34979b689cb04d73f461", "message": "Removed python 2.7 dependency\n\n\nFormer-commit-id: 676b66558f7e8238bcaa6eb86207f8ee3ec503e6", "proba": 3.68490555047174e-06} {"commit": "236dd5a9899c2add46675fd5f1d8d7fee4dd46f2", "message": "make read color for failing bot\n", "proba": 1.8909547634393675e-06} {"commit": "0545ab4bdaf2639dc93cc13a6ac29f608d14eb6d", "message": "import random\n", "proba": 1.7374900380673353e-06} {"commit": "ae4b075eac61b27536441a092342ebedb4df5716", "message": "remove unwanted debug resources\n", "proba": 6.199319955157989e-07} {"commit": "8da866c3159be26b399135a2eadd46f8ff55d11c", "message": "remove errant migration\n", "proba": 1.8706971331994282e-06} {"commit": "1cb62c285a6a9842e5f101f1e2ef6834e3f6061f", "message": "Make reraising with tracebacks work on Python 3\n", "proba": 1.5505893316003494e-06} {"commit": "4c876bb4b0613b0a65c6b4a46c1e2a1bed2f8fd4", "message": "add separate taxon validator\n", "proba": 6.318866212495777e-07} {"commit": "2f5d4ea7e5ec7f37d10a2344dae5d91783641b13", "message": "added support to asterisk 14, and removed khomp support due to no way to test it\n", "proba": 1.407122880436873e-07} {"commit": "4d05c6023f5556b210bf1d819df8d01a2e6b0dcc", "message": "make 'rgb' compatible\n", "proba": 0.00011705610813805833} {"commit": "7e3b12c196c2b9f3b63536365c97ab694cf23351", "message": "Global arguments and reuse\n", "proba": 1.325785916606037e-07} {"commit": "384ef24886b0d41e3116370888f9ef25730ec8d7", "message": "TST: [stats, discrete] remove sample tests\n\nThey are too noisy: only work for decimal=0.\n", "proba": 2.460456698827329e-06} {"commit": "7a2a0222acae7c8df79549c3e66db17f9ceb2ddf", "message": "detect reload events\n", "proba": 8.228528827203263e-07} {"commit": "e85128a51fa389931052f44e572c96a0fca67a69", "message": "Fix typo on writing parallelism\n", "proba": 0.0021043941378593445} {"commit": "cef83009fb78a6fa6451127dd0cac061c48ac922", "message": "dump queueMemberCalls too\n", "proba": 1.8982277083523513e-07} {"commit": "b2d53ad4c148aa681874dbb0d03059c28981bbed", "message": "Update tests.py", "proba": 6.890586519148201e-07} {"commit": "46e3bc42e2d0bb9f2e6631d824d118e6dc851a2d", "message": "Revert \"config: remove persistent configuration\"\n\nThis reverts commit 3b13870c16cfc3db01dee2609861274af30e6ed9.\n", "proba": 1.300197425280203e-07} {"commit": "53c2abe365cf7ffa7c54951cbbd9df7b4bc5a36f", "message": "Make mock_ssp_ideal_mean_age_accuracy.pdf\n", "proba": 0.9999539852142334} {"commit": "302cda9b432497c537e8baae19d928a6d15d49a9", "message": "election extra var unnecessary and causes serialization issue\n", "proba": 1.8811022073350614e-07} {"commit": "f71dc439ed2f7dd2082bf7cd55f37ac08796845b", "message": "Bugfix hiclib image generation\n", "proba": 2.622616364078567e-07} {"commit": "9e0ee797e7d5a935bc2502e3ddb5fa0a9ceb293d", "message": "correcting noctua-go old form to new form. added dry run\n", "proba": 9.833542571868747e-05} {"commit": "d0ff4f44a3d7769884ca055e13579f55e72cc51d", "message": "doctest shape mismatch error\n", "proba": 6.053311381037929e-07} {"commit": "a8e31c1d6982b6b14f87a062e5b84555dfed38b2", "message": "working in python3\n", "proba": 5.436854735307861e-07} {"commit": "b789b8ca9c2dd4251e40d1c10d0285c31b8163a2", "message": "wrapped interaction in flatarr\n", "proba": 1.880293325484672e-07} {"commit": "874603f37133c9f6cdbf55c17add467838d05710", "message": "homegw.py: tear down all l2tp tunnels properly when doing a shutdown\n", "proba": 3.51067313886233e-07} {"commit": "8903d2abcb869d54689ea3efae9b995424024b25", "message": "show-capabilities-by-function: also include matches from BBs in fn\n", "proba": 4.629723662219476e-07} {"commit": "b04b67c9e41c210d6de6b5fdef7b20ab0b652eee", "message": "decode filename bytes\n", "proba": 0.9999984502792358} {"commit": "55d318bc70ebc1efe8604c1e9bbac6786c940df3", "message": "Added path and value to both message types, used to format output paths.\n", "proba": 1.0361076618892184e-07} {"commit": "fdc2db6869a88f5cc6a48e9fc0bd8ab39e86f55b", "message": "fix #35\n", "proba": 8.286037882498931e-07} {"commit": "1afb0d471ebf944cd98845a5809e17224bb8dfee", "message": "log message improvement\n", "proba": 3.3983383218583185e-07} {"commit": "b8d3eaea9c7c7d5c01359c7086465297ae054cdf", "message": "remove redundant code\n", "proba": 0.9999994039535522} {"commit": "13d1b5a63a0128859d1efda2bdfd06f36f366326", "message": "Update vcftools install to put perl libraries in standard site-perl\n", "proba": 1.7363424831273733e-07} {"commit": "0d781c35676d39628af30e7103217f9e746a76c1", "message": "Fix docstring indentation.\n", "proba": 7.911435204732697e-07} {"commit": "36d9d6a90be0a901d8fffe7438040846b5b2a481", "message": "Fix Client-ID and redirect URI for oauth\n", "proba": 2.4290605438181956e-07} {"commit": "d70bfe3bbd05a4f7e11075ae0205ea44a0d730b2", "message": "changed server script filename\n", "proba": 8.191939855350938e-07} {"commit": "b77757117012ca845b96385425d6419c9c94cf2b", "message": "Fixes typos and formatting errors in linopt.py docstrings\n", "proba": 2.282648665641318e-07} {"commit": "7b83045d6baaca2e58d38691b1d39582d077a5ea", "message": "petalnz: protect against zero exposure case\n", "proba": 2.3678929039760988e-07} {"commit": "faaa4e90e79c04effdf4d81a0b6b053533fde2b6", "message": "libdoc needs to use pre-wrap styles because utils.html_format doesn't anymore handle whitespace\n", "proba": 5.46553565072827e-07} {"commit": "6d87c8f241e1fd68aa6fc03191d20d506ff5a12c", "message": "commit test for non-orthogonal LASSO\n", "proba": 5.552785751206102e-07} {"commit": "79cfa43e76a9b52180ae1284520f831c5f7d421b", "message": "missing bit\n", "proba": 0.00015412952052429318} {"commit": "8723d350da2c4e3f5e24e755ff421e5347bfe465", "message": "Better logging of responses, Pyramid side.\n", "proba": 1.1016841483524331e-07} {"commit": "a857365b125afe720144d60ed4840c7a429d05e3", "message": "parse_radex only uses astropy now\n", "proba": 6.245874715204991e-07} {"commit": "7320a61156ee6c8892cf6008c3b0fa3d279ef98f", "message": "CFY-6336 Add the user's role to the token object\n", "proba": 1.3637148867928772e-06} {"commit": "77caf8310f06ff07d1961e887565037f9a74d661", "message": "better to have id for h2 than otherwise not needed a\n", "proba": 1.5554709875686967e-07} {"commit": "137e90bea88691735b5d42d2e73088606d2acbf0", "message": "removing print statements in test\n", "proba": 0.0006287390715442598} {"commit": "236ae43ad518c77ba847f2429cd02e09dbf51d14", "message": "Some bugfixes on decompose for memories. Note: this code is still not valid.\n", "proba": 1.032627494623739e-07} {"commit": "41322d360f664d7102143bf3f41df38ebde1cfe3", "message": "add minimum coverage/identity filters to base graph in classify\n\nThis commit does two major things.\n\n1. the identity matrix is no longer considered to be symmetrical\nNow the minimum pairwise identity is taken for classify purposes\n\n2. the cov_min and id_min arguments are respected when constructing\nthe base graph for the classify algorithm\n", "proba": 0.000147188053233549} {"commit": "9283eca42766bd37894335ed258c0ef487008379", "message": "table from here\n", "proba": 1.3253712438654475e-07} {"commit": "36810e039a48bb18de2e816a5d154043d6273ab4", "message": "- numpy 1.3 not 0.3\n\n", "proba": 0.9997816681861877} {"commit": "e33e8b52bc3a29948875f9f10c5b5b4d90defed7", "message": "validate merkle proof and return matched txs\n", "proba": 2.2365200891272252e-07} {"commit": "70a5fbb060f921e1a1c45fc513ca5dad344a65fe", "message": "Remove default values for embed and request parameters\n", "proba": 1.917137382179135e-07} {"commit": "2e6a23f9cfc2a3f9909a56bb2ddf9ad34a5011c6", "message": "removed some debug\n", "proba": 4.2117426346521825e-07} {"commit": "484e49c668c8361230dc490d1f7e59d2b7806b44", "message": "All words in wordcounting code is now lowercased\n", "proba": 0.0013888616813346744} {"commit": "15cc13fe2552c8a09b736e37e0bacf3649ee1a25", "message": "Refactor and fix for user locale\n", "proba": 1.8775303090023954e-07} {"commit": "10a060b4c448be31f0928e27e2fd9bba38177c3a", "message": "Update tests\n", "proba": 5.530768589778745e-07} {"commit": "a00f66e6a80b799329efa7b7970549b5ffff41dc", "message": "Change default style to 'indiv'.\n", "proba": 1.680516703572721e-07} {"commit": "ae0f5ae2f79d3ec30ec971b8e68cbcf70402eb12", "message": "adds back mass matrix functions\n", "proba": 1.2478091093726107e-06} {"commit": "1937905e6a7925cbe7e164c3adcd9ccccd3614ef", "message": "Redefine 'insert' in terms of 'batch_insert'\n", "proba": 0.9999992847442627} {"commit": "bc2f98e7da3b61bf70560f9421c005686944f7b5", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "8786a8442ff39b5bbbdc88e93dbc2f3f41758890", "message": "delivery_dhl_parcel 14.0.1.4.0\n", "proba": 2.32949531664417e-07} {"commit": "7e83739783ce1c063fee147c2fc86d5556550ff3", "message": "trying to figure out cause of travis error\n", "proba": 0.0012682852102443576} {"commit": "733ce155464e826759c6e2d99b62becdd2c423ca", "message": "fix broken test\n", "proba": 5.058454007667024e-06} {"commit": "577d1e587c766c189daeb662c00b2db4bc6603ac", "message": "typo from copying over from the analyze_thermal function\n", "proba": 1.6963305426997977e-07} {"commit": "bcff80c714b783cc9eced45ba49633a56c7e1055", "message": "Switch from multiprocessing.dummy to threading to fix startup issue\n", "proba": 1.580207111828713e-07} {"commit": "81fc9fa3572513351a028a8a3df12db92b28458a", "message": "reverted the deletion of url_overwrite and has_url_overwrite", "proba": 2.938161742349621e-05} {"commit": "e4787f58eb4bc872fac15d3093096bfb64d30f68", "message": "Don't raise KeyError in _get_wire_values\n", "proba": 1.3644199725604267e-06} {"commit": "035b071418615d8f865395425506c4a052e9bdf1", "message": "fixme is old\n", "proba": 0.0005496693775057793} {"commit": "45fdf70398ca8aedc789ef818d379349b797d554", "message": "Update views.py", "proba": 4.614934141500271e-07} {"commit": "146e41abcc7ae6587af1a757338a7637157f14f4", "message": "Typo.\n", "proba": 1.1319933719278197e-06} {"commit": "ac906f4231a8b781082bea586f834e470604ff96", "message": "Added namespace tag definition.\n", "proba": 1.1874367089603766e-07} {"commit": "f888e0058edfbe7c6e6e9390204337acebed9bba", "message": "missed something\n", "proba": 4.0831307046573784e-07} {"commit": "ac64ff366a7da8cb00900e1f06c7252462b1710f", "message": "added self.maxDiff=None\n", "proba": 0.00011309808178339154} {"commit": "576c4c860e499add0202f397e394d8c98c99ceb0", "message": "promote the index to make the arrays stay virtual\n", "proba": 2.9687146252399543e-07} {"commit": "baef7fcdab3603689f158f6dabc2562d469ec4d2", "message": "adds a bit of user input testing\n", "proba": 4.850460868510709e-07} {"commit": "4718b379bca8cd7ec675cb7a6e66bce173d56f9f", "message": "check webhook header signature\n", "proba": 4.030383990993869e-07} {"commit": "01e10e2bd76628a5d2dfc83cd340a855bf55d157", "message": "learn to smash the bot\n", "proba": 5.052269784755481e-07} {"commit": "8060ab02f99458317b2587cc239b8d024a541655", "message": "lil bugfix in parsing startGcode\n", "proba": 2.3307886465318006e-07} {"commit": "74b99152db485b436c34b67ea3af70249a601d05", "message": "Fix llvm binary tarball requirement\n\nRemoved redundant is_llvm_binary_compatible() and fixed zlib prerequisite\n", "proba": 4.070494105690159e-05} {"commit": "10eb5164c1b3f26f63e9ac71db9400ff2f5100f9", "message": "Fix translation error\n", "proba": 0.0002842739340849221} {"commit": "351b9fe8b5793bd6bca12e21e52f7fe184fd4f94", "message": "Add default_path to Repository\n", "proba": 6.571809194610978e-07} {"commit": "3f653fa2f61376c2d74978190a3fec4e24eea05d", "message": "[project @ aafshar@gmail.com-20080729182234-voe4z0bephzz1p2u]\ntypo in docstring\n", "proba": 1.7961801859200932e-05} {"commit": "0f5660d52b03c847f939ba1ce3e0a64ed589d973", "message": "be more consistent in sorting history by frecency\n\ngit-svn-id: 71e07130022bd36facd9e5e4cff6aac120a9d616@1255 f6a8b572-8bf8-43d5-8295-329fc01c5294\n", "proba": 0.00026261937455274165} {"commit": "8d3f180430cf415e6615963cb96e3bf1a96e986d", "message": "Handling another edge case\n", "proba": 2.8437750643206527e-06} {"commit": "b060aab507c666488224c5cdf9bfb9bdae0bd3d4", "message": "Fix a typo that might affect the performance\n\nRelated to #223\n", "proba": 0.9982786178588867} {"commit": "01c0d167f8ded515206e1a0f39a6e05748c42838", "message": "Rename loggers, handlers, formatters\n", "proba": 3.35976210408262e-07} {"commit": "b624bf32c4861af184985f1280b4f19de842e336", "message": "caching for gae\n", "proba": 2.2084368822561373e-07} {"commit": "a2d78858997d27db5cac775dc01e922704cd0904", "message": "no longer setting instrument when creating midi instrument\n", "proba": 1.6582870898673718e-07} {"commit": "1be3e3af26f25977d3f3efd18f1cfa0d534855e9", "message": "Added protocol property", "proba": 1.5019655563719425e-07} {"commit": "6f5497410437cc64b1367e326f4edb2bc87fad02", "message": "Handle slices from Unicode strings into ASCII strings.\n\nNot as efficient as it could be. In particular, if the slice doesn't\ncontain any non-ASCII characters then this isn't needed.\n\nFixes error in loading the fasl.rktl test suite.\n", "proba": 1.837283036820736e-07} {"commit": "e5d797f8091c158b78fe879fe9d534a0aecf57c8", "message": "switched ping api to use system hostname\n", "proba": 4.4804187382396776e-07} {"commit": "76b176512930861666fb0767690ee8bd26f92ecc", "message": "Let's use a hyphen here as we do elsewhere\n", "proba": 1.7562953871674836e-05} {"commit": "7c0ead7248fa067e689c38a438df037ab7c8842d", "message": "expression shouldn't need escaping here\n", "proba": 0.0003029824001714587} {"commit": "4da1f2f6494d0b7a82385e4324b0c476fbaecfef", "message": "Testing\n", "proba": 1.8708933566813357e-06} {"commit": "c707d558995d0318022f3a26935f1100020975fc", "message": "fixed MSSQL TOP\n", "proba": 1.2849311588070123e-06} {"commit": "e880fb28469445824c03f2df6767e27fb6dc336a", "message": "Testing\n", "proba": 1.8708933566813357e-06} {"commit": "959dda6dac51633097971fdb5f0dc24e00a891f2", "message": "undo typo introduction", "proba": 4.31971056968905e-06} {"commit": "a94ca4099e04e0729352b363d39b56954f1f588f", "message": "Pass proper name to distutils.Extension\n\nThis patch makes it possible to install to install lazperf with pip.\n\nWithout this change `python setup.py bdist_wheel` (which pip runs when installing lazperf using pip) doesn't produce a correct wheel archive when cython is not already installed in the Python environment. This what the wheel looks like without this change:\n\n\t$ unzip -l dist/lazperf-0.0.8-cp35-cp35m-linux_x86_64.whl\n\tArchive: dist/lazperf-0.0.8-cp35-cp35m-linux_x86_64.whl\n\t Length Date Time Name\n\t--------- ---------- ----- ----\n\t 2080936 2017-03-23 12:37 *.cpython-35m-x86_64-linux-gnu.so\n\t\t 3637 2017-03-23 12:29 lazperf/PyLazperf.hpp\n\t\t 2764 2017-01-23 10:13 lazperf/PyLazperfTypes.hpp\n\t 546852 2017-03-23 12:36 lazperf/pylazperfapi.cpp\n\t\t 294 2017-03-23 12:29 lazperf/__init__.py\n\t\t 2746 2017-01-23 10:13 lazperf/PyLazperf.cpp\n\t\t 7641 2017-03-23 12:29 lazperf/pylazperfapi.pyx\n\t\t\t4 2017-03-23 12:37 lazperf-0.0.8.dist-info/DESCRIPTION.rst\n\t\t 898 2017-03-23 12:37 lazperf-0.0.8.dist-info/metadata.json\n\t\t 10 2017-03-23 12:36 lazperf-0.0.8.dist-info/top_level.txt\n\t\t 104 2017-03-23 12:37 lazperf-0.0.8.dist-info/WHEEL\n\t\t 734 2017-03-23 12:37 lazperf-0.0.8.dist-info/METADATA\n\t\t 1068 2017-03-23 12:37 lazperf-0.0.8.dist-info/RECORD\n\t--------- -------\n\t 2647688 13 files\n\nAnd this is what it looks like with this change:\n\n\t$ unzip -l dist/lazperf-0.0.8-cp35-cp35m-linux_x86_64.whl\n\tArchive: dist/lazperf-0.0.8-cp35-cp35m-linux_x86_64.whl\n\t Length Date Time Name\n\t--------- ---------- ----- ----\n\t 2080936 2017-03-23 12:38 lazperf/pylazperfapi.cpython-35m-x86_64-linux-gnu.so\n\t\t 3637 2017-03-23 12:29 lazperf/PyLazperf.hpp\n\t\t 2764 2017-01-23 10:13 lazperf/PyLazperfTypes.hpp\n\t 546852 2017-03-23 12:36 lazperf/pylazperfapi.cpp\n\t\t 294 2017-03-23 12:29 lazperf/__init__.py\n\t\t 2746 2017-01-23 10:13 lazperf/PyLazperf.cpp\n\t\t 7641 2017-03-23 12:29 lazperf/pylazperfapi.pyx\n\t\t\t4 2017-03-23 12:38 lazperf-0.0.8.dist-info/DESCRIPTION.rst\n\t\t 898 2017-03-23 12:38 lazperf-0.0.8.dist-info/metadata.json\n\t\t\t8 2017-03-23 12:37 lazperf-0.0.8.dist-info/top_level.txt\n\t\t 104 2017-03-23 12:38 lazperf-0.0.8.dist-info/WHEEL\n\t\t 734 2017-03-23 12:38 lazperf-0.0.8.dist-info/METADATA\n\t\t 1086 2017-03-23 12:38 lazperf-0.0.8.dist-info/RECORD\n\t--------- -------\n\t 2647704 13 files\n\nPay attention the path to the .so file!\n\nCloses #33\n", "proba": 3.915814431820763e-06} {"commit": "700975fe93fbf463a3dce2f976cdec75dadbf2e2", "message": "handle IOError to switch to another server\n\nAn IOError is now handled when connecting to a server.\nIt will now change to another server.\n", "proba": 1.7481342240444064e-07} {"commit": "8ecc93a03f61add10b934057f3dcac1a96ed12e3", "message": "minor edits in python/setup.py\n", "proba": 3.7961524412821745e-07} {"commit": "bfadfe4871323d02444956b424f3ad13768867cb", "message": "Added singleLDAmodel from gensim; added logging; added fixed flags for testing\n", "proba": 1.3230324213964195e-07} {"commit": "0d8e2a96c041fef12cb080d426a50b3cc79d5359", "message": "On stop, don't log out from master if ot logged in\n\nThis would just fail anyway, because we don't know our agent_id\n", "proba": 4.2778967213052965e-07} {"commit": "3f83a3f257ce484b901ac5f80dd9c08282fa3d76", "message": "Update version requirements.\n\nRequire Python 2.7 or >=3.5, <4.\n\nRequire protobuf>=3.6.0. Generated *_pb2.py code is compatible with\nprotobuf 3.6.0 but not with 3.5.2.\n\nAllow tensorflow>=1.14 instead of >=2.0.0a0. Riegeli should be\ncompatible with TensorFlow 1.14 when it is released.\n\nDeclare incompatibility with protobuf 4 and tensorflow 3, should they\never be released.\n\nRevert to 'distclass=BinaryDistribution' instead of\n'ext_modules=FakeNonEmptyList()'. According to\nhttps://www.python.org/dev/peps/pep-0491/#what-s-the-deal-with-purelib-vs-platlib\n A wheel with \"Root-Is-Purelib: false\" with all its files in\n {name}-{version}.data/purelib is equivalent to a wheel with\n \"Root-Is-Purelib: true\" with those same files in the root, and it is\n legal to have files in both the \"purelib\" and \"platlib\" categories.\nso despite \"purelib\" appearing in paths, this should be fine.\n\nPiperOrigin-RevId: 242080584\n", "proba": 0.0011750847334042192} {"commit": "fd87df56f85c473748cbce99535590e6598e23c9", "message": "moar updates\n", "proba": 3.0262276595749427e-07} {"commit": "40666b94a41081c0520729996d81c52db92372fd", "message": "Do not retry announcing while shutting down\n", "proba": 3.153502348141046e-07} {"commit": "7907b1db36d1919e88cfae2ae66d62755ba00aa0", "message": "Dual Py2/Py3k version doesn't work with Python2.5\n\nFailing construct: 'from . import *'", "proba": 3.1780263043401646e-07} {"commit": "b306f7449e71c4cfe36a9f225fa9ff4f9ba22369", "message": "adding utility.remove_file\n", "proba": 1.2504962796811014e-05} {"commit": "71d9d1d40f6238adfef04159a8e22e89a05be980", "message": "Updating version\n", "proba": 5.706050956177933e-07} {"commit": "5008eeb4620e98e87f68a89cf5c04328fb48f7c7", "message": "unicode csv readers/writers\n", "proba": 1.5019184047559975e-06} {"commit": "e18354fe53950cb5ed6981947b9773908f98b2ec", "message": "Added py4j and sklearn to install requirements\n", "proba": 1.1494530127720282e-07} {"commit": "d6abffcde37b56202535fda06ad86e8ffdeca728", "message": "Renamed Label parameter 'halign' to 'align'. Fix for issue 460.\n", "proba": 1.0831961816393232e-07} {"commit": "51f30d52427d56253fe35b6c4f7b79f0a09e66b6", "message": "Some problem with abs\n", "proba": 2.2542650185641833e-05} {"commit": "1c25e207e492db7bfd54e3234975aff720517c62", "message": "Add EmacsLispLexer\n", "proba": 2.5235171960957814e-06} {"commit": "076feaac39fe20d86cc2dbddaf793b7c80a0aae9", "message": "fixed bug this time?\n", "proba": 1.1400522481608277e-07} {"commit": "aed83a80cfd4b7860cb76f92a0300a03e3e47a11", "message": "Lower default analyse_text result of Octave lexer.\n", "proba": 1.1635471253157448e-07} {"commit": "f2e0ccec01c8ad293d915e91ec2c43bab9598f39", "message": "fix missing imports ", "proba": 0.962367832660675} {"commit": "8f692ffa6a6e80504bd176b999a6c3416b218bd6", "message": "improve hubspot tests\n\nadd a second blocked user to test against a second domain attached to the billing account\n", "proba": 1.9659242411762534e-07} {"commit": "394b85d813b88000b34c57e945b7370bfe4a2233", "message": "Initial commit of MathematicaLexer\n", "proba": 1.3869824044832058e-07} {"commit": "cf1471a9d27cc2cbad22fa454ce3d5df80617886", "message": "Updated from Brython Server: 9/21/2015 2:24:27 PM", "proba": 1.0912983583466485e-07} {"commit": "bacbdeeb8999e0d7ef660f88ed38c1a3e9787093", "message": "checking devices for only commcare user\n", "proba": 1.4562604633283627e-07} {"commit": "fd3717480f30420c7a1517501545e218c26bd0e3", "message": "Retire searchlight repos: update doc site\n\nSearchlight project is retiring in Wallaby cycle[1].\nThis commit update openstack-manual to redirect\nthe repo doc site to REAMDE file.\n\nNeeded-by: https://review.opendev.org/c/openstack/python-searchlightclient/+/764529\nNeeded-by: https://review.opendev.org/c/openstack/searchlight-ui/+/764528\nNeeded-By: https://review.opendev.org/c/openstack/searchlight-specs/+/764527\n\n[1] http://lists.openstack.org/pipermail/openstack-discuss/2020-November/018637.html\n\nChange-Id: I9cf18a7b383810f54a0e00af3ebb78d18d495297\n", "proba": 1.5531348253716715e-05} {"commit": "19b41f4f05eab87240b236a167812648c8275fb3", "message": "Fix as PyPyLogs can contain nested builtin names.\n\nThis line from an example pypylog shows the problem:\n+314: p39 = getinteriorfield_gc(p38, i34,\n descr=>)\n\nFix was to simply modify the regex to consume one or more '>'\ninstead of only one.\n", "proba": 6.176541660352086e-07} {"commit": "5a1b6a53698a7756d0b76cec9e753ae8482a82e5", "message": "Updated from Brython Server: February 4, 2016 2:32:49 PM EST", "proba": 1.0682003193096534e-07} {"commit": "50e7b7e255b5c493af86825490a7f388a506a2f1", "message": "Added diagnostic plots\n", "proba": 1.4713678808675468e-07} {"commit": "a25f079f210bdfdb635b2fcb592ba3cb3164f543", "message": "Deprecate openstack-ansible-galera_client role\n\nDepends-On: https://review.opendev.org/c/openstack/openstack-ansible-galera_client/+/765779\nChange-Id: Iedfae31183f862e9f4aff73554677df40d38ba4b\n", "proba": 3.762653932426474e-06} {"commit": "35111675cf24a99ba82f8edd6c32a6de150576ec", "message": "Fix tables with wrong constraints\nand add TODOs to make them.\n\nAlso remove some trailing whitespaces.\n", "proba": 1.203123929371941e-07} {"commit": "c3da1ce2180019485a47274f7c291e0f1cb815e5", "message": "Header info.\n", "proba": 1.416076571558733e-07} {"commit": "e1da01a945ed36210c0eaaf87e7ed25befb87811", "message": "Fix wording of lesson body description.\n\tChange on 2013/05/07 by jorr \n-------------\nCreated by MOE: http://code.google.com/p/moe-java\nMOE_MIGRATED_REVID=46311622\n", "proba": 0.9999895095825195} {"commit": "e0cd77b3a41c6ff8857d8b2f5e80dc031b7bb1fe", "message": "add missing import in sanitizing\n", "proba": 1.9414848793530837e-05} {"commit": "0bcf81863c61a37123df7a1bc53de176c5fbd282", "message": "j --> jb, typo correction\n", "proba": 0.00011004286352545023} {"commit": "7c3ed701443fdee8f872375aa95688e40144666f", "message": "Fixing bug where the python code mutates the outputWriters instead of making a copy\n", "proba": 7.04382784988411e-07} {"commit": "9ebede4f009b6a4758264ea5d643ac366e500761", "message": "Read OpenStack-style config from Gluon config file\n", "proba": 2.3262474257990107e-07} {"commit": "63562ca8aee52399cda8fa142cca3e5789cad8d4", "message": "PEP8 fixes\n", "proba": 1.4330707642784546e-07} {"commit": "b11d5624452b3c047c6e342d31bcaad576b30696", "message": "fix splitting on multiple equals in val", "proba": 4.3299627577653155e-05} {"commit": "5705e0bd797bc75ae74bdbb0a1b129af528d22b8", "message": "FIX: import\n", "proba": 4.1490249714115635e-05} {"commit": "56f3cde26676c210e67df8cf957018074d0f263e", "message": "Fixed super() in Builder_many_body to work with Python 2.7\n", "proba": 4.4872905391457607e-07} {"commit": "bc790e915a50a28c307c47cf01ebd75b6271be59", "message": "Add (optional) JMX username/password support to the YAML converter\n\nAdd a 'username' and 'password' attributes at the 'setname' level\nin your YAML configuration for hosts that require authentication.\n\nIf unset, the default behaviour is unchanged; no 'username' or 'password'\nentries will appear in the JSON output.\n\nExample:\n\nsets:\n - setname: set1 # default behaviour - no username/password\n query_names:\n - mempool\n hosts:\n - host1.f.q.d.n\n - setname: set2 # Host that requires authentication\n username: \"jmx\"\n password: \"jmx\"\n query_names:\n - mempool\n hosts:\n - host2.f.q.d.n\n", "proba": 0.999750554561615} {"commit": "abb19c6e184fe49f939684e9014ed891f9ece2e8", "message": "Fix a bug in crontab parsing (#594)\n\n* Fix a bug in crontab parsing\r\n\r\n* Update `split` call for Python 2.7 compatibility.\r\n\r\nCo-authored-by: Yassine Labidi <611740cc45b959a4034f3f84325ff8b83ed167e7@gmail.com>\r\nCo-authored-by: Nick Barrett <75ef9faee755c70589550b513ad881e5a603182c@fizzadar.com>", "proba": 1.956176731710002e-07} {"commit": "da019eb63a213d38a8377d31bad294950f8554e0", "message": "Arranged", "proba": 0.00016303818847518414} {"commit": "0b4225ddb190dffbbee7a391e6206c8cb3f18a6a", "message": "CO-3363 Phone calls are displayed in communication resume only once done\n", "proba": 1.1064179972208876e-07} {"commit": "95efe021563fc951ed4536968a27f28318c4d843", "message": "sync umsgpack\n\nthis should fix a case where InsufficientDataException is thrown due to short reads\n", "proba": 2.8081979053240502e-06} {"commit": "d9f582edce747285e8db700ebf1255b9e2872347", "message": "Fix VS project generation for the crash generation app.\n\nBUG=N/A\nTEST=N/A\nR=mark@chromium.org\n\nReview URL: https://breakpad.appspot.com/1084002\n\ngit-svn-id: 7939527bf0a06ad24ad020f729d5600cb42ed5d7@1273 4c0a9323-5329-0410-9bdc-e9ce6186880e\n", "proba": 0.0030864065047353506} {"commit": "d151705218735d6bda38b2b92053f5d21645b957", "message": "parse_results.py - GOST support\n", "proba": 3.076543748647964e-07} {"commit": "8dc21f5cdc870c8ff253c1e09aa5280ed2449c29", "message": "[qtile] Added keyboard shortcurs for volume and backlight\n", "proba": 1.1737324712157715e-07} {"commit": "a09775cca0a297185f5abc5873c065c1fd08efb8", "message": "Add parantheses for print in python 3.0\n\nprint txt\r\nSyntaxError: invalid syntax", "proba": 0.9987945556640625} {"commit": "80456ec10ad85649423bf2baff6108ad758b9a21", "message": "Minor fixes\n", "proba": 2.2240030261855281e-07} {"commit": "b83275c0beee1d5ce3f3a478eba7951c0896ca73", "message": "MOD: use table name module constants\n", "proba": 2.435579290249734e-06} {"commit": "bdee0868829c23b2629140d5fb20941e68bdc096", "message": "addon man: change code to require CudaLint/CudaFmt\n", "proba": 2.1382359705057752e-07} {"commit": "e07bbab97b461ee3302e4ca661383731973d4eee", "message": "as usual, error handling saves the day.\n", "proba": 1.2341831734374864e-07} {"commit": "d034568838466e41231ebcd99fe24a84cb1682b2", "message": "Changed initialisation of w_t\n", "proba": 3.9174324228952173e-07} {"commit": "c9737a5e268909b8700670792ef8a753c921a7c2", "message": "Updated commands to work with changed gnosis.xml.pickle module.\n\n", "proba": 1.0235855540940975e-07} {"commit": "64094c37e1e1bb8404cb34c44210ba2adc7ba7c0", "message": "Now quantumclient compatible\n", "proba": 1.4471480369593337e-07} {"commit": "871e2cdd0952a9e51b0605be21b142781767ff68", "message": "Use the new simplified GTK+ GUI for the Nautilus extension\n", "proba": 2.014818534235019e-07} {"commit": "2c11882dd269bc9fa7dffe614f646bad810a2274", "message": "StopWords: improve handling of zadd calls\n\nLower frequency threshold\n\n$ cat ../stopwords.txt | REDIS_HOST=0.0.0.0 stopwords\nINFO:StopWords:Indexing stopwords...\nINFO:get_redis:Connected to StrictRedis>>\nINFO:StopWords:Indexed 235369 stopwords in 7.56 sec\n", "proba": 5.521113735085237e-07} {"commit": "e36d022f62377eed6276dad192ba850bd05c4a59", "message": "5.0.0\n", "proba": 1.2396543752402067e-05} {"commit": "39cc30f2f6c74d3a506c5d1a46cf0ccc6377b80f", "message": "Use pyscrypt.py in package import if libscrypt isn't available\n", "proba": 4.442479450972314e-07} {"commit": "310fe615ab7cd61ebfd32cb715d491398f0586fe", "message": "UPDATED: iterative stead-state solver now uses spilu preconditioner\n\nUse sparse incomplete LU preconditioner for steady state solver.\nMethod is now stablized bi-conjugate gradient so that we do not need to\ncalculate dagger of preconditioner.\n", "proba": 1.0693500485103868e-07} {"commit": "7b275f1b9a4e9f7c6b8ffe29984afa1169783f01", "message": "pass the test\n", "proba": 0.00017622917948756367} {"commit": "0ac5034e3de1a62fe855626162c588296242aad3", "message": "v 0.4.0b5\n", "proba": 1.2770595276379026e-05} {"commit": "ea61b663887a669f8cfa469e199cffd6fb742890", "message": "fixed tlog text file parsing\n", "proba": 3.1924858490128827e-07} {"commit": "f71eeef70f82db4d96c67ef69a850c2767e4f119", "message": "fix import error after parfor -> parallel rename\n", "proba": 1.7299954890859226e-07} {"commit": "a0270a809e1faeff7766a39c87cf2d0ad8238088", "message": "State whether batch updater is running dry\n", "proba": 0.00036712008295580745} {"commit": "408a64ebbc76e03487cd7357fddfa63e60a4ffe7", "message": "Set required appbuilder-cli version to 2.12.x\n\nSet required appbuilder-cli version to 2.12.x\n", "proba": 9.3948631274543e-07} {"commit": "bfd366e9736a37a0df5d7e91e77b46edfe571f2f", "message": "allow saving to csv to buffer stream\n", "proba": 2.586362768397521e-07} {"commit": "cc4104f862f3efbcd6634ae27a6fd85a57fcc842", "message": "Fix iCalendar compliance in roadmap, based on patch by hvr. Closes #3767.\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@3793 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 1.2658195373660419e-05} {"commit": "dfa398f78c04a8955756ff27962bcb2b84a3b1c5", "message": "Fixed issue whereby restart app and reload app apis leads to timeout depending on how app is written\n", "proba": 1.4880163234920474e-07} {"commit": "d6d772d440f86458a1836e4e2e9c0458a08b3953", "message": "Catch OverQuotaErrors in mail_dispatcher.sendEmail\n", "proba": 2.2202732452569762e-07} {"commit": "94d58977019988afb8c78c6837fcf22af7ce612a", "message": "Replication.\n\n", "proba": 6.783829462619906e-07} {"commit": "ae57e320f19088bd19fe8bd4cfa56a9760643671", "message": "And again...\n", "proba": 1.4374920453974482e-07} {"commit": "8a383672e44daa1e15bad29e52c0c5af2357f21e", "message": "last bit of merge\n", "proba": 2.2298158341982344e-07} {"commit": "449007c7ce9f50955b04fc6b5eac9ff2c541e3da", "message": "1.3.3dev: Merge r16287 from 1.2-stable\n\nRefs #12803.\n\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@16288 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 1.6126503396662883e-05} {"commit": "ab5b55a00c756c048f787d0eda660cad6cf81e58", "message": "change output table names\n", "proba": 0.0002742462093010545} {"commit": "728c0a04cd77b9a9384a69bab1588574e63adb39", "message": "Style fixing in GradeRecord model\n", "proba": 1.400886020519465e-07} {"commit": "7a5fbf6d0635640321bc1e69b3a5c111cc618cd5", "message": "Added a force parameter to .dump() to ensure DER-encoding\n", "proba": 3.476987160411227e-07} {"commit": "a1e43ec0dc6897f462bc9942b23ce3abc6fc225a", "message": "The UI defaults to replacing special characters with underscores\n", "proba": 1.2724647149298107e-06} {"commit": "fbc40cd45addc5599044b6d1e25798ec6dbd8bc9", "message": "[Android] Fix documentation for device_utils.parallel\n\nBUG=\n\nReview URL: https://codereview.chromium.org/1471323002\n\nCr-Commit-Position: 972c6d2dc6dd5efdad1377c0d224e03eb8f276f7@{#361416}\n", "proba": 4.357027876267239e-07} {"commit": "768ca06c504451de48d5a9b7d8b91d9e35875dcb", "message": "HDF5_recorder: Added the get method to EmptyArrayRecorder and HDF5ArrayRecorder so that retrieval can be performed without raising an exception.\n", "proba": 1.1387471943180572e-07} {"commit": "b92389e73171462e1d9a0a2fcda8e76d9138fabc", "message": "Messing with docstrings\n", "proba": 2.3682835603722197e-07} {"commit": "336ca20828d8a3fd1adf34cb5253370918654397", "message": "PY-29092: Merge env vars instead of overriding in console debugger\n\n(cherry picked from commit 8e60e21)\n", "proba": 1.0401906536117167e-07} {"commit": "f847d9dc64d6e6772db1d48765c64ce00dca10e7", "message": "Follow-up to r3314, use `to_unicode()` instead of `unicode()`, as `text` can actually be some `str` provided by a pre-unicode user macro.", "proba": 1.1600038618553299e-07} {"commit": "515bcc07f2ceef73621b72874234215d387d7191", "message": "Removed setting of the scope in the ProjectSurvey init.\n\nThis is because it is not possible to query for another entity outside your entity group in the __init__ fucntion.\n\n--HG--\nextra : rebase_source : bebcd9cec4e4ff111abdaad530c88a29ee2c0103\n", "proba": 1.064313983079046e-05} {"commit": "a1cc425f3a615e963cefd534f5af7463979f8bbb", "message": "[chromeperf] update query for delete_expired_entities\n\nTry to limit the query set to avoid timeout.\n\nBug: chromium:1381517\nChange-Id: Ib9b87f1c876dc7fe20a8657c5b07527bb76f1df2\nReviewed-on: https://chromium-review.googlesource.com/c/catapult/+/4007162\nCommit-Queue: Wenbin Zhang <45ad8a1ff616a38a2202fd35571df81897c5f14f@google.com>\nReviewed-by: John Chen <334fbfbb4df7c78f091ea1b77c69ca6ac731a3f3@chromium.org>\nReviewed-by: Leina Sun <4dc7485e04f6a3a1d05495d5781efc53aef710e0@google.com>\n", "proba": 0.9985938668251038} {"commit": "eeb28ac33f75ca6a620369ac17362f7d74f162e4", "message": "Updated scenario Movind to London\n", "proba": 4.6350646698556375e-07} {"commit": "24a447b0b9dbd2e56ffa23434a108366aacf4ad1", "message": "core.models: Fixed typo\n", "proba": 6.278081059463148e-07} {"commit": "beb1e4ca319539c3d271c8a580b5a7ed88814411", "message": "update version.py\n", "proba": 7.961798473843373e-07} {"commit": "f838fad484dce168a57f41f24dfccac3be8dee69", "message": "Updating translation of layer coordinates.\n\nSince removing r_indices from the Atoms.center_CM method call,\nthe translation of the graphene coordinates needs to be\ndone differently. For now, that means changing the z-component\nof the CM vector to zero before translating layer atoms.\n", "proba": 1.63698970823134e-07} {"commit": "3a40d7f4cf7b85ef276999af7cf6da32332ce81f", "message": "add pillow-style convert#open()\n", "proba": 3.9673537344242504e-07} {"commit": "430ff7e3bf17dfbf0ceb1bf92d9d7ffaf4395aae", "message": "Delete test_version.py\n", "proba": 9.137026790995151e-05} {"commit": "eadd69c7ac9018d59965b6f71e54df1d7d459cd0", "message": "Commeted out xmlrpc_client test, since we do not wish to use time fixing something that is to be replaced\n", "proba": 1.1365784047256966e-07} {"commit": "a0d9fc9feecd43bfd999b9e57cae694f73693d76", "message": "incorporate patch from issue #9112 http://trac-hacks.org/ticket/9112\nsuccess = True\n", "proba": 0.0008537527173757553} {"commit": "71f07f76f152e14b0b28e0619efc4565462e6ef4", "message": "distributed computing on worker nodes with adding the path\n", "proba": 5.125272650730039e-07} {"commit": "be1dfafc5809ef06fa83af888b5cdb4a2bebb64d", "message": "don't add 'None' value in indexed terms\n", "proba": 0.000504910247400403} {"commit": "cd122add77fcb8dc090062be32dc9680c4457c67", "message": "fix bug\n", "proba": 6.400653660421085e-07} {"commit": "42acb316f17b17090da9f4dfc7f2cc31473749b4", "message": "0.3.0\n", "proba": 0.0001822802150854841} {"commit": "4621c8560f20c8e11200da72c84b5ab1c30da51f", "message": "Further cleaning up and validating sqlLoader\n", "proba": 1.1400729249544383e-07} {"commit": "c716c1b8b55d0e318d6e8a8f214bc6ecba382a45", "message": "Import scipy.ndimage before tensorflow to fix jpeg load. (#165)\n\nWhen importing tensorflow before scipi.ndimage and running the\r\nexample in a docker container, the following error is given:\r\n\r\n```\r\n % python example.py\r\nTraceback (most recent call last):\r\n File \"example.py\", line 25, in \r\n im = im / 255.\r\nTypeError: unsupported operand type(s) for /: 'instance' and 'float'\r\n```\r\nThis only happens for 'cat.jpg'. When converting the image to a '.png'\r\nfile, the example runs as expected.\r\n\r\nWhen swapping the imports around so that scipy.ndimage is imported\r\nBEFORE tensorflow, both 'jpg' and 'png' files work.", "proba": 0.00022386950149666518} {"commit": "cd7690b894ac628431a894186126942779423044", "message": "improve w command\n", "proba": 1.2386262824293226e-05} {"commit": "523c8cce881339f1ef34b6da94b5b839f103480b", "message": "Fixed pylint errors\n", "proba": 2.1796853388877935e-07} {"commit": "949183847e67393d8c57e55029bee968b625e9ec", "message": "Add grafting to SM3, when the beta2 < 1.0, so there is natural layerwise decay.\n\nPiperOrigin-RevId: 361239185\n", "proba": 1.3752825225310517e-06} {"commit": "cca87ac53813dcfaab1cb6f4c11030ae986851c5", "message": "Add view to update user\n", "proba": 3.427913100040314e-07} {"commit": "f8f8244e82734aefa85725e38854da1b0d73ace2", "message": "Simplify and speed up EUI.ei\n", "proba": 1.0068995379697299e-06} {"commit": "af427e45725cb9d74a6163bfd1a254533df0d485", "message": "Removed unused functions\n", "proba": 1.0671918744264985e-06} {"commit": "990a30a9cbe6d85dc97001f3e80c8ba64fbf256a", "message": "Simplified Bmx6Parser\n", "proba": 1.7625269492782536e-06} {"commit": "5d8e4c781589f99ffbf3e1da296868f74a8efffb", "message": "[schema] Cleanup\n", "proba": 1.9648498437163653e-06} {"commit": "919fc97dc03030bb3dfc4bd07df6aa50b1e4900c", "message": "added resize check\n", "proba": 6.712876370329468e-07} {"commit": "6fda553e8f852b70c1424027557aec0315504e6d", "message": "Extra logging\n", "proba": 2.3022329287414323e-07} {"commit": "6f56d49b13085a32c89b401166de6a2579a8df12", "message": "doc update\n", "proba": 3.261732501869119e-07} {"commit": "a8afbef08a19aa10b08fe60a54394cc9562aa805", "message": "Added stats files as outputs for FreeSurferSource\n", "proba": 1.6044245398916246e-07} {"commit": "d17b57def6cf1f1d3ed6d72db01c60ef279202b3", "message": "Output buffer does not join all output.", "proba": 5.109347966936184e-07} {"commit": "8ec8f19e70141e3c51acb068c2b7480d577d421f", "message": "remove formfeed characters that were breaking sphinx\n", "proba": 1.839112997004122e-06} {"commit": "39e8dcbd09aa95ed90bda5c7970695be64a933b8", "message": "applied 2to3\n", "proba": 1.766568971106608e-06} {"commit": "39b66d4856ab249a20901e5941172bb0127367e5", "message": "[hbase] Truncate HBase API exceptions in popup up to first newline.\n", "proba": 1.030524146017342e-07} {"commit": "25c907121e905150e8d49d93a979e0c556e14786", "message": "Refactored to make it easier to get all project/card data\n", "proba": 1.5603382053086534e-07} {"commit": "205e65ed2336c22cf7d6f9dc218e8fb843b1ce0b", "message": "added detail view\n", "proba": 1.2342395905307058e-07} {"commit": "b0ec44a651d438b141c9fc2509c53377c9bfa956", "message": "Add new cognito resources per 2019-10-03 update\n\nAdds UserPoolDomain, UserPoolIdentityProvider,\nUserPoolRiskConfigurationAttachment, and UserPoolUICustomizationAttachment\n", "proba": 1.18653787239964e-07} {"commit": "2f69d2266ecf6b1d8824ce8c07155795c846b25e", "message": "add some documentation of the arguments to initialize NeuralNet\n", "proba": 4.1179112031386467e-07} {"commit": "46dd4c1c2e3fdf96676c3d02ad197b7cecff6bc3", "message": "v0.82\n", "proba": 3.3631067708483897e-06} {"commit": "028288b405d35b31eca7e430f05a5ccf14f96e4c", "message": "Update Result Reporter doc to describe how to use it, since it wasn't clear why it was not visible.", "proba": 1.033512191384034e-07} {"commit": "5709bd5b98eb09dafc64e255890136002114b25e", "message": "[FIX] pos_cache: use base64 for attachment content\n\nan ir.attachment expects base64 content\nCloses #13878\n", "proba": 1.7716276090595784e-07} {"commit": "f95fbd305d372e2cd3c6cfbe787b486d34151ed9", "message": "combined shared code from process_git_configs and process_runway_config into one function\n", "proba": 2.420354405785474e-07} {"commit": "e94ceba5dcac11fe0039103683d67ec9d403d0fd", "message": "[FIX] stock: put in pack and unreserve\n\n- Create a product P, tracked by lot\n- Add some stock with a lot\n- Create an outgoing picking\n- Set 10 units of P\n- Set 2 done, Put in Pack\n- Unreserve\n\nAn error occurs: 'It is not possible to unreserve more products of P\nthan you have in stock.'\n\nIt happens because the `lot_id` is removed from the copied\n`stock.move.line`.\n\nCommit eac8c06e2233d93e0b1a520e makes sense for incoming pickings, but\nnot for internal or outgoing transfers.\n\nopw-2288208\n\ncloses odoo/odoo#54354\n\nX-original-commit: ed738fb56ffe84f3af08b84e429db916a5e560b6\nSigned-off-by: Nicolas Martinelli (nim) <771435c469f83f6aa9c405ac5e1ed06314a94f2d@odoo.com>\n", "proba": 1.5624031220795587e-05} {"commit": "f3c02f893cb0be0cfed83582f55134244320fc9c", "message": "add span elements for buttons and make css classes configurable\n", "proba": 2.1408210670870176e-07} {"commit": "ed8fc8f52b3abe3816da2ed0d0a70d86e963e0ef", "message": "[FIX] stock: planned transfer\n\n- Create a product A tracked by lot\n- From the Dashboard, create a 'Planned Transfer'\n- Add product A, any quantity\n- Click on \"Mark as TODO\"\n\nIt's now possible to edit the serial numbers, but it's impossible to set\nany quantity in the move lines.\n\nThis is due to the remaining context key `planned_picking` which makes\n`is_initial_demand_editable = True`. In this case, `qty_done` is\nread-only in the view `view_stock_move_line_operation_tree`.\n\nAs a workaround, `action_confirm` returns an action and set the context\naccordingly.\n\nopw-785332\n", "proba": 0.00012046431947965175} {"commit": "ec87381198164922f2c611d22f37db845b97ddba", "message": "Fix 500 when notifications are off.\n\ngit-svn-id: 81e381228600e5752b80483efd2b45b26c451ea2@6740 e27351fd-9f3e-4f54-a53b-843176b1656c\n", "proba": 0.0038545907009392977} {"commit": "9920cd6ac8b93e6d99c4512fdc063a529b8a8c48", "message": "dead code\n", "proba": 0.0004438467149157077} {"commit": "5d9dc08415a3413b4cf575c1e1dffdee77f49e23", "message": "added 'prepend' to 'register', clarified code\n", "proba": 7.297070965250896e-07} {"commit": "3c7093aa6e33fa21f06a90383e13c1fc2ebdde2a", "message": "[imp] synch with client lib\n\nbzr revid: nicolas.vanhoren@openerp.com-20110929102832-j3sdi29poe48vq2o", "proba": 1.7260533979879256e-07} {"commit": "c4b08f18cd17d69718abef61feeb9b0ee45c07e1", "message": "more cleanup\n", "proba": 1.3725896508276492e-07} {"commit": "dd3c58fcf0cc04031f993884d80b9a618bb69211", "message": "Revise stylesheet handling.\n\nReplace simple `styles()` function with a more convenient style handler.\n", "proba": 1.82420606620326e-07} {"commit": "be0ee19e9ba1c78f1c185e893373cba71c7c0a66", "message": "Added Update action\n", "proba": 2.158025438347977e-07} {"commit": "cb37a5f8cfecd928a008b9b4a259b1197021e543", "message": "ARELLE-281: calculations inconsistency message hash codes\n(available in xml logger output), changed to use sha256\nhash function to minimize possiblity of collisions\n", "proba": 1.3002173204768042e-07} {"commit": "f7e16c6997c76bd77c06ea0284a784e2ef029a5c", "message": "add sample_stats for pystan\n", "proba": 3.1566315783493337e-07} {"commit": "992510b0920c0607e0f49370ad07fdbc8558e182", "message": "dont aggregate archive date\n", "proba": 5.333962235454237e-06} {"commit": "4bfd69ce18d850ed84ab6ad8104ac68c865b7c36", "message": "add get_query() to Result and ManyResult\n\ngit-svn-id: aedca7c24271bf95daecff2dc63c19db509083c7@817 14287918-b64d-0410-abb6-a92efa0c2026\n", "proba": 3.4713486911641667e-06} {"commit": "8f2e3042b6953c7e9ac43bf2237a5be228cdfd5b", "message": "Bumps version to 0.4\n", "proba": 5.860493956788559e-07} {"commit": "a10aa4a26215ffc915af322d8ca9783281f9e9ed", "message": "Identify FirefoxOS tablets as tablets.\n", "proba": 0.007610934786498547} {"commit": "b20a27111ff53847bbaac1e8fe45fb46acb630f4", "message": "Allow explicit separate port specification.\n", "proba": 1.518792345223119e-07} {"commit": "b21d742db60c17006efdf9ba0614bcd55f13561d", "message": "yay for try/except pattern\n", "proba": 1.905072082308834e-07} {"commit": "5a3c7cdbd8a804f63f3fcb9e34de6d0397c5caf1", "message": "Address problem in branch switch code\n", "proba": 4.152960002556938e-07} {"commit": "d6c15b1eb3d8a3ff87e43d83c5c70aae4d91c02e", "message": "Small reference\n", "proba": 2.0515186349712167e-07} {"commit": "1c55217b5004c3859cd2099e19bd308df3ab9dcb", "message": "Add support to serializing NaN integers (pandas 0.24+ - https://pandas-dev.github.io/pandas-blog/pandas-extension-arrays.html)\n", "proba": 1.4969150470278692e-06} {"commit": "aaf32389a4b374851c9f3709a17e4e1b74f9896f", "message": "Make all python3 floating point radius-related constants explicitly floating point. (#919)\n\n", "proba": 2.0304738427512348e-05} {"commit": "b24650c0cc156ceb5ef5791f1647d4d37a529920", "message": "Show map_index in states-for-dag-run (#23030)\n\n", "proba": 1.097577495556834e-07} {"commit": "8354244731e95096773d75934bc125f6e7cd9d7c", "message": "scaffolding for user api integration\n", "proba": 3.283178955371113e-07} {"commit": "d40de41886fafd30e96234641ab490324216471f", "message": "add text to british gut\n", "proba": 0.999998927116394} {"commit": "5fcbd0c91ab26d36e3671ef306c674f3acf67d10", "message": "packages.py: simplify __init__() by using dict.get() with default values\n", "proba": 6.580001809197711e-06} {"commit": "6a83e9fdbf4db77b13a09e949b653c0ee38b79ed", "message": "fixed a bug in version_creator.get_logged_in_user()\n", "proba": 4.337748862326407e-07} {"commit": "f9432506c44142681298166520c322b4a1b23dcc", "message": "trying to fix version_creator.MainDialog.restore_ui()\n", "proba": 1.8055860095955722e-07} {"commit": "014d6d17d4f8b79cb17043dd255feec1f09c7df0", "message": "Working CODA implementation & smoothing filters now work on multi-dimensional arrays.\n", "proba": 9.939417111581861e-08} {"commit": "3da44c47750d096b9cf001f81b9c30b53a09484a", "message": "Initial support for join_funcs inluding skycoord_join\n", "proba": 5.025354425924888e-07} {"commit": "c52f1a94f697e03675d79594240ea86c810a978f", "message": "add warnings about moving exceptions\n", "proba": 4.544226896996406e-07} {"commit": "4d73dd7683e33d63f42603fd33e6859fafe890a4", "message": "preserve id odrer in StarList.renumber\n", "proba": 1.5816046925465344e-06} {"commit": "69d12fe591dd9973186aa3b1bcfa667b296c21c7", "message": "Update dependency io_opencensus_cpp\n\nTo version afe0460f92fb78e6d6cf8c8a30ced9bc5e2e57d3.\n\nPiperOrigin-RevId: 352090835\nChange-Id: Ie63544b1acbf3d569ba50dfa324d99aa0b1c1b0c\n", "proba": 2.0434579710126854e-05} {"commit": "8d282889f6c60ee46bd2b0c5c855a118b0f30201", "message": "Bump version to 1.3+dev\n", "proba": 1.8730217732354504e-07} {"commit": "f74aa1c66c78e0a9b2cbeda9c51cb5832f44f7c9", "message": "[Bitbucket] Clear trailing slash in paged call of next url. (#803)\n\n", "proba": 1.2431917184585473e-07} {"commit": "7b4fcb56c512b2f6383429195042154e6fe2c0d0", "message": "improvement: when array_equal true for the indeces then align_to and merge are skipping the integration\n", "proba": 8.658934120830963e-07} {"commit": "dac33cde5ba1863317be83e1a0b7230bca7cfb49", "message": "Fix a faulty assertion in autoBisect for tinderbox js shells.\n", "proba": 3.170135016716813e-07} {"commit": "b3947f2ff6eafe22f04bfe026a0d3af0570c4264", "message": "Fixing non-deterministic dict. failure in extra_types_test.\n\nFailure occurs when comparing encoded strings via json.dumps\nand apitools.base.py.encoding.MessageToJson.\n\nThe MessageToJson function has non-deterministic results, as\ndoes json.dumps.\n", "proba": 1.5909468856989406e-05} {"commit": "b438322c3121e86729a1d85cc851fa4cc91e8fd2", "message": "Adding basic database code.\n", "proba": 2.359163033816003e-07} {"commit": "cf1ed69d412d371d05fe19e7b32fb88b813cf805", "message": ":fix: type in joinpoint UTs\n", "proba": 3.3058003623409604e-07} {"commit": "548674c75f522b0ac3a40f7edb3bf86e47659c1a", "message": "Added error handling in case wrong peptide table is used when running bestpeptide on prottable\n", "proba": 1.7156945375518262e-07} {"commit": "11f22752a90d93575f1e8f9988bc45444b731857", "message": "feat: Added handling for deleting a shift.\n", "proba": 1.0542341755126472e-07} {"commit": "6918c855454f126b7ff7564d52fcc022e0a8d1a5", "message": "implemented missing methods\n", "proba": 1.2746941138175316e-05} {"commit": "d3be8e179a9703445962a989587ce724ab5cb8a1", "message": "Not mad. Just disappointed. #DeMorgan\n", "proba": 3.0416138088185107e-06} {"commit": "07fe4ceaaebf61d4f5fa90deb1b0890ed5beb8e1", "message": "Fixed #145 -- Associate user OpenID to their account when signing up. Thanks dhahler for the patch.\n\ngit-svn-id: 51ba99f60490c2ee9ba726ccda75a38950f5105d@1416 45601e1e-1555-4799-bd40-45c8c71eef50\n", "proba": 3.103696997186489e-07} {"commit": "8d986134f09192207eb158122c8767ac571483f8", "message": "Rename filters to preschools and primaryschools. Fixes #96\n", "proba": 3.3298539392490056e-07} {"commit": "eae0f904b6f0c927c8130c6cb6c4daa351fe1ea5", "message": "create new FB association if original account is not active\n", "proba": 7.336516887335165e-07} {"commit": "f442f97b0bf89d3af64a2c55f17b58ced9c65030", "message": "fixing #1073\n", "proba": 6.429395398299675e-07} {"commit": "3a6c96508e962b0e5732b34b267f52b8c516a32b", "message": "slots_allocation field removed from excluded fields.\n\nThis field does not even belong to GCIProgram model.\n", "proba": 1.0686120077707528e-07} {"commit": "eedf4bc1dc99570f74e3a281e6ad580e4f64217a", "message": "Add myself to authors on this file, and allow my whitespace cleanup hook to cleanup whitespace.\n\nPatch by: Augie Fackler\n", "proba": 2.0507400222413708e-07} {"commit": "7c2bfb9302af3bbee578a7b7fb4a4e2e61ef79f5", "message": "update streaming for urlRewrite class (for EIOPA 1.5.2(b)(c) )\n", "proba": 4.7331815267170896e-07} {"commit": "467e6379752b7390c9f71dc15439997025573d63", "message": "Update import: neutron.i18n -> neutron._i18n\n\nThis was coming for a while and finally got dropped in Neutron\nas of f35c4f72e8991045c88212129f4e62a64f657b0d.\n\nChange-Id: I8e1f51da171ed0cb27c3f5059c7fc0b61a281f17\n", "proba": 1.4503367310680915e-05} {"commit": "4d5a7e0c7b70cdca378391ddae1f834938071c38", "message": "Add regression tests for biweight_location\n", "proba": 4.6336018044712546e-07} {"commit": "fadb51d5fc7beb791e124148be88d79c5aa906b1", "message": "pimpy back to no prefix\n", "proba": 0.00019670392794068903} {"commit": "1afbba5cd8b828894b9909334cdc6dd5176eb677", "message": "Add test case to for copy=True / False\n", "proba": 0.9974395036697388} {"commit": "30bab1f63fc67b3bd4dcfce512d13d5cd68584c3", "message": "Avoid circular imports", "proba": 8.895999599189963e-06} {"commit": "2ab6af2eb94af314c2224da11d6486456f450fcb", "message": "suppress some tests on old astropy\n", "proba": 4.920448554912582e-05} {"commit": "79feb99fbca5e6aacf222442f5df381a0b116151", "message": "BUG: Fixup bench for deprecation (#27207)\n\n", "proba": 1.0599016775358905e-07} {"commit": "2400a981ee274b4e83bf72e505951306399a00a6", "message": "Typo fix in some descriptions\n", "proba": 1.4213533177098725e-06} {"commit": "18d19db5e8fb4c76e1bb7397b06eb1dad1e44b88", "message": "Attach trim caches to sample GET response\n\n", "proba": 1.4363203604261798e-07} {"commit": "33c1b96f52d6ffc2f0b07532cc187221f12af131", "message": "Add manage_users to PERMISSIONS\n\n", "proba": 3.074422238569241e-06} {"commit": "499bbb3df244664ab3cb5b381bc115e77614cfdf", "message": "fixes on null columns\n", "proba": 3.9702834442323365e-07} {"commit": "33c2772c94d4733248b13a51f5befc5c61f93839", "message": "Gloo: add __del__ method, which does nothing\n\nBut adds some comments on what we *could* do.\n", "proba": 1.1721384396423673e-07} {"commit": "6e84f4881bbc9fab7c3012bd24260932f0168a1a", "message": "Update to ida7 api\n", "proba": 1.81042423719191e-07} {"commit": "9c1c132ccd42844fe37dca960ec984967dc817b6", "message": "vmlogging: fix logger name (to provide hierarchy)\n\nSigned-off-by: Lucian Adrian Grijincu <061bcbb70d9706f9ca878cd2ae17df952b86aafa@gmail.com>\n", "proba": 3.7539589925472683e-07} {"commit": "705d5a5f993fbbc7e596654af95f11a73e79eeea", "message": "protect ajax views by redirecting on non-ajax\n", "proba": 3.3195175319633563e-07} {"commit": "e11cf6bbb159d1dbd968b4612854060655b502cd", "message": "more efficient queries using exists()\n", "proba": 5.34077116753906e-07} {"commit": "a2eb6e96e2a5e3bbba4cb26f786f792177eac078", "message": "commands/process: Fix initialization of ProcessContext ordering\n\nEnsure that that ProcessContext is initialized before attempting to\ninitialize any of the output processors.\n", "proba": 2.2196847737632197e-07} {"commit": "0ec8427d054a2b2e901f35d69fee6ae1953618da", "message": "fw/output: Implement retriving \"augmentations\" for `JobDatabaseOutput`s\n\nEnable retriving augmentations on a per job basis when using a Postgres\ndatabase backend.\n", "proba": 1.1362836005446297e-07} {"commit": "83f826d6fefa63b6ec75def7bbbc8e2cbabdb493", "message": "utils/serializser: Re-fix support for YAML anchors\n\nInclude missing `flatten_mapping` call in our implementation of\n`construct_mapping`. This is performed by a subclass in the default\nimplementation which was missing in our previous fix.\n", "proba": 1.1135484356827874e-07} {"commit": "aef83426ee8f99f52653c1dd1d473c5e41e2d3da", "message": "add trusted_strings\n", "proba": 1.2346837138466071e-05} {"commit": "981092b86a1b530576a5734edd48b9e30422fe5b", "message": "load config from env var too\n", "proba": 2.423091416403622e-07} {"commit": "e1e1920add39ee1e4f341960ea725c9e6aaa46dc", "message": "Fix add_map to work with python 3\n", "proba": 8.505006121595216e-07} {"commit": "5476fbece6c0f49fd0d556647293dc484cf968a2", "message": "Added test for `get_overscan_region`\n", "proba": 1.1661398957585334e-07} {"commit": "71619b088ba19a93c7844493b73f6a28f1c1c678", "message": "fixed test\n", "proba": 8.067889893936808e-07} {"commit": "0e925b6b87da37e41150b5c05eb9bb077c3cb6a4", "message": "answer string1.py\n", "proba": 0.9999994039535522} {"commit": "53caa4aa9a6384329d82888e3f7160f8c7b89773", "message": "delete mutation\n", "proba": 3.832517450064188e-06} {"commit": "3cad002f4d194086799a9ff0a025486ac95be642", "message": "PUBDEV-4041: Fixed broken Py docstring for Stacked Ensemble\n", "proba": 1.2786806280473684e-07} {"commit": "4256b0e11b3420a71b9f634b8b666198ffde2d2d", "message": "fix assignment of 1bit signals with different forceVector flag", "proba": 4.0530366618440894e-07} {"commit": "f007c1e7a81520b9b996638c1080812442e4c6cb", "message": "fix: drivers can be also PortItems", "proba": 5.486932082021667e-07} {"commit": "cd53201ba18eb4e154a3ede83003084036487f9f", "message": "disable the normal happenings events, use only hhlevents\n", "proba": 3.5044280366491876e-07} {"commit": "cd1cfd7e8ee20dccd6273983df0c881b1bb3bc50", "message": "New device to support option MY in somfy (#15272)\n\nNew device to support option MY in somfy", "proba": 1.594074774402543e-07} {"commit": "4745e58a925cb6b1fe7dfaed4bef00e66f6f1c7f", "message": "Remove long-term statistics from IQVIA forecast sensor (#57687)\n\n", "proba": 1.4684884774851525e-07} {"commit": "9d5c7ceecdf9f1cd5ebfe44d0a3b9115d8a9393d", "message": "update header\n", "proba": 5.905422426621953e-07} {"commit": "a08ac8597169c101a751a8a7c541985ce1c25fea", "message": "Display the error instead of the traceback (notify.slack) (#3079)\n\n* Display the error instead of the traceback\r\n\r\n* Remove name for check\r\n", "proba": 2.695584726097877e-06} {"commit": "f3edec11919246d1826552f41f495299f8e5666b", "message": "Fix ID3 tagging in TTS (#40740)\n\n", "proba": 2.5595923602850235e-07} {"commit": "8682f21fc5797fdf9951863110f042e510d02333", "message": "Fix TTS options. #8375 (#8376)\n\n", "proba": 0.0005125871393829584} {"commit": "8bdee9cb1c5b3160fd92e490b97e4e536e015893", "message": "Simplify whois value_fn (#65265)\n\n", "proba": 4.314242323744111e-05} {"commit": "a61181b10cca2f6517dac74f0f13465f1811afec", "message": "Fixed brightness reducing after each light change (#22606)\n\nself._brightness max is 255 and hsv brightness max is 100. Assigning 255 based brightness value directly with 100 based hsv reduces brightness eventually to zero.", "proba": 1.2967858253887243e-07} {"commit": "3db8d9ede5bea8da9daa55e52032813b49d89e95", "message": "Require admin for new node status WS API command (#51863)\n\n", "proba": 1.0821058538112993e-07} {"commit": "4ae0b2578295d75128296bfadba3f79b3ece73f6", "message": "[LINT] hr_attendance_computation\n", "proba": 5.776887519459706e-06} {"commit": "6867a8fbd871e11c3e212da7485e915f98e95ad8", "message": "Updated the db_migrator.py script by using the FORSETI_DB_NAME environment variable for the Forseti database name. This is set via Terraform and the startup script. Will have some additional PRs for the GKE changes.\n", "proba": 1.0152945861818807e-07} {"commit": "a205d25619d70bd0dc0ad5f0b275d6228f94a15a", "message": "Add setting to avoid memory leak, and add comment about number of workers (#256)\n\n\r\n", "proba": 1.1579292191754575e-07} {"commit": "648699916a25b136b27bdff439f9733a1363e58d", "message": "[1D] Create initial guess before showSolution()\n\ngit-svn-id: e76dbe14710aecee1ad27675521492cea2578c83@1934 02a645c2-efd0-11dd-984d-ab748d24aa7e\n", "proba": 2.2283265934675e-06} {"commit": "cde899ba4fad3925533f27f4b3e4b845a830d86b", "message": "Fixed bug in taskstore reconfiguration; thanks to @marvinrodas and @tan.quach for helping me discover the bug.\n", "proba": 9.888400143154286e-08} {"commit": "004316bc4bf38ee7d87692bbbe780c6bc2d7203e", "message": "style tweak\n\nsuggested by @kwmsmith\n", "proba": 1.295956337798998e-07} {"commit": "e14c2151ed4cdad38eb5b4812e70be4c92126766", "message": "Update try-except.py", "proba": 5.481963398779044e-07} {"commit": "fa94babed02990310721559d2b6c03661bcb9908", "message": "Better queue sizing and error handling\n", "proba": 1.7862328149931272e-07} {"commit": "8319fd5aebe91c8da37442aa982682ba85401f94", "message": "Incorrect Example updated (#10848)\n\nIn line 105, error was thrown :\r\nBokehUserWarning: ColumnDataSource's columns must be of the same length. \r\nchanged np.ndarray to np.array", "proba": 1.2738264558720402e-05} {"commit": "615925fedc61a645a8381e23c99dbefeba5789c1", "message": "Added a get_related_objects method to find objects that refer to this object.\n", "proba": 1.0365049973870555e-07} {"commit": "8b39a94f9f61911cf6613edd41a07d9e1ed0f9ec", "message": "python3 compatability for range() in slow funcs\n\nall uses of range in the slow functions now look fine as either lists or\nrange objects (though the range(ndim)[axis] calls could be done more\ndirectly...)\n", "proba": 1.0914981629639442e-07} {"commit": "2c9ef4b5ea05793dfe9e525b3c7cfecb4e148dd3", "message": "fixed typo if not dev\n", "proba": 1.1342680181769538e-06} {"commit": "5cf7b30875699f0baf5af8bf43d7e82f85e6485a", "message": "Reworked view to not process annotations on demand.\n", "proba": 1.0513947756862763e-07} {"commit": "f155c0d084398ecc25178313187d01503f74924a", "message": "cleaning up docstrings\n\ngit-svn-id: 47ea1648b537354ea000dbdc81f6c548b4e87acd@233 09200d28-7f98-11dd-ad27-0f66e57d2035\n", "proba": 5.679969763150439e-05} {"commit": "f7d25adbde55fc1e66587fabfe27358cc2b8652c", "message": "warnings instead of raise UserWarning\n", "proba": 1.189604404316924e-06} {"commit": "1192184b3b01fab87cdafddb57ff134cedade6f8", "message": "added some comments in budgetManager\n", "proba": 1.5259237784448487e-07} {"commit": "1f8f6fad803ef2c5f7d1e24135d2749ee99cedc2", "message": "ci: show broken builds in Slack again\n\ncommit 7ca7f4c3dcf0fa372681572ad814842e039da505 prevented the creation\nof empty test artifact directories, which resulted in Slack now showing\nbroken builds anymore. This commit fixes that.\n", "proba": 1.0857963417265637e-07} {"commit": "62576f664a9f5fbfe3271081c16e335213aa9f1b", "message": "fixing crash in custombutton do to change in API\n", "proba": 6.303217787717585e-07} {"commit": "555cf2b048a8887431c445a1aaf66782a0565489", "message": "also set loglevel on logger\n", "proba": 3.7719522083534684e-07} {"commit": "0ee1238eca8263db42f1fcf94f20daa9c514e066", "message": "Fixing the slug save issue\n", "proba": 1.5145052429943462e-06} {"commit": "c514d51690f9e882b0ce54e1d9df375378fc4539", "message": "Don't blow up if MBTA returns a 404\n", "proba": 3.1238352676155046e-05} {"commit": "5e99a9c09b002b43590c71c1d783377885f472e5", "message": "fix tests\n", "proba": 1.2553598480735673e-06} {"commit": "944b1a65f95794fd29c095d48062622c105845d5", "message": "working fit batch\n", "proba": 2.3072222177233925e-07} {"commit": "6ad8144921dfb1dc5809edd56a47f75e2c9d44b8", "message": "Destroy named OpenCV window.\n", "proba": 1.4935083925138315e-07} {"commit": "a02324ea43631081ba27adae822f69dbe17cb60f", "message": "changed link to personalkantine\n", "proba": 1.4455328312124038e-07} {"commit": "d1b7a5c2e4f0acd5d68a32913135d73855108e58", "message": "rulegen fixing bug in handling of subscope-rules\n", "proba": 1.9588182453844638e-07} {"commit": "8ecaa1024f7bfe2c8091072e2339499b44603d2f", "message": "Black reformating\n", "proba": 5.243243208497006e-07} {"commit": "42ee957716dfe5b7e2994ddd30b00cc2d7e049fe", "message": "Changes url from https to http\n", "proba": 2.4548735382268205e-06} {"commit": "0fa0ff807f745fccc1f449890ce9d8542020eb9c", "message": "Pep8ify\n", "proba": 1.8849375464924378e-06} {"commit": "23e1a951f9f67d07a761755b69102159aca7bf98", "message": "Add a ``hidden_fields`` option for the ``fields_for`` tag. Useful if you want to display some field directly (without using the tag, for example iterating some payment type choices) and yet include all fields hidden for the current step.\n", "proba": 1.2946986771567026e-07} {"commit": "fcf6b9f64afd1d2502b35cce88e62806798a912f", "message": "Add compression as a ctor kwarg for Connection\n", "proba": 9.991229035222204e-07} {"commit": "7f3d2670baf917b03bc65ed147114fa7cd06c295", "message": "Refactor CJSON writer so the Python dict is directly available\n", "proba": 1.984875979132994e-07} {"commit": "e9ed75ddf3948e5a576566f8c444da5a032767d1", "message": "support new dilla feature on Model to generate Date\n", "proba": 1.780216081215258e-07} {"commit": "fd55671b4671fd231c94e9d7cd7fbc6271749dc5", "message": "bugfox plots basic\n", "proba": 3.570664830476744e-07} {"commit": "c6bc66a0df45440056008d5826e288f0f7feba29", "message": "KeyValueStoreBackend.forget: delete(key_for_task(id)) not delete(id)\n", "proba": 0.00023656194389332086} {"commit": "c4c39c7eff16274cbd784442b478b77a84a28728", "message": "PEP8 fixes\n", "proba": 1.4330707642784546e-07} {"commit": "d9871c38b910b2c54aea9cd895cd02bd9d58b11e", "message": "Use sensible tidy defaults for dev, test and live\n", "proba": 1.435782195358115e-07} {"commit": "63cf2df17503147ce76f3cc66cfbd17f2bdfa8cb", "message": "fixing flake8 issue; remove unused import in ceph_installer.tasks\n\nSigned-off-by: Andrew Schoen <1bb641dc23c3a93cce4eee683bcf4b2bea7903a3@redhat.com>\n", "proba": 1.1894983487081845e-07} {"commit": "8ba539453641c6ea60fb11ae9f808844df2b1d71", "message": "use a streaming cursor to save memory", "proba": 9.93966068563168e-07} {"commit": "b9695c83fc8c374b71cff702c8e49c961d90a2d1", "message": "Revert to using xp.array()\n", "proba": 3.91120101994602e-06} {"commit": "731e2b3140d4c576658389b1c47a470c60945c00", "message": "Add a separate label list for the type of calculation segment\n", "proba": 2.451074578857515e-06} {"commit": "aa0215ced15aeb7c81773d9128a49122eb4ac62b", "message": "Simply use string types for asserting status\n", "proba": 2.8766032755811466e-07} {"commit": "fabfa2b3773bd03137d6cb9055663e9a0bb21838", "message": "covercp: Fixed bug when supplying port via command line. Added commandline option to serve different root. Removed admonition to subscribe covercp.start to start_thread.\n\n--HG--\nextra : convert_revision : svn%3Ae1d34091-3ce9-0310-8e96-997e60db3bd5/trunk%402259\n", "proba": 7.721066026533663e-07} {"commit": "0e696d0904cc7dc8532a966a30ea4301ccf5438e", "message": "updated documentation\n", "proba": 3.37184388854439e-07} {"commit": "87cade70b6540f532d9439b03ba9889d6271ec27", "message": "import astropy.Table\n", "proba": 2.7773037913902954e-07} {"commit": "3d47f8fbe93377680659495b62d214c06737937c", "message": "Added screenshot capture to selenium upload on exception\n", "proba": 2.604530777716718e-07} {"commit": "3e477540c44ec57b8f180640dc3459a6eb93d215", "message": "bump version to 6.4.0\n", "proba": 3.2561166563027655e-07} {"commit": "5e3bbcc1050c0d74b0e44d1740c882edc281ec53", "message": "bump version to 6.3.0\n", "proba": 3.273780464496667e-07} {"commit": "16f165dbca5e9bf75c8d9b1e561ab4a2d71abdbb", "message": "Replaced value_changed event class with .child(value_changed, ...)\n", "proba": 1.4481489074569254e-07} {"commit": "b97bc5d33055cdc37d408b82d3349beaad7239e0", "message": "fixes a race condition bug with UNIXClient that would prevent it from adding read listener on startup\n", "proba": 1.6650918155391992e-07} {"commit": "34ea371bf85aee825bd95aa5767f7eea5e5c9b0f", "message": "Re-added circuits.web ready message to BaseServer\n", "proba": 1.681590902080643e-07} {"commit": "cffe705f49790b32087deb6c973c579f6f05bb43", "message": "Ignore image_url using \"data\" scheme.\n", "proba": 1.8097716747433878e-07} {"commit": "8cfedc60f8cc219d450a8799c540a44649cd12cb", "message": "Don't crash when relocations access unmapped memory\n", "proba": 7.092414762155386e-07} {"commit": "b8bb9ede6ffd53149a9f752ac06becdefcea4dbd", "message": "Write mask out to fits\n", "proba": 1.8351903463553754e-07} {"commit": "1db7ea8bed2ccce45ae2c07b2d5f0a4ad59fc87c", "message": "Skip empty channels in high mask\n", "proba": 2.349113970012695e-07} {"commit": "cf4153b5367d82540a152d791331c85c7767cc44", "message": "no need for all that...", "proba": 2.0361515851163858e-07} {"commit": "4fb8886ce445ff46cdf428f57bb4cc635b8a4014", "message": "Reorder common options (#1418)\n\nThe ordering here affects the ordering of the display in --help,\r\nand I think this way makes more sense: verbose next to quiet, json\r\nnext to format.", "proba": 1.4195610731349007e-07} {"commit": "a10ad13f570c908147a54ed30805d9bbb62f1f38", "message": "add exception in case of tha failure of opening web browser on fab server.start command\n", "proba": 3.211069099506858e-07} {"commit": "b8006ef6ac469b3eda5d021aebde86dd952f55d4", "message": "comment out unpickle test\n", "proba": 1.4247066815187281e-07} {"commit": "11c098443c82755f0c21b4f1a5c6c2525050d373", "message": "shi mian\n", "proba": 2.738823013714864e-06} {"commit": "67f4461185d45dc89764558a9f0ccd688bc37366", "message": "Improve stdin_readable\n", "proba": 0.9821194410324097} {"commit": "0eb4fedf172dadfa7923571634bf18e29a91fc2e", "message": "Use cPyparsing on Python 2.6\n", "proba": 1.4343083876156015e-06} {"commit": "f605e53f71d397b88d32c51a4dceb234661869d6", "message": "Added setting: EMAIL_BACKEND. PEP8\n", "proba": 1.2349015378276818e-05} {"commit": "a794017279493f5ad9c3ee00782510a39d2c16a2", "message": "Fixed Cadet message command to ping leadership.\n", "proba": 1.1162278212850651e-07} {"commit": "87c13584cc4e467356991c9cb8520536f472d29a", "message": "typo fix\n\ngit-svn-id: be7fcf8b57a85a067d5bd030757d140cf5159929@1297 8402a193-bf1e-0410-a7e5-8246bfde4f7d\n", "proba": 0.0004205986624583602} {"commit": "8b5cb4b2940a5e3337fcd000f86a0589a18d211a", "message": "Compatible to flake8\n", "proba": 1.3422111067029618e-07} {"commit": "6af84861317333ee124b670341b43191fc9a6e2a", "message": "Preserve scan-varying crystal when setting space_group=\n\nFixes #847\n", "proba": 2.0491877705808292e-07} {"commit": "ae78151b4ea27b903af286a24e2084837e0aef45", "message": "[Pokemon] Made the Pokemon module use the WolframAlpha module through CommandFunctions\n", "proba": 2.6012145326603786e-07} {"commit": "b613bb753f1b50585170dfe99ce9adb5d5c50945", "message": "fix weird window.window() issue (resolved by not inheriting from both `WindowCommand` and `TextCommand`)\n", "proba": 2.6156550347877783e-07} {"commit": "ab11d3f94c4f2c3b062fb1787810591011e96c07", "message": "Update script\n", "proba": 9.230458317688317e-07} {"commit": "5a82214d1aec898b25d2509a0c63d58366608b4e", "message": "Fix to allow verbose flag to be read correctly from default model files.\n", "proba": 1.0440368214403861e-07} {"commit": "fde390b4fa16ea5929124025aa71e462c30c5b1a", "message": "Document Figure\n", "proba": 8.399733246733376e-07} {"commit": "9bc4630aa2b839059cc3b4d8cd95a9bb436de6d6", "message": "update with reconfigure vm cpu and mem\n", "proba": 1.5140172138217167e-07} {"commit": "13810373c12bb67cf172a54dc25d41685cf30f1e", "message": "Create client along with victim\n", "proba": 1.2072926836026454e-07} {"commit": "fb097fcceba69828ebd2a34b3b8e77ce7133d4dd", "message": "Do not inline after devirt\n", "proba": 2.2936826553632272e-06} {"commit": "031b7b4755818caf461e5c173ab2edd28127a1fa", "message": "added context_id argument to context_id\n", "proba": 2.7418125227995915e-06} {"commit": "7e8bea6dd17e940d98688a8afda128b9800ffb44", "message": "[hiveserver2] Fix unpacking guid by using base64.b64decode for python3 (#2949)\n\n", "proba": 1.3935334663983667e-07} {"commit": "cc3a827ff1b064fa1ae8924dd9bd0fc044edab91", "message": "Processing.py: Fix file dict logging\n\nFix logging message related to file dict collection.\n\nFixes https://github.com/coala/coala/issues/5708\n", "proba": 2.312169584683943e-07} {"commit": "463fc176f95655bd28ba8709adbc427b814fa0d5", "message": "Add helper for recursively converting OrderedDict\n", "proba": 5.243003329269413e-07} {"commit": "15381a6a3ac0c7ca824907d3a420652b6c797fa9", "message": "Set default subject type to 600: other.\n", "proba": 1.5664690522498859e-07} {"commit": "349bdda19d22ef22f729c9675878b40ff4f1d20a", "message": "Remove unnecessarily overriden save method for ImageRevision too\n", "proba": 1.2746603772484377e-07} {"commit": "c7ae42bb7a6cab9f360cdc4915c5226807880949", "message": "fix up runjo\n", "proba": 6.216089786903467e-06} {"commit": "4a0d4ea695d716b8d9600d791b5e5e942fff362a", "message": "Coding standards.\n", "proba": 6.888956818329461e-07} {"commit": "5bf0844ae75674eee3acf4d5d48e2c34a57cec12", "message": "Add revoke all active user sessions to endpoint /user\n", "proba": 3.9205568214129016e-07} {"commit": "9eed843e71160796c3df090fffb20556dd49e248", "message": "New version uploaded to PYPY\n", "proba": 1.3600507031696907e-07} {"commit": "fa9513f36943c5e4c0db27a463d1333b4761a7bc", "message": "update profiling for preloop and analysis as well\n", "proba": 1.1171500347018082e-07} {"commit": "4585081d061830906156192e4ca7db55b4135e44", "message": "fix pin charset\n", "proba": 1.0431533155497164e-05} {"commit": "12b8626a617fd2a24e4ef733a781244831897557", "message": "Version 1.11.1\n", "proba": 3.105387804680504e-07} {"commit": "e49a7f7537c483e140632881f49ead856522290b", "message": "Fix units counting\n", "proba": 0.0001949541619978845} {"commit": "14f164050d1dfcb2fae099a668f968dbd1912732", "message": "no need to handle devnull ourselves since python3.3\n\nhttps://docs.python.org/3/library/subprocess.html#subprocess.DEVNULL\n", "proba": 2.4497799131495412e-06} {"commit": "9699db3ef4a1fb739ad709b15d6d0ad2c620fc5b", "message": "Allow specifying index to export in dials.export\n\nThis lets you e.g. export a single image from a multi-image format\n\nFor #589", "proba": 1.3780025653886696e-07} {"commit": "433a36d6b91569fc543885311ef4ff64cf1a6c00", "message": "Adding flags to terminate stills_process at different points of the processing pipeline. The points are find_spots, index and integrate. Will be useful for doing MPI based spotfinding on a multi-image file like XTC and H5 files\n", "proba": 2.3366776247257803e-07} {"commit": "8d22f012074252fc8d796eb7735345a07e0c76ea", "message": "Add docstrings to client.py\n", "proba": 1.204205659632862e-06} {"commit": "41e7eab5f88fc7583d156900a0235da7f4748396", "message": "Add explanatory comments for auth_role expected values\n", "proba": 2.2202817717698053e-07} {"commit": "3dab86a68b9b380e30f733a9a7747e445d8c0f46", "message": "Fixed typo\n", "proba": 1.2940510032422026e-06} {"commit": "96c11b29bda6dab710925827f78445d92beaa5df", "message": "Fixed #10215 -- Ensured that there is parity between enter and leave transaction calls in loaddata when commit=False. The test case for this is the fixtures_regress unittests under MyISAM, which were failing previous to this fix. Thanks to MockSoul for the report.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@13978 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.3421513358480297e-06} {"commit": "9e7723f851dc6e4d5eea96ab808e1a4cdd4eabd7", "message": "Refactor loaddata for readability.\n\nThanks Claude Paroz and Daniel Moisset for review and feedback.\n", "proba": 9.731029138038139e-08} {"commit": "67b6f8aa140da111fa39d40bcb4dd6ce46fa4ecf", "message": "Cleaned out unused imports\n", "proba": 2.81594907391991e-07} {"commit": "1dd54c94409b24720c53f03e4315d96a392d1f7e", "message": "Minor fixes to versions of comments.\n", "proba": 1.0621500479146562e-07} {"commit": "e4f2476ee58812ceec04889097d5eb5d6a1251b0", "message": "while cleaning rsync backups, make sure the current symlink is valid\n", "proba": 3.4878138421845506e-07} {"commit": "68fea12bbbf10bcd10dfa7f14f3d580823477bf0", "message": "Fix for zero value in Modbus tag\n", "proba": 6.591078545170603e-07} {"commit": "7136daa5687f2a5bdcbba2cb25457f56fdf85d59", "message": "fix: check for open PR before attemping single PR fallback with AUTOSYNTH_MULTIPLE_PRS (#562)\n\nFixes #545", "proba": 1.5786210383339494e-07} {"commit": "8f5661305bd84f3ccb11ea32da439f85a70b081e", "message": "[pre-commit.ci] auto fixes from pre-commit.com hooks\n\nfor more information, see https://pre-commit.ci\n", "proba": 1.2907548807561398e-07} {"commit": "b73f004f5f7953cc10f2cc2863233dd3bb364faa", "message": "changed log stuff\n", "proba": 9.278682000513072e-07} {"commit": "e1429178dc68a470c9a8349f8dbf0715f5acf8d0", "message": "imagefactory: Point Vagrant rsync at a writable directory\n\nThis way users can use Vagrant's built in rsync support.\n", "proba": 1.0949971596119212e-07} {"commit": "93cdd85169b76cefb89bf35f64c7c247362c8505", "message": "Regression for #4: Broke regular expression for OS X.\n", "proba": 1.3991784442168864e-07} {"commit": "ff3b11f681c06fb6451b8c97033bcdbc48da1a97", "message": "remove last unused botpy import\n", "proba": 5.015023134546936e-07} {"commit": "e39a4b1369a7a307a73284757ef58505a81dff44", "message": "Fix working directory in extract_dataset tests (#847)\n\n", "proba": 1.1908956309980567e-07} {"commit": "094b8e4953bbf42a33a382a2423a4898e6cacef5", "message": "Rename start_task to queue_task\n", "proba": 0.0022962060756981373} {"commit": "2df719e8418b6cd4f090cc02e0075d97278bff13", "message": "for unit tests, the main here is not a qgl2main. The new model is you take the output of pyqgl2.main() -o and make it into Fooqgl1 and import that here\n", "proba": 3.368168563611107e-06} {"commit": "75dce6ce2a963e9a79424d48cb9dd7d8eb829b9c", "message": "Fixed powerstrip state update\n", "proba": 2.0615701146198262e-07} {"commit": "bad397188872e8bcf2acb9b16968ef33d0348100", "message": "\u66f4\u65b0 API Groups, \u5f15\u7528 get_object_or_404 \u4f86\u6e1b\u5c11\u91cd\u8907\u7684\u4f8b\u5916\u6aa2\u67e5\uff0c\u6539\u7528\u81ea\u5b9a\u7fa9\u7684 api/tracking \u4f86\u53d6\u4ee3 DRF-Tracking\n", "proba": 2.2725701853687497e-07} {"commit": "19989171cad7c2d9b9e0e802d980a7b7c8c8ff95", "message": "change directed graph detection in generate_dendrogram (#7)\n\nUpdate condition on directed graph\r\n\r\nThe condition that the graph is a nx.Graph is too restrictive. It does\r\nnot allow to process a graph object that inherits from the nx.Graph\r\nclass. It can be replaced by a simple test to check if the graph is\r\ndirected.", "proba": 4.645264937153115e-07} {"commit": "1f0a02ac2835c17912eabed4778a5197898e0db4", "message": "Better url building with urlsparse/urlunsplit\n\nThe feeds now contruct their URLs from urllib.parse.urlunsplit, which\nconstructs URLs from the types of len-six tuples made by urlparse.\nThis could be better since scheme, domain and path are more explicitly\nspecific.\n\nUnder this scheme, the base forum URL should either provide a URL or at\nleast `//domain.tld` to be scheme agnostic. Providing a base url like\n`community.lsst.org` to the forward_discourse script will look like the\nURL path, not domain, is `community.lsst.org`.\n", "proba": 2.2552676171017083e-07} {"commit": "2f93faa9d1d28092c0e5cc9ef33c34f4bd2250e8", "message": "Chenged image interpolation method to higher quality (bicubic)\n", "proba": 1.0927271887339884e-07} {"commit": "0c47604bf389f2dd434266156cf9f22a1dbd4ddb", "message": "Checking that in the absence of a mask, we're getting the same thing as before.\n\nAt least that should be the case...\n", "proba": 1.1777870412288394e-07} {"commit": "1542abda9959e89291569e06718a9e8095bbe64f", "message": "Remove unused symbol.\n\n--HG--\nextra : convert_revision : svn%3Aa2f44796-8cc0-49ac-b43f-6a96d556d52d/trunk%40517\n", "proba": 1.6279396959362202e-06} {"commit": "7b5bedaee4faa0863e7faef7a1c9de35aadd4f21", "message": "add tests for SVN.get_repo_root()\n", "proba": 1.6786106016297708e-07} {"commit": "61ab6b99cc381a286ccfcc354d202d16ac43b69a", "message": "don't fail an assertion on conflicting redirects, raise a proper error CNY-449\n", "proba": 4.907323045699741e-07} {"commit": "ad01a9b5b8f55e6bb7fa8278d9deb7666708ac97", "message": "check to make sure we haven't unset callback before calling\n\n", "proba": 1.6948671088812262e-07} {"commit": "e9c30fa393ae0e0d9184e9979fc796df4247aabf", "message": "Un-nest _writeNestedFile\n", "proba": 5.143899670656538e-07} {"commit": "483164a5ed518d95014b75e99f6adefdafaff318", "message": "Refactor test_gpdb.py for different modes (#3901)\n\n- Handle missing case for codegen mode\r\n\r\nSigned-off-by: Larry Hamel ", "proba": 1.2744585831114819e-07} {"commit": "9bff3d1f0a32fb3e9ce4665fcfd7d650cf325e00", "message": "webapp/sagews2pdf: amending a small oversight ...\n", "proba": 1.1436294045097384e-07} {"commit": "382853c01714fc666d2958e2f50d42d9b5f5d87f", "message": "Added format context option to HtmlUploadWdg\n", "proba": 3.4051089414788294e-07} {"commit": "bfc8f341295ac64f7601e5e2bb9d6f73ee671305", "message": "TACTIC 4.1:\n - Added missing function get_aux_info(my) in TableLayoutWdg.\n - Fixed the note sheets error in task details.\n", "proba": 1.0512443537891158e-07} {"commit": "8c55201ee704da915d2f519baa894e3f4a0d88dc", "message": "Fix getEarlyNonWorkshops()\n", "proba": 1.3028338230469672e-07} {"commit": "958d259e2128f2ed058174890bab763df34be8bf", "message": "configtool.py\n", "proba": 4.151825578446733e-06} {"commit": "a636f79bf55494b3bf8ec14c1b68981904f8ecfe", "message": "Change valign to top in CLI table output\n", "proba": 3.0999609634818626e-07} {"commit": "2e53c7040b4d3bd3732ec47895c08aecfe266e9f", "message": "Storage/S3: Fix copying `File` files\n", "proba": 1.105497858588933e-06} {"commit": "17ed541b02d7451803134ba9f328ab8d334f2317", "message": "change variable name\n", "proba": 7.962834206409752e-05} {"commit": "dee90869486f9c7618ac49aa27faa2ffa71f2aa3", "message": "Delete constitute.py", "proba": 1.7556604916535434e-06} {"commit": "8f4dc66c33e9f5f4b46a7afed1faacb50b8ff633", "message": "Move 'MovieResult' next to 'EpisodeResult'\n", "proba": 0.0004972549504600465} {"commit": "e87402f471586ca4e1645fd4024998e4d31af9b4", "message": "Follow-up to r20029 with style fix.\n\n* subversion/tests/cmdline/basic_tests.py\n (checkout_creates_intermediate_folders): Fix indentation.\n", "proba": 1.0557513974163157e-07} {"commit": "2e67953dabc9bccc98defa75d10624ad45c821bd", "message": "Change some nouns to verbs, because they're being used as verbs.\n(Verb+preposition compounds are nouns with no space, verbs with space.)\n\n* subversion/tests/cmdline/merge_tests.py\n (set_up_dir_replace, set_up_branch): New names for setup_dir_replace\n and setup_branch. All callers changed.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@868849 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.00021334047778509557} {"commit": "ad853594a2bbbe60e1e0f72f9760b6d32af7ec0f", "message": "Followup to r18716: Add an extra test to validate that svn merge ignores \nwhitespace when requested (-x -w option). \nUpdated copyright date to 2006.\n\n* subversion/tests/cmdline/merge_tests.py\n (merge_ignore_whitespace): New test\n (test_list): Run the new merge test.\n", "proba": 1.1940980471081275e-07} {"commit": "c7ea51716b93e2ca88bda660cb3959ea9374f26a", "message": "Correct typos in patch test for properties.\n\n* subversion/tests/cmdline/patch_tests.py\n (patch_with_properties): Fix typo in a hunk header and use the right \n revision for expected status.\n \n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@979823 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 4.2416500036779325e-06} {"commit": "5b38acbe946dedff6281d028a4e752e4edc04723", "message": "* subversion/tests/cmdline/patch_tests.py\n (patch_copy_and_move): Improve expected output.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@877294 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 1.760228769853711e-05} {"commit": "ae2c5d2c7ecc2e3ddbcb9619855faf315e4bb371", "message": "qset test cases changes\n", "proba": 4.2299572555748455e-07} {"commit": "83d24daddbca8ca81d33be493ff0e4b8d054d1c5", "message": "Refactored the clique RunTimeError to assertion\n", "proba": 8.415758202318102e-06} {"commit": "c15168512d1f85ccccbfed6ecdf29e6ececbe297", "message": "Fix linting.\n", "proba": 4.2601092786753725e-07} {"commit": "80999662874e2e56d51c9be1142584298abdf490", "message": "Revert a few changes.\n", "proba": 1.60805186055768e-07} {"commit": "737673f703e4fc15596b146ab5fc350ef557e95d", "message": "Fixed broken detection of changed xFilesFactor and added more robust support for special characters in file path, especially $ characters\n", "proba": 1.1719808412635757e-07} {"commit": "4313b168e5981633b7ed2d7d24359d9d8cc586b6", "message": "dmosorast: Integrate clause generation function into sync\n", "proba": 4.435136361280456e-06} {"commit": "a16ac7e7844b8b783dfa3d386db40745d21574b1", "message": "Telemetry / Android: don't try to get stack trace when browser is None.\n\nDue to adb flakyness, sometimes browser isn't started: don't try to get crash stack\nin that case.\n\nBUG=266331\n\nReview URL: https://chromiumcodereview.appspot.com/21058007\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@214795 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 0.00012134166900068521} {"commit": "2cde9c2b74d016a9bffe5520ebe06d3cd671ad47", "message": "Clean up obsolete ae cifar hparams, increase default batch size.\n\nPiperOrigin-RevId: 184863791\n", "proba": 1.3118470860717935e-06} {"commit": "8f05172861247b5e7692fa89b6a583f0de7f743c", "message": "internal merge of PR #1071\n\nPiperOrigin-RevId: 213322906\n", "proba": 1.3060707715339959e-07} {"commit": "879eb2d2eb8ba2022f46da488588f8cbb7083048", "message": "working\n", "proba": 1.2916959803987993e-06} {"commit": "cb8714213716aff2c38815fbe542aec82cacce9f", "message": "Fix pylint\n", "proba": 9.936720744008198e-05} {"commit": "d213f6e9eada7e760c34103d60f90f6d785c22c2", "message": "Fixed media save rule\n", "proba": 6.042906193215458e-07} {"commit": "8906c8ab19e3a5603a7b9f8bc5ca9ec48842c7dd", "message": "Explicit sort of callable regions after groupby\n\nPrevents out of order callable regions seen in edge cases\n", "proba": 1.55306224769447e-07} {"commit": "b2d17d39a657a1a088f8e94b02edfd9311bce2e8", "message": "Added provenance tracking.\n", "proba": 1.1961519419401156e-07} {"commit": "7892785b28134e351ea93eaf2db5a7ec3e6cd1cf", "message": "debugging\n", "proba": 2.4004323222470703e-06} {"commit": "5ddbdab10c435c6f6837418b16a6064afee8b9b7", "message": "Added max and min length keywords support to JSONStringField\n", "proba": 1.5264171793205605e-07} {"commit": "a26b54f40ae58454f423cb6dccbc9afdf12cca9b", "message": "Use pytest assert\n", "proba": 7.597998887831636e-07} {"commit": "0999f14f27eff71224ca0e7a904289dff5f4e604", "message": "Change sync uri to async\n\nResolves ZSTAC-9209\n\nSigned-off-by: AlanJager <7ba0221af525cfcc7adbf94f7fc6b46fa1dcb7c9@outlook.com>\n", "proba": 1.1552445045026616e-07} {"commit": "9cf37c267a72d0543548b2cbd58dc40ea9fc4dfc", "message": "test case for unescaped unit test responses\n", "proba": 3.196348643541569e-07} {"commit": "6c7bb5f9b73fe9bca34bfadb2f8a1eae01a5bcd4", "message": "Fixed TLS secret format ( #2913 )\n\nThe Plugin handled the TLS secret format wrong: it sent chain certificate instead of requested public certificate #2913", "proba": 1.9412794927120558e-07} {"commit": "b689518fec05239b3274f03d6570bb031d1ec602", "message": "updated plugin for beets 1.3.17\n", "proba": 1.263499171955118e-07} {"commit": "1bc8798ed1778556c2005f1b3c8322f4d150c16c", "message": "with previous commit, remove guide from saved rig name. Only use \"_guide\" when building guide rig.\n", "proba": 1.0216721335609691e-07} {"commit": "a631647f72cbfa3e1658fedfef01f3498b554076", "message": "Remove debug output\n", "proba": 3.657153865788132e-05} {"commit": "c1ae3d12c84b628305dce7b08bd1f88b7e8a8cb3", "message": "Changed hr_sample to be empty\n", "proba": 2.798160039674258e-06} {"commit": "f968d2df21440e7e4ebd878ef5c5109d210ffcda", "message": "\n * Have a 1D model that includes copper diffusion in the limit where\n the gradient of copper at the interface changes slowly.\n\n\n\ngit-svn-id: c5b3bd25d7ca9152fed7570a1c033d28a7798ec0@1487 01ab6b12-1d45-0410-8926-c5867bd4e26f\n", "proba": 3.5252168117949623e-07} {"commit": "d76cb5c597ce64b82a00d7a58f8217e2a2bd114f", "message": "fix windows problem\n", "proba": 1.728772872411355e-06} {"commit": "f7d1f5f220b5072715962aeded3496f2746e70f6", "message": "clean up 21 a bit\n", "proba": 2.1385213244684564e-07} {"commit": "41b7456442d50999312dcb1ef95c36b7cb6e7ae6", "message": "fall back on default exception message in getattr\n", "proba": 3.492214091238566e-07} {"commit": "b5084b0fa82043a91d2350712087d88cd7f3a69f", "message": "mailmap_update.py doesn't work for old git versions, warning was added\n", "proba": 1.3681905386420112e-07} {"commit": "11498b516d5605e531c52f446bfed83c3b8e2bd6", "message": "Update migrate_db_0.7.py", "proba": 1.7052560679076123e-06} {"commit": "c64396874c865e36634b93d11dbf9661f11f41c5", "message": "Create base class for depth cache managers and remove code duplication\n", "proba": 1.9777222348693613e-07} {"commit": "b0f56504c4fcc3966bb7279c1fc9c5e1a37de8ba", "message": "Edit provenance sender to allow an evidence counts dict.\n", "proba": 1.2011130934297398e-07} {"commit": "4831db89df1e67ef7b5dd1ae197f3abd389cccad", "message": "Remove unnecessary quotes.\n", "proba": 7.795705982971413e-07} {"commit": "cdc9abc364187a18ccc0e2229a2ee79a0d5feba9", "message": "remove pdk_resource check as biothings can be installed from sources\n", "proba": 1.3854079838893085e-07} {"commit": "be245f052ea8e2490f8f8da8187a76ac9c72b051", "message": "- deal with config param set dynamically within the code, not from\nconfig files\n- search all config files for information to get max information about\nconfig params\n", "proba": 2.512094567919121e-07} {"commit": "45142be7aa8ad278a6d43f64a21a81fc7e2d2f09", "message": "Added hard clipping of a fastq file.\n", "proba": 1.1068485861187582e-07} {"commit": "b0fbae8801ad1581c9e25143bdfcd039eac08008", "message": "Fix call to atop\n", "proba": 2.783444870146923e-07} {"commit": "52fb650d3cd1251c161f3c784fc9e2a23efe6b9c", "message": "pep8, remove old \"cache wanted\" codefart\n", "proba": 4.3563545659708325e-07} {"commit": "fd98b8c8b69b32722dc8e8b484b41e2d3b96d58d", "message": "cc-3936: Documented 2 classes and 1 method.\n", "proba": 1.0755418600183475e-07} {"commit": "6b72d9a0d3854b63eb8ae9d835c3df59cb77e904", "message": "Fix error in timing messages.\n", "proba": 3.511965758207225e-07} {"commit": "77f643011810b182614641ec085a9ee1a0e15d39", "message": "add string_to_integer function to prairielearn.py\n", "proba": 0.9992057681083679} {"commit": "aba0b1016e9f02f6655f53a931f6d45dc3e84764", "message": "remove empty method\n", "proba": 0.9487915635108948} {"commit": "aeeb55367bccfc84c99578f5401e80f8c50aee15", "message": "Improve comment\n", "proba": 2.9004311841163144e-07} {"commit": "5bd4050a73cb36faf4fbcb79db86aaf3ae3f327a", "message": "One liner for ensuring cwd in sys.path\n", "proba": 1.559829314601302e-07} {"commit": "b60e44f5cf03d7c65c184cc2290860b1ecdc32d8", "message": "Forgot a change log entry :)", "proba": 1.2824126827126747e-07} {"commit": "ac73468a6c4e39eb8b8b08c9cc1d1688bd8f115f", "message": "core: missed two Attribute references while refactoring\n", "proba": 2.5722215468704235e-07} {"commit": "a0fc736a25687083a5c9b6fc940fdf0afaac7042", "message": "[clans] update clan name truncate\n", "proba": 0.001750631839968264} {"commit": "dfb37a0b6b172a62da1a7f7265eaee1c18b1b32e", "message": "Remove pre-release\n", "proba": 2.7497367227624636e-07} {"commit": "c2a1f1518cf0c7c36fde2ac582891ca80457e397", "message": "Use Python 2.6 compatible with statement\n", "proba": 1.8079781511914916e-05} {"commit": "c3ca222dd67f64c8f8fc72e215562fec4edfca08", "message": "debugging type problem\n", "proba": 2.7458056592877256e-06} {"commit": "fac0b8ffbb061d6a8f1bec360310c392bc25085a", "message": "small bugfix for virtualSubClasses\n", "proba": 1.5967283673035126e-07} {"commit": "2e36c8d21c1e2791a3a5463be9863639c97b47b3", "message": "whitespace", "proba": 0.9998207688331604} {"commit": "390c048374e29470a9dddeb05463702c84f380b6", "message": "nameparse: enable parsing of [-1] indices (for attributes)\n", "proba": 1.389879571433994e-07} {"commit": "fa87439c50eab0d2dd3433d32e48f03c19106db0", "message": "Fix git first-rev logic\n", "proba": 0.002748314756900072} {"commit": "c373aeadad0bed1e2fc8f0f9ee4df27ba38fcd8e", "message": "Added a primary group for new registered users", "proba": 1.2991017683816608e-07} {"commit": "265a46ef2f76604915fcc7188e5ef4534f9609d1", "message": "PM-89: Fix precision mode register accessor on oscilloscope\n", "proba": 1.3173769275454106e-07} {"commit": "1423339c36e4d16477590c8f210b5435d1344c02", "message": "ISSUE #31:\nThis seems to be the last temporary file which has to be deleted.", "proba": 1.0049063803307945e-07} {"commit": "e93f910b8396a3b15bd6e1a50eac7ba2a25a2cf5", "message": "fix lint\n", "proba": 1.3035814845352434e-05} {"commit": "faf8fc96ae0172e036614db558e7a724e632feb7", "message": "Changing from add to set.\n", "proba": 1.2002553262391302e-07} {"commit": "e6f22c652fb537b11f7b51d77b1013d876176512", "message": "Fix path type (#695)\n\n", "proba": 5.533781290978368e-07} {"commit": "3f4e6c54bbbff2535c332e0f973cb88da6001c8f", "message": "CO-3840 : (#1436)\n\n- Set the default payment slip date interval to the same strategy everywhere\r\n- Remove useless import introduced from previous issue\r\n\r\nCo-authored-by: ecino <57642a6dbd5feeabed71fe929440c49c23908a9c@users.noreply.github.com>", "proba": 1.3434905099529715e-07} {"commit": "f5db8af0ea59f0ac9fe9c2ecc12878d37252e63b", "message": "Ensure FrozenImportFixer is a no-op outside the frozen environment.\n", "proba": 1.1455964710194166e-07} {"commit": "82095fa660f7456a9c1d9af6160afd481661bf18", "message": "add ColorGroup.color_iter convenience method\n", "proba": 2.353141042021889e-07} {"commit": "29999849b3ca21e1c1cb2b68530fa4c1b2964ab1", "message": "utils/setup: make sure to include all the data\n\nFixes missing icons8-dove.ppm loading with installed package.\n", "proba": 9.842674586479916e-08} {"commit": "cdc083d9be184ce31a43bd06ff4a6906d515d6b1", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "c4db83ab7f3afe4af6084fc8094259167a7e0c11", "message": "Allow empty Sample codes\n", "proba": 0.001810273970477283} {"commit": "3a18e6d94cb5f0d0c05ff3df2159bfce844f6dfa", "message": "Update growcut_python.py", "proba": 2.1173100321902893e-06} {"commit": "686a8b22ce69a3e0d94e0831b79c4578514e05dd", "message": "whoops fixed path\n", "proba": 2.80341168945597e-07} {"commit": "a24a6493a4256d93627f9a7b12ea1c9b3c51080a", "message": "Fix bad reference introduced in stream_to_handle refactor.\n", "proba": 1.2233611812462186e-07} {"commit": "870fc26648f0753128068329b0d652622b086fc4", "message": "Missing parentheses\n", "proba": 0.0025503505021333694} {"commit": "0a767a3add72294bc6f1dd917fa952d3a745531f", "message": "Makes vagrant --use-chroot bind-mount dev and proc\n", "proba": 1.3084282102227007e-07} {"commit": "e99a76f4927ce13e99f1eb4040eaa40b490c06b5", "message": "Added beta_tuple and custom_subscriber classes to beta-plot function\n", "proba": 1.4523770630603394e-07} {"commit": "e83430640cea811e82d834c9fa6049dd47337437", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "9a6acad19944eac199275d4a35a6a52c4c621576", "message": "Add shift operations to GenericType\n\nSigned-off-by: Diego Rabatone Oliveira \n", "proba": 1.3116691377490497e-07} {"commit": "85ddfbe0c7b817838e246c4e746398d47788cd9f", "message": "Import Zomat module\n", "proba": 2.5817200821620645e-07} {"commit": "faf30c4baba79af78de0cd7b1bc53acbf188814c", "message": "Remove unused imports\n", "proba": 8.691937409821548e-07} {"commit": "755d5723954dff1c4008d71c084ba0a01a6cbc28", "message": "init_set_string() in regular python\n", "proba": 3.485967681626789e-05} {"commit": "cbb32c228cd734d518bcf60296c6434ff1ef4430", "message": "annotate load_p2th_privkey_into_local_node function.\n", "proba": 1.6027942706386966e-07} {"commit": "8f2b1c50d1a1bf5e5246c501ef4e6794faa759c2", "message": "Add docs for exptime models\n", "proba": 2.1017396534261934e-07} {"commit": "0be876c99381d51e4a33adf2f344f138342e6aac", "message": "Fix crash in ppc-migrate when migrating from S3 to S3\n", "proba": 4.645948138204403e-06} {"commit": "7734de6e36434771c646ea4d53ab6413340311fe", "message": "fix minor bug when initializing an empty Gaia array for GFAs\n", "proba": 2.9093905595800607e-07} {"commit": "ba4b15c93b5fff31be5e81e9369e08c9a99c0d8d", "message": "+ access_file\n+ remove_file\n@ project_manager\n", "proba": 3.0500075808959082e-05} {"commit": "98d9b824f303e6f7accef3f13150f052c5a6d934", "message": "Fix pure-secondary target obsconditions in mtl\n", "proba": 0.9991363883018494} {"commit": "96386feee0ba2bb2beaf7b4d5a631c007e87909d", "message": "Bug fix in load/resume with target weights\n", "proba": 2.1986377873872698e-07} {"commit": "95e12fdf6a89796409fe958e81c9aefcfb0e720f", "message": "engy: fix bug, use base class for state machine\n", "proba": 3.0870333489474433e-07} {"commit": "969593554d6cbf7f1f5bcae0757cb150168bb54f", "message": "Reset dataset indices after filtering\n", "proba": 3.45680575719598e-07} {"commit": "a96ba0da99d1526c1cf361c0989780e2c6dd7020", "message": "apogee-maps: fix title\n", "proba": 0.00032410011044703424} {"commit": "9fbaba42dad6a28dd02eea14fe73ed1c177298a1", "message": "Wire-in the payment processor and start using it.\n", "proba": 1.0897300484202788e-07} {"commit": "611ee41d32503d4757bc33ccdfdda3a44003c44c", "message": "Updates to nonlinearity module. Removed all old unused functions,\nchanged to using a class-based system. Users create nonlinearities of\nthe given type, then can call fit() and predict() to learn from data and\nfit the nonlinearity to new values, respectively.\n", "proba": 1.1673672162260118e-07} {"commit": "767c2ad36fe296332177ba138e16706c28a648d2", "message": "[gamma.parser] use raw strings for re patterns with invalid escape seq\n", "proba": 2.208733889119685e-07} {"commit": "41f98986d9f1cf7b40a46d8d508cf5e19172b0b4", "message": "Start 0.12.6 development", "proba": 1.4554468918959174e-07} {"commit": "fa58cb344a67de2ec89b2cc9f721ab1f781b87a9", "message": "edited init docstring", "proba": 2.549812734287116e-07} {"commit": "225c9525c397226db75dd9f0637d8af8114a5138", "message": "Update importers.py", "proba": 4.408672964473226e-07} {"commit": "0ada6f539edcc5a7adba76d39ef4f06188425223", "message": "Fix flake8 error\n", "proba": 8.280508154712152e-07} {"commit": "e56d1779e1771c892388ebb7d416cf5a39a77ced", "message": "Require Python 3.7. (#7682)\n\n* Update setup.py.", "proba": 2.718717553307215e-07} {"commit": "fe423d29d9c1d84428e5c863b4eecbedd6f1a686", "message": "More cleanup in PshellControl.py\n", "proba": 1.3222100392340508e-07} {"commit": "b26dfe5dfea2aaad4b1ffaa1885e0094f3463dd2", "message": "fix bug in check page namespaces\n", "proba": 2.4942880827438785e-07} {"commit": "a958d7eca181a42e68ed4b8c3ac96e0922eb3c94", "message": "Fix for bug 687527 - Handle applications returning 0 in minimalIncrement for Value\n", "proba": 1.2099540924737084e-07} {"commit": "f14ea067122787507e4094ba1802e3143cbbdeae", "message": "Fix creation of trajectory bbmask\n\nDo not require both xlim and ylim to be defined in trajectory bbmask.\n", "proba": 1.2641982038985589e-07} {"commit": "f5dcb4fe60bf9cd530601daa16fc592c45c11ac9", "message": "Added fixes from @telegraphic to address #147.\n", "proba": 1.0205678080410507e-07} {"commit": "2a85857b335b7789d4e90566a3879938bd54bd27", "message": "Add log file\n\nAdd log file\n", "proba": 7.551372618763708e-06} {"commit": "db98c5f0a67605309bff427d7e5d656251e4c88b", "message": "updated runtime script\n", "proba": 5.502653266376001e-07} {"commit": "ee7912837eb1fae669382a147c742e87454bc699", "message": "add python solution for is_palindrome\n", "proba": 0.999990701675415} {"commit": "1a3887338b5d30ce5d2d550c89486feed24351e5", "message": "Update list_projects.py", "proba": 1.699265681054385e-06} {"commit": "942c4b4623dee3038892b1b3e61959c5d8eb6b67", "message": "use the new nagios_objects parser in nagios.py\n", "proba": 3.5498007946443977e-06} {"commit": "62b206aded34329d056371c4c44edae5b3e2ad02", "message": "Scan gov issued passport with MRZ/Face auto crop", "proba": 1.2266404780802986e-07} {"commit": "81a152c54bff21854de731476f62c8fd50dd29f7", "message": "Fixed broken pyspark shell.\n\nAuthor: Reynold Xin \n\nCloses #444 from rxin/pyspark and squashes the following commits:\n\nfc11356 [Reynold Xin] Made the PySpark shell version checking compatible with Python 2.6.\n571830b [Reynold Xin] Fixed broken pyspark shell.\n", "proba": 1.1495889395973791e-07} {"commit": "9671f2e664525f469bf6ff1d75cdef494e0de1d8", "message": "\u8349\u7a3f\u7bb1\u3001\u53d6\u6d88\u7684\u6d3b\u52a8\uff0c\u5728\u5fae\u4fe1\u4e2d\u90fd\u5904\u7406\u4e3a\u3010\u62a5\u540d\u622a\u6b62\u3011\n", "proba": 1.0235601877184308e-07} {"commit": "21a143e4158607c35842c63b846d0a1fe84e1d34", "message": "Added save commands\n", "proba": 5.257684279058594e-07} {"commit": "738d82f91e4c7215ba6f596d571e7524f3e57200", "message": "basic core", "proba": 1.1854378954012645e-06} {"commit": "017599a1f66ec4bc2ee70cea38209c211b3d4578", "message": "Typo in message\n", "proba": 2.0331126506789587e-05} {"commit": "d8df89629f885f4e96871e423ac7fd9caa96bba1", "message": "Added urlencoded requests to defaults\n", "proba": 1.6814480829907552e-07} {"commit": "2f7f7c86318e676def77d6c0281f4b6018f11c6e", "message": "Another hash-function hotfix\n", "proba": 6.046180374141841e-07} {"commit": "e567f3fa90b48c31459e71cde0d622e9cd660796", "message": "Change option ordering in forms\n", "proba": 2.854873457636131e-07} {"commit": "a047d56df7c02121d4394ebee2ceedf005bb550a", "message": "Ordering of RackPosition set in model Meta\n", "proba": 1.5953523302414396e-07} {"commit": "7581f62cd9d4f7122c78c51d289fffc3f4925b46", "message": "TPE: minor opt\n", "proba": 1.0697560355765745e-05} {"commit": "d45f9d8aa6a2b24049ca672e680151a6f9b970ec", "message": "Update create-a-chase-pay-transaction.py\n\nadded two digits after decimal\n", "proba": 6.3170982684823684e-06} {"commit": "d107ead4cb51c2779542efddd542ac07cd5789fd", "message": "save POI: disable exception before real fix\n", "proba": 3.0981286158748844e-07} {"commit": "5b8f4695aa9344e4355f416cded8f6ab28f52ef3", "message": "Force la s\u00e9lection du staff dans les cat\u00e9gories choisies\n", "proba": 4.890737272944534e-07} {"commit": "fca3ac5dc65b5bc9915240e0aa61e014b8c93adf", "message": "explicitly reproject geometry for correct calculation of extent\n", "proba": 1.624709256020651e-07} {"commit": "ba2d00c780b250f2f8731ee8b7fd3b20cc2d7f61", "message": "In FABS upload, handle when agency_code does not exist\n", "proba": 1.6594198370967206e-07} {"commit": "e7bc42cd02865abbda9422a2550d14179db1cc0c", "message": "escape quote\n", "proba": 4.2838570379899465e-07} {"commit": "070b6c28e8bf34775ed488724e716fcf816422ca", "message": "adding .all() to cache lookup\n", "proba": 6.370466962835053e-07} {"commit": "3a06aee39e7c1d363c4062994d6c38f4b7209327", "message": "Sets the types of scope symbols as we infer them.\n", "proba": 1.3397749398791348e-07} {"commit": "3a380fa24391cb14d3746b7d8ad6d470e318f8ea", "message": "renamed no_conf -> noconf\n", "proba": 4.369538146420382e-06} {"commit": "00aa59468c4dbfde282891f1396e29bd3f28fb62", "message": "Rename classes to reflect intended use.\n", "proba": 1.0664617633437956e-07} {"commit": "922650124ef55e2dd0b9fbd0beaa3beea2335a66", "message": "forcing spanish for now, attempt 1\n", "proba": 2.2621348705342825e-07} {"commit": "020972cf3ccbbc6166b978512024f71fd2c27804", "message": "Creating derivations for legal entity content\n\n+ Different derivations if it\u2019s record_type 1 or 2\n+ base derivations on zip5 (and zip4 where available) for record type 2\n+ base derivations on ppop code for record type 1\n", "proba": 8.818086598694208e-07} {"commit": "bfb8e1f57e23dadfd5a80a4c4ff1bf9bffe77a4c", "message": "wip tap\n", "proba": 1.829896791605279e-05} {"commit": "c265fc6653c997546ca81f8f0a85523252b74e3c", "message": "right XX\n", "proba": 8.416400305577554e-06} {"commit": "c1dec097baf69150304ca1c8e8b9053e06fa60de", "message": "Fixed calculations to improve accuracy of readings\n", "proba": 1.7906295113334636e-07} {"commit": "3d3abc2289d12974098c7f2b4960f75450b93227", "message": "Update read_save.py", "proba": 8.76882666034362e-07} {"commit": "badff914d97bd45191adc5c33410e56f5092f550", "message": "no need to kill the tweens anymore as tweenables get overwritten\n", "proba": 2.61787590716267e-07} {"commit": "95a5cf649e9bbe89002ceac1d94a53038fda988b", "message": "adding update param for explicitness, updating update param to mimic DUNS load\n", "proba": 1.368562436709908e-07} {"commit": "be290c3cdefddf5c03a2ef0719dd0e834e0bd6df", "message": "Add disable alarms to restore snapshot\n", "proba": 4.5275942284206394e-07} {"commit": "4a19e3d85e59878b33c192b32ab5b72e7ed8602e", "message": "fix message content display\n", "proba": 4.274233288015239e-05} {"commit": "bb2e47a4b26d4309cb41d4de4a8b60f24382a996", "message": "Categorical random variable can use gumbel-softmax sampling\n", "proba": 2.9683811590075493e-05} {"commit": "d24b32b8eda0bebf3f8e98b1b37d528606558502", "message": "Whitespace.\n", "proba": 1.4203533282852732e-06} {"commit": "8526e2b9e4a41a5a170063fee9ec201aa96d2407", "message": "improved autodetect() based on admin.autodetect() (though, without reset of registry)\n", "proba": 1.4488547606106295e-07} {"commit": "36a15c2574d6668c5bddca8cbafd7ab93a744dd9", "message": "Reset job_id\n", "proba": 2.9017064662184566e-05} {"commit": "64b2b6769c97dcb69f42803ab23f292b4039ac05", "message": " fixing \\r\\n problem on chunk_size boundary when reading gzipd warcs - issue #4\n", "proba": 1.4655309144018247e-07} {"commit": "30161167b922782a4ee29b106eba856470f8a74c", "message": "spacing cleanup\n", "proba": 4.977476351086807e-07} {"commit": "24ca963c75ab6dcdaa4a28e1adf70271f53fa2fd", "message": "Add postal code regex for 'fr'\n", "proba": 0.999998927116394} {"commit": "57bf4e12b043a7c70b7af97a214e049c3207698c", "message": "Update dcos_generate_config.sh --help to display the right help messages\n\n```\nusage: dcos_installer [-h] [--hash-password [password]]\n [--set-superuser-password [password]] [-v] [--offline]\n [--cli-telemetry-disabled] [--web] [--version]\n [--aws-cloudformation] [--genconf] [--validate-config]\n [--preflight] [--postflight] [--install-prereqs]\n [--uninstall] [--deploy]\n\nDC/OS Install and Configuration Utility\n\noptional arguments:\n -h, --help show this help message and exit\n --hash-password [password]\n Hash a password and print the results to copy into a\n config.yaml.\n --set-superuser-password [password]\n Hash the given password and store it as the superuser\n password in config.yaml\n -v, --verbose Verbose log output (DEBUG).\n --offline Do not install preflight prerequisites on CentOS7,\n RHEL7 in web mode\n --cli-telemetry-disabled\n Disable the CLI telemetry gathering for SegmentIO\n --web Run the web interface\n --version Print the DC/OS version\n --aws-cloudformation Generate AWS Advanced AWS CloudFormation templates\n using the provided config\n --genconf Execute the configuration generation (genconf).\n --validate-config Validate the configuration for executing --genconf and\n deploy arguments in config.yaml\n --preflight Execute the preflight checks on a series of nodes.\n --postflight Execute postflight checks on a series of nodes.\n --install-prereqs Execute the preflight checks on a series of nodes.\n --uninstall Execute uninstall on target hosts.\n --deploy Execute a deploy.\n```\n", "proba": 0.999902606010437} {"commit": "2d9f8641160b92c64be33951ffa0da0dd3d16c2a", "message": "more debug\n", "proba": 1.390716164451078e-07} {"commit": "c6b28bd28171b74d92ff9ba9dfba71a7bb58246c", "message": "separate args for bootstrap and cluster hosts\n", "proba": 2.049742846566005e-07} {"commit": "269ba7b2f69b0e119561fb29b466f6f3ca3b447a", "message": "Change regain_lock response json to be more clear", "proba": 2.1899678870340722e-07} {"commit": "735381b7ed8f7a633fcfd212542f9fd197b80057", "message": "Fixing style errors.\n", "proba": 1.9865235856286745e-07} {"commit": "0708e8ba8d877b38d32ad852444cce3056b11a6b", "message": "introduce ihnc cut_off\n", "proba": 2.8178081379337527e-07} {"commit": "13bcd65dce74f61ed79a7935e00ed013ec8134fc", "message": "bugfix\n", "proba": 8.478961035507382e-07} {"commit": "1c034936533e91cbfd9d88a55b2153923ffbdee8", "message": "Catching up with Janna\n", "proba": 1.9379129412300244e-07} {"commit": "5e459111106f48383553c808edf384346a629555", "message": "Change the SineSynth to work with the (not working) RtAudio output\n", "proba": 1.3543236718760454e-06} {"commit": "7e3cc734bcbadc1d3204f76b735d4b3b85ff8b62", "message": "ARM: Gadget tests: added verify.\n", "proba": 1.1169753122430848e-07} {"commit": "3e626209dd67c3bdef288ff723ddddecfbdb4971", "message": "OK just fix typos.\n", "proba": 4.918295530842443e-07} {"commit": "99835186ed355d935ba2939b5f18f0f51acafccc", "message": "update walking group toggle recovery service with new message typw\n", "proba": 1.250478334213767e-07} {"commit": "d38417cc7ed444b44c83b7522ad3db7c60cc88c7", "message": "corrected ordering of mentions query\n", "proba": 0.0010654284851625562} {"commit": "8a8109d5c448dd946f98dd5a24016744bb3a9e3f", "message": "[FIX] fields_view_get can suport basic layer\n", "proba": 6.977265343266481e-07} {"commit": "a532baec2197958e29ce37998bd15308256b76da", "message": "[IMP] layer are in a spearated key\n", "proba": 4.547387106867973e-07} {"commit": "58fde94f6a9dd10ea552444f52cf209c51542355", "message": "Newlines should not exist in Args, Returns or Raises because the markdown parser treats it as a paragraph and the formatting on the site is messed up.\n\nPiperOrigin-RevId: 292179473\nChange-Id: I8534b7b876a26931fae049b34661db3c6052a061\n", "proba": 7.64462038205238e-06} {"commit": "98cc35b467045757af571f41d5afc88f2ce7e1ac", "message": "Errmmmm...\n", "proba": 1.3352720884540759e-07} {"commit": "d017b813a846887293a388f098cd12bfc3fe97b6", "message": "catch shutil errors when copying client_secrets.json, fixes #55\n", "proba": 1.5048776447201817e-07} {"commit": "861da1d6262d20fe99a2cad1e0a7c32c6efe192c", "message": "doctests update\n\nprint converted.numpy() instead of shape for rgb_to_grayscale and grayscale_to_rgb", "proba": 5.642607447953196e-07} {"commit": "448dc7688c2ab87ffcc246490e20573b0e8bcf7e", "message": "change type signature of get_keys\n", "proba": 1.090604996534239e-06} {"commit": "1a4d5a6c7e93c78604116608aecae85ce66a578a", "message": "heroku deployment\n", "proba": 3.9972272247723595e-07} {"commit": "801970c84117cb1728bdc397871631eeaca4413b", "message": "fix syntax error on python 2.4\n", "proba": 2.5054934667423368e-05} {"commit": "fdf6c04970aab4d67dcd1ad750b9fbb529c22823", "message": "add worker\n", "proba": 0.0009398221154697239} {"commit": "69e099e507d464f6bb1940c92aa4db36b1028314", "message": "utils.py: clear expects to find a callback here\n\nWe need to register a timeout to be removed later.", "proba": 1.0589822352358169e-07} {"commit": "48e6b551596c728dd6ed2e09cb05f629b2bb626c", "message": "Updating doco for efficiency 1 example\n", "proba": 1.22163214655302e-07} {"commit": "68b80250e3f80e4fb6a6fba400863dcf78f078e7", "message": "Write PluginData.content as bytes explicitly\n\nPiperOrigin-RevId: 235102987\n", "proba": 7.857252626308764e-07} {"commit": "dc80aa1b37c6d59efeffddc8bdf799b1a78b3c2c", "message": "[ACPDOC-3] add ipaddr fct\n", "proba": 8.157107913575601e-07} {"commit": "2f5c764df5b48e03059cf371b1eb54704e158f86", "message": "Set correct browser ID audience\n", "proba": 3.9188674350043584e-07} {"commit": "2bdc79f3ba0ca6a0291b8f2bdb57e0d952dfdbb1", "message": "Optimize inventory read check for Job Templates\n\nOur old check used an extremely inefficient boolean logic AND and\ngenerated a bad query. This does a simpler check by querying the\ninventories that the user has access to and using that as a simple\ncondition when performing the job template permission query\n", "proba": 2.3355525513579778e-07} {"commit": "c316d5b6baaf93917d048963bbc92d9ec72d1ab1", "message": "fix media root. fixes #8\n", "proba": 0.0007340550073422492} {"commit": "5a3342781a1c07b5009b9abb81f7ffee26c48bbd", "message": "Fix syntax error and create parent dir in _download_from_s3\n", "proba": 1.4059573913982604e-06} {"commit": "7f3652efc4291514c4eb72b400082e71f4cf3535", "message": "Fix flake8 errors in afq.data\n", "proba": 3.413016202102881e-06} {"commit": "58a845a25f898897fa0b0ab955d9d13fec8f53ce", "message": "Default ordering for Sources\n\nfixes #239\npotential fuckup as it changes the way tables are displayed\n", "proba": 1.1320522474989048e-07} {"commit": "e5493f2c60b7e2e1587e4a977f70b5c23ee95210", "message": "When writing a frozen graph, use deterministic serialization of protos.\n\nThis is useful for tools that diff frozen graphs, to avoid spurious diffs.\n\nPiperOrigin-RevId: 453211023\n", "proba": 7.273205824276374e-07} {"commit": "1ea7210a2ce1ad4fd12edebd08890d09df914dc6", "message": "ENH: first pass at adding logbook integration\n\nAdd a 'logbook' command which allows the scan to ship a message\nstring + kwargs to the run engine. The current run_start_id\nis added to the kwargs (overwriting anything that is there).\n\nThe string + the dict are then passed to the self.logbook\ncallable as `self.logbook(logbook_msg, kwargs)`.\n", "proba": 4.322310815041419e-06} {"commit": "cc1dc0173d3372f308e245e440fd8ad92333874e", "message": "artifactory: do looping in _search\n\nDetecting single vs list operations in _get/_post/_request was too\nfragile. Do the looping in _search, which is the only place we care\nabout returning multiple responses.\n", "proba": 1.6786314915862022e-07} {"commit": "8be668c65957b065c7cec62b9c4d6b7329e256ce", "message": "test_scheduler\n", "proba": 3.213159970982815e-06} {"commit": "ff6b1046044ccdc727cf77ccd65cb91f6af62f15", "message": "clarified docs\n", "proba": 2.226442347819102e-06} {"commit": "513b73ef78abfde7c24786df396736e38a03e835", "message": "AL-1323 fix code style\n", "proba": 2.2600194427013776e-07} {"commit": "b9444b1e1565434ecb6b4135fec15f64f28e5307", "message": "Forgotten stuff\n", "proba": 3.045977337023942e-07} {"commit": "2ba6e872341a6a9375de678f9fd27803a4fdabab", "message": "Fixed return type.\n", "proba": 1.9001403472884704e-07} {"commit": "62cd69495237ccc1f01813a326ce92f9a384361e", "message": "A history problem...", "proba": 2.4125583308887144e-07} {"commit": "06370af49704c9cbaf14a9af0b4839ccd008f3a5", "message": "Use local temporary directory during processing to avoid global tmp space issues\n", "proba": 1.6193075680348556e-07} {"commit": "6cf3387aa5e4068da6070d355ae0f73a2b1dcef1", "message": "MNT: remove un-needed imports\n", "proba": 2.648921508807689e-06} {"commit": "f8ba7f6aba3b8ab9f00f75111db3b9e66a2165a2", "message": "Relaxed RelationGrapher constraints.\n", "proba": 1.2579504016230203e-07} {"commit": "a91c4bf7e6b996d76087f3edb9d5d1860634a430", "message": "dist/testrunner: add optional delay before opening serial\n\nThis option is null by default but is useful when used with boards exposing their stdio over USB\n", "proba": 2.4175102453227737e-07} {"commit": "63fe0756f3e7c9c426960bca8f61f24372e0fe50", "message": "Cosmetic cleaning up of Scraper\n", "proba": 1.2395075543736311e-07} {"commit": "0f7b777aba70c4bda09cedeaef9ead61a9b44f04", "message": "Forgotten stuff\n", "proba": 3.045977337023942e-07} {"commit": "ca06c61d4f0b32cde414b77d3b9345ade3102b9e", "message": "size back down to 80\n", "proba": 0.9988107681274414} {"commit": "3bfdcdb33e527b2a572769d7494b9e24ffa122e3", "message": "Use BER OBJECT IDENTIFIER class in DER codec.\n", "proba": 1.7007558028581116e-07} {"commit": "a0876636a4b9a5ed2ad909a922addc89ca7899df", "message": "log app dir and prefs dir to check path calculations", "proba": 2.4723746605559427e-07} {"commit": "05a226c0e3ee85d733f54e12803f4e33b814f745", "message": "FIX: Mark run as closed before running callbacks.\n", "proba": 1.1702118030143538e-07} {"commit": "640ef2bd26252488e6ec0f1182200de2d67f140a", "message": "added cone\n", "proba": 3.375157575646881e-07} {"commit": "dd41e66f6afadd1510dc885f88da29d0da6ed84e", "message": "make compile_shaders.py run on posix systems\n", "proba": 5.79398488298466e-07} {"commit": "28b98e0631b93f3fc7d0bd765cbdd02309724263", "message": "provide more helpful message in assembly.syntenypath.bed()\n", "proba": 2.196039332602595e-07} {"commit": "e539991f4978e25c37a3405e2b5efa5237f2d4b7", "message": "Replace request.REQUEST, was deprecated a long time ago\n", "proba": 2.704138296394376e-06} {"commit": "e8a953a6a1e6fc18774c4611a6d42e8efcf27598", "message": "disable logger from shell for now ... prints to much\n", "proba": 1.1117106168967439e-07} {"commit": "19d1941bb1e0a376529709011cf9d98b1f56a32e", "message": "added support for evernote sandbox\n", "proba": 1.6766986732363875e-07} {"commit": "7ab82026600f7b2a2897728ba686da5c042f712f", "message": "unused import\n", "proba": 7.379109661087568e-07} {"commit": "5b50147e6d0c225700994be96287e542e096f0af", "message": "[FIX] Purchase_requisition : Correction for datetime library changes--fixes=lp:663662\n\nbzr revid: jvo@tinyerp.com-20101020141539-q0zjcpfch0abl39d", "proba": 3.118106803867704e-07} {"commit": "3f03224dfad29d813127ddf809bd8dbd86c4d519", "message": "show crash counts in the admin interface\n", "proba": 2.374226539814117e-07} {"commit": "5decee12a8232ba1731c1d5a6bc74a61048b6284", "message": "simple trolley init script\n", "proba": 3.173510663145862e-07} {"commit": "28f89da94abec9847938435cc5cd329bd724c9f6", "message": "Yeah, I totally remember what the range of the Dirac delta is. Nothing to see here...\n", "proba": 1.0469901212672994e-07} {"commit": "f0b25ee19474e2269343ed19f85d20b95104dbf8", "message": "deal with nan\n", "proba": 2.471608411269699e-07} {"commit": "c775cb5971ee235e7b16a7ba40339714e4cdcc43", "message": "Bug 1271456 - Add huge_palloc to prefixSignatureRegEx (#3339)\n\nr=adngdb", "proba": 1.6801497793039744e-07} {"commit": "cc9a64f64a740142f4fa5156219d34105ce1cd9e", "message": "No, really this time -- corrected the warning message from r12510.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@12512 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 0.0012515855487436056} {"commit": "7df1ed120281c82d166fa1c2218def4c84b48a3d", "message": "Remove unicode string markers which are removed in python3\n", "proba": 7.574763731099665e-05} {"commit": "7e1e31bdddea3d30c3a61c0514298bfb1fdbbe6c", "message": "E128: continuation line under-indented for visual indent?\n\n", "proba": 1.1261063548317907e-07} {"commit": "1a3361f4be2bc7bd2e3f0da39ddbc44bbd639d5a", "message": "Implemented flyAway, copy, and move methods of Boid class\n", "proba": 1.8252083577863232e-07} {"commit": "48b5d7994b8e70052000864fedeaf7bc5ee14213", "message": "Also handle decode attribute error.\n", "proba": 1.2953360339906794e-07} {"commit": "2808a7a6799b65fdd95d9f98f8b433e95ca6517c", "message": "Complete test coverage\n", "proba": 3.5379582641326124e-07} {"commit": "4c4c6d16400fbeca6379ec30c0008ce3f52ca00b", "message": "Fixed #947 -- Corrected is_paginated variable in list_detail generic view. Thanks, nesh\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@1478 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 5.648271326208487e-07} {"commit": "fa9cd4b8507630f05a9e437615de216cb5ea18af", "message": "Add output for parsing errors\n", "proba": 1.8730943338596262e-05} {"commit": "08ab2624b92c3554799507af4c1ef239709a2be7", "message": "adding the fix to query for feedback\n", "proba": 1.7428108378680918e-07} {"commit": "f71478b7c256cf949451b556895eccdc1dece9a6", "message": "Removed unneeded import.\n", "proba": 1.3328522641131713e-07} {"commit": "907579f24e2b7096479398f8ddbef1859bc691d8", "message": "Fix to add compatibility with python 3\n", "proba": 2.8846937993876054e-07} {"commit": "a6d7af6579c7c5aeb71de3eeaf7afe1471ff4510", "message": "[FIX] jim_intercompany. No permitir intentar desasiganr movimientos ya realizados\n", "proba": 0.0002692300477065146} {"commit": "93c897c953bfdbf44ebb020e41a580e035ebdd03", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "9ebab2b09768fe17a06ce91f09a3b7b14a71de4c", "message": "feat(workloads): hook up Compile and Run action to new workload impl\n", "proba": 2.3318580133491196e-07} {"commit": "f4637c364d03ae8d20903402190e6131c206fea0", "message": "Fix the `gda_xla_sharding_match` benchmark which was regressing. This was happening because that function was executed from top to bottom a couple of times and each time a new mesh object was created violating the already created cache which doesn't happen in real life.\n\n```\ngda_xla_sharding_match_(256, 8)_PartitionSpec('x', 'y') 21.8ms \u00b1 2% 1.3ms \u00b1 2% -93.80% (p=0.008 n=5+5)\ngda_xla_sharding_match_(256, 8)_PartitionSpec(None,) 21.8ms \u00b1 4% 1.3ms \u00b1 1% -93.92% (p=0.008 n=5+5)\ngda_xla_sharding_match_(256, 8)_PartitionSpec('x',) 21.8ms \u00b1 3% 1.3ms \u00b1 1% -94.11% (p=0.008 n=5+5)\ngda_xla_sharding_match_(256, 8)_PartitionSpec('y',) 21.8ms \u00b1 3% 1.3ms \u00b1 0% -94.12% (p=0.008 n=5+5)\ngda_xla_sharding_match_(256, 8)_PartitionSpec(('x', 'y'),) 21.8ms \u00b1 3% 1.3ms \u00b1 1% -94.07% (p=0.008 n=5+5)\ngda_xla_sharding_match_(128, 8)_PartitionSpec('x', 'y') 13.9ms \u00b1 6% 1.3ms \u00b1 1% -90.85% (p=0.008 n=5+5)\ngda_xla_sharding_match_(4, 2)_PartitionSpec('x', 'y') 5.72ms \u00b110% 1.25ms \u00b1 1% -78.15% (p=0.008 n=5+5)\ngda_xla_sharding_match_(16, 4)_PartitionSpec('x', 'y') 6.17ms \u00b111% 1.25ms \u00b1 1% -79.71% (p=0.008 n=5+5)\ngda_xla_sharding_match_(16, 4)_PartitionSpec(('x', 'y'),) 6.17ms \u00b110% 1.26ms \u00b1 2% -79.61% (p=0.008 n=5+5)\n```\n\nPiperOrigin-RevId: 463760534\n", "proba": 0.999997615814209} {"commit": "8998d309a6b207d61003b569b13bcd55bb00702e", "message": "mi assicuro che assopy abbia sempre un card_name\n", "proba": 2.871693993711233e-07} {"commit": "433ca64410712ab9450ea7f9b4b70ababb0cee36", "message": "BUG: fix build_mpkg registration.\n", "proba": 1.1064052785059175e-07} {"commit": "8fd33e4f71c7d6f0a07a0e6a733620046f4c8bf9", "message": "Import storage specified in config\n", "proba": 6.043666758159816e-07} {"commit": "e7d19ca58d28d97cb8f73dbc104d796ed6fd230c", "message": "fixed up Dworetsky83 period finder to use new autofreq\n", "proba": 1.1810432454240072e-07} {"commit": "5458b197dd104cebb9645bf5e1786b84d91665a5", "message": "(images) Fix annotation position when downloading advanced annotations\n", "proba": 5.024305096412718e-07} {"commit": "7af16cc40823323cd2df96d597cec2a12c4b48b4", "message": "Add keyword arguments to super call\n", "proba": 6.141991661934298e-07} {"commit": "ad661d93713545902e893adcb62a5b098d46ed2a", "message": "use io.BytesIO instead of cStringIO in formparser\n", "proba": 2.7841879273182712e-06} {"commit": "92406c30f4294eb7ccb6c8009dbd4dd2de827293", "message": "Make namespace better\n", "proba": 0.0002887423906940967} {"commit": "03238e87e92301b11d327c79f605ad3db815e3fc", "message": "Clean bad links from AlmaClass.query_sia docstring\n\nThe docstring of `astroquery.alma.AlmaClass.query_sia()` is constructed\nwith the help of `pyvo.dal.sia2.SIA_PARAMETERS_DESC` constant, which\nhowever contains links that Sphinx is unable to resolve. These links are\nremoved by this commit so that the documentation build can succeed.\n", "proba": 1.1923479803499504e-07} {"commit": "554e293e083f2d32890feffd8542a7200cb48b72", "message": "fix broken py2 syntax =(\n", "proba": 3.5740786188398488e-06} {"commit": "91be31155b6824e931960e74f30e92952c72a20f", "message": "make request optional\n", "proba": 3.4965029271916137e-07} {"commit": "536cbede650e6c5b58942cd6783df88a6f9f3c35", "message": "Redis installs itself to bin instead of sbin\n", "proba": 3.114359117262211e-07} {"commit": "2247b5982b7508c37024aec28961518984e3d97a", "message": "Correctly show the range of bytes being sent.\n", "proba": 1.477773281521877e-07} {"commit": "6abe2bd00ce2aecce88783b0a826904386d9b583", "message": "Changing static url again.\n", "proba": 1.2614187028248125e-07} {"commit": "e11a195c18b214f507bd7320d3653e493010fc1c", "message": "add celery tasks to replace cron\n", "proba": 7.445695700880606e-06} {"commit": "4dac2a9ebeb673ee1b42efe7d61d40c8ddee216e", "message": "change limit for pMSSM\n", "proba": 7.768972523081175e-07} {"commit": "b7091b0f3f5f41b95298d392821c47dcf09d7699", "message": "Update opencv_contrib.py", "proba": 6.471724987022753e-07} {"commit": "1d1a0beb8f552e1b794fb7e9618b38355e59f79d", "message": "[UPD] prefix versions with 8.0\n", "proba": 4.024272129754536e-06} {"commit": "37715cbe902a73d6ab0975c3bc8bab9bb95dff81", "message": "add debugging output\n", "proba": 1.983141919481568e-05} {"commit": "7c1780d1f54e9c046347cf7960a5a108632321d9", "message": "update Imagenet21k pretrained model path; add OOD eval\n\nPiperOrigin-RevId: 391658238\n", "proba": 1.8203392926352535e-07} {"commit": "e2f340ad9995f668cab3ab3e19b495f93f04f648", "message": "Implemented UntagModel for tag/model/remove command.\n", "proba": 1.1087840334766952e-07} {"commit": "d4107dee8cda4a23a9dd7f596de7f9173b532b2c", "message": "Logging configuration\n", "proba": 1.8461754507370642e-06} {"commit": "d046af1c5a229b24ec42655f9440ae938e9563af", "message": "trivial: remove trailing whitespace from source code lines\n", "proba": 0.003117932938039303} {"commit": "cd1a8111a50626eaeb88ac5c35953fb3d675ca19", "message": "Removed skipif on new ascii reader\n", "proba": 2.4125537834152055e-07} {"commit": "813b93588872d43e253b6c0e1a545ff7bcbca132", "message": "Adds a demo for scorer.\n", "proba": 1.1582208259142135e-07} {"commit": "f330ea3681dea9593bd3adb9b3e43ea4d9c564b1", "message": "HYD-2482 Lower loglevel for duplicate notification messages\n\nchanged log level from INFO to DEBUG for dropping already set messages\n\nChange-Id: Iab3bea4de2d66a7b08fe1ca2be791178cfb301a5\n", "proba": 9.398752922606946e-07} {"commit": "0e2248ef226d06318eef65111f3a67dbbb5c6f1d", "message": "_extract_entities() should return a dict instead of setting in place\n", "proba": 0.00011409507715143263} {"commit": "681e1d618fae20bb1299f79fd07581afe9036d53", "message": "Attempt to fix weird bug!\n", "proba": 1.2873164223492495e-07} {"commit": "f8bebbc98a935eb773aad7fb2ff1a10cfb915eb9", "message": "readd os import to housekeeper\n", "proba": 1.306240164922201e-07} {"commit": "42c15ed733715315e524fa3781b2523023542a31", "message": "analysis: better parse lflags from inf structure\n", "proba": 1.2833077562390827e-05} {"commit": "8605294893215fc797b4878a26bbf48dbd6f4d77", "message": "Fix country domain on bank\n\n", "proba": 0.0012127449735999107} {"commit": "e0d5bd4941e71908cc9fb2514735479e4e588753", "message": "New node names (format n0001...n9999)\n\n\nFormer-commit-id: 537bc943f54df86bfe1045863ca98e27cc10694d", "proba": 2.848796839316492e-06} {"commit": "b0df3ca96ef6146c3fcedae4213e4b336b19a574", "message": "Don't forget to kill off old Firefoxes when rebuilding drivers\n", "proba": 1.7382195949267043e-07} {"commit": "1a642afacb774c1015fb7df376d4383b9e41364a", "message": "Ignore packages in deps graph that are scheduled to be uninstalled.\n\nThe refresh-packages builder has been hitting a corner case recently.\nThe ssmtp package is installed in the prebuilt chroot, but has been\ndeleted with a somewhat recent changelist. It was replaced with an\nentry in package.provided. This case causes ssmtp to appear in the\ndeps graph, but also to be scheduled to be uninstalled.\n\nThe deps_graph, however, still marks its \"action\" as \"merge\", because\nthat is how parallel_emerge handles packages that are to be uninstalled\nbut appear to have a replacement ready.\n\nThis change assumes that any package that appears in the deps graph\nbut is unknown to dbapi.findname2 is not a package that needs to\nbe reported on.\n\nBUG=chromium-os:26385\nTEST=trybot refresh-packages\n\nChange-Id: If9e29205c309844b716e273e998b3b45f28281a3\nReviewed-on: https://gerrit.chromium.org/gerrit/15851\nTested-by: Matt Tennant <46e612415b446ccde19638e4035892001c237942@chromium.org>\nReviewed-by: Mike Frysinger <8f3f75c74bd5184edcfa6534cab3c13a00a2f794@chromium.org>\nCommit-Ready: Matt Tennant <46e612415b446ccde19638e4035892001c237942@chromium.org>\nReviewed-by: David James \nReviewed-by: Brian Harring \n", "proba": 6.2792519202048425e-06} {"commit": "0a270e71c6b08de35153ad8bce92b7e5f354f33a", "message": "damascus.*steel\n", "proba": 3.0739884095964953e-06} {"commit": "c55cde363ffa66675780b23f122237803cc299a0", "message": "fitsio.read_header() doesn't apply the kwarg 'upper'. It may soon be deprecated, too\n", "proba": 1.63120503771097e-07} {"commit": "66f678c54a771e65db86ef0dc98d11c710b9d8cd", "message": "Auto expand groups on text filtering\n\n", "proba": 5.11781934164901e-07} {"commit": "f73472791d1e84d8fbbb159578de1528f1fb1d04", "message": "fix update request query unit test - unrelated to this work\n", "proba": 2.133994598807476e-07} {"commit": "0de7dd53f302242bd473e2f5ca356a00752e00c1", "message": "Cosmetics\n", "proba": 1.7208266172019648e-06} {"commit": "3255bc8061a61150fa21b35ffe05544f97a51163", "message": "Rewrite comment as to-do\n", "proba": 1.3438457244774327e-06} {"commit": "220d9d683610170d434b99baade0507dcb224844", "message": "fixed problem with overridding z-value boundaries\n", "proba": 2.390238762473018e-07} {"commit": "655eeb0f199da26669cfa131311f1a69bc537a6e", "message": "Minor improvement on cbloader, pass representation['data']\n", "proba": 1.3674379317762941e-07} {"commit": "24de5a6701bb89a37319bfc4f7f471ba024773ab", "message": "fix clone matching with git\n", "proba": 4.552998120743723e-07} {"commit": "1f414ea037786cf1c26ecc9b9da9f9d3e600629b", "message": "Add traceback on report exception\n\nbzr revid: ced-3f1a6b194b852cee5167789a60a12fd67cc5441f", "proba": 2.282214154547546e-06} {"commit": "96ec0f7bba9e868b6b1909caf0c908e1e49f1870", "message": "Disable pylint warning\n", "proba": 1.035062268783804e-06} {"commit": "e07c63e65fc55141e2f42332b2f2877dff9358e5", "message": "Only weight by mode number for pres/iota perturbations, fix scaling\n", "proba": 1.294738325441358e-07} {"commit": "0146f0f573664f9c5f414f8376ecb8bb4b5867f1", "message": "Add utils for the handling of workspace ids\n", "proba": 2.1395740645857586e-07} {"commit": "b7133e95692982c9045da57480aea09dcf5bd51b", "message": "Changed variable names to bemore inline with what Django does.\n", "proba": 1.0843785958059016e-07} {"commit": "c0b3c0456c082bf47be4e6834b6aa0a3dcc4923e", "message": "Fixed missing import in testing module\n", "proba": 2.4780328544693475e-07} {"commit": "96b7b9266adeddd7511f05f832fea652cc30893b", "message": "Support for plotting diagrams post calibration\n", "proba": 1.2251194903001306e-07} {"commit": "4216141b61a98585729526fbbfeedc7b30b5ee17", "message": "Add PEP8Warning/AbstractWarning\n", "proba": 3.210490433502855e-07} {"commit": "20ffa51d1dd514d2fc15951cfd547345ab1ddb39", "message": "Fix bug with adding components when there were none\n", "proba": 3.06154959162086e-07} {"commit": "e50a2f21c87be3e3a789fb35ad449a54f14e072a", "message": "Validate uniqueness of redirects in admin. Closes #1871.\n", "proba": 1.1682815426183879e-07} {"commit": "52307fc351c60be6cba2e4b5ad8894759fe6f4cc", "message": "Added whois lookups and proxy support\n", "proba": 1.4372726298006455e-07} {"commit": "a1e883f06791641d2c905f05088fc5d0ce877dc9", "message": "Fix Windows incompatibility issues\n", "proba": 1.1034196177206468e-05} {"commit": "139764623289b828e76ceb1bbbba85ba24bd4acc", "message": "Handle date formats better\n", "proba": 6.63689206703566e-06} {"commit": "ec6f72a93ecff99d0f82b4933b03e4c07e3a94df", "message": "Made mixer take position=None and if position=None, nothing happens when the player moves\n", "proba": 2.1053168893558905e-05} {"commit": "f1fb9b55af415e9620252aa82d3755c99f671e86", "message": "Improve running bluetooth init script, use deque for sharing scan results between processes\n", "proba": 1.2907511859339138e-07} {"commit": "b26e9c68c82da75004fd7d4ee93b6b7a06040431", "message": "extract rdcosts works with the block qp fix\n", "proba": 2.467268132022582e-07} {"commit": "b56bd602a3ee33c57388c8d48f2d4f01e5271cef", "message": "types: Refactor Indexed.compare\n", "proba": 8.901090495783137e-07} {"commit": "9db89f873bb6564555d2d7854afc3eba45ca9d5a", "message": "Fix invalid call to set_object_matrix\n\nThis code was obviously never used, since the call to set_object_matrix is a member of self.objecthelper, not self.\n", "proba": 1.5779220120748505e-05} {"commit": "01f6a01cf3f5797f49238272e4766e5f9da63ef0", "message": "Comment out the old main() method, now there are better tests\n", "proba": 1.8098356235896063e-07} {"commit": "ede5ec8e224af0270ec2f02be0000038618946cd", "message": "has_permission: owner fix\n", "proba": 4.977285698259948e-06} {"commit": "3a5183e9ff880ca0cb641d3dd3919d6c65b58463", "message": "BUG: fix run_conf from conf.yaml\n", "proba": 4.845883267989848e-07} {"commit": "0fc6206cc7e11a5cf43eb85869f9d76904496b87", "message": "refactor drawing arc methods\n", "proba": 2.226287506346125e-06} {"commit": "d5f5e00c30656b4566671cf41603493499be1161", "message": "View as base class for views\n", "proba": 1.635672646216335e-07} {"commit": "6eea7d74ee144efff4a9e3ff390a1a203a5eb92f", "message": "Use case-insensitive filenames for glyph rendering\n\nThese should be mostly platform independent, though we don't check\nfor filename length or system-reserved names or anything like that.\n", "proba": 1.1815648548463287e-07} {"commit": "21b6e4857fdd18641c70e734a2ea9ca1ed10a1ce", "message": "Corrected lazy model types.\n", "proba": 1.3439709789508925e-07} {"commit": "094c8d0b8ddf3c3a50aea15d8c00094889814b01", "message": "add entitlement migration for multiple user/groups (schema version 14)\n\n", "proba": 1.0659615412578205e-07} {"commit": "66c71c6933d19adbf6c8614766fedd419c1a886a", "message": "bye\n\ngit-svn-id: 5665c17dde288ce6190d85f4a2d6486351776710@8 f663ce52-ac46-0410-b8de-c1c220b0eb76\n", "proba": 8.562968787373393e-07} {"commit": "19c62f024d097597a446188e227136b788d97a6b", "message": "Rewrote a comment.\n", "proba": 1.2824261830246542e-07} {"commit": "5b6d8b915d4f2ea08a713ee306b77d8abe82b771", "message": "deleted old filter\n", "proba": 1.1284612355666468e-06} {"commit": "6dc5e887d148c5c48883ae2dfb07a319c1b71a0f", "message": "MAINT: remove duplicate\n", "proba": 0.9996104836463928} {"commit": "4e63ea76aaa30dba2a1161ac63c9c17361721bc6", "message": "upgrading to dojo 1.7.2\n", "proba": 1.793935240357314e-07} {"commit": "6bd010b95e5088cbd8babfde061f6c99e76326c9", "message": "Changing DN creation to do searches for entries.\n\nThis change adds additional interoperability (as many directory servers and LDAP admins use cn, or another attribute, as the naming attribute). DN creation will incur a slight performance penalty for doing so, as DNs must be searched for now. User and project creation skip this performance penalty, as there is no need to search for an entry that is being created.\n", "proba": 1.218029410665622e-07} {"commit": "a690ec8e93691e28460524e4b70eb7dcbd6116cf", "message": "renamed variable to avoid masking", "proba": 7.669254955544602e-07} {"commit": "803591ed5bf8cce342c64a371e3539055e7ed650", "message": "do not flood blocking io messages\n", "proba": 4.0316373883797496e-07} {"commit": "253f877d4efa5491d7b14b898e10e2694792b93c", "message": "you cant pause a pause!!\n\n", "proba": 1.2196501302241813e-06} {"commit": "d06626c0d6b90ef26915c7df5d1effede30629d7", "message": "Bug Fix test for string check\n", "proba": 2.0712559489766136e-07} {"commit": "1f6ab8f0b631ae2b69313b288ae19f1e4aa1fbcb", "message": "versao\n", "proba": 5.698237146134488e-06} {"commit": "c6bb2f3bdbb7c0ff8c603c5a59a07628794efefc", "message": "PEP8 fixes\n", "proba": 1.4330707642784546e-07} {"commit": "1370a190d9abfcdde4e9c78895a96da88f0d1918", "message": "removed debug pring\n", "proba": 6.422641831704823e-07} {"commit": "2fcc10656222bea6056742ef943c1b82724c0b56", "message": "PEP8 fixes.\n", "proba": 1.2153270745329792e-07} {"commit": "9715472fa02bee06b2f54919f2db75c46dec0aee", "message": "Style fixup.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@openrobotics.org>\n", "proba": 1.0824341245552205e-07} {"commit": "9548cee850d102df4bb22fc3f395c1a65b65cb38", "message": "* Fix bad query in __project_to_dn\n* use __find_dns instead of __find_objects in __uid_to_dn and __project_to_dn\n", "proba": 0.0008663904154673219} {"commit": "be69de4aecd987f195151a88ce47937a60047b4f", "message": "Add in some additional checking to rock ridge records.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 1.096489370411291e-07} {"commit": "0598fc6adc6d6a721586a290e5de2d8d0b2e5f4b", "message": "Fix a typo of tabstop\n\nOnly in nova/compute/manager.py, there is 'tabstop=6'. This change was\nintroduced at commit:2d0578c5. But this is an unintentional change.\nThis commit fix it to the same as others.\n\nChange-Id: I5c4ffe354e2d37caa231de561ac257f23c6ab7d5\n", "proba": 0.001943323528394103} {"commit": "479835a3ce681dc30166e8ee07e3a738abbdbb04", "message": "Enable print_method_wrapper to output to an existing stream\n", "proba": 4.2040576886392955e-07} {"commit": "15efe1c88b8688e2d164ab8a7a303e089f9ce66c", "message": "Fix dict.get no default keyword\n", "proba": 1.19269179776893e-06} {"commit": "eb27dc4f3608e6e7ab523d62dcfe5fc76879270d", "message": "Documented why we are doing heavy copy/paste for oracle's introspection.py\n\ngit-svn-id: 8565a48cdfd6c6c8794571f15ad5cf29f787104e@82 fc56e334-f652-0410-822d-0b1548283ca8\n", "proba": 8.985629165181308e-07} {"commit": "b69ddd64ba6d800128f9a483c89a7c26979cd59b", "message": "[Trivial]Remove unused _last_bw_usage_cell_update\n\n_last_bw_usage_cell_update is no used after 14cc25552a52e6898a81b9877c6d2c0423a95d57,\nthis is to remove it.\n\nChange-Id: Ic249dbbb5a64808377d8127b0892c4ac8afaaa25\n", "proba": 2.4789624148979783e-05} {"commit": "7210cde7935da947aa0048fe43b03d8c78f4f1c2", "message": "moved this to planetpy\n", "proba": 0.00028402224415913224} {"commit": "c38200263a23306cff3b4be7fcb4cedc6a82126e", "message": "increment version\n", "proba": 3.6055473628948675e-06} {"commit": "1762f5a12c158add00fc8faa005718f09faf43dd", "message": "Expose Project Manager to Maya's Avalon menu\nIt's under system, to underline that this is not meant for artists\n", "proba": 1.5592998181546136e-07} {"commit": "40efb42f8311e036168b42ec3b790753f21fa1a1", "message": "\u0414\u0435\u043b\u0430\u044e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u043e\u043c.\n", "proba": 5.114847567710967e-07} {"commit": "fde52575b76d0508f962a6384c673d83d1bbcf35", "message": "Fix wrap and remove unused imports\n", "proba": 2.482389618307934e-07} {"commit": "64c855c029be18b66e8912ef4de74ec29fd5dcd8", "message": "Ora il tipo di augurio wishes_fabriano e' assegnato correttamente\n\nFixes #15\n", "proba": 1.206953044174952e-07} {"commit": "7ed45fe61416213a4fbfba7e45a765e43b933e16", "message": "Fixed some format strings\n", "proba": 8.629318472230807e-06} {"commit": "70212d0f04345b4a46e7f1d2cf90d3bdc30d33c8", "message": "Provide a mostly implementation of make-immutable-hash\n* This is needed for chaperone micro-benchmarks\n", "proba": 6.798745175728982e-07} {"commit": "8c32ae9cb05df96d934852fa429a20246254090d", "message": "Support pay-to-script addresses in tx tool.\n", "proba": 1.118764245688908e-07} {"commit": "9b46f1323075bec4e6ce180ea471ed9a8e1f1fb3", "message": "updated args\n", "proba": 7.772603680678003e-07} {"commit": "9ba683bc0ce2d380c690105fcb8b73bb42545a7f", "message": "Fixup relative imports\n", "proba": 5.318219677974412e-07} {"commit": "9ca8294c9d3365cabd80737b5db8517a2d44ef55", "message": "DOC: Fix parameter docstring in `dipy.io.streamline.load_tractogram`\n\nFix parameter docstring in `dipy.io.streamline.load_tractogram`: fix\nname and type.\n", "proba": 1.1694218926550093e-07} {"commit": "f08cf0cb0716cd56dad5ca945affa82a820c7507", "message": "Support configuration constraint deferrability\n", "proba": 3.92272596627663e-07} {"commit": "4e13f6e8677ea8f7f2f0fc46ba5fe0e700715786", "message": "BW: Comment out scipy.optimize.least_square since it did not overcome performance of scipy.optimize.leastsq when f_transform=True and cholesky=True. Comment lines will be removed after feedback of other developers\n", "proba": 4.193042570932448e-07} {"commit": "a6327215c7b00e4eb15bb0566530ced8448fcdcc", "message": "adding queuq to wallpaper\n", "proba": 2.5920815005520126e-07} {"commit": "a1072a8e696e3544f4c14d3a717fdd7751c20c0f", "message": "RF: wlls_fit_tensor comes after _wls_iter\n", "proba": 1.931452970893588e-06} {"commit": "7b267637dc0d43b9ff05daf1892287ad152743e0", "message": "pydiatra.check_re: override some Pylint false positives.\n", "proba": 2.510540184630372e-07} {"commit": "e4e6111ba9edb245cc225e38cce5ac7ac97bedc3", "message": "added methods for getting alerts and notifications\n", "proba": 1.253654602351162e-07} {"commit": "6266bfb53e694c75a66e0b99f3ba442922f777d4", "message": "removed potentially stale state_root member\n", "proba": 5.364690878195688e-07} {"commit": "064a5d777860766a5019e06531668344d5008dbf", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "1beb0fea1cd89cf418895b92013b915de9c77bef", "message": "Add MOD_ACCEL\n", "proba": 4.205191089567961e-06} {"commit": "2a05502efd2feb7f2d2b20d56eaa7b805d254d4c", "message": "(feat) dilated conv update\n", "proba": 1.6959697290985787e-07} {"commit": "946aa1e68c27936dd2a538d0ae20c5dd4a15df9f", "message": "tweak\n", "proba": 1.375922693114262e-06} {"commit": "dc624588f70b48419d3c618148cfa864b7ca3e26", "message": "name is case sensitive in getElementsByName(name)\n\n- element name is case sensitive, especially created manually\n- if elements are automatic generated from makeElement() method, the\n name should be lower cased\n", "proba": 2.795932778099086e-05} {"commit": "67ed4c084ebfb1c4f018136fd5452a89ccd2c253", "message": "Added measure frequency cli option\n", "proba": 1.4443628515437013e-07} {"commit": "56e26f1bc3ffb312a4027d4b47da19a622ed37e9", "message": "small fixx\n\nr20260\n", "proba": 7.01865531027579e-07} {"commit": "c3d8a00a028d59851569793b9d8472cf88743f6a", "message": "Fix unittests\n", "proba": 5.105060154164676e-06} {"commit": "571f3f177b000c3dc17721dec5eb1e768cf65b09", "message": "Update pyglmnet simulate to accept fit_intercept as argument.\n", "proba": 1.0868198785374261e-07} {"commit": "72d1048aada93b8848a08b6100703f5ded155955", "message": "How hard can it be to fail?\n\nShould now shut down everything if we run out of memory, keyboard\ninterrupt, fail a db write, or anything at all goes wrong. Or if we\njust finish.\n", "proba": 1.5309218781567324e-07} {"commit": "d8f33ac79784b33ff9d1b8dca04c70d51c267d14", "message": "stash\n", "proba": 1.7397118199369288e-06} {"commit": "f68bd28e7a28612e57afb07231191d0e35566e5d", "message": "Move fplot to get_other_species_site_index funct\n", "proba": 1.6222843441937584e-06} {"commit": "f5deaba43a1c57b3433a83ea2321713c2550eea7", "message": "Add storage style for vorbis images\n\nOriginal: 2e23e8204135353f00917f17b08a8f5344fd9e8a@0ada772\n", "proba": 1.8651573441275104e-07} {"commit": "1cd8a1a6fad23df651f428b700cbda5cd5d86a5e", "message": "conpaas.services.webservers.manager.client: raise proper http error exception\n", "proba": 1.6655824310873868e-06} {"commit": "7e8159371a11de1a315875b1c982de05c6c7c75b", "message": "Sort transactions chronologically.\n", "proba": 5.349591901904205e-06} {"commit": "7d59a3a3525a53a058eacbf01d54d654b46208f3", "message": "removing init file\n", "proba": 7.171933589233959e-07} {"commit": "779c9bff134b2199bc91eec9d8362bc0e5f90017", "message": "Records tag for v0.4\n", "proba": 2.960701976917335e-07} {"commit": "ca044108ba7c8a97214a5719157b0db590b1d678", "message": "Use prepared statements for benchmarks\n", "proba": 1.3239883855931112e-06} {"commit": "4297ad1bd17bc7ff03d899961b4e93d74480f012", "message": "Fix test decription\n", "proba": 2.850321379810339e-06} {"commit": "4634a431c44428c471dd1c488881f378ed5baf31", "message": "Fix benchmark warning when libev is not available\n", "proba": 4.4406073129721335e-07} {"commit": "13faead524b598956c7f2b407e0ace4b9dfdf24f", "message": "add id", "proba": 2.2137137420941144e-06} {"commit": "8cbd6a3d45c51b684722bb2e12720af96cf0c6d1", "message": "[svn] use the _ reference directly instead of ugettext\n", "proba": 2.426078822281852e-07} {"commit": "e67ea713bb77929792ee4f72eaea0e3e0fd21dc9", "message": "Querying by NORAD now, 48 found, 78 notfound\n\nWhy are we missing so many?\nACRIMSAT doesn't seem to exist on Celestrak but n2yo has it.\n", "proba": 1.6559449989017594e-07} {"commit": "8319282b9264b2058e68648ad410789175eb2b01", "message": "Update Mindreader to use copy and no longer manipulate state\n", "proba": 1.221991112743126e-07} {"commit": "50c3bf0372fac6b48004be35fa9340a7df455e42", "message": "TST: sparse.linalg: add preconditioner smoke test\n", "proba": 1.610748950042762e-05} {"commit": "d628c5019e338a31aa723c42bdfb7adf6bdcb55c", "message": "refactor ion to subclass composition\n", "proba": 7.012820901763916e-07} {"commit": "124bc1bf7ed95b879331b17db68b359d657a617e", "message": "fixing dependencies in a script\n", "proba": 7.375493282779644e-07} {"commit": "1384031abae58360a0fad39b6a61dfa3303208f9", "message": "#AGR-277 #comment Added simple check for multiple cpus. Thanks Pedro!\n", "proba": 9.789166455220766e-08} {"commit": "9f24ce4c309402b83cce62ced913d56f47f9de7a", "message": "system: newFile returns '', like sceneName()\n", "proba": 3.197885234840214e-05} {"commit": "ef805b1ef7959816ae1674a7dca688b409051b81", "message": "lowercase p", "proba": 0.9999656677246094} {"commit": "98b8329bdfc9db0d041babcdeaebdfc1c39eae98", "message": "HG-1735: FIR monitor scaling. TODO: Output monitor scaling\n", "proba": 6.3156162468658295e-06} {"commit": "d0978da9f2fe3c510d7cb594b5920468f6afa8ea", "message": "added a worldline format for data storage.\n", "proba": 1.2672799698520976e-07} {"commit": "ef6425291bde0e3f829107581f00440c9dba0653", "message": "sheets fix naming issue in Sheet.columns\n", "proba": 2.419679049125989e-06} {"commit": "e247ab2eb30262e839436285c2aa7091384112c3", "message": "Implemented create_room function\n", "proba": 1.770860194483248e-06} {"commit": "bc793997059707d7bd47416caa3ce27c9edbc268", "message": "Fix #250: exception when pypi.use_json_scraper = false\n", "proba": 0.9994927644729614} {"commit": "4e734e127d8e9f792604d9941b529e9fdc245f4e", "message": "Fixes to run functional tests on Windows.\n\n * pyrseas/testutils.py (DbMigrateTestCase.invoke): Use os.pathsep\n instead of ':'. (DbMigrateTestCase.create_yaml): Remove win32\n customization since it duplicates code in invoke.\n", "proba": 1.1507955122169733e-07} {"commit": "03900b657e893846f53540e7b972a40d004d0c5a", "message": "Fixing the doctest for maxp, python's random module was not being seeded. It's odd that this worked everywhere but sal-dev without the seed, my only guess is that some difference between the intel and ppc (sal-dev) caused the seed from earlier doc tests to be reused on intel machines.\n", "proba": 1.4171398277085245e-07} {"commit": "95de6afdca54d9783401a0c42d925b2161d45287", "message": "[MIG] sale_require_contract: Migration to 13.0 (#339)\n\n", "proba": 1.16036012798304e-07} {"commit": "205bf5a99a55ef755d2da212a8255ee9a7ab90e5", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "7f7092b116ef702403a855a72dfa4387ba405b3f", "message": "Updated string representation for when orbits not loaded.\n", "proba": 1.1688064205372939e-07} {"commit": "2a26d906a6f2e0b54322756642b35ac1bd4a8c65", "message": "BUG: allow tag and inst_id to be None\n", "proba": 0.0016799457371234894} {"commit": "8df3afa7eeee933de23846855ea9e17c63296e7b", "message": "pdb2sphere: Move sphere output line printing to a function\n", "proba": 9.041443263413385e-06} {"commit": "4c287e272056f1732e6445d59be7349b3f409de8", "message": "Command to rename colors\n", "proba": 7.030271831354185e-07} {"commit": "6ce31bc8519f2dea1987b057fe196de6f775c4d6", "message": "ENH: Added support for keyword check and partial functions\n", "proba": 1.2099644663976505e-07} {"commit": "460c18f4e22e7ca448d20cc947387265b930cb9a", "message": "finished lookup cog\n", "proba": 3.477909160665149e-07} {"commit": "ee8ba6e1c9c8dfa78a6027983e86c289a2717d0d", "message": "STY: Reviewer comments\n", "proba": 1.2885840305898455e-07} {"commit": "d48493ca2b33895867cec4aba113a07836617c2e", "message": "Update server.py", "proba": 7.684967044951918e-07} {"commit": "d407372187370c2e7982f5e8dff13431e6c60bc2", "message": "Got rid of print statement.\n", "proba": 1.5782929096985754e-07} {"commit": "ad9bfb81f16e47d3e6f71df81a4cedd2aa25d5e5", "message": "Double limit for reading phout\n", "proba": 1.850912525469539e-07} {"commit": "345dc013b08e6f419d01757309cccffe3a2489b9", "message": "remove path from filename, remove double slash from url\n", "proba": 1.0599113693388063e-06} {"commit": "d44c81fec7026984a80b8f04768569909571e7e3", "message": "Update server.py", "proba": 7.684967044951918e-07} {"commit": "2a1fcd2753af534d76ca1c311674babafc10a982", "message": "fixed bracket removal in wiki\n", "proba": 1.9466001788259746e-07} {"commit": "e87665c44299f42050c8a3917479bb5ba70ac768", "message": "Fixed progress summary calculation for categories\n", "proba": 1.624628680474416e-07} {"commit": "40ef1733ee96312dcde2c638f2f9e3b9654a6221", "message": "Fix KRHF message dump error\n", "proba": 7.039073466330592e-07} {"commit": "d6dfc5e1cc9004aad66a4a59afcd8fdf443d8fb8", "message": "ammo looping 8)\n", "proba": 7.858346862121834e-07} {"commit": "a7336fd2dfca5796fc359d38e3874c568e6539bd", "message": "cli: add --list flag to list all pastes\n\nthe --list flag returns the list of all pastes on bepasty in a plain-text\nformat, handles broken and incomplete pastes.\n", "proba": 1.0160171370898752e-07} {"commit": "43e0dee618186ace9e0af97cb255474543978384", "message": "forgot dict key\n", "proba": 3.2418095088360133e-06} {"commit": "405007242d114faf0531edf085288e4b3739378a", "message": "Update imports\n", "proba": 6.111071684244962e-07} {"commit": "9d3bce60bd4399f0aef39b2bc43b81427a68d376", "message": "added coordinates attribute to variables class\n", "proba": 5.429657221611706e-07} {"commit": "874645a1af51f41e7161b79ec9fb7056121a6700", "message": "fix bug of ScheduleIterAlg 2,3 case for aldebaran bf16_1k MatrixInstruction\n", "proba": 1.5318873636260832e-07} {"commit": "56b4c05ab6b0e2a3f89136b8cb25eedaf0f4d0ed", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "7e868544e009409d90323f8b7b8567583cd2ce3f", "message": "\u041d\u0435\u0431\u043e\u043b\u044c\u0448\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 wait_printing.\n", "proba": 1.293971649829473e-07} {"commit": "aa8413bac9104eb13c3fa023987e69e99446bfd0", "message": "Further rework\n", "proba": 1.6419305381987215e-07} {"commit": "ca97b66d310be9679ee4e0e9a1c5a23ebe666fff", "message": "Version bump: 0.7.0.2\n", "proba": 5.39086727258109e-07} {"commit": "1b04089e1dbcd92ab68799eb6b7860152b63cb0d", "message": "Added a partial() method to Template class.\n", "proba": 1.0722420995534776e-07} {"commit": "36deefdea6e1a6e80e4f21c8a78186f14bb33fc7", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "d02b657f0f9d2a659287279d3b26863018fb0659", "message": "implement unescape tag, make escape tag actually escape\n", "proba": 8.260561230599706e-07} {"commit": "b06115eab800d1854a08c85ef03104ede60764ab", "message": "Refactored Adjustments function\n", "proba": 3.2583002962383034e-07} {"commit": "2f795fc511e37386a4246adbe6a2197edaf4d310", "message": "-FIX: restore\n", "proba": 2.547127166963037e-07} {"commit": "5b9a435b10375e8cc3f1c739549d187348de7038", "message": "Check if tag was unique was incorrect. I just pulled this logic since we don't really need it.\n", "proba": 1.2470056276470132e-07} {"commit": "60208b6959147d035479c8eb1738efd2bcdacbe3", "message": "switch from c05200 to _ospctax\n", "proba": 6.679528610220586e-07} {"commit": "afd73145b0a5ba7cc6c73852f9f46883534a6361", "message": "Comment out download code\n", "proba": 1.2755930356433964e-07} {"commit": "01f1ae679240ac89a3d0f828e0a14ec7435b915a", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "d53df77c9eb3f085db9182737494aab587d4994b", "message": "Added a property_changed tracker (currently commented out)\n\nUsed the tracker to prove that the bandwidth function works. When you adjust bandwidth from inside of GNU Radio, the SmartSDR showing the same panadapter \"zooms\"", "proba": 1.0031388342213177e-07} {"commit": "6b6c6ed55a298867fd558aca526c5a4fce44fee3", "message": "Remove seek() from parser\n", "proba": 5.025990958529292e-06} {"commit": "dcb58ebff32936c27ed2e9839eb7f5099724d6e5", "message": "UpdateProfileUser added lastUpdate fields\n\nupdating last update fields in updateProfile User\n", "proba": 3.316201571124111e-07} {"commit": "8b96da00f2023f011fd5a0d83262f2eeffd6d70e", "message": "RingBuffer pyLint\n\n", "proba": 1.1390984582249075e-06} {"commit": "dfa0b23cb18b0fb3a793769cf302687c39c27004", "message": "[pyclient] Bugfix the last few commits", "proba": 2.3216574618345476e-07} {"commit": "b75041744db7b8f18af6dee2ceaf543781251ae1", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "3bd9b87ec159d83ed3574ae73243525816282820", "message": "[pyclient] Background images are now scaled before being displayed.", "proba": 9.900477948576736e-08} {"commit": "85f82c851012692c54c17eeb63d8211f3273f08b", "message": "Removed duplicate settings\n", "proba": 4.283640748781181e-07} {"commit": "23bb094acb594157a62e2e136335700b0481b7a9", "message": "test fix in broken redirect status\n", "proba": 3.6367688949212607e-07} {"commit": "598a0bdda6ae0b90e5e4eabc026db5708d02ce2f", "message": "[pyclient-lift] Bumped version number.", "proba": 1.0753470292002021e-07} {"commit": "222b36c41c64ceb07716f70cb6a33c931ed65f75", "message": "removed i18n from dashboard\n", "proba": 1.8541810220540356e-07} {"commit": "3bb7f2b63f19c85282f64500d6ef95fc7a43fd0b", "message": "Remove dependency to geoposition.\n", "proba": 2.421626561499579e-07} {"commit": "4b653faf55a02d9c7944c8934028b9785840fc4e", "message": "[pyclient] Debugging scheduler changes", "proba": 1.7915364480813878e-07} {"commit": "cfad1af0e69209a8c2bc94164a57481ce89a49c9", "message": "#75: provide audio exporter with metadata as a list of tuples", "proba": 4.84016084101313e-07} {"commit": "85baedb76fa51162b7602dc8fc9c3f83ac239f42", "message": "Added auth for rest url generator.\n", "proba": 1.1099012908744044e-07} {"commit": "e4716f58ef11332f4bfa61bdb9648d7f573bb4c9", "message": "Add a check option to run_command\n", "proba": 1.5659717291782727e-06} {"commit": "b1ef548332c76f96b053720f02d9b2e4e27de798", "message": "Version 0.3.1\n", "proba": 6.860967687316588e-07} {"commit": "4e29f9f9880b199ba1bf0c0f03913d63f5c2ce2e", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "6329307e23b17498153c244bd3d75790dd8d9371", "message": "anychange\n\nChange the scripts working directory to the script's own directory, so\nthat it is able to find settings file\n", "proba": 2.1948542894278944e-07} {"commit": "d3aa1c6d1584681f3053ed51a43b0fbd0a73e31c", "message": "Length of logstash is always 0\n", "proba": 3.970002580899745e-05} {"commit": "45a65cb64a3c3d479e05442b331a485843eca194", "message": "Fix tests\n", "proba": 2.8394715627655387e-06} {"commit": "040dd5e62802b91117c7fb0c1ddd211475124a84", "message": "Make pushed data Python evaluable in its repr().", "proba": 2.1734830113473436e-07} {"commit": "6be26d17a89eac20abc0dd54944caed469ef2613", "message": "Fix a bug in cache: same objects have differnt hahs value for differen run in python 3\n", "proba": 1.2410170711518731e-05} {"commit": "f43b0f77eb1d8222b8f4d569a5c089c9bdec4cb6", "message": "cleanups", "proba": 1.479208890486916e-06} {"commit": "d8e17c388d80943dd825bb40bbd096d91a32524e", "message": "*Fix: ndo/mysql missing ack data\n*Fix: ndo/mysql missing update of servicehosts status in update data\n", "proba": 2.073097817856251e-07} {"commit": "14de6bcdc543cd92f30c787ddf1ad15da8327874", "message": "Don't die on short reads\n\nIf we end up with a short read for some reason, try to handle it.\n", "proba": 1.5636153705145261e-07} {"commit": "0d436286341fce20c3cb392fa201fcbb702c12c6", "message": "Rewrite ScriptOp to be a binary type, decreasing the number of serialization/deserialization operations.", "proba": 1.3645095009451325e-07} {"commit": "db6cf0a728cad63c93b345f2203f3ad1f5d5c2f4", "message": "Fix Python net drawing script\n", "proba": 0.0001717655104584992} {"commit": "ea5120975534ed56ab694c4208f7684fbf51ca40", "message": "Change export to setenv for setting CCP4_SCR to TMPDIR", "proba": 1.7160463983145746e-07} {"commit": "52533a64d5866a3586dbfba69c6cb9e39bff7466", "message": "fixed minor typo #19703\n", "proba": 1.5277656757461955e-06} {"commit": "9959cb17a97f497989569b13ac4ec7b56c4b6f68", "message": "add bounds in backup fit\n", "proba": 5.757229928349261e-07} {"commit": "b49c9d67ccdff1a1eefb8c2e30ed77f6ac1685ad", "message": "fixed #1817: added translation hooks for 3-letter month names\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%402912\n", "proba": 4.997286850993987e-07} {"commit": "2f2b9eba5968848aefc3c4f038cda79675b2ae96", "message": "Fix docs bugs in row_value (#3831)\n\n", "proba": 1.6748448672387894e-07} {"commit": "a2e8ee3cb95e0c17e547ac243ab07f07bb9033f7", "message": "More Python 2.4 compatibility fixes.\n", "proba": 1.113794851903549e-07} {"commit": "2de6ae566e2f7351d548e330addd82cc5c4d670d", "message": "fix a typo\n", "proba": 0.9999995231628418} {"commit": "209a92a840d7081d4f39cc86f284b1547107d2d9", "message": "importlib will be removed from Django 1.9\n\nThis is for a future version", "proba": 1.3366404516546027e-07} {"commit": "dd56d185e434492508409e0845461ef500fb72e8", "message": "FR-376-FR-384: Fix exporting non-strings\n\nConvert to unicode (str in python3) before encoding as bytes.\n", "proba": 1.1122192518087104e-06} {"commit": "8a4d59446c97217bdb5de11128a70b36d14dda3b", "message": "threshold\n", "proba": 3.08733360725455e-05} {"commit": "c98ac555ce39fbb5560bb60b71cc43df8ac8b72e", "message": "\ud83d\udc0e non-greedy html token match\n", "proba": 1.795342114974119e-07} {"commit": "6677dddb469f0a4258d66d5da0022c3fc2913f97", "message": "fixed delete() method to use the correct cn\n", "proba": 9.034840218191675e-07} {"commit": "8dcefb70dc905e00a51acfbea09d334039541860", "message": "use isinstance instead of issubclass\n", "proba": 7.36369656806346e-06} {"commit": "29839c8ad3b260cdb335d3d787884da505337ee1", "message": "EPERM invalid prlimits rather than kill processes", "proba": 2.554736795445933e-07} {"commit": "61ade7d36f96aefa27a9625023a765de47fc1a2c", "message": "Add a support for the bones which have the overlapped name.\n", "proba": 1.4423889638237597e-07} {"commit": "06366158931f847894bb53e3440760ab5528c9d6", "message": "Removing minor crud so 'pytest' runs smoother.\n", "proba": 1.1268325295077375e-07} {"commit": "e4be17c844f556cdf17bf583fedfb383d2c07c03", "message": "Ada isn't entirely like gcc_executor; #197\n", "proba": 4.300332534512563e-07} {"commit": "5e5297effdd0336e08525235f91db657df86067e", "message": "DOC: warn if sklearn not installed\n", "proba": 1.5440051015502831e-07} {"commit": "7bf80b6b227a85e64677210a7ffb896b441de04b", "message": "bug fix on printing exception traceback (#268)\n\n", "proba": 1.0942831352167559e-07} {"commit": "6870067fc069c242a6d76f4928c3eac71fc10b8c", "message": "\u30b9\u30b1\u30c3\u30c1\u3092\u8ffd\u52a0\u3059\u308b\n", "proba": 5.499794042407302e-07} {"commit": "43bae46e479a143fffd0869ad8529b6b30cb34ee", "message": "Included worker_id in task event logs. (#668)\n\n", "proba": 1.3712678992305882e-05} {"commit": "949715ac02c0661ce1f514a038b3d633f87d344b", "message": "check_low_cardinality_index: comment out print()\n", "proba": 2.4966419687189045e-07} {"commit": "19c8238fe1aebfe776c32be4790dc2190fc7d481", "message": "Optimized plots\n", "proba": 7.391618623842078e-07} {"commit": "47505eb02c5c34bb15d9d90b5207630bebdf6411", "message": "python 3.X complient\n", "proba": 1.6302876247209497e-05} {"commit": "a48982005ca62240a40b477109bf9d83a4f47272", "message": "Added tests for fcluster.\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@5017 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 1.2276625511731254e-06} {"commit": "18a5b07b6bdd48e992724515926046858edb35e9", "message": "[java][coverage] Make sure filenames is a string and not a list. (#6928)\n\n* single quotes\r\n\r\n* [java][coverage] Make sure filenames is a string and not a list.\r\n\r\nFixes: https://github.com/google/oss-fuzz/issues/6913\r\n\r\n* fmt", "proba": 3.7342242649174295e-06} {"commit": "9ec3cfa8ac88055b5dab7e3b4cb1e47e3185effa", "message": "Implement np.ndarray <- tables.Table for time64col\n", "proba": 0.004670783411711454} {"commit": "bb74652932f6498951bcdc7cb492c4269821ad7c", "message": "indent fix\n", "proba": 2.281826709804591e-06} {"commit": "09fce50d55dbb7c5783a67fd8200cb7a84649ab0", "message": "fix analytics preprint metrics elasticsearch query h/t @aaxelb\n", "proba": 6.429575932997977e-06} {"commit": "d41c885ef2fd9b715e8c9a1321123ef4948ac628", "message": "commit on 2018/02/19 at 10:48:12\n", "proba": 1.1211781014708322e-07} {"commit": "3a52835b29bf1d29168b54fb20387a515b54430a", "message": "Remove old test statement", "proba": 0.9976711869239807} {"commit": "183c06a9deec05663b0d86fdbc565968ae317f08", "message": "processor working\n", "proba": 9.924278856487945e-07} {"commit": "679ffaabe11b2412644b51fdb21751c25b41e391", "message": "Full episodes and language and file types and HTML\n", "proba": 1.2018945483305288e-07} {"commit": "ce0805f1aada5c9391b792f04e805232582ca706", "message": "PEP8 compliancy\n", "proba": 2.2009874101058813e-07} {"commit": "f4d83d062d99ae8896e1f78cb34f605588b6429d", "message": "python: convert class destructor into close function\n\nand let application call close manualy.\n\nSigned-off-by: Jiri Pirko \n", "proba": 1.427481066684777e-07} {"commit": "63d5678bdf391b383f5ebc8743c31ec7967feee9", "message": "Fix MSA provenance formatting test\n", "proba": 5.844330644322326e-06} {"commit": "6efeb8dfc8ddd0d97be7881c20318f7e7e4dd01f", "message": "don't be flaky\n", "proba": 1.712342054815963e-05} {"commit": "fe7e4c88b35c711e34bc3fb6a8b9432faa796674", "message": "Add exp_dir to path if necessary\n", "proba": 2.4502705855411477e-06} {"commit": "faef70f2ffaf48f0fc5ff335e29000704c73cdfc", "message": "Fix conftest docstrings and comments referring to checkWarnings", "proba": 1.306561614455859e-07} {"commit": "d5778741af85e877053041c4db128f8958a1b383", "message": "config2: update variable _imported_modules\n\n_imported_modules is now correctly syncronized as specified\nin the comments\n\nChange-Id: I2f23ec8662d21c442ba80c10b76a350e73045908\n", "proba": 2.3902255179564236e-06} {"commit": "3a929a0dee5dd3524b83457186dec43caf868912", "message": "using file_handler for file references\n", "proba": 3.7922589513073035e-07} {"commit": "239d4b13c2f41fa5466104486ce95bf9e036f79f", "message": "Added compatibility conversion in NdElement constructor\n", "proba": 2.0008594958653703e-07} {"commit": "881d54d543c489d2ddb5dd8e1c55a757d203abd9", "message": "Fixes to Table methods\n", "proba": 1.9904642556412e-07} {"commit": "e087304ee219ff6d0aabd404ba3e426cf112060d", "message": "Use Path to join folders instead of os.sep.join\n", "proba": 3.2390157684858423e-06} {"commit": "f3a62a266938d8ff5e7c04788a00c70032763ad4", "message": "include self._set_receive_timeout() call for test_ims_instrument_status. This is the general patternl besides, I made this test run ok for me locally.\n", "proba": 1.1120923915086678e-07} {"commit": "248ec9e2f38ef778e42d701811f537ea8d2b9316", "message": "usar la secuencia de devoluciones en una venta negativa por POS\n", "proba": 4.159805655490345e-07} {"commit": "52f6fe3e0638691e910b668a1eaf6d6c80b48eec", "message": "Add version test for monkey_patch_asyncio() (#5127)\n\n* Add version test for monkey_patch_asyncio()\r\n\r\n* Update __main__.py\r\n", "proba": 9.86208419817558e-07} {"commit": "86f18369a6d116d4831bdddb6bada23e9cffd4ba", "message": "Added field color\n", "proba": 2.4757414962550683e-07} {"commit": "d535bc198554013631c540d56f5157fde7e81efc", "message": "forward compatibility for framebuffer clear\n", "proba": 2.2222391748982773e-07} {"commit": "0edda2768e3e1a31b79a699d4c78a1fb5a43ab1b", "message": "MFA check and MFA bypass check\n", "proba": 2.0473243012020248e-07} {"commit": "06b56a4f9a7f1efbf8fc288ea1895f18369e1dd1", "message": "Updating method signature.\n", "proba": 1.4188464092512731e-07} {"commit": "8ff8113cb164e9f7eef648e05358d371c7d69f75", "message": "Speed up missing._get_interpolator (#4776)\n\n* Speed up _get_interpolator\r\n\r\nImporting scipy.interpolate is slow and should only be done when necessary. Test case from 200ms to 6ms.\r\n\r\n* typos\r\n\r\n* retain info from the except.", "proba": 1.1168155822360859e-07} {"commit": "ce167e9c06940b7a2eb82793b8dc5a42f377e0b3", "message": "Strip symbols from copyright notice\n", "proba": 1.4704251327657403e-07} {"commit": "fb47ee5919f33ddab27af291f8347c457ea6445d", "message": "Config settings to new API\n", "proba": 2.4393142439294024e-07} {"commit": "a1cd41139d533c528155be0bfe92fa72e7ff86f1", "message": "Add \"linear\" to mdraid's list of supported raid levels.\n\nSigned-off-by: mulhern <7b51bcf507bcd7afb72bf8663752c0ddbeb517f6@redhat.com>\n", "proba": 4.678912830513582e-07} {"commit": "007ab69c9db89902a6be5b9208613147fe8e75ff", "message": "remove default value for customer id\n", "proba": 1.6510311979800463e-06} {"commit": "17cbcbae1637ca7776404cc5ccde764da6717df5", "message": "Allow repeated (partner) steps to define whether or not they should halt immediately when encountering an error.\n", "proba": 1.9361210945589846e-07} {"commit": "ec51c9362ded60a658fe266fc2a63f5d195703de", "message": "Refactor exeception handling\n", "proba": 6.282896833909035e-07} {"commit": "ca9c759335a22d8cc1a8e9ed904d2e2a93035486", "message": "Cast all object columns to strings before serializing (#124)\n\nArrow Parquet can\u2019t handle mixed-type columns. Until there\u2019s a fix in\r\nArrow, to be safe, let\u2019s cast object-type columns to strings before\r\nserializing to Parquet.\r\n", "proba": 1.0051977028524561e-07} {"commit": "7e0bf782f4b64192bee6c64e321faf73837840b4", "message": "added forms.CreatePlanForm\n", "proba": 1.9574980569814215e-07} {"commit": "2eb75e8b62d327ea58127da0ef5f8de2fea0f151", "message": "account_bank_statement_import_ofx is not automatically installed anymore\n", "proba": 1.4846739304630319e-07} {"commit": "1d04d0bf0cd5f71651e1bc7c75ed7ca80cee8109", "message": "Refactorying. Decoupling the concept of info pane and state pane.\n", "proba": 1.0366295555286342e-07} {"commit": "879e562b39cca73baf26748dbc238fcd0dd2ec77", "message": "[IMP] Simplify the logic and remove nonsense restart of the inheritance\n\tchain. Fix class name capitalization\n", "proba": 3.806526365224272e-05} {"commit": "44d00a9420ad4e0c07132b097a46ce549c728351", "message": "Introduce StrokeInfoFactory.\n", "proba": 1.2061717313827103e-07} {"commit": "08fc53feeecaa8ac96d67e83e788cec76b1f7744", "message": "FIX multicompany usability on prod prod\n", "proba": 1.3591430558790307e-07} {"commit": "f7ac91ff14e3d8dc5c1f209e094a568aafddb204", "message": "account_vat_period_end_statement 12.0.1.3.0\n", "proba": 3.6861667467746884e-05} {"commit": "a9dd941d467876526ffc7dd5d8873635044cb42b", "message": "FIX: argv error\n", "proba": 0.0002839275111909956} {"commit": "2608b6be05ee16b5475f446c8c5d123cb2864f41", "message": "Update ext.py\n", "proba": 8.956830583883857e-07} {"commit": "f29caeedbc70a738df30758b8e9f0e77800ca67c", "message": "fix python 3.4 issue (cannot provide multiple dicts as kwargs?)\n", "proba": 1.2569731211442559e-07} {"commit": "3571faf1b3d1dc79ed3fe38c30bdd2998200d461", "message": "allowing named variables in colorize()\n", "proba": 2.737290287768701e-07} {"commit": "9b7eafa5be9fcb8b46ab76aa25ea32fc6d0c6cba", "message": "Improve conformance to PEP8, tidy up.\n", "proba": 1.4107105528182728e-07} {"commit": "2d0abdf25377d5cb26e354bfbe66e841bced613c", "message": "Update synth_S_microtonal.py", "proba": 4.325513032199524e-07} {"commit": "6eb70b138253efbddcaa3bf1f9721581b9508ee7", "message": "Change import statements for all models and serializers to be a wildcard, making code more compact.\n", "proba": 9.932992384165118e-08} {"commit": "d99b0e42596aa8eabe1a4dc14d729e2efc4f607d", "message": "[FIX] im_livechat: performance issue: slow to open dashboard of livechat channels\n\ncloses odoo/odoo#39154\n\nX-original-commit: 6a08db92769da82023d25d04072027f8a54659b8\nSigned-off-by: Nicolas Martinelli (nim) <771435c469f83f6aa9c405ac5e1ed06314a94f2d@odoo.com>\n", "proba": 1.14791930627689e-07} {"commit": "3f85ce442f89b1da7da3a1487b2a7829d47f2425", "message": "small fix\n", "proba": 5.359547685657162e-07} {"commit": "928f52398fc961284520e5ccec578706bb2b745f", "message": "Added Speak event\n", "proba": 1.4553538107975328e-07} {"commit": "6ee8dd827d141105c973b31d4f6d1db293ee25d5", "message": "modified fields of the /syslog endpoint to reflect latest API\n", "proba": 1.574571939499947e-07} {"commit": "2d49f5763e185c134a208909abff2ec65a46ffb9", "message": "DataObject.convert() user-friendly error\n", "proba": 8.337487997778226e-06} {"commit": "b2fb5e7763d418a5081801d696b9984f595e023a", "message": "worldjobs cache\n", "proba": 2.99007268722562e-07} {"commit": "2bb1a2292eb20593f3edde599593228517158e07", "message": "added guard against numerical faults", "proba": 3.2770478242127865e-07} {"commit": "3c9e1c67bfee1fbd1607eceb0b62b4637a092ae0", "message": "Fixed create new contact bug dur to previous patches today\n\n\ngit-svn-id: 289baecb87ce7302604df1403f4d7d4fa175c216@152 f19639c0-9264-4126-8c79-3e5b26eb25a8\n", "proba": 3.277954192526522e-07} {"commit": "61d2a47064c09e9e9ce04d1ab2b4111835d6497f", "message": "Fix LDAP validation to allow user specific BIND DN.\n", "proba": 1.1814465494808246e-07} {"commit": "77348c84f5805440b697aa9d9d3790918c817907", "message": "remove unecessary method from CourseViewSet\n", "proba": 4.659462717881979e-07} {"commit": "6d450c4119522d93b8e9d8671825a0e09cd26c68", "message": "Remove print\n", "proba": 1.5574403732898645e-05} {"commit": "62e5dc3ec861313950b45322087cfdbf4c769da3", "message": "userInfo | fix remove limit links\n", "proba": 1.4219118327218894e-07} {"commit": "28143c0ee2c324622ea15a252c28f3ad5f0b5fbd", "message": "drafts: Use strings as dict keys.\n\nJSON keys must be strings, and orjson enforces this.\n\nSigned-off-by: Anders Kaseorg \n", "proba": 3.134920234515448e-07} {"commit": "41d8271a6dcbe643a66a7caaff8abebcd36b535e", "message": "Small refactor and adjsutment of timeing to 4hr updates for epg.\n", "proba": 9.818093360536295e-08} {"commit": "aa462ec6b9eaa70d6cbc1ca28e10155d6c1c2a41", "message": "Removed rmdir unit test now duplicated in roundtrip tests.\n", "proba": 1.0547772433255886e-07} {"commit": "a16e9ab56a15e2ec8604eeac7cb77d947c26f083", "message": "Add render_mode var to Label\n", "proba": 5.357748591450218e-07} {"commit": "2c4b7200189525dc5691dac2c082a837bbbef56c", "message": "fixed bug where setup_events might be called before objects are finalized\n", "proba": 2.4690876898603165e-07} {"commit": "5ccf22289de99ab6b3d9cc020a1099855ae006e1", "message": "cleanup a3c-cts\n", "proba": 1.189206273011223e-06} {"commit": "411fc0018acabc7e328c7c0c4145589399baeaa1", "message": "added PM and IDL boundary handling for lookups\n", "proba": 1.1763053464619588e-07} {"commit": "2a8c617a0b50daa6f180948c6aad2ed31353836f", "message": "Fix bug in service and execution lists\n", "proba": 4.740427357319277e-07} {"commit": "08b23a660189f10f7a5761d43b36952e1b054d2e", "message": "fix getRobotStanceFrame. it was unnecessarily changing orientation\n\n...and doing so incorrectly with a radians/degrees bug. fixes #1577\n", "proba": 1.2341384092451335e-07} {"commit": "32a77a1993dc28df5de8ee55258e236a0d263833", "message": "Sources H5PYDataset should be tuple\n", "proba": 0.9999963045120239} {"commit": "f2ad836892c3f8e5f39c5490c450acf2b45fa2dd", "message": "progress cache fix\n", "proba": 3.784599869049998e-07} {"commit": "9938678e05270c06d328aeb466ab827bab232e3a", "message": "Convert entire table to cartesian\n", "proba": 0.9999994039535522} {"commit": "adfaf836d9e02c4f99999408499c4129b712e6f0", "message": "Check wether an event category is set before setting the color.\n", "proba": 1.317196023364886e-07} {"commit": "b4468d8778d1eacee88a44518ac148a4658d21d1", "message": "added JSON support the dashboard\n", "proba": 2.430249139706575e-07} {"commit": "3d1598aa1ef8239ebe588fcfd3fc61a786b0cd06", "message": "RDA: AILEngine should not crash encountering missing tmps. (#2744)\n\n", "proba": 1.3053012537511677e-07} {"commit": "816fb55d1b4b20e719cf8b4d70ceddf29920efac", "message": "help command understands now all commands as argument and go command is more robust.\n", "proba": 1.2750020061957912e-07} {"commit": "77a5d72c1dc1d265f3f6ec715905bd39c14bc25b", "message": "Update identify (of convert_engine) for faster multi-page PDF thumbnailing\n", "proba": 1.5045691270643147e-07} {"commit": "3ede373f281edb07141b7e8752670c16878eb909", "message": "Use elevated context in disassociate_floating_ip\n\nThe call to service_get_by_host_and_topic would raise AdminRequired\nin the case that a non-admin tried to disassociate a floating ip\nfrom their instance and multi_host was on. Using an elevated\ncontext for the db lookup enables the host lookup to happend and\nallows a user to disassociate their floating ips.\n\nFixes bug 1074437\n\nChange-Id: I3d47b5a48eae21ea913120bd00728a0b8132da81\n(cherry picked from commit eedd98477dd3b8a5561d30732b7ccf71e9a7d428)\n", "proba": 9.730388228490483e-06} {"commit": "0b2f28318afa3328b87883f65c5503926f550732", "message": "BE - provide user id after login\n", "proba": 1.317291378200025e-07} {"commit": "364d83c8add1fdde679aa2823ae94ad7f264cb48", "message": "Add hash function to RelationKey\n", "proba": 0.0002794687170535326} {"commit": "ee65c8c49fc79af1a040c6c08c418de21665dbc9", "message": "added \"IDN\" to ReferenceAggregateManager._my_urn", "proba": 2.0457804339457653e-07} {"commit": "e89f949151fbeb4c2e8ded8d6875573645e2e75b", "message": "Display table actions BatchActions buttons in the correct locale\n\nThe table actions' verbose names were getting initialised too\nearly. The most noticeable effect was all the red buttons being\ndisplayed in English no matter the locale.\n\nFixes bug #1126324\n\nChange-Id: I8e21a1ec73f11129317249d103c081e90fa13a34\n", "proba": 4.1369075916009024e-05} {"commit": "673f1aec783ff9f67d29c606b62ffb95edce5f9d", "message": "Linux: install-debian.wheezy.sysroot.py should use build/detect_host_arch.py to detect the host architecture.\n\nReview URL: https://codereview.chromium.org/505933002\n\nCr-Commit-Position: 972c6d2dc6dd5efdad1377c0d224e03eb8f276f7@{#291853}\n", "proba": 2.536144847908872e-06} {"commit": "24b21d68b88ed255c5fcf6d753134554059d1423", "message": "format to pass test work_order_server\n", "proba": 1.2656183798753773e-06} {"commit": "8c41e4d509a11eb80a4592b6639796df2e9ac389", "message": "last fix I hope, should test things locally next time\n", "proba": 2.4075040983007057e-07} {"commit": "c5a8b16bc25d6baf8e0d505fbd5005b35335e53f", "message": "Duh, continue skips iteration, not pass. #iamanidiot", "proba": 4.255922760876274e-07} {"commit": "bd45aba37cd96926c04f234e7c517b6fab24027b", "message": "working on represent_as for velocities\n", "proba": 8.531611115358828e-07} {"commit": "0f8824e47055ae00aa760c5e16b5c3e9732a1dff", "message": "fixed the issue reported by @huntrar\n", "proba": 1.2606177790530637e-07} {"commit": "20028eee4db8b510f9f8377cb2b5d759cee67b94", "message": "gfwlist\u5141\u8bb8\u4f7f\u7528\u672c\u5730\u6587\u4ef6\n", "proba": 2.4940908360804315e-07} {"commit": "b1d16872e5d5b935ff2fccc91a163f626717b456", "message": "ENH: analyze_beam_spot can have now more than one file for analysis\nENH: analyze_event_rate can have now more than one file for analysis\n", "proba": 2.7534261448636244e-07} {"commit": "32564bec9abba8553f760e24492f8ebd5721cee6", "message": "Simplify data migration\n\nUpdate migration dependencies\nUse historical version of model\n", "proba": 8.929931141210545e-07} {"commit": "5192d10fb340b0d2fc25213f7ca5b33fd011a2ad", "message": "wildfly.py\n", "proba": 4.151987923250999e-06} {"commit": "004cc4449a80568216f05000f940f3e570695aa1", "message": "add metrics to nova_api_local\n", "proba": 3.0729624995728955e-06} {"commit": "725021765e4c39a487fb59be3b5269ece7bf1ecb", "message": "Minor fix: bugfix\n", "proba": 1.9962235455750488e-06} {"commit": "cbf9a5d2a06f6547e41855754221f47466a53b2c", "message": "fix: Evaluate results for random forest with new best features and parameters\n", "proba": 1.7712305577788356e-07} {"commit": "f5e4570c3d547fe93f238b100cc08bde8de0124b", "message": "Refactor files filter to sound more pythonic\n", "proba": 1.2623742406958627e-07} {"commit": "623b1f5d3799f0016af632285ad1bacdc7d2d2f1", "message": "print added11\n", "proba": 4.5257723968461505e-07} {"commit": "9c3f61d6b5c1cf660748e3cdd95785154ce1da97", "message": "pep8 line limits\n", "proba": 2.449284295380494e-07} {"commit": "fbcfaa53810adb31ee207f74f60f07a5a6f83365", "message": "Enhance Datasets docstrings\n", "proba": 5.104784577270038e-07} {"commit": "b3709c3723672f4af8850a68a4ec896f59a55d7c", "message": "Removed some magic but added a number of details for the reviews, including the rating, user name, user location, and date of review.\n", "proba": 1.1077313644136666e-07} {"commit": "549c67d77aa0c924785a6393ffc1f4602c1b6dd2", "message": "Detailed error\n\ngit-svn-id: 4179480af2c2519a5eb5e1e9b541cbdf5cf27696@9283 07704840-8298-11de-bf8c-fd130f914ac9\n", "proba": 5.439312644739402e-07} {"commit": "72db5e2365d7c183e25d67dc6f19c78e5de97da8", "message": "Update joinparttab.py\n", "proba": 5.253824610917945e-07} {"commit": "b84864f9221bfe83fcc8f5da6257d2fc3bd7e756", "message": "Fix event channel IDs being stored incorrectly.\n", "proba": 1.2634750135021022e-07} {"commit": "7bdb26f96c43ed0a1e39b36f6510b32ca6157cf1", "message": "journalpump: add 'file' output sender\n\n{\n \"output_type\": \"file\",\n \"file_output\": \"/data/logs.txt\"\n}\n", "proba": 0.018596690148115158} {"commit": "137a5a84a7aae2644cc1707bba32a23a4bac5bac", "message": "support array attr calls\n", "proba": 1.124047798839456e-06} {"commit": "7790babdc7b0f6721ad37541287c503bfd4ca451", "message": "Allow array analysis to take an optional initial equiv_set\n", "proba": 7.742730190329894e-07} {"commit": "487ed2734af1daf7fb9ebfc4d8626431700fdacf", "message": "Add functionality to EmailForm\n", "proba": 5.049961941949732e-07} {"commit": "c82b0741579a9affac05ce6e7f5bf609f97be566", "message": "Update __init__.py", "proba": 7.178883242886513e-05} {"commit": "22f4074daa9a3a47c42de1f1d2061c5e6ab8a705", "message": "Zabbix 3.4 support fix for zabbix_template module. (#33462)\n\n* Zabbix 3.4 support fix.\n\nAs of 3.4 Zabbix version application does not have 'updateExisting'.\n\n* added updateExisting in applications for old zabbix support.\n\n* small codestylefix\n", "proba": 1.7870642921025137e-07} {"commit": "285ad34ce8c8465f20b6315d699f588739361b3e", "message": "add type info to relationship table\n", "proba": 2.2196974214239162e-07} {"commit": "0c3508ceb09df795b43ac830032e7d229046e572", "message": "Releasing 0.4.10\n", "proba": 7.583043384329358e-07} {"commit": "d085bb2b2200629531138440022c8af18e514576", "message": "Fix creation of multiple functions\n", "proba": 7.556964555988088e-05} {"commit": "6726fd039f7a0494d6243f612d9ade4ec88db45d", "message": "Fixed a few things:\n\n- Flush output a little more frequently to ease debugging and test development\n- Fix output when compiler diff fails\n- Fix .good filename generation for platform-specific .good files\n\n\n\ngit-svn-id: 88467cb1fb04b8a755be7e1ee1026be4190196ef@16535 3a8e244f-b0f2-452b-bcba-4c88e055c3ca\n", "proba": 0.00045172919635660946} {"commit": "e06b107d2dfd4682d807b7e871d3bcba501d4636", "message": "Template (and include vars) PlaybookInclude paths\n\nFixes #13249\n", "proba": 1.2511081592947448e-07} {"commit": "17eb656494997d7c13211456f24cdbcafc5b7a0e", "message": "Fixed globals\n", "proba": 6.762364819223876e-07} {"commit": "b39534201fccbecbfd5ef8d607e68b59d4265249", "message": "[cloud] If inventory file isn't able to be parsed by aws_ec2, raise an AnsibleParserError (#36387)\n\n* If inventory file isn't able to be parsed by aws_ec2, return an empty dict instead of None\r\n\r\n* Raise an AnsibleParserError instead\r\n\r\n* remove extra lines\r\n\r\n* aws_ec2 inventory plugin - fix path matching logic\r\n", "proba": 2.2469976102001965e-05} {"commit": "7afd6f0c23cf5f71d515c1f74ee7d9c9b4d6ef4e", "message": "Add unique suggester output to each elastic object\n\nPrevent over-eager deduping of results.\n", "proba": 5.107813763061131e-07} {"commit": "23041c3b6cc40d9f7fd325afb924448aa91fdf38", "message": "Fix error with `meta: clear_facts` (#26406)\n\nUsing `meta: clear_facts` was failing with\r\n`coercing to Unicode: need string or buffer, Host found`\r\n\r\nThis applies the same fix as 3101e24.\r\n\r\nFixes #26405", "proba": 1.166022457255167e-06} {"commit": "0e4a3515b05de27d487931605d1159b51315c848", "message": "Make ValidationError class accessible through field class\n\nSigned-off-by: Branko Vukelic <26059cc39872530f89fec69552bb1050e1cc2caa@outernet.is>\n", "proba": 3.026663648597605e-07} {"commit": "83dc28ecfd8cdd17f39a260b41c9baabdf3d43a5", "message": "Report disks/interfaces in consistent order\n\nMake the protobuf formatter report disks and interfaces in a\ndeterministic order, as it makes testing easier.\n\nChange-Id: I6915e2c2a6ec6b177037e05888f65d41b88e01f3\nReviewed-by: Dave Reeve <6a84ee3ae0690d4584b99406fb3076392171f50e@morganstanley.com>\n", "proba": 0.0014943706337362528} {"commit": "c233ec198965574691a8acc03589ef4c3d70231c", "message": "change default logging level\n", "proba": 7.106064003892243e-07} {"commit": "77fae20c147373f43d899d4e32d2e1a7bafb41a5", "message": "fix wrapper recursion\n", "proba": 2.9394091143331025e-06} {"commit": "b93a994704b0ce598617af29bbe7e21257da4255", "message": "Allow the Factory class creating RedLock\n", "proba": 3.863423785332998e-07} {"commit": "a6e114644b39925d3999ef663df9c9ae899fd23b", "message": "Look for a raw exit status of 1, or the shifted exit status, so we're\nnot dependent on how the test infrastructure hands it to us.\n\n\n", "proba": 1.0235601877184308e-07} {"commit": "b0d50b347f1939e40f304c37eb9ac287269913f2", "message": "Removed redundant code\n\ngit-svn-id: f7ca42d4f7c3930e822c8dbb0f12c631f9ab77de@80 a28edc5c-ec3e-0410-a3da-1b30b3a8704b\n", "proba": 0.9992660880088806} {"commit": "716558bce4bd5cc3516246a29d34e0340afc94ab", "message": "Bug fix\n", "proba": 5.465154799821903e-07} {"commit": "901a4ea5d07fdef3487ace27c0efd9bab456990d", "message": "Fix bug with beer logging\n", "proba": 4.839911298404331e-07} {"commit": "9b96c142d5338fdb9d30ceb9b04b93839d738d90", "message": "[modules/battery] Migrate constructor\n", "proba": 3.537641077855369e-07} {"commit": "42b61c02218349d8a1f122eb4e1e4a328d62ed94", "message": "fixed regexp\n", "proba": 1.5716270809207344e-06} {"commit": "280b7982ca8b69917071fc8c20251796e1bd1ea8", "message": "fix: Load data with a user-specified folder\n\n", "proba": 1.8906806644736207e-06} {"commit": "f4d4d87aa7bfda1408131005f77d38817aa986f8", "message": "Dropping operations.py\n", "proba": 1.6197119521166314e-06} {"commit": "93a23b3aed48da6953914036ae488c5b3ab891c7", "message": "Check input dtype before creating pcm device.\n\n\n", "proba": 1.1728999282922814e-07} {"commit": "606016998d77e02c2d251f83659623db844af219", "message": "BUG: Fix for endog and exog as lists and 1d exog\n", "proba": 1.1899283691718665e-07} {"commit": "173c5071cfcd7784c127d821a238e69dbced9cee", "message": "Add test case of python's native list type input.", "proba": 5.647991656587692e-07} {"commit": "5725d8de66a9e01d85724904309f624e840e4f79", "message": "Changes to util class.\n", "proba": 1.2792807524419914e-07} {"commit": "ff718169a038a23413e0767a3ba8d6d1cd0a0b93", "message": "added preliminary pyFirmata tests\n", "proba": 1.1969062541083986e-07} {"commit": "ee6aac36315a9d06df0115f16ba235ee526b4c3e", "message": "Unicodify\n", "proba": 0.9993696808815002} {"commit": "7496478eb18cfa3be41fddd0e424d7af1c82243f", "message": "combine methods\n", "proba": 0.0010514466557651758} {"commit": "81fb00967cdf914678780c6c50576544995d417c", "message": "Update base_client.py\n\nget notes added", "proba": 3.651573763363558e-07} {"commit": "a24c8233229862ff47ad35cf77bf19381b37b6d2", "message": "Set crawler process as instance variable. closes #1\n", "proba": 5.565761239267886e-05} {"commit": "7f6ee553a52bf40fe6fdbbebfb126b55467b4465", "message": "add current directory to front of sys.path (thank Denis!)\n\n--HG--\nbranch : scroll-frontend\n", "proba": 2.144930846270654e-07} {"commit": "9f922818559914ae1837dc03ccffebbfe3e62bd3", "message": "remove porn, they call it adult\n", "proba": 6.537019999086624e-06} {"commit": "6c095ca0169d00d6fdb71e53e6b8c5fe4802fb3b", "message": "no mode in groupby\n", "proba": 2.1717105482821353e-06} {"commit": "60d077fdb6359306d875a5e4e7298c295818f4f4", "message": "Update comments, line break, styling\n", "proba": 1.295702958259426e-07} {"commit": "893c810eed1bca0abd92f033d8a8a52048921b4a", "message": "ensuring that folder cleanup always happens after servers are spun down\n\nover-the-shoulder by @vexocide\n", "proba": 1.368074435958988e-07} {"commit": "fc4a478c483e249d9639a28004f58d9c44f24473", "message": "Update brailleLib0.01.py\n\nstill not working.", "proba": 1.1129539245757769e-07} {"commit": "70c0d4b86511af55165d385c10c2d8a3e0f05e81", "message": "series median test\n", "proba": 1.7031319430316216e-06} {"commit": "60b8bca4993012b4139b3f6f43a03e0998bf3777", "message": "fix bugs in the implementation.\n", "proba": 1.155788922346801e-07} {"commit": "d38b929715c2adfd0ca8e551cb88463248fd3269", "message": "Remove dead code\n", "proba": 0.0014967502793297172} {"commit": "e3cd6a48108236cdee681e2de453a8aca1799125", "message": "DOC: Change example to demonstrate function\n\n\"a * 0.5\" example might as well be new_func(a) directly, it doesn't demonstrate the purpose of apply_along_axis().", "proba": 1.4204927367700293e-07} {"commit": "514f0df732bfdf0f33f263dd48a936f3f0fb5019", "message": "Updating e_stft and e_istft to include option to use librosa's stft. Added a test for it as well. Also updating documentation.\n", "proba": 9.830629466023311e-08} {"commit": "933b08d0ed6daed4783b28d9d846cda92fb8e1bc", "message": "CI: minor fix of argument parser in calculate_regressions.py script\n", "proba": 2.0450957549655868e-07} {"commit": "913f752f58ee578f2b110a8a60a1d0f26a449220", "message": "remoteeventhandler.send() checks for self.exited\nclose() ignores ClosedError\n", "proba": 1.3650890196004184e-06} {"commit": "921a3bfb2fbd563faa5eac1afa397b56f22bddba", "message": "[cscap] account for some more nulls", "proba": 1.302353069831952e-07} {"commit": "04978d919227e74492cb262f1a9566f479fa13e2", "message": "Updating paths\n", "proba": 7.682475597903249e-07} {"commit": "368c75e2774711d3473522cd0aa195a9ad1250c5", "message": "16 May feature\n", "proba": 1.3478010885137337e-07} {"commit": "4d94495d45bb8f4f597475b192b2fb012bb2288c", "message": "[osm] place training data comes from both admin nodes and the polygons in the OSM index (using representative_point)\n", "proba": 1.0501361202841508e-07} {"commit": "b0c767b129e67dce92311ae49042ba3ad6b157be", "message": "move the *last* data point instead\n", "proba": 7.561072379758116e-06} {"commit": "98ea3b9b03b659a33c365cb88778ba5acf005b7b", "message": "Route __add__ fixed to yield route with same name\n", "proba": 2.281548222526908e-05} {"commit": "d596a0e354fe31c5552abb2ddcb8d2c54ee94bd0", "message": "update-wikipedia-docs: clarify J. S. Bach.\n\nMap \"J.S. Bach's Cathedral\" to Johann Sebastian Bach.\n\nReported by Andreas R\u00f8sdal \n", "proba": 1.5233138128678547e-07} {"commit": "40db8c205f2b233dde2fa6735e6a9a752862f98c", "message": "Fix: Corrected test. List in test must be ordered. (#2632)\n\n* Fix: Corrected test. List in test must be ordered.\r\n\r\n* Add tests with big lists.", "proba": 1.076851461334627e-07} {"commit": "2a564612785b63996234a1e823b0bcf682d9356e", "message": "Improve way to save infos when quit\n\n", "proba": 1.2612503041964374e-07} {"commit": "7a8721fcf718a641acd945300ad9ba95d7cb8e52", "message": "Add more functions for log retrieval\n", "proba": 2.0914025355978083e-07} {"commit": "a8e9887f8b05a77f49d8c1de25f185064512f561", "message": "Make sure to verify if we have a primary membership before denormalizing it.\n", "proba": 1.6186683637897659e-07} {"commit": "c057edd2d2e994862c5d049451e7997d3ed2b95f", "message": "capitalize\n", "proba": 0.9999994039535522} {"commit": "12dc2c65240bb6d609db30a56dbb1fe217771a17", "message": "Get six from extern\n", "proba": 1.304746177765992e-07} {"commit": "9c650cb3fb37e8c96ef9642af553ce77a28a1587", "message": "Move welcome message to outside the loop\n", "proba": 1.9686446250943845e-07} {"commit": "470028e10ea01e57ece6df3c953a309e0017d068", "message": "Rewrite file operations using context managers.\n", "proba": 1.6230521282523114e-07} {"commit": "8ed5666501966ca8a2d9bfed8b9111f612b4dddf", "message": "Increase timeout for volume tests\n\nCreating and deleting volumes is slow so tests like\ntest_list_volumes_pagination are often timing out\n\nChange-Id: I87f59bdfb527326a2a90a03d524e38d632ea7377\nSigned-off-by: Rosario Di Somma <73b2fe5f91895aea2b4d0e8942a5edf9f18fa897@dreamhost.com>\n", "proba": 2.055631256325796e-07} {"commit": "9cd339c158f9b8934e9650a8a54767691901ab00", "message": "[FIX] related value on so line is readonly\n\nThe related \"config_ok\" value on the line is set to readonly\nto stop the ORM from attempting an update in case users\ndo not have write access to product.product.\n", "proba": 3.761147411296406e-07} {"commit": "0d5f3ffb74e6d35ce8d26a72c0bb65d4e52342d4", "message": "On editing account, set starter to current value and remove it when not specified\n", "proba": 3.4621899658304756e-07} {"commit": "9c29af0d9b1874c81c272f0f19f278e82bc1a628", "message": "adjusting calculation for Percent Net Economic Impact\n\n--HG--\nextra : convert_revision : svn%3A23a7edcc-78fa-46f5-8c17-2ede83e4f0cd/trunk%401433\n", "proba": 3.19541300086712e-07} {"commit": "b38c3dc65dcdaf3ac8635ef7e87d9f60b6147b91", "message": "add date the pipeline was run\n", "proba": 1.7519123503006995e-06} {"commit": "14c50d45ce6a60e27b5061b4392daaa31ecfdfd6", "message": "Output directory is same as the input directory\n\nOutput directory is same as the input directory\n", "proba": 0.00011012789036612958} {"commit": "2bf12c7802c308a5fb46330cbfb8faa5621a435a", "message": "checkpoint: replacement for aggregation step under chunked regime\n", "proba": 2.113691550675867e-07} {"commit": "3b6aa8b8217b59acfc08ff295c74f95e3e7c937f", "message": "-j is jaccardSpecs\neach jaccard spec is a four tuple, expressed as a single string with commas between the parts\nfour tuple is \n", "proba": 2.3114111513677926e-07} {"commit": "696ce80737e882ac856fd59cd0fe491625f13146", "message": "Invertendo a ordem das imagens do govpergunta (Closes: #320)", "proba": 1.2516069602952484e-07} {"commit": "43c6f054cd8f0bfc8bc11ceab01a7c5fa0160a4a", "message": "Add a function to get a delta of a stat\n", "proba": 6.0102414863649756e-05} {"commit": "1bbffc2152ea1c48b47153005beeb2974b682f3c", "message": "Fix for_each incorrectly using lazy map operator\n", "proba": 4.63122489691159e-07} {"commit": "4a24299f6c591e0dd0afdc5a83d33ae35c6d6031", "message": "Fix code coverage of _compat\n", "proba": 0.0002484351280145347} {"commit": "7c2aed24c59a3c3721104ad5d8d7c3c15c20ced6", "message": "More robust authorize access test. Thanks Toby White.\n", "proba": 1.031426748454578e-07} {"commit": "6e3e273f5fabea8b984502b81735be1cd1a0779f", "message": "Defer OpenStack imports to usage time.\n", "proba": 1.2425077500211046e-07} {"commit": "986adf3e859c0d45123d5eee7b946a4ffe3437c3", "message": "Add a default get_success_url (raising not implemented error)\n", "proba": 1.3165792722702463e-07} {"commit": "c36bea30ea2c5af60466e6b2852746ee66b40f83", "message": "Minor update to missing languge error output\n", "proba": 1.6393488522226107e-07} {"commit": "1d85d9ca5fcfe438d651a8ac1cd5b94a3108f51a", "message": "Update views to use the executor for execution\n", "proba": 2.9640639809258573e-07} {"commit": "e1b9e6c86acf414ba234652868ca9997711aa755", "message": "TST: updated test_len\n", "proba": 8.764120025261946e-07} {"commit": "fcb03d0051161588e048bff86245641672c46a59", "message": "Followup to r1804618, provide a dummy error to avoid a zero-sized array.\n\n* build/generator/gen_base.py\n (GeneratorBase.write_errno_table): Provide a dummy error.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1804620 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 5.438573225546861e-06} {"commit": "74f4d6ac46bb3b196a01235310e2f243f3ea0100", "message": "tweaked runner.py to check that operations in ipython worked correctly, they did\n", "proba": 2.0936415978667355e-07} {"commit": "f6d2ad212babbf2aaf8a5020e6b3e325dffa90e7", "message": "Improved error handling, adjusted timeouts.\n", "proba": 1.1946539757445862e-07} {"commit": "a95ac641857868a9c6f92c06f25579e8545eb6c3", "message": "Adding new command map into main\n", "proba": 4.936180175718619e-07} {"commit": "e5dfb8c7acf3c5dcba2cbe4da29fba74513a4731", "message": "STY: Remove linewidth parameter to simplify API\n", "proba": 2.5992008545472345e-07} {"commit": "734f63accc3ff677b2660ede856977d7c47fc177", "message": "refs #7: Re-added no longer broken test.\n", "proba": 1.0752936674407465e-07} {"commit": "e7ec02e2011721a819d0bafe0245bc017ef89f4a", "message": "speed too high louder alert\n", "proba": 1.303345288761193e-05} {"commit": "74ae481de53b0779039d8d312730a400621c07a0", "message": "BARF: Fix taint retrieval in read function.\n", "proba": 3.004281552421162e-07} {"commit": "990db1a3166a65af556351818aff13007e894d30", "message": "Return document jobs for copy commands\n\nReturn the document jobs when creating tool controllers.\n", "proba": 1.6522379553407518e-07} {"commit": "01d67937a1d7a4f5a20c74a2f9dd0dbe49be63c4", "message": "appends confidence in tuple for where conditions\n", "proba": 8.133082701533567e-06} {"commit": "6e88356eb3ad0a4716205bcfeb6c2adc169f8e51", "message": "Change box.com token refresh log output\n", "proba": 1.3999660950503312e-06} {"commit": "6812bf184b2937d8c1157765054764665ef02fc7", "message": "Implemented correct handling of prefixes based on IEEE 1540\n", "proba": 8.86314239778585e-07} {"commit": "2c22d9021f6b88888f53ace89e0fcc4335c78522", "message": "Docstrings on unit tests.\n", "proba": 1.2006022132027283e-07} {"commit": "4dac63abd782ab958e83d815c1d0817f6e528151", "message": "new burp2 option\n", "proba": 2.275693987030536e-06} {"commit": "7dab8368242b806f8a6188b440167945232fb885", "message": "Sync available genomes and indexes with bcbio-nextgen\n", "proba": 1.313442794526054e-07} {"commit": "4ba4b86815b57b35d38d65f0ee58692d770c6db9", "message": "remove unused import\n", "proba": 7.364135399257066e-07} {"commit": "fb81568b55e0c16ad7358a6ee1311498f292bd73", "message": "Use carriage return return by TermInfo.\n", "proba": 1.2873238119937014e-07} {"commit": "a5bdbdcf7fbb9bec510cc41aea8753f83e4d622d", "message": "Move available backends to class level\n\nSee also https://github.com/sampsyo/beets/issues/650\n", "proba": 1.3830897671596176e-07} {"commit": "9fb5b4870806c0ea6f1c28c2d4abad421627f292", "message": "use_predictions => train_with_predicted_transitions\n", "proba": 3.3992012049566256e-06} {"commit": "c4535a4d42eadf35e4d3945b197beb6319bbd356", "message": "example_module: fix standalone testing thanks to @frimdo issue #103\n", "proba": 1.3338339499568974e-07} {"commit": "08520f56a632b85c23e5ff95cb2ba032d3d8ef49", "message": "Fixed setting initial conditions\n", "proba": 4.667726329898869e-07} {"commit": "c4f259d0dc4cda6a68ae21dbdff8d57a23d8d7e2", "message": "use different logger names\n", "proba": 5.2080438763368875e-05} {"commit": "86c7ba9ca06a796a724d872b5405cea62ef5e33f", "message": "fix: order by modification date.\n", "proba": 1.3756442740486818e-07} {"commit": "787cb32b6ca3b0754bbcaa9c2773508d6aede5b3", "message": "clean code: remove bidirectional fields calculation\n", "proba": 1.3739946552959736e-05} {"commit": "f5ce8ebdb2b03f489d715466bc1a8b554c67023c", "message": "slurm: remove useless __go__ method\n", "proba": 0.0005456936196424067} {"commit": "2e87fd0ad0d5066c4e1284f7e4b67bc7fef5b71a", "message": "Better URL shrinkening\n", "proba": 2.383409878348175e-07} {"commit": "a05a19b0bc93371cdacb5b0da45c36c13fc1c73d", "message": "`actualUseInfoType_model` should be a purely inline model, too\n\nIt is only used like `foreseenUseInfoType_model` which is also a purely\ninline model.", "proba": 1.2118826475671085e-07} {"commit": "d52f117d7b973abe36c2469b39a818b4f22a8cbb", "message": "comment responses2\n", "proba": 2.2179918346409977e-07} {"commit": "0374216bdcbcfe2f04d055303a86d2e22654f3f8", "message": "ADDED import of twit_auths REMOVED import twit_auth\n", "proba": 1.7262919982385938e-06} {"commit": "57380c7c29d660cdba6886fdc7f1073daea2ef3e", "message": "uchroot: delegate machine property to stored command\n\nFormer-commit-id: 5aae9e016908140b0e14c8be029243e09c056806\nFormer-commit-id: 4cad4dffba8f637876a82ff678ec735adf54bfa4 [formerly 40be837965b7b0f60ed886b61d745a2c8240fc42] [formerly 957a89b26ca036c96ff064d2c39dbf3c3d296f36 [formerly f4fdf31ebcabd11f8a4b71721aa93105721e2b85]]\nFormer-commit-id: 0caf55ff5de5947242a584dc13839224d5931bd9 [formerly 6f51cb8fc03ad34c02829fda1b4be447d65aca04]\nFormer-commit-id: c27c492e08fe9322beb6b3eedad459bed6ddc90a", "proba": 1.7006379493977875e-05} {"commit": "fe9b795936d8e9138bde75195e3f351c899a3e58", "message": "plan/comment on sheetSmith.py\n", "proba": 1.9427851327691315e-07} {"commit": "cbb75a54514a9a7cec46d3691499581f0ac28bf7", "message": "hotfix new alph-beta : +/-res selon la team\n", "proba": 1.5815881226899364e-07} {"commit": "1640da662d9ecea53b71095247fb6660e3c3271a", "message": "and what if we only indexed instead of slicing?\n", "proba": 1.1694196899725284e-07} {"commit": "6a48aadd150fe30c135b6d3571cef18c0df2fb44", "message": "refactor\n", "proba": 0.9999991655349731} {"commit": "3e5876593206865d183f95b19875ce9145733837", "message": "jsoncallback does not need to be first param, and may not even be provided for non-JSON full_page requests\n", "proba": 4.639757094082597e-07} {"commit": "89bd34d65edd887f47e7ea07067a21ba76197c21", "message": "adds option to benchmark opencl function including copying time only for autodiff variables.\n", "proba": 1.0491471158502463e-07} {"commit": "6769ba47d23b278ef81e2c3cca99a8894972aa6d", "message": "prend en compte les positions de victoires\n", "proba": 1.8696518964134157e-06} {"commit": "d0634a60fac34037d55b79307b6aa816d2691e26", "message": "Fixing example due to changings.\n", "proba": 1.2812806460260617e-07} {"commit": "cda3a2a5bc37b7a04a1d33578ff44c058656c09f", "message": "Don't raise an error if Xtriage fails\n\nSimply return an null value, which is correctly interpreted downstream\nso that Xtriage plots aren't generated.\n", "proba": 1.066512638203676e-07} {"commit": "d28527b3daaf278c0207e60f50c0526c6c05442e", "message": "Add some modules to bibliopixel/__init__.py\n", "proba": 9.69486700341804e-06} {"commit": "eb7ff9cec9360af0b5c18915164a54d4755e657b", "message": "Add Task's output and parameters columns\n\nChange-Id: I98f57a6a0178bb7258d82f3a165127f060f42f7b\nImplements: blueprint mistral-ui\n", "proba": 2.9743428967776708e-05} {"commit": "d1864949cc1916771e856f1d1ba853d943ae368d", "message": "renaming to match local settings\n", "proba": 2.6068616989505244e-06} {"commit": "536fdca86625c9e63d0583525f56fef15ecec116", "message": "Use unitless JFIF.\n", "proba": 1.3090085815292696e-07} {"commit": "eaf9a688c5606577c2520b2decf03c56eb35e875", "message": "Clarify allow_redirects\n\nMake consistent with quickstart doc.", "proba": 1.6419680548551696e-07} {"commit": "bde21272b92acdc5cbb2206679f2c3a55ae679f4", "message": "default to blanks\n", "proba": 0.001033052452839911} {"commit": "a91ac242f3616d3051f2ba28a81d6fc637c58a7c", "message": "simplify api.request", "proba": 0.0006397127872332931} {"commit": "4a218989932f7589b040ea9296fc2ff7eefebb48", "message": "libRigging.create_nurbs_plane_from_joints: add support for degree 2 and 3\n", "proba": 9.368451401314815e-07} {"commit": "016495ebf082d4832fa002881ea2a326c7730849", "message": "removed unused class imports\n", "proba": 5.451173592518899e-07} {"commit": "541d5b2e82c439162b9064ad1817983062d76ad9", "message": "Even betterer logging of errors.\n", "proba": 1.2379848612908972e-07} {"commit": "bc539580f75369275051fe5ff6e13e76d4a6ee84", "message": "Added check for too many status updates\n", "proba": 1.518634462627233e-07} {"commit": "022d8dc0d167c2f65a6ba2ad0ff337533ef2a4db", "message": "Update ext_hdr_test.py\n\nImproved formatting", "proba": 4.880253641204035e-07} {"commit": "6643dd1a73e77879c5364ddb128ec1999e30528b", "message": "Remove if_any partials. They don't work yet", "proba": 5.551559297600761e-06} {"commit": "f4048d15652892c9c182ffaec49882d7eab1c066", "message": "un-committed change from existing code\n", "proba": 1.6212806031035143e-06} {"commit": "184895ce5f4541e20b0a14810fee532b8b0ea9c0", "message": "optimize away the slice()\n", "proba": 0.0003293541958555579} {"commit": "f67f4f31d02560d7c3d54f756a15010a6857b0f6", "message": "legislature & executive are valid for places where government is not a single thing\n", "proba": 2.0528592870050488e-07} {"commit": "f6a33794570eaa6aaded8f2f9b8845803c62d2ea", "message": "remove unnecessary comments\n", "proba": 3.3880348837556085e-07} {"commit": "3ac57a51d0cc637f41ef76dd275bab79f3dd8efd", "message": "Get rid of some warnings\n", "proba": 1.416173773804985e-07} {"commit": "00328c388fe98452dbb5f68290b562b25253bb7b", "message": "Adding preliminar resume option\n", "proba": 4.2540600020402053e-07} {"commit": "e60c4ac360e2faddbaba1e1ad5539bc174d66f34", "message": "fix spacing\n", "proba": 5.388021236285567e-05} {"commit": "baee40c150a9b8612239a0591e4a147ca015d2f1", "message": "Implemented the reset method\n", "proba": 3.8647540350211784e-06} {"commit": "0a937bb3d6aa0851f0174f728da14d7612546900", "message": "re: issues/230\n", "proba": 1.116138363954633e-07} {"commit": "d98e511c8b45ac9249fb618fa510ec548711dd79", "message": "deafult account creation in company\n", "proba": 1.5473629844109382e-07} {"commit": "d454a3d64fb593ce324c2bcbfea4adc4164e3f12", "message": "Fix stopping condition\n", "proba": 4.719191565527581e-06} {"commit": "6fb639c24e971710a4a98608a6723b0f8aab0d7e", "message": "Add whitespaces in comments", "proba": 1.3718852642341517e-05} {"commit": "e7e4222a745285bf0112c4ccdf777db650caee05", "message": "Assume same sparsity for all layers in a sparse bert layer\n", "proba": 0.00014167898916639388} {"commit": "da73f7a4861204673c91f9408d2476aaa3650a96", "message": "fixed 2004 filenames\n", "proba": 7.874843959143618e-07} {"commit": "373a5821be7988c53a7840a7bc5c1c87b01ae675", "message": "Fix-up GistFile docstring\n", "proba": 6.88998227360571e-07} {"commit": "c97a73f288975e3b630eb45f9abf73ecefae4f11", "message": "bump version 0.8.2\n", "proba": 7.557587196060922e-07} {"commit": "060a0e27c8041ba77ae9340d13aec7e7a18d8db3", "message": "ilan's changes\n", "proba": 4.167210931882437e-07} {"commit": "56b2ac36e5a2359272f4af8a49cfaf3e1891733a", "message": "Refactor the device list\n\nIt is now more readable, which should make it easier to parse the code\nand add new devices.\n", "proba": 2.916117637141724e-06} {"commit": "407cfdc5a37fc0b8471c07cf9d9392684f8a7482", "message": "remove output thread, do it after plug teardown\n", "proba": 7.103949997144809e-07} {"commit": "2d52949a83c71c3fbf6a36db9bf00b2442919484", "message": "Update read_spe.py", "proba": 5.773543421128124e-07} {"commit": "0959cdf077cdcdb968e419675f4ff595e7470179", "message": "bug fixed\n", "proba": 6.739676905453962e-07} {"commit": "de2cd1873efd8e959d380c7f5086bd80c3b62f38", "message": "dossiers: the schedules with inactive workers are no more displayed for a patient\n\nCloses #4735\n", "proba": 1.197233814309584e-07} {"commit": "f5b0e1455202234dfa70f0fd6cb3607dc498833d", "message": "can't have 'None' items in ReadsSet\n", "proba": 0.00033453109790571034} {"commit": "df9c05188aed00a9ccd2a321e04ecc5d91b3bd5a", "message": "saves model and loads it\n", "proba": 1.8932865941678756e-07} {"commit": "86a16042fff5e76985320092b766546db34344f5", "message": "remove defaults for arguments in base class\n", "proba": 7.003343966971443e-07} {"commit": "94b84ea9e0ce3adfe781fd88b5a82d5056582444", "message": "fix exit code\n", "proba": 0.0006974177085794508} {"commit": "ee32a895927b6177cd321dd25b3bc875621c663d", "message": "Reconnect after a connection closing by Bitfinex. Fixes #152\n", "proba": 1.7092175141897314e-07} {"commit": "2efc5ef48f8ac21896b1a748ddae94c439b11d94", "message": "Added INA (INC A) to 65C02\n\nSigned-off-by: Mike Naberezny ", "proba": 1.1228730301127143e-07} {"commit": "81a8a34f1e92533b7a73cf1d8a0993b8e5a829ff", "message": "Allow graphing of success% by removing % from series values.\n", "proba": 1.2435604901384067e-07} {"commit": "e8d8adeb3c1899c77292507068525e860bce8906", "message": "(api/v2) Add ability to filter images by user id (#1913)\n\n", "proba": 1.0783498538557978e-07} {"commit": "a541d51ad2ee929ff5e9e7e0e4e50f13d1c23d1a", "message": "More docstrings for GlobalMinimizer.\n", "proba": 1.1345434813847532e-07} {"commit": "a005ad197639e87cf4e4e3813db03b53bb7fa282", "message": "SQL unit test minor fixes.\n", "proba": 1.3110425811646564e-07} {"commit": "742f88aacf9b99f6c392af0b8a4ed8ad2ef9ab9d", "message": "Make fake_package more resilient\n", "proba": 0.0006842159782536328} {"commit": "ecb73bf2dabe771521ae7e0d944eaf2237fd7176", "message": "Fixed copy= tests\n", "proba": 2.170202151319245e-07} {"commit": "940f03c97faf32515c96beb90bcd3460cdbc2cf9", "message": "added execpton catching in case of message not being json\n", "proba": 5.83895996442152e-07} {"commit": "1e9a9db314582d40c5b4ab604ae9be708c9a48c6", "message": "builder jsmin import - changed error() to log()\n", "proba": 1.8182866767801897e-07} {"commit": "3d5694d6753aeefd494f3acb6ba794a05942b28c", "message": "Bumped version\n\tmodified: opsimsummary/version.py\n", "proba": 1.9262843409251218e-07} {"commit": "374a1e27aa1359e95d6f50ba4b820ee58feb799c", "message": "read key files on demand, so they don't have to exist if not required\n", "proba": 3.9292709175242635e-07} {"commit": "132d392927b3fd25ca7a1b741efd6f67a4db5e30", "message": "DynamicPhase: added kw argument simultaneous_groups\n", "proba": 8.968327165348455e-07} {"commit": "1c61b9857b82681825aa2d0950e57ddfecbe1139", "message": "Remove legacy reference.\n\nPiperOrigin-RevId: 377025147\n", "proba": 0.00011827010166598484} {"commit": "5bd5f11ab80bf3831a9355592da2c6b5a6736cad", "message": "[la.numpysolvers] fix spsolver for older scipy versions\n", "proba": 2.1061418919998687e-07} {"commit": "c6da663e8454c2a67d6f3b2a6ae39cfb93583d28", "message": "uncrufting", "proba": 3.66769472748274e-06} {"commit": "9e07a0ebdb2d62e30019e055c0e35880ce199d92", "message": "fix python3 types issue\n", "proba": 3.8513503568538e-06} {"commit": "0e081b4e42f5e8f449de5887f1c08626b6387b7d", "message": "Okay, not THAT big\n", "proba": 4.403101456773584e-07} {"commit": "a33a3691e76d02401652ea5f064d99abfe964288", "message": "Added output function\n", "proba": 5.389309762904304e-07} {"commit": "3e317a747a48325612aa748bd4c7d38080951ed0", "message": "move convenience function is_with_label() to global\n\nthis can be used in several places; it shouldn't be\nan instance method.\n", "proba": 1.2999706200389483e-07} {"commit": "3948e138f7e33bdefb9589117dfbc241afa39559", "message": "read_hdf bug\n", "proba": 4.1227286828871e-07} {"commit": "1d524a86cad9853bedae128b01660464fbac0ef3", "message": "Update spyonweb meta\n", "proba": 2.995395504967746e-07} {"commit": "71249879298d20f915d4b64178b92537deb3b682", "message": "Wrote the help text.\n", "proba": 0.00039894983638077974} {"commit": "5c4cfa0b204dd5ef35a2285195329bb0ddf37bdf", "message": "hexlify and unhexlify added for configuration script type value\n", "proba": 1.8821735636720405e-07} {"commit": "e6802a8ca8aa25e83417c8bb144c4f3711506486", "message": "Fix new test, all tests pass under tox\n", "proba": 2.048286432909663e-06} {"commit": "2ce6959cc64f9bdeb39931f37376a5bc8f053c76", "message": "Rework of variable names.\n", "proba": 1.582869231242512e-07} {"commit": "1e10f6c84ff857e24e65711a7bde3c2351f0f404", "message": "tools: record analyzer updated end to end analyssis unit from second to million-sec.\n", "proba": 1.0002404593478786e-07} {"commit": "25d96c954bad76e26d059fba8858cded0b0132c2", "message": "need to run django.setup() to initialize it properly\n", "proba": 7.337619081226876e-06} {"commit": "9a190eb00d046777a93c972f81456d46b827a344", "message": "Added ability to have scalar return values instead of partially-populated Document instances.\n", "proba": 1.0541617712078732e-07} {"commit": "8ae4e78854ee2f98ea1a520e65b588837644b399", "message": "Fix keras model updates (#3256)\n\n* fix keras model updates\r\n\r\n* fix style\r\n\r\n* fix style\r\n\r\n* add tests", "proba": 1.24416658309201e-07} {"commit": "6e529a5c15cebcb647286508518284d9dae18386", "message": "remove debug code\n", "proba": 0.023230349645018578} {"commit": "32dc376800c8ddca93c8bb603c37d98ae66738a3", "message": "QChem: move setting `homos` outside of parsing moenergies/mosyms\n\nHandle 'Warning : Irrep of orbital' properly in moenergies\n", "proba": 2.6605320613271033e-07} {"commit": "cdec7325d258a722e6d62631ab3337fe6501afac", "message": "simplify as compensating for network errors is not necessary because of fixed wg acronym bug\n", "proba": 9.910791050060652e-07} {"commit": "1e3d7d25d697b0afa978ecdea21be419b128729b", "message": "returning with default Python Birds ty page\n", "proba": 2.0543907908177061e-07} {"commit": "3330df354c42b159924a6b09c78832d4b5bddfc6", "message": "improve printout\nsearch turtle\n", "proba": 1.2858848776886589e-06} {"commit": "7c07cc9976e805ea838e2eae4aea9017f8990ac1", "message": "Slightly changes skeletons for __builtins__ and sys; fixes PY-104 (for py2.x) and PY-106.\n", "proba": 1.0777966963360086e-07} {"commit": "762ee24301907b90f354c6a3c8b734874f475053", "message": "Create index.html file to find books more easily\n\nCreate publish-docs/index.html when building books.\n\nChange-Id: Ic4329b89044ec2f829dad3a46dd4b26897e19d1c\n", "proba": 6.501023563032504e-06} {"commit": "7a5d48776c4b943bfd21137385195913ee3b0458", "message": "Fixed a bug in the AffineFromPointsLS computation.", "proba": 1.0452602339228179e-07} {"commit": "42fef7a05feaca128dd8aec47f059bbb3d3f49b9", "message": "fix import bug\n", "proba": 5.049904530096683e-07} {"commit": "f21474708efe8d71fac5de352f7a5de11b8b6356", "message": "load serializer config later\n", "proba": 1.6819485892938246e-07} {"commit": "8cfb20796a7e1099a0034e51354e1dda21dc486a", "message": "Minor change to call to np log fn.\n", "proba": 1.1969974877956702e-07} {"commit": "60a10aa14765dd1ffc3c815e1cc1f1cf8cf900eb", "message": "Deleting unnecessary lines\n", "proba": 9.682154632173479e-05} {"commit": "506212513ecd4846fcbe1dd525541d03d0c1e14e", "message": "build.py: print one-line equivalent of called command\n", "proba": 3.647415360319428e-05} {"commit": "e379b88e44f637aa8cd037706d5360b293c3cf3b", "message": "ClangSimilarityBear: Move default out of signature\n", "proba": 1.9844559062676126e-07} {"commit": "ab251848e1386efa8460235d0b6f41b305e51e20", "message": "Fixed all divs indices\n", "proba": 2.705534143387922e-07} {"commit": "fcf3ca4226412022a6f873580c959522990f4e1e", "message": "Deffensive programming\n", "proba": 4.812833367395797e-07} {"commit": "32711558c520cc285821693732242bc52eb02ce5", "message": "drop reload\n", "proba": 1.4980689684307436e-06} {"commit": "608114fbfef3f0a30a71710fda1009bb4ed19dcc", "message": "pbr.version.VersionInfo needs package name (oslo.xyz and not oslo_xyz)\n\n We need to pass into VersionInfo what one would expect from running:\n setup.py --name\n\n Right now we pass in say oslo_context and pbr fails if there is no .git in\n the python source tree\n\n Closes-Bug: #1662266\n\nChange-Id: Ia9da53a5d617d1790c7ed642d114b723e04bddb7\n", "proba": 0.0007151291938498616} {"commit": "6b443df508fbfcc4d1ec1c9bad713731a8cb3408", "message": "return None if extract_text does\n", "proba": 0.9992120265960693} {"commit": "30782952735e90f50c8c5976906d728acd0e5dfc", "message": "Began _calc_bkg_density implementation.\n", "proba": 2.1493251267656888e-07} {"commit": "0e26b467fd8bfbfc00eeb0e6200e9f1f7e1b15f6", "message": "Fixes typo in examples\n", "proba": 5.065474510956847e-07} {"commit": "8cbde67c801e5fefe9f98f968a2491b349e0e741", "message": "Simplify code in coveriteam-verifier-validator by running regex on all output lines\n\nInstead of doing a preliminary check first\n", "proba": 1.2941991371917538e-06} {"commit": "342da9993a5a680c79e0cda0f6e8c85746d64dd0", "message": "Aggiorna i riferimenti a LeenoEvents.assegna()\n", "proba": 1.7897622228701948e-07} {"commit": "f2d9c36760846fb3e20e71e03ac954ff5bd6e158", "message": "Fixing format of the json payload for create_cluster().\n", "proba": 1.4982747131853102e-07} {"commit": "1180126ed81c288cd94aa0aad2e4293964f65e8b", "message": "set owener and mode of passport cert files\n", "proba": 1.5497938932185207e-07} {"commit": "b60aeb3d044883868f1c7f8a780aae0670502bd1", "message": "BUG: Matplotlib legend behaviour changed\n\n* Since version 1.1.0 of Matplotlib, the legend function fails if\n passed a list of lists. This plotting code probably only worked\n accidently, the changes allow it to work across Matplotlib versions.\n", "proba": 1.159751619184135e-07} {"commit": "ba10528ff964df6e674a98fe98c2d45132cccdf0", "message": "Bug fixed.\n", "proba": 1.3285121269746014e-07} {"commit": "1d7fc8dfd3d77cc5ae7aa8c3e3572febd331e4e6", "message": "host upgrade verb that wait as long as needed.\n", "proba": 1.2450402664399007e-07} {"commit": "79f24da17a14f86867961c8e3134fa7b753a5e91", "message": "Use dtype name instead of dtype itself\n\nCloses #129\n", "proba": 2.3599911003202578e-07} {"commit": "65332583a63c99897786de6a3adc49dc76432511", "message": "[OpPerf] Implement remaining GEMM ops (#17501)\n\n* Added run_perf_test call for khatri_rao, added supporting comments\r\n\r\n* Disabled khatri_rao on GPU as it has not yet been implemented\r\n\r\n* Fixed reference pre-assignment\r\n", "proba": 1.218904372990437e-07} {"commit": "c3e74e46e20ceb7cc126f28611d0b9c098a333f2", "message": "Ported test_sandbox to pytest from unittest.\n", "proba": 1.0793931437547144e-07} {"commit": "a45bdd1eefc4fad94b2cfa7bb1c71992ae3b3d9e", "message": "Change hatt table permissions\n", "proba": 4.4323567749415815e-07} {"commit": "82506521e2cc412f96cd1dfc3c8c3ab635f67f73", "message": "finish problem 28\n", "proba": 0.00010349534568376839} {"commit": "0701379a073cd00fdf00718c8635775f34a7fa35", "message": "Disabled debug message.\n", "proba": 2.3290088790872687e-07} {"commit": "525e37bccc7832565023c30497cf027bd61dca84", "message": "new EDivGradTerm\n", "proba": 2.5693236693768995e-07} {"commit": "edb743fe47bcb4865f7d2864984ac95684dce3da", "message": "Add test for sending to PFS room from event handler\n\nThis adds an integration test, that ensures the\n`SEND_BALANCE_PROOF_EVENTS` will trigger sending messages to\n`PATH_FINDING_BROADCASTING_ROOM` from the EventHandler.\n", "proba": 1.113911665129308e-07} {"commit": "de7b354062cab6ebad321a8d5904afc1b37b2642", "message": "Refactored. [ci skip]\n", "proba": 1.7969830423680833e-07} {"commit": "459d0478436a01bf932d2709b992142440ee6534", "message": "change opsc-ip arg help text\n", "proba": 4.831333626498235e-06} {"commit": "90d73de8894c9afb255702686440b3cfa9e4398a", "message": "Add app_dir global\n", "proba": 3.8782959563832264e-06} {"commit": "9f1bc241de61a3a5289e2d642fb52e997b2b0da0", "message": "[FIXED] \u6253\u5305\u811a\u672c\u53c2\u6570\u8c03\u6574\n", "proba": 2.3566489915083366e-07} {"commit": "557cf0bc733c49e973a12bd14fb596af6a7fb5ff", "message": "Call export_card_data on batch save\n", "proba": 2.982306455123762e-07} {"commit": "8fbdfee41f850c28b1c796ccc48a253d92489229", "message": "Include filesystem_type in attr of create_volume\n", "proba": 4.5178893515185337e-07} {"commit": "32ffa258953c4ab9ae72e058063ccd46f37fdb36", "message": "Adds util.all_arguments_optional", "proba": 5.602760938927531e-05} {"commit": "b7f9919908b0e0c89dc99ee65f03e7ea91b476ed", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "7ef0d7974a22093c4ed8db68c939e3a37f7adc19", "message": "That should end with a period.\n", "proba": 0.0004192840133327991} {"commit": "462fcb91045ab0dbb5ff27daa4154831e1c1624b", "message": "BUG: coerce to float in intraday_to_daily\n", "proba": 1.2956938007846475e-05} {"commit": "68bf4e381c3497002dcc890064cd7e2610c2298d", "message": "Slightly better style on warning message.\n", "proba": 1.0831487173845744e-07} {"commit": "fd6689eb3d0b7473104ac09c838b7741cbb02813", "message": "Better example regex in comment\n\n\ngit-svn-id: 1084e09afb3559f9b20874211c01e3a4e28b2f32@123 b970a8a1-db28-0410-9b79-8b7e580363d3\n", "proba": 8.500958210788667e-05} {"commit": "c487b5fe9b90d709b9d374a94d2d36af9ab1b9f8", "message": "Fix PoolsAction\n", "proba": 3.833168307210144e-07} {"commit": "951b5772d62b15d3a18fbd8fe451109c36ac4627", "message": "implementd the is_complete functionality in QuestionAnswer\n", "proba": 0.9983989596366882} {"commit": "3a5f5ab78ef79615ec014c18606cd25d8251f156", "message": "Updated settings\n", "proba": 9.113693977269577e-07} {"commit": "2c4c22c77f9c18ea545d3bce70a36aebbd18256a", "message": "[Bugfix] Allow blank value for culvert inlet headloss type.\n", "proba": 1.0157420149425889e-07} {"commit": "e8092ec561dfdba03b7c666b3e7542d1cbac7530", "message": "forgot import\n", "proba": 4.3756534751082654e-07} {"commit": "54484d9ee5cd8684a5a7726d46c4a5280d645330", "message": "fixing issue 254\n", "proba": 1.5294932609322132e-07} {"commit": "a60e4dac4a5ccee4c4c59261b308261dc4eac851", "message": "Create full test DB in separate fn #2\n", "proba": 4.626585337064171e-07} {"commit": "c51406f2316e9d1bc605717b82c24d8e005d1b68", "message": "Code cleanup. Removed unneeded comments.\n", "proba": 1.0875498190898725e-07} {"commit": "d4fc3405543ed1a2b313ac5f766b8dbdd047c328", "message": "Update sys.py", "proba": 2.1911325802648207e-06} {"commit": "bddd5b08b26de2a8f107f2e798da38a08b3a7179", "message": "Updated econ loss plot,\nImproved up runtime printouts to console,\nRemoved unused parameters from function call to `write_system_response`.\nGeneral reformatting to improve readability.\n", "proba": 1.0727084998052305e-07} {"commit": "9b2573b6c0e82177aa406bc6398acd3516891541", "message": "Minor Enhancements to planner\n", "proba": 1.2104111135613493e-07} {"commit": "3c0718b439335f45381b60df79062a88e28dc48d", "message": "Change __str__ for mft attribute\n", "proba": 4.8892554332269356e-05} {"commit": "a4bfc0c47c1b029ef253c1a241eeb6b465993102", "message": "Increased django-debug-toolbar cache.\n", "proba": 1.3564677203703468e-07} {"commit": "f4d2eab0bfc26ec89bdf944762dc04b54884fa87", "message": "Ditching json fixtures from TestPrivateViews\n", "proba": 1.246173439994891e-07} {"commit": "715a2c58f91d5dd00722281eff991f88a36d65fc", "message": "Generate nothing for non handled type in cython code generator.\n", "proba": 1.294064304602216e-07} {"commit": "5fcecea1faeb9566d6853576aacc96fb5566ecd5", "message": "Remove unused definition\n", "proba": 6.594035767193418e-06} {"commit": "61906f61c218eefc25a98736319376bb74b60752", "message": "Move workers cleanup/start outside SIGCHLD handler\n\nThe former code was editing `self._processes` in the main code and in a\nSIGCHLD handler. But those operations were not atomic, so we could very\neasily end up with missing updates either way, resulting in a corrupted\nstate in `self._processes`. Now everything happen in the main loop, and\nthe `time.sleep()` is possibly interrupted by any SIGCHLD, so the system\nis still relatively fast in general.\n\nYou can see a little POC of the problem and the resolution here:\nhttps://gist.github.com/jbbarth/133cd96bc39dd7950424c2dd49b6ae84\n(problem = first commit, fixed code = last commit)\n", "proba": 0.00041297817369922996} {"commit": "b777ddbc24c200dbdcf2ed3418c1f873e7ec8785", "message": "Removing pyglet import\n", "proba": 3.960360288601805e-07} {"commit": "c79463499ad20b4bdbb799b21ca3379b8946b491", "message": "clunky fix for python 2 compatibility\n", "proba": 2.551462046085362e-07} {"commit": "ff866e5f9b81f0d004e7716566468e355f7d6909", "message": "fixed syntax according to PEP8\n", "proba": 7.64044841616851e-07} {"commit": "890cfa9ebfa23effa0bc73011091b8ed3ba51e12", "message": "Use Report primary key for locks and logs\n", "proba": 1.340151811746182e-07} {"commit": "4556b4dfa1bc5c72c6648a84779e82edb144e483", "message": "Utils.py check not measeures in meter\n", "proba": 2.92910129928714e-07} {"commit": "bbff276b9a0d5b23d2fbfdf22bc5f0ce7b2efe81", "message": "Incorporate new annotations", "proba": 4.899131090496667e-05} {"commit": "d019a5345a7def674c920d5c87e71d82022bf3d2", "message": "Added 4 spaces to conform to PEP8.\n", "proba": 1.0321529231305249e-07} {"commit": "d816cfe4dad04dca78417d9c8613b49822256c60", "message": "Fix handling of UUIDField for mysql, mariadb and sqlite\n", "proba": 4.115133833693108e-06} {"commit": "fd47d6b11833870ce23102a3373b7a50a1b45d00", "message": "tests: add a git.foo( with_status=True ) testcase\n\ntest_git.py now tests the new git.foo( with_status=True )\nmechanism.\n\nSigned-off-by: David Aguilar <9de348c050f7cd1ca590883733c4e531ce610bf4@gmail.com>\n", "proba": 1.2329588798820623e-06} {"commit": "03959997c70913d04ced5b01672f9f8f62148ea2", "message": "fix error condition for switching dns traffic\n", "proba": 4.1079798052123806e-07} {"commit": "6ad1f9aac888e2c811c4246334de4431d6cbc220", "message": "change 'greeting_list' to 'posts'\n", "proba": 0.0033742415253072977} {"commit": "6cd45b25e4297324cd2ab7373575bab17675baaf", "message": "Fix copyright date: the core of this code actually dates back to 1999\n(rev. 1.4 of distutils/fancy_getopt.py).\n", "proba": 4.18840545535204e-06} {"commit": "b33b391bc1d4dc7c70f751c2a2d6831738db8a1a", "message": "Took out some debugging print left behind. BTW, the previous check in comment\nshould read PythonImport, not PythonInterpreter.\n\n", "proba": 1.1125294463454338e-07} {"commit": "225ba72f40db5d9446ba6535af6b6c9bc1477d31", "message": "fix .trailer.quantidade_registros\n", "proba": 8.49759999255184e-06} {"commit": "e62c9c4d984a7aa35a08b37b46d334286cb886ff", "message": "check number of id53s if >500 trim\n", "proba": 4.4790772335545626e-07} {"commit": "e3e0ceaf9fadf3de64488cdb4cb6871b1fcd62dd", "message": "fix case dependencu bug\n", "proba": 4.167659994891437e-07} {"commit": "aadab4f3dd1fe00216a20d61b9bec0cada502461", "message": "Automatic commit Sun Dec 17 17:55:18 EET 2017\n", "proba": 1.214101388313793e-07} {"commit": "4df08641782950196563d6dc431501f3d005dbc3", "message": "version bump (2.7.7)\n", "proba": 1.5018653698462003e-07} {"commit": "b3ba2ccedbddfa697ecd16b5c06441304a89d806", "message": "Return none instead of throwing exception when no data is read\n", "proba": 6.090294391469797e-06} {"commit": "bb9fa091ee0bf4ca80dd8dc41a0fb56a066df0d9", "message": "Set version to 0.2\n", "proba": 0.9991806149482727} {"commit": "c201e2a311be10905b724ccb000f988d5af84dd4", "message": "Added tests.\n", "proba": 1.2918668801376043e-07} {"commit": "db1acbc13e3546a954d9820fcf4b6a20304d9558", "message": "Add explanatory comment", "proba": 1.4305324214092252e-07} {"commit": "882b1a38c7fd14e086fb24836c6824bacfdf3ff3", "message": "fix fields ordert\n", "proba": 5.352962944016326e-07} {"commit": "11db41a132a796dff0574716303ed736d1b327d4", "message": "Updated config_validator to latest mpf_mc configs\n", "proba": 2.3130472470711538e-07} {"commit": "d71905b5d3efd68802d9e61219474761baefe54d", "message": "removed ordered by id\n", "proba": 1.323905962635763e-07} {"commit": "b96f68a41dd29c7abd4147f66a6f482477d0d38c", "message": "add cancel_ball_search event handler\n", "proba": 1.1183625474586734e-06} {"commit": "0898f7bc3e7c5fe657584b1eb0e6e47cba4622e9", "message": "Error messaging\n", "proba": 1.0053719279312645e-06} {"commit": "30cb4263dce26034c9a7f3f7245869b991d10e0e", "message": "Tracking ambulance in clients.\n", "proba": 1.2100660740088642e-07} {"commit": "87d2e5d556261e5d0e1b6bf1188a652a3a3f017c", "message": "fixing fringe time to integer mult of integ time to get segments to same size\n", "proba": 1.562446669822748e-07} {"commit": "ad0b7d796b69dc3ca1102386990b4a2efe0489e2", "message": "Introduce possible alternative `clone_model` which preserves more structure over `clone_module`, such as keeping class properties.", "proba": 1.1064770433222293e-07} {"commit": "c18b77c926af3da91678b2b165c528a141d8bf18", "message": "Fix what went wrong in merge\n", "proba": 0.001679133391007781} {"commit": "89f5b95540b9f33eb8c19dc1ad31354ca5b8a6b1", "message": "edit docstrings\n", "proba": 5.180714879315929e-07} {"commit": "f19f176e952c729ef004e4065858427fea91702f", "message": "Improve ADT error reporting\n", "proba": 5.468637596095505e-07} {"commit": "7a4325567f012d938cd8cde3e33de7771487d58d", "message": "Remove burn-in phase.\n", "proba": 2.5075155463127885e-07} {"commit": "ba83d9cecb37ccf924048e3a4de12f9272a3dc2c", "message": "Don't make logging fail an update by repr'ing an Object with bad content\n", "proba": 2.390525821738265e-07} {"commit": "f5717fecdbfad3b8343618e76cc346a346708f2c", "message": "add import\n", "proba": 4.867109737460851e-07} {"commit": "29e653c089efe5a825ff3d4dec8eaab94610c0ff", "message": "broken code\n", "proba": 8.276349399238825e-05} {"commit": "dd15153cfc53170c2d5f3b491eacb28dc13b56d5", "message": "added notesv\n", "proba": 1.9610369861311483e-07} {"commit": "a6a5376396ed3c7858d3298fe0a2bd935bd1d3fe", "message": "can show remote friend in following list\n", "proba": 2.489744701961172e-06} {"commit": "7e0447b9e3ab6c33151b84c9b71b65740bb950ca", "message": "Fix hardcoded values.\n", "proba": 1.1140323294966947e-05} {"commit": "37edfa40b4860fd8a7d1ed56f2142ee4788b20e8", "message": "updated url patterns to new syntax\n", "proba": 2.620421355459257e-07} {"commit": "d34f5d6de997d40f92c52e623a1b32c05ac760b5", "message": "deepmap supports multiple arg inputs\n", "proba": 5.73899228584196e-07} {"commit": "f4cc4b6a88d3274705a106f8400eb17f0ef7e3f9", "message": "[coor/clustering-interface] store dtrajs, if not yet calculated.\n", "proba": 1.0817860385259337e-07} {"commit": "ace270b8beef15e880ba4dda83720e19e0aceb0f", "message": "added permissions checking to class\n", "proba": 3.3300509016953583e-07} {"commit": "a4f8260b150296b41511be2a40a3ec7b0ca3cdeb", "message": "Reordered Teacher Asssessment Export headers and added two new\n", "proba": 1.1264930321885913e-07} {"commit": "e876c3e6737e75107ac0de76be773033a6f217d9", "message": "Payee field was being set before stripping extra text.\n\nOops.\n", "proba": 1.0589661059157152e-07} {"commit": "621235e69192c14c83628702eeda9da6d74a7d24", "message": "description on the weighted thresholding during ifg selection\n", "proba": 2.013274240653118e-07} {"commit": "edbcb3abfe03c1462a8e1a3f5587842a8670d5b8", "message": "More cleanup for correctness and simplicity\n\nThe jedi completer now won't hang on \n", "proba": 1.1206521577378226e-07} {"commit": "05a14380deafa50ffb1e69c9f71809a2eb158f26", "message": "set_the_config for aperture tests\n", "proba": 1.0183642871197662e-06} {"commit": "601b3d14ed882078e9def56a6e44c007e039f360", "message": "Clean up `logs` and `run` after router tests\n", "proba": 4.609871098182339e-07} {"commit": "036f405208636724f9918ec7ba360e4898d5edd8", "message": "Clean str type check with six\n", "proba": 1.349570908359965e-07} {"commit": "369773d3e83efabba7b9e7e621148440f14a11e9", "message": "[rllib] minor bug fix to shared model, model wasnt actually shared due to new scope (#1503)\n\n", "proba": 9.763434150045214e-08} {"commit": "889d3b69e161d5b44e616133178700abc9ab994c", "message": "Trivial fix, up the rodata section for the discovery board to 512 bytes. (#6259)\n\nThis is more reasonable as the trivial tflite example module needs 208 bytes.\r\n\r\nSigned-off-by: Tom Gall <6276ad6a0b01a14215989cefb9cd52a715c2c772@linaro.org>", "proba": 1.2469057253383653e-07} {"commit": "5f6bec71e34e6f67d5e608e3c13c60e080f1adc2", "message": "testsuite: add tests for the logging utility functions\n", "proba": 4.70671409402712e-07} {"commit": "ed7fde8cf3eb5fdee71f34e41ae41ca40f7e47ae", "message": "Wrote more tests but now tests are failing!\n", "proba": 1.0846371623074447e-07} {"commit": "752665eb30b864229fa7a879e53c33c530b9abbc", "message": "Prevent %s from being replaced by a space\n\nThis fixes #1\n", "proba": 4.5676674176320375e-07} {"commit": "5f947e1caf33c84c257434473d8dbaf5a2ab7c3d", "message": "simplifying broken module import error handler\n", "proba": 1.2378743576846318e-06} {"commit": "a09e185fe54b2d7ad8b6d7e374b444bc6f88cd31", "message": "hopefully fixed BBB stuff?\n", "proba": 1.1179003678307708e-07} {"commit": "139f072e54697abe3e49e66f4122458a41ebfbbe", "message": "Main app: added proper adding of commands to queue - parameters input, CommandItem generation etc.\n", "proba": 1.0728722088515497e-07} {"commit": "f8853a161e14c8f0ee325052f4d50c2cd62da316", "message": "Minor fixes/cleanup\n", "proba": 1.6964550297871028e-07} {"commit": "f6d08f2a05c98aabba2703e86e0decd07b470c13", "message": "http://code.google.com/p/lino/source/browse/docs/blog/2012/1201.rst\n", "proba": 3.509836119519605e-07} {"commit": "ea2d161757458d24499bca25a67ac4e119b069ba", "message": "Fix a bug when logging in as an anonymous user\n", "proba": 3.403353048270219e-06} {"commit": "5ec7f27d38da834ca2e865f367d8dde1340e3624", "message": "Use __tablename__ in queries\n", "proba": 0.9999967813491821} {"commit": "d89259b05560e9c2d45d5c19c702c88dc13634a3", "message": "Forgot an import.\n", "proba": 1.2149654082804773e-07} {"commit": "3f134d29d5be0029fe41ba386daa0117dcde5ff6", "message": "Record the user who is doing the import and sending the registration email.\n", "proba": 1.1886218231893508e-07} {"commit": "1c32e2ee4852b932e365490f100ce0bfef98407a", "message": "Keeper login improvements. KC-224 (#398)\n\n", "proba": 1.233694746360925e-07} {"commit": "67467a8b424ad2b84197a07df81256bc4988bced", "message": "Delete BadHorse.py", "proba": 3.2384041332989e-06} {"commit": "984489cbfdff1897e025c587b04b163e09bf1b07", "message": "Create cmpa_products table in create_bq_measure_views", "proba": 5.481900871018297e-07} {"commit": "68a0b6647d2583682c8d2720329f7a0d1effd819", "message": "Restored the 'funcatron' files to the doc build\n", "proba": 2.838327191057033e-07} {"commit": "2821d11da7c12359af7546f98e194284b8ec66a6", "message": "Update positional_observation_reporting.py", "proba": 9.48356785102078e-07} {"commit": "2e169842ac60c4d24c8daf3c3f96d50f54137f3a", "message": "Updated the doc_it.py script to work with the monorepo\n", "proba": 2.5484027332822734e-07} {"commit": "0896b9b562180368f143d767002a61ca064bf653", "message": "Fixed flake8 errors\n", "proba": 1.5603619374360278e-07} {"commit": "fffff54f6fbfeafb8efb78e6e4f02d02938bb373", "message": "ct tests fix\n", "proba": 4.941134648106527e-07} {"commit": "ad0f611eeb2bd956ac0895e0635607be4443463b", "message": "use default scripts\n", "proba": 1.0604168210193166e-06} {"commit": "4448bd66d60ac43c3dd2dcee0bcaf629af935441", "message": "Fix mistake with previous commit.\n", "proba": 1.1727394166882732e-06} {"commit": "bf3699a4086350776f2145fbcdb043093bbb1a18", "message": "pyflakes/80 cols\n", "proba": 7.386840366052638e-07} {"commit": "bf0bdaa5ce4e77c3af2605d4072bdad7e907b68c", "message": "screenshot dir\n", "proba": 7.264437158482906e-07} {"commit": "9693f3812e4d1b0385046f2b92dee145c43fb58d", "message": "Refactor the PermissionHandler.get_forum_last_post method\n", "proba": 0.00013849884271621704} {"commit": "77cca64286d0fe028c994c3339460fee6ce48413", "message": "fix(Manager): Catch Resolver404 exceptions\n", "proba": 6.467418529609859e-07} {"commit": "e06714b1bb97bfbfe7c4250029a116e819f5d877", "message": "reload directory - contribution by gcorrente\n", "proba": 1.1915795283812258e-07} {"commit": "3fb85467e6bddc4897e16e85d6ffb912fcb68090", "message": "* compat fixes\n", "proba": 1.290421351995974e-07} {"commit": "62b6f58301be9c5a66420b5ff3acf5d013d4666c", "message": "updated cellmanager api/function names\n", "proba": 4.008343523764779e-07} {"commit": "bae5d50127460fe24b25a85c8525d4d09409111b", "message": "[MERGE] https://code.launchpad.net/~openerp-dev/openobject-server/trunk-dev-framework up to rev2125\n\n", "proba": 3.760638094263413e-07} {"commit": "a264541083472bf50e5d0618ade5b811231dbd7a", "message": "[IMP]: loading transaltion files with language name if it does not found with real name\n", "proba": 2.402433096904133e-07} {"commit": "60e171ecd847cd0e71c80484d208cf9cbcbdbd40", "message": "CFY-1272 oops\n", "proba": 6.878112230879196e-07} {"commit": "18801a85bbe3544bbd9345f1d79f200329b5e3e3", "message": "[IMP] add logging to bare except in modules", "proba": 2.3984225094864087e-07} {"commit": "b6b488c09627681c1b1f50e5948dfdc094242ef1", "message": "RR: test partial update for metadata field", "proba": 2.8428783593881235e-07} {"commit": "542bfa96cb88326781d925809cbe009d60667eee", "message": "Change classifier threshold.\n", "proba": 1.035194600262912e-06} {"commit": "776aa621d9d66e8db0e20d17d1a10f79ee25fd33", "message": "Docstring tweak for operation.chain\n", "proba": 4.547456455838983e-07} {"commit": "6056aec24f7f035b19a78c79b0d20f5f05bf2eb4", "message": "ME: added metadata field to user_profile_data return value\n", "proba": 5.792145429950324e-07} {"commit": "93b13574122289468370b929a43dcceaa338ccdb", "message": "Changing populate modal form to include type as parent\n", "proba": 2.1944775596693944e-07} {"commit": "6bd1b048e262cf87210fba42b785488cd0d57fb0", "message": "Be safer about kat debugging output, and allow setting .debug on a Query as well as on a Test.\n", "proba": 1.076093809615486e-07} {"commit": "352753bc3051cc39e30d9da13110021a1462ed42", "message": "Remove info message corrupting our gcloud output stream.\n", "proba": 1.1871411231823004e-07} {"commit": "761976f705034cf9f451236c8cdca9eabda62474", "message": "added reversed twitter_ids cache\n", "proba": 6.397883112185809e-07} {"commit": "f208073a4d481e5a6e201530c15025a981e7a691", "message": "Print the contents of the rendered conf.py before build for logging purposes\n", "proba": 3.596802855554415e-07} {"commit": "72e0cb8d642fd101b509b0fd86096b43af54209b", "message": "Extracted PGGame and PGPlayer to their own model files, and made it build.\n", "proba": 9.86974555416964e-08} {"commit": "0713242c2ef145ef60fbd1b2c1e7371b038bf7eb", "message": "Ensure there are enough lines to check decorators\n", "proba": 3.8836637372696714e-07} {"commit": "d70ec2289cd42b7cbbc388c83a5b5509af5590a9", "message": "reformat the quest module\n", "proba": 1.1647549399640411e-05} {"commit": "15200475acf3435b538714c086c48601001831c0", "message": "DOC: update pandas.core.resample.Resampler.nearest docstring (#20381)\n\n", "proba": 1.1219610485113662e-07} {"commit": "8b9f4ffcfc6e2463a3928c79730109ad11117dfb", "message": "fixes in production plan\n", "proba": 2.3495576328969037e-07} {"commit": "2a79db8dce3584531b5db853e3dc88a5b4ff7e49", "message": "Remove pattern library of mobile/course-dates-fragment.html\n", "proba": 1.4866874380459194e-06} {"commit": "0d1f76353ed2113dc1623b7f867502462a2a8eb2", "message": "A better deeper GAN perhaps?\n", "proba": 1.865497125663751e-07} {"commit": "b6ae7f50a0aed3464ffa46767875eb301bc53ef8", "message": "Use calculate_add when requesting 3 months of rsa, etc.\n", "proba": 1.0786295945308666e-07} {"commit": "5961d9acd8dd70596298021c14ecf5cc2565a604", "message": "Introduce rsa_indemnites_journalieres_hors_activite\n", "proba": 3.4223177181047504e-07} {"commit": "7539cbc3808386f02e8c55f68aafba1f4115015f", "message": "Ported more\n", "proba": 1.213693821000561e-07} {"commit": "f3fcb56ad02ed31f23651e19a04bbfe8db25b57f", "message": "Lint cleanup.\nCancellation support.\nSupport SELECT *\n\n\ngit-svn-id: 55198a34599dbf839a02c2a2ff0bd06dff76438e@351 960bbd1a-3921-0410-93bb-a35bc832efea\n", "proba": 4.301296314679348e-07} {"commit": "337ac9da31722bb0ee62b46d32647b95bddc5d4e", "message": "Add penalty infraction retrieval\n", "proba": 1.3742754845225136e-06} {"commit": "b66371a58a4f1230e6bf1721881ee7f8b61523a7", "message": "update pyIEM API usage\n", "proba": 1.9542189022558887e-07} {"commit": "9cd90f9e7860219d5bc5b042155391076f3f892c", "message": "BUG: Adjusted Entropy computation\n", "proba": 2.456076799717266e-07} {"commit": "ddabd4c1d59098d1795e3a0205664be8050a570f", "message": "Update for version 2.2\n", "proba": 3.5143983723173733e-07} {"commit": "fa1bbdd39154626e3d20149175675aef8463173d", "message": "cleaned up printing in Analysis.__main__\n", "proba": 1.3113767636241391e-06} {"commit": "e9f5af1693d3b2ab5679f9e33b1d2f50a7d288da", "message": "Fixing issue that prevents using Ramona with upstart.\n", "proba": 1.1842497826819454e-07} {"commit": "2e5c37e34f59da9aa32e96eca26b4f853cf0f69e", "message": "TextDecoration: added outline + possiblity to create decoration using line numbers\n", "proba": 1.632123058925572e-07} {"commit": "4dda97179cee3c7468bda68b59701b211b347602", "message": "change mode for master script\n", "proba": 3.513895308060455e-07} {"commit": "a0093276d152839d57f32a5051e9ddfd4339e0dd", "message": "Make Twisted HTTP async.\n", "proba": 4.2750622242238023e-07} {"commit": "11d1876bf070e67147d376afedf0d7df16f28e91", "message": "Make sure splitter._buffer is reset. Handle suppressed output better\n", "proba": 3.1597564884577878e-06} {"commit": "9c326fb55f762e85414849ebe06d7e2633bb9e92", "message": "Strip the leading / of absolute paths\n", "proba": 0.0002679184835869819} {"commit": "e43133601a856853e964251b9ba5e2b2fd2ccc53", "message": "Fix Resource bug that masked the url from ReviewBoard's Web API.\n\nThe 'url' attribute in Resource pointed to the Web API resource instead of the\nweb page.\n\nTesting done: Unit tests pass.\n\nReviewed at https://reviews.reviewboard.org/r/4899/\n", "proba": 7.818399581083213e-07} {"commit": "b3b0210d46f94a43b4c87523a5f83e7350a678d2", "message": "better cli prompt\n", "proba": 6.913934953445278e-07} {"commit": "de2fcba82687765764c88476fdad900a9f3564e5", "message": "Fix FIDO commands for python-fido2 1.0.0.\n", "proba": 8.413256000494584e-05} {"commit": "0e2c8bd4fca9ae97af1234afb6d594c4369e26c3", "message": "load dasc/themis cal data\n", "proba": 7.836127338123333e-07} {"commit": "72d95fd7ee18d1691055c739daf49823805f728f", "message": "bowtie test with sinewave\n\n", "proba": 2.5565185524101253e-07} {"commit": "f00a4c3f918117da828cc47f64490d1679628654", "message": "MAINT: use scan_configuration module\n", "proba": 9.402993441653962e-07} {"commit": "a6ddc4b5c6febb2d9b0f12b87d0bb481293980d7", "message": "explore house data\n", "proba": 2.4750431748543633e-06} {"commit": "bb9330858cb26ca60ccdb4894b95f329330cbf97", "message": "get_utf8_size in shuffle code\n", "proba": 1.311857090513513e-06} {"commit": "56b391123ce4ffece10f6a798e8bf5b2b04bbf0a", "message": "style\n", "proba": 2.627134790600394e-06} {"commit": "0596d4fd1363213ecffec22da166c0ceef51898a", "message": "check for supported join column types\n", "proba": 2.0049949966960412e-07} {"commit": "b16a892f5a17de09d9d84da4f45ed71a9e18b6b7", "message": "Refactor for Clarity\n", "proba": 3.1002150535641704e-07} {"commit": "8dd3822ee62408bfc0cefdd8e9cd8931087aa3ed", "message": "fix English\n", "proba": 0.9999994039535522} {"commit": "f5f6ffe36ec008da3006d4889dbeaeec4db7981c", "message": "new parallel join with shuffle meta\n", "proba": 1.73500836808671e-07} {"commit": "c8e9982c7505e935caeece2d9b2bba95070a647d", "message": "Fix error when importing code (populate_error_report disappeared)\n", "proba": 2.4814812604745384e-06} {"commit": "c82655e9fb35086e5497e1d70ec74076e871328a", "message": "use get_dataset_directory\n", "proba": 8.051946679188404e-06} {"commit": "d0fa87233e7960f5e89330b03755401c1eb55f3d", "message": "Fix doc type for Elasticsearch < 6\n", "proba": 5.13593931827927e-07} {"commit": "5221336272c9d5dd86388231b56e9134c5cd50ac", "message": "More cleanup of tests\n", "proba": 1.1183972503658879e-07} {"commit": "fbe500c46c410092eac6e286f31885f9e84f327d", "message": "Revert \"use get_dataset_directory\"\n\nThis reverts commit c82655e9fb35086e5497e1d70ec74076e871328a.\n", "proba": 1.254087464985787e-07} {"commit": "5511bbaed9235e0fe4183ad75911ad8cd0502d3d", "message": "FIX: Restore whitespace (#768)\n\n* FIX: Restore whitespace\r\n\r\n* move white space\r\n\r\n* FIX: After\r\n\r\nCo-authored-by: Lucy Liu <722e3fc52f2217be265b9fb5c6a5cde4408968f0@gmail.com>", "proba": 1.4951800153539807e-07} {"commit": "5ef5691b8c63e272c38e7b52cb849cec3720d1ff", "message": "add docs\n", "proba": 6.992225962676457e-07} {"commit": "22d512fa0f6480f1f68e8f3c5fa44c65b4d8c7fc", "message": "More collected stats\n", "proba": 1.234585766951568e-07} {"commit": "e1d8eb0301edbab7851434ed32ea175c52e8c095", "message": "remove redundant branches\n", "proba": 0.999982476234436} {"commit": "79292746279bcf19ca48b234682fc5732438e0a7", "message": "reindent\n", "proba": 4.914684723189566e-06} {"commit": "1c44f81df103a82b7c6cb7bae0a05e28a6f97a98", "message": "chore: remove unused imports\n", "proba": 0.0001098175926017575} {"commit": "51f5bf53adf82f2075c45346a7cbfcab7b06810d", "message": "Fix polymorphic imports.\n", "proba": 2.112567045742253e-07} {"commit": "5b11b93e30281af551d3a94e551f9d28c963328f", "message": "outputs/statink: Add agent_custom.\n\nSigned-off-by: Takeshi HASEGAWA <80595b5c49522665976d35e515d02ac963124d00@gmail.com>\n", "proba": 1.418486448301337e-07} {"commit": "6e25e69d57852dfe12a4be1cf8d192e71d4bc766", "message": "show exception in get Images\n", "proba": 1.2696945361767575e-07} {"commit": "fa0f1562ee4b48cc7b695f055f47b2b4add746fe", "message": "fix test\n\n\nFormer-commit-id: 1ad9c9ad32d72ea58ea96bcd8331b99a5da6abf7", "proba": 5.894433343200944e-06} {"commit": "964e6c95a75156ff38fd521c3e6bfd15ea7ea710", "message": "fixed loging issue with delete site\n", "proba": 2.3226053258440515e-07} {"commit": "4829c461d134c7987ff97372c8faafd359790b13", "message": "Fix duplicate stake test\n", "proba": 1.0920757631538436e-05} {"commit": "5826bf546e83478947edbdf49978414f0b69eb1a", "message": "test: Add test for getblockfrompeer on syncing pruned nodes\n", "proba": 3.239752572881116e-07} {"commit": "2968322e602e065c73f1ff13d48914c169063046", "message": "Optimized script.\n", "proba": 3.0742708645448147e-07} {"commit": "b8cc61812871ddb5299215c912b4448eaa8bc98e", "message": "Inicio da extra\u00e7\u00e3o dos campos e m\u00e9todos do m\u00f3dulo l10n_br_sale para o novo m\u00f3dulo l10n_br_sale_product\n", "proba": 1.774954085931313e-07} {"commit": "dc3c0f9a5bfede7350b392489431d6b6ce2506f2", "message": "API-beta\n", "proba": 1.167261871160008e-06} {"commit": "b25f934fa4eaab755a8e1549ab4194df81b212c4", "message": "add missing import\n\nlancet harvest-tasks threw an error, this fixes it", "proba": 1.2307980057357781e-07} {"commit": "3ec6c311b1e40497869f17c979b6e471c172a4b1", "message": "update pretty-nvtx.py so that it will work in the case when the user didn't use any nvtx (just nvprof)\n", "proba": 1.1579049186138946e-07} {"commit": "3dd1fd81b46aa193b970869dc71a472560bfbb3c", "message": "change header\n", "proba": 6.987559686422173e-07} {"commit": "deceb88daee712fd5c323101e9b590fe131995c5", "message": "in divergence.py change centering kwd to at\n", "proba": 1.2793368853181164e-07} {"commit": "cdf041d05f156ff6dd1bad28301561bee251797e", "message": "Initial changes for Pro arcpy.mp changes to Point Target GRG script.\n", "proba": 1.006490819577266e-07} {"commit": "1e7ae063ce1b2368023baacd90dcb718611bd37d", "message": "whitespace\n", "proba": 0.9998207688331604} {"commit": "fef9149916cd1ba5a8e0314d7d59f614d2019aaa", "message": "more compatibility for actual pecan app loading\n", "proba": 1.1957254741901124e-07} {"commit": "7185e04954e33d3044f6e4aba97bc3bdec0504b2", "message": "elements: Add logging to _check_kwargs.\n\nSigned-off-by: Michael Markert <5eb998b7ac86da375651a4cd767b88c9dad25896@googlemail.com>\n", "proba": 1.9430872555403766e-07} {"commit": "d369085ce310134eb2765da3fc500e464126618c", "message": "add chirality restraints for tetravalent chiral centers\n", "proba": 2.4396004505433666e-07} {"commit": "64a4b6dcbd4ed79040b959ea24ab43cd12de6f9a", "message": "utils.run: Fix unit test and improve performance\n", "proba": 7.518265761063958e-07} {"commit": "40defc77906a05e6e5e06f746a2a62cf64ecca5a", "message": "Patched get_unique_constraints\n\nThe original version didn't work and when using it together with Airbnb/Caravel\nit failed to get the columns of the table in the db.schema\n", "proba": 1.93420873983996e-06} {"commit": "c39c2509e51cd64e8ae5dc7f417bff7a2484f076", "message": "remove ParallelHistorageConvertor class\n", "proba": 5.848501132277306e-07} {"commit": "f150cc9fcc2818c3bac8db09881db65461a4bc6d", "message": "removed unsupported param [+]\n", "proba": 2.014784001858061e-07} {"commit": "42347aba62ff681be269bcc62d1e5e99073a50ff", "message": "log docker info for debugging\n", "proba": 3.56663178990857e-07} {"commit": "ddddc59070b4887e1e2d9ba214f1015ce59e90a7", "message": "added comment to explain the how we handle exception during connect (get rid of the vlan)\n", "proba": 1.0391634930329019e-07} {"commit": "2b6f4c6a3dcdb2f5e8b891e61b8558b8c42a796f", "message": "fix success check\n", "proba": 4.007609675227286e-07} {"commit": "78c67a2575f10b064b37597cc0e21eca364844fe", "message": "update plot\n", "proba": 7.921302085378557e-07} {"commit": "d1bfc9851ce55d99fc077925fe0cb485cfcda482", "message": "KeyLookupAPI: bug fix, always cache the input document.\n", "proba": 1.0364219349412451e-07} {"commit": "f00c2787bbb565e1cbcd83125970a2cda7fd5d20", "message": "[math] Fix Solve.__eq__\n\nThe function preprocess_y was not compared, resulting in incorrect traces or escaped tracers (Jax).\n", "proba": 1.7165028793897363e-06} {"commit": "381bd6022310f41c126e84d5c7739ba04e5c4fff", "message": "fix remaining git call\n", "proba": 1.2419253607731662e-06} {"commit": "ebd9121126e5c337bd2ffe6589565843e9edf91a", "message": "Keep track of all replies to make debugging easier\n", "proba": 1.3209069038566668e-07} {"commit": "1645bf4c92f6ab2bd2b62eb4403b3570b24ed988", "message": "finish upload avatar\n", "proba": 1.8973734938754205e-07} {"commit": "ed03c8d7273435e5a2cd822900dc210af389da38", "message": "FIX plural not singular\n", "proba": 0.004286893177777529} {"commit": "c518b73e2901e007dc9744310e2570d49e522a67", "message": "\uae30\uad00 \uc804\ud654\ubc88\ud638 \uc870\ud68c \uae30\ub2a5 \uc218\uc815\n", "proba": 1.389451540489972e-07} {"commit": "890e95134aa7f2a72727937f8ad0343b78b11b8b", "message": "Quick fix for the object_param refactoring, ideally the success and angle properties should match\n", "proba": 1.7509390204395459e-07} {"commit": "9f48e1be608b9dc0de709f474c4dbf020a01f449", "message": "Make it clear that we are looking only at the first dimensino\n", "proba": 4.234566404193174e-07} {"commit": "113c715e7d48299f34745f46f70e206766af6480", "message": "Invalid test are vlen work.\n", "proba": 4.992347157894983e-07} {"commit": "4d9558a83dee7cd63b48cd472e3c57ca9b7a060b", "message": "updated migration file\n", "proba": 5.3609329597748e-07} {"commit": "08f3a01361bf509b5f7b9fe2c485f82db3a9ffaf", "message": "Updated sonic-listener.py with sorted imports\n", "proba": 1.4857447183658223e-07} {"commit": "72bea3767664bd5538f63719444779dc72047c40", "message": "Fixup missed import\n", "proba": 1.7471393221057951e-07} {"commit": "73fad0ec0403e7a0119db20581b509abf7a2f23b", "message": "removed debugging statement\n", "proba": 7.241311323014088e-06} {"commit": "9368e373e873e03539c33f65a04ca106010403ef", "message": "Update AutOSINT.py\n\nadded improved reporting functionality, fixed some glaring logic errors. it's still a mess, but getting better. report works with -g -w -n -t -v -d options. decided to place reports into a ./reports/ directory. text file and docx versions will appear in ./reports/domainname/. cleaned up non verbose messages. added style in docx", "proba": 8.351695441888296e-07} {"commit": "ee7b6023221ffec7100d0f309a619288b12b6511", "message": "RDR-1389 forms button component html\n", "proba": 1.507480362761271e-07} {"commit": "7f977169e840fa89d675b335d8b5655d10f5f5a8", "message": "Add a Mac-specifc snapshot build archive bisecting tool.\n\nReview URL: http://codereview.chromium.org/195006\n\ngit-svn-id: http://src.chromium.org/svn/trunk/src@25384 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n\nFormer-commit-id: 6af2adf3257e9cb9130909fed531cc2f6bae8945", "proba": 2.1488227503141388e-05} {"commit": "986cf2a3dac9db39669389e57e22c5f58ab92d51", "message": "Pushing All Updates\n", "proba": 1.3170779311622027e-07} {"commit": "90d4d676984ac252a09cd33ce0a02a5aaa9cc277", "message": "changing initialization function\n", "proba": 3.943065166822635e-06} {"commit": "9ed2e8f5720bb405800e5db0820279bf8104a8cc", "message": "Don't hide the Welcome page with a modlist update\n", "proba": 1.3483179372997256e-07} {"commit": "875836d55f35bf7171c3e19e50e7e17e3bd2df71", "message": "release: 0.8.0a5\n", "proba": 5.605887736237491e-07} {"commit": "3077b816ae8cf3a3c4daf7dde8f9848b8921a087", "message": "Simplify control flow in /login\n", "proba": 4.500284376263153e-07} {"commit": "8c533f72775ebbe6d2046be4daad0bef9c414c9d", "message": "Initial commit of ktmerge.py\n", "proba": 2.6221110260848945e-07} {"commit": "9fe3765885001837ab5f1e532778301e453ff586", "message": "Improved error exception message\n", "proba": 3.4215932487313694e-07} {"commit": "1e0ada937902542d7df5bcfed3c0fb4f1129efff", "message": "bustage fix for compare-locales, more report stuff\n", "proba": 1.0483069701194836e-07} {"commit": "13e99431dac1565b0c138b5398a6f7f328fc60e5", "message": "Add serialization integration test\n", "proba": 4.699349460679514e-07} {"commit": "dca7427bc0ec75ad778fd89abbc5b1be2b63aeaf", "message": "Reverse previous inadvertent change to get_pq_tests_run() in LandsatDataset.\n\nCatch any AttributeError arising from an outdated SceneDataset version and\nreturn None.\n\tmodified: landsat_dataset.py\n", "proba": 2.0160567146376707e-05} {"commit": "480090a6b6215e0a2feca68e9a7d1becb5b9f6d5", "message": "Update entrance_exit_surveys.py", "proba": 9.112416137213586e-07} {"commit": "ac6ba9841b33c33b3da3e635cdabca72f38a35fd", "message": "Added a test for presence/absence and type of spectral axis", "proba": 1.3141871590960363e-07} {"commit": "3f7f044330d8a629ac8f41d8ea90bd6748ae0927", "message": "Make nodes on longest path yellow\n", "proba": 0.9985378980636597} {"commit": "a99f4412f23d349be5f352bd1ff9dac048d4a189", "message": "minor documentation / formatting fixes\n", "proba": 1.8552370306679222e-07} {"commit": "c58c6c34174d1e3edaaf97160437e9ec2c4802fe", "message": "Try version_d if no config in version_c on variant\n", "proba": 3.0681835596624296e-06} {"commit": "a69490557710e4f3a258bf3352dc4539daa861ca", "message": "filter volumes by active and current user\n", "proba": 2.114171309131052e-07} {"commit": "17846311d18e58e5bf9ada6d8c6ae4ddb0269b80", "message": "prod wip\n", "proba": 1.0630352562657208e-06} {"commit": "702301f1e6b16ffca80e88036bc3a29aa5c9b22f", "message": "main program: loadCommandList(): added flushing stdout buffer after printing parsed JSON data\n", "proba": 0.00010680421837605536} {"commit": "f9ea9198026b42c0ceaf36b7cfb067cf6416d9c3", "message": "badchans: add example configuration\n", "proba": 7.239518140522705e-07} {"commit": "7f21be290d3590d146e79e1d383d38c71c721391", "message": "Replace functions 'Dict.get' and 'del' with 'Dict.pop'\n\nRefactoring code: Making 'report' dict to use single instruction: pop()\nrather than two instructions: get() and del, giving the codes a format\nthat carries through.\n\nTrivialFix\n\nChange-Id: I92c672ef14cf0a75a619b9d73865c49bf398fc91\n", "proba": 0.9999945163726807} {"commit": "e95077c4d947204b3e91e91be17b4b2c268afd6a", "message": "AlienSpy Fix broken loop\n", "proba": 6.03372086516174e-07} {"commit": "69821f33426c3452c9d7987b892ea18f19c82307", "message": "commit\n", "proba": 8.363364258912043e-07} {"commit": "89b102fa473f2a7535a3cf1c1361e584e408990c", "message": "Remove more old, defunct tests that I missed\n", "proba": 6.485058179350744e-07} {"commit": "fcc157989561e353369f1989dd3dc99577257a1f", "message": "formatting\n", "proba": 1.1576831639104057e-05} {"commit": "cb803c851602d493296c0b9c69ff55caaa040e76", "message": "Refactor tests: Write a change_password method in the class\n", "proba": 8.288598678518611e-07} {"commit": "f3b9adce0e452aaff1d5058fbb2ed30e9c49b0df", "message": "add isauthenticated permission class to drf\n", "proba": 2.896724424772401e-07} {"commit": "235bf9b523efebac4a350daf7817030b4af1d2c5", "message": "Corrected issues in expected data and typos in description.\n", "proba": 1.403290212920183e-07} {"commit": "6c6ee672244aa0ae387605fed3223f39224bad99", "message": "Removing meaningless re-assignment to an existing variable.\n", "proba": 3.9937674500833964e-07} {"commit": "de1b7b36e34139c0c06690dffec005a68a03e853", "message": "bugfix\n", "proba": 8.478961035507382e-07} {"commit": "645c37cc4011982e362d4552518b85865e5633fe", "message": "change the default time period from 90 to 7 days\n", "proba": 0.9994631409645081} {"commit": "f947151b908b68add870c3ebdbab95ec2a06d24c", "message": "re-raise exceptions in start_feedback_survey\n", "proba": 3.085743855990586e-07} {"commit": "c69fe40b36cecca4e205c63dbd944b5d566c4137", "message": "Do not crash for empty suggestions set", "proba": 1.851011433018357e-07} {"commit": "8d41f818cee9ce97fd8b8b8e9d71a97c75358ad7", "message": "added line border squared\n", "proba": 2.8262209639251523e-07} {"commit": "1e1d5305637d23fe9b5bf5456cc80dcc573c3613", "message": "Import NetworkDriver from napalm.base when napalm>=2.0.0 is installed\n\nOtherwise, couple together the local napalm_base\nget_network_driver and NetworkDriver.\n", "proba": 1.2099056334591296e-07} {"commit": "306062e654645f4362b2bac02e6dec3a3619cb79", "message": "fix trust level parsing (closes #40)\n", "proba": 1.2920850167574827e-07} {"commit": "831d9ba7071bcd8052c41c9f7eb2ef40a95ba83d", "message": "Removed unnecessary arguments\n\nYeah, I'm pretty stupid. Apparently request/args/kwargs is available via self.\n", "proba": 1.1524385001848714e-07} {"commit": "dc026d0a91c7d3f4d7843c3dbe4c391e6fbea84b", "message": "- Minor changes.\n", "proba": 1.2125578052746278e-07} {"commit": "f28d4238e19dd209aebdda5b76aa704a9d1f649a", "message": "use request page for uuid\n", "proba": 3.001036930072587e-07} {"commit": "629323bc203f9825353c9f335c8b5153fefdcc71", "message": "prevent duplicity in live config admin\n", "proba": 4.818836032427498e-07} {"commit": "444d39f443cf0813f3f95091d77b7c1354edeb63", "message": "Change ordering.\n", "proba": 3.02820524211711e-07} {"commit": "3c3c762a6a22dc56b3afb44379f182d1ad9eac45", "message": "Bump version number.\n", "proba": 2.152537348365513e-07} {"commit": "e67ee24f1b3425967bf974f8f775e74167a7a51a", "message": "Change clustering method slightly. Do not rely on numpy for normalising since production server stalled on it. No explanation found.\n", "proba": 1.0844551212585429e-07} {"commit": "9ed2fce32214d9b7a1a542f86568edf4af6d4bd5", "message": "contaminants/prepare.py\n", "proba": 3.45138033708281e-07} {"commit": "e4e41db9489e3b6c15505096d8a3ee09c02146c5", "message": "Quick fix loading xz/lzma compression module\n", "proba": 2.2601120974741207e-07} {"commit": "a4b0b5f27b814a6133608b997301c4dd2278f74b", "message": "[14.0][IMP] mail_debrand: Remove Powered by Odoo\n", "proba": 1.0915939441247247e-07} {"commit": "3e191b91bc5d805d0454f2c12da136af15bd38c0", "message": "Updated logging\n", "proba": 6.548805231432198e-07} {"commit": "83e49dbe6346da3603abdd02f4f0de81a023b405", "message": "Fix checkbox input display. Refs #3258.\n", "proba": 1.1830622526076695e-07} {"commit": "31722f182801b0a265103fe0c913a6f9de466d4a", "message": "Set universal_newlines for renew-certs script\n\nUsing `universal_newlines` is better for Python 2/3 compatibility since\nit will return a string and not bytes to ensure it's the same regardless\nof the version.\n", "proba": 1.1440832281550684e-07} {"commit": "34faa1566042a365f244334b4d8b6c9753336130", "message": "stats: avoid division by zero\n\nOnly happens when no VehicleDescription.\n", "proba": 1.359241537102207e-07} {"commit": "c54521b159d75659086ee99b88d648bb219f237c", "message": "Updated error coded based on the note in the mailing list from mindtree folks\n", "proba": 1.3609394500235794e-07} {"commit": "84a99a912dc95d00fa2107bce7d3c9071dc35887", "message": "Working size and sorting, need to fix preemption\n", "proba": 2.4954397304099984e-07} {"commit": "620391222178e28c6a181573c1c88bda8d9707e7", "message": "Docs: better formatting for default values.\n\nDon't type them in . For empty lists, show \"empty\" instead of \"[]\".\n", "proba": 2.728658046180499e-07} {"commit": "ea74083c3df4577f2b162b5deb83a521f2c8fac9", "message": "ef2aa562-2e73-11e5-9284-b827eb9e62be", "proba": 3.212428418919444e-05} {"commit": "6a080e8aa3aa14fb8e2c4490c8ca0f6669dd2dd5", "message": "d01ef7a0-2e72-11e5-9284-b827eb9e62be", "proba": 2.252876129205106e-06} {"commit": "f2597a8091a1f21b7e217c453579a40fc463a1d7", "message": "28f1a02a-2e74-11e5-9284-b827eb9e62be", "proba": 1.5709077842984698e-06} {"commit": "c428a0da5637d1fd1be1ffa6ee5a56d739dcdd50", "message": "b3369990-2e72-11e5-9284-b827eb9e62be", "proba": 1.3861125580660882e-06} {"commit": "fdb58504b312886ba7e41168a9be660c46cb2ff1", "message": "6054dc18-2e73-11e5-9284-b827eb9e62be", "proba": 1.4556011365129962e-06} {"commit": "bbfa1457bcb19d12c698e6e16fcca15bd090b79b", "message": "afe93710-2e73-11e5-9284-b827eb9e62be", "proba": 1.4064858078199904e-06} {"commit": "1be03bc5ad737f62d92a19455473064c45c99ad5", "message": "33b82e36-2e72-11e5-9284-b827eb9e62be", "proba": 2.2878668914927403e-06} {"commit": "77fddb0880a1bb2644f8d82a5c325fd435cbbce9", "message": "bd28f994-2e71-11e5-9284-b827eb9e62be", "proba": 1.329524025095452e-06} {"commit": "563c6f1f0f182e7e7b4952e35d25c636a65ddad2", "message": "9abf2c06-2e72-11e5-9284-b827eb9e62be", "proba": 4.351863481133478e-06} {"commit": "1e1d5e5eddf73496e494e2b5dfd7f6adbe754f90", "message": "2a40e800-2e74-11e5-9284-b827eb9e62be", "proba": 1.8465452740201727e-06} {"commit": "6f9f678492a94a74ed9397774e6df373e828a4e0", "message": "95ff1e38-2e72-11e5-9284-b827eb9e62be", "proba": 1.690845238044858e-06} {"commit": "cd3df9359da179e1c4914d07f1d384889ca49c6e", "message": "0e44bd94-2e73-11e5-9284-b827eb9e62be", "proba": 1.3906541198593914e-06} {"commit": "930d1fc6fe1ca20e1ede383a857900bf02652b99", "message": "9f47e692-2e71-11e5-9284-b827eb9e62be", "proba": 1.486707219555683e-06} {"commit": "78796d68939b99223618b5060acda86b893c0fd1", "message": "f4e961f6-2e72-11e5-9284-b827eb9e62be", "proba": 2.9956293019495206e-06} {"commit": "ac3d2b9f7f05587ae7aa009bace6d27ef97f9ef8", "message": "1b6606ea-2e73-11e5-9284-b827eb9e62be", "proba": 1.795987486730155e-06} {"commit": "e0a0406a3974b3cd9e6d6c846829078ddc7083bc", "message": "fd918cf2-2e72-11e5-9284-b827eb9e62be", "proba": 1.588521968187706e-06} {"commit": "0f8fd874de5a716ec5292db9fd007f0dd09554d9", "message": "3350bd1c-2e74-11e5-9284-b827eb9e62be", "proba": 2.4533944724680623e-06} {"commit": "dec2489b65c25cddfcb1901d24a724796cb67293", "message": "c5511dfe-2e71-11e5-9284-b827eb9e62be", "proba": 1.5468303899979219e-06} {"commit": "d11204e2197ba672a91004f8484efdf4aa92c9b4", "message": "11ebfe40-2e72-11e5-9284-b827eb9e62be", "proba": 1.1433975259933504e-06} {"commit": "50fe8d65e34dfd26c97eca48cd47cbb827554fc1", "message": "67406d14-2e71-11e5-9284-b827eb9e62be", "proba": 2.567290493971086e-06} {"commit": "dc6463ce6525bd9b1fe3a65790d559d960dfd849", "message": "a6bc2752-2e72-11e5-9284-b827eb9e62be", "proba": 2.4328492145286873e-06} {"commit": "660a4a25081bdd32817d8ba082d2eb4f9cec3add", "message": "dbbcfa26-2e72-11e5-9284-b827eb9e62be", "proba": 3.976850166509394e-06} {"commit": "2aca7fecb6d52dd35645665cdb6f189a9bef5c31", "message": "a235f90c-2e71-11e5-9284-b827eb9e62be", "proba": 1.7820517541622394e-06} {"commit": "eab8bf8b41858ccae538abc4b6f627bbf7da2bd3", "message": "c3f1095e-2e73-11e5-9284-b827eb9e62be", "proba": 3.2652606023475528e-06} {"commit": "7da3bcda6680768cd47d9716618b15714a59f32d", "message": "a1d9e9a0-2e71-11e5-9284-b827eb9e62be", "proba": 3.4924844385386677e-06} {"commit": "cc730494c8ef972f7b1a01f2de7e0bf3d278c749", "message": "4f6306d8-2e72-11e5-9284-b827eb9e62be", "proba": 2.337333398827468e-06} {"commit": "caea9069675232f380074fb998b854f92703dd68", "message": "7e8dced4-2e72-11e5-9284-b827eb9e62be", "proba": 3.933375410269946e-06} {"commit": "409ec50fdb572038c50a95f5f38f948c14a0b419", "message": "184cb39c-2e72-11e5-9284-b827eb9e62be", "proba": 1.608702177691157e-06} {"commit": "e364a359c1fbd54dbc56df6d6a01cea759d08fcb", "message": "f76884ba-2e73-11e5-9284-b827eb9e62be", "proba": 3.738350415005698e-06} {"commit": "6bdd9825ee0a945905ec09222476e4feec2e4532", "message": "8e09f882-2e73-11e5-9284-b827eb9e62be", "proba": 1.2890981224700226e-06} {"commit": "f50f1fa5498a7b032e906aee5ed2c7c3071ac737", "message": "f11bd99a-2e73-11e5-9284-b827eb9e62be", "proba": 1.5936841464281315e-06} {"commit": "88b2840a4c7da098a7490b850532967f868763f4", "message": "c8ca4ada-2e73-11e5-9284-b827eb9e62be", "proba": 2.557479547249386e-06} {"commit": "cd6d1161e0d45e5eb8e167b237cfd5eeb9e80c78", "message": "a7fb1732-2e71-11e5-9284-b827eb9e62be", "proba": 1.13930491352221e-06} {"commit": "2180b733119e731f119613776f3cd5d6d5f09d55", "message": "215d2926-2e72-11e5-9284-b827eb9e62be", "proba": 9.587600970917265e-07} {"commit": "32c35f32625cf4015a905b78fcd8eee066e406b1", "message": "cd33a206-2e73-11e5-9284-b827eb9e62be", "proba": 1.3867194184058462e-06} {"commit": "fe08e6b6b06d47d7643043a6b23b835a53c8f8a8", "message": "abd94800-2e72-11e5-9284-b827eb9e62be", "proba": 8.710184715710056e-07} {"commit": "8fb069c2c7b0792c41df52c70704ec0af1d4c2b1", "message": "8b21b2f0-2e72-11e5-9284-b827eb9e62be", "proba": 5.559835244639544e-06} {"commit": "ed47094766b767665e3ddc0ad1a294319921eaae", "message": "080feeea-2e72-11e5-9284-b827eb9e62be", "proba": 1.1790226608354715e-06} {"commit": "a7430677523e68de8bb5cf8fb905b912bc11d43f", "message": "64c9bf9a-2e71-11e5-9284-b827eb9e62be", "proba": 4.707917923951754e-06} {"commit": "3f39a6669e6c7aa4ee527b59d47af1bfb0f7c7e5", "message": "bb9330c2-2e71-11e5-9284-b827eb9e62be", "proba": 3.139074806313147e-06} {"commit": "fa5fa965e20c6293b1e1ffa436e7380332cd9eeb", "message": "e093b160-2e73-11e5-9284-b827eb9e62be", "proba": 1.8491002720111283e-06} {"commit": "58716ed7f2a66b92cd5e392b2fe75a695c17987a", "message": "3080297a-2e73-11e5-9284-b827eb9e62be", "proba": 2.9622542569995858e-06} {"commit": "c54f04967c331e370b9b496b236588c22524b2c3", "message": "54c421de-2e72-11e5-9284-b827eb9e62be", "proba": 2.4712198865017854e-06} {"commit": "fa9b5160fb6b9aa20c975de997f51a7142731878", "message": "13e3c0a6-2e73-11e5-9284-b827eb9e62be", "proba": 4.626149802788859e-06} {"commit": "eeb104a6ca694b0f5c03d19898dbbad01b899c1f", "message": "8fc8714a-2e72-11e5-9284-b827eb9e62be", "proba": 1.5635930594726233e-06} {"commit": "c16f1e863fce0524abce1bdba63b14f997bab6ec", "message": "6002b7b2-2e73-11e5-9284-b827eb9e62be", "proba": 3.3132944281533128e-06} {"commit": "738d3f6e693214d9d894ed15204b74ed3a64742c", "message": "9ade6bc4-2e73-11e5-9284-b827eb9e62be", "proba": 3.738599843927659e-06} {"commit": "b40359ce8e0f2266c96cc72bd571ada31f4986b9", "message": "dc67acba-2e71-11e5-9284-b827eb9e62be", "proba": 3.163296241837088e-06} {"commit": "837195011b1a8154f65110f9897ddf3a27dcff32", "message": "a4251f6c-2e72-11e5-9284-b827eb9e62be", "proba": 1.7882981637740158e-06} {"commit": "963f4e4c8d4f20a2f55bcbf3496d1827f4090295", "message": "1938e7bc-2e72-11e5-9284-b827eb9e62be", "proba": 1.2937696283188416e-06} {"commit": "dae8f7e721a9fa10c16d5834479c264a6294f092", "message": "fba98a62-2e71-11e5-9284-b827eb9e62be", "proba": 1.9834126305795508e-06} {"commit": "94d3ec762fb6c7769e5e8148146d3cffc76932d4", "message": "5d789420-2e74-11e5-9284-b827eb9e62be", "proba": 2.6365596568211913e-06} {"commit": "577ed53d8c329ed42b12a5bb65bd4978f021dbcd", "message": "7fc96d34-2e73-11e5-9284-b827eb9e62be", "proba": 1.1383860964997439e-06} {"commit": "2c7b4dc1d08e238965d492aacd55930ef4cf0936", "message": "e64cf800-2e73-11e5-9284-b827eb9e62be", "proba": 9.759502290762612e-07} {"commit": "5a9055df0684bfa8c6f240206b2e32e6f523c408", "message": "aed5809c-2e71-11e5-9284-b827eb9e62be", "proba": 1.1664351404760964e-06} {"commit": "4e10c3f16c310345514c660bd55dc4911c18e30f", "message": "317a723c-2e72-11e5-9284-b827eb9e62be", "proba": 3.817932793026557e-06} {"commit": "d7a486c6eff7923162268d5e5a1a5f40d317db1d", "message": "9778416e-2e71-11e5-9284-b827eb9e62be", "proba": 2.476289637343143e-06} {"commit": "84e423c5a387414d8fef5326e0d85cf3a5748069", "message": "e11953d4-2e72-11e5-9284-b827eb9e62be", "proba": 2.69063320956775e-06} {"commit": "6f412d38872261db3feed2522e41ea90ea8d7083", "message": "10ffed06-2e73-11e5-9284-b827eb9e62be", "proba": 6.51800007744896e-07} {"commit": "c00a0dab15095080517b9b992e2baaeb0ddef24a", "message": "bf83a28c-2e73-11e5-9284-b827eb9e62be", "proba": 2.099563062074594e-06} {"commit": "ee8f18368895c0a5ddf8ce53c659ee12baf50e73", "message": "7e078db6-2e71-11e5-9284-b827eb9e62be", "proba": 1.7150481426142505e-06} {"commit": "9cf18c9d6aaeedd7081aa3d0dc5bc20a461c8965", "message": "60b8112a-2e73-11e5-9284-b827eb9e62be", "proba": 3.3207377327926224e-06} {"commit": "eba22ec155a8fc3c074765900cd779f953538fbc", "message": "956a5fec-2e71-11e5-9284-b827eb9e62be", "proba": 2.7478647552925395e-06} {"commit": "d212dd22586e5f949a9d9369e9739276b52f957e", "message": "b8b19cb8-2e71-11e5-9284-b827eb9e62be", "proba": 3.151505097775953e-06} {"commit": "57daeb1b6df02016a25a50ea5261439ca7f9cd7a", "message": "64095d84-2e73-11e5-9284-b827eb9e62be", "proba": 2.2496128622151446e-06} {"commit": "c5d2757fc861731aba5dcbe0c77b1f7e4c56e1a0", "message": "e84c02be-2e72-11e5-9284-b827eb9e62be", "proba": 2.2869421627547126e-06} {"commit": "980b5151ef8727354bcad465266427a21237b65a", "message": "46c611fe-2e73-11e5-9284-b827eb9e62be", "proba": 3.2878833735594526e-06} {"commit": "e2a7af7b9667c900ae770f82af935e728a1687d1", "message": "8e910980-2e73-11e5-9284-b827eb9e62be", "proba": 1.9478607100609224e-06} {"commit": "fa0e0509ed09331a7b1b3dd11c35820fbecf5e5f", "message": "a24170c0-2e71-11e5-9284-b827eb9e62be", "proba": 3.045985067728907e-06} {"commit": "047ca7f380105d95c4e2cce6ade4ab568124fa5d", "message": "602d3e1c-2e71-11e5-9284-b827eb9e62be", "proba": 6.675855729554314e-06} {"commit": "f6f282e173afc9d4d9a23066781e4d6e9b9e2d08", "message": "b50f4736-2e71-11e5-9284-b827eb9e62be", "proba": 1.592168018760276e-06} {"commit": "e00d3e65832189deef6313ce53ad5d96c19830df", "message": "6042d4a6-2e72-11e5-9284-b827eb9e62be", "proba": 3.94367816625163e-06} {"commit": "7e1338700d16053f3cfed81e4e502784ed69e9e1", "message": "60b249ee-2e72-11e5-9284-b827eb9e62be", "proba": 2.0047591533511877e-06} {"commit": "c314ccf1d947a4371ab817b89db373d295349976", "message": "34cf23ec-2e72-11e5-9284-b827eb9e62be", "proba": 1.2382048453218886e-06} {"commit": "f86fe58e4395b6796600825c4d1a56d9b6d1759c", "message": "ac518d48-2e71-11e5-9284-b827eb9e62be", "proba": 1.635795797483297e-06} {"commit": "1b4e67979b479393317d340110071cd440dd73ae", "message": "fc435d02-2e73-11e5-9284-b827eb9e62be", "proba": 1.0769177833935828e-06} {"commit": "06ee7b39bbdd2469c0e74ea21c42d7b1385da38a", "message": "422ece16-2e72-11e5-9284-b827eb9e62be", "proba": 1.9508797777234577e-06} {"commit": "762acab5684c2e85b0d266b0d10b4e48e6af646a", "message": "a1d6cfa8-2e72-11e5-9284-b827eb9e62be", "proba": 1.6941137346293544e-06} {"commit": "16c642a91851b9b87d5a8726c426471237621af8", "message": "707f796e-2e72-11e5-9284-b827eb9e62be", "proba": 2.2254848772718105e-06} {"commit": "09e6861698f56f193eafad2955ca301b65a874ac", "message": "4f7472e2-2e72-11e5-9284-b827eb9e62be", "proba": 5.811666142108152e-06} {"commit": "8dc559ece11dd45e560492930646e31a07015513", "message": "3ce7dcc6-2e73-11e5-9284-b827eb9e62be", "proba": 2.656325932548498e-06} {"commit": "adb34911a568f64ae09f337d713e5b9fd6e843de", "message": "8f932b12-2e71-11e5-9284-b827eb9e62be", "proba": 2.220909664174542e-06} {"commit": "63868818a4096b934b1e0349e3226d7acb535734", "message": "45ca52ce-2e73-11e5-9284-b827eb9e62be", "proba": 3.2885732252907474e-06} {"commit": "7750a49f3b2e5f48f56a9acc4fe7ed5184d42175", "message": "a9ea7392-2e73-11e5-9284-b827eb9e62be", "proba": 2.0277466319384985e-06} {"commit": "47def5b9702d0ded87608a839c04bbbfee18b865", "message": "8c2c6478-2e73-11e5-9284-b827eb9e62be", "proba": 2.451733735142625e-06} {"commit": "a62349f99066219fed1348e66c8b8dd44eb4b1fb", "message": "4eed7404-2e72-11e5-9284-b827eb9e62be", "proba": 1.8254605720358086e-06} {"commit": "e2ee618439bc2ca5b5a95b7333a7f229d2e2919f", "message": "1094416e-2e73-11e5-9284-b827eb9e62be", "proba": 2.1039668354205787e-06} {"commit": "a4b6f187c456307a947196c28e47c9a568ce2fc4", "message": "42d89f9a-2e72-11e5-9284-b827eb9e62be", "proba": 2.3385284748655977e-06} {"commit": "6f82f444f2da557cc773f499d9771d3caf83e4fe", "message": "36a4c670-2e74-11e5-9284-b827eb9e62be", "proba": 2.7723338007490383e-06} {"commit": "0ad9a9d4db18115f9c821a83057c3d204b4ee4c9", "message": "fc535498-2e71-11e5-9284-b827eb9e62be", "proba": 1.4045153875485994e-06} {"commit": "9f0f4f20d5e05e725ec7244dccd5069d3456bb21", "message": "d5051ee2-2e73-11e5-9284-b827eb9e62be", "proba": 4.883484507445246e-06} {"commit": "8b4d19def850c5e6902685378d285df57038bedb", "message": "d5629532-2e72-11e5-9284-b827eb9e62be", "proba": 2.1297546481946483e-06} {"commit": "fed496f6187141554d9abdee9966ee120ecdb5de", "message": "ee53123c-2e73-11e5-9284-b827eb9e62be", "proba": 4.089477897650795e-06} {"commit": "5f7aa04653b7dff248f0d8ea3378d2b3a1fad9cb", "message": "dd37fb76-2e72-11e5-9284-b827eb9e62be", "proba": 2.1197688511165325e-06} {"commit": "6c62ff02f8b93dcf340266516071ddf4effaef3b", "message": "f9ec8574-2e73-11e5-9284-b827eb9e62be", "proba": 2.067657533189049e-06} {"commit": "892690dfb071f63b52f5144f58e67da48cf39353", "message": "0052fb28-2e74-11e5-9284-b827eb9e62be", "proba": 1.0069139761981205e-06} {"commit": "1d9cdba0ac0aaf2366f47a1d92eb9cd6213e40b9", "message": "a06c2a1e-2e72-11e5-9284-b827eb9e62be", "proba": 3.752516704480513e-06} {"commit": "7246a8e83b20245c9aea90226e64c4d7dad40ed7", "message": "758fcc92-2e72-11e5-9284-b827eb9e62be", "proba": 1.4508045751426835e-06} {"commit": "c88019a5f581c5a64c3ec43fc7b68b3d0b9fadb6", "message": "bbc1f30c-2e72-11e5-9284-b827eb9e62be", "proba": 7.194078989414265e-06} {"commit": "284e01ac18b4f4d77028758693cad1117dd8e09a", "message": "bcb7d4e2-2e73-11e5-9284-b827eb9e62be", "proba": 6.549762474605814e-06} {"commit": "1389dfc9820528178d0746d15b8ef789edf747ad", "message": "09dd0990-2e74-11e5-9284-b827eb9e62be", "proba": 8.712228236618103e-07} {"commit": "9538a631ae408afa507d952db13b6234147f6e13", "message": "28d53ba2-2e73-11e5-9284-b827eb9e62be", "proba": 3.1713370844954625e-06} {"commit": "e4eba052229f3c0914d848644cbcbd42a5fb0a85", "message": "b0617bf8-2e73-11e5-9284-b827eb9e62be", "proba": 1.4606433751396253e-06} {"commit": "03b4044856064371cff234a2a787dd5f267fc15f", "message": "922c63c8-2e73-11e5-9284-b827eb9e62be", "proba": 1.182084929496341e-06} {"commit": "7dea23f6f1f98c883b64fab024cd1741d87ed30b", "message": "ad7db29e-2e73-11e5-9284-b827eb9e62be", "proba": 1.6437994645457366e-06} {"commit": "4928195b0376d52d88f28f871158091dcac2f427", "message": "09b7b4d0-2e72-11e5-9284-b827eb9e62be", "proba": 1.5898344827292021e-06} {"commit": "56f87e252349f97fc6d57c62df54a82db17de440", "message": "d328ef00-2e72-11e5-9284-b827eb9e62be", "proba": 1.8831588022294454e-06} {"commit": "97d9a16a3a6d280321be7f99fafbe8e287086b31", "message": "0be99834-2e74-11e5-9284-b827eb9e62be", "proba": 1.0305669775334536e-06} {"commit": "9a6f2df09a3fa6166b518dd872e42af04ca055d5", "message": "d5dbaed6-2e72-11e5-9284-b827eb9e62be", "proba": 2.1115367871971102e-06} {"commit": "a895eafb35516e0fb9e5abcf45a9b3f967120bc4", "message": "b45f81ce-2e72-11e5-9284-b827eb9e62be", "proba": 2.500402160876547e-06} {"commit": "5e3a087c836ca241fa9009bc814a3b84bb46f6b9", "message": "440dea4a-2e73-11e5-9284-b827eb9e62be", "proba": 4.323329449107405e-06} {"commit": "c866a57e4332b9dac4ce8770482a1a1e6357727c", "message": "198f28f2-2e72-11e5-9284-b827eb9e62be", "proba": 2.2584799808100797e-06} {"commit": "c0f88143afb2d2f7943ddd07b0e296ee7109e8c8", "message": "5a13b8ac-2e72-11e5-9284-b827eb9e62be", "proba": 4.850150617130566e-06} {"commit": "ee1d725506f3e9379a06ba343ae7960ce2fc4485", "message": "13122398-2e73-11e5-9284-b827eb9e62be", "proba": 1.611678044355358e-06} {"commit": "d5107ef51a6d9592b413af29a0032bc9df7de759", "message": "d351baa2-2e72-11e5-9284-b827eb9e62be", "proba": 4.520149104791926e-06} {"commit": "685965a6359df3259c46e412c99a206322a05c64", "message": "2e2656e6-2e72-11e5-9284-b827eb9e62be", "proba": 3.5889777336706175e-06} {"commit": "b9f71764b6bdd96da1e52c6aba2590de182b64b9", "message": "66f43cc6-2e73-11e5-9284-b827eb9e62be", "proba": 1.347216766589554e-06} {"commit": "fc0be2941e954768ce76e33d4d2a84c12877f8ed", "message": "38f516d8-2e73-11e5-9284-b827eb9e62be", "proba": 2.323255330338725e-06} {"commit": "062448704807bf9b3bd674b8c9652d1961fc2895", "message": "9df6e3d8-2e71-11e5-9284-b827eb9e62be", "proba": 4.0434147194901016e-06} {"commit": "1f2ffa5ef72e6bc3e4d8ce22f6deaaf833f7cbf0", "message": "9f953784-2e72-11e5-9284-b827eb9e62be", "proba": 1.7738468613970326e-06} {"commit": "d8f0f3aacf524b93516e8da31c8142e154b643a7", "message": "923193b2-2e72-11e5-9284-b827eb9e62be", "proba": 2.6779719064506935e-06} {"commit": "87328d6b53bb1d6ec514573910b80ef689bd6432", "message": "b68ad26a-2e71-11e5-9284-b827eb9e62be", "proba": 3.6951425954612205e-06} {"commit": "a906a0e9fe8bb36c9ad0b542c93b5498a6ad20e4", "message": "65dab898-2e72-11e5-9284-b827eb9e62be", "proba": 1.9731228348973673e-06} {"commit": "c67e7c99f2758b94c2a5797d6134eefacd47c845", "message": "fa632a5e-2e72-11e5-9284-b827eb9e62be", "proba": 3.1523527468380053e-06} {"commit": "42d7343123c975eff8a46272bb20f44ff85eaf38", "message": "205a86e8-2e74-11e5-9284-b827eb9e62be", "proba": 2.9492032354028197e-06} {"commit": "c66a122c9fa3f4743c0355c822c01798dae17f18", "message": "7aa8f1d2-2e71-11e5-9284-b827eb9e62be", "proba": 2.005750866374001e-05} {"commit": "644cae2ef117946da889b2d02f88c6d9ef4606a1", "message": "29c4e9c8-2e72-11e5-9284-b827eb9e62be", "proba": 1.7317050833298708e-06} {"commit": "efa91787230fa4ee7a427dcde01540f63235d0ab", "message": "b04349ee-2e73-11e5-9284-b827eb9e62be", "proba": 1.364339368592482e-06} {"commit": "60e78dec66a1bc69ffeda6e172e38f13e6e8c6cc", "message": "Fixkin path\n", "proba": 3.558671153314208e-07} {"commit": "9e72caa2cb96014275bb2270a8acb73b2c4a0e0b", "message": "Whoopsie!", "proba": 2.5119865654232854e-07} {"commit": "6b37be9e341d9919b6fb2139e054403d18a456d5", "message": "pandas: use strings for aggregations rather than Series methods\n", "proba": 1.3822765367876855e-06} {"commit": "58463b9b30a1ef24c54c20cab42ce545c4723075", "message": "No schema given but mapping should still be allowed\n", "proba": 1.0889535815294948e-06} {"commit": "75c0d00221dafd99b7b708625b0d567663bf0ba2", "message": "stricter flake8?\n", "proba": 1.4952256321976165e-07} {"commit": "01da4e47ca07c26689405159c51592dd02021a69", "message": "Don't adjust actual lv size based on md metadata space requirements.\n\nWe adjusted the amount of disk space needed, but we didn't alter the\nplanned device size.\n", "proba": 1.1075370309754362e-07} {"commit": "2be4cb4a40b85cd9056aa56daf3253130ad62861", "message": "streams: futures_multiplex replace socket_name fix", "proba": 4.45569367002463e-06} {"commit": "8a44e9e08df9c043c40cc7c13c089788257e494e", "message": "Export RankingParams\n", "proba": 5.19880984484189e-07} {"commit": "d1e5d062a7d1f0985b8f6083e5bd6bd38e690ea7", "message": "Revert last commit, was already correct\n", "proba": 4.4059618176106596e-07} {"commit": "8369d64675b1134a3c24c6780b99429b8d48dd63", "message": "Cleaning\n", "proba": 3.396809916011989e-06} {"commit": "a4fa3b9866ac9712f029c7cabe64121f80875207", "message": "Use str methods instead of string module\n", "proba": 1.2885365094916779e-06} {"commit": "64716e7cdbd141d65e2d109620169c1dd1654fe5", "message": "add more commandline flags\n", "proba": 2.534089560413122e-07} {"commit": "58a961b207499fac59dbccf00de2b704d0610d76", "message": "Cleaned narrative\n", "proba": 5.177097591513302e-06} {"commit": "f4d1b7565e60f25cce808d57a795fb4f763da9a4", "message": "use set_intensity for cleaner update\n\nnow RGB light doesn't need to override trigger", "proba": 1.3048008895566454e-07} {"commit": "728cbd3875d6bd7d47cfcaecaa2a5709577e6726", "message": "Added inference to gases_sampler.py\n", "proba": 1.7114081174440798e-07} {"commit": "16691648f747da9913ad79719c3685d89084478b", "message": "Add support for python 3 and fix IP index out of range error when vms are being deployed\n", "proba": 1.369818676266732e-07} {"commit": "44668a327c852457232d7a7c95fa705bcf79e0d4", "message": "simplify further\n", "proba": 0.00024160176690202206} {"commit": "b622f616e75cc63c41e6429138b813a803d7fbad", "message": "Clenup accessibility import\n", "proba": 2.2051621328955662e-07} {"commit": "cfaf9057cf5a56de6145e026a086d2ec0f9cc178", "message": "allow in-memory databases\n\nthis requires sharing the same aspw.Connection object for anyone who asks for\nDB.connect(). If needed, in the future we can add an optional keyword argument\nto create a new connection. The use case does not yet exist.\n", "proba": 1.1152361167887648e-07} {"commit": "5be89452d48de95af56b9bb1b4ca64483c10db96", "message": "Help file.\n", "proba": 1.471088637572393e-07} {"commit": "71dc6d86cf7ec0f2d41ca62681785f33994dbacc", "message": "Return early if tasks is empty on job_status. (#59)\n\nReturn early if tasks is empty on job_status.\r\n", "proba": 0.0015990159008651972} {"commit": "8e4f7c10e2afd30b9140bb6b3b165be411eb7ee0", "message": "Class User stores connection objects\nIn order to allow communications between Controllers and Masters (each\nof class User) the connection object is stored for later use.\n", "proba": 1.3585962221895898e-07} {"commit": "980083a3575b5506e342291e97726ec746436c34", "message": "\u0420\u044b\u0431\u043a\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043f\u043e \u043f\u0440\u043e\u0431\u0435\u043b\u0443. \u0415\u0441\u0442\u044c \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u043a\u043e\u043b-\u0432\u043e \u0440\u044b\u0431\u043e\u043a\n\u0423\u0431\u0440\u0430\u043b \u043b\u0438\u0448\u043d\u0435\u0435. \u0422\u0435\u043f\u0435\u0440\u044c \u0441\u0442\u0440\u0435\u043b\u044f\u0442\u044c \u043d\u0435\u043b\u044c\u0437\u044f\nTODO\n-- \u0441\u0434\u0435\u043b\u0430\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u043f\u0443\u0442\u044c \u0440\u044b\u0431\u043a\u0438 \u0432\u0432\u0435\u0440\u0445 \u0438\u043b\u0438 \u0432\u043d\u0438\u0445 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u043b\u0441\u044f \u0440\u0430\u043d\u0434\u043e\u043c\u043d\u043e\n-- \u0443\u0431\u0440\u0430\u0442\u044c \u0431\u0435\u043b\u044b\u0439 \u0444\u043e\u043d\n-- \u043d\u0430\u0443\u0447\u0438\u0442 \u0440\u044b\u0431\u043e\u043a \u0443\u043c\u0438\u0440\u0430\u0442\u044c, \u043a\u043e\u0440\u043c\u0438\u0442\u044c\n-- \u043f\u0440\u0435\u0434\u0443\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0441\u043f\u043e\u0431\u043e\u0431 \u0432\u044b\u0432\u043e\u0434\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439\n-- \u043a\u043b\u0430\u0441\u0441\u044b \u0440\u0430\u0431\u043e\u043a \u0445\u0438\u0449\u043d\u044b\u0445 \u0438 \u043d\u0435 \u0445\u0438\u0449\u043d\u044b\u0445\n-- \u0432\u0438\u0434\u044b \u0440\u044b\u0431\u043e\u043a \u0438 \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u0432\u0438\u0434\u0430 \u043c\u0435\u043d\u044f\u044e\u0442\u043c\u044f \u0438\u0445 maxHP speed etc..\n", "proba": 2.540082846280711e-07} {"commit": "c78c5d8cc6aee11e9b87ba07a78948cf3cf7230c", "message": "Fixes #281: Simpler json import for Python dynamic inventory example.\n", "proba": 1.000326363964632e-07} {"commit": "4c10dc369972c9e2a13bffcde5b76e3fb0141740", "message": "Add comment.", "proba": 1.4271081738570501e-07} {"commit": "42688f0636c8c29b927a73cfe936512f0239b1fc", "message": "Minor fix\n", "proba": 4.2334357885920326e-07} {"commit": "97202ef2be5fd26605134eb8b16a8db6ba6cd53e", "message": "Added code to write a file named batchid..txt to disk after the batch job is submitted so one does not have to scour the logs to find the id.\n", "proba": 1.0776425085623487e-07} {"commit": "ab80b680ea0a2d300bc31f01d2189bce62f9448b", "message": "\u5b9f\u88c5\u4e2d\u3002ES\u7528\u306e\u5f62\u5f0f\u306b\u5909\u66f4\u3002\n", "proba": 1.0738712319380284e-07} {"commit": "0e8c68062f903539bc468844ab64b49bce99803c", "message": "Fixed issue in DIMSEmessage.\n", "proba": 1.1343552586140504e-07} {"commit": "ec9c8490c178c5807ecb074c4f06d84c1fe24b76", "message": "Remove rgb spotName+density silliness and fix special case denist interpolation\n", "proba": 5.144910346643883e-07} {"commit": "49f0bc33280a4173e085dcbccc18323102b77345", "message": "Make GetConsoleOutput fall back to utf-8 encoding\n\nWhen sys.stdout points to a file its encoding is None, so this change\nfixes encoding issues for this specific case (TOOLS-407). This is only\none instance of a general problem with output encoding, though, which\nmust be fixed at the framework level, which is not feasible in a patch\nrelease. See TOOLS-385 for the more general issue.\n\nFixes TOOLS-407\n", "proba": 0.0025112819857895374} {"commit": "c190af88d6cdd350e2dc83c3167eaa2118e4df17", "message": "fix hilarious MatchInfo bug\n", "proba": 3.758508171358699e-07} {"commit": "5e8a9c8155466dbbd01ada27004332e5cbfbf906", "message": "switched old file list to a stream\n", "proba": 1.0093887112816446e-06} {"commit": "dbb9f8f8d06fa291359ee03aef52747bc8c6c4a8", "message": "Display error if node not saved on connect\n", "proba": 7.067688443385123e-07} {"commit": "314fb904157d53c84c3648dd97bd252b05433cdc", "message": "remove self referential table to enable immediate garbage collection\n", "proba": 1.984489870210382e-07} {"commit": "b23a70bd6d435c163d9a77843e6577b8ee82025a", "message": "fix my noobish errors\n", "proba": 3.610708745327429e-06} {"commit": "477bb460cc3e407e59742cde7114b785922f139f", "message": "Gitian: fix check path and detached signatures dir name\n\n- previous setting checked for ion folder instead of pivx\n- previous setting checked for ion detached signatures instead of\n", "proba": 1.5209607795441116e-07} {"commit": "04eb9b1c0c3182c80efbc10fb9ecca66b4409112", "message": "shop.signals: correct sender reference\n", "proba": 1.5112434994080104e-05} {"commit": "6149baf352274ea9a09659a08b428bb1ba254d57", "message": "Adding Arrays to the admin site\n", "proba": 2.0932343147705978e-07} {"commit": "80567fd97b8b6e16be0e22f97909b4ee6c758299", "message": "handling unicode conversion\n\n--HG--\nextra : convert_revision : svn%3Aa38d40e9-c014-0410-b785-c606c0c8e7de/satchmo/trunk%401806\n", "proba": 1.237658239006123e-06} {"commit": "76097cffe70abef2a0fa375080c293ba55b5308a", "message": "near finished with getCSD() function\n", "proba": 1.4011666849000903e-07} {"commit": "0c98427c1eaf4a9068c663b48a50e7422a0b267d", "message": "Adding helper method to handle case where ion is missing in \n\nThis would be invalid in the latest NeuroML version, but there are some\nold files out there with this issue.\n", "proba": 1.0820811269240949e-07} {"commit": "d095fadb4c9a62292b3e23b7f02adcf21bf6f6b1", "message": "myelin data now map onto msmall as well as msmsulc and fs\n", "proba": 1.3453406211283436e-07} {"commit": "6efd12d4e9099756befc1ed963574f70399b4662", "message": "fixed import survey view\n", "proba": 3.128278365238657e-07} {"commit": "bb35e99b8203baff2fd0701318bd1bbc25b22639", "message": "[price] allow dividion of Price instances - for ratios\n", "proba": 1.8311885696675745e-07} {"commit": "10d44ef8c46d59288e15e6bbd135265e673d3e07", "message": "Fix to_vendor test to expect lowercase country\n", "proba": 1.3019340258324519e-05} {"commit": "b1d4c0485c496c83d4651e69ac278e2b81200ea6", "message": "Fix typing import for child.py\n", "proba": 8.79132767295232e-06} {"commit": "90caaadcbfff3e68c73720f81812be737e8f9208", "message": "Printing changes\n", "proba": 6.388585234162747e-07} {"commit": "b84f080907c1aa683c426bed836086ce14f1d2ef", "message": "padding and bug fixing\n\npadding and bug fixing\n", "proba": 3.486636614979943e-07} {"commit": "c81cbd05a5e29b1c82706fc5a3b09424c087ba0d", "message": "provide a more useful error message if user fails to create an ESP\n\nIf you do a UEFI native installation, use custom partitioning, and fail to\nmount an EFI system partition at /boot/efi, blivet's __init__.py attempt to\nset a stage1 device will fail completely and return our old friend, the\ncompletely oblique error message \"you have not created a bootloader stage1\ntarget device\". With this patch, when that test fails, if the arch is UEFI,\nan additional error message is appended: \"For a UEFI installation, your layout\nmust include an EFI system partition mounted at /boot/efi\". It's always hard\nto consider all possible paths to an error condition, but I don't _think_ it\nwould ever be incorrect to display this message when the attempt to set a\nstage1 device fails during a UEFI installation, and usually it will be a\nuseful cue for the user.\n\nSigned-off-by: Will Woods <784757851bbba5f9f76c4ace2456f8b210023708@redhat.com>\n", "proba": 7.854380237404257e-05} {"commit": "e3413b4f084d94f194cc069bddbf8c6f6b7ef8c3", "message": "Add logging to download_file in run_isolated.py \n\nThis should help identify how often failures are occuring, as well as\nsome more details about the failure.\n\nR=maruel@chromium.org\nBUG=\n\nReview URL: https://chromiumcodereview.appspot.com/15789005\n\ngit-svn-id: d5a9b8648c52d490875de6588c8ee7ca688f9ed1@202125 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.6968376914737746e-05} {"commit": "fbd025d7b48fd92e7ac42c21ac7143ab8307cac7", "message": "pep8 changes\n", "proba": 2.5558017568982905e-07} {"commit": "b75415bf59e8a50989a8afd5eaede648de50fc22", "message": "MPPT benchmark wants 2 procs\n", "proba": 2.2466551286015601e-07} {"commit": "60301f0ecf41c85d1c887787d6c00d1ddb7969f4", "message": "Remove old function\n", "proba": 0.0010436816373839974} {"commit": "593668f2a7f94d4a4b76b5752a152a141c59ee7e", "message": "added --year/-y option\n", "proba": 2.2408530639950186e-06} {"commit": "e9a37ffc4a7b1b7288fb4f618cc2190fba520132", "message": "Don't require nss, required only for escrow key support.\n", "proba": 1.0039618558721486e-07} {"commit": "5908c0ed9f25795f92b89ed60e5b954754dfd4e9", "message": "Fix formatting\n", "proba": 0.05716899037361145} {"commit": "ff7894cb2bb2d1745135f45a2d1f442aea9ca92d", "message": "CLEAN\n", "proba": 2.426723949611187e-05} {"commit": "e427210ba48b25c87f0d47b0dd699cc1711373af", "message": "Removed taskid from print statement\n", "proba": 3.827286946034292e-06} {"commit": "2c1bd66e6b015fffe5c376d20eb14103a08a753f", "message": "Refactor is_shared_table method.\n", "proba": 1.466380865622341e-07} {"commit": "307a77e1efbcbbbd78977716ec0a8c65dbc80e18", "message": "Add documentation strings\n", "proba": 9.570261454427964e-07} {"commit": "88a30e764a795bb2e9669c02dba888e6966a549f", "message": "Add `!=` and `==` comparisons.\n", "proba": 2.255229901493294e-06} {"commit": "5d95f824540d4b19d9d1798e8d36ff5639adf8d7", "message": "Typos\n", "proba": 1.7046078937710263e-05} {"commit": "dae9037a688237035606d6c98b3ea3977b6d00ed", "message": "Avoid error with empty Channels section in user config\n", "proba": 5.608786182165204e-07} {"commit": "fdb0958f4b817962dd9e2509f9ff698f4ca0b8f4", "message": "Incorporate deduplication/frequency inferral from 0.4.18-alpha\n", "proba": 1.9891554984496906e-05} {"commit": "18eb5b374adf98c4bb64ae6a56e374507f6eab66", "message": "Revert of win 2015: Update the toolchain package to VS2015 RTM. (patchset #2 id:20001 of https://codereview.chromium.org/1265503002/)\n\nReason for revert:\nIt's breaking the VS2015 builder. I'm looking at it.\n\nOriginal issue's description:\n> win 2015: Update the toolchain package to VS2015 RTM.\n>\n> I've tried it locally (build Chrome with this archive on a fresh VM) and it worked well, the archive has been generated with package_from_installed.py (from depot_tools/win_toolchain)\n>\n> BUG=\n>\n> Committed: https://crrev.com/f04ff85d2b85833971ef7ca7f31f4fd5a1b1f3aa\n> Cr-Commit-Position: refs/heads/master@{#340898}\n\nTBR=brucedawson@chromium.org,thakis@chromium.org\nNOPRESUBMIT=true\nNOTREECHECKS=true\nNOTRY=true\nBUG=\n\nReview URL: https://codereview.chromium.org/1254023004\n\nCr-Commit-Position: 972c6d2dc6dd5efdad1377c0d224e03eb8f276f7@{#340906}\n", "proba": 0.00021224343799985945} {"commit": "d821c95eb05f3ad0b82601487093559d1d686a2c", "message": "debugging prints\n", "proba": 1.9106701074633747e-06} {"commit": "2746605e023ad959965df7b4930599a66814b59d", "message": "fix path\n", "proba": 1.6634247003821656e-05} {"commit": "a77e01dc3478d4bffae4513fd9000fbb29753327", "message": "Remove caching server\n", "proba": 7.952146461320808e-07} {"commit": "bd63c8f317c23cf6128954f5461e7825f01e7174", "message": "Removed --sdk argument for p4a\n\nThis argument no longer does anything.\n", "proba": 1.1436446811785572e-07} {"commit": "24d46638fcc3ab7e433ea324650aca65bd12b9b5", "message": "Don't login the user if they aren't verified.\n", "proba": 1.213814329048546e-07} {"commit": "6038d04c2f1690367f90f179a9551cfb7cddabcb", "message": "fixing python connection tests\n", "proba": 7.542611228927854e-07} {"commit": "53fee1c7400272a2e181a6406d7d842afabaf782", "message": "improve coverage of new transforms\n", "proba": 1.447832715939512e-07} {"commit": "a6804dd0baefbbd9681edc2f0ba0ec13e84f5cc3", "message": "Fix case where path is None in sanitize_path\n", "proba": 0.9999991655349731} {"commit": "8b19ee4a694a3f6d2dcaff0f3179877b667c8539", "message": "create set with set literal", "proba": 7.468003332178341e-06} {"commit": "0d0bd2d9bd4dfb80ce9ecc47df7abe61bafbce56", "message": "remove unnecessary log\n", "proba": 3.087827280978672e-06} {"commit": "b98abced0db6ae03a37a06d9538b37d13f05191b", "message": "fixed float division bug in ratings\n\n--HG--\nbranch : pyconar2012\n", "proba": 1.306266312894877e-07} {"commit": "f4f542dce6bf413174574794e3f6fb41bc478352", "message": "Ensured that exported animations are prefixed with their model name\n", "proba": 2.2520652009916375e-07} {"commit": "6ec10cf3bd82f165d65413c269ad80493e9ae184", "message": "Cleanup orphaned code in sqlalchemy API\n\nThere were several methods in the sqlalchemy code that were no longer\nbeing used anywhere. While some of these have potential for being useful,\nthey are not in use and should not be sitting around the codebase waiting\nfor someone to need them.\n\nChange-Id: Ic30d27b29d19de5470c9fffadc136988899525ca\n", "proba": 8.737658936297521e-05} {"commit": "23fb2f0678417324a07c20764192b7109e0c62fd", "message": "Added genlog entry for the base parser.\n", "proba": 1.0581443632418086e-07} {"commit": "4a162aeb6f1291e15899567042bd293709e80e11", "message": "propagated changes of Friday Dec 07 2007\nfrom the MonetDB_1-20 branch to the development trunk\n", "proba": 1.0813693052114104e-07} {"commit": "285dbc203300e47a95e671f3f1c6f88ffe6c1210", "message": "Updated build number\n", "proba": 4.853537802773644e-07} {"commit": "42a0993f041a2d609d122ebcb114e88f569e59af", "message": "Add methylated lysine to mod map\n", "proba": 2.3751074706979125e-07} {"commit": "394e683718b232c437c729f0439ab56a64216c93", "message": "Add support for sending chunked http messages\n", "proba": 2.040751070353508e-07} {"commit": "a4533e2a1ed97bb66cbb1c4aee51686f8e6f79e6", "message": "Downloader know what page has just been stored\n", "proba": 3.056176183235948e-07} {"commit": "c39501b20c0d8dbfeb206572328ef54e6cc04303", "message": "[bugfix] fix calls to rasterio.merge.merge()\n\nThey were failing with rasterio>=1.2.5\n\nProbably due to https://github.com/mapbox/rasterio/commit/01440b806e9768cbb77658e4b0726ed67312a17f\n", "proba": 1.434696969226934e-06} {"commit": "52149b069b7848195bea8949f5c51c3f8228bbe4", "message": "Pelagios RDF conversion script\n", "proba": 2.1336710176456108e-07} {"commit": "bb7827612315d24b3c57de0c112a0bb653f0cfc3", "message": "Fix : Test - Add new param in setup_with_file\n", "proba": 2.4269348841698957e-07} {"commit": "54c67a4fd9f068ed760c6b633e3f38975dfa0b51", "message": "1111: Fix HTML plugin installation\n", "proba": 2.1365359259561956e-07} {"commit": "6e1b67df6ecbdc5bbf141c93e8d4c885ec394400", "message": "Improved Error handling with _get_url\n", "proba": 2.4982114155136514e-07} {"commit": "43222f62afc7c4f5e046a393bcf9edd8b42d1ccb", "message": "remove required for story\n", "proba": 6.603069664379291e-07} {"commit": "540e9b6a09d46946e2f720f559acffe71fa3051b", "message": "Added mute option to execute()\n", "proba": 1.524821016118949e-07} {"commit": "3d3bb508c9ddf4c80a559f17d8b0f009b7cc37ed", "message": "Change to classmethod\n", "proba": 0.002556572435423732} {"commit": "e809ce4721b007090834419ab971dee50b702049", "message": "io updates\n\ngit-svn-id: 24f545668198cdd163a527378499f2123e59bf9f@1227 ead46cd0-7350-4e37-8683-fc4c6f79bf00\n", "proba": 4.964065851709165e-07} {"commit": "d94e16dd780e507306674294c1e68f350e7db2cf", "message": "bugfix: https tinyurl\n", "proba": 6.80580285461474e-07} {"commit": "a2f12b538812116341af1f6d52d4881196c9a1e7", "message": "Added `raise_on_error` parameter when bulk indexing.", "proba": 1.0756505730569188e-07} {"commit": "9d913b6aa4110abd5bd557991d9f1b95699e9e57", "message": "Catch an error that occurs if you try to get an unweakrefable value from the scope cache", "proba": 3.515095272632607e-07} {"commit": "361ecd663a8f2fdca4ef2d1aabcda403027e449d", "message": "test create update\n", "proba": 4.731132889901346e-07} {"commit": "9c1b8fabc6f6f4ebe9a2ae56c184d39b1a3e2be2", "message": "add ignore tracking\n", "proba": 5.633778528135736e-07} {"commit": "dc0af2a6e935e95b2c1895e63e6d063c068c99f1", "message": "turn field into local\n", "proba": 4.829776685255638e-07} {"commit": "98b52748f863e2305886ee4480f58bdef3015d3a", "message": "Include version codename in the generated version string.\n\nFixes #12205.\n", "proba": 1.0962384777712941e-07} {"commit": "f94f4af46125e5bbcb5d3fd71d645f88418bcc29", "message": "Extracted text preprocessing into separate method\n", "proba": 0.01628749631345272} {"commit": "08107d36e65036733f458a67ac2a9fdad885f953", "message": "useage to usage\n", "proba": 3.5062498682236765e-07} {"commit": "79152e94ff6e7bbe5b31dd7d44882d40e41bec35", "message": "Don't write to log in destructors\n", "proba": 4.192486926513084e-07} {"commit": "f0d8154bf1da4b1e40be936de42d2dc62467c211", "message": "admin monitor -- make it also restart cassandra and snap, if need be.\n", "proba": 1.0262520078185844e-07} {"commit": "9395387c37ff4f3b0e77616004b36fbf75f7695c", "message": "[RPG] Add life advice, as suggested by rucdoc\n", "proba": 1.391982067389108e-07} {"commit": "7a8f46b916d4477669c882673f4cbd7ef48861c9", "message": "Adding support for download interval\n", "proba": 1.910424600737315e-07} {"commit": "9aeb785bfac67d4a5ac73439b55b4027071bdff2", "message": "Fixed type mismatch in setenforce statement\n", "proba": 2.3041174301852152e-07} {"commit": "df32beed4b677aaafaab47373aad28fd91dddf9f", "message": "Add special use constants for IPv6.\n", "proba": 1.332660417574516e-07} {"commit": "8eab0d29a0f281df8d77eff86fb0c1b17633c90d", "message": "ios driver: more relaxed prompt handling.\n", "proba": 1.1732792160046301e-07} {"commit": "572f7e78547ac15accf78a458f5f4b403d95b758", "message": "global admin monitor: monitoring database, snap, and compute\n", "proba": 2.64147217876598e-07} {"commit": "c2954f1f9516e5fb96262412589fa8210724c30e", "message": "Adjusts algorithm to break for max spots\n", "proba": 5.204390163271455e-07} {"commit": "4f2a4bf53498dfcff2c2e360516727beb3d73f73", "message": "Moved to version 2.0.0\n", "proba": 1.6856499485129461e-07} {"commit": "5aa7bbaa12673d4c2748e53a546f44801c014ba7", "message": "Creates target_vms= attribute for separating status\n\nTest suite should target a list of VMs, and we want to store that\noriginal request list separately from the .vms attribute, which is\nrecomputed on each invocation to reflect current machine state.\n", "proba": 1.0733327115985958e-07} {"commit": "07a4a55843fd4744804c78760f4dfade1a0f743d", "message": "clean code\n", "proba": 7.890113010944333e-06} {"commit": "07ea551c02ee91bb60173cdfc17d78ab0bc7ed36", "message": "aws - health event filter remove extraneous conditional (#3314)\n\n", "proba": 1.2741620025735756e-07} {"commit": "13f0f64d0a4052df780118465c9e8cd257a7be66", "message": "backup: code style, no functional change (part 2)\n\nRemove unused variables, rename potentially coliding one.\n", "proba": 1.0364061608925113e-07} {"commit": "35e0805c8a75a9978c45fb9975fd2f5ca37c5097", "message": "Clarify TODO comment\n", "proba": 5.2397466788534075e-05} {"commit": "981105d21906ea6f609cb6c5025e04ac123134f6", "message": "revision number up\n", "proba": 2.3509344373451313e-06} {"commit": "b6a4b5be0e2db87ca2d90529815544c7e514dabf", "message": "add goslate package: google translate api\n", "proba": 1.4513706219076994e-06} {"commit": "d9078b6a27875c8d3e6079f83b25e18bcce6774b", "message": "fix bluetooth init\n\ngit-svn-id: 9d763a2146cc7918956fa045a5de4b112f309167@1245 a8f5125c-1e01-0410-8897-facf34644b8e\n", "proba": 0.0003919113951269537} {"commit": "b433abe998755042fa4d44e837e1783844a00833", "message": "Fix failure to parse unicode data when validating ports.\n", "proba": 2.673761230198579e-07} {"commit": "690b4c0607350e51a91d6af50c3090f18835db90", "message": "Small readability change\n", "proba": 1.8376790933416487e-07} {"commit": "d4b122af52afeccb18f010f8e08b3e36d47f0475", "message": "merging old stuff that I don't remember\n", "proba": 4.099541968116682e-07} {"commit": "f77395e0c7f9f0b8b5ee78213b0b30b6ab99e505", "message": "Added NRF5x class in nRF5x.py to help with common setup/cleanup and options\n", "proba": 1.2114897174342332e-07} {"commit": "10e76ab13f64d905d3a900a9d7b1b4f39bf4ba93", "message": "delete wrong content-length header so that it will be recalculated\n\nfixes #385\n", "proba": 2.898476338941691e-07} {"commit": "a73ef8b5989a55f1ed98eef257f76262076a83c3", "message": "fail more gracefully on unreachable Docker (#1138)\n\n", "proba": 1.2093910584098921e-07} {"commit": "336afb0fa50d6305634f54336f900b0dfd69680c", "message": "print removed\n", "proba": 8.553403745281685e-07} {"commit": "92b52db0efbe8244718d9eaebc330ed070b572aa", "message": "Add a test about the warning in test_galpypaper, but doesn't work currently\n", "proba": 1.4002397392687271e-06} {"commit": "3152a8b1fca2437e07e376be0e4a87b6dec00496", "message": "read in custom conf option flag\n", "proba": 2.9155123115742754e-07} {"commit": "00c1b4c09af5fecd2d45c67e988a43a4fd79128e", "message": "add unicode method (#100)\n", "proba": 2.0107734144403366e-06} {"commit": "a8259c3f82ea47550dc22ec318143fb8ef3926c8", "message": "Use session authentication in the API (fixes #192)\n", "proba": 1.0906907021990264e-07} {"commit": "53542fdce4b415fdb30360cb4a6121c17bffbfd1", "message": "[agriculture] Handle more typos\n", "proba": 4.752348831971176e-05} {"commit": "b2ef3bed568536140d36fd7da717a9b77018af3d", "message": "Handle ranges and lists in schedules.\n", "proba": 1.2591434028763615e-07} {"commit": "01b95bad462aa8eccb6b74edf1b32580deb938bd", "message": "departures displayed before arrivals in timetables\n\nCloses #5465\n", "proba": 1.3039500856848463e-07} {"commit": "a2fe294c0086da1784bca924409e88ad0d8b1cf2", "message": "Not all connection_error()s are HTTPErrors\n", "proba": 0.0017046070424839854} {"commit": "cb52a2606275d7ec5f5261d9d98f0afaefeac180", "message": "[V3 Msgvote] Global Config -> guild Config\n\nAlso added a settings display when msgvote is used with no argument.", "proba": 1.0052974630525569e-07} {"commit": "14e0bc23ef2e88d2cebbc42b0ae6ecabed99fd94", "message": "stopped cleanup from deleting the /ftp/error/animalia directory\n", "proba": 4.2060909777319466e-07} {"commit": "61322243c1c3e35cca2ad0ccb08b4da7c27c9d72", "message": "comment handling errors...\n", "proba": 1.2423336670508434e-07} {"commit": "8e3555dde7424ffc05ce41d774331e4127d4d8ab", "message": "Clean up comments\n", "proba": 1.805961460377148e-07} {"commit": "651d598d0affd70a38628dad83e778814dfb755b", "message": "INST: made input arg mandatory\n\nFormer-commit-id: 5e986c8ac3a64d5b6f45199ac802342fa4ec2d22 [formerly fd33d1dffa4ae236cce0cb0192ee4913e4ae1d45]\nFormer-commit-id: 3e2070092e059262d444008fd1afab57bf9fd4be\nFormer-commit-id: 24067142948b7ba984a26116726ea3928fcb9eb6", "proba": 0.006697150878608227} {"commit": "4d898bdf285e1360de3ed3ae16ae6682ac525720", "message": "Add more rST docstrings.\n", "proba": 1.2536342808289191e-07} {"commit": "352a29253b32ef6f0cfac85abb6c5bbe81f23ba1", "message": "Avoid IntegrityError when updating a message's status with None\n", "proba": 0.0001670138881308958} {"commit": "7175c66b82645859f097d80c3f265351da325708", "message": "Bumped version.\n", "proba": 1.313067059527384e-07} {"commit": "73c17225a9a3a3694fce4404e95a8ddf728c3682", "message": "Remove unused messages\n", "proba": 8.412824854531209e-07} {"commit": "e935d5067ba6618fd28f93ecca8e946341f64ef4", "message": "Add a multiple chromsome test for GenomicRanges\n", "proba": 3.950653535866877e-06} {"commit": "cd974428f5308af84dcfbb5fa3f9dc9bb18f2300", "message": "Test tec.TECBase.calc_thermal_rad_rate sp. case\n\nA special case exists if either or both of the TEC's electrodes'\nemissivities are equal to zero. These tests test those special cases.\n\nCloses #73.\n", "proba": 4.920294145449589e-07} {"commit": "b472d793e7bc16f0d3d0e676ab05db3a17b4b8db", "message": "added ability to default params\n", "proba": 2.9507347676371865e-07} {"commit": "8357313acfe88c010664cbd7f9b4aa3ce707bbf8", "message": "import of unit tests for log destinations\n", "proba": 1.6023297177980567e-07} {"commit": "c4fdd737a5626d01aedf7c5dee9211bdd81858ae", "message": "Remove comments.\n", "proba": 1.3317647074018168e-07} {"commit": "39a24da164f7634b0a65ccc94939edec16ceb1f9", "message": "Streamlined scripting, only includes major function calls\n", "proba": 1.4510742119000497e-07} {"commit": "35e661d5ab5a0c1b444f628b18f5653eda37ab4b", "message": "still fixing logging issues\n", "proba": 1.6169958882983337e-07} {"commit": "0f3002321ff4fd602678d341bef78915c9323a4c", "message": "store None on stack after pop\n\nThis allows the object to be freed much earlier (and tells the JIT that\nthe object that linger on some stack do not actually escape).\n", "proba": 1.2361361712009966e-07} {"commit": "c4315a71245219bef057675fe3d1083363f27873", "message": "Added a period to the description of the init function\n", "proba": 3.261247343289142e-07} {"commit": "b3d70c61f15d20081dbc96d3356be003a16e731c", "message": "[core/config] ast is part of the PSL\n", "proba": 3.201886329406989e-07} {"commit": "94496fc0d4f3ed8e3f441047e54e9e6970b6a783", "message": "Change center_lat and center_lon to Decimals\n", "proba": 0.9999699592590332} {"commit": "5ceb9df1582c201b7a4822fc26deab8b74c3c491", "message": "Fixed log message capturing and printing for Docker API\n", "proba": 1.4163695993829606e-07} {"commit": "144e442df2d3909f50ed149eca45d56d2772a491", "message": "showing pokestop cooldown and identifying when user is probably softbanned\n", "proba": 1.3828524458858737e-07} {"commit": "9c8d5e5eae1cc05279ea32eeeb2d257e60ccedc7", "message": "made changes as per TF1.4 and using train_and_evaluate instead of Experiment and learn_runner\n", "proba": 1.5255541541137063e-07} {"commit": "e3ae49d2ac1293f7057ac08ef7cc3148376c4462", "message": "add some tribes\n", "proba": 0.9985093474388123} {"commit": "e659ff32ac3edb6f799d31f3672f1c57b3c4476d", "message": "Added handling for urls with both a path and http://\n", "proba": 1.182232125529481e-07} {"commit": "d7b9d15aceea496ca3e8a99b8f442a76255887f5", "message": "\u4fee\u6539\u542f\u52a8\u7684\u903b\u8f91\uff0c \u4fee\u590d\u521d\u59cb\u5316\u4efb\u52a1\u961f\u5217\u4e3a\u7a7a\u65f6\u68c0\u6d4b\u4e3a\u4efb\u52a1\u7ed3\u675f\u7684bug\n", "proba": 1.867898618002073e-07} {"commit": "19012d8f044cd3f5d31f9a10e842a9b767506258", "message": "add gravatar support. closes #1\n", "proba": 3.609448867791798e-06} {"commit": "7e21fc89c8d0dc2a485cf13da804f9a538b9ddc9", "message": "Fixed tests\n\ncreate_dataset() now takes an additional argument to support\ndicrete timeframes. This broke several tests.\n", "proba": 1.206429374178697e-07} {"commit": "a25b64166a6880cfba279b78d66e3dcf6d43fb7f", "message": "DecoratorsTest.py: Import LocalBear\n\nBEAR_KIND was not defined in DecoratorsTest.py\nand hence was showing undefined name error during\nexecution of kind function. This commit fixes the\nissue by inheriting the LocalBear class.\n\nFixes https://github.com/coala/coala/issues/4702\n", "proba": 5.647140710607346e-07} {"commit": "45184438d2da4718ebfc3e2e3f03ed8651392062", "message": "fixed print statement\n", "proba": 1.1693872693285812e-05} {"commit": "c540b04025ba1bd72191dd24f3508a30a9a0c6fe", "message": "Unused import removed.\n", "proba": 1.2838492580158345e-07} {"commit": "a6ce033bb6d5488df328e4c33459eadc0e410464", "message": "added logging\n", "proba": 3.9830032960708195e-07} {"commit": "cfd1501bad02b8b946258226568685a4bef4e509", "message": "forgot sascfg :(\n", "proba": 1.8829670977993374e-07} {"commit": "9ef7d1e42da017360eb1e4b88fed96b2cbd0933e", "message": "Added DB index on Person model's title attribute (refs #54)\n", "proba": 1.047691355893221e-07} {"commit": "4cdaca8a671042c53a118678642eb1ed2f2f81a8", "message": "more debugging code\n", "proba": 3.1347141771220777e-07} {"commit": "020d36e38b542a52b4f1f71bf7409743c80d505c", "message": "more integration tests. TODO: double creation without conflict?\n", "proba": 1.0378264647670221e-07} {"commit": "df10aa13309ad387831bce5086d0b4b0f4f2e7dc", "message": "Don't force the user to convert strings of floats to float just to make string interpolation happy\n", "proba": 4.3033438146267144e-07} {"commit": "96f99cbfdbbfb843d963d4f9c8237315ad8bebe1", "message": "Added one more code.\n", "proba": 1.0724302512699069e-07} {"commit": "e7f4e97e418ca142805ba09ca13c68d1dffde0e1", "message": "hack to fix window clipping\n", "proba": 2.771155322989216e-07} {"commit": "5269f497911f96d82cfaa518d0ee4be24269831a", "message": "moved testing database to memory\n", "proba": 5.995679543957522e-07} {"commit": "c1260d4fb125f0b1f588fa3e660fc0c340ba47ee", "message": "run sanitizer even when validation is off\n", "proba": 6.300453492258384e-07} {"commit": "d91f69b0cdd95b480c9ca6e9a5754dcb3230589e", "message": "singulariza class actividades\n", "proba": 7.386826723632112e-07} {"commit": "6be46e579a2d88e5509cc9874b9ba4cf1d8bb32f", "message": "Add false return for a few conditional rules\n", "proba": 0.0002969879424199462} {"commit": "3aab15721ea073927b9f30fc3e8009f32badc326", "message": "Open MPI: disable testing of zero-length reductions", "proba": 3.5601271974883275e-07} {"commit": "f0084fe05c9ef16bc505628495dc53fa547a606a", "message": "fix twisted error when the return value is a generator.\n", "proba": 1.3685611577329837e-07} {"commit": "5794d286da01b0a8df42898bb8792f3dbb0504a3", "message": "Added comment field to rating model.\n", "proba": 1.0670620298469657e-07} {"commit": "6592c6bf2bb5d0e29a1dd8b67938579421f489d1", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "88f58c5c26b0dfb759400f20e104a86af3187cb1", "message": "Update ios simulator build config file to build under new ios SDK\n", "proba": 1.805296818702118e-07} {"commit": "4fc38b6ce475ec58969b3997d0678772f3e2a575", "message": "Create local branch if necessary.\n", "proba": 1.4767886113986606e-07} {"commit": "b0395eb2dfabd359f82e12bbee44c90016355b00", "message": "removing unused code\n", "proba": 6.9273005465220194e-06} {"commit": "eb463fab00c26274980e0469dbb208f34daad7e8", "message": "Also changing ansible-shell -> ansible-console in cli code comments\n", "proba": 1.9041856091916998e-07} {"commit": "03373a48bf757b2960464431eb333694c0f86aa3", "message": "Show msg remote read status in the msg list\n", "proba": 2.8218687475600746e-07} {"commit": "1291a837a41459c6e023311d82d6db00136597df", "message": "Travis->CI tweak for integration suite\n", "proba": 1.3988915270601865e-07} {"commit": "05919cc3129c2e6e9099120b0628baaf046a3279", "message": "remove celery settings\n\n", "proba": 1.1209625881747343e-05} {"commit": "a6abab4ef0f5ae119224d133efbf166787856d92", "message": "that test again...\n", "proba": 1.4135224546407699e-07} {"commit": "766b99b6c9ed1c9122643ef5e7da51486dacc6af", "message": "Introduce a cache mechanism to track changes in mutable field values\n\nThis is useful when a field value content is tampered without the\nvalue itself being changed (this can happen with values of type list\nand Packet, for example).\n\n--HG--\nbranch : issue-5105\n", "proba": 2.4272180780826602e-06} {"commit": "afe9c6f606e2356504dd205cbbf1648d97d235f2", "message": "log only when actually skipping request\n", "proba": 1.8648496791229263e-07} {"commit": "3b9db63f8b3c809fee8b01d865772ba414403fde", "message": "update exception\n", "proba": 7.38861615445785e-07} {"commit": "b5d0f71f220450376c70c92dc352c2855ea6c65a", "message": "Bug fix\n\n", "proba": 5.465154799821903e-07} {"commit": "f66ed2fa79361b5fb7f5871af1655938548bd6ef", "message": "Add ordering for ratings.\n", "proba": 1.1893384055383649e-07} {"commit": "b47d313317d434cd5479ef72116b634a9630b4ac", "message": "Fixed PEP Error\n", "proba": 5.068997097623651e-07} {"commit": "d55e546b5eea1f6e3af48d65552cccac3ca0321a", "message": "PluginTestCase: Reimport the module in setUp()\n\nThis makes sure the config is properly set up after it's been reinitialized in\nLalaTestCase.setUp().\n", "proba": 1.2037619967486535e-07} {"commit": "f39c54b721b77ffb5fb1c47585dfd543f3043420", "message": "Fix typo: Retrirves -> Retrieves\n", "proba": 0.01573224365711212} {"commit": "603798482d59c08313c2a687b4e7dc225fd8e894", "message": "add example\n", "proba": 1.502204895587056e-06} {"commit": "445125ac2fad744992367379a201495709efe73c", "message": "covarage\n", "proba": 1.7690725826469134e-06} {"commit": "c5fbc2693e73415e013a0d3272787d6b1724ce11", "message": "Issue #4673 - IPython doesn't display cells with unicode as a table - removed commented code - that code breaks unicode characters with non-ASCII symbols, default encoding is ASCII not utf8\n", "proba": 0.00011735226871678606} {"commit": "f904d06c9aba1e8a10b3f79e3098492243ccd99f", "message": "Add test for new template validation logic\n", "proba": 2.5246794166378095e-07} {"commit": "957aaba4707f837285b45128e36e7d170edb175e", "message": "REF remove local copies of scipy's nanstd, nanmean\n", "proba": 1.317977478265675e-07} {"commit": "ecea890082e90ffecd9db1ced5e02ed7c9dfc452", "message": "[ISSUES] newIssue will now add the issuenumber to new issues,\nthere is some concern of multiple issues being created at the\nsame time having the same number.\n", "proba": 1.0529018368288234e-07} {"commit": "e1a7ca6e7a623614dac22410c91fe2f5de5a4f11", "message": "Define the RA_*_DEPS variables before they get used (indirectly) in\ndependency lines. 'make' evaluates dep lines when it finds them, so\nthe values must be defined by then.\n\nProblem identified by Philip Martin \n\n* build/gen_base.py:\n\n (MakefileGenerator.write): no longer collect the RA modules into the\n ra_modules list, nor write out the DEPS and LINK variables.\n Instead, call self.write_ra_modules() to do the work, and to do it\n \"early\" in the file.\n (MakefileGenerator.write_ra_modules): new method to write out the RA\n modules.\n", "proba": 2.9493898523469397e-07} {"commit": "37ef134f9fae32453576e6018f622a9e5f82ccb2", "message": "Update on_ready of bot\n\n", "proba": 2.674174481853697e-07} {"commit": "f6f3cada2c7ff684420b6708d1a97e5781becc70", "message": "OPT: 1. AugmentedState, 2. LMAugmentedState, 3. Better defaults\n", "proba": 2.4327277060365304e-05} {"commit": "dd0a63df98b68443d5738df49e45be05f0f5ee99", "message": "fix broken test, re #2355\n", "proba": 1.304069456864454e-07} {"commit": "da99892d8afb102f8c6a1f0dfdbc6b0b5458e8d0", "message": "Tighten up Game initialization\n", "proba": 1.040638471749844e-05} {"commit": "c6ef9570350e660048bd6079fcba94fdf5a978cf", "message": "Add default input arguement\n", "proba": 1.4559441297024023e-06} {"commit": "a25a1482d8baac644e957ad98491da8ecfc30e6e", "message": "opt: tempfile Js for LMParticleGroupCollection, mode='polish' & 'do_positions' for burn()\n", "proba": 1.3182641112052806e-07} {"commit": "efd036ac21355f7801eca8650f9ffc848907e6f6", "message": "Name updated\n", "proba": 6.668784635621705e-07} {"commit": "48caee439101de1410af2b8142e271036d70f965", "message": "implemented nested unregistered udts\n", "proba": 5.26823441759916e-07} {"commit": "66df069c7982bb5d994b906626dd8419d29358fb", "message": "errant print statement\n", "proba": 0.9531152844429016} {"commit": "84741b4a75d5856f7c134a941a9e6b3d1178ba1e", "message": "LB-1927: Reset DeletedOn flag when receiving a published post from a chained blog; fixed\n", "proba": 1.2088376877272822e-07} {"commit": "4ddbc7d56616fab8976033fbad680181d5dc34d6", "message": "[FIX] rent.rent: CRON_JOB call wrong arg", "proba": 6.729626329615712e-05} {"commit": "dd20142f112ad7de5657cea75185979837fc3cac", "message": "Adding get_good_pos_rad, p,r for particles in image\n", "proba": 9.196418773171899e-07} {"commit": "1891646c6756470a82002ae42a3cded0a3959138", "message": "set 0 as value for empty label (#307)\n\n", "proba": 4.566661289118201e-07} {"commit": "76fb94ed2b1c613fac881b959ff06aa017a8000f", "message": "added test for not not one sparse case\n", "proba": 4.519643255207484e-07} {"commit": "270420a5ca1429c7b17bc27e9d0b3af6b6395ff9", "message": "Fixed test\n", "proba": 7.068065883686359e-07} {"commit": "a4e24d3fc07479043eb9fa6ad8bc95096cbbe861", "message": "Nano-cleanup to address a lint warning.\n\nPiperOrigin-RevId: 304199794\n", "proba": 2.439421393773955e-07} {"commit": "a43feafdf42bb595a155b04c6f2267b64c87dea3", "message": "[IMP] rent.rent: Adendum modification date was copyng for the original record, it needs to be empty to filter it when it needs to bee approved", "proba": 1.5759721350150357e-07} {"commit": "43fe41b8b5ec749e6fe984a14bef90fa81685044", "message": "Refactor wish to mentor specific button and remove unnecessary usage of public visibility in tests.\n\n--HG--\nextra : rebase_source : 3210181bc74227029cbbec6e6ec30cde8bc19fa7\n", "proba": 4.924387440041755e-07} {"commit": "2e20d61dad493216a201102a3185a7e23baea72b", "message": "More debugging stuff.\n", "proba": 1.3017508138091216e-07} {"commit": "806fa5e7de957a2b363e4a341cc8701f08579e5c", "message": "try again\n", "proba": 2.878732914268767e-07} {"commit": "d051e5b18a633e69d1903e4b51b352d82c8692ba", "message": "Add path attr to Conditions #18\n", "proba": 1.3705033552469104e-07} {"commit": "ad3f891917c6ed794ccd560d2ff85e8fd49bf513", "message": "[FIX] name_get stock", "proba": 6.932441920071142e-06} {"commit": "64e16c094b3b4f551798f3dbff496fe5c6798f3b", "message": "Add a test for the intcomma regression described in #16404/#16562, fixed in r16726. Refs #16404.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@16736 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.4700351130159106e-05} {"commit": "15e318c5951feab9b4a90fbf43104063d5428c7a", "message": "Forgot to actually add this to a set.\n", "proba": 1.0517999271542067e-07} {"commit": "99623df5298608d7c0878406b209328cc58aea76", "message": "[FIX] rent.rent: invoice for services fix account for invoice and description", "proba": 1.2958747674929327e-07} {"commit": "da5bfc8541115d08a449652b96d29771833054dd", "message": "Added a test to demonstrate the remaining problem in #7095.\n\nOnly fails for MySQL (because they've made some interesting syntax choices).\nRefs #7095.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%407495\n", "proba": 6.172276243887609e-06} {"commit": "97fe70d30bddfa24bf5ef5d2148a1a5ae6bf54b2", "message": "[py3] Used BytesIO to test request streams\n", "proba": 1.194985514985092e-07} {"commit": "b1566db117c185c36f4b7c2f4c31ee95cf5a2158", "message": "test to cover next_token alias method\n\nIt's not much, but it does ensure that the alias method functions the same way as the decorated one.", "proba": 1.162391427556031e-07} {"commit": "71a4b42812597f0fe711ab92cf73a88e424f90fe", "message": "Update UI version name\n", "proba": 5.598632242254098e-07} {"commit": "161147fa1a14be04e242515fcd3e89c814492426", "message": "webrtc requires IOKit\n", "proba": 3.114575065410463e-06} {"commit": "40b7b887b8461675dbce4fccc993c6f8462fa7f6", "message": "Cut scenario in parts\n", "proba": 1.9645035820303747e-07} {"commit": "9bcec25c60bc46ce1650f1c6342767bec2c2d4d8", "message": "Rather than fix the test... I'm going to comment it out. :P", "proba": 1.995203319893335e-06} {"commit": "1449e48048f96eff3d53e7f8ecc31c09aefab850", "message": "Make sure that the \"verbose\" option gets exercised.\n", "proba": 0.0009034795220941305} {"commit": "24e478c4fd190e713c8fc527ab306ac1892bedd3", "message": "Only restore indentation when inside a block.\n", "proba": 1.3086166461562243e-07} {"commit": "9ce8db5ed5307e7bfc7a0e067420a7d51ba7b098", "message": "Remove old debugging from test setup\n", "proba": 1.2722474593829247e-06} {"commit": "076b342d60e3d09e81b806fc162502075d723bf2", "message": "Start 0.24.dev\n", "proba": 1.314106043537322e-06} {"commit": "fd34c1da2a94aeb3e0bab242418808435ca0e68f", "message": "PYTHON-1725 Fix TestThreadsAuth.test_auto_auth_login\n\nCreate the database upfront to avoid test failures on sharded clusters.\n", "proba": 1.0135647698916728e-07} {"commit": "528bbcee9736118aa1534e8cc37c866ecb0ab814", "message": "fixed issue with BooleanInput\n", "proba": 2.0820097290652484e-07} {"commit": "7c2722994fa7dfeb7cee525db96c2db73f3d1dba", "message": "Partial support for new careful flag\n", "proba": 1.3258264175419754e-07} {"commit": "65c22394fad7929a7de1e78be7569a2895915dc9", "message": "Add Topics index page customization\n", "proba": 2.875124778256577e-07} {"commit": "6a299b59bab935d95d20e51642290680df9560fe", "message": "nova-consoleauth start failed by consoleauth_manager option missing \n\nMiss onsoleauth_manager option importing caused nova-consoleauth service\nstart failure: \"NoSuchOptError: no such option: consoleauth_manager\".\n\nFixes bug: 1164845\n\nChange-Id: I59a15a423f49ee6c28401f905b4973c2231faaa6\nSigned-off-by: Zhi Yan Liu <98cb9f7b35c45309ab1e4c4eac6ba314b641cf7a@cn.ibm.com>", "proba": 2.9427030767692486e-07} {"commit": "7b0d5f7f347cb1c040595000d9d6987369dce2ab", "message": "Don't update RT in _allocate_network\n\nThe call to _update_resource_tracker from\n_allocate_network is a carryover from old\ntimes when _allocate_network would call\n_instance_update which would update the\nresource tracker generically for any state\nchange in an instance.\n\n_update_resource_tracker calls rt.update_usage\nwhich grabs the COMPUTE_RESOURCE_SEMAPHORE lock\nwhich is the same lock used during claims and when\nthe update_available_resource periodic task runs.\n\nThe update_usage method can be a bit heavy weight\nif you're not actually changing anything the\nresource tracker cares about, because it's re-calculating\nstats for the capabilities scheduler filter and it's\ncollecting new inventory from the virt driver and\npotentially updating that inventory for the compute\nnode in placement.\n\nSo given all _allocate_network is doing is changing\nthe state on the instance, and the state it's changing\nto has nothing to do with what the resource tracker\ncares about (like deleting or shelve offloading an instance),\nwe shouldn't call rt.update_usage and hold that big\nlock unnecessarily since it could hold up other\noperations happening at the same time, like creating\ninstances.\n\nChange-Id: Ib588c31a4d2075f8730409d50c99dfb04180a9cd\n", "proba": 0.9999879598617554} {"commit": "78ab2f254ef606aa56d231cff7d814f47291cf8b", "message": "updated Json to include User data\n", "proba": 1.2451768327537138e-07} {"commit": "a0ddec3cd98bf149be08a99d6b91e86b8dec69ae", "message": "part 2 of per-user bookmark instances [still broken]\n\ngit-svn-id: e32780fd4e06e3e07c0119d454e1aebcae894468@15 413268e4-d34f-0410-bd0d-61523dc7b0b6\n", "proba": 2.4958063704616507e-07} {"commit": "62e2b8729809064e6ca946bf16d638b734b73140", "message": "Moved extraneous code outside of try: block\n\n", "proba": 0.0008295761654153466} {"commit": "03c8d82dd7dca4f567aacd0de702febbf63d845a", "message": "Add means of printing interactions.\n", "proba": 2.200496282966924e-07} {"commit": "c730d8d4b91c2fd6e94c8ddd7fecda1dfdff534a", "message": "1. find mks present in more cms. 2. fix stupid bug in getting content from pps\n", "proba": 1.304844516880621e-07} {"commit": "0811481ff2cef055888a4b6cfe0863eea3a1341f", "message": "add_job_template\n", "proba": 7.061968062771484e-06} {"commit": "3f9a5344ec553a14db1e66ac9a95208bee1d3fa5", "message": "Make log message for strange X-Forward-For headers clearer.\n", "proba": 1.5980201339971245e-07} {"commit": "3ef85fa1de4beb25aca7fb6a730375a646d83659", "message": "Update version number for new release to obtain DOI", "proba": 1.2536904137050442e-07} {"commit": "66f1a34cabc26930db2a1afed5a0f5ced4d1c015", "message": "Fix backwards compat of rpc to compute manager\n\nCommit dcabd6159abcdccd99e55495ec005926465007a8 changed compute\nmanager in a way that it will fail to respond to the older 2.X rpc\nmessage for reserve_block_device_name. This fixes it by making\nthe volume_id parameter optional.\n\nChange-Id: Ia2d353d5b195e5687917ef5f928c0c835ffe3d3a\n", "proba": 2.3459970179828815e-05} {"commit": "9adf2fde3c0b44ee93b1c94298559892df55def0", "message": "don't clear matrices if models are the same\n", "proba": 4.7554244702041615e-06} {"commit": "1a397a55720cbe7bd12a2dfd2c1613ab36042024", "message": "import in the JAX namespace\n", "proba": 4.285937222903158e-07} {"commit": "99db7afbea16e2ae6522e02aac4858546db84092", "message": "Owner: update error messages\ns/This plugin is incompatible/This plugin may be incompatible/\n", "proba": 1.2743151955874055e-07} {"commit": "46146b6cb3e060549951751e42a272ddd58d4adb", "message": "cleaned up code\n", "proba": 2.7749895252782153e-06} {"commit": "694c14c84d798139c7193035ec627ceb71d6c708", "message": "0.5.4 release\n", "proba": 2.2295074586509145e-07} {"commit": "d626064f9184e6ff0929e126503c6ca8e2271ca1", "message": "Update compat.py\n\nimport datetime : unused\r\nfrom urllib.parse import urlencode : double importded\r\nfrom urllib import urlencode : double imported", "proba": 3.185366495017661e-07} {"commit": "f425bccf9b06658aef269f0bdc78eff21eabb2e7", "message": " * Nihathrael's pychan widget patch\n * Close #314\n", "proba": 1.20337745102006e-07} {"commit": "d44e59066c400d5aee488ad1234cf86d4bf09c1a", "message": "some documentation updates", "proba": 1.957105979499829e-07} {"commit": "7e617b32ee22f6a0ef425320f86f12ed551af64d", "message": "isotype bugfix\n", "proba": 6.722806347170263e-07} {"commit": "c87c8a50586ff3c1d56159fc83820e6d8092b5de", "message": "Clarify MetaSchema choice in TestDraftRegistrations\n", "proba": 6.146327677925001e-07} {"commit": "d7be65b0b0c55411e335d15944554ae06faa0d0c", "message": "fix imports in endpoint/images.py boto.s3 no longer imports connection, so we need to explicitly import it.", "proba": 1.0449133469592198e-07} {"commit": "aa4386ff0463c327f04b8fee00e8d3713613df1a", "message": "specified 0.20 as version in develop branch\n\nspecified secret key\n", "proba": 1.6311132355895097e-07} {"commit": "332a2535c91428e39dd59b599151eb0d3c518039", "message": "SwapTotal should be used for total virtual memory, not VmalloTotal.\n\nSee http://lkml.indiana.edu/hypermail/linux/kernel/0506.1/0992.html \n\n\"The kernel has one gigabyte to map on x86. In your case 256M is used for\nRAM and the most of the rest can go to vmalloc. VmallocTotal merely\nindicates the amount of virtual memory that can be used for vmalloc'ed\n(non-contigous) mappings.\"\n\n\n\ngit-svn-id: 9f18dd852162ff6c59c5533c0914e9cf81af9e7c@319 d8a29897-7e4b-0410-a74a-8bb4c295346f\n", "proba": 1.3383818441070616e-05} {"commit": "868b70dc1dd922647d5086458f0ddcb9867baa6a", "message": "optionally use classes name for the profile_name\n", "proba": 7.003043833719858e-07} {"commit": "aba393b6f1439172d862f6aff79172aecd2ec1b0", "message": "Log when Jenkins tests start to see if we can figure out why they time out\n", "proba": 1.603090851176603e-07} {"commit": "e4242ba994a271df37f39ff3a1cd11f32c9bdf57", "message": "plugin/Topic: Keep track of what the channel's topic is when we join so that we can undo the first topic change.\n", "proba": 1.0254537130549579e-07} {"commit": "dfc886bbbf5d5489a3b03fe2c78f9a38c281323c", "message": "skeleton implementation of FastMesh\n", "proba": 2.859715664271789e-07} {"commit": "7dd6bba772555de4955669ada959df49d2cad642", "message": "report to existing test-reports\n", "proba": 1.560766804686864e-07} {"commit": "f8ade795ae794dfed445461054772248a45ef149", "message": "Adds fixed distribution state for all models.\n\nPreviously, only the independent terms-based models could use a\nparameters state with the distribution for the link (and term) prior\npre-determined rather than based off the number of links (and terms).\nThis addition makes it possible to have a fixed-distribution parameters\nstate for any of the models.\n\ngit-svn-id: 6391b798f55e3e4f5184bc6d113ebedc82009d5e@3919 1fbec0df-f6b4-4bca-857c-de90862b47bd\n", "proba": 1.1264891327300575e-05} {"commit": "048d3dbc8d1d9db5874b12182e28b360f4e4e1f4", "message": "add some print debugging to find a Py3 problem\n", "proba": 9.553847348797717e-07} {"commit": "0879b1b38b26446f570a5e5b993f7cce92bfd14c", "message": "A more verbose function\n", "proba": 0.9999947547912598} {"commit": "678aa6d3c75709d1a0e99ad1fcefb81dc53f9a5e", "message": "gnt-instance console: Improve error reporting\n\nIf the SSH command fails, this will give a more detailed error\nmessage than before.\n\nSigned-off-by: Michael Hanselmann <68b67885ff74281219b4a4be33cc20fd45078d7c@google.com>\nReviewed-by: Iustin Pop \n", "proba": 7.357080562542251e-07} {"commit": "2058046efafc56ff66e67fe022628f887e107d74", "message": "Separate network graphs for sent and received data. (#615)\n\n* Add: Recv and sent graphs for network module\r\n\r\n* removed whitespace\r\n\r\n* Removed {kbs} formatter\r\n", "proba": 3.176247957981104e-07} {"commit": "de3cc5eda5ce794e913b5b09652ca3be110a7946", "message": " Rectify spelling mistake in nova\n\n Change 'strongy' to 'strongly' in file /nova/network/manager.py\n\n Closes-Bug: #1492120\n\nChange-Id: Ifb184f4b03c646ef104272aa42411d248e7400c3\n", "proba": 0.999983549118042} {"commit": "d0e1d3a6e05789f4c15b8a44985c256234d52cd7", "message": "Consider lines that miss the name of the socket\n", "proba": 4.7967514547053725e-05} {"commit": "359b34f5488b39c83969f801862c22895c0c947b", "message": "remove trained sim from vgci\n", "proba": 2.3845012719903025e-07} {"commit": "2cfba237376a4a05c74933f549048154ed777ab7", "message": "DavidBurns skipping test due to issue 1225\n\ngit-svn-id: aa1aa1384423cb28c2b1e29129bb3a91de1d9196@11558 07704840-8298-11de-bf8c-fd130f914ac9\n", "proba": 7.02725571954943e-07} {"commit": "df92ef2eea70556becfed7739c1281e3c9ab3ac5", "message": "gardening\n", "proba": 1.1281038496235851e-05} {"commit": "2e268f7fbcb2e87860095e6182415ce6168b4786", "message": "init: fix boolean parameter parsing\n\nSigned-off-by: Ilija Hadzic <47a09d4a4430975766160361f65fc72633be50b6@gmail.com>\n", "proba": 4.702641035692068e-06} {"commit": "62a1068a6bdcf04d50b0dc077ba45b879ceb65f0", "message": "Dummy ORM was saved as object not string. Added code to convert ORM to string using json.dump. Should correct decode error in VT\n", "proba": 3.710354974373331e-07} {"commit": "13cbd017450b5cced0df0469be96b55da7ddfaff", "message": "setup.py must not have a temporary filename\n", "proba": 1.0496490858713514e-06} {"commit": "04fd4f77ab4175515a20f4b539614dacfd8af6bd", "message": "Fix W503 from PEP8-check\n", "proba": 2.5951661086764943e-07} {"commit": "83d221325b679fdddcee7caee56335276665cd98", "message": "skip signed image tests as they are borken atm\n\nSigned-off-by: Greg Di Stefano \n", "proba": 1.0991528398562878e-07} {"commit": "772770907ab2c11b9762676784b63d3b5b4a6233", "message": "fix issue with self\n", "proba": 3.189024710081867e-06} {"commit": "7d0fa50063d043dcd50ffc7d2a272c967e7c2468", "message": "Bug Fixes\n", "proba": 6.039679760760919e-07} {"commit": "9865933f01bddaaa863743742e4939622bc4cd91", "message": "[channelmanager] added mod / manage channel permissions\n", "proba": 1.9526130756730709e-07} {"commit": "a8e53af4b9221c66fccac8ce74eedcf8403b41ef", "message": "ENH: sparse/linalg: support pydata/sparse in arpack\n", "proba": 2.606742270927498e-07} {"commit": "6b983d8967c544a0af1d591617145ee6f8256531", "message": "test status field of get_connections()\n", "proba": 2.269970877932792e-07} {"commit": "3c30cafd5f483eff179ba941b4d2c6434dd52809", "message": "Fixes a race condition where multiple greenthreads were attempting to resize a file at the same time. Adds tests to verify that the image caching call will run concurrently for different files, but will block other greenthreads trying to cache the same file.", "proba": 1.099253523761945e-07} {"commit": "8191152bf79bd625a385594adcc3444022341fee", "message": "Updated \"retrieve_attributes_for_entity\" for new attribute layout.\n", "proba": 1.0837810293651273e-07} {"commit": "9050ce8cf17ef186007823aef55ab1aae35ae561", "message": "Fixed test for current Flask-MongoEngine stable and dev branches\n", "proba": 1.2025664375414635e-07} {"commit": "effdbfa89ff3c5a846d50138f3ef8dfa98162f06", "message": "Cast incoming val to field type\n", "proba": 2.3727393738681712e-07} {"commit": "a2d86246973227e6f9dde0251257da17da02db65", "message": "added test add edge\n", "proba": 4.0362999698118074e-07} {"commit": "2ac79e957f6d25ed1addf6d1c2dd35b0ac1353af", "message": "use XML instead of CSV\n", "proba": 1.2735172276734374e-06} {"commit": "c6d9333fb212f41c9a2fde24177ffab2f817829c", "message": "bug: did not load from correct file name when using alternate flirt command\n", "proba": 9.41202756621351e-07} {"commit": "ab9a061c0d7a3f361a1040adf73aba59293f88f4", "message": "Year{S} fixed.\n", "proba": 6.346602731355233e-06} {"commit": "f488e15fe7403f0bab022556d6277eaa7d36204c", "message": "Enforce all inputs to a shuffle must be confirmed UTXOs\n\n- Also refactored the check_inputs code to be a little faster to execute\n", "proba": 1.704214156461603e-07} {"commit": "03813e961a82fcbf310716b55e5af3ce5eb68003", "message": "add missing kstests for continuous rvs\n", "proba": 4.0931507783170673e-07} {"commit": "5630e2748479518f2ff8db9652b572e70af667e0", "message": "plotscaling: fixed a bug when only one entry was present in a scaling results file\n", "proba": 5.959935265309468e-07} {"commit": "abd688805b41a02fc3aed253600444b49f86630f", "message": "Fix #292 : Give using parameter to invalidation functions\n", "proba": 1.559076849844132e-07} {"commit": "d69173c3f51b0a439b5b1d4a5a35ebc3469109a5", "message": "Fixing a decoding error\n", "proba": 0.0007810739334672689} {"commit": "aae9f2788d8240b2f2e07aba4bbd83122cce2b6c", "message": "Minor fix.\n", "proba": 1.6329171614870575e-07} {"commit": "e53b866a242eb82428b58aeaf9bf5956f4d5acbc", "message": "update typeinfer.py\n", "proba": 5.218042247179255e-07} {"commit": "ac6e13588ccd8a3f859994f3590cf7345d585560", "message": "There is a new exception for already closed\n", "proba": 7.025017225714691e-07} {"commit": "9c4eb60fb290008e98f4d0295a864f60c9c081a9", "message": "add mohamad, brandon and herman\n", "proba": 1.437420905858744e-06} {"commit": "ef9584719e93ec1a0a32614c86af84e1ae968a69", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "287351e43c7e44bf0ac57d71916bcd7cbd90123d", "message": "Add SS interesting URLs.\n", "proba": 1.4517426905058528e-07} {"commit": "c54224af5ff5a7125f9cb9ae5d9a4c01e93582ad", "message": "Add audit tasks to crontab.\n", "proba": 1.4658272107226367e-07} {"commit": "217d3153156a47946ff6e69237d3d76d44976d34", "message": "Update bash Shebang and basemap tile directory.\n", "proba": 1.0927313809361294e-07} {"commit": "ded0edd288a841dc0131d64ad29bf022dabe3fd0", "message": "Do not allow unknown kwargs in @cached_as()\n", "proba": 2.4752623062340717e-07} {"commit": "b82e28b4398be53f07e4a129159093a7a555220b", "message": "ran into this\n", "proba": 2.4189430405385792e-06} {"commit": "4f0a1a52e27986dc4f9cd27a3702c6d1ebbda499", "message": "Fix NRT test failure due to increased overhead when running in coverage\n", "proba": 3.3210881156264804e-07} {"commit": "5fb7dfd0af7aa2ef0f6b1ce3a9b7af37061cf8fc", "message": "New tests\n", "proba": 3.6384338386596937e-07} {"commit": "61c13239a6a5f7cda067a1214f961e8212a14b62", "message": "rule builder - updates\n", "proba": 1.2530389881248993e-07} {"commit": "cc7039eb387bfeaa55dfcc2e397b96602a96297a", "message": "Started to add VODE as a solver.\n", "proba": 1.0545880968493293e-07} {"commit": "56998d9c92117665a27de80b9e3ad398939f1307", "message": "Updated script with check for required SSD firmware updates.\n\nUpdated script with check for required SSD firmware updates for certain MacbookAir5,1 and MacbookAir5,2 models. This will write a second boolean to ConditionalItems.plist, named 'mavericks_needs_fw_update'. A pkginfo can then use the two to determine whether Mavericks is supported and if so whether an SSD update is required.", "proba": 1.19367228990086e-07} {"commit": "55b0b766fbeb2f71e68331a2e14205702f681012", "message": "Completed test coverage of views.defaults.bad_request().\n\n", "proba": 1.1538021738033422e-07} {"commit": "22b3293712a8d2976901c656af3c4e5bf2bbbabc", "message": "Compute the new transmission ratios.\n", "proba": 0.00046313460916280746} {"commit": "e020c976d8e438d72860d288be36fd83e1dde6ef", "message": "delete old stats to avoid duplicate content\n", "proba": 3.0281503882179095e-07} {"commit": "ec07a5cc9fad1e6f284bb704725b1e87319b92d3", "message": "Removing print statement", "proba": 0.029176292940974236} {"commit": "ae2fa34163c4b58209776b352445328c7add6b28", "message": "Make error more informative when an empty tuple is passed (@sklam)\n", "proba": 1.5734342468931573e-06} {"commit": "64e62754f448fd4048b582168b2a94eed0383310", "message": "start training from 25,000\n", "proba": 1.8524630718275148e-07} {"commit": "2d916bc199200302e5f4062fc3b96b8c62e00e6f", "message": "Use singleton\n", "proba": 0.0004836201260332018} {"commit": "06cd0de4a6259fb2fedb806ac04fc59339217ab1", "message": "Remove unneeded argument method.\n", "proba": 6.317818019851984e-07} {"commit": "e88d3cfb8e3f83b41d33ea64ce03f3327f02a7f7", "message": "prettier output\n", "proba": 3.954465137212537e-05} {"commit": "da3240d5f66503fe0534cad7a27aca76b1264a6f", "message": "[openaddresses] making field maps in OpenAddresses config a dictionary rather than a list to make inheritance easier\n", "proba": 1.3980192647977674e-07} {"commit": "ff4e4cdb55d22ec5c6143b8d905bcb75c0a2c700", "message": "[IMP]\u91c7\u8d2d\u5355\u751f\u6210\u91c7\u8d2d\u5165\u5e93\u5355\u65f6\uff0c\u5230\u671f\u65e5\u671f\u9ed8\u8ba4\u4e3a\u8ba2\u5355\u7684\u4ea4\u671f\n", "proba": 1.3514166141703754e-07} {"commit": "fd92d02152d50735b5ffafcce3a7a722e366b192", "message": "MAINT: Give a more useful error messages for bins of an incorrect dimension\n\nPreviously gave `ValueError: object too deep for desired array` from an internal call\n\nThis also adds support for 0d array bincounts\n", "proba": 2.8398028462106595e-07} {"commit": "2dc6b06c079e89033e2aff9ee38fb1e996c321e5", "message": "affinitypropagation added\n\n", "proba": 1.8882396091157716e-07} {"commit": "4579193f5fa8c3b706494b26a4fc1f9b611ef056", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "fd6ab00efa5e23640b44d8c6611dc4d333c024ac", "message": "displayName for dev-branch\n", "proba": 1.2454266880013165e-06} {"commit": "a2796705052c6a691a89075f4c91a6a65eddce79", "message": "Handle user interrupt in InstallChecker (#620)\n\n* Handle user interrupt in InstallChecker\r\n\r\n* Refactor\r\n", "proba": 1.8420867320401157e-07} {"commit": "e10f2f21eba45d9b2b42b2a26342d00840ecacfc", "message": "* Cleaning up CR2 -> PGM conversion\n", "proba": 1.3034427581715136e-07} {"commit": "f4983eaea31041c67c86760edc9c7ef314dd1063", "message": "apt: run decompress in an executor to give other tasks time to run\n", "proba": 4.91637308641657e-07} {"commit": "ff9b23d6abda2b9246265b86173ea74537ee086d", "message": "Code cleanup\n\n--HG--\nextra : convert_revision : svn%3Ae60b0d31-0b1b-0410-851a-a02d0c527677/trunk%407\n", "proba": 6.228559072951612e-07} {"commit": "4e088db3d794d85ae7fc2c4efe395aee09425eed", "message": "Update iv_calculator.py\n\nAdded appraisal filtering function.", "proba": 1.1027899660120966e-07} {"commit": "cd4d97aea149e305deddf46fdcae228386a96965", "message": "Updated comments per comments from tcezard review\n", "proba": 1.1783735232029358e-07} {"commit": "214bc26037341abd847b74d9b6be1e11856a7ff4", "message": "fix large userid problem\n\nChange-Id: I8134fe07dbe2abe0721c3f9fda1a6c33e439e457\n", "proba": 0.0044688512571156025} {"commit": "1e77de7c6485b6d7c92793770d6fe31fb5c4ee42", "message": "indicate that function_queue is no for public use adding _ to the front.\n", "proba": 1.318804834227194e-07} {"commit": "9c038f3e1b8aeecb5fcaae5e222ed492aa3633a9", "message": "accumulate chunk contents in a list to avoid exponentially larger reallocation of bytestrings when reading large numbers of chunks\n", "proba": 3.4164258977398276e-06} {"commit": "7155cf4d48cabb3d617e754928e1f243e40ecd8e", "message": "Degging some i2s stuff\n", "proba": 1.7741349722655286e-07} {"commit": "e12d1e08a7bf2c635671f35e1295709cadb30cfd", "message": "udpating documentation for comparing packets.\n", "proba": 1.1447096426309145e-07} {"commit": "a481c0b48a248bb9163f6064247f6a24d2203b15", "message": "Tests: print fake_notifier queue upon mismatch\n\nIf these tests fail, output more information\nso it's easier to figure out where things\nwent wrong.\n\nRelated-Bug: #1501745\nRelated-Bug: #1501839\n\nChange-Id: Id78802834821c791a22c22f49260a8480122cc06\n", "proba": 0.001060335198417306} {"commit": "5352b56b34149337cbe4455edcadc0f7d573e68e", "message": "Fix alignBins for full width not 500 MHz, code tidying.\n", "proba": 1.0603324085423083e-07} {"commit": "99de13ff50fe85847faef5c7a2dd1138f7ba6d37", "message": "release board news file for rename\n", "proba": 2.7656002998810436e-07} {"commit": "3b2fb5fa676bb1c61ccd7a490a483d7f67b5b5d5", "message": "more examples in documentation\n", "proba": 1.1342849148832101e-07} {"commit": "7753a4c1ba41310ffd1098bace1af8b95ded0a44", "message": "Revert \"phred cutoff is inclusive now\"\n\nThis reverts commit e87b0ec7f0e55908dcf04a76b374820b7f138484.\n", "proba": 1.1994052329100668e-07} {"commit": "1417305c2ed9d06209de5c5e41bf81f3ebaa1db5", "message": "Formatting\n", "proba": 5.685269206878729e-05} {"commit": "0deef3dc5564983ca30479aa583b98d35d27f59e", "message": "Quickfix hack: CSR validation adjustment.\n\nChange `models.get_ca_prefix(...)` to use the component order of\n`subj_match`, rather than that of the certificate subject.\n\nThis will allow us to accept properly formed signing requests\ndespite our signing certificate being malformed.\n", "proba": 1.066933776883161e-07} {"commit": "103a649f4e1f1eb482b6b76258ce9038b59cdc16", "message": "minor enhancements to application form\n", "proba": 1.3674717536105163e-07} {"commit": "179226e6774ba9ff17662164be98b260bbbfc52b", "message": "removed unnecessary code\n", "proba": 1.6803060134407133e-05} {"commit": "4da14d88262d67dff074f16028d2f2d9adcdf9b8", "message": "BE: Fix method name typo\n", "proba": 2.217949804617092e-05} {"commit": "806c3a1bf17b990b2bc838f51971af28ba913cd9", "message": "Fixes two pump.py bugs. One of them (\"$range 1..n $$ comment\" doesn't parse) was reported by user Aksai Chin. Aksai also contributed a patch, which I didn't look at as I didn't want to bother him with signing the CLA. Instead I wrote the fix from scratch.\n\n", "proba": 1.1389405329964575e-07} {"commit": "7861641bb20b3fa82d741682122aec34c96c8874", "message": "Remove last global vars, hide utility functions\n", "proba": 2.86659656012489e-07} {"commit": "6834562a31940510104c52c92f173ba0c83f8a1b", "message": "Update simplelog.py\n\nRemoved an equals sign", "proba": 1.3053588645561831e-06} {"commit": "12267cda8d0ae2102c9aa8be2131e024e8a7670d", "message": "initialize theta otherwise can easily get nans\n", "proba": 9.518048500467557e-06} {"commit": "9c7741b6f0041cedd5327c4f4320972913ec0e9e", "message": "Added other places where file lives. It appears pyc is updated when the file is changed ( each pyc corresponding to the file in its directory ). Additionally removed internal references to Sep and Cep to speed udpate of other programs\n", "proba": 1.3354070915738703e-07} {"commit": "9de80069e28a17091edbfd9800435c687081309c", "message": "fixed link bug\n", "proba": 4.56768475487479e-07} {"commit": "f28d3a1ed99c415b7bdd494d5b181a6c3c399479", "message": "Fixing path bug\n", "proba": 4.7428557081730105e-07} {"commit": "bdfd724db42cf9ce7ccb9837e0c5b9c5736edee1", "message": "Reverted changes to apps\\checker\\views.py\n", "proba": 4.697933491115691e-07} {"commit": "4dfc03dfca97716f0c300d51d3e7c2756d3476ad", "message": "fix issue #6\n", "proba": 1.9220362901251065e-07} {"commit": "e78929ae31a746620fad05e0d7f5e9e6e883cc54", "message": "BUG: eccentricity sign\n\nThe sign of the eccentricity was incorrect in the elliptical equation.\n", "proba": 0.00024691695580258965} {"commit": "4a8fd1f2df1c43ff2f13f00867ba7e7afb7d1351", "message": "Make a few updates to the driver download script\n", "proba": 3.4525027103882167e-07} {"commit": "d49cc50d0462a48e92ea2a685aea2300cbdf9bb2", "message": "Revert \"Fixed paths to new reference case location\"\n\nThis reverts commit ccad7c8532923941cf40392f76c942c33c230a72.\n", "proba": 1.1411682976358861e-07} {"commit": "e8a4f5140be92324abbb62d0ca6a29d21c691654", "message": "Add methods to avoid problems when deleting.\n", "proba": 1.6115922107928782e-07} {"commit": "8378699126672b71c6afe24b1767b9d6b4d9ca59", "message": "Nothing changes\n", "proba": 1.4401349289983045e-05} {"commit": "c9ff075ca39251fc94e1a3a5ccf088eb9156a653", "message": "Update the webdriver manager\n", "proba": 1.15388411359163e-06} {"commit": "3b34fa1d7dc4acebf38ba4c4d6f6c21d0c49d737", "message": "syncing up file changes from the pi\n", "proba": 3.3648282737885893e-07} {"commit": "b07161fa662ca46f35d63e7489a6ef7321caa4c7", "message": "Broken out dispatching the batch to a separate function\n", "proba": 2.2136903226055438e-06} {"commit": "036954afe69b0b848e02152e8a9ce19a63c0e830", "message": "Correct typo.\n", "proba": 6.920506712049246e-05} {"commit": "eb97b43d2876c33b82fcf0c4765c33a5738403ea", "message": "length of answers check is unnecessary\n", "proba": 5.120307469042018e-05} {"commit": "b2f00a816f9878c8c05b4eba8a3c3d65b3930284", "message": "fix flake8 things\n", "proba": 1.6474012909384328e-07} {"commit": "b97974114952fac2dcfcf4c4b3447f2e0d513bef", "message": "BUG: postgresql COPY FROM can handle lines ending with newlines, carriage returns, or carriage return/newlines.\n", "proba": 1.0298442987277667e-07} {"commit": "e7ca5b25cba0679aa800b490d063b24c40864839", "message": "Combine checks for ignored folders in one place\n\n - Factor out the code to find a local folder given a remote folder\n\nPatch by Dave, split and modified by Sebastian.\n\nSigned-off-by: Sebastian Spaeth <98dcb2717ddae152d5b359c6ea97e4fe34a29d4c@SSpaeth.de>\n", "proba": 1.4514824897560175e-07} {"commit": "7383d7e2198fcdbe57e7fb8f8e3516f38bb22b5e", "message": "passing all configs of run_TPI\n", "proba": 9.96652374851692e-07} {"commit": "6dd4d1a990b5c82d5f98056e39d33d15ca80f4b5", "message": "test etr for all function types\n", "proba": 2.2475669538835064e-06} {"commit": "c726b488c94b9b5c23143b5f69a937f28411c6b0", "message": "Replace get_ldap_connection with LDAPUser\n", "proba": 0.00010493039735592902} {"commit": "65566cb4defb412e9a605097e2982a0f51c67c64", "message": "Tagging.py: reject addtag with a single argument\n", "proba": 6.0249408306845e-07} {"commit": "8baa092aa08fb1e96c3f6dfe5c512e8a56bb33f2", "message": "removed/changed some comments\n", "proba": 1.5382966012111865e-07} {"commit": "ec1826d6a2a45d65972ff45e9ad57e176e3dcd90", "message": "libRigging.get_matrix_from_direction: prevent non identity scale\n", "proba": 1.919237092806725e-06} {"commit": "480dd26b1dd4934364c5d363257578908cfe17e1", "message": "Bug de nao exibicao de listagem do paginator consertado.\n", "proba": 1.094548238711468e-07} {"commit": "cd489c97eeb9e7dcaae7efa7895a3248a432c7ae", "message": "[HASHER]: change annotations from `classmethod` to `staticmethod`\n\nto eliminate dependency on `cls` object\n", "proba": 3.802181538503646e-07} {"commit": "05b860e995e58e23fc8be164afdf61dddf948b03", "message": "Update to mdb-conduit a29a39c to recognize OS X.\n", "proba": 1.0306656861303054e-07} {"commit": "3b0f06fe47ce09c9a0bb7a197689d839696454fe", "message": "Cosmetic change\n", "proba": 5.731531587116478e-07} {"commit": "4df88dddebaa5605542c905d5aa87774afaffb79", "message": "Only send enough commands to fill up the fw cmdbuffer again after a print/pause\n\nThe issue here is that if the user has some fun by pressing pause/resume\na lot of times, then we spam the firmware with 4 new commands every time\nit resumes, but the cmdbuffer might be full, so it might end up filling\nthe serial ringbuffer and we end up with commands that are not sent fully.\nThis ensures that if a command is still being executed, only the\nremaining slots in the firmware's cmdbuffer will be filled.\n", "proba": 7.225431090773782e-06} {"commit": "9577336bf05eee7e0a8c4bf78177f44fc046d169", "message": "* Added check on import so that uninitialized /ooni/lib doesn't cause an\n Exception.\n", "proba": 1.0228361446706913e-07} {"commit": "16b22f77b5787555ea2e544d9cd2ef97a4b3f676", "message": "feat(sched-scoring): no-marathons rewrite for finer granularity\n", "proba": 4.73367799713742e-06} {"commit": "88153fdd60334462b999ac3459a60e70c6e236b7", "message": "Cancel resend if firmware asks for line 1 or more than 100 lines before current\n\nThis is because it seems when we use a heat-and-wait command (possibly),\nthere is a risk of getting a checksum error and resend. That could happen\nfor more than the 10 lines we had set previously, so setting it to 100 sounds\nlike a safer value.\nWe also check for position 1 because if the error happens in the first 100\nlines, it would be missed.\nWe're also printing a message to the console when that happens.\nFixes T178\n", "proba": 7.728633136139251e-06} {"commit": "f8b8e4a10396ab6bf8657271d505ed355c56760b", "message": "FEM: meshtools, some commets for ccxelement faces binary search\n", "proba": 1.3847686375356716e-07} {"commit": "936092c9aa2e8f3895f36da786963aadca82b3e2", "message": "add TODO for a bit of refactoring", "proba": 2.4831237510625215e-07} {"commit": "c926e341477f6bf4824ea175fee625105102edb0", "message": "Set cmdbuffer to 3 instead of 4 due to BUFSIZE-1 in marlin\n", "proba": 1.0803651093738154e-05} {"commit": "0af0c292818f9b1489c019574e4e810992e2af20", "message": "putting config commands into their own class\n", "proba": 5.119049433233158e-07} {"commit": "c4dd6f84cb6f56967dd22c29bb947c562b82861f", "message": "Set precursor and path in __init__ of the SSHCommand object\n", "proba": 3.6206395179760875e-06} {"commit": "9eb55fdf6249546677493c6ab3ba2e254e90b240", "message": "catch socket.error\n", "proba": 1.1942787750740536e-05} {"commit": "d8546fb253ab4170d641dc512b0cdaa3c3744ce1", "message": "use constants\n", "proba": 2.0165682144579478e-05} {"commit": "2ce404f8d00ed2c364dbad045a90f82de64cfde0", "message": "Updated render_to_response to Mezzanine's context-aware version.\n", "proba": 1.0406808570451176e-07} {"commit": "2586f6a9dbd5d99e60a035612617829b4058df39", "message": "CaseAction.as_json() returns None for created_by field if it's not set\n", "proba": 1.0227420261799125e-06} {"commit": "523caa56ebdfcf1e0acd6aee28447c90effeb38a", "message": "added rotate_at parameter to specify exact time of rotating descriptors in btfxRaw\n", "proba": 2.33891157108701e-07} {"commit": "fbc9d6d535d54b73776e204eae0332ee46521524", "message": "Connection.handle_error doesn't take any args\n", "proba": 5.074030468676938e-06} {"commit": "17185627574f4eb877fae76ce9572d58da13d9b2", "message": "Added domaindivisions link to root API view\n", "proba": 1.557721418521396e-07} {"commit": "14d53dd099a623f579616548bd90f4877c654896", "message": "Add parameter to creation of nodes functions so that the data set name\ncan be specified for the node to be created in.\n", "proba": 1.1364353014187145e-07} {"commit": "4cfec416c609c66e95776002c099ad5eaa53d05e", "message": " All about PyPLN:\n 1) adding bool funtions-- @proved_by_brother_app and @proved_by_axiom to class Chainer.\n adding code to verify above two conditions in Chainer.bc_step(), which prevent \n backward chaining from proving one node in multiple ways and repeating the same proving\n procedure many times.\n 2) adding head_dag(app) function\n 3) add a line in funtion @set_tv\n", "proba": 9.786190639715642e-05} {"commit": "e41b2a1abf5c7a72597719ff612e2af244991ccc", "message": "+Ginibre, COE, CUE\n", "proba": 1.8998794359958993e-07} {"commit": "56d6c422112b3669195158a78a64c39064cb2429", "message": "Bug fixes\n", "proba": 6.413791311388195e-07} {"commit": "d50ea336e3a32b1ec702a6333c72746d068adc3f", "message": "Make the access token generator pluggable\n\n.. and change the naming to be explicit about what the property actually\nis (a generator, not the actual token).\n", "proba": 1.2625523027054442e-07} {"commit": "bd2404e496471ba4865be8056b1b81093fd78f33", "message": "[release/rllib] fix learning test script (#17635)\n\n", "proba": 1.031066787504642e-07} {"commit": "34fe1d211d36c5b0c6e5fd489aebe45318d6ffd6", "message": "[IMP] add support for directory templates in scaffold\n\ncloses #4767\n", "proba": 1.296834142294756e-07} {"commit": "c824e50b3f2e752e324a3ec56224d8c464950287", "message": "[FIX] scaffold: correctly decode utf8 templates\n\nAs its documentation notes[0], Jinja2 only processes unicode template\r\ndata (or pure ASCII, which will implicitly decode to unicode).\r\n\r\nThe scaffolding system would read raw scaffolding data in memory (both\r\ntemplates and passthrough non-templates), but fail to decode templates\r\nbefore handing them to Jinja, blowing rendering up if templates\r\ncontained non-ascii.\r\n\r\nFix #11331 by always decoding templates from UTF8 before handing them\r\nto jinja. This is backwards-compatible, ascii templates work as they\r\nused to, non-ascii UTF8 templates now work correctly, non-ascii\r\nnon-UTF8 templates what are you doing?\r\n\r\n[0] http://jinja.pocoo.org/docs/dev/api/#unicode", "proba": 0.000629280402790755} {"commit": "98367517863b17f4e93eb84b59cbfd3d8b54c916", "message": "[FIX]Kanban view js not loaded when db created through command line", "proba": 1.498263202392991e-07} {"commit": "8ab55eb237370b2152b2c0027af5cf16a69675af", "message": "smoketest: dhcp: T3544: verify locig preventing invalid daemon options\n\nAs we do not allow any invalid raw options passed into ISC dhcpd we should also\nverify this behavior with a smoketest.\n", "proba": 1.1420839030051866e-07} {"commit": "0d3032ff0145bfa038684d1faf5f694d3adec1b6", "message": "Forgot to import get_logger()\n", "proba": 1.2706163943221327e-07} {"commit": "f63ac1d2a40f2f35eea8ce9cf4e28931a4791c30", "message": "More typing\n", "proba": 1.3806491949708288e-07} {"commit": "5077e0c3066e5a99e9715b1a809254164217942a", "message": "Tentative CF-support for hybrid levels.\n", "proba": 1.0743506351218457e-07} {"commit": "3be6d7b9988a428b91f44459ae9341a273fce5e2", "message": "slightly simpler creation of the dud backend\n", "proba": 1.8064471873913135e-07} {"commit": "d5916f015ae2b7ee252ae47097974fb69b04391d", "message": "have dud backend go into terminate from scheduled state automatically\n", "proba": 2.0202963924020878e-07} {"commit": "42295612c0510522dc1c96d3bdd25a1a2268e12a", "message": "revert(backtrace-thread): ignore bash coredumps\n\nsince scylladb/scylla#6159 is fixed,\nwe can remove this workaround code\n", "proba": 1.3496172357463365e-07} {"commit": "6ab42c4ddf8ea3dd2c0e41bca262b8d01a6fd22f", "message": "Add new countries to previous data migration\n", "proba": 2.0139466869295575e-05} {"commit": "759f629a34eab8119517c8a68670dd01f82da3ca", "message": "determine action based on REQUEST_METHOD rather than query string\n", "proba": 0.0020255250856280327} {"commit": "2d03588d9a36a5228d3608e01db8dd05d426aada", "message": "Comment\n\n\nFormer-commit-id: 17ea5118f256cca6eccd4472568be27df144c4b3 [formerly b0171db838e0cd61ee404d772c82acf5ea6e81cf] [formerly b0171db838e0cd61ee404d772c82acf5ea6e81cf [formerly 1989c9c8ff559603fb42253757478ffac88357d9]]\nFormer-commit-id: 584c500273dad80e49d2541745a714446e654341\nFormer-commit-id: c4e31a404afe4f05456066d6aff1be1cfa110800", "proba": 3.947848483676353e-07} {"commit": "201b5d270bbd3fa449e113442b1f8501b91d6f8f", "message": "sdcm.cluster: libvirt - Setup seed node first, then other nodes\n\nSince on libvirt we are doing all the work ourselves,\nwhen starting all nodes in parallel we are risking regular\nnodes to finish booting up before the seed node. This makes\nscylla to fail to start on those nodes, making the tests\nhang forever. Let's first set up the seed, then the other\nnodes can be safely set up in parallel.\n\nSigned-off-by: Lucas Meneghel Rodrigues <8ad3460456640ab580599f5440c5a8d925a620b9@scylladb.com>\n", "proba": 3.366385499248281e-05} {"commit": "6786aa278875231ac8ede7dc5ed26ad0f5acc7fc", "message": "(small edit comments)\n", "proba": 1.1083527340360888e-07} {"commit": "f4a39545772b6d6a2b32180f3bd545a8657068a5", "message": "Fix to prevent BlogService.find_one to raise SuperdeskApiError.forbiddenError on webhook\n", "proba": 2.7080406539425894e-07} {"commit": "4ee77a2443d7eb198c8250e18d584a3efe18737b", "message": "Fix page path\n", "proba": 7.055351034068735e-06} {"commit": "354b7dfaf288d75f98a3ccb5fb44c2d0494a859e", "message": "Fix a wrong syntax\n\nSigned-off-by: Jack Cherng <159f0f32a62cc912ca55f89bb5e06807cf019bc7@gmail.com>\n", "proba": 0.9999994039535522} {"commit": "46f672b0dd14eb5e8697675fece9179dfc5deae4", "message": "bump to 0.0.4\n\nSigned-off-by: Alfredo Deza <3f4d00ffa77e6441ab2d23c25a618925d2383b02@redhat.com>\n", "proba": 1.1676478095523635e-07} {"commit": "f7ec48b6dff7ae89104a369494f5825083a44bd2", "message": "[FIX] crm: needed _order for group by crm.stage\n\nWhen grouping result the BaseModel method _read_group_fill_results add\nthe possible groups which had no result.\n\nBut, if the order of the group is not consistent, we can get really\nwrong results. The code logic is expecting that the grouped result\ngotten and the list of groups (returned by _read_group_stage_ids of\ncrm.lead) is in the same order.\n\nIf the _order attribute of the model is not enough specific (as was the\ncase in crm.stage) the inconsistent order would kill aggregation values\n(displaying 0 instead of what should have been present).\n\nopw-680952\n", "proba": 0.000802548776846379} {"commit": "5b76e3aa7d5a92b0d51769442e8497019719767c", "message": "manager: need to take more time to do simple cameras\n", "proba": 0.0002320122584933415} {"commit": "2de6da0c88e42a8dcdf13759017cdd36ab5bed2e", "message": "fix: Set default date format if not found\n\n(cherry picked from commit 354ae3ea31c663be55d6c0a98937f212d4b35838)\n", "proba": 2.751053500560374e-07} {"commit": "57c459b69f04f67eccf5bdf865d1f75e14a9d985", "message": "fix indexing in gui\n", "proba": 4.045890818815678e-06} {"commit": "15fe9dedfa2126e092605b1eba779b6bd08c441c", "message": "\tmodified: ch03/project05.py\n", "proba": 1.9922569549635227e-07} {"commit": "19479c5839d99e798331af2607dec84851da4e3f", "message": "Fix COCO tfrecord creation by amending compat.v1 changes.\n\nPiperOrigin-RevId: 287306818\n", "proba": 4.702748810814228e-06} {"commit": "8ade474f2f32b02ab9425b4c4212ebb30105f2fb", "message": "sdcm.cluster: Upload generated coredumps to scylla users bucket\n\nThe systemd generated backtrace is of course of some utility,\nbut it's good to have the actual core dump uploaded to the\nscylla user's S3 bucket. This patch implements the upload.\n\nSigned-off-by: Lucas Meneghel Rodrigues <8ad3460456640ab580599f5440c5a8d925a620b9@scylladb.com>\n", "proba": 1.2884627267339965e-06} {"commit": "0c163d812d0d8a1fb3c5ace1e8e114523270a719", "message": "Fixes example using old style retries\n", "proba": 2.3949459659888817e-07} {"commit": "fb3c8d64275d9938d10ca5199f7e05bb57294bcc", "message": "#15, #11: Added tests of the _parse_title_url().\n", "proba": 1.1858263349040499e-07} {"commit": "df6f9dbbdd12e614b0919c6a336207d1461e4eb0", "message": "remove driverChoices\n", "proba": 4.757569968205644e-06} {"commit": "2ade85f6042c1fdbcfd124c5840f36aa68e397aa", "message": "[FIX] delivery: order data refresh problem\n", "proba": 3.6093621247346164e-07} {"commit": "8b18d8cd5bbd04386cb6b6085d4e8ed0b300b6c6", "message": "ohh PEP 8\n", "proba": 2.0153809145995183e-06} {"commit": "70dafa2dc0459eb10573891429773add379376f5", "message": "feat: added test. Virtual doctype should not create table\n", "proba": 6.83113057675655e-07} {"commit": "8c18435e540ec8079bd3ad79cb133ca84081d2d7", "message": "tips.py: add tip about Pwndbg's signal handling (#1373)\n\n* tips.py: add tip about Pwndbg's signal handling\r\n\r\n* fix lint", "proba": 2.176444979795633e-07} {"commit": "9ff3cae3d8352b5ce491ec76a946a20fbab49fac", "message": "Remove import that breaks Py3.4\n", "proba": 1.03230411241384e-06} {"commit": "b5d395e44c667732888e3069eee6a12d6ba1468b", "message": "new method used by python-tripal\n", "proba": 6.22699133145943e-07} {"commit": "af677b550a0bf2db41a8585e788984d956ad910c", "message": "Tools: DFG: Add beautiful printing of Registers.\n\nExample:\n Register: UEINTX\n+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+\n| FIFOCON | NAKINI | RWAL | NAKOUTI | RXSTPI | RXOUTI | STALLEDI | TXINI |\n+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+", "proba": 6.653310151705227e-07} {"commit": "10755d20e9f52671576bc2c6c924f36f1db199dd", "message": "nemesis/upgrade: upgrade scylla-kernel-conf package\n\nSigned-off-by: Amos Kong \n", "proba": 1.3501193052434246e-07} {"commit": "9e9bf7c633b3ec905bd8a02f3133dbc138a8a5f1", "message": "recipe:universal: proxy setters properly too\n", "proba": 1.2040987940054038e-06} {"commit": "9a026ad1f6379f9ee77734b119b9040aa3f7c547", "message": "v0.10.2: added StopTraversal to top namespace\n", "proba": 2.2240942598727997e-07} {"commit": "189c6cb7715156de759ce2d60310e328dd719789", "message": "style: Remove unused import", "proba": 6.557910410265322e-07} {"commit": "728e6d3c2672fdff8cb7967430fa9cc16a853a4e", "message": "minor fixes\n", "proba": 2.1220614598860266e-07} {"commit": "5d03dffc16a2b472545d18f2ece60c1322a16824", "message": "Frequencies: add bandwidth\n", "proba": 0.0004934633616358042} {"commit": "322f813c493ac41cb485ec7f7ec9f6f570123c39", "message": "rpm.py: Only add compiled python objects from python sources.\n", "proba": 1.1658196541475263e-07} {"commit": "034ae54ebca142f165f98b6f3c37d8f27df25852", "message": "Superficial PEP8 style changes\n", "proba": 1.572616525891135e-07} {"commit": "973784118658dbcfcb4b1fc14533b2c3ea7614a7", "message": "Remove owner argument\n", "proba": 9.246695640285907e-07} {"commit": "482d9ea724324765953ccef83830e04ae31e464f", "message": "Fixed typo\n", "proba": 1.2940510032422026e-06} {"commit": "74ef13e51be719d9c0085f09cfa8351aff576581", "message": "Add type hint comments to policy module\n", "proba": 2.0068983985765954e-07} {"commit": "c72174ad9b4884a4dcea80cb6f690855fbbbea7e", "message": "Added check if reconstructed file exists; if it does, skip reconstruction\n", "proba": 3.2773635894045583e-07} {"commit": "af2343b8440ff82ff6e37ce80cde555aa582a2fd", "message": "Use the ModelObject base class\n", "proba": 4.836580274059088e-07} {"commit": "5b84aa77674894977952c552177cf19f5d86ed27", "message": " addressed issue #1945\n", "proba": 1.78627360014616e-07} {"commit": "d01819f950efd6c203c74aa49f3394e7940f5193", "message": "Add filecache test\n", "proba": 5.336947310752294e-07} {"commit": "fcb6ea84fc713f503536ac507ec9437257b77716", "message": "Bump the version number.\n", "proba": 2.2969222754909424e-06} {"commit": "962d246aee86a149eaca6eda6d0e5d4578247ac7", "message": "Fix unknown arg error\n", "proba": 0.0002372909220866859} {"commit": "eec8bd9387d130d46758741d5e21e836517761f0", "message": "fix broken test case. database reader uses bookreaderbase hence set_type was not found\n", "proba": 1.0118898217115202e-06} {"commit": "037f1ec3303a003eef53b5c6443f9648c4fb52b3", "message": "Update tbl2asn_parallel.py (#787)\n\nFix lapsus where comment in .sqn file was \"Annotated using \" instead of \"Annotated using Funannotate \".", "proba": 1.1990506720849226e-07} {"commit": "c6a2f94ce4cd2a2e2776b11d43a63da0e7cbbd2e", "message": "Avoid busy loop when receiving incoming stream data.\n\nChecking whether bytes are available is a non-blocking operation,\ncausing the receive loop to become a busy loop.\n", "proba": 3.8821568182356714e-07} {"commit": "0494e2ba2dc3b9d03df622ef82f73f2e0a1d1f92", "message": "Update version to 3.10\n", "proba": 3.394571308490413e-07} {"commit": "dded1665aa8b2c679fcabb79945d5969f92fd014", "message": "924 Functional tests for new functionality\n", "proba": 1.164873850711956e-07} {"commit": "9e77483495c340fd78bcbd608edc1fc036ceec96", "message": "Resource path sep fix again\n\n\n\ngit-svn-id: d4fdfcd4de20a449196f78acc655f735742cd30d@2386 14d46d22-621c-0410-bb3d-6f67920f7d95\n", "proba": 7.280492582140141e-07} {"commit": "bf486566fb929226128cd709303e889e3e6b42aa", "message": "#37 Fixed build error with Python 3.5.\n", "proba": 1.1846564262896209e-07} {"commit": "397029e8427ad7a0e21604e0aefb34146d166a30", "message": "Increase version to sync with pypi.\n", "proba": 1.1049859693912367e-07} {"commit": "a1c54968c848cb4920c7dff4904744b3cab5d091", "message": "[pre-commit.ci] auto fixes from pre-commit.com hooks\n\nfor more information, see https://pre-commit.ci\n", "proba": 1.2907548807561398e-07} {"commit": "a472b4f79a704cffc2fce572657eefeb12e38db4", "message": "Look for SSH keys globally and inside the deploy directory.\n", "proba": 1.1070174821270484e-07} {"commit": "202357d9f6e05fda69782e6112d2860ce4eeea74", "message": "tclproto: decode result to ascii\n\nThe result is always an ascii string. Decode the received bytes\naccordingly.\n\nSigned-off-by: Michael Walle <80e54fab1167aac9a5a5dfc5e0e0a3e5102ca3bd@kontron.com>\n", "proba": 1.9799635992967524e-05} {"commit": "0fdee90ed5b8d482d3fe680bf57ff79f35dc5865", "message": "Load all topic values on values method.\n\nWithout this, print_topics can end up with a list of None values, as seen in\ntesting a production Kafka instance with 200+ topics.\n", "proba": 1.252108461358148e-07} {"commit": "5a259c8a44d716f180b3baf810a1dd37f74b8043", "message": "cloudlet client for desktop\n", "proba": 2.5262255576308235e-07} {"commit": "29ad18cb18ab5a58876aacf52b3f0496c134ae15", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "b0ca3730c1615d77a5c86d5c6240e34bd1a6aa1f", "message": "v0.1.17 release\n", "proba": 1.8593941319977603e-07} {"commit": "3a11112297286beb1465c02fce47daf0d140ae75", "message": "FIX: float separators\n", "proba": 2.0111012872803258e-06} {"commit": "63e1759c69328284b6c515866f1a79b639c6e986", "message": "[svn r506] ne!\n", "proba": 1.310622508299275e-07} {"commit": "1902dd2b7bda49c6b76709acede7370012ca4038", "message": "mapreduce\n", "proba": 1.4936694014977547e-06} {"commit": "14a42fa66907ac0a564cde9c773de88ae6b87a9d", "message": "Do no update fixture date if new date is in the past - in case of multiple dates for a match in the ical (postponed & rescheduled matches)\n", "proba": 1.1344526029688495e-07} {"commit": "a50314c065216b6b6e42723fba184c7caffd89eb", "message": "jormungandr: correction comment\n", "proba": 2.2424939061238547e-07} {"commit": "6ea9d2b0ae5158e849984aea5c4000538585bcc8", "message": "OntMetaIri fix bad ttl stop regex\n", "proba": 2.9088514565955848e-06} {"commit": "c063cbd7f7d0996fbaab3d97c8011f216576c8fc", "message": "Tools: Set idf.py monitor DTR to the default state when reset is not needed\n\nThis lets use the reset hotkey (Ctrl+T Ctrl+R).\n\nTools: fix idf.py monitor reset with hotkey with --no-reset arg\n\nTools: Set idf.py monitor DTR to the default state when reset is not needed\n", "proba": 1.1984202501480468e-05} {"commit": "169a4ad7680df811e912b4595ce8b1751280b3e1", "message": "Provide a django_extensions default\n\nThis allows for smoother backwards compatibility\n", "proba": 5.620298679787084e-07} {"commit": "01f5cc75dab472ad247122efc63a35a192e2b8c7", "message": "[Discord] Simplify youtube uploads data storage and usage\n\nAlso rename variables to better fit their purpose", "proba": 2.0303963310652762e-07} {"commit": "33e6f246d5e03335b14f7e0edc85de61c91ff276", "message": "Use hypergeom function\n", "proba": 3.2640949939377606e-05} {"commit": "355f0c02e17a61dfadbd5b591279606fa0998cef", "message": "Bump pyquil version to v2.0.0.dev2\n", "proba": 2.2240286057240155e-07} {"commit": "171366bd0f077715249414eb6a51ac423eef3372", "message": "Add missing class to docs\n", "proba": 3.972922513639787e-06} {"commit": "b45d9e3996a6e9ad805eebcfbdf3ca267e392540", "message": "updated codeutil.py to latest version from IPython (required for parallel stuff)\n", "proba": 1.0492992430499726e-07} {"commit": "579885da2c9f53b89caef595547ceaf97e5ee448", "message": "prevent gridandtick from adjusting font size\n", "proba": 3.688519711886329e-07} {"commit": "4b4f4fdad637ba4e32d69456e455fef78e920025", "message": "speed up the CWL conformance testing\n", "proba": 2.4116704366861086e-07} {"commit": "525eaf7e7766f2669ae56cbcf81064aac942a6dd", "message": "fix combination of if/else\n", "proba": 0.00016679092368576676} {"commit": "a8697729c178de429954a91ecd2a4927af0a3fb8", "message": "Prevent potential IndexError\n", "proba": 3.778915697694174e-06} {"commit": "8ae9f94d85f2dbf89b085dba0e5015c09a3c499f", "message": "Better visualization of urls\n", "proba": 4.373505078092421e-07} {"commit": "c7c1777216f58d49d66e4cf1d97495505dc0a5d7", "message": "generator: xed operand ordering sort was wrong\n\n * the alnum_sort function did not handle numbers within names\n properly nor did it handle underscores leading to\n nondeterministic sorting. Came up as part of python3 conversion\n effort. Just falling back on normal sort. If we ever have more\n than 10 REG[0..9] operands (or any other sequence of operand\n fields) we'll need to think about sorting those with a special\n case sort function. But just those...\n\nChange-Id: Ie8f6e2eca8b2eac6b0373f0494171fc61dfd1a1d\n(cherry picked from commit 9a110642a93d24f560b8c2ab1a72ca86e9a4271f)\n(cherry picked from commit 3efffc61666eff5e0633986bf42be939c77ee2ba)\n", "proba": 6.116712756920606e-05} {"commit": "da789165e6c484ef11b67b92ee4f288c67da4149", "message": "Refactor _s3am_with_retry to be modal\n", "proba": 2.1529229343286715e-05} {"commit": "42c300abc72ee983fb6fdc8c0e8cd3a642d36a81", "message": "Update reverse of two migrations to instead delete all license/metaschema records\n", "proba": 1.9083050517565425e-07} {"commit": "45ff430d04b453e7b8b2a7be3d2798cae5c6bb80", "message": "Replaced tabs with spaces in tests.\n", "proba": 1.201743202727812e-07} {"commit": "0c92a53b54c373f6a8d260b4873c816b9c60d469", "message": "actions for nephoscale machines\n", "proba": 1.3557099975969322e-07} {"commit": "eb8ac4ad00460aa670c8cba641b0265385a4522b", "message": "stupid search-replace error - don't pass self to self.methods()\n", "proba": 1.6254900856438326e-06} {"commit": "4a8a1dfbbb84f421d2a1f5aa5683577b859bdb34", "message": "Fix request_id type on Python 3: use text (Unicode)\n\ngenerate_request_id() was previously modified by the change\nI389cf20e4c999c9bb576a42388497852f8ba27ec to return a bytes string\ninstead of a text string. According to the author of the change, it\nwas a mistake (the right fix is to update the unit test, not modify\nthe tested function).\n\nHaving a request_id as a byte string is not convenient on Python 3.\nFor example, it's a bug to write '\"id:%s\" % request_id', a\nBytesWarning exception is raised when python3 is run with -bb command\nline option. It not possible to write str+bytes neither.\n\nRight now, oslo_log emits logs with b'...' which is unexpected. I\nprefer to fix the issue in oslo_context rather than working around\nthe issue in oslo_log. Example of log emitted on Python 3:\n\n\"WARNING glance.api.v2.tasks [b'req-83a6...' 54492... - - -] ...\"\n\nThis change depends on changes in Glance, Neutron and oslo.middleware\nwhich prepares unit tests to support bytes and str request_id. So\ntheir unit tests will work on the old and new versions of\noslo.context. Changes on unit tests are required for the master\nbranch but also Liberty because their python34 check job is voting on\nLiberty and master.\n\nThis change depends on the following changes:\n\n* change Ia8578ecab1b1f1bf21020c91290458efad646cd9\n* change Ia5203581db120bb4f8e24fd752d6ae14e6558505\n* change I872c268ef5f17dc2c1fe0ce8aa7e8af4ebc1d757\n* change Ia4df8f05d5746887eb99bbf368d29e8d30a3a90a\n\nCloses-Bug: #1526662\nChange-Id: If48ee7f4d1c113f1f26b3b1698c6b055807b950f\n", "proba": 0.002372785471379757} {"commit": "5b751d0e3897fccf065b1404fc5aca6585ba9198", "message": "Improving Exception text in gs_utils.UploadDirectoryContentsIfChanged\nReview URL: https://codereview.appspot.com/7034053\n\ngit-svn-id: 32fc27f4dcfb6c0385cd9719852b95fe6680452d@7020 2bbb7eff-a529-9590-31e7-b0007b416f81\n", "proba": 8.795076610113028e-06} {"commit": "6f00757a17fe991a69d70e76a3398e5b3adc7833", "message": "[#105] fixed linting issue\n", "proba": 1.838134693343818e-07} {"commit": "574bbb5757573060cb18726a3c70f6a45b8b56db", "message": "fix a leak in Python MPI implementation.\n", "proba": 1.8884412611441803e-07} {"commit": "0f3b1a85ac57ad90a272394c405f50464f0ff32a", "message": "Fix related sponsorships of child\n", "proba": 9.619399179428e-07} {"commit": "9378a7a3c16af94fd484d16cc085a40478818e47", "message": "Revert \"Simplify t computation\"\n\nThis reverts commit fef0bbaa589f15e0020bda2d6d8f05e9d15a2eec.\n", "proba": 1.3272027388211427e-07} {"commit": "55c970aed17c4b4dce9eb61979b02627330f9ea7", "message": "don't check for contents of troveList until after its generated\n", "proba": 1.7390370032899227e-07} {"commit": "90fb048d7464df7aaec4e00838cbc8fe715392ad", "message": "default sysroot macro\n", "proba": 1.007844844025385e-06} {"commit": "53e4f011a3a7cec84169295f5bdc4fc7bc026c41", "message": "Oops. Broken tests.\n\n--HG--\nextra : convert_revision : svn%3Ae1d34091-3ce9-0310-8e96-997e60db3bd5/trunk%40533\n", "proba": 3.1711084602648043e-07} {"commit": "8eaec95a2cce2bfac323c634d2e369beff63e249", "message": "simple update util\n", "proba": 4.2993073634534085e-07} {"commit": "d3bf71e2d38c7a371ef2f28ea0c102e07f88571f", "message": "one tyop fixed\n", "proba": 1.718393178862243e-07} {"commit": "318fba004aa025de358f5e1b303e853bc35a4889", "message": "fix the 10 = 1 on the time form bug ... fixes #4736\n", "proba": 2.49967001764162e-07} {"commit": "802b2d791b37cd36d808ffac6f5015756628f367", "message": "new file seconds routine\n", "proba": 5.012460064790503e-07} {"commit": "d530859bb946f28864cd1d3dbdc90258b3eb56a5", "message": "fix up path -- if first chars are ./ remove them\n", "proba": 1.5758595282022725e-06} {"commit": "19335459ef1c4064b7651e7b8c3a04680e77a91a", "message": "changed import paths to bx...\n", "proba": 1.1038779490490924e-07} {"commit": "00af8038e95dfcc03a76c968607276014f180f7a", "message": "Add logging statements\n", "proba": 1.4550321338901995e-06} {"commit": "8d0f68018b4adeaadc26e50691de218627d5c67e", "message": "stop creating branch in handle_article_list_submit\n", "proba": 6.770534355382551e-07} {"commit": "4206074089c103e206671022d5132a4c130cd5b4", "message": "Update fabric script\n", "proba": 4.1288194552180357e-07} {"commit": "8fada7e4acbbf01b8cd99a3b2f271fa337171bc1", "message": "Added comments\n", "proba": 1.2651231884319714e-07} {"commit": "c0d8af7421196d9a08e80e2192f19e9816b30bec", "message": "Added some typing, and improved the color_conversion decorator so that it discards extra arguments.\n", "proba": 1.0280211171220799e-07} {"commit": "807dad34470b4644075225a12b3d8d244b7d0c54", "message": "Fixed em bug\n", "proba": 4.697328677139012e-07} {"commit": "e3561d936e4910ec959912fdbdb94b7722ddd519", "message": "Fix unit print\n", "proba": 1.7452787233196432e-06} {"commit": "4d2fa67268bca7599597a18ce8f45eeaa0446c2b", "message": "Add setBrightness implementation.\n", "proba": 1.364195867381568e-07} {"commit": "fbaf66b636d4353e3402a55bb25996c22b6c116d", "message": "qisys: fix indentation error\n\nChange-Id: I7baddf9eb287aca8d2690e4beaf29e22ad3eb595\nReviewed-on: http://gerrit.aldebaran.lan/46865\nTested-by: gerrit\nReviewed-by: dmerejkowsky <1e4b13000fa8777df4cefd2fd8215187e3deb062@aldebaran-robotics.com>\nReviewed-by: pdaouadi \nTested-by: pdaouadi \n", "proba": 1.9054405129281804e-06} {"commit": "bab03c1f0aea33439c1242ecb7009dfe6df636ab", "message": "Rename general to lobby\n", "proba": 0.9997947812080383} {"commit": "b07aa874f8e8e95cb8b9f50f363e4b09905dfdf5", "message": "Additional bugfix to handle recursive type dependencies.\n", "proba": 1.067196393478298e-07} {"commit": "5341073bff82d2105cbe8c5a682b84ebc3c0ddaa", "message": "Remove encoding for compatibility with Python 3.6\n\nAs per Python 3.6 or higher passing encoding as an unnamed argument\r\nis no longer supported.\r\nSince the argument itself has been ignored and deprecated for a while*,\r\nI guess it makes little sense to keep it there.\r\n\r\n* https://docs.python.org/3.6/library/json.html#json.loads", "proba": 0.0003785206354223192} {"commit": "34547530c1e8b2b153986e07a008944cfbf8110f", "message": "added interface for all streams\n", "proba": 1.8413349778256816e-07} {"commit": "ad78cd46cc94a4a9a408dcca3d210f44dbd2fd3d", "message": "fix #21: Add __bool__ and __nonzero__ to Show class\n", "proba": 1.0982253115798812e-05} {"commit": "079c9cce05470f5a5e74fd8cb3cd11176ebbdd96", "message": "Do not set ylim on verification plot\n", "proba": 1.9305933562918653e-07} {"commit": "7d6373c157285093551f28be7e5f5dffb35dd6b8", "message": "Import util functions to create menu\n", "proba": 4.1882668710968574e-07} {"commit": "2d8af60ffdde68fa2060c05eda2d607ac6776de5", "message": "- support for CNAMEs and records other than requested in answer\n\n", "proba": 1.166515843920024e-07} {"commit": "f6106f5c31e11f67ce38dec73d7d89ffb8800213", "message": "Draw current line rect for blame source viewer\n", "proba": 1.5322174817811174e-07} {"commit": "d75e715b67d128749fd841e5e238a77029a8de2c", "message": "small cosmetic changes\n", "proba": 3.136879342946486e-07} {"commit": "8a519426449b762c863b399548e9d8d54d8a7484", "message": "dont strip environ when it could be non\n", "proba": 0.00013038094039075077} {"commit": "13e3c66ca4f50f07ec1eb2bc395bd1551eb0d7c9", "message": "Check for permission denied\n", "proba": 3.0340183343469107e-07} {"commit": "2000f5ed4b657918abce8a9b3f0c0b2473c2f548", "message": "added to allowed hosts\n", "proba": 2.348706402699463e-07} {"commit": "72bfac08e069d7e18fc8a7888c5138ae96097c23", "message": "Add support for ROLE_DIAL\n", "proba": 2.864738064545236e-07} {"commit": "f8e0613aa25983f8cf8c7b2705ae33dc34ac7c54", "message": "A little commenting\n", "proba": 1.7341348268473666e-07} {"commit": "cbec64aae3c8fc98f58d028a7ba437f2c3155828", "message": "feat: add staticMapUrl field to LocationSerializer\n", "proba": 1.8865260642542125e-07} {"commit": "45678914390cfe283280e09440c289f24b71b253", "message": "bump version", "proba": 4.770564032696711e-07} {"commit": "26a1c0f3c15c82c932849b6d0bdc58253e047cb0", "message": "Update because Cloudflare changed anti-bot code\n\nUpdate because Cloudflare changed anti-bot code, Closes #11", "proba": 7.942717275000177e-07} {"commit": "00b740e7dca8b911a372ddeea542ba8f96fbcdc6", "message": "Error on accessing session key (#2)\n\n* Tweaking how session keys are fetched (keys not found in some cases)\r\n\r\n* Tweaks to session access (only the value for SESSION_KEY is sometimes blank)\r\n", "proba": 1.1324636517429099e-07} {"commit": "b78129e61f470397dc6f5545f2bb58d02d7918de", "message": "added deprecation warning\n", "proba": 2.8354213554848684e-07} {"commit": "56fbf108f8afb511820352219107a74acfa056a0", "message": "Use self.dest.storage.import* wrappers instead.\n", "proba": 1.145601942198482e-07} {"commit": "d154dd9926d88fff7bedac7d72864e94f751f85c", "message": "fix relation adding\n", "proba": 1.9297149265185e-06} {"commit": "6ee9b5f22cfc09ca7c43300ed7b047ddbe5fef93", "message": "add TIobfuscator tests to __init__\n", "proba": 2.6507132133701816e-07} {"commit": "f635b323376d9da9403c00bc46370a0329aa1b6e", "message": "update docstring", "proba": 1.2015339052595664e-06} {"commit": "c671f74cd93be14dabca0ea46fc445760852b995", "message": "Corrigindo problema de leitura de autores\n", "proba": 4.2204314354421513e-07} {"commit": "5278baf4baf9be489a4b82635c135dcc069b9cdb", "message": "exclude two more modules from stdlib compilation that require bootstrapping before importing Cython modules\n", "proba": 1.746459616924767e-07} {"commit": "7c1405e81a7b42f0315a554950c9e73cc3172147", "message": "Delete data_crawl.py", "proba": 2.1584386558970436e-05} {"commit": "33ec63a70429326534c28965d4fb4f369594e94f", "message": "Commented out the code that only kept records that included a start render time\n", "proba": 1.418719222101572e-07} {"commit": "fa85f8543cabf3f487ab08810c27e03a7bfa0556", "message": "add key event filter to main view\n", "proba": 2.5980708073802816e-07} {"commit": "a5f7a26883144bb63778135af850265296e4a3f7", "message": "Fix version info\n", "proba": 2.44771968027635e-07} {"commit": "989e397852461eb18347430a1efbd75df0230fd2", "message": "scale by key_size in relational memory _multihead_attention\n\nGIT_ORIGIN_REV_ID=b92d54997e7df890458b672540c4f9832da9e8aa\nPiperOrigin-RevId: 222243055\n", "proba": 0.0002609294606372714} {"commit": "cfe18eabf1a7e8316d23cea8763679014f95d919", "message": "Add decorators to skip new tests for place_varga if slycot is not installed\n", "proba": 1.5843885137201141e-07} {"commit": "45a752f96ac63af7e4f78e7219d56560d5df7e8e", "message": "Code cleanup and documented arguments for Complete event class\n", "proba": 1.3117980302013166e-07} {"commit": "23bd32eb0e9734d70fae8a7345acdf67a48382f0", "message": "Catch all exceptions instead of only timeout exception", "proba": 9.286692147725262e-06} {"commit": "6b1ee1814a0fd95e9b3a280943f395ac9e05e513", "message": "io: Added seek(...) handler to File Component.\n", "proba": 1.0571861253083625e-07} {"commit": "5471b855fca884822416704b78124e2a24f0c8f9", "message": "some cleanup\n", "proba": 3.653879900866741e-07} {"commit": "13f0a48f7af2dd3d5549b5b96d0e8315e3e541c5", "message": "io: Fixed filename attribute (.name is stolen by Component now).\n", "proba": 1.039371611000206e-07} {"commit": "e04a3e0ad99dedf26e25ab4ea563cdeb113e2d0e", "message": "circuits.net.sockets: Fixed started event handler for Client socket component - client's don't add their lower-level socket as a reader to it's poller until a Connect event is received\n", "proba": 2.081473695625391e-07} {"commit": "72a5115f70d8c33ca61f00fe45b3ad85533a9853", "message": "Add docstring\n", "proba": 5.426874849945307e-06} {"commit": "21871f905a8b22c62559988b7c0599510126f881", "message": "update base_env function for div by zero bug (#150)\n\n", "proba": 1.1037769098720673e-07} {"commit": "30e1d0a2f8b6db487ec2b774065455e6c3df1444", "message": "added function docstring and module dunders\n", "proba": 2.453103888910846e-07} {"commit": "fb28f017129982c5ad730431e2ca04ec344dbcc2", "message": "Update Signature_py2.py", "proba": 5.50034701518598e-06} {"commit": "2d0a7cb38e95327caa3450949d1628b419add8d4", "message": "Improve converters for compatibility with CKAN 2.1.\n", "proba": 1.0291236662851588e-07} {"commit": "94105ec11c6bd809f8a8a44bb88a55c2089fe76d", "message": "alg fit\n", "proba": 1.0236162779619917e-06} {"commit": "62410f2e3bdf0274050fda53fe87b5293fcb5919", "message": "clearly command line supports abbreviated commands\n", "proba": 7.503061624447582e-06} {"commit": "a30ab0337cb86ac4e08213c5079647fc5d9bfee1", "message": "Dont show team zero on list pages. Towards #489\n", "proba": 1.2816093430956244e-07} {"commit": "63cfc12ed2f936e9801f6200b5c6590f219492f4", "message": "STYLE: FILE: convert docstring in `uncompress()` to google style\n", "proba": 6.5712915784388315e-06} {"commit": "39020c9983804848419721aa59fb58cc451a3406", "message": "Added some tests for questions and fixed earlier tests.\n", "proba": 1.0089510737998353e-07} {"commit": "bd5ad55acdafdc8a53be3218b20bc6ecce5064c5", "message": "Fixed Compilation Errors\n", "proba": 2.939791556855198e-07} {"commit": "24db9926aaa3a79529b64fd6cc5393ba95f203be", "message": "int float issues when moving to py3\n", "proba": 1.8700035298024886e-07} {"commit": "75b76e196883195f2672a5fe2c1fefa0d3c3d778", "message": "Redmine #3430 - add missing default value for m2a_led\n\nChange-Id: Ia23c5f103bb3accbed63f00096c0e7eac42b0f92\n", "proba": 7.312877983167709e-07} {"commit": "83e1f59c9d68be2b9d8ca493de17ec9f47960f0b", "message": "Raise ValueErrors instead of custom exceptions.\n", "proba": 1.2236773727636319e-07} {"commit": "0da60f01227bbbfe29f9fe45a649d61978ba2e4b", "message": "ENH: compute shape features on labelMask\n\nFor the calculation of shape features the value of gray levels are unimportant, and the shape of the delineation is also captured in the labelmap.\nBy using the labelmap instead of the original image, it is not necessary to set voxels outside the delineation to a padding value, as these are by definition already 0 in the labelmap (not segmented).\n\nFurthermore, only in shape calculation are voxels outside delineation excluded based upon their intensity value, in other feature classes these voxels are excluded based upon whether or not their indices are a part of `self.matrixCoordinates` (which is based upon the labelmap).\nTherefore, by this change, there is no need to set the voxels outside the delineation to a paddingvalue during preprocessing.\n\n N.B. voxels still need to be set to a paddingvalue in `rlrl.py`, but this is already handled separatly by the code in `rlgl.py`, and is based upon labelmap.\n", "proba": 0.0003592936263885349} {"commit": "0303e1b3ca7f250d3f0d3adbf7d034739166aecc", "message": "Convert float values for client io to strings.\n", "proba": 2.651223951488646e-07} {"commit": "242451fdebc28707c077e3ca896a42dda74d6bcc", "message": "token fix\n", "proba": 1.3576069477494457e-06} {"commit": "85f257f73783392f90ad2f9df17fd0b20e15ca97", "message": "reduce serial data structure\n", "proba": 0.0008646082715131342} {"commit": "0a3da8ec8407a0b08a42cccbc8174dc33ee2ea87", "message": "Jormungandr: use of config.get\n", "proba": 6.477752094724565e-07} {"commit": "69ee6cc6aa5af73edce472f64de3e99477f91fad", "message": "implement serial commands: encoder reset\n", "proba": 0.9998965263366699} {"commit": "4e062757625c0f2090ee7128a77bf6d845093cbe", "message": "jormungandr: tests added\n", "proba": 1.9830028463729832e-07} {"commit": "ea87325b4fdd97888f54d5091d55caa925b5f75f", "message": "Add debugging info to MergeSamFiles\n", "proba": 1.9910071102913207e-07} {"commit": "6123cce9a8799127f224c9690a994423438c5e63", "message": "log rdflib version\n\ngit-svn-id: 60eb48102d1ca0c284ab3654bef916b01e1b221b@853 4f84a9ca-5c3e-0410-8a68-0bdf370325d5\n", "proba": 6.040054358891211e-07} {"commit": "2ecd805f458b058fc5dac6fac5a04e4eaf4b7806", "message": "build: Correctly regenerate repodata in no-build case\n", "proba": 5.107334345666459e-06} {"commit": "fa351db7718feae63ef15970abbd0089b05f7714", "message": "Fix Content-Disposition header\n", "proba": 5.628523013001541e-06} {"commit": "09fd238fee4a95697085112129276dec65015e68", "message": "analisando com a primeira refer\u00eancia a incluir, se houver\n", "proba": 4.930815975967562e-06} {"commit": "e7e27e8f71aeaa93703650b65dae5d27ddd712e8", "message": "fix horrendous bug with collision detection\n", "proba": 8.059353717726481e-07} {"commit": "6d195491840bc1788684973eed05c7c3cb40777f", "message": "fix: Grouped two if conditions to avoid issues with variable unassigned if the second condition is not true\n", "proba": 0.00010990276496158913} {"commit": "15c5e0a5575bab4c8fbac31eeb6790eb9b710a39", "message": "try to be helpful about issue #1\n", "proba": 2.6648211814972456e-07} {"commit": "81be6f8a59745ce58486140b54fbe557714eeeb4", "message": "log info message when user passes model_uri without mlmd_store\n\nPiperOrigin-RevId: 374754118\n", "proba": 2.471278435223212e-07} {"commit": "230ab66e4dde7aad8ef055b1c75869e2d011e784", "message": "GetFileList can return files that don't exist... - e.g. the aux.xml in a read-only directory", "proba": 2.020431253413335e-07} {"commit": "8c5cb1dbfcc90626a076abc155c9f32a624321ac", "message": "complete a function to extract within-roi signal\n", "proba": 1.2022574082948267e-05} {"commit": "bb4dd53d05bcfffe72316803e13883fd699431b9", "message": "Only add name when provided\n", "proba": 6.677401529486815e-07} {"commit": "22ff456cdf8435f1acea74098d6534c226675d0b", "message": "Turned dym into a list to maintain the order\n", "proba": 4.392349183035549e-06} {"commit": "4986c982eb30979abd48966f7d532a0ff4f423e3", "message": "add: soft_delete fn in connectionsettings\n", "proba": 1.6296903595502954e-06} {"commit": "5a83b0d85a71b84283c361259451862412b4f2bc", "message": "Cleaned up some comments etc\n", "proba": 1.118053845061695e-07} {"commit": "959c1f22de80ac0e3823c9bd73adf6ae81ef4025", "message": "remove all item which end in 'detail'\n", "proba": 0.00017132256471086293} {"commit": "1cc6e93a901ea66eabdb1fdd04c1eb0ff5f5605c", "message": "Add Firefox browser\n", "proba": 2.2616438855038723e-06} {"commit": "22326bdd9265d8ae97055cbcc1f64939dd6bfcda", "message": "Remove a legacy Markdown extension when generating e-mails.\n\nThe recent updates for using Python-Markdown 3.x removed the\n`smart_strong` extension from the main Markdown procssing, but failed to\nremove it for the list of extensions used in e-mails. This is a trivial\nchange that simply removes that entry.\n", "proba": 1.21070897307618e-07} {"commit": "08735c054f9d0be9b6bd07687ab8f74393a0b49b", "message": "Add filtering current owner to result of ProvinceAssault\n", "proba": 1.538857077321154e-07} {"commit": "ad02549b85fc84dcfe9cc5078de1b555aeb4ca22", "message": "Fix backend test.\n", "proba": 1.4468405424850062e-06} {"commit": "04a8fafcb23d6bed38a3da65e5c88c9820d18375", "message": "Permanent redirect from scoretool.appspot.com to www.nxdom.com.\n", "proba": 1.0656972193601177e-07} {"commit": "04f5f29f523ab1228906ffcfcc439383a554faf1", "message": "fix logger typo\n", "proba": 0.0009260190417990088} {"commit": "8bd00ccc69aef4653d6860535a23f1ebed694ab0", "message": "Remove & from dict key (introduced in e252af49e47e73e0a84f1e52fb664177ca0f7dfa)\n", "proba": 1.4097744838181825e-07} {"commit": "9311e0b20e7e35657e9baa48f3d619f75142c183", "message": "Added initialization of client_snapshot during build_client_snapshot to avoid maintain of incosistant file snapshot\n", "proba": 2.502713698504522e-07} {"commit": "28d51fd063242f0a439760d4484059ba4a9dfbe2", "message": "[mod] timeout in log are readable (the timeouts are compare to the start_time of the request).\n", "proba": 1.1646472586335221e-07} {"commit": "484b25d4e101f5c4b2dc1b7794750b7cb66fa821", "message": "fix the ellipse efficiency problem\n", "proba": 0.9997064471244812} {"commit": "7b9782c9599b1880d4ed7225cc59f50e585c43c6", "message": "Fix test.\n", "proba": 8.550564984943776e-07} {"commit": "ae98a116d55b264e8e5135c026448c4e5cc6e366", "message": "store the forms and fields into the database\n", "proba": 1.143039980888716e-06} {"commit": "353875e90af5af134592f4c0fb6054e14391fdcd", "message": "fixed references endpoint\n", "proba": 5.505424383045465e-07} {"commit": "a3355d3b5870992e88b9dc2ccc39281e9d0316cc", "message": "Refactored views based in pyflakes\n", "proba": 1.7296225962581957e-07} {"commit": "42ffbe45f71203654a71ac2a2c805b59d251f76d", "message": "Make rbe_default to use digest instead of tag. (#326)\n\n", "proba": 1.2584807507209916e-07} {"commit": "681cc1dc53851a2d127b4c00fc4e7d9e54bd8fba", "message": "Set LMS_BASE setting for Studio\n\nThis allows previews in LMS to work properly.\n\nECOM-6634\n", "proba": 1.1527396992505601e-07} {"commit": "0676df53a9d1d475ae97eed9537457bc1a64f634", "message": "Fix doc string for delete API\n", "proba": 5.816124030388892e-06} {"commit": "e70908603fc7dd9c2c064c5ab9658f342d4ed498", "message": "allow kwargs\n\n\nFormer-commit-id: 043d0ac608f326ce9a0cb8347685ea0f4c13aca7 [formerly 043d0ac608f326ce9a0cb8347685ea0f4c13aca7 [formerly 043d0ac608f326ce9a0cb8347685ea0f4c13aca7 [formerly 1e1fa66db89fceee77cb82bfde415abee446d3cd]]]\nFormer-commit-id: e74ae2c5ff4cac6919036bf9a5dfac216df78862\nFormer-commit-id: c727843533131f9365377979897aa7e1ce8f5a63 [formerly 123d6941bd1c2d883b696f8415c7910060d83b4c]\nFormer-commit-id: 698baf9a51955e93491e6f39c6fedb24a687c4bd", "proba": 2.662350561877247e-05} {"commit": "f0822767db9f9a063cd7268155bee827ec4a4cbb", "message": "removed string formatting error\n", "proba": 1.8708576590142911e-06} {"commit": "f3d0629f086bcc649c3c77f4bc5b9c2c8172c3bf", "message": "Fix variable reference\n", "proba": 1.351144692307571e-05} {"commit": "070f03e20619363b2ec9f2cc43405b8256af7994", "message": "Add an 'exclude centroids' filter\n", "proba": 1.6003510609152727e-05} {"commit": "73f2f1da18bd441e5eab355cc1a05c65df5244f3", "message": "Note about optimisation potential\n", "proba": 2.5304188966401853e-07} {"commit": "02ceef4b43d08dfcb11ea9de6e72ed63c0b0f648", "message": "Control calls to show after loading text is updated with (global) show_after_load. Use search_width as interval for zero cross events.\n", "proba": 1.0544654571731371e-07} {"commit": "d81f8676b6b00e0a740cf99fd0d65e86065a7ca3", "message": "fixed data store call\n", "proba": 3.5388219998822024e-07} {"commit": "d5a6206f62549ba2ee649981364d41d3bb1efdf5", "message": "Simplifying/optimizing row frame creation\n", "proba": 2.218444592472224e-07} {"commit": "9e84f8dd64889df4b3909a0bbd20c95bdaba56fe", "message": "Add required options to certsign command.\n", "proba": 1.8218797492863814e-07} {"commit": "7b20ec1cba76916fce9349eaa4ddfc999fcb7b21", "message": "Update sequtilities.py\n", "proba": 9.253038228962396e-07} {"commit": "69133fb9b8b7c8fc182a778232f73c93976bd524", "message": "Fix a test class name typo\n", "proba": 0.9999992847442627} {"commit": "aa2390eed63acf4d24e0db2c108b7cc7174ad0e2", "message": "commit new kanaquiz.py\n", "proba": 1.7037575616996037e-07} {"commit": "c36556c662433e3c1718d2782b9ff87afacf5f15", "message": "Adjusted to new layout.\n", "proba": 1.2230601953433506e-07} {"commit": "fda0d494a68c42f5352c99218c4d85abd908b89a", "message": "Use Undisclosed-recipients if email has no 'To'\n", "proba": 0.9995607733726501} {"commit": "03365d1d1f1b69830bdea1ed34f5671d8f9ce54f", "message": "trying another redis ip\n", "proba": 4.6331953740264e-07} {"commit": "a62d7ba44c6148952ccb6edc9124d75a42996ae1", "message": "added remember me field to LoginForm\n", "proba": 1.4102531054049905e-07} {"commit": "1946e64dd6340d07adf4001b0a2b3007edf90df0", "message": "Fix str/bytes error\n", "proba": 0.0007905191159807146} {"commit": "50ce6f11755731cc701cf9fd2c5f997cc203629e", "message": "fix serialize tmp\n", "proba": 3.468433533271309e-06} {"commit": "8c4626e1d4ac619385a1afc0d011ecc80c55bb6d", "message": "refactor claim factories\n", "proba": 0.008837400935590267} {"commit": "5870d7a549a0f4a16bc2f8bae4ddf8bd112b4909", "message": "Remove print statement\n", "proba": 0.0070150988176465034} {"commit": "769fb350def0d0db208a90ec0161f87d6f1f1a85", "message": "fix error message\nadd eraseTrove\n", "proba": 7.970398314682825e-07} {"commit": "b258dd4b1c9431da6c03b7005a5684b6cc45f0fa", "message": "Modified.\n", "proba": 2.639039848872926e-07} {"commit": "efd7e7530fc0d5911b8cf31b2b0c78f57ef3bf2e", "message": "Update settings\n", "proba": 1.0128842404810712e-06} {"commit": "78e1f4eed9de2bcf16c296a6bb832d15a1ee9017", "message": "fix settings\n", "proba": 1.2045628636769834e-06} {"commit": "c2eb28da324347cf658440df084eb6d45abd0848", "message": "Added first parser tests\n", "proba": 1.3678344146228483e-07} {"commit": "67f8d031855842dad42ac715c52de8d8916665dc", "message": "Pring info after update command executed\n", "proba": 1.886151750341014e-07} {"commit": "f97acf958e70d0e2b3f5ef251c0f9b6e81f490f0", "message": "make sure csv file contains a matrix\n\ni.e. fill up missing coefficients with zeros when needed\n", "proba": 1.2356675824776175e-06} {"commit": "b4889c960542a06ddb681cd286db1126f2668663", "message": "Always show malratelimitexceeded message if it comes up\n", "proba": 1.242890590447132e-07} {"commit": "2e8512914245c88b7fbfa0de89cd3f9147ca391f", "message": "fix format doc issues", "proba": 5.675723855347314e-07} {"commit": "a0b1a9688f3915330eb2d8be127ae21700d04185", "message": "Fix error in the SOC-integral example\n", "proba": 1.5971554603311233e-05} {"commit": "7e3a54c4752884606203e21ca093c2847fa6f289", "message": "Reformatting comments\n", "proba": 1.7755093040250358e-07} {"commit": "b4d479b07e25836151ba2a80044c8bcec35d368d", "message": "bbw for naive approaches.\n", "proba": 1.203211041911345e-07} {"commit": "8dff5492c9e18168feeb953ad9432e8728ab1471", "message": "WIP: digests are created and formatted correctly. Needs send-email functionality\n\ngit-svn-id: 3a1f96c1df70beed629b865f4bf13a821c4b1f97@1286 befef031-aaeb-48d0-b70f-681328309d3d\n", "proba": 2.1229652702459134e-06} {"commit": "bacef4c464c15ce665a84c5a906fbaed0cf1ac70", "message": "small fix\n", "proba": 5.359547685657162e-07} {"commit": "4655bd85d1ebd971a4ca384740d0b243b453de3b", "message": "Simplified and refactor code to use absolute orientation of object instead of relative orientation\n", "proba": 7.714795060564938e-07} {"commit": "ed37749e059c78c3165aa0c472c1e99854b70b1c", "message": "fix bin\n", "proba": 9.186575198327773e-07} {"commit": "e5cf066fd7c5c02ddc76e5327e253c579b7266c3", "message": "Fixing missing agent configuration data (#720)\n\n", "proba": 1.5193863589502143e-07} {"commit": "d5ef7ef7d4fe8060338382165f2f3b15308d66f1", "message": "Integrated the different types of cycle lanes from geovelo\n", "proba": 3.5516291063686367e-07} {"commit": "c78424bc3dcc8b4bb2dc68875913bf689a8ef715", "message": "update cmsplugin_cascade/icon/mixins.py\n", "proba": 2.2751007122678857e-07} {"commit": "6278b4879ae4d7c55802055e1bb6ead16ad38ae4", "message": "Recover from crashes better when using berkeley db and recent pythons\n", "proba": 2.3577415220188414e-07} {"commit": "0bc3a603ff8d56033c9abd5bf9261272fd41fe08", "message": "SectionFiller: Documentation update\n", "proba": 1.3841612656051439e-07} {"commit": "8636987006873b35edae28dbc93452bbb2f33646", "message": "Add a few more well known attrs to ES push script HTCONDOR-148\n", "proba": 1.2392723647280945e-07} {"commit": "b2214912b41195ea7896445ebec90a56424c4cd3", "message": "[#79] Add missing word\n", "proba": 0.9999611377716064} {"commit": "e68882465a9036ac585b01fd304ac513f1aacc7e", "message": "Patch in:\ncommit 8d8502cc43f14f857a7ca64e72c57b24d6ad0739\nAuthor: Hampapur Ajay \nDate: Mon Dec 16 10:06:17 2013 -0800\n\n Require haproxy in role-container package. handle 503 of haproxy in service monitor before api-server is up\n", "proba": 1.518779271236781e-07} {"commit": "7f3987684496955fa51f754ddb5adb6e2cf8719d", "message": "Fix the Context hook\n\nChange-Id: I67e7c0d15061c2bb8bd6ea243bd72f01aaac2705\n", "proba": 0.9999991655349731} {"commit": "d57c3b70cbb9ebda8a74ea1137fff572bc57829a", "message": "Added view ad permalink for ad model.\n", "proba": 1.040760224668702e-07} {"commit": "cf924a8ebe53ff71c38e22bbf19c7432f8c4945d", "message": "Version 0.47.2\n", "proba": 2.723162424445036e-07} {"commit": "54be8ab70bc32b446c66208c19dd90950513fab3", "message": "Version 0.24.0\n", "proba": 5.56287773179065e-07} {"commit": "64492970c31927046fb2e18f89e0713eb7b6e288", "message": "division by 0 error\n", "proba": 9.636831237003207e-06} {"commit": "d903983077a16172ea59beb4d2da5d432faf0cea", "message": "Messing with Sphinx and ReadTheDocs files to get autogenerated API documentation.\n", "proba": 1.0137929251641253e-07} {"commit": "8f09a67c4c066f49320b738736ddd130714e7510", "message": "Do not open empty webpage if no accounts were discovered\n", "proba": 5.095523647469236e-07} {"commit": "53aa2eccebdd56c6d884da0d55b6d97c3f30171f", "message": "datasets couldn't actually be constructed no-arg\n", "proba": 4.913045631838031e-05} {"commit": "502aa8d44a90f8b4d0964eb7a851351135b8e4b5", "message": "Bug fix\n", "proba": 5.465154799821903e-07} {"commit": "2549ecbdec23178c4e8141f1a10b00c4b9b53b6a", "message": "Cum sums and writing proportions to text file.\n", "proba": 1.1531234633821441e-07} {"commit": "32fff42258ed3ecfecdb31c258989da0530d6968", "message": "Adding reputation links\n", "proba": 1.7610672387036175e-07} {"commit": "333e6d7049fef7223dd5ddf6a11aae601fa85336", "message": "Remove redundant import.\n", "proba": 3.4275346934009576e-06} {"commit": "aef0d4205ac1863530486fb9393139cd6c9134b7", "message": "Add docstrings to views #23\n", "proba": 1.2532206028481596e-07} {"commit": "f800026883276793dcec1ca9ecf900485434e85c", "message": "day 5 part 2 added\n", "proba": 2.0192427996335027e-07} {"commit": "cef998e4a62989c51ae29e3e73cbbc815d82f9f9", "message": "Fixed up the PEP8 failures.\n", "proba": 1.259769248918019e-07} {"commit": "c7bdd1c548c60af2a7f55347d67d8e53156b95fa", "message": "version\n", "proba": 1.0191783985646907e-06} {"commit": "0eab9df20b960a18474a03939c35f4ee2ae1aec4", "message": "fix test client cookies\n", "proba": 3.92214616340425e-07} {"commit": "07b801f4955bcb2d9bd7dbeafd546c320c931de8", "message": "Cleanup errors\n", "proba": 8.160002380463993e-07} {"commit": "1dc680b074f3b4b68c6322f317e7ae694c2364ec", "message": "Bug fix for stripping out path separators in archives.\n", "proba": 1.0534582628451972e-07} {"commit": "48aca7246c611b3ab8e471cbd41fa9ff4b54c4de", "message": "Bugfix: Keep original exception arguments (see #31).\n", "proba": 1.0274702333390451e-07} {"commit": "521b2a5cbe45b9c4527547dc58ac7892472d418c", "message": "the wrong braces\n", "proba": 8.187587809516117e-06} {"commit": "f5af056c9868186140493024265c4243ddd4653f", "message": "Add missing import\n", "proba": 0.00046551317791454494} {"commit": "f41b85c88f3bf755aa93ccc94ad4660b1fcf8905", "message": "#913 Fixing a reference to pset.lonlatdepth_dtype in particlefile.py\n", "proba": 1.5435222167070606e-07} {"commit": "2b7d76a7fff1ce8ca0320a4268a80059585dcce7", "message": "Update check_graphite.py\n\nstupid regression on var name....", "proba": 1.0724649968096855e-07} {"commit": "74bcd035219de3455dcfaf5e2e7a6c577e8277a0", "message": "Support other launcer activities with no icon specified\n", "proba": 1.1650671893903564e-07} {"commit": "a09d93b031310ee171b1a46e269c232f97bd193d", "message": "automagically serve static files for active apps\n\ni patched lib/rapidsms/webui/urls.py (which previously just\nimported the urls.py from each active app) to check for an\napp/%s/static directory, and serve it via django.views.static\nat the url /static/APP/?.* -- this makes bundling static files\nwith an app REALLY REALLY EASY.\n", "proba": 1.618372067468954e-07} {"commit": "3f2d49d4d9c41407a0193fee1a5d19776a6d0112", "message": "AutoEmails admin: remove unused job_scheduled\n", "proba": 4.413889485022082e-07} {"commit": "293574e122dba8cd0ba5e022cfd8cf9cccc1b189", "message": "sys.stdout might change from test to test\n", "proba": 3.070994694098772e-07} {"commit": "dce686838454bdbecbefbd74be1dfe94c935f95c", "message": "Update mailto entry in setup\n", "proba": 1.962982878467301e-07} {"commit": "d4c51202c1083001d648ca12de8b3a4ef79d1d20", "message": "rm unnecessary file\n", "proba": 2.0727393348352052e-06} {"commit": "131576f700398cc144d6dd735f933dfc89617174", "message": "added checking py2app for MAC\n", "proba": 2.078795517945764e-07} {"commit": "aa9c3c87d694cefd6bb3c04404736799cdb27391", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "3767ff896f9f055eddd93c8b0b3e4abb0e44dc8b", "message": "Pythonic code: itervalues(rule_map) -> rule_map.values()\n", "proba": 0.00019709535990841687} {"commit": "181fdcb80713fcd1b4ac7d35a11ae057a664c6cc", "message": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f 6 Can multiply np.array by number\n", "proba": 0.017096277326345444} {"commit": "f205df3382ad108ee04b8523cc31edb4ad92fdad", "message": "Don't allow None as a password in mysqldb.connect\n", "proba": 4.524789801507723e-06} {"commit": "1af69c3df8984e6177fd84885466806115321b35", "message": "Added comment (minor)\n", "proba": 1.2714114916434482e-07} {"commit": "5d9c6a00c23a5730fa45e328eab5076f1532dc4f", "message": "Remove leftover debug statement\n", "proba": 1.2029937352053821e-05} {"commit": "8b8ae412c069fca0edb96f4d231698c45b6ec534", "message": "Force POST for updates\n", "proba": 1.4707786988310545e-07} {"commit": "86c291283f5f9025b2537ed8a6c1dc353b941424", "message": "Explicitly use lxml parser (pattern.web)\n", "proba": 1.270073539672012e-07} {"commit": "1d90f126855ba701954debf18db2d7af474893d3", "message": "WebSearch: SQLAlchemy model fix\n", "proba": 2.078547822748078e-07} {"commit": "6fc2dd438163811b6a342a667121006f6785a998", "message": "Hotfix for using `self` vs `Repository()`\n", "proba": 1.279838386381016e-07} {"commit": "eedb401003ba934a131bfa7570dc14bf1f08b61d", "message": "Changing float types for driver", "proba": 3.333686038331507e-07} {"commit": "a98b880ceb8df467bc448bf6d4e6cf6c4e65bf84", "message": "Fix deprecation warning from Astropy in Ephem\n\nWhen the attractor for the Earth ecliptic frame is not specified,\nAstropy 4.2 gives a deprecation warning about replacing a frame instance\nwith a frame class. This change instantiates the class before returning\nit, similar to the get_frame function.\n", "proba": 1.2641379498745664e-07} {"commit": "e199948b88397e0434c929ea7635f50eb7f8ac2a", "message": "Move element.input format description to _check_kwargs.\n\nSigned-off-by: Michael Markert <5eb998b7ac86da375651a4cd767b88c9dad25896@googlemail.com>\n", "proba": 2.3522031256106857e-07} {"commit": "d5b6c16a0d946a249eb76a633dccd7117a686bc3", "message": "fixes an empty title attribute error\n", "proba": 7.493812859138416e-07} {"commit": "24453e748cce3843acbc49385529e781fbfce452", "message": "Mention possible effect of CRS on distances\n\nAfter finishing the route calculation, a dialog box will show some\nstatistics on distances. The dialog will always show km as the unit for\nthese distances, even though the unit actually seems to be determined\nby the unit of the Coordinate Reference System (CRS).\n\nFor example, OpenStreetMap uses WGS 84 (EPSG:4326), which QGIS lists as\na Geographic Coordinate System (GCS), which have an angular unit of\nmeasure (degrees). To be able to measure meters, a Projected\nCoordinate System needs to be used, so the users needs to [change the\nCRS][1].\n\nTo point the user in the right direction, the following text is added\nto the dialog box:\n\n> (If the above values do not make sense, consider changing CRS.)\n\n[1]: http://docs.qgis.org/2.8/en/docs/training_manual/vector_analysis/reproject_transform.html\n", "proba": 0.9999866485595703} {"commit": "f4ae0022aa1dc63f3e3fde2a8b350523a926ea35", "message": "Add PipelineElement._output_names to get to names.\n\nSigned-off-by: Michael Markert <5eb998b7ac86da375651a4cd767b88c9dad25896@googlemail.com>\n", "proba": 2.515342885089922e-07} {"commit": "2251a9553b871d08d7e00f5b29b5c2d7138a8086", "message": "Removed unnecessary escape\n", "proba": 2.391297357462463e-06} {"commit": "2d0fb92754fb97e0a90d022ad697fa752d671883", "message": "Don't follow account.user FK unnecessarily.\n", "proba": 1.2631292634068814e-07} {"commit": "942231c0da78e9287db5378c4c5d50b0a45e0d15", "message": "Fixing model data serialization\n", "proba": 2.2271879061008804e-06} {"commit": "6f472b901f82b3a1b636276dd22ab511314d4aa4", "message": "Fixes tests to understand that there's only a proxy on the clipboard\n", "proba": 2.1226686897080072e-07} {"commit": "47341c5cb3cb0d35bded2814fa076e4a2ac21efd", "message": "Fix build breakage.\n\ngit-svn-id: http://src.chromium.org/svn/trunk/src@30543 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n\nFormer-commit-id: d4406f4e229027299b065206c8b3c7f61248aa94", "proba": 0.9979045391082764} {"commit": "f49a85e90bf6e22d73df242c27611646fd5a30ca", "message": "still more units...\n", "proba": 1.2086600520433421e-07} {"commit": "2cc5221cae457838c3e4e5c433e9321fea3107f6", "message": "make sections obey language preference\n", "proba": 4.7374446694448125e-06} {"commit": "a91d1d8fe85b839ed7b4eed9647ea814d54affab", "message": "Deal with Boost.Python targets\n", "proba": 2.1947097650354408e-07} {"commit": "60ed98c951627083b1b049e928f9e2ab1922dcf1", "message": "typo: missing comma\n", "proba": 0.9999765157699585} {"commit": "d0453543e43c19b88fe64749dfef58e15b24b9af", "message": "Try to fix storage of geometry quantities\n", "proba": 9.737998425407568e-07} {"commit": "d16c9f0c0b400968e9c65f65bd03ea3e9529f789", "message": "New notification system integration into the mail notification engine\n\nThe mail notification engine uses now the new notification data stored into the\nnotifications dictionnary stored as an attrivute into the User class.\n\nIssue: #3\n", "proba": 1.7194226131778123e-07} {"commit": "4524bbf468e7d05c5a7df8fa55db74bebef39dd3", "message": "hack tweak: exc.NO_STATE is a tuple.\n\ngit-svn-id: 655ff90ec95d1eeadb1ee4bb9db742a3c015d499@5045 8cd8332f-0806-0410-a4b6-96f4b9520244\n", "proba": 0.007505020126700401} {"commit": "98d6f064bc1613aec912d4dc097606d521fdd38e", "message": "Write multimodel PDB file geometry-proposal-stages.pdb that shows atom-by-atom addition of new atoms in geometry engine\n", "proba": 4.857723752138554e-07} {"commit": "01ddca68f41ebac3123adecdeae7dd31e9c367d8", "message": "Remove leftover hidden state\n", "proba": 1.1187636346221552e-06} {"commit": "a8b092de1456d9211b80499bbe2737176a7b7884", "message": "prepare for other formatters (join only works with str, for example)\n", "proba": 1.0307226716577134e-07} {"commit": "c06c5e651597f1c1ea8e1d4a3661e6e5f01ed102", "message": "Session, higher LR, slower decay\n", "proba": 3.5330759828866576e-07} {"commit": "1b83b4f5324c690f31d40cafcef9a0a33ed88cf1", "message": "SOS remove\n", "proba": 6.819362283749797e-07} {"commit": "23e1b360955c01b92502a4b88bef491938969202", "message": "tryying to get cronjobs to load\n", "proba": 1.4957520022562676e-07} {"commit": "3d0ccd4f5bea380e4798aedf5691ec14b4aba7bd", "message": "cleaned up register view\n", "proba": 1.487396303900823e-07} {"commit": "90e05408dde87c3ca91418e9b93bcc71523c528c", "message": "Use the name rather the the id in the access rules to an\ninvestigation.\n\ngit-svn-id: 5b1347ddac5aba1438c637217dfe0bb137609099@219 8efdbd46-c5fb-49ab-9956-99f62928ec21\n", "proba": 0.003589991247281432} {"commit": "fc48a484786b298323da825266b931f686be8341", "message": "NEW: Search orgs by name or id", "proba": 1.9403596240863408e-07} {"commit": "829b38d1b88a7f5b240936ea2cac55f397819a9b", "message": "cvrnumber change to cvrNumber\n", "proba": 0.998035728931427} {"commit": "6e9e05636223373ec1ca066347fa4c357ed570a9", "message": "Adjusted/aligned output\n", "proba": 4.372372586658457e-06} {"commit": "9d6379ca7d3bea89f403881b022c9ae8c734178b", "message": "fix up an encoding issue; add a default exc_type URL for builtin exceptions\n", "proba": 5.912951337450068e-07} {"commit": "87117fa3dd53da0e57ac7528d249be96e4eb44bb", "message": "clear compiled runs when module is called\n", "proba": 3.211831653970876e-07} {"commit": "6bd5bb15cff7d8a1ef920c7f34e27bb5536c247b", "message": "When OpenURL does not correspond to an existing record, return a search for\nrecid:-1, which already produces a nice \"Requested record does not seems to\nexist.\" message.\n", "proba": 1.1085980133884732e-07} {"commit": "aa991d97eb90ec67b0e917bad53a1ddb4c2b0cc7", "message": "Get service root properly.\n", "proba": 1.8124541156794294e-07} {"commit": "ead22db86afc3d1cbdae8c02ba61d693ac9fe7e5", "message": "profile: allow binding other addresses\n", "proba": 4.6571437906095525e-07} {"commit": "cabfb87b3e4fb7389d6c6a71c37c1312ebbe8667", "message": "Add unit.keywords to prefetching logic in viewset\n", "proba": 2.3545688065951254e-07} {"commit": "847f7ad01d03190f13adbd405cd5564915eb3213", "message": "Relax OCD ID character checking a bit\n", "proba": 1.584223952022512e-07} {"commit": "f3ced659be97f141f12468281f1af9576481875b", "message": "Update pfs.py\n\nThis if for the next Flash Player release (see https://bugzilla.mozilla.org/show_bug.cgi?id=1030436)", "proba": 1.3004355992052297e-07} {"commit": "fa9117773478f4a49c2e2af1da34ca25b3ae5b39", "message": "Fix flake8", "proba": 4.508962092586444e-07} {"commit": "348912bc21834f44de84e1add61f4b1d5ef9e434", "message": "setuphelpers.py: Add import sys.\n", "proba": 1.2659040748985717e-07} {"commit": "582347a8730ccb3fa6b73f8940ff0b232523db6c", "message": "whitespace\n", "proba": 0.9998207688331604} {"commit": "7f988ef7406ff15c9f523f78b90c40f0ea221896", "message": "bulk seed form help\n", "proba": 1.7423937492822006e-07} {"commit": "0d227a49a974a3ad6f48a00a978686569f4504db", "message": "Fixes #189, seeds list on seedset update page\n", "proba": 1.1687105683222399e-07} {"commit": "65a0d947398327b32a587f825de5f92dc109c72a", "message": "fix Run import\n", "proba": 3.7297573385330907e-07} {"commit": "d5e3082f84ddc0a3bcf68e51ad1205cd4df4ee2f", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "dbd52f2a57ef429136b1f07b5f373b59f40e02b7", "message": "fix the output samples issue\n\nfor need two fetches to report rate converted counter\nmetrics. so the actual output samples will be less than\nthe speicified number when using '-s' and '-T' option.\n'+1' can fix this issue.\n", "proba": 3.16400519295712e-06} {"commit": "37e76572b39ebd4200dfd3e16f2897f18cd0cc97", "message": "Fix Assessment export\n\nAssessment object is a normal mapping but just a special column that is\nused on imports to have columns consistent with the modal window. That\ncolumn can safely be ignored on exports since the value from it will be\nshown in the proper mapping column.\n", "proba": 1.0305084430228817e-07} {"commit": "666a6d382c69f8e1bd7430ea18f26e7bea735858", "message": "Add 30000-65535 UDP segroup rule\n\n\nFormer-commit-id: 122277127a64944dd7fe4374992d26cf8ac4096c", "proba": 1.60741865329328e-06} {"commit": "ab873f84cb5c0ef3573861378a3c0e84a61ba10a", "message": "Use Django's `validate_email` function for email validation\n", "proba": 9.882732229016256e-06} {"commit": "aa4c249bccdd6737bbfc2ee3edf4c0530d3d6da9", "message": "Correct hubspot url, only soft assert of processing increases 10-fold\n", "proba": 1.9068825451995508e-07} {"commit": "5cf1b9d857a8432bf53fc4ba1037d78bfcb58e66", "message": "extract out _get_couch_docs\n", "proba": 0.9999994039535522} {"commit": "7341076f15075e5a55f7726a3be260f1ff0255f7", "message": "add checker to make sure that report indices\nreally need to be checked", "proba": 1.8329235729197535e-07} {"commit": "efd68b2b6e53f20f200ad5ccdf7e86ebac762e37", "message": "cleanup of eschecker\n\nremove explicit doc_id based querying and just do view based, check index, modify and check index again for rev delta.\n\nthis is more general, albeit it will touch arbitrary docs and update their revs with a meaningless change.", "proba": 1.036212466942743e-07} {"commit": "bb881646f82d94218c51768be2cf359927fcaf4f", "message": "add CommTrack Web Users indicator\n", "proba": 1.6074018560630066e-07} {"commit": "bd499c9e018fdc15c14345cc576f01e2367c16d0", "message": "remove useless comment\n", "proba": 1.8972595228206046e-07} {"commit": "362551a81e51ac889ef6bf6de2d5ec5343022261", "message": "use has_privilege in a bunch more checks\n", "proba": 1.9046106558562315e-07} {"commit": "d8ae1f257c888d155ab8240d3b594dfc5bdcd41d", "message": "Make metadata required\n", "proba": 0.001182813779450953} {"commit": "2179a43bb50ef86ed169b5f891279f15a4326c9c", "message": "Rename the client storage\n\nDo this so it is more accurate to what it represents.\n", "proba": 3.7482567449842463e-07} {"commit": "2ed7441520f8d3d57019f5b0b115abd8b282ad86", "message": "Add documentation on why rebuild is necessary\n", "proba": 7.288576398423174e-06} {"commit": "8406ec5b2e425115fee9d77b36d6874056bed25d", "message": "Update views.py", "proba": 4.614934141500271e-07} {"commit": "d0e16f7c083aaa515b201fb2ce300ed4f571401c", "message": "Test execution ctx with real model.\n", "proba": 1.1727948390216625e-07} {"commit": "27a0265c1c75bd968f6b3cd7d2216e903a1de43f", "message": "moved comment to make more sense\n", "proba": 3.2029245744524815e-07} {"commit": "c35b0ab039e1108cfd5663e16cde7bdccf039dc0", "message": "No need toe cho\n", "proba": 1.9037594029214233e-05} {"commit": "8ac32a4de0a090cbc9749de04c8778ebe4c492a8", "message": "Fix field sizes\n", "proba": 5.335563173503033e-07} {"commit": "28cdbcfe10e796e75a29374977213e3ea69ca381", "message": "Fixed RRR bug by adding new RRR_RT type to put RRR RT opcodes in the correct bit positions\n\n", "proba": 2.0278902468362503e-07} {"commit": "2bc25b90995da42c8e7d943d9632676b3ff2dd9a", "message": "added delete property function\n", "proba": 6.435081445488322e-07} {"commit": "67f0ba3f3232fb02d6acb5aea54615d4f7b3a9b8", "message": "CI-63\nfix tests\n\n+review SYS-100\n", "proba": 1.390307744486563e-07} {"commit": "080a59b3105a5456e30335d29235b5c3e403e4b8", "message": "pep8: mv binary operator before newline, not after", "proba": 5.298880410009588e-07} {"commit": "711323d2b79a69babdd75b46ccb6265c34cb1656", "message": "Remove unit before log\n", "proba": 3.816145692780992e-07} {"commit": "e5f5be71fbc3e58c5a88e84065a6cc07ea0eeec1", "message": "Missed a few in the Tsallis testing\n", "proba": 1.274730863087825e-07} {"commit": "72fe247b8d1865b7157d919ffeec14c05c8b9ebd", "message": "Improved oembed tag\n", "proba": 2.7811523750642664e-07} {"commit": "03ed0a1367215359f24acb6b718c3a740573ab9a", "message": "Add tests for wrap pen management.\n", "proba": 1.1789242648774234e-07} {"commit": "0d8a3534191de36975bd62b76368bcea372d6cb3", "message": "Corre\u00e7\u00e3o na lib de python, pois a concatena\u00e7\u00e3o do host estava quebrada\n", "proba": 4.04677194865144e-07} {"commit": "d239b6f60918ba2e8f98f3efbba509373f71acc6", "message": "Be more robust when `tab_width` is left blank in the TracIni. Fixes #3969.\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@3998 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 2.732756911427714e-06} {"commit": "0706f528a8636357a7adec412699e18ee0994924", "message": "Fix tabnanny issues.\n\nThanks to @mabi for reporting this.\n", "proba": 1.0035789443918475e-07} {"commit": "d0113df14f1060a97c8b2bea0e6ecc6d85ed621b", "message": "Slightly neater checking for no duration\n", "proba": 1.2251989289779885e-07} {"commit": "ae82e90dd210c657d032d1c139846238701a504c", "message": "Basic interface test for ClientIdentifierSecret\n", "proba": 1.7493951531832863e-07} {"commit": "68e1d582dbfde679908d6b0fe5ccc67aeca51072", "message": "Removed the moved TestCase from the original suite\n", "proba": 1.7589256628980365e-07} {"commit": "9b56d5df7a917ba96be59085ed129068bb9dc66f", "message": "Fixes passthrough continuations\n", "proba": 2.782075512186566e-07} {"commit": "434d2581aa39ad1b027e7d071f17d4a920d97635", "message": "Properly handles module docstrings\n", "proba": 1.1138941772514954e-05} {"commit": "7f7fe12c572d348c68c828a241e893626ae0986f", "message": "Fixes indentation\n", "proba": 1.152581830865529e-06} {"commit": "30348ef5e8503e1ad9ad43a8ddef0ad31426db51", "message": "[OpenWrt] Hardened ntp server option schema\n", "proba": 1.7383140971105604e-07} {"commit": "9dfc28764ff592b388902621e60774df53418f7b", "message": "refactor for easiser implementation of hierarchical attn\n", "proba": 4.4508081487038e-07} {"commit": "1051950b018e9d51ba688ecb70aac9ab60a53821", "message": "cleanup of interpolation.py\n\nrenamed _prefilter : _buildknots\n\nadded docstring to evaluate\n\nremoved resample, __call__ methods\n\nremoved optional grid keyword: the grid used is self.image.grid\n\ndefault spline order is 3\n", "proba": 2.4821678380249068e-05} {"commit": "e9b52bed89ce3805c87c666810b31377c6142f20", "message": "add more comics\n", "proba": 1.1832495516728159e-07} {"commit": "32460f945f7520054155463bae20256c5a34a871", "message": "[pivars] Add command to print all ivars of a class (minus superclasses).\n", "proba": 1.2293878626223886e-07} {"commit": "a083bce2659aebc5246b4bc7c6bb128af07cc77c", "message": "Debug\n\nins_voce_computo() non inseriva la nuova voce se usato sulla riga di\nintestazione del foglio.\n", "proba": 1.392938173694347e-07} {"commit": "aa52367f78be0941ab7a75ade29a30cd853bbbec", "message": "Fix test_router_add_interface_delete_port_after_failure\n\nIn test_router_add_interface_delete_port_after_failure,\nwhen a subnet is created, a neutron DHCP port could be created\nif this subnet is DHCP-enabled.\n\nIn this case, the test will fail because it only checks if a\nrouter-interface port is deleted and expects no more port in\nthe system. But it misses the internal DHCP port is still there.\n\nThe patch here is to explicitly set enable_dhcp=False when\ncreating the subnet.\n\nChange-Id: I4acbf2c83f9145f7b99519ec90934fa862de67f7\nCloses-Bug: #1612894\n", "proba": 0.0017601395957171917} {"commit": "0719e76b842d39ff569293f6952adf13c909b768", "message": "new: validate url\n", "proba": 0.0007671773200854659} {"commit": "0a969d299cb4f8bdef57b12b1245b5bcf1123367", "message": "[cache] add masking fix to CL cache\n", "proba": 2.106875172103173e-07} {"commit": "4b025b998b8bbc05837f2d72fdc310e9524c724e", "message": "fixed import\n", "proba": 6.131749614723958e-07} {"commit": "3f0381b9e581352afcdd13ef2ad2390dae7125d3", "message": "Removed a semi-colon that was annoying me.\n", "proba": 1.023432787405909e-06} {"commit": "594cd5d490786bbbdcf877d8c155530c36acd2c1", "message": "Remove Smoothing From Temp Sensor\n", "proba": 2.469049888986774e-07} {"commit": "06fa4455a825c3474a4725873309816e401286cd", "message": "Added 2D block-padded example.\n", "proba": 1.0855892185190896e-07} {"commit": "5db2f870d5449d8ff14767854bbc603a2ed10287", "message": "first example is working\n", "proba": 1.6690645452399622e-06} {"commit": "2951d23c1a7d4cbd935d9db3c35625ad8b774427", "message": "Create one big Hacker School list.\n", "proba": 2.0975586778604338e-07} {"commit": "0138b673ce55666382f21cd4bf82c62caa9ee5e2", "message": "QIdle: fix for python2 (the zip path were not transmitted to the server)\n", "proba": 1.1011378830971807e-07} {"commit": "f15b04807ddff9b622e7ea7e1a26da9fef45c006", "message": "Modify health and status cron to save object instead of event\n", "proba": 1.82910454782359e-07} {"commit": "af67f140b51c648bd12d49edbb85fe72bbbe815d", "message": "reduce output freq to 6-hourly\n", "proba": 0.9999994039535522} {"commit": "fbb13a19a4326fa8f64022cf82a82ba519089441", "message": "fix unit tests\n", "proba": 1.0152670029128785e-06} {"commit": "c702b8d499af4670083502ae8f6e8343454539c0", "message": "fix of the day for pause/resume/step interactions\n", "proba": 1.9724407707144564e-07} {"commit": "9c8554cedb038b14a3bbca015d29dcdc0d6488cb", "message": "fixing policy create with rgNamePrefix and rgNameSuffix (#17571)\n\nfixing style", "proba": 1.2015071604309924e-07} {"commit": "18962a732cc0f76f5bb5984734c88f6105d630aa", "message": "axis.py jogspeed_incremental() cursel may be tuple\n\nvalue returned by:\n root_window.call(widgets.jogincr._w, \"curselection\")\nis 'str' for tcl8.5/python2.6.5\nis tuple for tcl8.6/python2.7.9\n\nSigned-off-by: Dewey Garrett <546ec366615570e68497e3c5df9092106a9808f4@panix.com>\n", "proba": 1.5389949794553104e-06} {"commit": "2b0e639001248204ba26394238d02492783c13b1", "message": "[Network] `az network application-gateway ssl-cert show`: Add example to demonstrate certificate format and fetch information (#15166)\n\n* [Network] `az network application-gateway ssl-cert show`: Add example to demonstrate certificate format and fetch information(#14132)\r\n\r\n* [Network] `az network application-gateway ssl-cert show`: Fix example (#14132)\r\n\r\nCo-authored-by: Subhasish Dutta Chowdhuri <9a7f10d875f026b3c1f1c6a48aaaeb09511e45af@schowdhu-mn2.linkedin.biz>", "proba": 1.61833185075011e-07} {"commit": "bc386ca8095cce177d5f026da9082f2ca489c316", "message": "stepconf - switch from md5 to hashlib module\n\nthe md5 module is deprecatated\n(cherry picked from commit 7400795ab590b6d36028869d872cfcbedff08aa9)\n", "proba": 1.2448811048670905e-07} {"commit": "e32390ebda573ae1419382db233a7bef319c14af", "message": "changed dois service from GET to POST for #46\n", "proba": 1.2143793526320223e-07} {"commit": "7b651bdfa2520e1f11aa013d2d7e664b20c53a8c", "message": "clean out test objects at beginning and end of fedora unit tests\n\ngit-svn-id: bb2ed31f08aebe2c251d311350391bbcccfc1c3a@783 1168706f-7e1d-44e7-b746-9e172b5a9a2f\n", "proba": 2.421345698166988e-06} {"commit": "d630f975ca532227acfd4d2ca2455d15652c7d46", "message": "save_glyph should be False by default\n", "proba": 0.9992589354515076} {"commit": "3df7310f9b010936d0846cc7348c0e547cdba2e1", "message": "Remove unused import\n\ngit-svn-id: 24f545668198cdd163a527378499f2123e59bf9f@1079 ead46cd0-7350-4e37-8683-fc4c6f79bf00\n", "proba": 6.133217311798944e-07} {"commit": "d4252deb48b0d00c9b199cc3f893f90728089e53", "message": "Stop powerstrip hang when IP addresses are blank\n\n\nFormer-commit-id: 1b50adc76e525fb7728dcfa20854237b94e42bf6", "proba": 1.6199776382563869e-06} {"commit": "8435ffcaa7c154809c2687e011911cf1507497f2", "message": "Updated old tests", "proba": 3.1049611948219535e-07} {"commit": "66b253a53cebad4ac0a91087aed4f79bd1819625", "message": "added -P/--pageobject option\n", "proba": 7.752541932859458e-07} {"commit": "2d27e714e72097b07d99a5fbf24596a3002af3cb", "message": "Improve uploader backend", "proba": 1.6726115745768766e-06} {"commit": "fb8302c48ce41f31946045a19abb66fce516f5c7", "message": "cleanup prints in tests", "proba": 2.0892136376460257e-07} {"commit": "d9cdfedaec2568c487644442cd68699b544908ec", "message": "Add ogg decoder.\n", "proba": 3.763095435260766e-07} {"commit": "129878d9599c5e5fd6e79dd1ae2e29bc2b596f43", "message": "It would help if I set the correct environment variable. Changed\nPBS_NUM_NODES to PBS_NUM_PPN.\n", "proba": 1.1453465049271472e-05} {"commit": "d2f37c4ad4de04620511f20ee22d80beaa0c2b38", "message": "update bug report script for new z3. yikes!\n", "proba": 1.104983908817303e-07} {"commit": "83bd562337abdda4b1ba6706999b13aa358bdd28", "message": "test/test_http.py: also backup/restore HTTP proxy settings\n\nThe HttpLayerTestCase class relies on the LibcloudConnection class -\nwhich honors https_proxy and http_proxy variables.\n\nSince the tests expect connections to the loopback interface (e.g.,\n127.0.0.1), we need to clear the http_proxy and https_proxy\nvariables before running the tests. Later on, we need to restore the\nvariables just like we did in test/test_connection.py\n\nSigned-off-by: Olivier Gayot <177cb43a9a0ccab7ae6d0e6a74e79a9be7a5415d@canonical.com>\n", "proba": 1.5191969396255445e-05} {"commit": "bc8462e1c9af7183114449db6ad7adaea8f5a053", "message": "Added an identifier to the AR-Message\n", "proba": 2.133868406417605e-07} {"commit": "4a50fe5bf3788ddc273a474dd04d4d9d652c21bb", "message": "Fix testing object fields with missing instance rows\n\nThis test was not actually always triggering the exception in the right\nplace because the is-set condition was not being forced true, even though\nthe is-changed one was.\n\nThis just mocks out the is-set check to make it look like it is always\nset, which makes sure we actually run this for each case properly. It\nalso resets changes to make sure that we end up with a clean instance\neach time through the loop.\n\nThis avoids failures later when we drop some flavor compat stuff.\n\nAlso, this moves the test to the local-only test class for reasons\nmentioned in the comments.\n\nCloses-Bug: #1468087\n\nChange-Id: I4cb6169119da1074c823f3319294ba880a67758f\n", "proba": 1.5724126569693908e-06} {"commit": "03fd9967a916c45e360c51d6db5a721106f20a5a", "message": "Remove print\n", "proba": 1.5574403732898645e-05} {"commit": "70f5a3fd7e28c574912a0318eba83f11789c2c7b", "message": "Fix URLS in contact form\n", "proba": 2.8834450858994387e-05} {"commit": "24b525570919986ab4a7b079b97b4e201117140c", "message": "Added utilities.int_binsearch (translated from C++ contest code)\n", "proba": 1.0255358517952118e-07} {"commit": "126b8338b3e07fb69a908560b5df80ee2ab44ab1", "message": "resolved merge conflicts\n", "proba": 6.918485837559274e-07} {"commit": "7c794058630c70f56640254399a3b9e649c48a4b", "message": "PI-521 drop the volume_ids from the database when terminating stacks\n", "proba": 1.5417450072163774e-07} {"commit": "d5a0780e8b1d18855aeb25e45b37b9fddac38211", "message": "Fix incorrect order of auth and alias filtering\n\nThe logic used by `annotator.annotation.Annotation._build_query`\nto expand the search to include document aliases and to limit the\nsearch by authorization were inverted. The former assumed a\nstructure only present when the latter was active via the `AUTHZ_ON`\napplication setting.\n\nThis problem could cause information leakage. No release tags include\nthis problem.\n", "proba": 5.798252686872729e-07} {"commit": "723c65e73b97c09fff5514bcfb5cf6673a1b963e", "message": "Optimization: Detect illegal add operation found via \"rsa\" test.\n", "proba": 1.1032317814851922e-07} {"commit": "361fccab7c0b21ed8beb75003b7d7b4ab535dd00", "message": "Update registry.py\n", "proba": 1.0757157724583521e-06} {"commit": "af779c32d9f6f3b81d2e65bf5c278aec8e5855cd", "message": ".get handling for layout\n", "proba": 1.87458709888233e-07} {"commit": "d70dc28c1841fafedab48418825e13da78a63b9a", "message": "Removing some test configs\n", "proba": 4.6090886485217197e-07} {"commit": "671c081fef91bb9e04e5ef81eaad37949875f756", "message": "MAINT remove outdated calc\n", "proba": 0.009279623627662659} {"commit": "40562a1fc667c71d38bd9e94eace25e328c8011a", "message": "Plugins: Fixup for tk-inter on Python 3.3\n", "proba": 2.178442599642949e-07} {"commit": "c57e7e2f04409fbabfef3d788ae4cc7c11655116", "message": "Use offering template label if possible when request-based item is imported.\n", "proba": 1.069503028361396e-07} {"commit": "61513aa4c4f04336af335d644fa41c36c04d65ce", "message": "deprecated, not depreciated\n", "proba": 4.1501170926494524e-05} {"commit": "c38494f47d078c718f48176112b5df9d6aaa902d", "message": "Fix for #51: Should have nice error message when SQLiters try to drop columns.\n\n--HG--\nextra : convert_revision : svn%3A69d324d9-c39d-4fdc-8679-7745eae9e2c8/trunk%40100\n", "proba": 5.891713499295292e-07} {"commit": "061c972731faac0c8d766f1318dbf36d0106ebb8", "message": "Increased package version number\n", "proba": 1.1522049589984817e-06} {"commit": "008808748cb244cc32bab4ecfe65789c31154663", "message": "fixing train_utils.py\n", "proba": 2.116791165462928e-06} {"commit": "4bff44a38f339323b10cdd86e39a988a64f2e631", "message": "Remove unneeded fixture file.\n", "proba": 1.6703991434496857e-07} {"commit": "4455620ce6e59a1c2219e177848f549c410343e2", "message": "GUI startup : Add Cycles presets for ShaderTweaks and ShaderQuery\n", "proba": 1.2629112688955502e-07} {"commit": "c4cbbddd5c66d91b4a209fcc1eab24909b1df7e1", "message": "Fixed cloud initial data migration\n", "proba": 2.502866323084163e-07} {"commit": "48ea574a3b9230a17cfc6f45cd7c56507e41cd4e", "message": "Move functions that depend on problem type (loss, metric, predictions) from base class to Classifier and Regressor.\nChange: 123818693\n", "proba": 5.816112889078795e-07} {"commit": "1c7a063111c1f030ea62fafeeae593ab20f17e6b", "message": "Cleanup: Converting spaces to tabs introduced to various lines since python usually is very particular about indents. Though the script seems to work fine with the spaces, it's better to be safe than sorry. (olivS/etr9j)\n", "proba": 1.96210322656043e-07} {"commit": "b6ad3e7e6722965a89fea98bd7f4747d79756a1b", "message": "added ITab feature\n", "proba": 1.9088001579348202e-07} {"commit": "739a9c3b02f8fbf344619d8c0346f8ac9fff6775", "message": "fix python3 import error\n", "proba": 1.1279726095381193e-05} {"commit": "e17ed53971956bcd5a93c09d26d34cc523415578", "message": "Model Maker: Nit fix the file description.\n\nAlthough this is a minor change, but Dataset and DataLoader are quite different, so let's fix the file description to avoid confusion.\n\nPiperOrigin-RevId: 339404099\n", "proba": 1.9440473408849357e-07} {"commit": "fe34d2bd3b53d44e0eef41c93050232ca229b81a", "message": "Replaced importing file with static checksum.\n", "proba": 1.4460140107530606e-07} {"commit": "ac3724d32602146cc1026d412efbdadd8e44af9b", "message": "Games: Add halfop support in @roulette.\n", "proba": 1.0600169275676308e-07} {"commit": "ad82a20ca8d7cbbb54a7ed83e4cad06a4333c5e2", "message": "Removed unused global vars\n", "proba": 3.8638845012428646e-07} {"commit": "797b3ed9090030f32fade81803b580562d4a90a3", "message": "script: remove gitian reference from symbol-check.py\n", "proba": 3.2162026286641776e-07} {"commit": "f584384858710c51dd23b53320b0a5e2f36d3545", "message": "backport symbol-check changes from upstream.\n", "proba": 1.1035726998898099e-07} {"commit": "b5715d7907941f65a6dd6386bb5086dcaf6b7271", "message": "Simplify test\n", "proba": 0.0001872979773906991} {"commit": "0ae5e889c9e031e6a8f15dcc8369c1eb5b5f6de3", "message": "fix bug in test_leaky_relu.py\n", "proba": 8.008357781363884e-07} {"commit": "be70da4a196e39d89fb25f7a9cb680857d487c08", "message": "don't fail on TypeError\n", "proba": 1.3005115988562466e-06} {"commit": "72d33ea47458cace13dac920ce2a82e55f83caba", "message": "ENH: Add pandas dataframe capability in variance_inflation_factor\n", "proba": 3.322413476780639e-06} {"commit": "650a42ecf824d0262e2079ff8c5ade74a1fb78e6", "message": "FEM: unit tests, reactivate Elmer test\n", "proba": 3.481466706034553e-07} {"commit": "dccdc446aa4c648a5cf96172eaea667825289698", "message": "releng - azure - fix event sub functional test race condition (#6292)\n\n", "proba": 1.1107272257504519e-07} {"commit": "e06747f083cba88f9b56db37c8151329c3a3f351", "message": "corrected some things\n", "proba": 0.00022667738085146993} {"commit": "79296270cc86eb79b478cec081cf9064a85957f9", "message": "Latex extension: delaying check for a valid url so we can include\ncached images if there's no Internet connection\n\n--\nextensions/latex/includevistrail.py\n - The check for a valid url was delayed to the point where we actually need it.\nThis way we try using cached_images even if an Internet connection is not\navailable.\n", "proba": 2.02910328539474e-07} {"commit": "b30d8aac51bf45461c3a14f96d4e31392a7ac115", "message": "Changed print statements to return", "proba": 8.489718311466277e-06} {"commit": "1086bf402ef557015ebd8a4ce505489e684dc849", "message": "Always return result if calendar attribute is present on time coordinate var\n", "proba": 4.815996703655401e-07} {"commit": "484092940a2acf32b074a249650dff40d0f656ca", "message": "fixed missing argument when calling showdown function\n", "proba": 7.717127914474986e-07} {"commit": "589a175b1989e5a2e75a2c8911c1788c70001a7b", "message": "8d42f24c-2d5f-11e5-86d4-b88d120fff5e", "proba": 9.087993930734228e-06} {"commit": "c562af34be497e048314b29dc8ca4b55f7ddc8c0", "message": "Many bug fixes\n", "proba": 1.768836881410607e-07} {"commit": "401ff2c2f0ee87f74649264ee6d450cf126b6a0f", "message": "MOAR COMMENTS!!!!\n", "proba": 1.191295453395469e-07} {"commit": "0dcccd979d12408351ef687504d7727eec65084d", "message": "NXDRIVE-559: Dont display the JS should interrupt dialog\n", "proba": 2.1754487988800975e-07} {"commit": "c78ddfc0e46b8c6a965f93808069c9568c305c0f", "message": "Adds newline between issues\n", "proba": 9.135256959780236e-07} {"commit": "bf7a11fad5110d50d5f591688b10ccd2accc3835", "message": "Add logic to the generator to skip simd or vfp instructions until we reach th elast part of the table.\n", "proba": 9.967096303853396e-08} {"commit": "c8af032456e16230eabd5f209a15baf4f0b91f92", "message": "defaultbranch is dieing...\n", "proba": 1.2514614411429648e-07} {"commit": "55b2d827f74a01dc9ae3b0d0a5df59e312451702", "message": "9ddd1307-2d5f-11e5-b85b-b88d120fff5e", "proba": 3.3773835639294703e-06} {"commit": "1c0255b7e1bf16f98e907f5748326a6ecd605b7f", "message": "Update plugin.py\n", "proba": 6.975541850806621e-07} {"commit": "39051ef3ca9a9eedca58c8ea1b80ce5627d44ee5", "message": "Add model_from_config in models.py", "proba": 1.511842697254906e-06} {"commit": "2f4ac0743a054c55b3ddacef682722b794771639", "message": "remove duplicate http request with backup code\n", "proba": 5.106167577650922e-07} {"commit": "34afe458f99d3751e55f4db68f5f3bb850e2e563", "message": "use pathlib\n\nCo-Authored-By: James Estevez <88e6df7548c7c609a1af76182b3f684b38257ef4@salesforce.com>", "proba": 1.1193512250429194e-07} {"commit": "63d204f88bb079e8ec01c1e05f95a87bec89c17c", "message": "experimental model\n", "proba": 2.250700617878465e-06} {"commit": "a3c0b0dea526815d57e86bba9f26537b369c53f8", "message": "5fb0a13a-2d5f-11e5-baa8-b88d120fff5e", "proba": 4.917643309454434e-06} {"commit": "668c968b18df6643194fecb75a16abd38603eb95", "message": "Add comments to each machine type\n", "proba": 1.9890978819603333e-07} {"commit": "509691de20bad6af72ec4a49c07e2df0481090c8", "message": "Using shiva.dbtypes.GUID type\n", "proba": 3.5195942018617643e-06} {"commit": "00a691dd5c55f31f672e2ce0d82e048040301c51", "message": "Sync API of Sequential.evaluate() with Model.evaluate() (feeding from framework-native tensors) (#8694)\n\n* Sync API of Sequential.evaluate() with Model.evaluate() (feeding from framework-native tensors)\r\n\r\n* Add steps parameter\r\n", "proba": 2.569558716913889e-07} {"commit": "4ae25689aa1f728b609f992cb9146f382feabdae", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "7dc86e2cacc81598139c0f37e4f5d39592b20862", "message": "Clean up imports\n", "proba": 3.852727843423054e-07} {"commit": "b6870bc3d7a436a9e7dddac5e9deacef4dac5da3", "message": "[IMP] mail_server: In pack_message method, remove argument of debug=False. it is a useless in this method\n", "proba": 0.005405930336564779} {"commit": "41e15becf452b61544eb5e71c27f97b5a25541e2", "message": "98afed54-2d5f-11e5-81c1-b88d120fff5e", "proba": 4.078766778548015e-06} {"commit": "82a575b2a5fd37cabcf6aab655174aefa955a630", "message": "Add existing server reconciliation\n", "proba": 4.471058048238774e-07} {"commit": "621fbceae4d0efb57e9ac6bfb1647993e81ea72f", "message": "Added working sandbox support to g++ plugin\n", "proba": 2.153728360099194e-07} {"commit": "6ff6665e3dfde7073ddab84a8926d447b0940102", "message": "tidier\n", "proba": 2.5286485652031843e-06} {"commit": "935596d6036b700dbcea99f46746a75dfa39c140", "message": "Add log entry when opening a file via Qt event\n\nThis helps debugging CURA-730, and might also help debugging similar issues in the future. It's a user-triggered event so this warrants an info-level log entry.\n\nContributes to issue CURA-730.\n", "proba": 1.1277452927060949e-07} {"commit": "fd9f21f60187e68725daaf4b0082a7c9f9ee7bd7", "message": "Correctly check for automatic skip state setting.\n", "proba": 1.1665625976320371e-07} {"commit": "17409a3f958ab4821d538efae8ee4936478d735a", "message": "add provider discovery on registration #16\n", "proba": 1.1378722319932422e-07} {"commit": "00406dd5b16882f2e7cf616345eed041433a0cbd", "message": "Rename holder to have the same name as the column, to ease Julia conversion.\n", "proba": 1.0689340967928729e-07} {"commit": "acd8bea24fde9d495dd5ad6deae144f10f7cc570", "message": "9e4c6711-2d5f-11e5-b26c-b88d120fff5e", "proba": 6.299651431618258e-06} {"commit": "5ef033c0f53adeae36675033afcc619235d02a03", "message": "Fixed the bug where self.check_graph_for_ml is called with supervised=True (default)\n", "proba": 1.2195276610782457e-07} {"commit": "b7a0b155f70396792100e551236110fa3a4b55fd", "message": "accept any file as input to delays\n", "proba": 3.306828375571058e-07} {"commit": "c3e7d1d0b712ed012e4ff5ebedcb14a2c4852617", "message": "Fixed crash when selecting item under pointer. Workaround for pygtk gdk bug (http://bugzilla.gnome.org/show_bug.cgi?id=593732).\n", "proba": 1.0886539314469701e-07} {"commit": "a22fc30c63a2d7c640250aca08d77034e4f3dadc", "message": "Some text added.\n", "proba": 1.3036105883657e-07} {"commit": "f3a7448529607a7a87cd773d0a63ce3ab4dac429", "message": "rowprocsv: convert all summary fields to their respective types as well\n", "proba": 1.5864251281527686e-06} {"commit": "1de6a02911c92a1a72cf257ef029fa1ab8dacdfb", "message": "fix crawler huya about channel tag.\n", "proba": 1.179981623522508e-07} {"commit": "e0169ffdb60c4653015bb110df16632c8234f41a", "message": "Hard coding api key\n", "proba": 1.222246737597743e-06} {"commit": "5b7bff5cf09f3e056f449d3bb07c2eab7c9ebbab", "message": "imports\n", "proba": 2.234216708529857e-06} {"commit": "c00775c4889f00cad3dd753c8c3ac15c66d125e5", "message": "Bounding box will no longer sing first part of batman theme\n\nCURA-2963\n", "proba": 1.4489957322894043e-07} {"commit": "59973009d15c2dea5844a60ba536a41625016fb3", "message": "Do not crash on empty build/host/run sections\n\nfixes this crash: https://github.com/conda-forge/nauty-feedstock/pull/7#issuecomment-540670699", "proba": 6.03958142164629e-07} {"commit": "45da6a845a051375e8d5b71a0b44b60880ad6a62", "message": "Fix case no reforms are declared in INI file\n", "proba": 2.653953572462342e-07} {"commit": "274b7019d591c9e33e8fd26702dc43cb45a36376", "message": "739c67e1-2d5f-11e5-8290-b88d120fff5e", "proba": 4.603598426911049e-06} {"commit": "52d6503732bfce39f47bea4cca351cf352532161", "message": "Adds method to assign energies to event lists\n", "proba": 3.5356745797798794e-07} {"commit": "c7e683e6b7a6875d444c204dcf11356a8dc3de1e", "message": "cli: remove unused import\n\nSigned-off-by: David Caro \n", "proba": 1.2003825133888313e-07} {"commit": "9fbc179b835fb7e732e15e8e44898f67aee5f789", "message": "#26 Add access for server when new repo created\n", "proba": 1.1826291057559501e-07} {"commit": "cc72c31761517660ca1b66e1ed085119fec56e81", "message": "updating survey grabbing cronjob\n\nadding exception handling to deletion code\n", "proba": 3.724070438693161e-07} {"commit": "c04a3572db7f635651e3972470b0fa0b087b4bf4", "message": "set the perms on connect\n", "proba": 4.490329956752248e-07} {"commit": "a9376cffd1b19c43ecc068e8c579b6ab96d1e3d0", "message": "Fix logging\n\nSpecify the fully qualified name.\n\nContributes to issues CURA-340 and CURA-1278.\n", "proba": 1.0129231498012814e-07} {"commit": "258668b05ec0af1a62168d3c8cda6dd59ddebbfa", "message": "Add period parameter in /swagger\n\nAdded in formula v2\n", "proba": 1.9674170914640854e-07} {"commit": "c7647c031cfbb953c06599fe21c96e7b293a6560", "message": "869bd0f8-2d5f-11e5-a7d0-b88d120fff5e", "proba": 2.9709312912018504e-06} {"commit": "8e64ec5b0c7c9e2ed88a6d84507e8e544b555200", "message": "Forgot updated urls.py\n", "proba": 4.2527216237431276e-07} {"commit": "8429234aa7f8a81d2939be9cce3c29417f270b9c", "message": "Underscore\n", "proba": 3.947836376028135e-06} {"commit": "d3837fda2195d496b6a52d9d9b8d94f603b194c1", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "d7280b2df8a9a595cd9fec08285668fb8a9b69bb", "message": "better report\n\nSigned-off-by: tau <258141e8dfc33f0504b5218c32d74a10ab5e7636@gmail.com>\n", "proba": 1.1086698492590585e-07} {"commit": "a2c7b7cb8b75c972aa124afc3ce1c33fecf7e698", "message": "use generic file reading from content instead of specific StringIO method (which does not always work)\n", "proba": 1.0703315922455658e-07} {"commit": "c6bda903ae2e9de3e911589016d95c3f18a7e45f", "message": "8ce8d063-2d5f-11e5-a4c8-b88d120fff5e", "proba": 1.5852039723540656e-05} {"commit": "791b065cb770c742845b6f5c25521449d35f1acf", "message": "Updated notes, version to 0.2.1\n", "proba": 1.9975134080141288e-07} {"commit": "c35a88899b3d6de366f7790ba8a6b13139f598b5", "message": "\n\nMore linting fixes", "proba": 1.3048207847532467e-07} {"commit": "1a69a21cbebb8c0ab497e74431e906487555171c", "message": "Fix\n\n\nFormer-commit-id: b101e5e711b8fe605be121aed34adbcdec687c2d [formerly b101e5e711b8fe605be121aed34adbcdec687c2d [formerly a051da219f48628b8ee639b20d8d3d3965782d74]]\nFormer-commit-id: 3b5056ffae4de598bda0b22cdc290a67ead20a98\nFormer-commit-id: 421f16688d1d1e057c35778d94b367ef878ac79f", "proba": 0.9999122619628906} {"commit": "f79ab9ddcd5b6d29f85ad4c10de68e6533986818", "message": "Updated the DarwinLibraryLoader to attempt to load user-specified libraries\nbefore the system defaults and fixed situation where OS X would produce\n\"Symbol not found\" errors when loading the libraries.\n\n* ctypesgencore/libraryloader.py: Updated DarwinLibraryLoader.getdirs() to\n put the user-specified paths in front of the system defaults. Also\n updated LibraryLoader.load() to use RTLD_GLOBAL instead of RTLD_LOCAL\n for the dlopen calls.\n\n\n\ngit-svn-id: 397be6d5b34b040010577acc149a81bea378be26@59 1754e6c4-832e-0410-bb55-0fb906f63d99\n", "proba": 3.182352884323336e-06} {"commit": "399089f0af23a8ba1228bbdb8352e2d16ccf702c", "message": "82d8ece3-2d5f-11e5-83c1-b88d120fff5e", "proba": 8.50525339046726e-06} {"commit": "5d140090deb6f0d6be3d433d15d745b6e6c676a4", "message": "Replace a .value -> [()]\n\n\nFormer-commit-id: 709953ef8a2c6e77347ef8f706cf813522480359", "proba": 0.004013368394225836} {"commit": "2aa0cb6204917dc7400bf750035a5ddc32046a48", "message": "Changes in saving phone numbers\n", "proba": 2.300969526913832e-06} {"commit": "adce41b19c84f2de994d4ee8346b38f2c29ffaaa", "message": "Return the points too\n", "proba": 0.9997144341468811} {"commit": "0826d04d885ef81d43f4df6a476f88ae584ae7bd", "message": "Fixes rupture index splitting problem\n\n\nFormer-commit-id: 47009551c56fecb9fb47c926cbae915e2f010997 [formerly 47009551c56fecb9fb47c926cbae915e2f010997 [formerly 40636178ef43a98c4e0498885770aad66ca2ac79]]\nFormer-commit-id: df6a033d5bee5424d0565a567c41e39e9010df82\nFormer-commit-id: 13c7901aa3edf5e3116df186f1d964604d547beb", "proba": 6.233757176232757e-06} {"commit": "13af5618dcf7daf91804d7cd1a6fcb19cd0272d2", "message": "cems commit\n", "proba": 6.155243568173319e-07} {"commit": "d6956923ef1c0c88147805c2cadaee385b938f59", "message": "Add check in web user sync\n", "proba": 7.080857926666795e-07} {"commit": "08a854a466c500de444fb1b6cfe4055eac7c2f28", "message": "Added admisn test\n", "proba": 1.4017601301929972e-07} {"commit": "d41c2d36eb326c4b8f3105e08efa1fffe5e9718f", "message": "Small fix\n", "proba": 3.271289870099281e-07} {"commit": "d74e1e3451ae5205f4eda918dc7652b6a7503754", "message": "bump to cuDNN v8.0.4\n", "proba": 2.643326979523408e-07} {"commit": "ab47ad6905b0d90721a4d74e9116d7b2d1573d87", "message": "Make both ways to post follow same path\n", "proba": 3.4206020700366935e-06} {"commit": "d29ae60d38d530045c5a1f14c52308a2765b3193", "message": "Add missing Any import\n", "proba": 4.89716785523342e-06} {"commit": "830a66649f0f78eed636a79079b65459e57b5635", "message": "Updated docstring formatting in custom_feature_tools.py\n", "proba": 4.1187516330865037e-07} {"commit": "f7e5da5b5adae1bf8cac1fafaa13f4394bc8b110", "message": "remove unused nitter config too\n", "proba": 2.0351032503640454e-07} {"commit": "aeaf9944d33494bc85d3aed551cc3107c18a4cd8", "message": "Notes for next steps\n", "proba": 1.193615304373452e-07} {"commit": "e787e4981441198e2b015b1b4f4971fbc112c78b", "message": "Fix yet another stupid mistake\n", "proba": 0.0019030201947316527} {"commit": "012be03d06fe1cc599fd2f6fa62553593f258b57", "message": "fixed bug with caching of unparsed matches\n", "proba": 1.7968493182252132e-07} {"commit": "2fa03dcf58c5280928d23d2c2a085fadf7d7c552", "message": "Fixing mqtt reconnection bug\n", "proba": 3.9453794897781336e-07} {"commit": "8e4eb73a66d70eb1ffa7fa2315302bda9583a0cc", "message": "Adding server - nodecommunicator interactions\n", "proba": 2.1406394523637573e-07} {"commit": "1d6c260767a1a3102afdebfc6316b8348d24fa72", "message": "Removes metadata from ModelBase\n\nNext step is adding metadata to nova.db.sqlalchemy.models.NovaBase\n\nFixes bug #1119699\n\nChange-Id: I306a061e0b17660f612a111067ac618342f4ee99\n", "proba": 4.8348232439821e-07} {"commit": "a46d9192c2265d2abead3d0558e14951b37b994e", "message": "Worldgen Map Update\n\nOverride \"goto\" command action to generate new rooms when the given\ncoordinates don't exist, rather than erroring out. Add coordinates\nto \"look\" output for ease of testing.\n", "proba": 1.1992599979748775e-07} {"commit": "adeb4ccf5deaacc5233962be96c545aaf054339a", "message": "[9.0][FIX] stock_cycle_count: Do not propose cycle counts in the past.\n", "proba": 1.169067331829865e-07} {"commit": "7fdc62607a4b6aea7054fcaa734917ddcc8aff5e", "message": "6th times the charm\n", "proba": 4.2739125660773425e-07} {"commit": "8e71989c55936c4c333fd6e8d974b2c0b12ad0b3", "message": "import style\n", "proba": 5.988690645608585e-07} {"commit": "126dc669224eb621f9b5ef57214688e19791f8dc", "message": "Add delimiter to PatternableFieldType\n", "proba": 0.9987749457359314} {"commit": "93a90c76280b219f6f14e4f2956688707940470d", "message": "Fixes Delaware. Oddly iterlinks() doesn't work for its links,\nresulting in relative links we weren't able to download previously.\n", "proba": 9.712800874694949e-08} {"commit": "f273151a8f95b34362fa7b97b8b1cf7369c46a64", "message": "Truncate string in gachify\n", "proba": 0.9999849796295166} {"commit": "4fe43a05171168b3216eea5f5617671ddf2126cd", "message": "Fixup\n", "proba": 3.4217864595120773e-06} {"commit": "1bb8c762feb10aee273639e84e5db317bdcb4332", "message": "implemented translation on sentence splits\n", "proba": 1.2994791177334264e-05} {"commit": "1d04e69b2716de5a5c799218df9853761d9a89ec", "message": "Increase timeout for maven-index-checker command\n", "proba": 7.242487640723994e-07} {"commit": "630825b3a7afed20c5a63f2668e700622bc133eb", "message": "Fix _get_or_create_bucket to actually create bucket (#196)\n\n", "proba": 2.076001237583114e-06} {"commit": "a112e7d1d1a6d6808634ebe4184ba3f894ee15f6", "message": "pocs_with_mount removed.\n", "proba": 1.242681975099913e-07} {"commit": "ad4649028675b958709ed2c09fdf3f5b5a3ac11e", "message": "Add CORS headers to websocket connector (#911)\n\n", "proba": 1.2124837667215616e-07} {"commit": "48e366e5adb1284fcf1d964e038c7daf9b2c43a7", "message": "fix a small problem\n", "proba": 0.999955415725708} {"commit": "722042b70efdbf756b41b178916a74e60461f683", "message": "Delete the ncready error message after a short duration.\nForgot to have it do that.\n", "proba": 1.167808107993551e-07} {"commit": "a6712af4b6e9bb766dab05166ac1c985f104a3e7", "message": "Update production settings.\n", "proba": 1.304595684814558e-07} {"commit": "937f131be7dd2929d56710f9e44419faf97f64dc", "message": "bugfixes", "proba": 1.0761673365777824e-06} {"commit": "3f41b9eb245dce7d309e5c24061d6c4ecdde4120", "message": "Remove reference to old ShoreDROP\n\nThis was making the documentation generation generate a warning, which\nwe are trying to remove (and the module would fail to import anyway in\nreal life).\n\nSigned-off-by: Rodrigo Tobar \n", "proba": 1.2458455955766112e-07} {"commit": "77b97b0bb514985f700a7bb0ec642e15af73f3df", "message": "Changed the learning algorithm\n", "proba": 0.0011451265309005976} {"commit": "f066c373030e25e55e10be5188da41717fb065a9", "message": "[racf] fix pep8 pep257 complaints\n", "proba": 1.7829837872795906e-07} {"commit": "ebd6c66332373a67d130d12ddcc9e0e0dccc23df", "message": "2nd fix for no curl handle\n", "proba": 1.1481032657911783e-07} {"commit": "37b7ea1b449033b6b8518b923a82d9b26132501a", "message": "ACCOUNT_EMAIL_VERIFICATION = True\n", "proba": 0.999997615814209} {"commit": "ec817281111f4426ae26b96590bb9cdae4c4a288", "message": "Fix #110: pass unicode string to SetConsoleTitle\n", "proba": 0.0011874987976625562} {"commit": "0c432a51ee0a8e867b49060793cc5e74251b4e2b", "message": "Fixed color extraction for HSV, HLS and RGB formats and other fixes\n", "proba": 1.184911795348853e-07} {"commit": "b46dfa71c644cc06e8bf1f78e5773f9258a974ec", "message": "add exception descriptions\n", "proba": 7.728344826318789e-07} {"commit": "1022a34bf6259a2b634f2550e3d74524bb03e251", "message": "fix: Simplify conditional check\n", "proba": 8.400747901760042e-06} {"commit": "e0459db375dfc8aa228bfeda28befd9e26913996", "message": "Fix typo in log message", "proba": 0.003308527171611786} {"commit": "6d0d10b9a70264f2299a1ed33eeb206dae3dbcca", "message": "Fix out-of-bounds crashes and added help text for thread searching.\n", "proba": 1.0786954618424716e-07} {"commit": "7e0943345705f82cf66ceced291f88ed06447380", "message": "freaking out because git actually spoke to me\n", "proba": 1.1409865408040787e-07} {"commit": "35434cecc453fd2ed2ee92a3f42e770561d4d0a5", "message": "fixed that shit\n", "proba": 6.738217734891805e-07} {"commit": "497b499d629f54f848a421f3789f221229a46f33", "message": "Added simulate_experiment to DirectViewParallelizedModel\n", "proba": 1.2470056276470132e-07} {"commit": "626df74fce24c76eacb2613db9208d4f333ba473", "message": "Support not-json error responses\n\nWhen an error response body isn't a valid json, the content is used as\nstring.\n\nChange-Id: Id5c9e55e397c1a9f3516090343c1948c87e60ac9\nCloses-Bug: #1276638\n", "proba": 0.0006241531227715313} {"commit": "ea721071675c8cb8820aa80a46dc6dcb00b58ea3", "message": "Complete (?) support for With statement.\n", "proba": 4.4271649812799296e-07} {"commit": "01ae606f13be73698077e3d66110ad8538491b73", "message": "Fixes #9, accidentally didn't commit most recent version\n", "proba": 1.2541806881927187e-07} {"commit": "5f172472a6d7b03828c915fe1c7337f061c1bb13", "message": "add support for UserStatement node\n", "proba": 3.5784333363153564e-07} {"commit": "913c73b002cd559211789cf71ec6a457e9a71334", "message": "Dev version bump\n", "proba": 2.9143222946004244e-07} {"commit": "dfa4ad32b0428fe4834f110fd74b9b87ba096241", "message": "Fixed #6 invalid variable pwd\n", "proba": 1.3249356243250077e-06} {"commit": "8eea987163044df7df6ae9d4a4d03099f4ae1cdd", "message": "Fix the bug\n", "proba": 9.675887849880382e-05} {"commit": "4f91d0fb682e6e9cb02a6d6e817f6c91090b41d8", "message": "Bumping version to 1.0.1\n", "proba": 3.956067757826531e-06} {"commit": "9418a2e9a47013ebff3268bb9e3bb18b8b8459f3", "message": "Skip contrasts that don't have primary on left-hand-side\n\nAdriana asked that the code identify the \"least disturbed\" landscape\n(primary or primary minimal) and skip any contrast that does not have it\non the left-hand-side.\n\nFor now ignore anything that is not primary.\n", "proba": 2.9843437232557335e-07} {"commit": "3c6d19d0f5802ab1a97fb725da4b882d6ca7b952", "message": "Fix a dependency in migrations\n", "proba": 0.0011544004082679749} {"commit": "5fddedf9ea3280d4da0b73854b0cb5b44a2976f2", "message": "overwrite os_username from user\n", "proba": 3.4730932384263724e-05} {"commit": "d35a5d413f2cf290bcbc7cb4898a092ad8163e47", "message": "make notebook default for cluster connect\n", "proba": 2.9162239911784127e-07} {"commit": "d37728c9aad57d9d5a3fa82c7d22dc7423bb1e03", "message": "Reorganized to better handle plugins.\n", "proba": 1.1216657469503843e-07} {"commit": "ea75f3264914df49dffe93314c599e34fd147d23", "message": "Fix a bug in the SocketIO stream handler. On shutdown, it had a bug that prevented it from correctly closing connections to remote hosts. The unit tests have been adjusted slightly to trigger this code to test it.\n", "proba": 1.2186626463517314e-07} {"commit": "8e07aaccefa5b44ccc03fc0eceab00e478ac7f9e", "message": "PEP8 XML Translator\n", "proba": 1.4876006559916277e-07} {"commit": "f60c2099fe2830cbc1e8f6c64e5fe830e26cd144", "message": "Added '--ipython' option for interactive console.\n", "proba": 1.1317403192379061e-07} {"commit": "9d24c8e4a8e7eceeeac98b8f6459108456062829", "message": "add test mode for convtools_invitations\nadding parameter \"test\" anywhere will switch off group creation and invite writing - results will be displayed via bot response\n", "proba": 1.1954438150496571e-07} {"commit": "5d460e865b8fcb95007de2c394cb112bf3d51955", "message": "Auto stash before merge of \"master\" and \"origin/master\"", "proba": 1.0340643541439931e-07} {"commit": "1eb7529f2586051ae5fc6c7af6fdf0f9e7acc890", "message": "[Alias] Add grammar parsing error check\n", "proba": 2.5860521191134467e-07} {"commit": "4881bed441a79e5cedfcceb2a88edd08c2aa7e55", "message": "Flake8\n", "proba": 7.333250096053234e-07} {"commit": "5fe4353532348e21b3fe3459dd6c992374d2e783", "message": "mnt: catch AttributeError explicitly\n", "proba": 1.1542094398464542e-05} {"commit": "5b5b5d6d043d2591852f4e9e2a0485aa88fe09f5", "message": "Separate relationship into 2 lines for readibility\n", "proba": 0.0012271554442122579} {"commit": "9c19728d2ba9da18b7face1e3b97fe3012ecfbb2", "message": "Fix checking for args\n", "proba": 6.675098120467737e-06} {"commit": "fe1c186d30833cefd58afb4aab3fa9f1f175c995", "message": "facepalm\n", "proba": 6.856408435851336e-05} {"commit": "299a685d69705c74413ce7257de3e5aa5245ec47", "message": "attempt to avoid busy polling\n", "proba": 6.849480769233196e-07} {"commit": "b6c0198327447d7b8ad78afea076b2522a63e268", "message": "added stopping criterion to saved results\n", "proba": 1.6954312798134197e-07} {"commit": "e10513d44d7377d99939d06d5867e37e09cb9a0a", "message": "Fucking mess. This is where I choose to follow mvc principles\n", "proba": 1.3288644140629913e-07} {"commit": "920adf10fe93883921f53aaed3ecb63f462012d6", "message": "fixed superuser\n", "proba": 4.788714704773156e-07} {"commit": "70f4f29945d919475c22002f82c4ba6d97b55226", "message": "TestAbd: helpers to top of class, prefix with '_'\n\nTest Plan: $ ./runtests\n", "proba": 3.479684892226942e-06} {"commit": "2fd1b7d6ed3992956dfdcb42685d0b07437fb226", "message": "code improvements. Note, tried precalcation basis, saves only 6%, more time consumed in the transform filter\n", "proba": 1.2167116381078813e-07} {"commit": "f27a0c85ed3e000eb4a6ce2f6294081817399e47", "message": "src_fetch: raise exception when downloader failed", "proba": 2.06557024284848e-06} {"commit": "31c4be2a491cb52f3f84a7f27d854a2b0acff024", "message": "Added test case for wrong password.\n", "proba": 1.1708424807466145e-07} {"commit": "9ac954c2054c98b771a214fb455a6942c283675b", "message": "function instead of value\n", "proba": 1.4594414096791297e-05} {"commit": "8b509f56b7b900c1508c27d13aa5095b4c6185ea", "message": "[utility function] fix total debit/credit due to floating point issue\n", "proba": 8.57531267683953e-06} {"commit": "168f039a3867ffcf18bf76e79b563e2468d5af1e", "message": "Fix conversion quirks when using updated rpy2 conversion\n", "proba": 2.805468284350354e-07} {"commit": "a052f2b7c946d495a973a0f726430ea6bebe6aae", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "8dfa05c42e2fe9562b04ed22c79272b0c3146467", "message": "Add CLI interface\n", "proba": 7.592617521368084e-07} {"commit": "b2678c609f4db4e6876944d67ec879f6b9231b51", "message": "Make `pronto.logic.lineage` classes use the right `EntitySet` subclass\n", "proba": 2.629483333294047e-06} {"commit": "554d643847ace841ec5a03ab2b2014f119385ed6", "message": "Try to prevent psutil reading errors\n\ncloses #883\n\n\nFormer-commit-id: 90f662743653794786b220aae632dd155284b3ef", "proba": 4.109539304408827e-07} {"commit": "2caee958f069956652d58f28df2ee79e8c442b92", "message": "[IMP] account_multicompany_easy_creation: Improve set_product_taxes() function to update only records with taxes.\n", "proba": 1.1217321116419043e-07} {"commit": "f247cca407747a46c3fe1e0d5e6e7b4e8159a9b8", "message": "display name of village in report\n", "proba": 1.9906084958165593e-07} {"commit": "c0477d8062d894b33acd76272b46e189c7456948", "message": "Added functions to create maps of dust and stars\n", "proba": 1.2398753312936606e-07} {"commit": "645245402fdd7359b37e1fa874ead5dc2596b294", "message": "add repr\n", "proba": 5.3466133067558985e-06} {"commit": "049c9db6522d8fd6b8135a0daf98124e6f599ad6", "message": "\u0414\u0435\u043b\u0430\u0435\u043c \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0438\u0437\u043d\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u043c\n", "proba": 4.5812612370355055e-07} {"commit": "86f61b8e55bd44b6b0e046991c20bc5cd25957ee", "message": "Fix camera.options to camera.stream_options. (#32767)\n\n", "proba": 6.552672289217298e-07} {"commit": "65d9890bd99c31da735024ca1d10c7313fa4e3ce", "message": "Create output dir if does not exist.\n", "proba": 4.4676826860268193e-07} {"commit": "6ab14a37294def6f084b2206f2873facf069362f", "message": "Fix discovery issue with netatmo climate devices (#33040)\n\n", "proba": 1.3285755073866312e-07} {"commit": "ff6470d0e29955b6e6ceebcf280e4fa4ddcca3cb", "message": "add logs\n", "proba": 1.707098022052378e-06} {"commit": "59b49f9d20c0e7cd02e7a7df747a7a0ca2332d7f", "message": "add domains forward\n", "proba": 2.1250910720027605e-07} {"commit": "098616846da8ee85f6a9a02061e8e08e816161db", "message": "add hostname\n", "proba": 0.9985576272010803} {"commit": "ba5e7ed62d7b8a02223dac68d787982cf9221f87", "message": "Add 'API' to description of ironic command\n\nAn 'ironic help' displays information about the ironic command.\nAfter the usage part, it shows 'Command-line interface to the\nOpenStack Bare Metal Provisioning'.\n\nThis adds 'API.' to end that sentence.\n\nChange-Id: If41c326ab31a96894eccef0a37921945a1e21ecd\n", "proba": 0.9999992847442627} {"commit": "76e18cf1e404e059b36c43503dfb7a19a4d9b5df", "message": "fix advice bug for ripe and outside ripe object with mismatching origins\n", "proba": 2.6998301905223343e-07} {"commit": "4040fa4b1fd26fe05aa14ff5dfdacac3c0de5102", "message": "Add control over sorting.\n", "proba": 1.7566306098615314e-07} {"commit": "a49887c9e3247de73e16e1fe1c88456b674e62fa", "message": "Fixed wrong variable name\n\nsee #298\n", "proba": 2.485189440903923e-07} {"commit": "182ab6bfed47eb097cb0c6b57b3bdbece11f6d0a", "message": "store session if they are missing from the db\n", "proba": 5.853355560248019e-07} {"commit": "0697db0292404b10847cb89e5b50eeecc42fd1c1", "message": "Make fatal optional for system/preferred nameservers.", "proba": 1.43625598525432e-07} {"commit": "ea534ebc4ff5d85d3cfb1009613ad88383ae44a3", "message": "Add blueprint for identifier endpoints\n", "proba": 6.329686357275932e-07} {"commit": "c020c6ff246ed7789f7bdc11b6b04fa64d2e997a", "message": "Acerto no tratamento de erros no fetch_url e acrescentada critica caso nao haja conexao\n", "proba": 1.8583305916308746e-07} {"commit": "d03f6780a1219169b6e83e18c2a58b33f692ac29", "message": "test: give ebook generation more time\n", "proba": 4.753681423608214e-05} {"commit": "0cd4e4456eda0a3c7aabcabaa08bf24932b08969", "message": "add some more imports for utility functions and ensure all are using \"_\"\n", "proba": 1.2415803496423905e-07} {"commit": "ee15a6a4947aef6f1f08d6e21e538d13c049aa17", "message": "hardcode new users TODO change this\n", "proba": 1.1663861414490384e-06} {"commit": "e37e31bf281d318b852d1e61c5199f83333ea197", "message": "api/modules/products: return also categories when product is added\n", "proba": 2.796351736833458e-07} {"commit": "9bb5a2cc734da75518f660295446063e9601e25d", "message": "Fixed index not existing error.\n", "proba": 1.3680039501196006e-07} {"commit": "fb438ffbf45bc81941d5f83113a88045df600275", "message": "Check that the current screen is set before getting the index\n\nOtherwise, we'll just take index 0, which is usually what we want\nanyways.\n", "proba": 1.324312535189165e-07} {"commit": "edfcd8c7b6b82a0bba7aa0b638e6ae34ae12c3c0", "message": "Include an routine which prints a class legend of the 14 koeppen-geiger classes; finish using of map_plot for plotting\n\ngit-svn-id: a2babe56996d5ef2cfd262307688672f011c6e35@234 46f1e1ae-ddaa-4461-89cc-888b818d8ef3\n", "proba": 2.472490450600162e-06} {"commit": "8480325fcf9c6f1db3c31bd1c28e4606a7e540a2", "message": "a bit more fancy\n", "proba": 5.872321366950928e-07} {"commit": "2b49f0216a7b4cfced0374771f9a3134bd40d1cb", "message": "Add averaging to uvdist plots\n", "proba": 3.093328189152089e-07} {"commit": "6d8784b2bd963cc51d9bd74a5f9cefef09265a98", "message": "Update models.py", "proba": 4.731647038624942e-07} {"commit": "6c62b484596fc061316ab9b84823a0ba39c943bc", "message": "Update test_base.py", "proba": 2.3444861199095612e-06} {"commit": "1a22224d7a1cf7a0a65e60892e331350128f2425", "message": "tests correction\n", "proba": 1.1450277952462784e-06} {"commit": "dd2c8c5d510b1df383e575a624b40a9b6994ef1a", "message": "Parse chdkptp errors gracefully to display more information about ptp traceback. This requires this commit: https://github.com/meelash/chdkptp.py/commit/bace5e72642bbaf0a9e7db16f2aa1b6a8f2bed24 of chdkptp that exposes the PTPError class\n", "proba": 2.2571621229872108e-06} {"commit": "073bf3935109d3708a7b11b8f8dbf78eca72132e", "message": "userflow sync: some api changes\n", "proba": 1.0188927035414963e-06} {"commit": "0f6a36c3f05078f2c52513acfce3b2c8ae401bc2", "message": "Dates don't start with 0.\n", "proba": 2.0859535652562045e-05} {"commit": "130651a1f52618115fedfbf3b689e5b7ae9a778f", "message": "fix document\n", "proba": 1.95640586753143e-06} {"commit": "ce6c66d7c05cb641ddc29186c0a8ea67c65a15f3", "message": "Add a check for circular imports in experiment module loading (#4012)\n\n", "proba": 1.065026680180381e-07} {"commit": "c79b49286ef1d991e915543a675b74c256950d50", "message": "Fixed bug in posterior_properties\n", "proba": 7.679179248043511e-07} {"commit": "e159a719494abf00d4d570cd99f91661d3539761", "message": "SwitchImpl now uses new unpacking api\n", "proba": 1.2931796788961947e-07} {"commit": "557eda26f45c7e2a40f4d9744a3c2abf0d089ee1", "message": "fixing reqs for upstream\n", "proba": 1.551867541138563e-07} {"commit": "d5bdc9a0ef093cdd13864c36be72cb7b5bb2e1fd", "message": "Update sklearn_utils.py", "proba": 7.692255508118251e-07} {"commit": "88f43382943f7d5ed82facbad55da72c787a2113", "message": "codecoverage/bot: Add system check for robustcheckout and genhtml (#2219)\n\n", "proba": 1.0777165471154149e-07} {"commit": "249cba15e42cdc00d59ae41df6a7c6afcd77ba60", "message": "Revert \"changed prefix len\"\n\nThis reverts commit b8e406b62051e304d7334718fd118ed3e7e094d0.\n", "proba": 1.6736218810819992e-07} {"commit": "203217c17537633004bc132ee1df45728319ea1b", "message": "Add additional sensors to Plugwise integration (#36431)\n\n", "proba": 1.0278034778821166e-07} {"commit": "b52f8b4baac52eb248f313f2af97789adea5ed3a", "message": "removed language row grid (not needed anymore)\n", "proba": 1.1267368904555042e-07} {"commit": "de80d8e65c610700e6a6b39757ae3a8ad2840dbd", "message": "prepojenia Subgraph: indicate if node is part of query\n", "proba": 4.676872049458325e-05} {"commit": "4959561bde56d836a6f2c00d7974c696f44d26d7", "message": "Fix sensor statistics collection with empty states (#52393)\n\n", "proba": 1.2947394623097352e-07} {"commit": "c3dd02ecf6dde5fe8b126f464cbbc5d3dcfb8210", "message": " * kiwi/environ.py (app): Add global app reference\n (Library.__init__): Add better error messages and insert\n $prefix/lib/pythonX.Y/site-packages into sys.path\n\n\n", "proba": 6.982177751524432e-07} {"commit": "5abb46a80956d7772a291602108e200111461142", "message": "Tidy voluptuous. (#2946)\n\n", "proba": 1.2474434640807885e-07} {"commit": "d4ba9a137cd45954c1a6e318f379a60722437927", "message": "Add libav.mpegts to logging filter (#58937)\n\n", "proba": 1.0822276408362086e-07} {"commit": "b41ef26d6fc23e91aa6be9056932913788d285d1", "message": "first version ready to go\n", "proba": 1.2093565260329342e-07} {"commit": "c8b88219b7d923e6d404efdff9047b24a94ac3bc", "message": "rename config parameter to \"invert_logic\"", "proba": 3.317080938813888e-07} {"commit": "a61733fdf1526bae24b37a6a72ffeb83470f16a5", "message": "More cleanup\n", "proba": 1.3239740326298488e-07} {"commit": "be6addb6d3d730dd1ee25d2529fd891f670e7c1c", "message": "Added debug for problematic pickletype crash\n\ngit-svn-id: ad91b9aa7ba7638d69f912c9f5d012e3326e9f74@1067 3942dd89-8c5d-46d7-aeed-044bccf3e60c\n", "proba": 3.8730632923034136e-07} {"commit": "d3f0b7055a4e8b9972ab2bfe451d0f3ad8d9ce94", "message": "Show error if delorean-deps.repo/delorean.repo files are missing\n\nIf the baseurl config setting is incorrectly set in projects.ini,\nbuild_rpm_wrapper() will fail with a non-descriptive message, usually\na 404 error. This makes troubleshooting complicated, so let's catch\nthe exception and provide a descriptive error message.\n\nChange-Id: I06c4d50779575d4c3f762694ac313f6934224fac\nStory: 182\nTask: 463\n", "proba": 2.4362519980059005e-05} {"commit": "a2d27779885db11e645032ed0ee05dd7201b8814", "message": "Refactored method name.\n", "proba": 1.8306036508874968e-07} {"commit": "bd46a6130a896fa86ff1a86243fd030378f933e0", "message": "Prevent Synology Camera doing I/O in event loop (#34442)\n\n", "proba": 1.1883225425890487e-07} {"commit": "e553d5965df0c9477072f514be1842548259738b", "message": "Use same DMP thresholds as server.\n", "proba": 1.2323718578954868e-07} {"commit": "96bc50f0c2787aea11aa4f5824ab45471f121761", "message": "Add DashboardAPI.data_views() function\n\n", "proba": 1.5995096873666625e-06} {"commit": "e59d2bbbbf5b948dfe42177bbbca4edfb668a0cb", "message": "Derp, make it executable\n", "proba": 0.9999994039535522} {"commit": "66f30396d530950d33ce07dbb3792b96f80bb277", "message": "static_root now in .env too\n", "proba": 1.6803068092485773e-07} {"commit": "c081f54766d124a2a083862b6ec95348ec6ea6fe", "message": "update tests\n", "proba": 5.633767727886152e-07} {"commit": "fa30746930f129131ce2ea760cb46830badf1b67", "message": "Update run_tests.py\n\nAdded a comment to explain the reasoning of importing django nose after settings configuration", "proba": 1.5393503360883187e-07} {"commit": "fbe30c2311573ea8fa3409566cb661ac099a266f", "message": "testing to see whether issue #2 still exists\n", "proba": 2.6217611548418063e-07} {"commit": "fcef8dd8258eed0a12342f6e2ad7b4df9953fb2a", "message": "Tweaking some test settings again\n", "proba": 1.4503146417155222e-07} {"commit": "454a7b00000cd167dab2fbe5deafbe1c083d4116", "message": "Fix code to delete Java .class files\n", "proba": 8.661816650601395e-07} {"commit": "873e5038fb55d6e431c927ea9c6c32ff41500854", "message": "Update src/compas/geometry/primitives/polyline.py\n\nCo-authored-by: beverlylytle ", "proba": 1.2643211277918454e-07} {"commit": "f354787e1a45e5425747b20a131fd8f295f79e44", "message": "Adding changes to permit xmlrpc pushing of messages\n", "proba": 1.7301719879014854e-07} {"commit": "5bfb68e5a98f64c359f177828afdad9001a06287", "message": "Get number of weights for model\n", "proba": 9.226040447174455e-07} {"commit": "8b625dff7b5ea500baa2381559b38166e963e8f7", "message": "fixed syntax error in parse_cache_file\n", "proba": 6.659950031462358e-07} {"commit": "573795b1f0a0bfb591df9b03e8d46bfe2b9b9860", "message": "bugfix\n", "proba": 8.478961035507382e-07} {"commit": "6802609e1ee2ee9106a639ae7904bc9f1b906845", "message": "Fixing Kubos CLI naming convention\n", "proba": 2.3310509789098433e-07} {"commit": "5bf68bedc673f7669610a7ffa996247c3ca38bbb", "message": "in-memory map instead of ls\n", "proba": 1.5724756394774886e-06} {"commit": "771bb2127e77a88842f19e7fc7dded110fe21857", "message": "Oups.\n", "proba": 3.5033622225455474e-07} {"commit": "71bc5531fd07eb95d7ef85513dfe21048f7ad21d", "message": "runserver.py needed the specification of running it using python when directly executed.\n", "proba": 1.4463616082593944e-07} {"commit": "e6b7f521da3119f88ed353b4a7cb0c20c2b97aa3", "message": "change log level to info so that messages will be recorded\n", "proba": 1.7864509516130056e-07} {"commit": "612d000c27908116010985ffd35ff738449f0b16", "message": "backwards comptatible get_queryset, for Django < 1.6\n", "proba": 6.677497026430501e-07} {"commit": "e6e5ef9090950b5276f1a85ed03a2b57a0595f9b", "message": "fix the fix\n", "proba": 0.001822192338295281} {"commit": "a2f000891608435604ade51ff331eba826583590", "message": "New version\n", "proba": 2.1879993994389224e-07} {"commit": "33966bf1f7d6f6790306181b101655f80ad2fa6c", "message": "Ignore unpredicted writings\n\nAfter these adjustments it was possible to see a preliminary analysis of\nginger tool. Note that articles (type 3 on ginger) doesn't seem to\nexactly match our article.\n\nSpelling (SP):\n total items: 8702\n average precision: 0.7759188759931968 (std: 0.3230231712534087)\n average recall: 0.7977589177083546 (std: 0.31643593753558724)\n\n Summary\n +-----------+---------------------+\n | precision | 0.21374688279301746 |\n +-----------+---------------------+\n | recall | 0.7556755565351554 |\n +-----------+---------------------+\n\nCapitalization (C):\n total items: 6074\n average precision: 0.7470907870906864 (std: 0.35741922821141453)\n average recall: 0.7214203797128839 (std: 0.35572750052574303)\n\n Summary\n +-----------+--------------------+\n | precision | 0.2398425569440561 |\n +-----------+--------------------+\n | recall | 0.6970246280785098 |\n +-----------+--------------------+\n\nArticles (AR):\n total items: 5224\n average precision: 0.03449973398119962 (std: 0.1319533261528147)\n average recall: 0.08227092904543135 (std: 0.26220152982537787)\n\n Summary\n +-----------+----------------------+\n | precision | 0.003253517679435977 |\n +-----------+----------------------+\n | recall | 0.06687937170204933 |\n +-----------+----------------------+\n", "proba": 0.9988755583763123} {"commit": "990ceebb5ba73030819ddd09d5696506f0f865d7", "message": "back compat for s3 attribute of files\n", "proba": 1.6961007531790528e-07} {"commit": "0eb80de6e74f6bd72dafaa6b71b1063e4c811a56", "message": "Fix XSS attack -- nicknames aren't safe.\n\n\ngit-svn-id: 095a516e186c72f46b708383d0d3f28c2432e8a1@229 e30e9e8f-1b4c-0410-881d-6f13584adfe0\n", "proba": 0.001031001447699964} {"commit": "cba737a9d9ee7739ad26e3eb7446ebc592fa73f7", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "23a4a42a6826e75cf3d8d9ce9ee382c8903f8336", "message": "Fix admonition title styling\n\nIts parent wasn't set.\n", "proba": 0.00017075680079869926} {"commit": "e4721fecb401d33bcf41bc59d7d9003a711be2f5", "message": "Fix most bugs in !splits\n", "proba": 7.80644313636003e-06} {"commit": "bb468285a3e3ed4c4fb5798ba2872869181e519e", "message": "put temporary images in a separate subdirectory -- easier to manage!\n", "proba": 1.0472638223291142e-07} {"commit": "d44d0644bf6d73d1d32e55115e2463526a1427c0", "message": "Fix ENGINE_VERSION in mozc_version_template.bzl\n\nThis is a follow up CL to a previous CL [1], which should have removed\nNACL_DICTIONARY_VERSION, and other previous CLs [2][3], which should\nhave updated ENGINE_VERSION.\n\nNote that not updating ENGINE_VERSION is not immediately problematic\nbecause dynamic dictoinary update is not enabled in OSS Mozc. That\nsaid, the current ENGINE_VERSION is 24 and correcting it should still\nmake sense.\n\nThis CL also add a copyright header and license notice to\nmozc_version_template.bzl just in case.\n\n [1]: 5b9c1ed79e227c8e602dbfc91f003b334ec58bf6\n [2]: c4a2d4661a91ab8534afb40bba966036046f24df\n [3]: 25f3fcf564db7f59b5b381494f0a1d2db2473463\n\nBUG=\nTEST=\nREF_BUG=\nREF_CL=123078429,123191246,127786726,131517988\nREF_TIME=2016-08-28T01:31:07-07:00\nREF_TIME_RAW=1472373067 -0700\n", "proba": 0.00018639079644344747} {"commit": "28af714e9a8f4fda1c818f32b4ef7238c42b6ec1", "message": "first functional version of the exmaralda importer:\n- generates a *.exb file w/ an empty header and one tier containing tokens\n", "proba": 1.2970629370556708e-07} {"commit": "2dfb0610638efdee0e6df2eee3c02e63faf1a56d", "message": "Prevent `run` from overriding logging config set in constructor\n\nWhen creating the `Sanic` instance I provide it with a customized `log_config`.\r\nCalling `run` overrides these settings unless I provide it *again* with the same `log_config`.\r\nThis is confusing and error prone. `run` shouldnt override configurations set in the `Sanic` constructor...", "proba": 5.690400257662986e-07} {"commit": "aa782526c99831c35b0cf6c5639407905b997806", "message": "Refactored enum.py to use `ignored` instead of `except: pass`.\n", "proba": 1.1207568917370736e-07} {"commit": "d4e4b6de970f9db050236705908a70e7b14cff77", "message": "Add related_bug() to 1629110's test\n\ntest_update_attached_volume_with_nonexistent_volume_in_body has been\ncreated for bug 1629110.\nSo this patch adds related_bug() for knowing related launchpad link\nwhen the test fails on some envs.\n\nRelated-Bug: #1629110\nChange-Id: I4f11831c03bb19955b90dbb6dbb6a992c9ea41c4\n", "proba": 8.167858140950557e-07} {"commit": "aaeba20c1cb4beda889dcdc9cb739f0657a0f7a0", "message": "fixes to avoid birdie in correlator\n", "proba": 1.6137853720010753e-07} {"commit": "266b734a15c447ca23baf4890fa4a8b75afb41ae", "message": "Removed diagnostic message\n", "proba": 3.3398467280676414e-07} {"commit": "83b10c27b6cbe98d4232ce426d060194e223893e", "message": "Add a type hint for TestTerminal\n\nThis helps when running mypy on tests/.\nWe add the annotation as a comment for Python 2 compatibility.\n", "proba": 1.0231053693132708e-07} {"commit": "42d1e75ccd2a96b9d04037a68842cae86cbb7fe1", "message": "Update cache.py", "proba": 8.6949137312331e-07} {"commit": "d5bf9350782b82d97a9a195090d6fad27d2e798e", "message": "comment out UI test to try to avoid scipy issues\n", "proba": 1.3511613872196904e-07} {"commit": "7dc845ef116d5745dff4f95961e251c81dcad89f", "message": "[FIX] crm: fix mail formating\n\nbzr revid: odoo@saas-20090407101626-tnf07sl4nz2ahwc9", "proba": 3.483200146092713e-07} {"commit": "dcc95e4d13177b343bf0c9409f4b2f5e8a2015ec", "message": "Add events to user API\n\nWe can now attach events the the user API calls.\n\nCloses #1822\n", "proba": 1.818463601921394e-07} {"commit": "2237ac0e3539191a2cc451e4e8dc4d3a4eee660c", "message": "disable message deletion for normal bans\n", "proba": 4.804170998795598e-07} {"commit": "f8667f88fd7718ae29d4a3754ea9efc52bfbbbe7", "message": "Fixed remaining failing tests\n", "proba": 2.1431907271107775e-07} {"commit": "ccbc003a221cba8bbc23f5615beb56f0b2d022e2", "message": "[IMP] if we not set the uos then also it sets 1.00 in mo/bom now if we not set the uos then it will set 0.00.\n\nbzr revid: nco@tinyerp.com-20130702073106-bx3gw2fp1xqn1x9b", "proba": 4.925585130877153e-07} {"commit": "8f1c49f34a468d62ea1cd13b4d6af872d69827da", "message": "print Warning message for command line flags that have been replaced by phil parameters", "proba": 1.7490599191205547e-07} {"commit": "0fbe5762185ad1e7d9f328fc0a6c513b10a30c1f", "message": "Upgrade JDK repositories to Bazel 4.0.0 compatible version.\n", "proba": 1.0361531366243071e-07} {"commit": "15d652b1be40722d0e5f329d38b0598db9c5f8f0", "message": "hack in candidateset support for dynamic outgroup tho really shouldnt be necessary\n", "proba": 1.2872133936525643e-07} {"commit": "361f489415a11cb44e6d5c970ca20c48e2546259", "message": "Added support for targeting SublimeANSI\n", "proba": 1.4948093962630082e-07} {"commit": "628255d0d9d6f50964d7b22ba9d72308823e364d", "message": "Working on deadwood pool creation. Converting the C++ code to numpy.\n", "proba": 6.35547223737376e-07} {"commit": "09397e8b8627cb023d907f78e839f9fb6d861c0c", "message": "placed callbacks outside game object scope to allow for save game\n", "proba": 2.0989953952721407e-07} {"commit": "767f2a91b8fa7be52a65e66cc8e8895a7e6f135e", "message": "Support gif files, urls, and format\n", "proba": 2.1696061480724893e-07} {"commit": "92bd18951bfc60221d41f289eb6e4476b29f6829", "message": "fixing indentation and making the function 'collect_audit_errors' more general\n", "proba": 7.790290510456543e-06} {"commit": "e5b55937de7e03ca60cae10bc2c109220460eb13", "message": "Added 'self'\n", "proba": 1.230346583724895e-06} {"commit": "e4792dff6da5c57b3682b9bc7a3665f438017282", "message": "Board tests updated\n", "proba": 2.0192157990095438e-07} {"commit": "84f2dba400bbc6cfa588aa446bc2cdf46019070f", "message": "postproc works on jpg image files (to convert to png)\n", "proba": 1.245287251094851e-07} {"commit": "32dd2a0bbc1b112860c2884e49d882ceff295ae5", "message": "Added background subtractor KNN.\n", "proba": 1.1971859237291937e-07} {"commit": "55a41409f9d922bc56c97594b2bf99acb49fa811", "message": "fixes for iocp parts and better repr() for read ops", "proba": 1.5019283239325887e-07} {"commit": "c882530681f93f6a4b9cc2f5de5cc9c3199b8d1c", "message": "Update __init__.py", "proba": 7.178883242886513e-05} {"commit": "62a6e3a0cdb4d74a13e2249c662746f58e0757db", "message": "Fixed some issues with HTTP responses\n", "proba": 2.1725152521412383e-07} {"commit": "2b4bed6dbd864ce78e9300f28b05045c386cd248", "message": "Fixed #21476 -- Cache tests make an incorrect use of `HttpRequest`\n\nUsing `django.test.client.RequestFactory` solves the problem and cleans up all\nthe `get_request` mess.\n", "proba": 1.0455273979914637e-07} {"commit": "fe32e165e9804b5db17f6187a6e1b86cd62150ef", "message": "Clean code for reading and writing to Zoe conf\n", "proba": 1.267439415642002e-07} {"commit": "c440cf72bac9ba92b7286ce87407a740ee92464f", "message": "work on utils_box + tests\n", "proba": 2.512077799110557e-07} {"commit": "19514999707e0dfbbbaa1c5af7fa5e7d6dfc48e8", "message": "fixed huge bug with customcmds always picking first cmd in list\n", "proba": 1.5841997935694963e-07} {"commit": "1678a4bf1d9819909e9a29f53bea648302b1c216", "message": "minor pyflagger updates\n\n\ngit-svn-id: 4511b3d811903a91403bf66535cdd426db6c410e@412 7a03b35a-38c0-11de-8fef-1f5ae417a2df\n", "proba": 4.650601681532862e-07} {"commit": "d6a4f535ef4bdfde1c87e66266ee10241642971d", "message": "Fix redefining config from parent scope\n", "proba": 1.1761162568291184e-06} {"commit": "b7fbc1dc7ce535823bc724a36c953eeadde69db5", "message": "Nameable multiphase collectors\n", "proba": 2.9082949026815186e-07} {"commit": "ba6bf1227500dc31a971e68ac6b94b4e83cef2dd", "message": "Added the apply_handler code, put in stubs for the irc protocol event handlers\n", "proba": 2.1833177754615463e-07} {"commit": "d900e5c3f8d949e791b838e757d422923b06d98a", "message": "adding le face ball in find ball\n", "proba": 0.0010173371993005276} {"commit": "dcbb1620e141b400f13ec4d2d2f194110767c25a", "message": "Delay increase in Tx interval\n", "proba": 8.967950861915597e-07} {"commit": "a72a628374b89b7abccf6f0a9b5180f8afae4925", "message": "added check for auth and basic_creds equality\n", "proba": 1.902711659340639e-07} {"commit": "5b944f86583a7c28c89cef446ff96a9c996bcd94", "message": "Rename \"colour.quality.cri.TSC_COLORIMETRY_DATA_NXYZUVUVW\" named tuple to \"TcsColorimetryData\".\n", "proba": 3.7301665543054696e-06} {"commit": "d7998554c3094664456d5fef5bb6fcf9f02357f4", "message": "Roll 0.4.1\n", "proba": 4.095164058526279e-06} {"commit": "a8bd1695e44e56375a399a9c7a0af0b137922e24", "message": "[AIRFLOW-984] Enable subclassing of SubDagOperator\n\nNote this maintains an awkward name check\nfor backwards compatibility reasons.\n\nCloses #2152 from patrickmckenna/recognize-subdag-\nsubclasses\n", "proba": 1.1904413810270853e-07} {"commit": "9b62d844e24ae2960b4350ee9fabb76a0d2ba6a6", "message": "automate social security update\n", "proba": 0.0016995740588754416} {"commit": "d56431de5d0dbab22976a250c8179b925f1f7a0b", "message": "[MTG] Remove current card name from flip card name list\n", "proba": 1.9829575137464417e-07} {"commit": "ac00029789a9d2015930642c240469fa64fd9f1e", "message": "[MTG] Misc cleanup and small error message readability improvement\n", "proba": 1.2285089212582534e-07} {"commit": "dcf77f13b9b056a2ec21b1afd11a35fa4dc37ec8", "message": "[#566] Cleanup of rsr/admin.py\n\nRemove unused imports and old commented out code.\n", "proba": 9.714431570273518e-08} {"commit": "b4e19fb2f5d6361f46ecde8ff182f29b56d76c8b", "message": "Removes unused pushmanager_port from str formatting\n", "proba": 3.8606358998549695e-07} {"commit": "76fe2be1648519375a7f99a5444eaff55a90be6e", "message": "[MTG] Keep 'number' field and 'layout' field in more circumstances, to allow for more searches\n", "proba": 1.2548291294933733e-07} {"commit": "c64c4abbfc22d64e611d09a0a9b760d07137b656", "message": "[#3655] Change how the notes field is added for admin users\n", "proba": 2.1663765892299125e-07} {"commit": "e5043535a3cd86ac207190cbdb27bebca906b1d3", "message": "Fix #1197: dont display ctx on reg/mem changes (#1239)\n\n* Fix #1197: dont display ctx on reg/mem changes\r\n\r\nThis commit fixes a bug where we displayed context on registers or memory changes made by the user, so e.g. when user executed one of:\r\n\r\n```\r\nset *rax=1\r\nset *(int*)0x = 0x1234\r\nset *(unsigned long long*)$rsp+4=0x44444444\r\n```\r\n\r\nIt fixes it by just... setting a flag after the context is displayed for\r\nthe first time and resetting it on a continue GDB event.\r\n\r\nThere was a previous attempt to fix this bug in #1226 but it was rather\r\na hack than a proper fix. This current commit should be a proper fix :P.\r\n\r\nBelow is some more explanation of this bug.\r\n\r\nThe fact that we displayed ctx on regs/mem changes was a result us clearing the cache of the `prompt_hook_on_stop` function:\r\n\r\n```python\r\n @pwndbg.lib.memoize.reset_on_stop\r\n def prompt_hook_on_stop(*a):\r\n pwndbg.commands.context.context()\r\n```\r\n\r\nWhere this function is called in `prompt_hook`, on each prompt display:\r\n\r\n```python\r\ndef prompt_hook(*a):\r\n global cur\r\n\r\n new = (gdb.selected_inferior(), gdb.selected_thread())\r\n\r\n if cur != new:\r\n pwndbg.gdblib.events.after_reload(start=cur is None)\r\n cur = new\r\n\r\n if pwndbg.proc.alive and pwndbg.proc.thread_is_stopped:\r\n prompt_hook_on_stop(*a)\r\n```\r\n\r\nSo, since we cleared this function cache on each register/memory changes, it resulted in us displaying context on each prompt hook.\r\n\r\nSo how did we clear this function cache? Through the `memoize_on_stop` function:\r\n\r\n```\r\n @pwndbg.gdblib.events.stop\r\n @pwndbg.gdblib.events.mem_changed\r\n @pwndbg.gdblib.events.reg_changed\r\n def memoize_on_stop():\r\n reset_on_stop._reset()\r\n```\r\n\r\nBut why? We need this to make sure that all of the executed commands, when they read memory or registry, get proper new (not cached) values!\r\n\r\nSo it makes sense to keep reseting the stop caches on mem/reg changed events. Otherwise, we would use incorrect (old) values if user set a register/memory and then used some commands like `context` or other that depend on register/memory state.\r\n\r\n* lint", "proba": 0.00019736993999686092} {"commit": "93a32fbbdea91886ba06f090cd34c3ae677bcf87", "message": "Updated partner site admin.\n", "proba": 1.1711249925383527e-07} {"commit": "9a9a00bff2f61d08573f764012e389e7f8e5c6ae", "message": "simplify argument handling\n", "proba": 0.008921944536268711} {"commit": "b0045859d0457e9ebdd92f402d6e4a388a8ce1b7", "message": "Our responses may now differ based on the client's X-Auth-Token header, so must tell HTTP caches so with a Vary header.\n", "proba": 1.0243199000115055e-07} {"commit": "00bc7bf84e982a0617c0341fc39c1bde7aecabce", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "9a9ecbe5369d23b481df2b0e72cb34ab2ffb44d1", "message": "Whoops\n", "proba": 4.2974872371814854e-07} {"commit": "ba9fadde4e45e6053a6af05f69bbe470105b1558", "message": "fix id\n", "proba": 0.00010329499491490424} {"commit": "919961484e3aed025a8930e5bd51a4a60ca994e6", "message": "add top-level urlopen function", "proba": 1.7117217794293538e-05} {"commit": "83707f554b5005e87234f98c187217dd97b4d13c", "message": "Add plates endpoint + DB models\n\n/license-plates can be used to add a license plate\n", "proba": 1.9301165821161703e-07} {"commit": "218c51978257b900ed76509a257c8def5fa0cb56", "message": "enable SQLALCHEMY_TRACK_MODIFICATIONS\n", "proba": 3.462496920292324e-07} {"commit": "37466737abf654b89730da0f0b091ece61e605bc", "message": "Fix new DEL NFFG interpretation\n", "proba": 0.0016135997138917446} {"commit": "1981a2bad85b31ee46628e588e549e3bb0dab781", "message": "Avoid importing pstats unless absolutely necessary.\n\nIt's packaged separately on Debian for licensing reasons, so may not be\navailable.\n", "proba": 1.0292001917378002e-07} {"commit": "295fc64b8fac9852e92356f61ff4698e011c798e", "message": "Make xvfb e files end with .err\n", "proba": 1.159478983936424e-06} {"commit": "2f586591392d35fda8818007ee5557a65a4cd854", "message": "add short log to collect very high level info about lab runner\n\nChange-Id: Ia6a484af9602290484dc1b1f458d86604dccd8ff\n", "proba": 2.814979893628333e-07} {"commit": "3f39ca448e41c6d8e7d4dd3acf4cfc46dfed375a", "message": "added testcase for re-splitting in concurrent chains\n", "proba": 2.411111665878707e-07} {"commit": "cec064c574d7d902c09f8d0b90c6bb2e5d5d643e", "message": "adding an additional elif statement to keep the referrer (if exist) even after a save and continue submit\n", "proba": 1.3409892574145488e-07} {"commit": "7d8d2e398d58945138a55ea3490e4a8aa6411f56", "message": "remove the redundant + for multi-line str concatenation\n\nPiperOrigin-RevId: 363885426\n", "proba": 0.9985835552215576} {"commit": "a174ab93242acf6f7ed1f6bed54fc6bf457c7f96", "message": "lazily call libzfs_core_init\n\nOne of benefits of the lazy initialization is that there is no access\nto libzfs_core.so during documentation build or when setuptools are run.\n\nAt present not sure if ibzfs_core_init() and ibzfs_core_fini() should be\ncalled explicitly or if there should be some smart mechanism of doing that\nautomatically.\nThe current approach is not ideal as it may leave /dev/zfs open even\nif it's no longer needed.\n", "proba": 2.6825400709640235e-05} {"commit": "e6eda7c86f44d44be90e7be761554520377e7705", "message": "fix command_list_renderer tests not being run\n", "proba": 1.2456309832487023e-06} {"commit": "dfe1fe96a4b81da19e5c500571adeae7b00b291d", "message": "Fixing potential overflow in BatchMajorDecoder layer when training with packed inputs.\n\nPiperOrigin-RevId: 332502190\n", "proba": 2.0660240807046648e-07} {"commit": "476142bb23b725d6edd411eb0d88c96af4221d14", "message": "Fix UnicodeEncodeError ascii decode error in markdown filter.\n", "proba": 5.65493905924086e-07} {"commit": "76c28e60d372007ac46d7f1c8e36f6d1409cea56", "message": "fixing typo\n", "proba": 8.706026164873037e-06} {"commit": "64795110dc03fd977f7fe95b193db59f9436b582", "message": "Release 0.5.0 of vaex-core\n", "proba": 1.2499346269123635e-07} {"commit": "2f176a85ffc4dcc2c1f11d54983fd93458cbf241", "message": "Bump version to 0.6.0.rc1\n", "proba": 3.111880175765691e-07} {"commit": "ba1862478c7c53a3fd766eb07aa41b630516a347", "message": "Allow user with part.change permission to delete BOM items\n", "proba": 6.701081929350039e-07} {"commit": "604446f1438b87758d904d79df9a386c2b45babb", "message": "Add a new interface for the transformer encoder to only return encodings.\n\nPiperOrigin-RevId: 307038716\n", "proba": 1.4713554037371068e-06} {"commit": "cf1fa58aeb3ed686aad57238d9a60db981cae30c", "message": "Release 0.3.2 of vaex-core\n", "proba": 1.2051633291321195e-07} {"commit": "77c956a20ad4a6fcee3580a4fe550852bf010a94", "message": "Fixed: MemoryError decompressing large files\n", "proba": 3.6732183161802823e-07} {"commit": "bec845003d76bb93c50181c1f096cfc1fc939fac", "message": "fix defaults\n", "proba": 1.5032669580250513e-06} {"commit": "6e61b25e9fc91fa116e7a073bc0d42f90841b6f2", "message": "align_families.py: Only look for the mafft command if we need it.\n", "proba": 1.2876529353889055e-07} {"commit": "bee0834365182b4744462e5fbea51369009470dd", "message": "21434 CLI Make `alloc tasks -p` search across project nickname.\n", "proba": 1.0604577482808963e-07} {"commit": "1253fb8a73bd85a35ce2dff636fa27de2ca636ef", "message": "Delete sensorhub.py\n\nsensorhub.py is no longer needed - the code has now moved to SensorToCloud.py. All that remains are shared access keys and the code found in README.md.", "proba": 1.0133328487427207e-07} {"commit": "6f2e1cd9b7cbd99aca528d127497ec032375e63c", "message": "external survey functions\n", "proba": 2.764052453585464e-07} {"commit": "0e2848c2ff2e0512590c8dfb2c81727dcb504829", "message": "don't import visualize by default\n", "proba": 3.596628062041418e-07} {"commit": "0b00f54b77d7471caea39cedd6a7ca6e3ab8ab94", "message": "Always refresh preview on showEvent and add tooltip and statustip to explain clicking will force a refresh #33\n", "proba": 1.195007257592806e-07} {"commit": "8f61c3b01b311296dcfbdac9b84c5c39caeb60dc", "message": "Private messages search results if they are too long\n", "proba": 5.906272804168111e-07} {"commit": "010f61fdd8302104f90163ef784a15cc52b76f22", "message": "Add debug logging around trace fetching\n", "proba": 3.897510794104164e-07} {"commit": "f304b3d456ee854e87cc16d0319e8f1f82873252", "message": "document and restructure acceptance\n", "proba": 2.7041593853027734e-07} {"commit": "2637033899be75214f0cf3c28c64fa6c9f397b8f", "message": "Add dict support for bound statements\n", "proba": 2.0652912269270018e-07} {"commit": "ef1df1d750b9d1f62c44754b6fb776a1fbe275d8", "message": "Changed upload type to bytes/blob\n", "proba": 3.279630220731633e-07} {"commit": "4c8078634e05fc3f454317a887592707a2390f71", "message": "ArrayInfo\n", "proba": 1.1473364338598913e-06} {"commit": "fa8cd1deb20874a35edd7825543156b9dae65d68", "message": "some error checking\n", "proba": 7.664356189707178e-07} {"commit": "7751c51cae6acbe1777162503d8e99a9ac19eff2", "message": "Updated generate test population to deal with aging out of simulants\n", "proba": 2.243439354288057e-07} {"commit": "94957a317726baaa6c809e1b6bcdf9ddba839661", "message": "Updated from Brython Server: 12/9/2015 1:31:56 PM", "proba": 1.0993499444111876e-07} {"commit": "b2fde1845a655ac40c14fe82e5f8d3818407ccc1", "message": "update dev version after 0.51.8 tag [skip ci]\n", "proba": 1.0281505069542618e-07} {"commit": "c3f571b655b253d79d8b79fa8db239f3f404fc55", "message": "Change to make ob500a and clean\n", "proba": 1.4010623772264807e-07} {"commit": "0622780e222d9550baee8389a4146941381b1ccc", "message": "Ok, making celery.py a shortcut module was a mistake.\n", "proba": 1.2538889393454156e-07} {"commit": "8b4c0237a68f4c688cec231862eace5e38611f81", "message": "Updated from Brython Server: 3/21/2016 2:21:54 PM", "proba": 1.1334923044614698e-07} {"commit": "9166ebece91c9a674163cbf3c29fcbefb96dc1db", "message": "update dev version after 0.34.5 tag [skip ci]\n", "proba": 1.0289842578004027e-07} {"commit": "f6d8310db69c0a465c007f61e2ff5cfa8c622355", "message": "Updated from Brython Server: 3/7/2016 2:34:51 PM", "proba": 1.1459056992180194e-07} {"commit": "1adae9cf728647c144b4fcdae3f8e96622b2dae2", "message": "updating version again (Ted's prediction of a bunch of version bump commits is coming true...)\n", "proba": 1.0772561864769159e-07} {"commit": "21a3eb2edbe23735d5e1ad88d4d480758a6f9b81", "message": "Updated from Brython Server: 12/9/2015 1:22:56 PM", "proba": 1.1000127386751046e-07} {"commit": "dd870b246bd9f017e01d9a5f0f261aeab962b218", "message": "XFAIL TestCppChainedCalls for GCC.\n\ngit-svn-id: 4c4cc70b1ef44ba2b7963015e681894188cea27e@245407 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 2.8529620976769365e-06} {"commit": "fb19e956c79ecd6b1933685fdde18af7917ccfd7", "message": "add makedir if needed in write function\n", "proba": 1.5820874068595003e-06} {"commit": "669c73b6cca62383485e64c26c489eadda14c90a", "message": "Updated from Brython Server: 3/21/2016 2:21:18 PM", "proba": 1.1235886177018983e-07} {"commit": "45504147473e9f25f7beb498e3975b852d40e1df", "message": "Pass mode parameter in to_root\n", "proba": 5.433169008028926e-07} {"commit": "c1145c89466e80034de1653c6592c096e8b23a27", "message": "refresh NOW keeps acurate tally using multiple parsers\n", "proba": 1.6707927841252967e-07} {"commit": "0b9769356c730c803aa653a48c0e8183eecab974", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "c63dfec2f0bd5769c8af490ca3c15cc2d3a0edcd", "message": "Updated from Brython Server: 11/6/2015 2:38:43 PM", "proba": 1.0887453072427888e-07} {"commit": "44bef0b80f5cea66d32a1908479bfbbaa84b51fb", "message": "use relative import\n", "proba": 4.283076862066082e-07} {"commit": "224db93987030f6ef58211db0343aea4d576363b", "message": "tidy removing whitespaces from 'camera'\n", "proba": 0.0003273751353845} {"commit": "8cbd6d2bacf3947cabed82774fec63cbe46f1a71", "message": "Fixed autoseats. layout column_start_number keep in mind.\n", "proba": 1.2637799784442905e-07} {"commit": "2ed69d8ddb77081d9536f643b05475a8b111daaf", "message": "Updated from Brython Server: 4/9/2016 7:36:28 PM", "proba": 1.1094398644218018e-07} {"commit": "2aab419a27350ca32065b7e44dd09aa46e634562", "message": "plotting SHMR scatter for assembly biased runs\n", "proba": 1.3830370448886242e-07} {"commit": "a2e52ce21f0124d7d381ca09ceb9a67276fb5031", "message": "Support slice assignment for Hists\n", "proba": 1.5124960839330015e-07} {"commit": "5f0535f396e634d2e0d972ec512fad9247c06743", "message": "Add ulimit on remote runner\n\nDisable fixed random seed on tuner start\n", "proba": 2.759319670531113e-07} {"commit": "118cb279c0a4a634d662bc509fef07ae41d8fe1b", "message": "[CHG] rename ExtraOrderLineBuilder to SpecialOrderLineBuilder\n", "proba": 3.565064389476902e-06} {"commit": "e17adc641673dcc60dbe328cb9ac131a20d5814c", "message": "Updated from Brython Server: 10/26/2015 2:18:35 PM", "proba": 1.082048086686882e-07} {"commit": "f01cd1a197bdde465a116c173f69b9b638bfcc32", "message": "use function name or class name as base name of operator invocation\n", "proba": 5.378173568715283e-07} {"commit": "6dcef76839cd52d3cb843211c45a71601bbcc892", "message": "[RM-22118] osd: remove parsing of ':' notation\n\nSigned-off-by: Alfredo Deza <3f4d00ffa77e6441ab2d23c25a618925d2383b02@redhat.com>\n", "proba": 0.00011255101708229631} {"commit": "84876df29bf994d5bd85cff802bf3fdc7cc7bbfc", "message": "Removed the wrong import and renaming the test\n", "proba": 9.808563845581375e-07} {"commit": "018f53672bdb95917326dbc429a25a49831b5ea4", "message": "Only attempt to close the file. The ways of hdf5 file pointers are mysterious...\n", "proba": 1.031830123565669e-07} {"commit": "b49c4a1467c7627345c598aa29b642aea6e01eb4", "message": "Updated from Brython Server: 3/22/2016 2:54:31 PM", "proba": 1.1310670089414998e-07} {"commit": "cc9d99358274f44b28521eec0e8692cffafcaedb", "message": "Remove run_as_current_user\n", "proba": 1.6291809515678324e-05} {"commit": "9f719244194e6557160fcfd6e27886b618ea6103", "message": "Fixed error in saving sda, needed fk to sa.\n", "proba": 1.1182607551063484e-07} {"commit": "b5ee20a9dd93801735dff210d5c8384c44e0f886", "message": "ha - Sv, use area of interest\n", "proba": 1.0472678013684344e-07} {"commit": "371d9174335d42e1ca81c1634a97c7b88f23c0b9", "message": "Remove pylint warning.\n", "proba": 2.3140711391533841e-07} {"commit": "87c63d468e4f42c896beb485c21456ee47a844c7", "message": "Updated from Brython Server: 3/21/2016 11:10:49 PM", "proba": 1.0952791740237444e-07} {"commit": "c88f91971737a42c1e836494a4dcfef2aa56d767", "message": "get_dividend: remove adjusted argument\n", "proba": 1.059004534909036e-05} {"commit": "ed8c96cfe0964443ca3420a4c34d1f5b17ad6ef9", "message": "Disable alliance selection in 'enabled' constant\n", "proba": 4.376377546577714e-06} {"commit": "a4bffdf584083a25a9f54ecffc5955a4b1a329db", "message": "Few improvements to docs\n", "proba": 1.3360262585138116e-07} {"commit": "d32e71bcc45cf8d5cd41218737a58f2bba41dddd", "message": "sanitize titles in spam reports", "proba": 3.751164058485301e-06} {"commit": "15bf512f298332f079b75d12d57686e6b7d1ea00", "message": "Updating docstring\n", "proba": 2.1694668248528615e-06} {"commit": "dbf8041a0421724af380863f9c55572c562ed1f5", "message": "UPDATE: 3D superposing and centroid weighting\n", "proba": 2.1364095914577774e-07} {"commit": "b2205008fad7df5b7bf3aa89537fa633151af58a", "message": "handle different chromosomes\n", "proba": 0.00014143090811558068} {"commit": "82416413aeeb9a019ea3909bc788fc8b232ff18c", "message": "Simplify 'get_function_from_ast' in ast/utilities.", "proba": 0.0009619596530683339} {"commit": "0b36be3c154e8c9e3c15d8f0e28a72f2c32b7627", "message": "Properly implement checks for handlers of chaperoned continuation marks\n", "proba": 4.3038690478169883e-07} {"commit": "4389dbca55e3b125e830052d9bc455b8b3939dc5", "message": "remove unused line\n", "proba": 0.00016344693722203374} {"commit": "5e26ce23aa720c6fcd2ed4353b94fc67deb3e2fc", "message": "Bumped version number to 1.3.2\n", "proba": 0.0018620346672832966} {"commit": "82c7d7a171896f589d7340f7e63e9985f91cd660", "message": "Updated comments on init_program_tags\n", "proba": 2.1632138214044971e-07} {"commit": "d18c715f8f0d86d58fcec4df8710f0370ff87308", "message": "Fix core logging when no message on channel\n", "proba": 9.324019174528075e-07} {"commit": "87e45ced8f21190b687b8b43b5ed26888a3ba975", "message": "removing six package\n", "proba": 1.7159680282929912e-05} {"commit": "ea67eb55bc9584be27b1c0f5a2bde6729d814983", "message": "Close session after task execution\n\n", "proba": 1.7176474784719176e-06} {"commit": "18c8ab108a96d378bf417bf742d6f30bb67df117", "message": "bugfix\n", "proba": 8.478961035507382e-07} {"commit": "c2b8796532eccdc2d805620d697df7d7941a542c", "message": "fix compatibility of mongo adapter with pymongo 3.0\n", "proba": 2.4558380573580507e-07} {"commit": "5c5ef3371fa1300c336c3643fab58970da6d5529", "message": "Produce docker autoconfig logs (#1) (#223)\n\n* Produce docker autoconfig logs (#1)\r\n\r\nDocker autoconfig is not printing out anywhere the results of executing commands inside the container. This PR adds a new output to the rule that produces the log.\r\nExample outputs produced by an autoconfig rule:\r\nTarget //tests/config:ubuntu-xenial-autoconfig up-to-date:\r\nbazel-bin/tests/config/ubuntu-xenial-autoconfig-layer.tar\r\nbazel-bin/tests/config/ubuntu-xenial-autoconfig.tar\r\nbazel-bin/tests/config/ubuntu-xenial-autoconfig.digest\r\nbazel-bin/tests/config/ubuntu-xenial-autoconfig_log.log\r\nbazel-bin/tests/config/ubuntu-xenial-autoconfig_outputs.tar\r\n\r\n* produce message to debug errors\r\n\r\n* resolved review comments\r\n* added print message in rule that shows instructions for reproducing\r\nexecution of docker container. Rule prints out (example):\r\n\r\n== Docker autoconfig will run. ==\r\nTo debug any errors run:\r\n> docker run -d bash\r\nWhere is the image id printed out by the ubuntu-xenial-autoconfig_extract.tar rule.\r\nThen run:\r\n>/ubuntu-xenial-autoconfig_install.sh\r\nfrom inside the container.\r\n", "proba": 1.5947687643347308e-05} {"commit": "0cefa2c5635dd336eb09bb0fdd0fd0cfbd55043c", "message": "Docs update\n", "proba": 4.795579116034787e-07} {"commit": "641bc0596211cc6cffcb437157f9c9b8624e49a7", "message": "creating request_from_master() function to check and see if a request appears to come from the master\n", "proba": 2.484400454250135e-07} {"commit": "ad74ec7f7c7ddf689103473b090d3551467ea04c", "message": "Add code to strip '\\r\\n' characters from input file\n", "proba": 2.721700411711936e-06} {"commit": "6c3395f794997a85be472f2127dcdf70d2119d99", "message": "add quiet-syntax. Untested, yay!", "proba": 8.504779316353961e-07} {"commit": "f240d5ffaa0d794b9c66259592c01badbdb2e8ba", "message": "- Fix texture size args\n- Preserve clear colour\n", "proba": 2.0591140525993978e-07} {"commit": "065cc3e4be6ffa97159fc0de39923325b8e4530e", "message": "Be sure to send stripped version for reply autocomments\n", "proba": 1.234023017104846e-07} {"commit": "954ff1d038c8c7144f2af5f4c57dcffa6dc61eae", "message": "Docstrings for pyglet.text\n", "proba": 9.750990557222394e-07} {"commit": "ce0e4c4d7586db7061ce2864506bc60c88cb3339", "message": "Update RacketLexer to Racket 6.5\n", "proba": 1.8433239290516212e-07} {"commit": "d412db7e2bf2d68122f4794292dfeec653766aeb", "message": "Manage race condition with Join updates\n", "proba": 1.2290736606246355e-07} {"commit": "48893c8a06f3e73489d39784564f491ab1083cd6", "message": "Simplify our projection logic; pass in the language when downloading\nkalite data.\n", "proba": 1.1491395213170108e-07} {"commit": "bc35db451e1164c3928aae96275c0675f04a4e79", "message": "Add loop for json_exp\n", "proba": 1.2948080438945908e-05} {"commit": "b7f5f27dfb41d2de99be4594c3564a62400248e1", "message": "Remove a debugging print in the MatlabSessionLexer.\n", "proba": 1.458602412185428e-07} {"commit": "58556e80bb9f7ef73d214d91fd074505275bd838", "message": "Add test case for perturbing Benzobisazole structures\n", "proba": 5.409009986578894e-07} {"commit": "1e19795ef9e268131b21bde832d7fb787b993a8f", "message": "Remove unneeded queries\n", "proba": 7.860086952860001e-06} {"commit": "85fa727b360c57d715ce96a7217d1d0265a7687b", "message": "Actually set total_files flag on items if there is an associated file", "proba": 2.1118096071859327e-07} {"commit": "b49fded3ab8a3707328978a09ea39e5f0a926ba3", "message": "Adds event to transfer.execute in the transfer test\n", "proba": 1.0212157803834998e-06} {"commit": "648324a7c71d1a6f29b7174d7df9ac6da80f486b", "message": "standardize formatting\n", "proba": 0.03484823554754257} {"commit": "e1d60c41a8253968502860cba087c9defee7915b", "message": "line long\n", "proba": 1.286272981815273e-05} {"commit": "fc1442c510c5fd3562638a5069637f5f35b3be5d", "message": "Lower default analyse_text result of Octave lexer.\n", "proba": 1.1635471253157448e-07} {"commit": "ddfd81c29f6ea3a463aea78679815714647b564f", "message": "changed parameter ingestion\n", "proba": 8.345254514097178e-07} {"commit": "fddb2549cf55c1dced209b61093b7ce89c9d759a", "message": "Debug log when worker threads exit\n", "proba": 7.263231509568868e-07} {"commit": "cf73e245b4fc09affed6a8c7fd2d1ca4bb6f18f6", "message": "More docstrings.\n", "proba": 1.379091116859854e-07} {"commit": "6c831aba74f1f1165c6708ca36ca725ffbf23e0f", "message": "Fix for Python 3.4+\n", "proba": 9.9792996479664e-05} {"commit": "2264351238950c40bb487857f469a27dc43a7242", "message": "Fix silly typo\n", "proba": 0.9999992847442627} {"commit": "4e66eb3a7d15481ba1b67466b360886f63a05259", "message": "Add missing GAP keywords\n", "proba": 0.9998958110809326} {"commit": "d7c0b921784d2013bdc7edc412de42c5bb840fd9", "message": "switch repos to optional second parameter\n", "proba": 4.1720343801898707e-07} {"commit": "d0445cda52677b0854eb8d892f715bceea3360a4", "message": "Add IDGenerator class and update() function to DataObject\n", "proba": 1.916238119292757e-07} {"commit": "6c73ce075883ec6488237a99688b5dc8630c701f", "message": "Update docstrings\n", "proba": 7.15487487923383e-07} {"commit": "04d84179277011563eec0b368b609d74e6c1de25", "message": "BUG FIX: Previously first_samp was added twice to blink event detection\n", "proba": 1.8740134066774772e-07} {"commit": "c95d97d1d6e2c689c1bb13ec085dfc9ad7a3f3f2", "message": "neaten\n", "proba": 8.569831493332458e-07} {"commit": "5e36c92795f8b32830294b3bd3675373ae9f50f5", "message": "#413: Handle numbers that start with a dot\n", "proba": 9.835176570049953e-06} {"commit": "5371616ac50ae1543f7e5c76450050356481f395", "message": "checkin: add hint when newpkg factory-foobar fails due to missing factory\n", "proba": 3.097443084243423e-07} {"commit": "271f82c5062dfbbc9749099cc593a436b6b6ec90", "message": "Fixing getattr where should be dictonary access.\n", "proba": 1.487012042389324e-07} {"commit": "9d2b3807b7acf59f2df02fb464f9e7b97970ce3f", "message": "Editing defaults to match mne-python change to API for picks\n", "proba": 2.3337334198458848e-07} {"commit": "c7fe42bb666ab3010a560507da79c100068118e2", "message": "Changed some variable declarations in entity class.\nAlso entity now extends object.\n", "proba": 1.0187668664229932e-07} {"commit": "4b55b3ceb9e119f3555bb904f0f4712613c47e4c", "message": "Standardize the entire multi-line string to use no `r` string prefixes\n", "proba": 0.9999178647994995} {"commit": "fe403172b4965743537fe9e8e57bf8e0ff5b5093", "message": "getFiles defaults to true - don't getFiles unnecessarily\n\n", "proba": 1.9391568457649555e-06} {"commit": "847aa985375809bde35fc145d3b265adadf9f915", "message": "Updates controller to handle properly with requests.\n", "proba": 1.0488970048072588e-07} {"commit": "98ce55ee4283af2f86c34ddc056093d58375d78e", "message": "Minor changes to dtype access in compat\n", "proba": 1.4784345125917753e-07} {"commit": "f9167454aa4da18457d56b68be8e8575b7646eff", "message": "Update spot_decoder.py\n\na fix", "proba": 6.133732313173823e-07} {"commit": "63f429afadde8c7cebb088e34efc7ff0bd17e54d", "message": "packaging: setup: handle ssh selinux context\n\nRestore ~/.ssh selinux context if selinux is enabled\non the system.\n\nChange-Id: I4ffe0a5f5509a74318b73ee2c4d72cb2bd9a6ddf\nBug-Url: https://bugzilla.redhat.com/1034786\nSigned-off-by: Sandro Bonazzola \n", "proba": 6.230603162293846e-07} {"commit": "ac437029100769f1a5eef70ef8c47b050ce49fbd", "message": "Allow colons in rst directive/role names.\n", "proba": 1.2978139807273692e-07} {"commit": "bdc19ae65067f252ead88a38d57f23e9d5db0b1e", "message": "cache hasTroves information, avoid doing costly set difference operations on\ntuples, and make better use of trove caching for a huge speedup.\n", "proba": 1.0885459289511346e-07} {"commit": "2b5773b3502cfcad539466588b24f317cac9c350", "message": "support for reusing filters from a larger table to a smaller table. e.g. Ybp to Yp for PCI query\n", "proba": 1.7573646005075716e-07} {"commit": "6cb3824bf4dc2782e5231460582b2a4ff21ec18a", "message": "allow png files as images but skip the annotated.\n", "proba": 1.1052495096919301e-07} {"commit": "fd7bac0f2df49f34ee3e19b7aee60b1eb1d53b12", "message": "nxm: fix NXM_NX_REG\n\nNeeds to handle NXM_NX_REG_W.\n\nSigned-off-by: FUJITA Tomonori <93dac1fe9c4b2a3957982200319981492ad4976e@lab.ntt.co.jp>\n", "proba": 1.2312769115396804e-07} {"commit": "14c9905c1bab14f1964ecb37ee7fccd349bdcecf", "message": "Changed Cursor visualiser stalk to start at subject.\n", "proba": 1.0246403547853333e-07} {"commit": "6deb048c988a6b22c2ed151fd460353620c277a1", "message": "jsonrpc: fix storage domains detection\n\nThe storage domain list is now called items in jsonrpc\ngetStorageDomainsList response.\n\nChange-Id: I9e41f6d9f5cc64c687c49691801938fb0f969a74\nSigned-off-by: Simone Tiraboschi \n", "proba": 2.4053792003542185e-05} {"commit": "f8ab6b70302a682153c384a4a338b2e974c9c567", "message": "Renamed ui_zoom property\n", "proba": 3.343154446611152e-07} {"commit": "978854fdf91823ef457cb804e981cb46dcb31e85", "message": "Add support for embedded python in Vim scripts\n", "proba": 2.812282957620482e-07} {"commit": "9a6a4690bf49ecc1015cb2de53ee440c21f7b104", "message": "remove trove schema from --info, it's duplicated info from conary version \nbasically\n\n", "proba": 1.250361520988008e-07} {"commit": "89f0205d215ba2e3747a909e604b21a9f0abd8af", "message": "add tags in json[p] output\n", "proba": 6.791851319576381e-06} {"commit": "3dfe47715c948647e41fbe062a87e2b349c83b12", "message": "lets not be too fancy\n", "proba": 6.54376094644249e-07} {"commit": "2962cf950667c8085072e2b20287bdcdc0c4eb42", "message": "Scene._scale is now defaulted to (1.0, 1.0) instead of None\n", "proba": 0.9996834993362427} {"commit": "6ab82c473ae563ccb6f233985852df356d29164f", "message": "Add quick analyse_text for reST\n", "proba": 1.1662782526400406e-06} {"commit": "d2980326cc72df6c30ea92a2f1d4887f47d95cd0", "message": "__trackhub_descriptor field\n", "proba": 8.36137496662559e-06} {"commit": "a7e8cf30bba62d47e4bf25cf50ba15e00decb410", "message": "Split MONGO_INCLUDES by comma\n", "proba": 0.00421812292188406} {"commit": "e517d9291a2f1b6677f5814fb299f70c018bebfc", "message": "Adding new comments with MathJax and BABIP\n", "proba": 1.4426778705001198e-07} {"commit": "4fce1afb72839fe3f2cd72a9121e78e55b444b3d", "message": "Add method to calculate nlml and its gradient.\n", "proba": 1.1243689357343101e-07} {"commit": "41d93ec79ce8d41ece2952f76e04ddb34ba9da09", "message": "get_project_data_file_path at pipeline configuration manager\n", "proba": 6.936568297533086e-07} {"commit": "106991cb1989c9b6784d172a08337d69d3abea8d", "message": "Better invalidation message\n", "proba": 9.498552572040353e-06} {"commit": "b084f0876f65925acc50fd920d37f87e32ef7a6e", "message": "more Mark specific fixes...\n", "proba": 1.1539705013774437e-07} {"commit": "9af2d7b17095ac22dc47213c676c2ac3e87cf20b", "message": "Altera\u00e7\u00e3o para ambiente de produ\u00e7\u00e3o\n\nEm produ\u00e7\u00e3o o arquivo de configura\u00e7\u00e3o fica em /etc/OdooImporter,\nem desenvolvimento podemos ter outros locais dependendo da base que\nser\u00e1 acessada!\n", "proba": 1.1801751753637291e-07} {"commit": "214422a833ef86bf056a553f30ca3500d86eab82", "message": "Fixed evaluation of Content-Length header\n", "proba": 2.293233336558842e-07} {"commit": "d2fb2e7950677edbfc6b83b3760bc55cd47a3458", "message": "mnist-mod: remove duplicate print\n", "proba": 3.6518707929644734e-05} {"commit": "228fbd4f39b35f7cc742b8a1cc5c76c9289164ae", "message": "Add team members to OpenSpending export script's dataset.json\n\nMaintaining a list of team members is good so wherever the data is\nimported, that place can then keep team member information.\n", "proba": 1.6136684166667692e-07} {"commit": "5d39016b648a421202418db8896fb466ed157bd1", "message": "Excluded facts\n", "proba": 0.9994028806686401} {"commit": "320e9d1a48ea58bb28836f0556b9d414185c2cb0", "message": "Added snmp template functions to pyhpeimc.plat.system\n\nTodo: add tests for snmp template functions\n", "proba": 1.8492505660105962e-07} {"commit": "4eafd482c820f84659d25b9e44bc8db4246d6cd7", "message": "Fixed the path to maintenance.html\n", "proba": 3.3910185948116123e-07} {"commit": "7ce1a26e5938a9bff3b64b6963d74836eaa9afa1", "message": "Fix typo\n\ncloses #5440\n", "proba": 5.434836566564627e-05} {"commit": "5c5a22c0bb24201a28c9123d5b1c6cef6057a6de", "message": "TST: make stats_check more palatable\n(cherry picked from commit 2beaad9)\n", "proba": 1.082008864727868e-07} {"commit": "3f2fc0f5e8b013f92e9bc9b0a91fb86faee6a66d", "message": "minor code cleanup\n", "proba": 3.0314905075101706e-07} {"commit": "8ca979417c1efcb8f0e810544d91faa373dd18af", "message": "pacing\n", "proba": 3.0411206353164744e-06} {"commit": "2d128dc8c2fb5d25ace663c9959d381aa19bb1e5", "message": "Remove pointless check for output.\n\nThe process function won't be called if there's no output!\n", "proba": 9.972370207833592e-06} {"commit": "660dc92cf8e91680094ac3bc4402f07751849acb", "message": "[RFC] Only check minions that are missing (#34917)\n\nRight now, we all ask minions for a job, regardless of whether or not\r\nwe expected them to return a job. This changes that behavior so that\r\nwe now only ask the minions that we expected to return but did not.\r\n\r\nQuestions: Will this have bad side-effects for syndics or multi-master?\r\n\r\nOr, are the valid use cases for a minion returning a result that we weren't expecting?", "proba": 2.3707964658115088e-07} {"commit": "174253ae079ffbe1254da3a8d6b3048ba8b96374", "message": "added pkupdate, deprecated update and setdefault\n", "proba": 1.5928181085200777e-07} {"commit": "3158f38a6bd44cf6f3e30ba68939070dbffddb1e", "message": "Show not-returned minions for all match types\n", "proba": 1.337209170060305e-07} {"commit": "19f17045cbde94529ba20db06b9402ec2d2758b1", "message": "documentation\n", "proba": 8.078399105215794e-07} {"commit": "c6c9f0145fd715203ce4c5bbaf7ba527e3f95b62", "message": "Fixed pylinter warning + remark about commented check\n", "proba": 1.1139987776687121e-07} {"commit": "3cfb82cdd4fbbd9fa6ac692197a51765514ab8aa", "message": "Fix silly error\n", "proba": 0.9993243217468262} {"commit": "fe885aeae3c83cdd717624521485575a72b28c89", "message": "[svn] docs\n\n--HG--\nbranch : trunk\n", "proba": 3.2461545629303146e-07} {"commit": "7869bd09c3d440fc0b5f8675a7089223b43a18c1", "message": "[Cython] Fixed implementation of absolute error tolerances in unit tests\n\n", "proba": 1.1883860651096256e-07} {"commit": "474f578f4ba28d2c2b7b6c2cdf8c0254e401b310", "message": "added apply_filter method to IIRFilter class and updated loudness method to utilize IIRFilter class instead of older methods\n", "proba": 1.2348506572834594e-07} {"commit": "de7a8c3301c18171835d6c241b66e137197e8ce2", "message": "freezer: refactor the basic algorithm\n", "proba": 0.9999964237213135} {"commit": "58a9959a8ccc040f5521376792d01eeeb8afd59e", "message": "TECH Bug while receiving non text/json response content-type\n", "proba": 2.2989155468167155e-07} {"commit": "174787850c3764832ebf9f5f9b191ca65aa2aa13", "message": "tests validate new SREQ system, all zmq req calls are wrapped\n", "proba": 1.282679278347132e-07} {"commit": "89f7dbf788e353cee633082f0724081d537cf7d1", "message": "cosmo nwchem workflow\n\n\nFormer-commit-id: 0be41609564b615c512dd72a94c6ae2222355137 [formerly 6d7068146c3f3e990065023477afa08061fe40c3]\nFormer-commit-id: 6f60c092c0dc40cd319fd98ef38b0ab2ffc05b0e", "proba": 1.6062907661762438e-06} {"commit": "a830a6e819edcebc737799836c5d936540984cb9", "message": "m/selinux.fcontext_get_policy allow long filespecs\n\nThe previous logic of matching the output of `semanage fcontext --list` did not\nallow for filespecs that were longer than 49 characters. This was due to the\noutput of the semanage tool not conforming to the expected output.\n\nWe used to expect that the after the filespec would be at least two spaces.\nHowever, with long filespecs there is only a single space separating it and the\nnext field (the file type).\n\nThis modifies the regular expression that we use to match the line to accept one\nor more spaces as field delimeters.\n\nHowever, this causes problems when we attempt to split the three fields into a\npython dictionary. We cannot use the same logic as previously of using the field\ndelimeter as the file type field itself can contain a space. Instead we use a\nseparate regular expression to parse the line into its component parts.\n\nFixes #45784.\n", "proba": 2.744910716501181e-07} {"commit": "916a3409511acc6643e99bf92359e2d19fed4abc", "message": "matproj.snl: set pybtex strict mode False (>=0.18)\n\n\nFormer-commit-id: 07d14b6402b13faadfec620b9451e0f5e720ecea [formerly e6229f55f9ee46e31730e5bb90d020ea28350042]\nFormer-commit-id: 5f3cec5a3197dcf66413928e910781c90b8a4c2e", "proba": 0.00042681346531026065} {"commit": "b5cff17f77d702b72c0193102eb6610929d0d377", "message": "service: SUSE is not based on sysvinit anymore\n\n(cherry picked from commit dd1ec387bb34c72db9a3241c4c345743a75439ef)\n", "proba": 1.905788025169386e-07} {"commit": "acb75bb594a650cc87ecfe1d4c3b5ef952d46cdc", "message": "Two FIXME items left\n\ngit-svn-id: 42ad62ba9e2e9b70a1463076fc28ddb0d0c9fb87@1419 15d7aa0b-6f1a-0410-991a-d59f85d14984\n", "proba": 5.542289613913454e-07} {"commit": "5d31309ba9397c0872ef6893faba77695160254a", "message": "Fix pep8 issues.\n", "proba": 1.3148715538591205e-07} {"commit": "6eaf0e796cffeb3916bbd73744a08431a645d23a", "message": "Tag reproduction birth control.\n", "proba": 1.2799311832623061e-07} {"commit": "314af4c08e066d1256a4e9abfe1560de0e80cf77", "message": "PM-518: fixed all flake8 warnings.\n", "proba": 1.0184948706637442e-07} {"commit": "ccfa7226dd6c1e46f69abe5310a00ac2facd681e", "message": "Added raw prefix to regex string.\n", "proba": 1.3762256401150808e-07} {"commit": "8606e5711d90a150bf99b83320d3cf0dc549b98f", "message": "Fix excpetion handling and add logging configuration to SGS\n", "proba": 1.4777268120269582e-07} {"commit": "a791ec88b011a2dd1443cd0301de1e536ed4e921", "message": "Fixed set_trigger call in oscilloscope defaults\n", "proba": 2.7972666316600225e-07} {"commit": "5e225d0e0b231dab1c09ac8e5cedd831d1fb61cd", "message": "When failing on gitsetversion, report for what\n", "proba": 1.4217016541806515e-07} {"commit": "ad9793ab7a92e7ebac1c307b4ae5f49ba87b6608", "message": "Dont quote pre and post execs.\n", "proba": 1.0539205419490827e-07} {"commit": "211997bef4597fc58ed37a4fd494b401ceb22241", "message": "Create pkg list with pkg_resource.add_pkg\n", "proba": 6.763372311979765e-06} {"commit": "e453b9c5e327fa77df35a5ff0a4bd9e613cd692a", "message": "Implemented the first mcnp() method.\n", "proba": 2.1084710510876903e-07} {"commit": "e2c71a48904848544b04288a2f2e422c42b73203", "message": "use float timestamp values instead of strings.\n\n", "proba": 2.6132838115699997e-07} {"commit": "b362406cd777d4f7a805db05723724d783088354", "message": "Introduce some more constants.\n", "proba": 1.5289653276795434e-07} {"commit": "5133d8c9bc143455f7de762136c936adbf6dca03", "message": "Fixed some lint\n", "proba": 6.734260864504904e-07} {"commit": "35c4b0fb1a67aabc06504cb5f08fc1d8b8c48f75", "message": "Fixed .text() missing\n", "proba": 1.4201231124388869e-06} {"commit": "d55a78e30e53f50dc1d55d8fe3573a4baa179fb6", "message": "Basic card number functionality.\n", "proba": 1.3289404421357176e-07} {"commit": "aa167350b27557bab1a816bdc0a80febeb712a0c", "message": "System / Routes / Status: missing inet in route delete. closes https://github.com/opnsense/core/issues/4721\n", "proba": 5.309158837007999e-07} {"commit": "52d4977dcb2d68f3a0d0c2ca74ef9da957ac7b97", "message": "sumar visualization\n", "proba": 7.148273084567336e-07} {"commit": "af4cb3a2c983872b7e5c3d5358c0dfc279c6c583", "message": "Don't remove the .svn directory when doing a svn checkout\n", "proba": 4.841462555305043e-07} {"commit": "c4577e5ef9e3c95365291eab8199105e052449ba", "message": "bugfix for file output\n", "proba": 4.702509954768175e-07} {"commit": "3ec09bb9a7b5bf9298e994df4b806fd36c9b6efe", "message": "use temp table for thr\n", "proba": 2.4936412046372425e-07} {"commit": "3642ccf7935487ddc6b4158ddcd07f981f425f07", "message": "Create split_nodes_at_headers function\n", "proba": 7.474601261492353e-06} {"commit": "1038117abfe46073263f23b0bc6930cebd420070", "message": "add ion tests\n", "proba": 2.709714408410946e-06} {"commit": "31576271822f7f6bde8820ffe65b47b9832ff24f", "message": "fix: dev: Adding try sentence to catch exceptions when a rabbitmq consumer was already stopped.\n", "proba": 1.5932845087718306e-07} {"commit": "f19278f9f1c7714a0c91357d7e683aa42569189d", "message": "Making salt.output.yaml_out python3 compatible\n", "proba": 0.0011354910675436258} {"commit": "936a5685efe4a8891f340f73fe291eb46c01b042", "message": "fix globals in launcher\n", "proba": 3.1700972158432705e-06} {"commit": "133a62022c15b764ef01614e63563fe21e25c635", "message": "Update link", "proba": 2.2702458579715312e-07} {"commit": "1db12d74d4fd7dc9a9ff5c099fba5dacc323d4d2", "message": "what is going on...\n", "proba": 1.73472045617018e-07} {"commit": "9febe63010a145867395a977cd0d9b4934a219b1", "message": "Chromium: Recognize anchors\n\nChromium implements AtkAction for anchors (unlike Gecko). Therefore, use\nthe absence of the \"jump\" action rather than the absence of AtkAction to\nhelp distinguish real links for anchors.\n", "proba": 1.3213139027357101e-07} {"commit": "3f428333c9d1585ae6f772f13863323c9f3783e7", "message": "Deprecate `env` usage in favor of `saltenv`.\n", "proba": 1.9439899290318863e-07} {"commit": "90e84743581e2ce7c8afd1517f5b63418e720e9c", "message": "Update __init__.py\n\nAccounting sorting unique_combine_rhymes after dedup in order to account for behavior of set", "proba": 8.748178856876621e-07} {"commit": "4116402ba98641c0b8305c71606cad0ca862269e", "message": "Adding clarification to error log\n", "proba": 3.699260844314267e-07} {"commit": "ae8752343b4297a70c045aca879b9639a6d2aa6e", "message": "TestHDF5Deserializer: add test_string", "proba": 1.3670575071955682e-06} {"commit": "1710021c0de98743c26cafe0fbd7a1b03d286620", "message": "Don't sort when sort is None\n", "proba": 0.9999980926513672} {"commit": "61bc9732c5b193f0ea0c5da9198ce6bb8bb4ae41", "message": "Update test to new split generators\n", "proba": 2.2572085356387106e-07} {"commit": "e27f6fb939fe3c023abe4b976c11bc9d2355a78d", "message": "Fixed issue with args.\n", "proba": 1.1036821945253905e-07} {"commit": "2b8c362660925fbb64e38639663ee861fbd3d791", "message": "Standalone runing of fake_webapp\n", "proba": 3.157607011416985e-07} {"commit": "14ddf27ad41cc18bc9e698ec7b016505429b6730", "message": "Removed the code in tf for conv2d. (#383)\n\n", "proba": 4.44501347374171e-05} {"commit": "2940bdbc68230cf3895e8e80f4db76bdd8865c2e", "message": "#7 clean up\n", "proba": 2.137705763516351e-07} {"commit": "1aa9be5df650dadcf930bcc923befa6c6609b1b6", "message": "dynamic-bus-scheduling: Changes in Look Ahead - Estimating the number of required bus vehicles.\n", "proba": 1.1388166853976145e-07} {"commit": "cebde9c4733521b5a40c76d5166db854a77fdfbe", "message": "Web: Fix regression from language-related changes\n\nDon't adjust for language for character and word text boundaries.\nThe results are presumably in a single language.\n\nFixes #229\n", "proba": 1.3577222262028954e-06} {"commit": "f6eea88d676276fe5a271b0dac9b6a63bdfa3125", "message": "make pydsl compile on py3\n", "proba": 4.155277508743893e-07} {"commit": "aed4c01101bf5c0635a60d256b216bd3048af3af", "message": "Replace asserts in test_tree_libs.\n\nassert_equal causes pytest to hide error reports.\n", "proba": 1.339639510433699e-07} {"commit": "9c35b8f6b467accc88de80cf0cccdf9e95fe3881", "message": "Tweak formatting\n", "proba": 7.2050937660606e-07} {"commit": "a054f1d147ac17e13a1cb29e5a05d3a483c7170b", "message": "Clarify skel_setup parameter documentation\n\nRenaming environment_file parameter to environment\nclarifies that the argument is a dict, not a path to\nan environment file\n\nChange-Id: I51cfd7650c9da08c9250c52e7f80581c968bb5f7\n", "proba": 5.087842509965412e-05} {"commit": "e96e005a859d4592fb3da8c696e03df2b4e1b7ed", "message": "add a test using boolean values with __in operator\n\nPYTHON-596\n", "proba": 0.8854694366455078} {"commit": "e19664f39250233cf837422a6a59576efc699c5c", "message": "PEP8 fixes on tests/rti_test.py\n", "proba": 1.3117504238380207e-07} {"commit": "0f1de46f9fc42914c8303e79dca2f82d4520a281", "message": "Remove nVidia fixtures\n\n", "proba": 5.38401877747674e-07} {"commit": "32bcaddb5d535d5d8f60a4d4804de56fc60d7d39", "message": "Add protocol docstring in FederationBaseAuthPlugin\n\nThe docstring was missing. This patch fixes that.\n\nChange-Id: I4b3f3de3fa4640011f6b75fc09449dca4ed9afaa\n", "proba": 2.3670696464250796e-05} {"commit": "6a6695436150dbb6f8b987a21e96a9cc13e40b68", "message": "Logging to a file .ec2_launcher.log\n", "proba": 1.46889078678214e-06} {"commit": "af70e22c17f6c935d46503d5cd484b23f2dbdd3b", "message": "criada query_pedidos_filial\n", "proba": 0.9999873638153076} {"commit": "7925e8704433534657ea5aeb7664dff68cd6ddd6", "message": "Grudgingly add an inline implementation of relative JSON Pointers.\n", "proba": 1.025993654479862e-07} {"commit": "d087ed06703a7744a7606c39dca3b8cee2bbd338", "message": "Fix bug in our workaround for broken Gecko text\n\nGecko's text support gives us inconsistent results for strings that\ninclude a hyphen. If we split on hyphens in our workaround, we won't\nbe able to find the current word when on a hyphen.\n", "proba": 1.2735375776173896e-07} {"commit": "34d580c300caa0ffc0fab2a7c430fd17521362a3", "message": "Making salt.search.__init__ python3 compatible\n", "proba": 0.0009615261224098504} {"commit": "1b22f890d319f5df9f63795596e6844426c8255c", "message": "solid pure\n", "proba": 9.430428349332942e-07} {"commit": "3abc86dee4c4e5b5177e31abb74651b879788d51", "message": "GIBS-908 File names for staged MRF headers now based on HeaderFileName\nwhen available", "proba": 1.0924312476845444e-07} {"commit": "2dc55798628e93e8d16e0fc57e27596a8035f4d7", "message": "Return content from standard PDU AND DIMSE logging handlers (#544)\n\n", "proba": 1.0539265815623367e-07} {"commit": "1bd836ae9fcd8cb3f050851ffad2aed7dcf34174", "message": "print montior information for pair in demo program\n", "proba": 1.2726052034395252e-07} {"commit": "bd49a7f60dcef0f0610f211ccd7ccddfefa54350", "message": "changed scoring\n", "proba": 2.1863504571228987e-06} {"commit": "bcb58eba02b37866c130c0cb1bcd0ac8a278b5f5", "message": "Refactor blockdev to use blkid instead of lsblk\n", "proba": 2.258793472265097e-07} {"commit": "749ce8a9902b43b2161a3274286d58e289487f0c", "message": "fix typo ' ' -> '-'\n", "proba": 0.9999994039535522} {"commit": "c46fe6314afa062dffe1d27e5304727da4d843c8", "message": "Add comment.\n", "proba": 1.4271081738570501e-07} {"commit": "0af5ed644c40aca8df7521f99aa04cf624c0e4b9", "message": "Fixed recursive service import\n", "proba": 3.956566558827035e-07} {"commit": "030b4debd21b0e68def79dc832ea3605086841cd", "message": "Upcoming version of docker-py expect a new format for binds.\n\nDocument it.\n", "proba": 1.0076125533942104e-07} {"commit": "17deca60798cddd5d8b72bda6b05b03b6a4dc8b4", "message": "Spelling fix ('interferring' -> 'interfering').\n", "proba": 3.0223795874917414e-06} {"commit": "b2c3bc3c986d5d732bc441eca511ae95ee6b1dc7", "message": "skip another broken test\n\n\nFormer-commit-id: 8776e61bd5851d0aa170dc23e25909fc242c95d3 [formerly 99ba54df04f2a9dd13f491f130409d663ec650d0] [formerly 99ba54df04f2a9dd13f491f130409d663ec650d0 [formerly b98853751e8bddfd8b1b6698a062b91e84d046e8]]\nFormer-commit-id: a0e04649e385830f8f83e418729e7cb1c9cff290\nFormer-commit-id: f5b75b5f8bf8ced073cfa14737734f99144b22b4", "proba": 4.194201210339088e-06} {"commit": "11d284fa39737d68e2f2789442c2b74f22da9ad1", "message": "[FIX] Specific module order installation to run the tests.\n", "proba": 1.0280074036472797e-07} {"commit": "b27b54da5cd5083e71a8d683af043f36dfea5f9a", "message": "Removes SraRunInfo class because it is not needed.\n", "proba": 1.1130515531476703e-07} {"commit": "d9c4bd8ae9aea84d79db946694346fecece8cd8d", "message": "Remove unneeded import\n", "proba": 1.7259792457480216e-06} {"commit": "79734ef8da7dcfcf096a895143658a731c746b1b", "message": "Accepting `__env__` as a keyword argument is no longer required or aceptable\n", "proba": 4.671815077017527e-06} {"commit": "73e6dfb9e54a80bec552af9777b8f9403003581c", "message": "[MIG]l10n_es_dua_ticketbai_batuz: Migration to 12.0\n", "proba": 6.819734153395984e-06} {"commit": "a3af4708aba37018f851befa727ca6525e715004", "message": "Update generate_course_tracking_logs.py", "proba": 1.8513785107643344e-05} {"commit": "e61bfe041381fe83e37b7225c0d1bdc7e13b30b6", "message": "Check validity and ownership of p2th address", "proba": 1.3395627718182368e-07} {"commit": "9840c5035cd01717afa940c6c565f17bb640b72a", "message": "Adding scala support to jupytext extension\n", "proba": 2.6031102606793866e-07} {"commit": "390765806152dfd60feb9b5eda1076bd6f941313", "message": "minor method cleanup\n", "proba": 2.017189189018609e-07} {"commit": "bd2bd3f59f841b05f8ed7c315f8bdba17d304b22", "message": "adding more extensive read netcdf grid tests.\n", "proba": 1.0600209776612246e-07} {"commit": "d2abbc02a91ab26d8bbfdcbf8798f994b885052e", "message": "Fix segfault for PyQt4 copy/paste functions", "proba": 3.8963884207987576e-07} {"commit": "615ec87796fdc17e639ef42e83d50af4e770122c", "message": "Update tnrs_handler/bin/tnrs_adapter/MSW3/MSW3_adaptor.py\n\nUse python grep", "proba": 1.0587702490738593e-05} {"commit": "1860f4d99efe7ddc2085d517395662cf03832e84", "message": "Trying the radical solution again for windows\n", "proba": 2.2977341984642408e-07} {"commit": "5b23591288930a53eeb5896faa1ff553832ac055", "message": "added permissions to node\n\nSigned-off-by: Mike Corrigan <15fd0f1234246d4a1f1b43c02974353dea24d3de@motorola.com>\n", "proba": 1.2778833990978455e-07} {"commit": "fa7f71d8599800fa5b54c2a2696f9793865a7481", "message": "Modified paginate response to dummy values\n", "proba": 2.3889396061349544e-07} {"commit": "fa9468ddf43bc173a70b473a97a7598e709f9cf9", "message": "Get only messages sent during this test.\n", "proba": 1.0869214861486398e-07} {"commit": "e64d45817b850c26f55b2629a4681c99cbdeb869", "message": "Removed an import of trace module that doesn't exist anymore.\n", "proba": 1.056444318692229e-07} {"commit": "c3ab9a55708a7cec35ce99671a3435928b512e9c", "message": "correct the Account assert attribute name\n", "proba": 0.00022338080452755094} {"commit": "e05a78ee19c0e44a5c5f8cb87d53c5136186fce0", "message": "import OP prevendo campo dep\u00f3sito\n", "proba": 6.407769319594081e-07} {"commit": "c17349286ddc12e11f3ec12583fc9b3636d29770", "message": "Docstrings\n", "proba": 2.0079487512703054e-06} {"commit": "e49c1cb5b12ced7c845618807aa6d112a6f203d0", "message": "updated domain name for user\n", "proba": 5.040334372097277e-07} {"commit": "d3e12ab23f1797b15168ef3177b3db854fe935f3", "message": "Cut mem usage of pruner helper in half by not storing unneeded objects.\n", "proba": 1.1241695574426558e-07} {"commit": "2788d065cc01c12c643a51c0bd67cea2afcfd324", "message": "query quant_estagio group reescrito\n", "proba": 0.002342257648706436} {"commit": "cc459dac1cfd055b5db18584237e82bcbdb90603", "message": "Add --source and --key options to karabo-bridge-serve-files\n", "proba": 3.3474009342171485e-07} {"commit": "3de8af47ac4271f9a93eb8d4a051a8ee7c8bbf3a", "message": "STY: whitespace\n", "proba": 0.9985087513923645} {"commit": "6274ea972fbf06b543999e3604c9331c6e461833", "message": "added on devel notes on the threshold definition devel\n", "proba": 2.443213986680348e-07} {"commit": "92e0a161ca7206d9a70583ee5d17dbac829856b7", "message": "Add force_active option to inputs\n\nThis is mainly for debugging purposes.\n", "proba": 1.4279440563313983e-07} {"commit": "70685d2809945f0b3f409f0ccfe2e0d8af8b9f63", "message": "Add a simple filter interface to RunDirectory\n", "proba": 2.4240665652541793e-07} {"commit": "21c11e6fa68bf066c02435308a1bf25e578dcb9b", "message": "Daily work autocommit\n\ngit-svn-id: 285608342ca21a36fbe1c940a1767f009072314d@789 9cc54934-f9f6-0310-8a8d-e8e977684441\n", "proba": 4.6293791911011795e-07} {"commit": "76c11395ef1ab245d71fa0081c94da4d91e988d8", "message": "devilry_group/tasks.py: More cleanup when iterating files and adding to archive(DRY).\n", "proba": 1.0584370357946682e-07} {"commit": "ca0e5e100f123b57dfdf59d44607314bada4adc6", "message": "Remove this until it's fixed properly.\n", "proba": 1.3052863323537167e-07} {"commit": "def34a491a0cef25a887576cb3885205d0cd8af8", "message": "Update security context schema\n", "proba": 6.030844588167383e-07} {"commit": "2fa8002f284b30e85f8f68e78325117cfcdd845c", "message": "Tidy link up anywhere first, then swap with written question number second.\n\ngit-svn-id: 285608342ca21a36fbe1c940a1767f009072314d@9280 9cc54934-f9f6-0310-8a8d-e8e977684441\n", "proba": 0.0020065084099769592} {"commit": "c49c8ab91a80bcf8795c128a5795441b7c825725", "message": "tests: Improve test case base class\n\nAdd a number of new methods and improve the start/stop of server.\n\nThe --noreload is particularly useful to avoid fork of manage.py and\nmake stop_server() work.\n\nSigned-off-by: Fam Zheng \n", "proba": 3.573631772724184e-07} {"commit": "06be18fc8431004e60ff7e83e30bbd5a0a83ef9c", "message": "Some tweaks to tsa.py.\n", "proba": 1.0981784726027399e-07} {"commit": "80621940faa53d7366b1e3af078b440b604ba407", "message": "fix errant curly bracket in SGE jobs module\n", "proba": 1.8484888641978614e-07} {"commit": "1dd9809aaeaab958acd847ae29b4de87c79668fe", "message": "nblint: Add inclusive language check for TensorFlow notebook docs.\n\nLink to Google Dev Docs style guide for inclusive language: https://developers.google.com/style/inclusive-documentation\nNon-exhaustive list but easy to add new words and recommendations.\n\nRequest from OSS community: https://github.com/tensorflow/tensorflow/issues/42168\nInspired by @heyawhite's Write the Docs presentation: https://alexand.us/wtd-a11y-slides\n\nUsage:\n```\n$ python3 -m pip install -U --user git+https://github.com/tensorflow/docs\n$ python3 -m tensorflow_docs.tools.nblint --arg=repo:tensorflow/docs \\\n --styles=google notebook.ipynb\n```\nPiperOrigin-RevId: 326032194\n", "proba": 0.01976511999964714} {"commit": "07c4accc061e751617d4187dc22178822cfc246a", "message": "Changed the parameter to the method create_logout_url() and create_login_url()\n", "proba": 0.0005749790580011904} {"commit": "54ff456e9c00723f9e77e52cba050a528deec48f", "message": "VACM contextName memory leak fix followup\n", "proba": 3.723665713550872e-07} {"commit": "cc858824b6f02e4cde4f905a50c32036a1757da9", "message": "Added bold markup for categories in adv. preferences\n", "proba": 1.7908342897499097e-06} {"commit": "b10fb06abcba06aa74cda88da3c7e91d5905a426", "message": "Added cross entropy code\n", "proba": 1.9664004469177598e-07} {"commit": "4c71865ea0e25a5e922cfa6187c695c5d52a221a", "message": "Add a comment\n", "proba": 1.9470159884349414e-07} {"commit": "229d0d75e483b0079603b95875df46154915e06c", "message": "character/facade stats\n", "proba": 4.036715779420774e-07} {"commit": "8371b099b0126ee902919873aeb0f55407f3f402", "message": "make validation None proof\n", "proba": 0.0033924763556569815} {"commit": "09a07b0e0b02a4bc74e5f0908aa79b32ba4f11fb", "message": "Modify models to work with pythonanywhere\n", "proba": 1.5336472358740139e-07} {"commit": "0740bd987d7080ca2aa53c8af5ce821a632c1536", "message": "Handle python3's changes to maketrans\n", "proba": 1.1534363011378446e-06} {"commit": "ca361d9eb88a2c94e8d25fc08e2eb2acacc6f437", "message": "Using shutil's function to copy data between file objects instead\nof rolling our own.\n\nNote:\nThis is my first sourceforge checkin. If you see anything funny about\nthis patch, please let me know.\n", "proba": 9.876694662125374e-08} {"commit": "c81db85b0502046f4592cc64c2a5bbb9366b5ab8", "message": "make private methods really private\n", "proba": 3.284713727680355e-07} {"commit": "7603484acbb8223b43a256923b342ee8de186448", "message": "Seems this test is just fine. It fails because __phello__.spam\ndoesn't exist, but that seems a separate issue.\n", "proba": 1.1475356131995795e-06} {"commit": "aa256b1d9c682a9b908b93681d23faa7b1ea2fc1", "message": "Fix an occasional test_ftplib failure, following r79226.\n", "proba": 1.2956461148405651e-07} {"commit": "a8ab595dfabc74042235982f1210095d6353cc4c", "message": "Input Test\n", "proba": 0.0005133870290592313} {"commit": "3f5404811e67ee41436cc057d68d548c7a6ebdb5", "message": "Fix broken test and replace redundant generator with a tuple\n", "proba": 1.962329406524077e-06} {"commit": "a1a180d0938a35cc2a8ca6d50e3ba5b5bc0ea291", "message": "add python CatalogStatistics::get_all_fields()\n", "proba": 7.11306086031982e-07} {"commit": "8962c2fd4ddd8be890324b66a18a6dbe0cd9953c", "message": "Make sure PrettyPrinter methods that mirror the module-level\nconvenience functions isreadable() and isrecursive() work the same way\nas the convenience functions.\n", "proba": 1.1902926644324907e-07} {"commit": "753eeb28feec17fc78dca0433f8c48f01234e894", "message": "Fix log missing\n\nFix log missing\n", "proba": 2.8137901608715765e-06} {"commit": "fc9d7ce371f42d8abd8e99e00f20e444ac39e659", "message": "#15872: Some more Windows related tuning to shutil.rmtree tests\n\nTurns out, the snakebite bots behave also their peculiarities.\n\nI'm really not proud of this stream of commits. :(\n", "proba": 1.084891678715394e-07} {"commit": "6760fa91e0042620ff0805645327bf47ea98b87d", "message": "Try for URL if local contour file not found\n", "proba": 3.629049558639963e-07} {"commit": "b5acc005968d37495f0e7d83d2dd2ef3d3674211", "message": "Code cleanup", "proba": 5.596320988843217e-07} {"commit": "d2b3b4ba925f4b4e14d0f43d5a264df1ceb185ce", "message": "Make as sure as we can that the forked child does not return and\ncontinue the tests.\n", "proba": 1.1835554403205606e-07} {"commit": "629e28991ee31038b38e9dca630bbc59756ee409", "message": "Revert \"Increase trace length for testing\"\n\nPerhaps a slightly increased length works better.\nBut, this should really be a runtime thing we set, not a compile time option.\nSo, revert.\n\nThis reverts commit a877eee1b9e4dcb801f93b7f29a59a96f78a2f78.\n\nSigned-off-by: Stefan Marr <46f1a0bd5592a2f9244ca321b129902a06b53e03@stefan-marr.de>\n", "proba": 3.5047054325332283e-07} {"commit": "4a7fc011743deb66ebfbdfadb73af2bf3928b356", "message": "Add timing, prediction and intermediate tests\n", "proba": 3.456756303421571e-07} {"commit": "ecf288ef14e99cabfae81a249244927aa490baab", "message": "Redone the tests, using the infrastructure already present\nfor threading and socket serving.\n", "proba": 9.974475290164264e-08} {"commit": "29bf5c2a7a27e6d35095b7a9dff74bb8715b31f8", "message": "use bulk load python api\n", "proba": 4.3447499820103985e-07} {"commit": "c1cde5bb99d0f89693ca545d7d3596a8592cc176", "message": "fix timestamp so we store epoch seconds rather than a date string\n", "proba": 0.0006974984426051378} {"commit": "4a6ebe69d428c9c9a7dfc01f36d28c6cbe4f8be4", "message": "Fix setup (#5400)\n\n", "proba": 1.2910035707136558e-07} {"commit": "6b0c8d53352a207bd9e65ed2fa50de79ecea2c5b", "message": "Delete reformat_mags.py", "proba": 2.50463835982373e-06} {"commit": "94984834f77a1c9086af0b2959efb3f6d9552546", "message": "kickout obsolet function\n", "proba": 3.9960607978173357e-07} {"commit": "da3c8b01512466e8b0c71a239378b8643d5384ef", "message": "Use same tagname but different scope\n", "proba": 1.3796649227515445e-06} {"commit": "e9434aaf21f3b9000d0054bceffb9c7c862516ea", "message": "add missing handlers for RST builder\n", "proba": 3.181052647960314e-07} {"commit": "677191544f64d9991403902e7dda2011d9248b37", "message": "cos ramp protocol\n", "proba": 4.590708044815983e-07} {"commit": "a9d79dc8393329090ae642206a090d439e0a1ca6", "message": "add commit to SQLite insert function. But insert becomes very slow\n", "proba": 9.61600562732201e-07} {"commit": "bc6b070d08fcfaba7febfaa725900c55b8eb8f39", "message": "test-runner: increase diff ratio\n", "proba": 6.031888187862933e-05} {"commit": "e17df73dde6e081fdb8fa091f140f3f7706b8b20", "message": "Update models.py\n\nen-GB spelling of \"programme\"", "proba": 1.327464786982091e-07} {"commit": "9a0b527923133628111a59403c386612fd3aec99", "message": "Fix review comments\n", "proba": 3.322019495044515e-07} {"commit": "a10bbc6f205c32cd23138bdb9c536ee8d78d2bfb", "message": "testSupport: add pushd context manager\n", "proba": 4.548289211925294e-07} {"commit": "9dac97e8640c50fc45aceadf3cc506d2c8a3fc5d", "message": "physics/secondquant: Explicitly declare fac in key\n\nIn Python 2, variables \"leak\" after list comprehensions; this has been\nremoved in Python 3. Explicitly declare 'fac' as the last element of\n'dumstruct' to fix this.\n", "proba": 1.8493721654522233e-05} {"commit": "3ef98f0d74f2e704d6b2d63791bed3647ffee6ee", "message": "add ut\n", "proba": 0.0006953059346415102} {"commit": "c5595f8421740be78a3b515b82c09b0e7276d8f7", "message": "Make date created and date modified visible in admin for models inheriting timestampmixin\n", "proba": 1.6488473875142517e-07} {"commit": "6fca26cac47b3f422e2a83399454b3447cca2610", "message": "Use set literal in diophantine.py\n", "proba": 5.175330443307757e-06} {"commit": "3571d5fcb46339fcffb5215dabc46d4a40c98123", "message": "Fix leftover from bad merge\n", "proba": 3.907488803633896e-07} {"commit": "ff81f376d4b1881b377a9e131ee44dda7d96294f", "message": "check for break condition earlier in generate_bell\n", "proba": 1.0112192285305355e-05} {"commit": "32a2c3ef65c06ec7ae96a6d135e2bbe33f280f19", "message": "added AttributeQuery test", "proba": 1.6318615791988123e-07} {"commit": "18bdac8ee4813005813a7021b1056ae83b44d6a2", "message": "fix config being a dict, actually\n", "proba": 4.292997743959859e-07} {"commit": "aedaba018f97202ee69b8715b34d6fc1bac39566", "message": "Replace some instances of preserve_context_over_deferred\n", "proba": 0.0025450687389820814} {"commit": "4c2aebb8d3bb95aa9668659b7e3656ee6bf5c481", "message": "update add_packages for reorganized nbformat\n", "proba": 4.683287784246204e-07} {"commit": "cce0f654577c57cc1f911392a8f387353389f75a", "message": "Disable the registration view\n", "proba": 3.1414595014211955e-07} {"commit": "664ec5dfa46a3195e46585d1e8007bcd2c287c9e", "message": "tests: remove gc unit test\n\nAfter moving to md5 for cache files, gc logic became very straightforward,\nand this unit test became irrelevant. We still have functional test for gc\nthough, so it is not like we're leaving gc untested. Probably worth it to\nwrite simple unit test for it later.\n\nSigned-off-by: Ruslan Kuprieiev \n", "proba": 7.88384750194382e-06} {"commit": "6107492ec203be5325ebb50af77e5352b2a661b4", "message": "Add caching disable test.\n", "proba": 1.465695760316521e-07} {"commit": "b02937f3c34c6d7c2bed64bbef886fd990a03c92", "message": "[cloud] Document requirements for ec2_asg. (#30057)\n\n", "proba": 1.3146497224170162e-07} {"commit": "6d70423ec29bfc9f017ff1a453798a37387eb918", "message": "corrects load_data utils function\n\nthis now properly makes use of the kwargs vareas, eccen, eccen_bin, and\nhemi_bin\n", "proba": 2.7715569217434677e-07} {"commit": "caacba6e15bcf6117fec853e388696d7edd0c312", "message": "tests: Test image cache\n", "proba": 1.0767483900053776e-06} {"commit": "aa490844a8a4f527e89010a557d4de90cdaecfb7", "message": "fix api key auth\n", "proba": 7.443338745360961e-06} {"commit": "d519eebed19c212f9edf85eb3b81704a4c004aa3", "message": "Fix comment spacing.\n", "proba": 3.715329910392029e-07} {"commit": "68bd1f83c7a93ad944f07b3cb0585c01e51e233c", "message": "added `-V` to qsub -sync\n", "proba": 4.619006972461648e-07} {"commit": "b154ad4cbb20f6b258f2afd3e0985101b7f0868b", "message": "ec2_vol: fix race conditions because we handle errors before actually deleting\n\nJust try to delete the volume and handle the error amazon sends\n", "proba": 1.7083668524264795e-07} {"commit": "561634c1af09ca030e99212aec69ae21e2aa2e67", "message": "Improves diff scrolling issues\n", "proba": 3.2701609598007053e-07} {"commit": "e0c0f19cd0b38a5b0ada1307d5732f378f9a541c", "message": "extract separate interface for managed data sources\n", "proba": 4.1262688910137513e-07} {"commit": "bb6b679d03bbd93c50072b38410d5b06eec318df", "message": "Fix problem checking missing dependencies\n", "proba": 4.195492874714546e-05} {"commit": "4842d8b4a7ad3c373b37e83bef83a376c8a21060", "message": "Add additional tests for lifting universal props by range\n", "proba": 1.1858364956651712e-07} {"commit": "751434de9d4d577989769eb78fdd9e6e485e2c19", "message": "describe choices in alias documentation\n", "proba": 5.284482540446334e-07} {"commit": "4810f1428f9aa3611ff8385d83de2244b43d0155", "message": "Small tweak.\n", "proba": 1.4741952725216834e-07} {"commit": "2782be8301eddcca038d3a75546e80cfed719115", "message": "Initiate bbox as None, rather than as 0s which can lead to problems\n\nWhen writing a new shapefile, initialize bbox with None rather than assume 0s. Bbox with 0s has created problems and has been raised in issues in the past.\nIf bbox is still None by the time of saving, means the shapefile contains no valid geometries, and then we can set the bbox to 0s.\nNot clear that this is the right way to write missing bbox. ESRI spec says the bbox values are 'unspecified', so not sure what that means.\nBut at least setting to 0s should be safe as is the same behavior as in previous versions, and makes sense since the spec says Z and M bounds should be set to 0 for non-Z/M type shapefiles.\n", "proba": 6.856532127130777e-05} {"commit": "53141473388f47b0024e5ee85ff7a9e05833cbdd", "message": "Test for _iadd_ with a tuple\n\n", "proba": 0.00012864572636317462} {"commit": "6fb5c3c46147372310ce465b185e36a0b11dbb7f", "message": "add case-type column in related cases view\n", "proba": 6.409908337445813e-07} {"commit": "464a5e37e15568e6654100635de4ee69e814ccaf", "message": "added predicate based validator WIPB\n", "proba": 1.4316599390440388e-06} {"commit": "75e181959870d482efb09f9ea8968104cb2732a5", "message": "Stabilize Selenium test\n", "proba": 3.00906935990497e-06} {"commit": "e8972ce4591231c8fa7d7daa6949cfa3dab32573", "message": "Terraform: Allow lock flag to get set to false (#53873)\n\nThis change allows a false value to propagate appropriately to the terraform cli.\r\n", "proba": 1.102768933947118e-07} {"commit": "8b23eb90b30247d0d923a1ca47b98a09a73d2888", "message": "Update sheetpost.py\n\nAdded a sheet wipe on upload if it's not blank.", "proba": 1.0651079662693519e-07} {"commit": "91ff4104f8a3c80ac3fd25c1257294359dde24c7", "message": "Updates test_device.py to py.test.\n\nSigned-off-by: Markus Hubig <1530596661b504c08a18435b39f5ffa8d6f49ebb@gmail.com>\n", "proba": 1.205680604243753e-07} {"commit": "72ed7c1153e67997c61ca3d4d4971d74aef375be", "message": "fix bad variable names\n", "proba": 0.6721826791763306} {"commit": "94c02fb9ddb0055ce774f260793b8223ea9891ca", "message": "Use longer token expiry time.\n\nDepending on when module is imported, token could already expire by the\ntime tests actually run.\n", "proba": 1.2183767239548615e-07} {"commit": "ea160f911f5c7f1c0c9ae25f1b51c91112b0252b", "message": "urls.py now as urls/__init__.py\n", "proba": 4.850432560488116e-06} {"commit": "ba5c71ad2fe7d34a95692562ae0d0500bee4a816", "message": "Fixed tests for blocking scheme\n", "proba": 2.4407873411291803e-07} {"commit": "00cd51e74c0d77022ba85b9d58c67cda08762a94", "message": "Handle connection failure in pillows\n", "proba": 2.406881947081274e-07} {"commit": "ba355aba388bd4882496dd20ea90032a73400359", "message": "Fix CPython issue #19293 (hangs on AIX).\n", "proba": 1.0573434394700598e-07} {"commit": "9b1566bf297124651e0a00c109683e9d9e1226d4", "message": "Convert to absolute Values and rmsSmoothing added\n", "proba": 0.0002480302064213902} {"commit": "512d52ba1f14007c2191dc4366c2db4cb6c75440", "message": "crash less when z3 decides to generate invalid utf-8\n", "proba": 1.2272364529053448e-06} {"commit": "996fe2892c805826597a1dd263f83a39a2f6f02b", "message": "More appropriate docstring\n\n", "proba": 6.454020422097528e-06} {"commit": "a193b44bb99b116b9bef13f0af24e2d7ade797e5", "message": "Some other ideas.\n", "proba": 1.258596000752732e-07} {"commit": "020070b855481544d3b0b56b6cf69f63f5dbe067", "message": "Add in more hybrid tests.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 1.1669353483512168e-07} {"commit": "c820e3ed4d78b975a6bdff54a2ecae26354ae10e", "message": "Add `parse_value` test for AppleScript dates\n\nAdded a test case to `parse_value` to parse dates returned in\nAppleScript responses.\n", "proba": 1.1216807394021089e-07} {"commit": "614b21a7eea12fd2c289b816e10121a44c5ade2d", "message": "add test for layers\n", "proba": 5.523420441022608e-07} {"commit": "e06dfa7a9c58604364ccc34f7c5db13cdbac9a7e", "message": "fixup! tests/length: Test the axioms of normed vector spaces\n", "proba": 4.2576233681757e-05} {"commit": "4f01507e1917b81257a927c4b0f150f59fc7d7cf", "message": "add test for logger.notice\n", "proba": 2.5446578888477234e-07} {"commit": "f6c7a7e3aea4d6359805b992c48962aa760d46a6", "message": "fix member test\n", "proba": 4.119902712318435e-07} {"commit": "54c69e30ad1c65c7a625fb9451e5aa63c5166678", "message": "implemented IOError for double-mkdir-creation\n", "proba": 2.623756927278009e-07} {"commit": "5dbd96ea4843d7074915d3593db1da3bc89dde89", "message": "fix test name\n", "proba": 0.0005459032254293561} {"commit": "d61f27a3051336ea8b68c9d7f58fea2e75cac983", "message": "Removes some redundant saves and explicitly passed default parameters in test models.\n", "proba": 1.0371694258992648e-07} {"commit": "818b7ba3c373f6a10c70224d8650cdcbbd3bcd75", "message": "public books in feed\n", "proba": 1.616659659475772e-07} {"commit": "cd059cbe9c3bf22e21db97963c8aeb15bb9c6fd0", "message": "Add FX backward tests back\n", "proba": 3.8145336134220997e-07} {"commit": "33c0047bf22120956021b1bff3c8a42819230316", "message": "Fix Unicode errors in py27\n", "proba": 0.0014016864588484168} {"commit": "c9dff0650e654cd6d59751f919648e0431cb1ffd", "message": "Use pytest to parallelize models testing\n", "proba": 6.874321911709558e-07} {"commit": "0f2e51e074c39a1b7b1e4a2b196ca4081caa1e09", "message": "remove fake index\n", "proba": 0.0030011641792953014} {"commit": "ee5288a7f519bd831be5769de5f1a12c31de7102", "message": "Added some collection tests for textphrase/word/morph\n", "proba": 5.243083478490007e-07} {"commit": "17f088510b22d4d055db7980a68d219fd4794976", "message": "Fixes #21 by changing the URL regex.", "proba": 1.1508174679875083e-07} {"commit": "bb3f33c85b0615da55dba944fd2bd7fb50b32ffa", "message": "Added test_e_b()\n", "proba": 3.3918882991201826e-07} {"commit": "d9bac8f175574c3f2da7ce9e4bcecb5a9cac642f", "message": "Remove trailing whitespace\n", "proba": 0.9999992847442627} {"commit": "310ee6bf2addc98e1b71d9e89b4022b83d506769", "message": "Fix python3.4 failure in CI\n", "proba": 0.003852736670523882} {"commit": "37cd07b379bb3f0eca391e29cd947fe877b61d5e", "message": "refs #1: flake8\n", "proba": 1.6156623132701498e-06} {"commit": "db4ae95ee8e381f689ac0b12edc228e72f421c57", "message": "updated reporters app with new pagination prefixes\n", "proba": 2.2746104377802112e-07} {"commit": "c4b6bb6fd878bf1c55a4df977256dee9fc3e238d", "message": "Cutting number of feeds for fetching until mongo is sharded.\n", "proba": 1.229753792131305e-07} {"commit": "bde906f7bb9cc45cf51d8f858ea24a4ef5173f0d", "message": "Print error if elasticsearch isn't running\n\nIf elasticsearch process isn't running, print an error to the console\nthat's more informative than the pyes exception and a traceback.\n", "proba": 1.2398078297337634e-07} {"commit": "c67bab49b554047826dd582e971463d27f45a511", "message": "two-line forwarding script\n", "proba": 8.665898008075601e-07} {"commit": "9191542d33762122b74a5846380cc6c8d70b9bb6", "message": "add panda test\n", "proba": 0.0005262347403913736} {"commit": "b18d4df99bd57fccac1ad16b592a3bbbc29db414", "message": "WC-2802: parser tests: Ensure parser never swallows errors.\n", "proba": 1.3170050294775137e-07} {"commit": "80436698f01e2e703eee9e4db94d4883e03a63f2", "message": "Fall back on API authentication for the download view (#1876)\n", "proba": 1.0937447569858705e-07} {"commit": "5027bd175a2ada659615834846095d621ddf3097", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "5e942603c0578ac2ff09d0e9e30e3a9a904f6cd8", "message": "Modified parser to store mnisti\n", "proba": 1.1626048035395797e-06} {"commit": "3ef80c006b65539abdedfe455153399422e46ac1", "message": "Made sure that we only show reference language if it's on a different language (lineage will include versions of the same language)\n", "proba": 1.0738425970657772e-07} {"commit": "886e58b5abe4404a7f56f06ba5cc6bbe15c1c7ac", "message": "check for invalid timestamp in fitparser\n", "proba": 5.838124934598454e-07} {"commit": "0b61feda0182c536dc3aae6c41edca936be5941e", "message": "tests: Check DefFunction + pickling\n", "proba": 2.3611977439941256e-07} {"commit": "25bf88000731cdc49c2078e81bc6ad5ef93631a6", "message": "plot: Add option to change xtic rotation\n", "proba": 2.93496782433067e-07} {"commit": "6ef731031364b072797d28047bce8cb7435539be", "message": "mocked all the html and js with local fixtures\n", "proba": 1.4147914839668374e-07} {"commit": "90d42d8d2f5e7a7f15cd13c04b1d97522c9b6acc", "message": "Disabled randomized tests for Python2.6\n", "proba": 4.246115850037313e-07} {"commit": "3039ded51ac8c7520afb05ea06451dd3bfb8a93f", "message": "fix bug 3\n", "proba": 2.141223376384005e-07} {"commit": "d3dd3dbef4bc7d6dac8fa13c9ca86b75cce9bcfb", "message": "Check a few more ways in which rules can be invalid\n", "proba": 3.274163191235857e-06} {"commit": "81d4eb6591c36db1b14858933023a3d65d725df8", "message": "Comments\n", "proba": 4.2012280232484045e-07} {"commit": "ef3a08cfb306f436b715813303de160fab286231", "message": "Factored out very similar synthetic tests into a table test.\n", "proba": 2.4237390334747033e-06} {"commit": "cf24a75fb1e77b97253762337c6715d9043d8853", "message": "fix too small agent\n", "proba": 0.00023301785404328257} {"commit": "0f6b8ee6acc8164aaff7dd5f7bcb855abddabc74", "message": "More slicing tests\n", "proba": 1.2684962769071717e-07} {"commit": "8ffedd1aacc99fdedc2be59bd144637f241204dc", "message": "Fix test_list_routes\n", "proba": 3.4833694371627644e-05} {"commit": "2fa9789c677498e31d3942a45e33189c51f64975", "message": "update jwt's in tetss #1120\n", "proba": 1.347767693005153e-07} {"commit": "42a96e831add5645454a1b83521525c11b2c69f8", "message": "ivpusic commit test\n", "proba": 3.1720068704998994e-07} {"commit": "6d1f18ba87583f00dce3823e89244531f637b08b", "message": "skip failing tests in test_sprocs related to decimal conversion\n\nrefs issue 51\n", "proba": 1.6835097085277084e-06} {"commit": "6836afbf62082f3d58efd8b4a92bab5f89887b42", "message": "Test to show (for python 3) that keys need to be comparable\n", "proba": 2.2953250322643726e-07} {"commit": "e4c30b8ee0acda888c6ad146f2bd3dfbf9aa377d", "message": "Add test capturing failed expectation. Ref #3.\n", "proba": 1.2308555596973747e-07} {"commit": "c7734c09bed6be1c948ddd144a17074839198ee1", "message": "Include referrer setting in tests #15\n", "proba": 1.316457485245337e-07} {"commit": "e28b6c34c0e27fd40596c9defb829a61001a706b", "message": "Add tests for parsing references with short year around era boundary\n", "proba": 2.2018943468538055e-07} {"commit": "1b0f7a0f2a2b61665192e3351597dc60fd1d9e21", "message": "Added norm options and a real merge to combined tests.\n", "proba": 1.0063237709800887e-07} {"commit": "57a76c4d01078c2acc232d382eedc377f2ceeb35", "message": "Remove unused imports.", "proba": 2.0302917391745723e-07} {"commit": "ec40f70e5460d64fbfb62501548c64f7719dfe8a", "message": "comment fomr test\n", "proba": 2.230655979928997e-07} {"commit": "3e7a02a2c54af45505f660b222109f2890a99f97", "message": "add initial model test\n", "proba": 2.709112720822304e-07} {"commit": "33ea5bdb29d15fdf26527e51ca41cefe108afabe", "message": "First try to get Sonar comply to coding style exceptions.\n", "proba": 1.0256590599055926e-07} {"commit": "79d4413ba8b4e88b3569642b171ce94a2702fb2c", "message": "Total refactor and selectable methods\n", "proba": 1.6402871949594555e-07} {"commit": "d6e0247f389fb89225bb427ade07d704ff4f0c67", "message": "Updated with comment and increased time to avoid a potential race condition.\n", "proba": 1.0328422206384857e-07} {"commit": "c681955fb09ca2ec275b780e5a98b261a7c9f4af", "message": "PUT \"arches-json\":create resource as given body id\n", "proba": 2.3835673346184194e-06} {"commit": "1e0b0a457c294506886dacbff4831567143b26a6", "message": "fix tests\n", "proba": 1.2553598480735673e-06} {"commit": "6da2ec734245c2eaf190b9511278d5bf346345a2", "message": "Add exclude top, bottom row options to sphere shell\n", "proba": 2.7220954734730185e-07} {"commit": "1d004233d7d84056c9b092562760f47b20736981", "message": "Minor correction to sphinx docstring.\n", "proba": 1.222213654727966e-07} {"commit": "aac6665c3e2bf88c45b751ccc993cfa02cdb2683", "message": "logging de mensagem se houver erro ao comentar merge request\n\n- mostrar mensagens de logging somente se em modo debug\n", "proba": 2.327436874338673e-07} {"commit": "1daa69e2f8998a28bd18daf32402287291a012a8", "message": "Improve test robustness, as suggested by therve.\n", "proba": 1.246855845238315e-07} {"commit": "71e0e1c1eef6877f82d5d47e8b09a76b454f1020", "message": "Add slash for those of us whose IMAGEIOHOME doesn't contain a trailing slash\n", "proba": 2.515059804863995e-07} {"commit": "d6fe63d86c802e58d26fc854f18dea09c74594ea", "message": "config: use ceph git url for suite\n\ne.g., if the user specifies --ceph-repo, we will use this for the suite,\ntoo.\n\nSigned-off-by: Sage Weil <6dd34506bbd5e58221bbb3e4732d97c91f02277b@redhat.com>\n", "proba": 1.7385461603680596e-07} {"commit": "1b59f9b47c6d592506459019027a46eb69e0f759", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "c4a5b9e583d36150e5dbb1a561d8125bed0d0a71", "message": "Remove source code from table of contents\n", "proba": 5.802993200632045e-06} {"commit": "ab515103d8f33d80e1b0e6c2a995d686bee66445", "message": "Adding ability to pass kube_config as a dict.\n", "proba": 1.1323653836825542e-07} {"commit": "1e59ae111c5a01290bf3e2b39cd53b632abe5e90", "message": "BER REAL decoding cleanup.\n", "proba": 1.3336406823327707e-07} {"commit": "1bec1083f03a49882624db5edd43c4aa52f17f37", "message": "Corrected the timeout assertion message in Context.request_resource()\n", "proba": 0.00014397512131836265} {"commit": "8b514c1b3d29e797fd6aee4cc13f66d867495675", "message": "fix type annotation\n", "proba": 1.513184201940021e-06} {"commit": "649b0afca543e57ee0e6130fd8ff85de684c964c", "message": "soc_linux: fix typo\n", "proba": 0.9999983310699463} {"commit": "4b494ee26e491a97c32f1d04aa2fd4cdbe399d1b", "message": "Add note about potential exceptions\n", "proba": 3.3485534345345513e-07} {"commit": "499970226d343aa98f3906019aa65497b4e2afe8", "message": "Made playername mandatory, since not providing it resulted in no action\n", "proba": 1.551029953361649e-07} {"commit": "c85c725b082756d2b18ddfb1f8995a84f1bf40cf", "message": "apcomp add v0.4.0 and new variant (#27820)\n\n", "proba": 1.0951767848155214e-07} {"commit": "ab87f7451a8918b488ede94413123f3110207339", "message": "BRAKER package: Add version 2.1.6 (#22965)\n\n", "proba": 1.063500150166874e-07} {"commit": "8df9f9e1f4ad747759dc69acd59266b847534353", "message": "Fix ffmpeg (add missing yasm dependency) (#5087)\n\n", "proba": 1.554576698481469e-07} {"commit": "4eb499447270388056ac50df436463f2991a9ad4", "message": "Update Jasper to 2.0.32 (#24510)\n\n", "proba": 1.081988258988531e-07} {"commit": "1bbdb7f28b8b48606528d66ffe7043bd5616ed95", "message": "address #227\n", "proba": 0.0046879881992936134} {"commit": "e3115aa505b8fc68893e4ebeaf5e5f152507e693", "message": "Kripke variants.\n", "proba": 1.8909246080056619e-07} {"commit": "d970ef5404bfdbb0fdd15eb00a96652708b32332", "message": "Add a list_url for libpng (#4038)\n\n", "proba": 7.4965430485463e-07} {"commit": "31da75240269f54deb55f5c18eef658ec7b85cdb", "message": "metasv: add required dependencies (#9254)\n\n* add runtime deps\r\n* revert to strict dep versions\r\n", "proba": 2.3493066692026332e-07} {"commit": "9623faa3d35630bdbfed83bd337c9496f9347a4c", "message": "import_aip: add argument to skip existing AIP check\n", "proba": 3.6250165180717886e-07} {"commit": "a35974c89f601de6fd686d5ba8f23941cc6a7b47", "message": "Decrease timeout when Tor is not in use\n", "proba": 9.858191560851992e-07} {"commit": "8f915de610544bbbf06cb17a7de8b2241195b471", "message": "Updating SAMRAI package with new urls and new versions (#3188)\n\n* Updating SAMRAI package file with new urls and new versions. Also using Spack's MPI compilers.\r\n\r\n* Using default optimization for Samrai and setting type to build for m4 dependency.\r\n\r\n* Adding debug variant to Samrai.\r\n\r\n* Converting Samrai to AutotoolsPackage.\r\n", "proba": 1.049107112294223e-07} {"commit": "4dc1d2884e0e97c4ae9344eeb10d9e2f385e25d8", "message": "MAINT: integrate: Fix documentation of the ode 'with_jacobian' argument.\n\n* Fixed the documentation of the 'with_jacobian' argument of the vode\n and lsoda solvers.\n* Changed the default value of 'with_jacobian' from 0 to False.\n", "proba": 1.1389405329964575e-07} {"commit": "84fc1221d2fdbf79952d554a8eca5e9fbefc3fcf", "message": "TEST: added test for GA of zero\n", "proba": 5.160827072359098e-07} {"commit": "6ef8233caf2931212f90c9cded9c7b2402c70c89", "message": "recording the last active minute\n", "proba": 5.02202965435572e-07} {"commit": "ae51d5849a946699362372fb9d7f637bb81186f3", "message": "Fix typos in AppCommandPermissions attributes doc\n\n", "proba": 0.004549168515950441} {"commit": "abbd84ca4424c963b028b4c2110e1aa7833cc9ad", "message": "One more fix to pytest integration.\n", "proba": 1.0625309698752972e-07} {"commit": "c358dbad70977825da3068fa5df9b15af714a536", "message": "Added alert codition to differentiate alert from notifications\n\nCurrently, we are using a flag called notify_only_ui to differentiate\nnotification from alert. But we should introduce a flags in alerting messages\nto differentiate alert from notification. no need any flag in notification\nmessages.\n\nSigned-off-by: GowthamShanmugam <8c664c2cfb272eb6524e212187e1d749ad3db0b4@redhat.com>\n", "proba": 1.5648326723294304e-07} {"commit": "1a44808eebdea2b8456c60594ef2f604500a18f8", "message": "Improve menu scraper\n\nChanges:\n* Do not record price in Amica menus if it is null\n* Fix pylint warnings\n* Improve error messages\n", "proba": 1.409521672712799e-07} {"commit": "9283adf2e30a887ecaab2d563cb626b7d2b24320", "message": "Move the rest of the url building to furl\n", "proba": 7.0397577474068385e-06} {"commit": "a0755891f3ee24a10751a346709c906d3f3696f8", "message": "final commit of changes from california\n", "proba": 1.4287230953868857e-07} {"commit": "4cd320e825699f40d21e9a0c13478117e197e0c8", "message": "Deprecate TensorFlowEstimator\nChange: 129863608\n", "proba": 1.6952483292698162e-06} {"commit": "3a9a15ef0c7dbdfaf1a6d2e2d1648a8f4b57ace3", "message": "Fixed #14064 -- Corrected spelling of Argentinian. There are arguments that it can be spelled both ways (and arguments that the right phrase is Argentine), but we're going with the OED on this one.\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@13492 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : ca7af3a8db84e2025b5d21dad5e07cfc15925e12\n", "proba": 3.037641909031663e-05} {"commit": "24df23a5a3f7cfbc788c2173445e895f2a276b1b", "message": "autohelp: import oslo extensions only if needed\n\nOslo modules are not used by all the components, so configuration\noptions might be invalid if these modules are unconditionaly loaded.\nThis change uses the requirements.txt file of a project to detect if\noslo modules have to be imported.\n\nChange-Id: I7cd81d0c9a5ae43f0a628e2d2a6f664507e54122\n", "proba": 1.2187978200017824e-06} {"commit": "874314c2817f0c9409cf35bbb413964c549134b2", "message": "Removes the config field from the migration.\n", "proba": 1.1814859846026593e-07} {"commit": "7a06159ba636ecf14fc287112a1dcdc8b55e668e", "message": "Fixed stupid syntax error in [8303].\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%408305\n", "proba": 5.558239536185283e-06} {"commit": "da4d785171208675e68ad20281e1ac5da4250547", "message": "autohelp: add oslo.cache as extension\n\nChange-Id: Ifac03228dfe43719fdc89cfffa2ac53865aa06ee\n", "proba": 5.278080834614229e-07} {"commit": "6bf1f2b7e7cd017c52cfd10a3c55ae548482b6f9", "message": "Refactor the generation of docbook data\n\nAvoid duplicated data (mainly headers and footers for table files).\n\nAlso reformat the generated output to avoid having too much white\nspaces.\n\nChange-Id: Ib7ff29ae6d3180a401c5cac482e82a56997751a7\n", "proba": 0.00021225983800832182} {"commit": "ee20502f8b68bd8654c3767d1bdd64478da340a9", "message": "Don't use L10N and TZ also.\n", "proba": 1.0941954542431631e-07} {"commit": "fdc25502412386273fa4c5f36bf060a3f82ae25e", "message": "best not to change decor rock\n", "proba": 2.850457349268254e-06} {"commit": "28eea6674076c4b5edee49ba5c57cf0556d4d52a", "message": "Fixed a markup problem in the docstring for the \"if\" tag. This was showing up\nin the admin docs.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%406539\n", "proba": 6.147834938019514e-05} {"commit": "f46859b912a6956634a4f3fbd9e2aa63ebcb37da", "message": "[python] Regex substitution (look ahead/behind)\n", "proba": 1.326953480429438e-07} {"commit": "7cc586ff1cf3f01533808613ddd96c02e379786c", "message": "Credentials, Stats, getAllSecrets\n\n - Credentials class to encapsulate the datails to access a container\n - Stats class to account server stats and log store/server stats\n - getAllSecrets for getting a dict with all containers credentials\n", "proba": 1.462785661487942e-07} {"commit": "40a5ccd1476a729e4b0c45e89b4eb35a3b729fee", "message": "fix object class\u5bf9\u8c61\u65f6\u53d6\u4e0d\u5230request\u7684\u95ee\u9898\n", "proba": 0.00014598209236282855} {"commit": "13fb3d9da7bb61dcd593c440ae798fd75474ebed", "message": "Python/ifconfig: cleanup import statements\n", "proba": 1.5998376738934894e-06} {"commit": "ef0ac50f384200420ebb10cdd1b7b62088709ad5", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "de2dc01683619ffb3357dcae35cc3f0d417a4fb5", "message": "clarify help message for ltk rm -f to specify that local translation files are also deleted\n", "proba": 1.8376580612766702e-07} {"commit": "27dd4e37e4a2df3aba8d0d25ec605f2c156abc92", "message": "Generate random name if none specified", "proba": 0.9999470710754395} {"commit": "20c7e605c987bbfec23fbd305e71168b21672bec", "message": "Sloppy copy-pasting...\n", "proba": 1.4008152504629834e-07} {"commit": "d60fa4dfef1c7db69fe45788e8be923a243c55e2", "message": "pep8 fields_generator check #18\n", "proba": 1.7300713750501018e-07} {"commit": "42edd44f16b2306952bed4416f9fd425bbfa6f1d", "message": "Add force_data_batch_size option to ReplayPlugin to enable manual assignment of data-memory ratio when creating a ReplayDataLoader.\n", "proba": 1.059721768115196e-07} {"commit": "18c0d5bccd8a8fa254efa00443a35d28ba53e2e7", "message": "Testing some changes.\n", "proba": 1.596402512404893e-07} {"commit": "758431c1cbbf503bd4a6b9b669c45d031d41d337", "message": "release\n", "proba": 3.947916127344797e-07} {"commit": "428375e3d138b18bce84192838ce0a9c2a896ecc", "message": "Fallback to default color of color is not set in action\n", "proba": 2.1010062312143418e-07} {"commit": "dd582238c600e6f2d7b5e38c3e2cff1a9372eb88", "message": "Use no_alt chrom.sizes\n", "proba": 8.764781341596972e-06} {"commit": "8cf93e49c84d954d7454d393fce591c8f7cbff1a", "message": "Add look_and_say_next method.\n", "proba": 1.3768938345037895e-07} {"commit": "baef39bc5e94f1f60047d5e6c7b8d7c0e9722f05", "message": "tmpedit\n", "proba": 1.1086916629210464e-06} {"commit": "6c7d5d3de9ffe9d518adcbad7d391c8a3ae8c27a", "message": "add more elegant solution for 11.\n", "proba": 1.2385788750179927e-07} {"commit": "436704c40b5fa6ffd30bd972bf50ffeec738d091", "message": "HUE-8758 [connectors] Prepare a is Hive LLAP flag\n", "proba": 5.168938059796346e-06} {"commit": "4a8d7816e360c067b71a673cda17433629424d91", "message": "Fix IQ warning during processing (#221)\n\n", "proba": 1.9199514156298392e-07} {"commit": "97f0cc4592454e84d36008b9eee5fefc6f59d1c1", "message": "Rename entry -> tier\n", "proba": 1.7221698556113552e-07} {"commit": "4760f7bf9ad9ec26f315c57579f910e466a8ea67", "message": "HUE-8330 [importer] Do no error on single cluster submission\n", "proba": 1.1481338901830895e-07} {"commit": "e264bb2011cf30ef3fbabedd9e6981a935c9896c", "message": "Fixed bug in s3 url gen\n", "proba": 2.4896564809751e-07} {"commit": "79fddf395034d24807951b0e11144acfa1d98c36", "message": "problem 9 solution\n", "proba": 1.1107310456281994e-05} {"commit": "6af65b6d239c33f8237a65f7dd3820004cf7eed1", "message": "Fix offset sometimes not being deserializable\n", "proba": 1.9676622287079226e-06} {"commit": "04d04290ed646e5a885996f7d1d877aca7a99042", "message": "Redirect to the same page\n", "proba": 3.3659034670563415e-07} {"commit": "cd60c252859b35286f0ebe2d98f3d86063c63dcc", "message": "Fix volume extension validation again\n\n - wal-65\n", "proba": 1.924273789200015e-07} {"commit": "db39e12e5f3621495f0226cf080b761973eb14b1", "message": "Fix notify-osd script to listen for accessible-name/value signals only.\n\nNotify-osd has now been fixed to work properly with GTK 3.2+, and as a result,\nit no longer emits a window create signal for notification bubbles, but that\nreally doesn't matter since accessible-name and accessible-value\nsignals are emitted when the data we care about has changed.\n", "proba": 1.1262663690558838e-07} {"commit": "8593cd362a3b8715db3cf79e9a200ecc2b60d18b", "message": "check darwin before windows because darwin has win, face plam!\n", "proba": 1.2893609380171256e-07} {"commit": "170b64937d88e300af1aef2fdb60cdeef4fd917a", "message": "split didascalies from different sections\n", "proba": 1.5929304026940372e-06} {"commit": "1b828f84ded71c42687979f14681672714367ae0", "message": "Add suggestion\n", "proba": 3.526571958900604e-07} {"commit": "d3769dd9beb04cd60a9e9cb9a439101de8811f79", "message": "remove empty paragraphs\n", "proba": 0.9999995231628418} {"commit": "3e267d4df563fbb51896389846280125cb70cae5", "message": "fix flaky tests\n", "proba": 2.169173058064189e-06} {"commit": "772a202f51b5b34f66b6e1f8279f00bcdce98f93", "message": "grab missing videolink\n", "proba": 3.1588479032507166e-07} {"commit": "c6a2807fce0f3cb70b9e22db6cd46baa82906b56", "message": "Added Camera class and updated ObjTracker class\n", "proba": 1.3261362141747668e-07} {"commit": "c8092996425ae2c9945e586d27db071c6bda9284", "message": "retrieve\n", "proba": 1.8335351796849864e-06} {"commit": "4a84aa6016c1ccab617d806bb745e21ca286cb54", "message": "fix fake bold in some crs...\n", "proba": 1.268262934672748e-07} {"commit": "1295325423d086f3c51d424695335eaacc1c7791", "message": "Special-case 0 <-> None in idToObj/objToId\n", "proba": 4.285212344257161e-05} {"commit": "e93f82ff326c01140283519e7150320474023e79", "message": "Add ability to chain blocks in the architecture\n", "proba": 7.084924504852097e-07} {"commit": "4f7f367391aca48f673bffa1a85275dd1be7339e", "message": "Handle SSL errors, and specify scheme for CDN URLs\n", "proba": 1.8740276175321924e-07} {"commit": "be8b13db39099818f33a9180a43a752164b3b744", "message": "removed output\n", "proba": 0.029553920030593872} {"commit": "0c1fd9d0ed61edeca3bf58350943cea72fd43270", "message": "Made reset_symmetry more stable: don't try to increase symmetry on optimized geometry.\n", "proba": 1.2103198798740777e-07} {"commit": "48a3d33ae478e218a5548a484b07e87413cc0c27", "message": "Bump to beta\n", "proba": 1.4126086966825824e-07} {"commit": "f56fa10bd8ea3074634265f0772b8bbdd09f00b5", "message": "Moved imports in to init()\n", "proba": 2.375753069827624e-07} {"commit": "82e8de257a1bcae3252fd729ad18d3f8b67ffaf6", "message": "test3\n", "proba": 3.146653000385413e-07} {"commit": "85056fd599f1151b25dce55f6e832e4206c57154", "message": "Update test in bi_view_editor\n", "proba": 6.402448775588709e-07} {"commit": "8b29326fcb074f8946a19052ad9df997bbb4e644", "message": "fixed node class name\n", "proba": 8.752935514166893e-07} {"commit": "5f6b0407fc09224e1785f994dbfb2d7b9e18ba65", "message": "Add 1 second delay to load the playlist data\n", "proba": 2.8514801897472353e-07} {"commit": "afb5869671913694deb2fd994cd465087a308beb", "message": "Fixed load_setup_data service Description and Method\n", "proba": 2.0705292058664782e-07} {"commit": "fc7ed4f69ade8b7c1509eea8e2454c01dc3cdc92", "message": "\u89e3\u51b3\u6162\u65e5\u5fd7\u7ba1\u7406\u5bf9\u4e8erds\u5224\u65ad\u6709\u8bef\u7684\u95ee\u9898\n", "proba": 6.993706733737781e-07} {"commit": "9e0de9099b0fc96fb6ee53caade1ea9baa426d91", "message": "Revert \"ShowOn=False for AR lookups\"\n\nThis reverts commit 3e77f63b1ef38e43aadc410bcba50d9c0515e426.\n", "proba": 1.294599911716432e-07} {"commit": "4ccec80ad90a7ab07439bd10277bfaa0e5e852d8", "message": "Low LDL values (more digits after 0.0) the value is not saved correctly in the AS Edit view\n", "proba": 1.720884341693818e-07} {"commit": "01aad3aee8f87bfc51e521ddeeb65ffa6572b592", "message": "rml2txt: fix the indentation that broke the whole thing\n\nby only those 4 spaces, all contents of tables (or nested textboxes) had\nbeen rendered empty.\n", "proba": 1.1274602940147815e-07} {"commit": "eb1cc1325c017ca64b4c88b4d922fa8e68e416a1", "message": "python: update following the change to cs_close() API in the core\n", "proba": 4.007517873105826e-07} {"commit": "41020ad845f5e15d6f328eeae7111b32ba3cb35d", "message": "removed clean lines too soon\n", "proba": 2.56310983104413e-07} {"commit": "153ff9669894e499835461ec6a6fb2e36acef425", "message": "functions: test callability instead of type\n", "proba": 4.410541350807762e-06} {"commit": "94922f2f1cc858e2ffdf7cb8a7969c6c24267d22", "message": "fix path library path names\n", "proba": 0.0021456072572618723} {"commit": "2dea10c204a61cda798e8fea901c9981031becaf", "message": "Convert to future array shapes before writing uvh5 files\n", "proba": 3.958290562877664e-06} {"commit": "c9d0cc2c275cfea1a3fd20b1915f7f55dd99beb4", "message": "complexDataNode.getAttributeNS() bug, replacement with getAttribute(), correct parsing of ComplexDataInput with mimeType,encoding and schema\n", "proba": 1.6857286766480684e-07} {"commit": "99c0963eeefab1b98d992baeb95064278d47306a", "message": "WIP: set_draggable from mpl\n", "proba": 1.7093056214889657e-07} {"commit": "13e33fe93fa477b67708037b49512ba8cfab0150", "message": "several failures\n", "proba": 1.3721312825509813e-05} {"commit": "fa73fbe88667c720356a27b804564e81f1c8d69b", "message": "Bug 1223128: Fixed dbinit --dummy, separated user and pulse_user. r=mcote\n", "proba": 7.411014735225763e-07} {"commit": "1261f30c84f7b68405d4601730980ac87cc56a7b", "message": "pw_ide: Remove Path.with_stem() uses\n\nPath.with_stem() was added in Python 3.9, and we're trying to support\nPython 3.8.\n\nChange-Id: Ic1a416f238f3445e38bb2c2a2c750ba41e3b8843\nReviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/111075\nReviewed-by: Chad Norvell \nPigweed-Auto-Submit: Rob Mohr \nCommit-Queue: Rob Mohr \n", "proba": 1.635396415622381e-06} {"commit": "bd8b6c0670af6ffee223af5c0dbb2a827dcfd95b", "message": "make templateid the actual template number\n", "proba": 7.880267958171316e-07} {"commit": "2b31dea8ac19ec4908e27799cb67261174613ed9", "message": "new non-cal zeros selection in compute_nightly_bias\n", "proba": 2.0154923277004855e-06} {"commit": "2707a80f7f39ce2da4b109ea3f0d4c9216e34289", "message": "Fix fragility in Liberation queue\n\nFixes #14\n", "proba": 2.434988743971189e-07} {"commit": "a55be6f5d3a3e08ff57d3c4a066329ec38967bbd", "message": "adding some code to filter badcam\n", "proba": 2.90326511276362e-07} {"commit": "9c3fce3771f1dac418caab0d984d1704099b07c5", "message": "memory leak in pivots\n", "proba": 7.72124280956632e-07} {"commit": "6352b8185ce3daba7225fab5ccf53d632da2550f", "message": "add agg+agg to syntax\n", "proba": 1.2664027053688187e-05} {"commit": "dd80c38758b4fed10c3ffcbd893d51593be51b66", "message": "improved colors\n", "proba": 6.295396133282338e-07} {"commit": "837a577d8799f0a3d7b2b0fb0e0754d85d656d57", "message": "Test of dead code elimination\n", "proba": 4.981526217306964e-06} {"commit": "238e6c1fa84b05bd8c8c2f8b9d07f656c3f6c204", "message": "Fixed import", "proba": 5.355914822757768e-07} {"commit": "3fcb82f77a4c6dec2d015ac50617d4c05a0cfcf6", "message": "Pass user statistics\n", "proba": 5.972322014713427e-07} {"commit": "83770fd6405135633fc77fb6df976e387c6e5bd7", "message": "idonteve\n", "proba": 4.6708842091902625e-06} {"commit": "b719e132511f7531fb8adbb449de1a2b8789d8ff", "message": "Remove unnecessary and error-prone book-keeping\n", "proba": 0.001061985152773559} {"commit": "a5c5a04aea967a3b13d85a3f0162f34b513e8ffa", "message": "Fix typo in ColumnFamily\n", "proba": 0.0060001336969435215} {"commit": "1e163e4a01089cc3a4fa24e6a4004250e8cfd269", "message": "Adding support for comma operator to consoleuri\n", "proba": 2.1420811435746145e-07} {"commit": "e1e023da0194c5129ea7cbb6e351e4ceb624c948", "message": "Do not allow a record be related to itself\n", "proba": 2.5822913585216156e-07} {"commit": "cb7c308cf87adf9da98f8510d7af753c478b28ee", "message": "encode value to string when packing AsciiType or UTF8Type\n", "proba": 8.833843594402424e-07} {"commit": "a433b830bc4e2ecf8d7b96f536e2e8ed8d75bb10", "message": "Adding backrefs for extended searching\n", "proba": 1.7871597890462e-07} {"commit": "8636d0a56c28d5bb6f05fe1d3d3d5f1b92942641", "message": "console log for s-expr coming from fasl when using zo file\n", "proba": 1.774263438392154e-07} {"commit": "7b5162957160c98aa32b74679a6b42878af97f1b", "message": "remove unused import\n", "proba": 7.364135399257066e-07} {"commit": "ac01c94cbfeaa8291f84fc3f640ce5fbc265807c", "message": "proper env handling for the rhss of letrec\n", "proba": 6.115146788943093e-07} {"commit": "8cd023e7596193ace53d2e76acb22ad654d09798", "message": "Fixed help text\n", "proba": 7.863039286348794e-07} {"commit": "c623eabb6fa4fb0b88a7f5e2c426495fd6a4c56d", "message": "Bumped version number to 1.4\n", "proba": 0.0011598969576880336} {"commit": "b06c080c004e84def7412dcf2c4a06015523f734", "message": "Forgot to update docstring for PCCAPlus constructor\n", "proba": 1.3368597251428582e-07} {"commit": "008822bec42441b057ee33d1d59f8886f4fb06da", "message": "new 'synchronized attributes' machinery\n\ngit-svn-id: ec97508af0aa29a1d296967d6f0ba22a468c79d6@491 286bb87c-ec97-11de-a004-2f18c49ebcc3\n", "proba": 4.009049007436261e-06} {"commit": "3fcb8cda024ce30b5296ff331143a0d86eac69ab", "message": "reverting mistaken change to fan map\n", "proba": 4.1458767441326927e-07} {"commit": "0b1900bd7a70859210169d64759d37e86f40899f", "message": "update for linux\n", "proba": 3.1169827252597315e-07} {"commit": "7094be3b4109b9830962767e2d19970cd9d78792", "message": "Rich PR announcements.\n", "proba": 1.2415401329235465e-07} {"commit": "1d44146b74ab39fbac71ee660b9a7e495eb244b6", "message": "add docstrings\n", "proba": 1.225948471983429e-05} {"commit": "86b4bef79e7aa7ac7e7713c3bffef4b6eba3ea42", "message": "try to add metadata directly at the notebook level\n", "proba": 2.70235972266164e-07} {"commit": "477aaac22df2c22f81426f81390e7a2c2c14c756", "message": "added print_function to geostats.py for py2.7\n", "proba": 1.2983330179849872e-06} {"commit": "e897205839e9f7df2272b5e5e6964451014d333e", "message": "Remove unused warnings module", "proba": 3.9084054037630267e-07} {"commit": "3017da031723e30f69fb7cd88262e9f79d838d12", "message": "Bump version to 0.8.6\n", "proba": 3.496139413527999e-07} {"commit": "d4d4e09b0dddc7cbfc95bd77c251c092e9ae1f1a", "message": "Fix a typo in specifying the error path when launching the inferior.\n\n\ngit-svn-id: 4c4cc70b1ef44ba2b7963015e681894188cea27e@149899 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 0.9999994039535522} {"commit": "ae6aa05492779652c786f655c4b32eb0120b34c4", "message": "ram/free_ram are integers in the database (closes #18)\n", "proba": 1.7033660526522e-07} {"commit": "0b6996bef61c678d50d2c5550f9d30c327ed0b6c", "message": "Fixed test_escalations_instances.py - Stop VM before detaching root volumes\n", "proba": 2.226186666121066e-07} {"commit": "3f9fe05eee6bb6a1c278318ac1ddda926e3fb440", "message": "iolib: cpu_count use logical cores\n", "proba": 7.049392024782719e-06} {"commit": "64bb59044a227301747f2a64846601bb79f991c4", "message": "Print parsed params in debug mode\n", "proba": 8.568098905925581e-07} {"commit": "4ac75cc334d039341a5386e38290f51461563dfc", "message": "correct preparation of data in StringTemplate\n", "proba": 4.3545935568545246e-07} {"commit": "ac77b076f65d9028cbad42e8ce51972e5c6fdc14", "message": "100% test coverage for trace.py\n", "proba": 1.4064173115002632e-07} {"commit": "30f2fa2e804382948ed0cb048ce849ee6d24d13c", "message": "Set _cached_content in ContextManager\n", "proba": 3.5582777400122723e-06} {"commit": "05a457296809d1c34364246bdf6774ead35a819a", "message": "wrote test: test_the_form_is_blocked_while_the_widget_is_being_refreshed\n", "proba": 8.265287760877982e-06} {"commit": "0c75dca9ae7d9a30229c2f4c6e155305cb502949", "message": "Force to close the connection when we finish\n", "proba": 1.1278614664433917e-07} {"commit": "8b1aa312d258a83ee79cf5239507d9cfed261eeb", "message": "malib: mad output bugfix\n", "proba": 1.6092642908915877e-05} {"commit": "2f5bf1c3f24bbbeaf3313adb466789579afca617", "message": "Fixed #8544: correctly cast `Comment.object_pk` to string when doing lookups. This really only papers over a bigger problem related to casting the RHS of GFKs, but that larger change can wait for a more systematic fix.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%408641\n", "proba": 5.552012680709595e-07} {"commit": "97bf981914c3b3924ba3fae398f4a10c566b617c", "message": "* Upload was referenced before assigment\n", "proba": 1.2507049973464746e-07} {"commit": "77a6443a1412bfac17c3471ff98f0889facd697c", "message": "fix error when card_data is not present in clean log\n", "proba": 3.78517711396853e-07} {"commit": "d4f62a7ae7bed98f3ee3f5c9a76f5591ec7841fd", "message": "Fixed #23161: Drop PostGIS geography fields correctly\n", "proba": 1.2638679436349776e-07} {"commit": "af8cb6b4c1305110922df11cb71564f5d1c64d89", "message": "Add repr and unique hash for branch and tree classes\n", "proba": 1.2957461592577602e-07} {"commit": "85c122e33d713c51d0ac3d8956430a8c61716ba5", "message": "s/String.String/String.Single/\n", "proba": 1.889708437374793e-05} {"commit": "29b63454603a74007536bfcd3e4cafc68bb0b53b", "message": "fixed ObjectID error, now always use string.\n", "proba": 1.1451136572304677e-07} {"commit": "9e8c73c88e1e15b4b00241376f11e656b9e1c83e", "message": "[svn] Improve literal block scanning in ReST.\n\n--HG--\nbranch : trunk\n", "proba": 4.5357103317655856e-07} {"commit": "e3bfa51ebaca4724863988d3f4ee2c59c5dce4cc", "message": "filters: edit log messages\n", "proba": 1.329776409875194e-06} {"commit": "ddab4a1e966d45446cab863c8cd6df95335637a6", "message": "Lazy load cimpl to improve load time.\n", "proba": 1.2163937412879022e-07} {"commit": "04ded503bf48689bcf5334a83e5dbff7c6837130", "message": "simplyfy implementation slightly and change to add() so that we do not use exceptions for control flow (it will only add intervals to the interval set and can not add interval sets)\n", "proba": 1.2573615038036223e-07} {"commit": "f7a6f9412d505f1cf830a999fca3eae45fd46728", "message": "base: drop duplicate base directory\n\nThis was replaced with base.py but wasn't properly rm'd at the time.\n", "proba": 1.125607056451372e-07} {"commit": "cbd06f0436d76810f645fc38a37977826223a95f", "message": "logger: Log as unicode.", "proba": 7.774709160912607e-07} {"commit": "6b39e84e804dfd644feba496965b72b41ec19a29", "message": "minor tweaks\n", "proba": 2.6824886845133733e-07} {"commit": "83cb875c2b1dff392055b6abf876cac855e8bf3c", "message": "basic functionality for elemental/species search working\n", "proba": 1.4924277991212875e-07} {"commit": "6ae49d7a7d113b32d8ed475d5bb129925113dc83", "message": "added support for html5lib. refs #10\n", "proba": 0.0005987383774481714} {"commit": "3d88370214a4ef1a325b63aef44848fa458bf47f", "message": "Fixed error in calculation of BHHH approximation to Fisher Information Matrix. I was not taking the outer product of the scores for each individual. I was taking the outer product of the gradient of the log-likelihood with respect to each available alternative for each person.\n", "proba": 1.214247333791718e-07} {"commit": "6f722392b2a78642ddd4403f85f07461bae935ea", "message": "Show only approved.\n", "proba": 1.1428716817363238e-07} {"commit": "937791e2e55007f8500baa665e29ec43653ea650", "message": "Greatly simplify nwchem string parser.\n\n\nFormer-commit-id: 56ef7d45d0ab6863f00160bc5604cece3379a545 [formerly 636ecc3293d2f5d27d8f03f85eee63691ce6021a]\nFormer-commit-id: 0a76cbfaa0bb5837889d9458e19cf21141fbc3eb", "proba": 0.9999849796295166} {"commit": "d466dc235af865424e42dbbd87a5388f265b8e5c", "message": "\nOh, this might also explain some of the slowness \npain.\n\n\n\ngit-svn-id: 121ed801b906f2796fede3157ede8745e71e6db9@18291 55e972cd-5a19-0410-ae62-a4d7a52db4cd\n", "proba": 1.0936630133073777e-05} {"commit": "e077cd80ed50c04ebd85641349c690d137767aa0", "message": "Use @wraps in cache decorator.\n", "proba": 1.1259785281936274e-07} {"commit": "70581183df254af638aaf6c3ac8e19230caa7acd", "message": "Code now works with dict: ---> {Independent Strain Object : Stress Object}, where the Stress Object contains among other things the 3x3 stress matrix, as computed from first principles\n", "proba": 1.9698438791238004e-06} {"commit": "753d9fa8121919b70d739bdd6855e270002332ed", "message": "Update aton_houdini.py", "proba": 3.150009604269144e-07} {"commit": "3bfb29b33a9d5ab587da6c109e3ddacf470fdd8a", "message": "Modify find_MAP for discrete variables\n\nThis modifies the find_MAP function to better handle discrete variables.\n\nThis is accomplished in three ways.\n1. Warning the user when discrete variables are used that MAP estimates may\nbe inaccurate\n2. Using `fmin_powell` instead of `fmin_bfgs` as this seems to be more\nlikely to converge on actual values\n3. Convert discrete values to their floor after minimization to reflect the\nsupport of the underlying discrete variables.\n", "proba": 6.641075174229627e-07} {"commit": "26ed1487bf0e4ec5bc53ff2b59e22403f94eb768", "message": "incref borrowed references\n", "proba": 1.9117933902634832e-07} {"commit": "98638dc124af0a7a99e14225ddbb7721a7f13e34", "message": "Make pynads.abc.container.Container the endpoint for __new__ for pynads class.\n", "proba": 0.00011064852151321247} {"commit": "7c97ead99866d2ed8e1b59d1b685f787237cdb1b", "message": "Fix syntax error that crept in from 167e0d3.\n", "proba": 1.4225018674096646e-07} {"commit": "7885eef7729a88864e56832910ec4c2015de22dc", "message": "Disables caching for cursor_pos (#6543)\n\n", "proba": 1.1054349613459635e-07} {"commit": "6e88306b01307a7e1a2a32747146ecf1d67fa535", "message": "Use encoding argument in recursive_encoding\n", "proba": 1.0594772902550176e-05} {"commit": "cb4fc4381b85661658885c3c5f9e0bbcb1ce280a", "message": "RX stats API/TUI refinement\n", "proba": 2.250412052262618e-07} {"commit": "11e97c36fa3ce91afc96068e8bdd28e5dbc4cc58", "message": "Simplify PackageData class\n", "proba": 6.939486070223211e-07} {"commit": "013a6b065a9bf95c5d6d24efe10d7553de32aca9", "message": "Explicit about callback exceptions\n", "proba": 7.684585625611362e-07} {"commit": "d999466b3a2238f8f7cd540b9ff24a6e719e81cb", "message": "Support incident merging\n", "proba": 2.724835610479204e-07} {"commit": "7613bacd65fe2dcccad289bdff3b42af0bcc7cb8", "message": "fix how custom_name is treated in agm_magic, addresses #213", "proba": 6.549661338794976e-05} {"commit": "4afc9c0257936ebea62fb54d4bbf86729a118244", "message": "Dictionary values aren't always scalars - may need to recurse to find true size.\n", "proba": 1.20404209269509e-07} {"commit": "0ca8427d9850f785e871369b880dbf5f853aea4b", "message": "stop converting enum to string.\n", "proba": 1.4457357337960275e-06} {"commit": "62541a3f1614d429e358192959818486925c2263", "message": "[IMP] custom_account: A\u00f1adimo un campo activo a las facturas\n", "proba": 4.734996537081315e-07} {"commit": "2f4e1a9dd0664d8ecef86e0f5c3891d4619e1c98", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "e5a2d0b78c4a4bfe12bccebf463a8f9261a780d5", "message": "annotate and rework pautils::issue_mode_to_enum function\n", "proba": 6.54607617889269e-07} {"commit": "274a5596f0a68519640c7b056a2eeb42b0284a23", "message": "[FIX] 'custom_partner': Utilizado child_of en el search de facturas para obtener las facturas que provienen de los hijos de los partners que hemos encontrado anteriormente y eliminado foreach de lineas de facturas para escribir sobre todas ellas a la vez.\n", "proba": 1.8890357011969172e-07} {"commit": "7e37bd3300867e846da516b26b8b869a13ffc648", "message": "Ensure that test doesn't fail randomly\n", "proba": 1.273617544939043e-05} {"commit": "cd86974ad87ebdbf131122a9770363a2d76179b1", "message": "remove prints from test case\n", "proba": 1.0603015425658668e-06} {"commit": "cd6ce998dc358a016165e2ffaba5228290fe467f", "message": "MAINT: Print more information upon DMRG restart via callback function\n", "proba": 1.2413507022301928e-07} {"commit": "40e8615f80954a3b8b7043cb8ba7796abdbe6ce6", "message": "MAINT: Loosen default tolerance in DMRG, now it has chance to converge\n", "proba": 1.2628846945972327e-07} {"commit": "ad3bd4134a568365e5978307ff9acdc9cde565be", "message": "Added missing comments. Clean up imports.\n", "proba": 1.0504646752451663e-07} {"commit": "6c5720a66e69b8dfd412d53e21454d14e6f802a7", "message": "create access mode specific VACM group names in shortcut functions.\nnotifications and requests won't co-exist for the same user otherwise.\n", "proba": 1.1587223980313865e-07} {"commit": "9fdbe502e6985d2165857cc027e6d7f0b4a8c3ed", "message": "!patreon: tweak output\n", "proba": 9.096457347368414e-07} {"commit": "f71c5380bc5c86fe73bbddac215b1c9970e94905", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "696403efdc02ba6cae22c7866f37d4a2b637faac", "message": "Version 0.2.12\n", "proba": 4.593922540152562e-07} {"commit": "e362bfbacc752f7bd88d93240ba0bac8e72ba6b8", "message": "- FIX: calling curves_compute\n", "proba": 2.5517417157061573e-07} {"commit": "b5dead0be47e11eb447c62d15b70617d0d187208", "message": "made db tasks threaded\n", "proba": 4.572553109483124e-07} {"commit": "d39366e69026d910cefe912ce90c1dc26ed61800", "message": "Remove the unused timestep property from the module docstring\n", "proba": 3.94930964375817e-07} {"commit": "676930f076e50f4ffaab0352a11cd8e17faa06ef", "message": "Don't crash the app if media directory fail to create\n", "proba": 9.79226342678885e-07} {"commit": "e47fbee87b8489d6ee7d708540d5a64469800543", "message": "Add missing settings\n", "proba": 3.961783932027174e-06} {"commit": "4bd1cfa851bb9e6ddac436c4a9e633a83659f1fa", "message": "Make changes to the import styles, ids used and use reverse function for URL generation instead of hard coded URLs.\n", "proba": 1.0553869600471444e-07} {"commit": "8363a3a4eb8010ddd8bc9819377ff2551fdc6a50", "message": "Add the ability to upload apks for app live to browserstack (#5253)\n\n", "proba": 1.0563516639194859e-07} {"commit": "ae73a5d4c1b763d60211aceea62380cdc7663db9", "message": "Optional argument\n", "proba": 3.398027729417663e-06} {"commit": "3b727eeebbbb848295d0a21f5dd7c7d4d4581fa7", "message": "chore: use 'latest' tag explicitly\n", "proba": 0.000197242756257765} {"commit": "62c43a6a1f8ce5d1503676d24b019b91f5861c92", "message": "Pass options to check/cmake/check.py as a list\n\nPreviously, a single string was passed, which was then treated\nlike a list. This was incorrect.\n", "proba": 2.1809307781950338e-07} {"commit": "885ac7346ec46e8cfe60f0d1141a9fb29b72fe8a", "message": "update\n\n\ngit-svn-id: 8749306704a6b25b670f622a6a63a625274cf70a@183 ac951b51-2923-0410-bde8-533199751630\n", "proba": 1.955385897645101e-07} {"commit": "ce2a3dbb13f69c8e16c1e178933974d1373a85ca", "message": "minor edit: sqlite3 test names\n", "proba": 2.3114772318422183e-07} {"commit": "ef43c11d1a2bb498e96f3dfc25b96b924688fa26", "message": "Improve test coverage.\n", "proba": 6.469725803981419e-07} {"commit": "a131519d42d0ac97e2939022b574a0d512e444dc", "message": "basemap --> cartopy\n", "proba": 2.319364824643344e-07} {"commit": "0c74c95ca39cbe740b10c7706f4f6b86a9b90cc5", "message": "Artifact cache bugfix.\n\n(sapling split of 6d69f80d6ac1a43bc3b4937f8e616fd3344086a0)", "proba": 2.1184177967370488e-07} {"commit": "4dbcc5b553c4bdc478d687a946c7434db2c7745f", "message": "FIX: added check for missing/erroneous distributed import\n", "proba": 3.0805162509750517e-07} {"commit": "64af3107390038ac9b3d76642902e192e66fcbf5", "message": "Slight refinement of previous (cd921c9)\n", "proba": 1.1915943076701296e-07} {"commit": "a00579bcaca490dfc95df4b46ca731e9e33c54be", "message": "resource class docstring documentation\n", "proba": 5.242823135631625e-07} {"commit": "03a99758dd5b4caf6c69599fb83395a406b5012b", "message": "fix name\n", "proba": 0.019891221076250076} {"commit": "5559b09218e7592c473629463b85782f040426e0", "message": "fixed article publishing expectations\n", "proba": 3.1688716717326315e-07} {"commit": "7494955bf64e8669e53a674293da8d2afd7a3dd0", "message": "And resolve contenthash if not found in local store\n", "proba": 4.4991259073867695e-07} {"commit": "7ecb5adad92dea807c9e8e9aec1a0120f3e4e8f5", "message": "fix title decision when no space is used\n", "proba": 3.046414531127084e-05} {"commit": "5503fff7df01d2a590df604c3edb8d8dcfd2943c", "message": "Media File checks related changes\n\ngit-svn-id: c15d90c68879a78f23c010891b142a02cbc7d74d@359 e6edf6fb-f266-4316-afb4-e53d95876a76\n", "proba": 6.339074047900795e-07} {"commit": "35242c3c609d9a2365e9a652866f4e65d1f7127d", "message": "Fix freq array in fft function\n", "proba": 0.00011997138790320605} {"commit": "949203a3ac102e08420c9dcad159364da653b2d0", "message": "initial updatenames\n", "proba": 4.4469089743870427e-07} {"commit": "85121754d7b1fb284e8e9ecfa126431f1fa88be6", "message": "Cleanup local_file_stat\n", "proba": 9.929117368301377e-06} {"commit": "9291939aa5270d75c4296fb9b087cb94c8c180b4", "message": "Format row ellipsis better.\n", "proba": 4.423168320499826e-07} {"commit": "d964cc1640380692bd177eb04bcd773fa4550469", "message": ":space_invader: added protocol check in env var\n", "proba": 1.9082428934780182e-06} {"commit": "2acab55eb3d9194b4970f7061964f1c775013993", "message": "Fix GoogLeNet cash\n", "proba": 9.32429486510955e-07} {"commit": "62e5f1013db8083f20247634a479c00e4d1eef90", "message": "pumped to v0.3.5\n", "proba": 8.428846172137128e-07} {"commit": "09d0ad499b18c51a362e3132bf0b462c0ea3430b", "message": "Add vars_written to MediumLevelILVarPhi\n", "proba": 5.03299474985397e-07} {"commit": "3c9b61d75ca0c25f01554c2ae78c91514ba33136", "message": "Updated mleap-scikit version to 0.7.0 (#200)\n\n* Minor update to README\r\n\r\n* updating version to 0.7.0\r\n", "proba": 1.2643043589832814e-07} {"commit": "b752a60f56c21c335ab982e22d50d3b3f9400398", "message": "Describe get_steer_event_indices() return type\n", "proba": 0.00019107188563793898} {"commit": "cf6d506c7426dbcd19d4c9d7c2d673aa52d00d4e", "message": "[SPARK-12268][PYSPARK] Make pyspark shell pythonstartup work under python3\n\nThis replaces the `execfile` used for running custom python shell scripts\nwith explicit open, compile and exec (as recommended by 2to3). The reason\nfor this change is to make the pythonstartup option compatible with python3.\n\nAuthor: Erik Selin \n\nCloses #10255 from tyro89/pythonstartup-python3.\n\n(cherry picked from commit e4e0b3f7b2945aae5ec7c3d68296010bbc5160cf)\nSigned-off-by: Josh Rosen \n", "proba": 1.3044591469224542e-06} {"commit": "1c8fba24029de725e2f77f8c1e40a5e11bcf5324", "message": "removed debug stuff in rectification module\n", "proba": 2.386644268881355e-07} {"commit": "09078351d55386c1571b801190001eb88f564025", "message": "[tests] xtram test added\n", "proba": 1.3029530521180277e-07} {"commit": "79028302ebde50085f645dc8a7aef63bfeae22b1", "message": "Segmentation faults when I try to create a new structrued array for sorting multiple items simultanously. Realised I did not need pxmax in the game, and since filenames and dates sort the same way, I just sorted them each individually.\n", "proba": 1.1682046618943787e-07} {"commit": "519936fd725edb848bf06c2ed1a43835065420b4", "message": "No issue: crawl_hawaii: Update docs around parameters.\n", "proba": 1.2195974363748974e-07} {"commit": "fce70bcdbac215c4bd6f976dba43888908ebbeda", "message": "parser.py: Fix missing reset of start_pos after path command 'Z'.\n", "proba": 1.2042005437251646e-07} {"commit": "670b0936c938f1e135ae343a38a3652f17f0f66c", "message": "modifying connection string\n", "proba": 2.2225792690733215e-06} {"commit": "83733a75355b702b8c856f3b0ef23137af1f0647", "message": "change into mac file path\n", "proba": 1.0960666259052232e-06} {"commit": "2eb6fa348dcd6de410a053c7f2a80514b8b1ba76", "message": "redeploy access denied repos\n", "proba": 6.891296493449772e-07} {"commit": "cacc5e21403d02b4d898bb51b2810976c4e42d4f", "message": "split functions (e.g. sign -> sign and sign_raw), fixed errors, reorg functions and comments\n", "proba": 1.4915711687990552e-07} {"commit": "4590adb0f772052cc377d8e239170c86b8fee995", "message": "added missing import\n", "proba": 5.612424729406484e-07} {"commit": "d479da0c690ac0e5897890a100a0eb36e3e4931b", "message": "[#2330] Fixes for production run of script.\n\nSigned-off-by: Tim Van Steenburgh <1a3790b263e2c40611d4461ca2cdd82f6666cb61@geek.net>\n", "proba": 1.0737115019310295e-07} {"commit": "9afb7d3322dc9fe05b3357246d196a0a5c85463f", "message": "Fix path issue in parser\n", "proba": 7.530646598752355e-06} {"commit": "4212953f5026d2c26b63520b4dd831e9d0b6785b", "message": "MB-30200 Check if auditdEnabled is define before using\n\nChange-Id: I75fb290ae40f9b31dd6643c68038de0d1c36a289\nReviewed-on: http://review.couchbase.org/95937\nReviewed-by: Mike Wiederhold \nTested-by: Patrick Varley \n", "proba": 1.7209154634656443e-07} {"commit": "3068b5d4b18962a398a1969f4644a1d74c766c8e", "message": "add AgentFunction.cluster method\n", "proba": 1.6067059505076031e-06} {"commit": "338a600710c3565703a993a0d83caf7bc4feae56", "message": "add Cluster.is_public method\n", "proba": 9.652628705225652e-07} {"commit": "0a895e378579908a6a9157777f596dd628e8e93a", "message": "fixed bug in totals to function_resource_table\n", "proba": 4.0823951508173195e-07} {"commit": "e3c329d458ccbd7774b6cd402446c571826b874c", "message": "MAINT: Minor changes to print statements.\n", "proba": 1.2792978054676496e-07} {"commit": "6a5d95a51796109e41994ef98e4698310a7a7f86", "message": "fix quality\n", "proba": 8.199270951081417e-07} {"commit": "105e59945ecae7b9c236888e31e11e7f8eac72a0", "message": "Fix instructor test #3\n", "proba": 4.2279107219656e-06} {"commit": "00882b6c1ab0e8eda3f7a0039f61c2df8738265e", "message": "Forcing dynamic credentials for identity admin\n\nIdentity tests work with credentials, so it is safer for them\nto always use disposable credentials. Forcing dynamic creds\non regular identity tests would be however to restrictive, since it\nwould prevent any identity test from being executed against clouds\nwhere admin credentials are not available.\nSince All admin tests require admin credentials to be\nexecuted, so this will not impact the ability to execute tests.\n\nChange-Id: I0d7716e83d776d83eafe04dd71ac4888c0b71bc4\n", "proba": 9.265478183806408e-06} {"commit": "5ead24a44d6666291d89ebb019cc4bd60b6f9c1c", "message": "preferred commit messages during cutting a release\n", "proba": 1.6072026198798994e-07} {"commit": "103f8deaf46e4022c0e3ae3043e4df3a158419b0", "message": "Removed unused constant.\n", "proba": 2.1731078447828622e-07} {"commit": "9b43fc9bff5faff4cb7fd7b0ab74f37cfcb2df30", "message": "Remove global keyword for consistency\n", "proba": 1.4608968967877445e-06} {"commit": "50e41fa1cb68c20a08ecd9b8bb06b9b27441c22c", "message": "First pass update for coefficient_variation_flags.py\n", "proba": 2.522972977203608e-07} {"commit": "8dd9c62b6b7eae4e6b67b13ea1b9e9ca55594212", "message": "first commit\n", "proba": 2.536962142585253e-07} {"commit": "7113ec248ca504827ca15d43abd7116f0efe3514", "message": "Stop sharing cookie for CSRF, but continue\u2026\n\nsharing the session cookie with KoBoCAT. Requires accompanying changes in\nKoBoCAT and kobo-docker. See kobotoolbox/kpi#2658\n", "proba": 1.1095393404048082e-07} {"commit": "0a4c1a268fb2886641c0cdd2b6c1564124b3e1e7", "message": "Use \"key_files\" instead of \"key\" argument since \"key\" is deprecated and we don't\nperform a mutally exclusive check for key argument.\n", "proba": 1.1232629049118259e-07} {"commit": "cd5f2fa99aa77ad9c0bccf75771b9ddbb1e9e9b2", "message": "Small bugfix in user import script.\n\nIn a past commit (8903c03e4b2e47a5776f6ff370ffa9a3a81959ab),\nI changed the status code when creating a user from 201 from 200.\nUnfortunately, I never updated the import user script.\n...until now.\n", "proba": 1.1881083850084906e-07} {"commit": "9cef346913274415c5448ba662e3f3bed07b2db9", "message": "append if license if found\n", "proba": 0.0003364605945535004} {"commit": "cd134f55604eb6fbea893159b8d396cb419bee6a", "message": "Added a unit test.\n", "proba": 1.1761460427806014e-07} {"commit": "6f208f1485cd814394482a5f901af2647872fc2c", "message": "Fixed typo: change expiration time to 5 minutes (300 seconds)\n", "proba": 0.00014971756900195032} {"commit": "06db3e8fad026dc88135e08ede574a2219d4e3e9", "message": "Impl collection all artifacts from all poms\n", "proba": 1.1788242204602284e-07} {"commit": "a40341c951cfe8cc65903c0ff8aaea72999e3dbf", "message": "Logs: added time to logs\n", "proba": 1.7183208456117427e-06} {"commit": "e2c31a823f7708f3f0583ef460b45458fff5db14", "message": "Fixed property definitaion\n", "proba": 4.1506515913170006e-07} {"commit": "48be243d5932dfb317c22d14d23b6c3ecfa4ab1c", "message": "[Android] Add a flag to skip provisioning check during device status check.\n\nThis is required for a downstream bot which builds Android from source and flashes it with every build.\n\nReview URL: https://chromiumcodereview.appspot.com/17893011\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@208902 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.1153300622245297e-06} {"commit": "0c5c43bfa1550209f94df5ae71d4943b4956d0cd", "message": "Make journal_dump py3.6 compatable\n\nCurrently journal_dump passes `capture_output` argument to subprocess.run\nwhich is valid only since py3.7 while we're running systems with default\npy3.6. We replace capture_output with old proven subprocess.PIPE for\ncompatability with older Python versions.\n\nChange-Id: Id7713d8eeec86a910739ac64d3b0815fcfeb506d\n", "proba": 6.006255830470764e-07} {"commit": "979c186cc40ae34367f58d7b5912cb9c1d70de6d", "message": "Remove redundant try/except.\n", "proba": 1.7995484995481092e-06} {"commit": "1034d9acc84317b21b953d3e9fd6ad5519d1c570", "message": "tools/gen-cpydiff.py: Set the Python import path to find test modules.\n", "proba": 1.188998197676483e-07} {"commit": "1dd738537cd52eb43523902e0396cecdf101df10", "message": "run through all files before failing\n", "proba": 5.521229695659713e-07} {"commit": "3c7d43a5dde71cf78018dfe5ad91a1622cfcbc81", "message": "re-indexed pandas df (nested values) along cheking logic for length of nested values vs empty values\n", "proba": 3.3588776204851456e-07} {"commit": "31cbcd4e729c3d6693de6d1ca1817de16cf86587", "message": "uk: pep8\n", "proba": 3.097637090831995e-06} {"commit": "d0ee1b06e4394e1f139226ee2b76b286bd7df1ec", "message": "[modules/nic] make exclude list regular expression capable\n\nAllow the usage of regexps in the exclude list, but keep the \"this is a\nprefix\" logic for backwards compatibility.\n\nshould address (see #738)\n", "proba": 1.0142566679860465e-06} {"commit": "4e6abda0f7cd2ba89333eb252031fab17e015c3d", "message": "Update docstring\n", "proba": 1.205138460136368e-06} {"commit": "e5d69bcaa1e730af41f73f0f49ad24093ec0ffa2", "message": "Do not explicitly pass current user to `_may_view_drafts()`, rename function\n", "proba": 3.874725678087998e-07} {"commit": "61001269776a7a90611b2ce5f8c4110f214f057e", "message": "removed double catlib import\n", "proba": 2.70191662821162e-07} {"commit": "d69b137bd19e0363173b120ff4f68becc6be7b3c", "message": "Use get_user_model within test backend\n", "proba": 7.064352871566371e-07} {"commit": "d152776be957f37ba41d418ad64225b7c9f02ba2", "message": "Fix ping start collect for other targets than regression\n", "proba": 2.993984651311621e-07} {"commit": "c751816e234bf737225430f6c3ffd3e1a6661189", "message": "Add test case for PKCS#7 padding\n", "proba": 9.601225201549823e-07} {"commit": "7bc3fbd9ffebcddeb24dabda35c028b7a0ac25b6", "message": "cms comments now blanked\n", "proba": 1.223978500775047e-07} {"commit": "d072b948188c7811e4ce1136ce139cea2f6320cd", "message": "[IMP] mo permitir que los usuarios se activen como course creator\n", "proba": 1.3920444530413079e-07} {"commit": "656b7a5fb2e93b732c820a3076e77abbc71273ae", "message": "removed useless and confusing code\n", "proba": 2.7324492748448392e-06} {"commit": "e0ba8391863a2e1b23b8fb264a4d5e312afc9e70", "message": "adding parameter sections for fuzzy, ssm, discrete time.\n", "proba": 1.1613698092105551e-07} {"commit": "b54ccb289b5ac918843c9c2ccef96a220710a11e", "message": "tweak\n", "proba": 1.375922693114262e-06} {"commit": "2a11ff3ad7ba207d8fb5f98047360f776379ee48", "message": "Added embedding layer;\n (1) maps one-hot encoding into embedding space;\n (2) splits inputs into 'steps';\n", "proba": 3.4333146459175623e-07} {"commit": "d37b933939ddb4483397aa8b9f79bb4404bb5fb1", "message": "404 on missing term instead of 500\n", "proba": 0.00023555904044769704} {"commit": "1a2207f4c9ce002712b3f30e27a4a5564382a26c", "message": "migrazione dati assopy -> django\n", "proba": 2.104381024992108e-07} {"commit": "898e14d5ea36d671fc5524a229a88400439745dd", "message": "Try and ensure that metadata warnings only get raised once, and fixed a deprecation warning due to a change in the Astropy API", "proba": 2.6186174295617093e-07} {"commit": "7f8285bf99817a1dfda7917542be5a431a3a738c", "message": "Trigger NotImplementedError with slots message before mro gets executed (will fail for old style classes)\n", "proba": 1.0154320762012503e-07} {"commit": "4a196f0b4357b1dd35d5dc0fa82866b317d3781c", "message": "Parse CDS units with Unit 'cds' format.\n", "proba": 4.761414402310038e-06} {"commit": "2a369039236a4aad0ce443dafc917bc3be17deee", "message": "cablegatesearch does not provide the JSON API anymore (became part of main WL site), fixed \"cable_page_by_id\" to work with the HTML page instead of JSON API\n", "proba": 1.429595499757852e-07} {"commit": "c2bc8eae6b8ac48538f99a0512b34830b467bfda", "message": "Fix issue with numpy Fortran data order using Py3\n", "proba": 2.783476247714134e-06} {"commit": "a30c615543620afd3fffea136e250fd944b33cb7", "message": "Revert \"tools: add the ready timestamp for Copy as well.\"\n\nThis reverts commit e185ba8a47a8295f2e85a1932033a0190701969f.\n", "proba": 1.4549722493484296e-07} {"commit": "614286af2c881a1d56929e028dabbc70e08aea24", "message": "Added ;\\. as possible suffixes\n", "proba": 0.9999916553497314} {"commit": "6c18a45899c7edb570136ee7bd86b7d32d46f893", "message": "Fixing SQL query to work with SQLite boolean fields as well\n", "proba": 2.3479627486722165e-07} {"commit": "fb5c4c960a85ada88c6b89d29776821bf9ff2d9a", "message": "switch to using six.string_types for py2/3 compatibility\n", "proba": 4.74954106266523e-07} {"commit": "ec62f023485257d9c9e41d46353c7ccafcf3ede3", "message": "XDG_DATA_HOME/zenfig/templates is prepended to the template search path\n", "proba": 2.8222939363331534e-07} {"commit": "54bd47cc65d867072dbe6e194bf3196c245a6c09", "message": "The package import of 'acstools' will now use the TEAL function 'print_tasknames' to advertise the names of TEAL-enabled tasks in that package. WJH\n\n\ngit-svn-id: 68a8359b42b6667ddfe403889d8312690d496a38@10209 fe389314-cf27-0410-b35b-8c050e845b92\n", "proba": 2.072529923680122e-06} {"commit": "1a6abfdd26c0134df1d153518cd2843e4fd2fe7f", "message": "prof: Avoid blowing up on unamed tasks.\n", "proba": 1.6765451960054634e-07} {"commit": "ddcda6770a852cd8662350dc29e449b6ac7fafc4", "message": "Implement @mdboom's suggestion for the _get_nd_proxy_class method to handle checking the data itself\n", "proba": 1.430124569878899e-07} {"commit": "7349a0b13d74958e67b45152eb09e302146a22e9", "message": "Fix out-of-bound index in EVMWorld._process_pending_transaction (#786)\n\n", "proba": 0.0012722312239930034} {"commit": "bfac611d16dd7297ae70ed3d9bd53f818f6d5822", "message": "fix(__init__): change names\n", "proba": 0.9962443113327026} {"commit": "dccbe2e88a606c669a8a12074c5d3c8bb8116d87", "message": "legion_prof: now sorts the channels when printing\n", "proba": 2.885339654312702e-06} {"commit": "de1f455c0ca5d632151a293f790291edd9d689c8", "message": "Stop assigning unsaved instances\n", "proba": 7.419380949613696e-07} {"commit": "50a0412a4a582216e32a94400fd9512e644f4880", "message": "Updated pprint to reflect changes in terminal_size()\n", "proba": 1.25734715084036e-07} {"commit": "fb53dcd402a69c81948c54ad95b361a6e5f3471e", "message": "breathe some life into l10n_site\n", "proba": 2.552635010033555e-07} {"commit": "7f7abf6c3f6a8f948339f69ee242c21d1581934c", "message": "remove unnecessary imports, remove cache suffix setting, ensure matplotlib uses numpy.\n", "proba": 1.0751849544021752e-07} {"commit": "77d67a4d29a1c4e408a998d40017ef375d7450b8", "message": "Fixed #23. Turns out markdown.pl only allows up to one space between brackets in reference links. Now we do as well.\n", "proba": 9.561124159063183e-08} {"commit": "716b0227863b09be2ee241d28a26fe22b9126cf3", "message": "alfa tests pass on python3. Cannot test on python2 because of this\nbloody error:\nERROR: You appear to be trying to import astropy from within a source\ncheckout; please run `./setup.py develop` or `./setup.py build_ext\n--inplace` first so that extension modules can be compiled and made\nimportable. [astropy]\n", "proba": 2.3025798157050303e-07} {"commit": "80c26f33af1ec0563c132153c31f41c1921037f6", "message": "Print _shared_dict and _run_while\n", "proba": 0.002909471048042178} {"commit": "a3e5cd344d9467a90a83ac85eb447bda084a127c", "message": "Let mk_hyb_file.py replace \u00dfSS in .chr.txt files with \u00df\u1e9e.\n\nHere these mappings are used to convert from uppercase to lowercase,\nand mk_hyb_file.py doesn't handle multi-character uppercase sequences.\nTherefore, in case the sequence \u00dfSS is encountered in a .chr.txt,\nreplace it internally with \u00df\u1e9e.\n\nTest: make -j\nChange-Id: I8f678aad9298784f70645c453ec07da5bf43cb66\n", "proba": 0.00011172295489814132} {"commit": "0e2ec0cd38f3c9518f74f988b2ca0ac9c14b6906", "message": "Add a check that you can lctl ping from the OSSs to the MGS prior to creating a filesytem.\n\nChange-Id: I03c89aa577671c0204bb2209e3d1a65f4690f54d\n", "proba": 1.0498353049115394e-06} {"commit": "fa7765fb54effe154da223ba3145888fe996968e", "message": "Check if fields are valid without forcing to lowercase\n\nThis allows to query fields like ``modelMag`` or ``psfMag``.\n", "proba": 2.0129132849433518e-07} {"commit": "44efa7f8c8eb8937dc87417fa931d0fd3a117f20", "message": "Updating URL of the sdss spectral templates\n", "proba": 1.8400569956611434e-07} {"commit": "61d61d81001651ace5d5b7aea5d13909fe8ee09c", "message": "Adding get user account details by account id method based off username/userkey method (#814)\n\n", "proba": 1.5068781067384407e-07} {"commit": "3d752f85b3cd74c28825b5833254f95924e4c2c8", "message": "funciton rename\n", "proba": 3.920963536074851e-06} {"commit": "4c53340f29b280dca9d3fb9e38b0cf5185bd4960", "message": "Fixed a initialization problem introduced by the last commit\n", "proba": 3.1905653941066703e-07} {"commit": "1cc196a6851fc0da56b6f8ee6dd497040747bb88", "message": "Better if/else block formatting\n", "proba": 6.428984420381312e-07} {"commit": "19d21d2d512ea3c1e86d42d2cdbe1fe138a8d872", "message": "Bug fix in ArrayUtils.each_band_unmasked\n", "proba": 5.278392904983775e-07} {"commit": "68d506e09b5512d3883b0c833495c0e2f97e68ab", "message": "Refactor task review date requirements\n", "proba": 1.6201853213715367e-05} {"commit": "a6ebdcf0608e7076eb1f899922a3a906c2f93bab", "message": "bring in maxs updates to manager.py and ensure it works with carters authentication logic\n\nSigned-off-by: Carter Landis <84a516841ba77a5b4648de2cd0dfcb30ea46dbb4@carterlandis.com>\n", "proba": 1.223658756543955e-07} {"commit": "ef3d44c92ea1c062f9ffb1e65f3fa2bb329e890c", "message": "started on HI to tree mapping\n", "proba": 1.2614691513590515e-07} {"commit": "fa828bdcf2d7a29172b7ffcac3572f05ea929abd", "message": "Fix time zone\n", "proba": 0.914862871170044} {"commit": "56a1bf14c2aacfeed847416e0928d054accbcd37", "message": "casting to float32 after doing the trainig as to avoid error from theano\n", "proba": 1.2414868422183645e-07} {"commit": "5256c922cc74592a5cab47a887efe1562c5b6d54", "message": "some cleanup. simplify messages.\n", "proba": 3.6105366234551184e-06} {"commit": "58e096ea1b6aced8abe8cd0cd0b14a239a4bb255", "message": "string\n", "proba": 0.9999994039535522} {"commit": "ab798926fffd1d9460af45897ad147872beb4192", "message": "Fix botched merge\n", "proba": 1.9083138340647565e-06} {"commit": "539ad7813f4135cc7d1d3b026e79279bad81b33e", "message": "Minor\n", "proba": 3.334548864586395e-06} {"commit": "30f7d23297287302e7b68995a1b8a4c6e4c37c99", "message": "do not show pubkeu in validateaddress if the key is imported\n", "proba": 2.362661888355433e-07} {"commit": "e9b346ed29fc963c000e3380e4781d613610fc3a", "message": "add command for master private key\n", "proba": 1.0280431297360337e-06} {"commit": "d830febc49a7dc9dfd1e6c7e8b98686e29611faa", "message": "add RebootNodeWithPCU call. fails gracefully if dependencies are not met.\n\n\n", "proba": 1.2895405632207257e-07} {"commit": "a99f2edfacfbb7f7bf1060c4f75e7fd040df1618", "message": "Revise descriptive comments\n", "proba": 1.0392204785603099e-06} {"commit": "738dbc233cb72f227c1f01e88ecd278805e74d93", "message": "don't patch get_query_set for abstract classes\n\n\ngit-svn-id: b1a559638474b4fd03861be3ce73828307c8b77f@550 e071eeec-0327-468d-9b6a-08194a12b294\n", "proba": 4.726235147245461e-06} {"commit": "a94599501d1250a3f6d474491da7bccc79c01b06", "message": "Remove superfluous class\n", "proba": 0.9988841414451599} {"commit": "e3b0696e045e220920bbe69e3e5e15f87c2b638b", "message": "Downgrade error to warning log.\n", "proba": 1.3484040550792997e-07} {"commit": "46077269450f98505308736251b3f08ed3c6827f", "message": "CA-40618: Change path to the supplemental pack\n\nSigned-off-by: Javier Alvarez-Valle \n", "proba": 1.0443952902505771e-07} {"commit": "eba724cd45b38973e7a99f99c8b56eca5cda1442", "message": "Create directory after checking for root\n", "proba": 3.6594246921595186e-07} {"commit": "9a7af682e422ca01dcc2d123969378a7884245b6", "message": "REF: added function get_parser()\n", "proba": 4.2446907855264726e-07} {"commit": "bb5d7b37e4cba4bfb29c1d7e7f73d236f44e6d6b", "message": "remove error type for nonexistant revoker\n", "proba": 6.01362444285769e-05} {"commit": "bce44144efee60adc26b962c6f407cde5cd6dee4", "message": "regression-config.py: reverted to use int-DDL.sql & int-schema.py for\nnow, until various bugs related to IN and EXISTS with NULL values are\nfixed, e.g. ENG-8436.", "proba": 1.055924627735294e-07} {"commit": "87d4ae9074c7a2d1393ca8091aee84be5c2adc3b", "message": "Update boostrap configs in gitzip.py.\n\nRemoved dependencies on other slave code, since this script will\nlikely not be run on a buildbot slave.\n\nR=ilevy@chromium.org\n\nReview URL: https://codereview.chromium.org/18558006\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@211467 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 4.432873993209796e-06} {"commit": "d45420ee50da8bf3973cfb47ab98b0a9dce9f60e", "message": "Updating based on latest assignment req. updates\n", "proba": 0.9985995888710022} {"commit": "a8c37f87524a102f1ddd8a099124b73e0b3ad812", "message": "[PYTHON-1179] Connection errors for possibly parked cloud instance\n", "proba": 1.2286706407849124e-07} {"commit": "54643cda5765dd39766f7b29f91288d073cdfb67", "message": "Remove functional test dependency on config file\n\nThe functional tests currently depend on a physical config file to be\ncreated before the tests can be run. This change removes this\ndependency because default values are defined.\n\nChange-Id: I18c9ee72831ebd5ba1357479dcf2160410179779\n", "proba": 8.873478691384662e-06} {"commit": "4e5ebf16dd3ee19a79a24ccd8f721af19273ff69", "message": "added to cluster version", "proba": 3.228846026104293e-07} {"commit": "46f278a3399f757487fac4017fdc66b860ed237d", "message": "Clean up build directories, so we don't accidentally reuse them. Add --reuse-build option for the old behavior (which is marginally useful when testing locally).\n", "proba": 1.1114901354858375e-07} {"commit": "841701cdb713147ead54745a2e6fb125fcc35f82", "message": "Keyfile name can now be overridden with DOTCLOUD_KEYFILE env var\n", "proba": 3.022835528554424e-07} {"commit": "36a06c257b8bb3d20dba03d8b4d205382e97f3b5", "message": "Add support for images with tox.ini\n", "proba": 1.9752077662360534e-07} {"commit": "4b8f468ff1afdd87401fbb4d02e1d8beadce42b6", "message": "added cdmi_copy_dataobject to container object capabilities\n\ncopy capabilities have been added, change the response on\ncapability request to reflect cdmi_copy_dataobject capability.\n", "proba": 1.0474555267592223e-07} {"commit": "0f5882108ccf9f1302b8d0dfb9912529598b4a2a", "message": "version updated, 0.9.4.12\n", "proba": 8.686111527822504e-07} {"commit": "b2cdfcc04e8f647facfcef736ae9feea73f09cd7", "message": "use python3\n", "proba": 0.000888947572093457} {"commit": "0b6252cc161d91d8eb26ec82d244eebba39f5b80", "message": "minor refactoring\n", "proba": 5.747284603785374e-07} {"commit": "164f19f37a1a6042d24e4c94d130d333aee6d74a", "message": "Remove unused file\n", "proba": 1.8874235365728964e-06} {"commit": "efc5a79e42a7c0c82bc4a2219ca7ba427269fab4", "message": "bad grammer in parser errors\n", "proba": 5.159112788533093e-06} {"commit": "e8a84fa6a17b77fedbffac4d58eb93b64b079c29", "message": "Some test fixes\n", "proba": 4.91665900881344e-07} {"commit": "318d92ad5f1b42c9e7d7d84cb781930657e2faf4", "message": "Fixed \"Failed to lookup spotlight\" bug\n\n--HG--\nbranch : trunk\n", "proba": 2.2515799003031134e-07} {"commit": "30c2a62e50e31064ed351e6bc6a889510c8b0839", "message": "change -h to -d in ltk list\n", "proba": 2.997618366862298e-06} {"commit": "ad01a111edf48f78a29ce1b78331a459bdd658a6", "message": "Handle missing build object\n", "proba": 4.584898761095246e-06} {"commit": "bd1a2edea01e80e2585827b341ed72a933cebe7b", "message": "Comments with explanations.\n", "proba": 1.1561240143009854e-07} {"commit": "468a07327ac8af68784e43d1b84479559a4f6add", "message": "Bugfix: when there is only one IP:Port, [serverType][key] is a string instead of list\n", "proba": 9.241836778528523e-06} {"commit": "9be117a19730e88e590a852960517383cb6675b1", "message": "Modified settings for Django REST.\n", "proba": 1.177380539729711e-07} {"commit": "45960ed0b1f85cbb49e611b2b48c9616b6f43212", "message": "removed functions related to python version of GetOldTweets from tracking\n", "proba": 1.415170629570639e-07} {"commit": "2c2ce7c3cb6f88064acc93015f2774944df6d855", "message": "In case that multiple tools were found for the same combination list all of them in the info.txt\n", "proba": 3.0141413844830822e-06} {"commit": "8ac882a255a82912f8d612f0a4db30aa42fa4168", "message": "added schema variable to fix flask startup\n", "proba": 3.818409766154218e-07} {"commit": "e9e2e61bba0d7b9039ffd23aead4f89b18cfd2ef", "message": "Includes admin for User Interaction\n\nclose #1389\n", "proba": 1.103949571756857e-07} {"commit": "501792f666c02225dfa8c8d16487488532c14f45", "message": "added move_sequence() method\n", "proba": 2.8188799205963733e-06} {"commit": "b6a6d71dad01978458ba161be29db34eea0e71b6", "message": "Adding version info for multi-phase in UVH5\n", "proba": 1.1943578215323214e-07} {"commit": "ba1715915b1d225b3f7edeaa1abecda6f24d4c3f", "message": "Document validation; ensure bad choices don't destroy the symbol set\n", "proba": 2.4132717157954175e-07} {"commit": "98deaadae4c9fbc9ebe950f0b2a1db7be938b526", "message": "BUG: result of textwrap.wrap needs to be joined\n", "proba": 2.019472020720059e-07} {"commit": "961bcb3cbc23ba8177914fb9ecff3e9fda748338", "message": "REF : Removed unwanted comment\n\n\nFormer-commit-id: efa2404a70aeff6b6c51fa399796ed68dac09f2f\nFormer-commit-id: 0870fbfeaa6b140525b09813b6906255d7588cfa", "proba": 1.8471637019956688e-07} {"commit": "909c4da76cb60a5d3396f53dcc9d69602e476e8b", "message": "changed verbose name for created by\n", "proba": 1.6187995299787872e-07} {"commit": "0b816daad38183c2c61a172fa3283678882a2b97", "message": "Updated from Brython Server: 2/22/2016 2:46:29 PM", "proba": 1.1239830399745188e-07} {"commit": "68638455a705174620d3c0eaaffb366d88cf69dd", "message": "Updated from Brython Server: 10/27/2015 2:34:47 PM", "proba": 1.0886517998187628e-07} {"commit": "e6699aed01f6d58c4910c6d7b80003fe0d2f70f8", "message": "Moving Shell2 and SendMail from stress to test_utils\n\nReview URL: http://codereview.chromium.org/5321009\n\ngit-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@67365 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 5.116842771712982e-07} {"commit": "1e1c747ee48fa80af7d99fba0311b9465e795540", "message": "Force generated instance methods to use keyword arguments\n", "proba": 2.8394941864462453e-07} {"commit": "4e68da437496ddf8e6158103e7bd44698bbcd291", "message": "Fix predict test\n", "proba": 3.593651490518823e-05} {"commit": "82ab2567ab432b98fb89325f29f374bc08a82da0", "message": "added additional passes since Arc chokes adding more than 12 or so rasters -- oh the joy\n", "proba": 1.023499649477344e-07} {"commit": "e6e0cb24e7f2819e5294beacfdf917fcd8db2fb4", "message": "\u5224\u65ad\u662f\u5426\u9700\u8981parse_logger\n", "proba": 1.0380249477748293e-06} {"commit": "65948cb5d038e95cc8b2e3b2fa3f3ef9770205b9", "message": "Update Dumpling-Bot to Alpha 2.0", "proba": 1.527650539401293e-07} {"commit": "f76cb858136b843f495d9f1365734b9a029d253a", "message": "support new /importer POST input and output formats\n", "proba": 2.435462533867394e-07} {"commit": "8bb87be5f2e4de22bde1fd412ce60f664412bc46", "message": "make empty snapshot in get_empty_environment function\n", "proba": 6.098895755712874e-05} {"commit": "963e77d132a0c12651f1c4859de59fc761a8a5be", "message": "1.0.2dev: merge [12203] from 0.12-stable (refs #11258)\n\n\ngit-svn-id: 3aa280b99a9b480b02b1e2eda394e64594ad3297@12204 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 2.336268380531692e-06} {"commit": "48ab0a45671031afa83634088b74a4cf6868af87", "message": "Added label to PropertyGroup's name field; issue #158\n", "proba": 1.4690823491037008e-07} {"commit": "9c578812e816959be9feed7819bc6091e0ec5cec", "message": "Added money type to SQLA_TYPE_MAPPING", "proba": 1.7924833173310617e-07} {"commit": "ec52242175645e77bbb1ae63387db768025132f8", "message": "Fixed stupid bug\n", "proba": 3.30973733753126e-07} {"commit": "9a427e4cbc5ae048b638eb8f2aee579c0fc44bba", "message": "logout helper placeholder\n", "proba": 9.114502290685778e-07} {"commit": "30b438f248d197a985a5287bba81373557ec4168", "message": "Format consistently with other tests\n", "proba": 1.9509788273808226e-07} {"commit": "150ed947a3201c0fa59eed47b2a00f2f302ca0c5", "message": "FIX: Rendering of list fixed\n", "proba": 5.188210252526915e-07} {"commit": "f5183363c1ad61cac0586efdbaf70ffcaf76f4ea", "message": "globals / singletons\n", "proba": 2.548189286244451e-06} {"commit": "c7da80feacb8a39862541227623b16584c0f64ce", "message": "transform_session.py minor changes\n", "proba": 6.231886686691723e-07} {"commit": "84f993400e871a03583dbec2b15253c812d81e20", "message": "bugfix in usutils in reading in function data\n", "proba": 1.7980048028221063e-07} {"commit": "18b18e5efd2e12e4f0d5f10bdf2095c36cc0d88e", "message": "Remove x265 from file name\n", "proba": 3.49706397173577e-06} {"commit": "972823318ef93c173cc375c62957bd3c11edcc6c", "message": "A simple plugin API\n", "proba": 3.64285398291031e-07} {"commit": "f4619b5989a6d7cb4065a98018ec25cbfc856d8c", "message": "Bump version number", "proba": 2.1583066427410813e-06} {"commit": "01cf52f148226e60391b86399a33038f6d2f5e2d", "message": "Update vieworderings when renaming tags.\n", "proba": 1.1542577738055115e-07} {"commit": "f0535948246513d4f3fbff9e023cca2beb04c718", "message": "Delete __init__.py", "proba": 0.0006957629811950028} {"commit": "642bd83cd6c186b426bca713403fd6a7effdaa6f", "message": "logging just after a message was processed\n", "proba": 2.9524997557928145e-07} {"commit": "17905e5ac22c3fddad16d93079c0fdb0080a4a88", "message": "Increased version number to v0.4.3\n", "proba": 0.00019609701121225953} {"commit": "0883f94723bba00cf16f026514ac5cde096e9644", "message": "minor fix in handling of Rrange\n", "proba": 1.2535421944903646e-07} {"commit": "93d0ea321acdc2c8db8c1373f42c71e5774ff979", "message": "more debug\n", "proba": 1.390716164451078e-07} {"commit": "f7a0df799b6cf3e993820952dbb9aa530f20aa5e", "message": "removed attribute-change type check from asset activity test\n", "proba": 3.5913393503506086e-07} {"commit": "c0ce81580be42c7f821c849b489f6267719264be", "message": "fix bug lp:1007557,remove unused functions in utils.py.\n\nChange-Id: Ic8cfe61effd357c49f651fd6cd6e6b721f6addd1\n", "proba": 5.091723323857877e-06} {"commit": "d33060d7befa22abbcffc6915adaec5bb7616020", "message": "Do not make READ calls after EOF\n", "proba": 1.7437601229630673e-07} {"commit": "6d45b973579817919dc503475a9fef4372ee3a5a", "message": "tests: workaround 'int' name being shadowed by module name\n\nqubes.tests.int shadows 'int' type in qubes.tests module.\n\nQubesOS/qubes-issues#2241\n", "proba": 2.3116183456295403e-07} {"commit": "5b4f82c5523f24213c221b403f7fe4e89eeb1803", "message": "fixing identation\n", "proba": 1.1205020200577565e-06} {"commit": "af83e2868edf4c88ae59520fa214d815c3b43e29", "message": "added main() function to uniParser\n", "proba": 3.0051580779399956e-07} {"commit": "998db5e0de2e86c60ab83ed20134db09bc91aeb7", "message": "Integrating error notification by email into GA4 MP conector (2)\n\nChange-Id: Ic53845f8740cd6ed071f808d17cada2280d04899\n", "proba": 2.9478687224582245e-07} {"commit": "57330d3198a40b550b3c07c06ba1749af1265657", "message": "New version of fileutil (second attempt) to resolve the problems with no picking up rotation changes from ASN table when no shifts are provided. WJH\n\n\ngit-svn-id: e4aa3cfa51ba591d1cd1dbbaf7e4a2c2b5d7a7ff@710 fe389314-cf27-0410-b35b-8c050e845b92\n", "proba": 5.395432253862964e-06} {"commit": "00c1c2bce1dad7f8f0b2adf6a818f61c5f43090c", "message": "fix null case\n", "proba": 0.005531735252588987} {"commit": "0385f9cde4d30cb7b0106b66e0a8003fa376fdfd", "message": "trying another cleaning approach\n", "proba": 2.833394319168292e-07} {"commit": "13a1033c55c61ac7632543043271d88cf57448b7", "message": "Set logging level of log_file_handler to DEBUG\n", "proba": 4.950387301505543e-05} {"commit": "09cc2a6b785828c460bbeb945cb2e14a998526ee", "message": "Added asset title for markdown assets\n", "proba": 2.19272436652318e-07} {"commit": "1a5a3efbac4ddfbed436bfc8388f74214da33c8a", "message": "Fixes #794: Changed dimensions for allowing tensor product of states (#795)\n\n* changed dimensions for allowing tensor product of states\r\n\r\n* removed reduce for Python3 compatibility\r\n", "proba": 1.5854421064886992e-07} {"commit": "778fa85124cda66329e25cffe05d0811abc3cbb0", "message": "refactor: set timeout for infinite while loop\n", "proba": 0.001373107428662479} {"commit": "5f00c3020073962edbeb2f3f709c27acdb09fd74", "message": "i18n: Use CustomTarget.known_kwargs at permittedKwargs()\n\n@permittedKwargs() is basically copying the logic of CustomTarget,\nbut it is not actually up to date, leading to warnings on perfectly\nvalid values such as 'build_by_default'.\n\nUse CustomTarget.known_kwargs instead, and only append the specific\nkwargs of i18n.merge_file().\n\nFixes https://github.com/mesonbuild/meson/issues/5079\n", "proba": 5.568723736359971e-06} {"commit": "bbe158f8e904dec54d02136b0ba870c24617174c", "message": "work on new stream functionality tests\n", "proba": 2.644668199991429e-07} {"commit": "686c60167df6838b164edcdfec91c2d993fc0327", "message": "update repo name\n", "proba": 1.061924763234856e-06} {"commit": "0f23ca9b0643e2c891581ae59117db3b60ff3cce", "message": "unnecessary import\n", "proba": 2.0003569716209313e-06} {"commit": "8db7acf7676c35a142ea7f17940e82002d8f71a5", "message": "Made summary_info a public attribute.\n", "proba": 1.0711872988622417e-07} {"commit": "3f8cde2c8c34543e00ef8d730e6a4c1b51503f39", "message": "return mean and std\n", "proba": 0.9999285936355591} {"commit": "4ea08c8a9017a90c6c814b3773f4befc260f0244", "message": "Remove import from sparqlquery\n", "proba": 2.6742867476059473e-07} {"commit": "1875667d0d75361f2e802d150650820e3a7fb919", "message": "support OS_ENDPOINT_TYPE environment variable\n\nUsing the OS_ENDPOINT_TYPE environment variable if it exists,\notherwise falling back to the TROVE_ENDPOINT_TYPE environment\nvariable.\n\nChange-Id: I74f108a32877a5f80bd65961ca965f9f686379d2\nCloses-Bug: #1541515\n", "proba": 5.365840024751378e-06} {"commit": "8062afae6318df2c20bdfe0c01ce787f15e46146", "message": "strange test\n", "proba": 2.543561549828155e-06} {"commit": "a24a8bdd2340b360f4c96bac6680d07050e7b6a4", "message": "syncing\n", "proba": 1.1201707366126357e-06} {"commit": "839972f52d46fae6e082a5c92f9d7879994bcb0b", "message": "remove len() for generator object\n\nSigned-off-by: Alfredo Deza <3f4d00ffa77e6441ab2d23c25a618925d2383b02@redhat.com>\n", "proba": 5.020708044867206e-07} {"commit": "2ccb1de5f9cb085181af5650b2cbe784e7adda45", "message": "Making set instantiation compatible with python 2.6\n", "proba": 5.213526037550764e-07} {"commit": "ea9910c065281e8eab6a2e6edf9c0034b81bf0cb", "message": "Added variance normalization, fixed ppnormalize\n", "proba": 1.3241167096111894e-07} {"commit": "33c0e9b878c41bd55194c0bf14027b9067a51dfb", "message": "Updating structure of ply import tests.\n", "proba": 1.1600270966027892e-07} {"commit": "f724ab9271194cd51849a1656ae99fb50e139fb3", "message": "Adding project and model info into response object\n\n", "proba": 2.6012492071458837e-07} {"commit": "6f9db32ed4c4972ddf73566397e2764c5d09e32a", "message": "skip dip\n", "proba": 3.5871366890205536e-06} {"commit": "9708a150aaaf480a43bea3912f8e6a4ea2ef9b86", "message": "Match either usage\n", "proba": 0.00017587901675142348} {"commit": "cb28521be3bb2e6a34981545abbd9597005c26bd", "message": "Made lowest random number of poll choices 2 because 1 choice is boring\n", "proba": 0.9999922513961792} {"commit": "b0b24ae9ddcdc0966d0640a973c694d3707a3a90", "message": "Use environment variable else fallback to system app path. This enables runtime\nswitching between styles without modifying Electrum, and avoids potential\nconflicts from implicit detection of a data/ subdirectory.\n", "proba": 1.0605083389236825e-07} {"commit": "7f3b4e7c145fad099b45ad5536b804498584a723", "message": "caps-helper: add extract_data_forms function\n\nStolen right from gabble.\n\nSigned-off-by: Jonny Lamb <3d1fb3642aaab2ff70e3392a5ab916bf99eed6a3@collabora.co.uk>\n", "proba": 1.2777420010934293e-07} {"commit": "fd87044affbdf198477a2f4edce1ec316c8722ef", "message": "Log string backend\n", "proba": 0.00010549956641625613} {"commit": "5ece1d31b5d1cd338f55f0cf24fea463701d86da", "message": "Changed electrum-desktop.com to electrum.org\n\nChanged the website link under the Help menu option from electrum-desktop.com to electrum.org", "proba": 1.7525495366044197e-07} {"commit": "a2b275db37e547e33862febec9741061169d6313", "message": "checked out from master since newline wasn't registering\n", "proba": 1.286196038563503e-07} {"commit": "5ec155f9feaa3c7e955df10799c3e1a83a002c00", "message": "Added test in aes_tool to ensure Integrity of encrypting and decrypting with the CBC AES function.\n", "proba": 1.06466920613002e-07} {"commit": "9fe35b67ffd5703b8a5b76e65b45289d583ac2cc", "message": "Allow builds to filter by project.\n", "proba": 1.0939450589830813e-07} {"commit": "75f8878562ae95fd13a3902ca364a94f10d1ef43", "message": "Fix check_button_status. QVariant returned by property(...) will not return a python bool object, but it can evaluate.\n", "proba": 1.2216740685744298e-07} {"commit": "e17238ccc1e0bb508a4bd577a0fc7571a50d32da", "message": "Newman frontend tags fixed. Refs #7305\n", "proba": 1.3624575956328044e-07} {"commit": "32959ee52f7db3edc22cd16ca052d8c562cb8e7b", "message": "Kick messages now colored\n", "proba": 1.209552635828004e-07} {"commit": "3cdc59d7f19c0b75a2568b3328035d1e7a6f7f5d", "message": "Fix offset passing to analysis subprocess\n", "proba": 1.1769128605010337e-06} {"commit": "6323e77300dd7024553e8f822d1880b0dc8444cb", "message": "Refactor prepare_staging_abspath_promise to use flattened structure\n", "proba": 2.4672516474311124e-07} {"commit": "4c975302de5a4003eb575717166b0d1369cf5e0c", "message": "Make it work with jedi 0.7\n", "proba": 6.4295636548195034e-06} {"commit": "6339fe5d02bbd0f978a398666086e442428a03ef", "message": "Sync latest install_venv_common.py with olso\n\nThis patch syncs with oslo change set of\n> c78b2ab Avoid using cfg in install_venv_common\n\nSo that oslo-config isn't needed to run install_venv\n\nChange-Id: Ia7ee923a53e09c0c6a525294ec4a5dc9d31c3bed\nFixes: bug #1131009\nSigned-off-by: Isaku Yamahata <4b3abd66323411eeceff090ab3754dd766fc4b25@valinux.co.jp>\n", "proba": 2.1049450538157544e-07} {"commit": "7a53d05677abac4b05dc8ca276febb93cbe554d1", "message": "run on client\n", "proba": 3.884288616973208e-06} {"commit": "3981f649feb3fa98777ee6f9f2a8339919b1a4c3", "message": "lets redirect stderr to the log file as well\n", "proba": 1.335947246161595e-07} {"commit": "25a777a126281cc4ecc332fcda7c52f8ad1c67f9", "message": "Optimize comment and remix prefetch further\n", "proba": 1.229020938353642e-07} {"commit": "5d9abd2c7839689ce86ddc1d77ee6bb48695cd97", "message": "epo.py - Debug log message %d to %s", "proba": 1.3940811527390906e-07} {"commit": "8554cbf001df9c332d4777ea6ba8f17c02c83360", "message": "[minor] fixed patch item template attributes\n", "proba": 2.5933030656233313e-07} {"commit": "f11b71c01018c043f6a67d2cc51121313c2710e9", "message": "smc-compute: handle possibly floating point quotas\n", "proba": 1.4131670468486845e-05} {"commit": "c7acb7c293fd4778a49fc99669272b3f7a1375e0", "message": "Enable passing individual files to scan_resources\n", "proba": 3.4465944054318243e-07} {"commit": "5b6efc14d84e77b6a133c50fdfe5abb1d5d5251c", "message": "get rid of hideous texttt show output in sagews\n", "proba": 1.0051543540612329e-05} {"commit": "cee026078152be06d8415337e4ce6cc2fc8b0c61", "message": "authz_policy: Fixed handling of empty resources (`resource`, realm or id `None`).\n\nCloses #8445.\n", "proba": 1.1009804268269363e-07} {"commit": "76d55ecf90f0375fc1175bdc0c909e4ba046aae7", "message": "syntax err fix\n", "proba": 4.63232163383509e-06} {"commit": "768a0b980b5561e4f9808f123a2ff7b16560714a", "message": "BASE-287:\n- Changed chart2_wdg to chart_wdg due to recent file renaming\n", "proba": 1.4181483720676624e-07} {"commit": "33ea0d2508c6beaf2be179b6758d36b5db965cd5", "message": "changed name of gateway test case\n", "proba": 5.580816946348932e-07} {"commit": "bb2b20edc59c7c195d706a534c14af9266f1dffc", "message": "More fixups in mnemonic.py\n\n- Use weakrefs and a shared wordlist for multiple instances of the same\nlanguage\n\n- Some cleanups and fixups\n\n- Generating japanese and chinese phrases was buggy. It has been\nsuppressed programmatically.\n\n- BIP39 generation only supports english and portuguese, but the app\nonly uses English anyway.\n", "proba": 1.2166594842710765e-07} {"commit": "3f47bb70ef9567957870888e12a7628bd54fa3bd", "message": "fixes #128\n", "proba": 2.577886846211186e-07} {"commit": "659ded67cf3a9e864ca9efd0e0da32d57925ba56", "message": "disk threshold - quick hack to make easily configurable\n", "proba": 1.2203315691294847e-07} {"commit": "477aeedcc2246e568e4652f0cec8d84642e8d90c", "message": "added a comment about fragility\n", "proba": 1.2916008529373357e-07} {"commit": "df87f107e763ecb924b15d5427456bdc7e1a77dc", "message": "Blacken `db.py`\n", "proba": 3.2576571129538934e-07} {"commit": "8bdf2d738763614fd6724a0d0ab56cda547da439", "message": "Fix absolute_uri check\n", "proba": 9.782232154975645e-06} {"commit": "33c25538b1d288954ecb7ce0fc17422b72e13432", "message": "Updated DP solver\n", "proba": 2.933568623575411e-07} {"commit": "95b42d02491bd2a50337ae26523c58dc24fc53f7", "message": "Updated EM solver: experimenting with another sequence, added atan\n", "proba": 1.3646851471094124e-07} {"commit": "ebb3667b1d1ae7a7a84275298e6cc8bddc636ee1", "message": "\nRemove hardcode http from post_test to allow users to just list an IP or to use https.\n\nR=mad\nDELTA=7 (0 added, 0 deleted, 7 changed)\n\n\nRevision created by MOE tool push_codebase.\nMOE_MIGRATION=5300\n\n\ngit-svn-id: 6f200aab33a7b6704a2e38529f84eef50a04cb11@195 722f4569-f0a1-f026-5e06-c3648ed4afc7\n", "proba": 3.829455636150669e-06} {"commit": "53edbb76619a5e1f4b4b95ff8ad1adb067293e92", "message": "Adding note flags for filtering out notifications\n", "proba": 2.550425506342435e-07} {"commit": "9d763757eeef787313b0b9c695abec9c964199a3", "message": "Fix: Correctly format the boost message.\n", "proba": 1.7007819508307875e-07} {"commit": "acef1aa51e0023005a44835beb4976c4a3803793", "message": "Update comment to reflect the code.\n", "proba": 1.0571296371608696e-07} {"commit": "7331442ac097d35a199006f48d1e42fb29bf67db", "message": "Add comment about what we're doing and why.\n", "proba": 1.1436381441853882e-07} {"commit": "1fa5b12658bce24e070341bb3cd26f41faf2ca0f", "message": "Use static files fallback\n", "proba": 6.947279871383216e-07} {"commit": "bc3f3a642aab97f311178e40a4321c22e2f6a3e1", "message": "Fix returning time to give the index rather than a boolean list.\n", "proba": 8.881977464625379e-07} {"commit": "f94b3d54299bda8a597402a34df93c2f19578337", "message": "decorations: robust kwargs_if_needed supporting multiple decorators\n", "proba": 7.397432909783674e-06} {"commit": "4c89944ca152e20fb450225c8fa58d84605cf0e3", "message": "Nicer quit messages [ci skip]\n", "proba": 1.255544930245378e-07} {"commit": "6fd9926033b7841b5e87790c6b08866b54ba8515", "message": "removed roi efficiency in calc/decay.py\n", "proba": 5.210215476836311e-07} {"commit": "e7aa110b0e97dc6bbbb4c442b5a588995bad1dcc", "message": "weighted path\n", "proba": 3.52145411852689e-06} {"commit": "96235dc28a875861dce80150202963900dd4a4ad", "message": "RO/Future/subprocess.py: modified to use pywin32 instead of the nonexisten _subprocess library and added a note that notes the change.\n\n\ngit-svn-id: a38512e6531051f4ba6aaa1c8358347ddeca2e1b@117082 b00c9580-4927-0410-8824-811d448ea4c7\n", "proba": 3.1581964776705718e-06} {"commit": "a5f3b689f19e431ed30d4f078eea5cffb3f17d6a", "message": "bump to 0.4.6\n", "proba": 1.1264613021921832e-05} {"commit": "d48f05af9ba0377a3d8ac2fc2aa0835e9a443e8f", "message": "#5: Added docstring to register_document().\n", "proba": 1.0786954618424716e-07} {"commit": "7700d0a825773e9dc0655acb5725322e54879c12", "message": "Improved OfflineData\n", "proba": 3.6910321909999766e-07} {"commit": "a7f27d1a46b74d209f3db670bd5f25ed6d249ad3", "message": "Version 0.0.2\n", "proba": 1.2506087614383432e-06} {"commit": "2ca6d02fc34cb39339736d35c3b4ce53a3ac0d26", "message": "Added filtering based on keywords\n", "proba": 1.7636624249917077e-07} {"commit": "db1ddd1687f8061c6c52a5699d44e31432175b01", "message": "Make run_while_future() even more compact.\n", "proba": 2.023849674515077e-06} {"commit": "0dc3787c56f0915142af2eedcb884429fda73a10", "message": "Set the address type of lib.topology.Element properly\n", "proba": 1.981427431019256e-06} {"commit": "995cc891c6d88dd8788971a1e1ee3dfbd6c89b72", "message": "CD-291 Set version to 1.0\n", "proba": 2.488500285835471e-07} {"commit": "6e67374484dfbdc29aa8ecb893b83a6614886422", "message": "Changed some profiler settings\n", "proba": 3.6135639902568073e-07} {"commit": "de9e8da2469dc709f04903db42aef9cef4d9e08d", "message": "Update home if using setuid\n", "proba": 2.2868583471336024e-07} {"commit": "98aaad5332a9aef3fe14a06638cf9c1b4d4b8c8b", "message": "Cope with _username\n\ngit-svn-id: 81e381228600e5752b80483efd2b45b26c451ea2@1363 e27351fd-9f3e-4f54-a53b-843176b1656c\n", "proba": 0.00033925811294466257} {"commit": "238e26967099b48f23d9017a62b83ff7a2f2d11a", "message": "version number bump\n", "proba": 3.6595611163647845e-06} {"commit": "5f74e1358a1705d556a93307cf8cad40c935f19b", "message": "app change\n", "proba": 5.632351530948654e-06} {"commit": "bb8785e76930ded52c862470e61d621642713b30", "message": "Simplified get_since\n", "proba": 5.247808076092042e-05} {"commit": "56236ecb3af4c7a034235ce9e284fbf653fd3ed4", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "389ec7a4578141c350912de8d08f042e9e6cff70", "message": "Do not stop a non-running LoopingCall.\n", "proba": 1.611942650470155e-07} {"commit": "8c91d3c9aeaa0e1bb8f8fab4d06985e087d45a49", "message": "disable sockets for now\n", "proba": 1.2778102131960623e-07} {"commit": "1d042b77a1099a71d5371cdd9323b2ccdc01159a", "message": "Dict name\n", "proba": 0.00031903930357657373} {"commit": "8685a3bc7999c388fb8f74b1140a44d436cc58f9", "message": "Encrypt using a mixed nonce.\n", "proba": 8.072692025962169e-07} {"commit": "0919bfc92dd2e40f0dac1177c940325012ad9d84", "message": "Use _api_encode function in post requests.\n", "proba": 1.3165178813778766e-07} {"commit": "60cc1c22419f318fbb915bfa374d54aee28d52ee", "message": "init commit, started on response ok func\n", "proba": 3.3870719562401064e-07} {"commit": "de77f0ceff34e0562e4c0e11f2f3a8a5c2ad583c", "message": "Update server.py", "proba": 7.684967044951918e-07} {"commit": "9f94da2948c9b73281524a8c61c5c1449dc1bc61", "message": "Format docstrings\n", "proba": 8.205638550862204e-07} {"commit": "c5dd64ae8969c05c108a7e10982f4b7dc5ed2919", "message": "Reduce output for downloading images\n", "proba": 0.9982313513755798} {"commit": "757ccab5dce9ba6ee986b8d6d52078038152be82", "message": "Update versions for 1.1 release.\n\nSigned-off-by: Rob Adams \n", "proba": 1.110667895432016e-07} {"commit": "88787aa3d8a94fd3f2630a6b030068c301962af2", "message": "Fixed typo in travelerinfo.py docstring", "proba": 5.533701710191963e-07} {"commit": "b9e75a4eaeb4e71491f42acbaae4a05bb7043ba2", "message": "The requests response.json() function cannot parse the non JSON string returned from this endpoint. Requesting `text/plain` prevents trying to parse the string as JSON.\n", "proba": 3.936547159355541e-07} {"commit": "3f87e9e324a90751ba94954ba42f32df9837f6fc", "message": "honestly idek\n", "proba": 7.873769618527149e-07} {"commit": "bfbf7bba41b2141a8f308c70c6a7dbe7809155d2", "message": "Fix test.\n", "proba": 8.550564984943776e-07} {"commit": "cdb521bfa385a9c11062441ffbf10cf37cf9f9b9", "message": "Implement masking and discrimination in fit_change\n", "proba": 1.7330614809907274e-06} {"commit": "83c2e1a02b43b5afce5990a62465a4544ca96cd0", "message": "Fix loading of new rate files\n", "proba": 8.444318382316851e-07} {"commit": "f5f5810be1fccf5d38fe34126b0422079ffd3934", "message": "#4283: fix left-over iteritems() in distutils.\n", "proba": 1.0923187687694735e-07} {"commit": "59c4a61e5e035c8b72803194a13cafb8347215e8", "message": "comment + expose\n", "proba": 1.5839006550777412e-07} {"commit": "f777456bab4933786d6890e00ccd603912e382b1", "message": "Fix so the 'install_libbase' directory -- where .pth files are installed --\nparticipates in the \"--root\" hack, ie. it also has a new root directory\nhacked on at the very last minute (essential if the .pth file is to be\nincluded in an RPM or other smart installer!).\n", "proba": 1.1724369386456601e-07} {"commit": "d3b39b72eb1756771fbc0e8223bccf9b76110dfc", "message": "Add id to attributes returned\n", "proba": 4.980677204002859e-07} {"commit": "e88e235b16968d04c60f684383815a618e7b3f6c", "message": "Updates the API for the loading of the CIFAR-100-C dataset in the SNGP experiment to the current ub.datasets API.\n\nPiperOrigin-RevId: 382541636\n", "proba": 1.4459146768786013e-07} {"commit": "b1b728338d7f30e44db9c829afcdba959e0870a4", "message": "Updates for newstyle middleware, django 1.10+\n", "proba": 1.3608759275030025e-07} {"commit": "0f6b6ee24a1a4dd7973607e2ad9d7c0e8a3bc1c8", "message": "Set threshold to array min\n", "proba": 0.00018111873941961676} {"commit": "e8d6c949953e4905c4a2cb1f8d26e576ff2556c3", "message": "revert debug print left over from previous commit\n", "proba": 1.746116566891942e-07} {"commit": "67d85d18ad5e5e4c219024b4e5038a7fd0687d2f", "message": "replaygain: introduce Task objects to bundle the state related to computations\n\nRenames *GainHandler -> *Task and instead of having a singleton\ninstance, creates a *Task object for each album/item to process. The\nadvantage is that now, related data can be bundled in the instance,\ninstead of passing multiple arguments around.\n", "proba": 1.2226648493651737e-07} {"commit": "b35f0db4fce91a16f1e080117f832f7df4063756", "message": "run: make uchroot able to mount to arbitrary dirs\n\nFormer-commit-id: c74f24f00a12228049941a949ed3a757a8202be6\nFormer-commit-id: 1c6a0fd43f6f8f19f935b7902f7a21847af0ebcb [formerly 1e7f8431c3fef60ebbfad90135dfa6bd228e986c] [formerly 71ae11f6a1b5fd19dc8ba6fdfa38b741c7f6e034 [formerly a6367af107ff20dd406a59bb70d72361e7efc258]]\nFormer-commit-id: ac1c06b54fdd1d11cd9485f2c605e3feeff9b8ce [formerly fd3548f82bfdd0b198a69d17b38ff8b760a2b7e6]\nFormer-commit-id: 44d06831be13f9054de8f022775532e5597b2f2b", "proba": 2.8934329748153687e-05} {"commit": "a745ed0f04d2e6e526b60d8d7d1616af19008b95", "message": "Update sesl tool-info module\n", "proba": 2.108985910354022e-07} {"commit": "bea2aa41d027060ac0f78e6674b03d440a158f7b", "message": "Fix PEP8. Prevent aborting files, that are already uploaded.\n", "proba": 1.013441064401377e-07} {"commit": "d313026b3660e9ff7cbf40290ac683a608511b86", "message": "[Update] Limit number of commit messages show commits old to new\n", "proba": 2.596532624465908e-07} {"commit": "108a263bff9f9bae398c6f3b9ab62c39a09fe939", "message": "Change subreddits in hot to only 3\n", "proba": 2.759519759365503e-07} {"commit": "265628efa9c091950b1f33c5598b9cf7853a38a4", "message": "[WAL-4006] Expose user_name and last_name in serializer.\n", "proba": 1.1159850998865295e-07} {"commit": "479bceb9619b9093ad8d211adedb65657480be94", "message": "Added plot functions\n", "proba": 1.791982526810898e-07} {"commit": "225fffa773b09d30d23502cc98f5d1af4b776f1c", "message": "fix(stackdriver): Fix stackdriver delete everything link.\n", "proba": 1.1903505736654552e-07} {"commit": "db8fef1423a88cbfa3aa26afb0ee1b7c79f5ac8f", "message": "New function: check_post_requires_authentication\n", "proba": 2.8016363557981094e-06} {"commit": "9809a44fe3dcf3439e536180c7b376a1372ffd0e", "message": "Updates to ndpp_data library to match the loss of inel_sigma\n", "proba": 2.0750540841163456e-07} {"commit": "99217c5f6fbd52846be372ef5c8336850a05764a", "message": "Trying to add atexit to overwatcher\n", "proba": 3.219670361431781e-07} {"commit": "4ddf632e75086d5e431dfabee77ce4538cecb37d", "message": "We don't need that print ?\n", "proba": 4.7669755076640286e-06} {"commit": "545649a4ec40e9dafa535c8b7f2c737a0e456553", "message": "remove unnecessary code\n", "proba": 0.0024204542860388756} {"commit": "dc88b17d9899353373f3a820730e91c95c0d04f1", "message": "Fixed spawnpoint message still showing up. Blame @TrazLander if anything\nbreaks :P", "proba": 1.2243754099472426e-07} {"commit": "fd0d0d0bb8b2b9b39b660e7e6fbf2ff50bcc053b", "message": "other start function\n", "proba": 4.3245890424259414e-07} {"commit": "ae965a1bde5dfa8da94b474b39791cec78240245", "message": "test works, fixed #40\n", "proba": 1.3981913582483685e-07} {"commit": "2f9b287c10b3c419c1ee3897be9dbda2f809437a", "message": "expose new api method to give a summary of attempt status on a sequence\n", "proba": 2.8205880653331405e-07} {"commit": "1e9ff4526fab0ed226e9cdd584ac6a9be1f921ca", "message": "Fix typing subclass check\n", "proba": 4.050968072988326e-06} {"commit": "c40c4d0f5016f0ba890bb5b14aaba612b204c10d", "message": "Update LLOS desktop test case\n", "proba": 1.931414743694404e-07} {"commit": "11131f1eb6035f973780642631c7ae7e4823f1ce", "message": "Formatting.py: Fix typo\n\nThis fixes the typo and changes it from 'the of rules' --> 'the rules'.\n\nCloses https://github.com/coala/coala/issues/5922\n", "proba": 1.5508836668232107e-06} {"commit": "ce555afb32a4c5f5d95c41d6fcdd2b8127a4eedc", "message": "Fix a typo.\n", "proba": 0.9999574422836304} {"commit": "7890518ae0e8d229f6d0617fc4d32af663f715de", "message": "Use dict.get notation.\n", "proba": 3.518898950005678e-07} {"commit": "68c0d03359f26fe91871a4ce176a570255b5cefe", "message": "Default DB user is stackdio\n", "proba": 0.0002994287060573697} {"commit": "82c7513d471acce255bfe89e2bb4eea0ee81dd74", "message": "additions to taxon controller\n", "proba": 1.6845250172536907e-07} {"commit": "9691feb6a62f71ce2363d7cc90351c64e79f9b27", "message": "Fix django admin add dataset screen\n", "proba": 1.5682906450820155e-05} {"commit": "0cc7bddf5f67295db8195c2beed99398c46a08b0", "message": "use the new basekey location\n", "proba": 2.850414375643595e-07} {"commit": "974ef4e6e5b5b0b33caabeb779555e30eed63964", "message": "refactor jsoning tests\n", "proba": 0.0003778089885599911} {"commit": "6e958cf7d051f6aac529274c6ec8e6eed1a8b063", "message": "Stored oqparam in combine_mean_curves [skip CI]\n", "proba": 1.1381294484635873e-07} {"commit": "bc690c339be27b0ea2e1ee6ca02f01e9ce2e59a0", "message": "Removed some debugging code\n", "proba": 3.305733480374329e-05} {"commit": "1b039207ca18020d9036c4e6798ab18d4566cd47", "message": "Added challenge generation\n\nClicking the \"Challenge\" buttons will now do something\n", "proba": 1.2598005127983924e-07} {"commit": "53174c695c458f5dcb4021e984504665430f333d", "message": "\u4fee\u6539\u63a8\u9001\u8f6c\u53d1\u8def\u7531\u65f6\uff0c\u9ed8\u8ba4\u8def\u7531\u4f18\u5148\u7ea7\u8fc7\u9ad8\uff0c\u5c4f\u853d\u5176\u4ed6\u8def\u7531\u7684\u95ee\u9898\uff01\n", "proba": 1.0592125221364768e-07} {"commit": "c8fd28c217c54844f4bbe8133f77bc0ff1988515", "message": "updated beat tracker default parameters\n", "proba": 3.3218040584870323e-07} {"commit": "1fe22f9750c618ede99f9b0a0d088aa67b7929a1", "message": "[FIX] Fix compute contains_unreserved on NewId records\n", "proba": 3.568489432836941e-07} {"commit": "11dd289531f8d0f3d20afc92cda4cb11f1a67ab7", "message": "fallback to print\n", "proba": 2.987130756082479e-06} {"commit": "5709b4f2c60d96a9f17c7019248b755961ed5574", "message": "Formatting of results and fix HD 4K images count\n", "proba": 3.8133114799165924e-07} {"commit": "90d7a6f0fb09e7c610407f01aff6c481692d4922", "message": "clipping LoG in hpss onsets\n", "proba": 1.3907745710639574e-07} {"commit": "012e1477120dddf809c002068e96644048077f14", "message": "stock_picking_invoice_link 14.0.1.1.1\n", "proba": 2.001942903007148e-06} {"commit": "6a1fb4fc9a9690f6d77518b1eb54a6b9d9b00e04", "message": "further reactoring\n", "proba": 1.686857586946644e-07} {"commit": "358f7a494b5a39b2b3dbbef33fea00a990b0c61a", "message": "Correct comment style\n", "proba": 2.2452381926996168e-06} {"commit": "78e6f2dbae0f231c4b92385452938ada61bc9ab5", "message": "Remove pdb.\n", "proba": 3.2865060006770364e-07} {"commit": "cc6a11da31cbe87dcd4ce3177e22152e11c764ee", "message": "API: Fix package location filtering\n", "proba": 7.664765462322976e-07} {"commit": "d7faae4246ed7ccbe777b302e3183ca7bf2e3b96", "message": "Check availability of db connection (mongodb) when initializing dbmanager.\n", "proba": 1.0949846540597719e-07} {"commit": "ed7e67b7fc38c7b72c40148b59165c515a137285", "message": "first pass at path-row model\n", "proba": 1.916472029961369e-07} {"commit": "4056816d2393957be8dbc6ec25328fbcbf53c0fc", "message": "Fixed events always being updated on login\n", "proba": 1.7701498222777445e-07} {"commit": "4967495e79a947a2ac6513a399ecf6212a14f90c", "message": "aceita retirade de lote inteiro quando parcial que zera quantidade endere\u00e7ada.\n", "proba": 3.344123911119823e-07} {"commit": "6125e305a50f5260d6cf46c58eb1768376d48174", "message": "AttributeDict equality, now with fewer surprises\n\nOther objects using __dict__ don't offer any explicit or implicit\npromises about how __dict__ can be used for equality.\n\nAlso, inline a once-used method.\n", "proba": 2.0841672210281104e-07} {"commit": "5eab8f17d2959965a42a5a3db8302c25d07f7c95", "message": "http: define __repr__ rather than __str__ for HTTPError\n\nIf __repr__ is not defined, the default implementation prints the args\nproperty, which HTTPError instances don't have.\n", "proba": 2.054224239600444e-07} {"commit": "850d07e3892016e59f4160bc05ce773d4ade5f36", "message": "remove unused function from test helpers\n", "proba": 1.4764423212909605e-06} {"commit": "e202bcb98375fcbdc0386379aede33364bf79f26", "message": "Fixing unreachable logging statement\n", "proba": 8.590484412707156e-07} {"commit": "bf8f82e93ac9049a01c3a788bc0f87931e9c0ec1", "message": "Link relevant documentation\n", "proba": 1.765766057815199e-07} {"commit": "88da07c1c35dcc28c5cdf14bdc9585cd8923d8e8", "message": "Coloring for directories\n", "proba": 2.1989103515807074e-07} {"commit": "84f0c4d3a6021b09f7c462cb102709c0963d26ee", "message": "Catch import error for secrets, warn, pass over\n", "proba": 1.221935121975548e-07} {"commit": "6048630a1194d439a698050aa423fb774bf7773c", "message": "docker-compose pull SERVICE should not pull SERVICE's dependencies\n\nSigned-off-by: Cameron Eagans \n", "proba": 3.923721294540883e-07} {"commit": "82421c1f3e0efa6b1726f09a697fcd7ce2253704", "message": "Changed version\n", "proba": 2.984764932989492e-07} {"commit": "22883d195899e7285f82a765c72624238b07dbd6", "message": "Add tag to trashed file node\n", "proba": 4.245079310294386e-07} {"commit": "d8221dbfd702e0d4ff0af33a2b65cdf44fe668ee", "message": "Develop version\n", "proba": 4.015276147129043e-07} {"commit": "42dbd6db6370cbe97aef4277ca5d89b808ef606d", "message": "Typo fix: 'a due' -> 'due'.\n", "proba": 0.0002219659654656425} {"commit": "2cf2169c395de9bf03e61ada918c13811529aae3", "message": "bump default buffer size back up\n", "proba": 8.110333737931796e-07} {"commit": "25ce33022038544f495cf4705368a6a3f3790e0c", "message": "Made _identify a class method, so we can test it easier (CNY-3427)\n", "proba": 1.5713932555172505e-07} {"commit": "f2b90605000da026b28e2be21c08e23b056a44e1", "message": "There are some interesting/annoying numerical precision issues at play. Here's another hack to avoid infinities, but I must get a better grasp on this.\n", "proba": 1.1603147243022249e-07} {"commit": "0fbbda27819866fd4c25012ddfc3fe33f01704c2", "message": "Add some more helper methods to branches.\n", "proba": 1.1644095820884104e-07} {"commit": "2b4d9fd679e75006f26e7cafd79ea2cb76be1d34", "message": "merging katzj's python2.4 compatibility fix\n", "proba": 3.0601250955442083e-07} {"commit": "207ca02467c6fccba4019d0bbf87730f204b24e1", "message": "Update biyos.py\n", "proba": 3.3158664791699266e-07} {"commit": "238c6e9763ab3fc354df22d749ec736c097e33ea", "message": "Add license for diff-match-patch JS.\n\nFix dependencies for codemirror targets.\n\nChange-Id: Ibda5573438b0ab76c42f5faaa3a463b5975bd43c\n", "proba": 2.263163150928449e-05} {"commit": "a4c31a1e6b958c2ea22e86f6e006d8401822edf5", "message": "updated encoding error for slack tokens\n", "proba": 2.2094964435837028e-07} {"commit": "5b3010ba7f729e7b68047dd27282f82c6a166f6c", "message": "ignore a price spread larger than 25%\n", "proba": 9.279744404011581e-07} {"commit": "c6e5222c47e53a2f05275431e2189566b7c3c077", "message": "Link to cookie from package\n", "proba": 1.935652136353383e-07} {"commit": "bdd5fb57281649309c13ee952e546db678814fec", "message": "fixed error from last commit\n", "proba": 1.8941589985388418e-07} {"commit": "5cbfe5ba494f13eee141046e488a880f8826940d", "message": "Non-functional, improve readability of long module.\n", "proba": 6.723704473188263e-07} {"commit": "2178422664acbafb426e96a425b4b7bd778e3fe5", "message": "Fixes typo in models.py\n", "proba": 5.713544055652164e-07} {"commit": "8869107a5f87b139169bbf353997e048b02ad0ff", "message": "need to source\n", "proba": 2.1711555746151134e-05} {"commit": "33e7a10bea4f6ea36ec93e02b415cc1da2b4354a", "message": "Fix editing organizers (now for real)\n", "proba": 1.1050049408822815e-07} {"commit": "3df4e34ab0ede72e1ca3002d4512f3a1497b2454", "message": "Adding check is_active\n", "proba": 9.745233546709642e-05} {"commit": "6c07511ac66009e066a724a5671fb275ed3c231e", "message": "Concordance matrix calculation\n", "proba": 5.581159257417312e-06} {"commit": "96b0b1b2df51d89be83e116dfb3de85aa169c379", "message": "force legend inside graph\n", "proba": 3.0767256475883187e-07} {"commit": "4e26345cfe3552393dc71dc5e110487a50aa3a31", "message": "Optimize imports\n\nThere is no need for a lazy import of SciPy as it is a hard dependeny.\n", "proba": 2.506394309875759e-07} {"commit": "9fb99f5e3ab8dd1d8eedefab32cf525ab97a323d", "message": "add alpha support\n", "proba": 3.720719234934222e-07} {"commit": "6340f427d18cb6bb83d5e7eae8ce21fd7c1f8ed9", "message": "pyCompressory.py: remove ununsed heapq import\n", "proba": 1.0074863894260488e-06} {"commit": "8311c20c00f3582da9fb18e5f2f5aff1cc4697f7", "message": "M Strings remove unused filename\n", "proba": 6.147890417196322e-06} {"commit": "9ca16941c0c2a530183e03f8f57bd675b7a445ac", "message": "Add starting message", "proba": 2.6511481792113045e-06} {"commit": "e06dff01cf19ac2eecf483164f1e60c0c53515a4", "message": "add more methods to FieldContainer\n", "proba": 1.6216503695432039e-07} {"commit": "8d2013466166d6e60e6292edee3b392b16fb2bfc", "message": "Update model_checks.py", "proba": 1.2120113979108282e-06} {"commit": "23c80fa9e3998efb22d01094d633841017eeb919", "message": "docs: Update places.py\n", "proba": 5.882466211915016e-07} {"commit": "c3b3f17134f84d12e755103ab9b012ad08eb72fd", "message": "Try to clean up environment after tab completion tests\n", "proba": 2.3264803417077928e-07} {"commit": "5b708ea09c8c6435b10174a8b7fb9bda0c044ed2", "message": "Update what data can be stored on Tweet and Profile objects.\n", "proba": 1.303417889175762e-07} {"commit": "96761235d3f81375f76ce7faa50932730d739d58", "message": "scale cubemap tile to power of two.\n", "proba": 1.0849765175180437e-07} {"commit": "b233ebb147f9a5280ee976145dddcc6ab4f42b72", "message": "network/client.py: document class to avoid pylint warning\n", "proba": 2.1157869412036234e-07} {"commit": "557334aa366108609f1415d3df6beec2853cbb03", "message": "interface: introduce tip_lock\n", "proba": 7.889058224463952e-07} {"commit": "052d4311e13dae490c45ec8c4d4102081b2a5ff6", "message": "Some comment tweaks for checkout_tests.py 13.\n\n* subversion/tests/cmdline/checkout_tests.py\n (co_with_obstructing_local_adds): This test performs a checkout on an\n existing WC, not an update.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@875282 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 1.6492041368110222e-06} {"commit": "d5d893debd3dad8a37446ed02f53ff9233e93190", "message": "* subversion/tests/cmdline/svnadmin_tests.py\n (load_bad_props, verify_non_utf8_paths): Typo fixes.\n", "proba": 1.0274742123783653e-07} {"commit": "7592f9514d3ac3adfc77dd181b919a3b07ab65bd", "message": "Extend the existing fsfs_hotcopy_old_with_propchanges() test. The problem is\nnot in the property changes, but rather in the node-id and copy-id changes\nhappening in repositories with old FS formats. The test is still an XFail.\nSee http://svn.haxx.se/dev/archive-2014-06/0053.shtml\n\n* subversion/tests/cmdline/svnadmin_tests.py\n (fsfs_hotcopy_old_with_propchanges): Rename this into ...\n (fsfs_hotcopy_old_with_id_changes): ...this. Extend the test by\n committing *different* things that result in node-id and copy-id changes.\n After every commit, hotcopy the repository to a new destination and check\n whether the source of the backup and the backup itself are identical.\n Maintain a separate --incremental backup, which is also updated and\n checked after every commit.\n (test_list): Track the test rename.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1603482 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 1.908831654873211e-05} {"commit": "2092a045479c5a368285eb857ca7b45260fd13f1", "message": "Split common checkbox methods off into mixin\n", "proba": 4.8374233301728964e-05} {"commit": "59523cd245c8a51145800c1a8893fdd44cb7812b", "message": "Clean up print statements in neuroglancer\n", "proba": 1.1474434359115548e-05} {"commit": "c7147794347ca7ac0cea0e30fe250b7daa5be1e7", "message": "* subversion/tests/cmdline/svnadmin_tests.py\n (hotcopy_incremental_packed): New test. Currently XFail as it shows a\n problem with incremental hotcopy of packed repositories.\n", "proba": 1.0257980420647073e-07} {"commit": "bb1e0b55f898f82a5018ca55466f42d8f292c8a7", "message": "Incorporated the changes to the IncidentReportForm from the edit-reports code\n", "proba": 1.457875100641104e-07} {"commit": "a74adc72a73558c0e1eeaa11241bf5846d9796d3", "message": "removed a noisy print\n", "proba": 3.155703552693012e-06} {"commit": "7b288ea51a5714a500e6b8e8d34f430a477ddb7e", "message": "Add govukCheckboxesField\n\ngovukCheckboxesField subclasses\nSelectMultipleField and overwrites how it renders\nHTML to let us use the GOVUK Checkboxes component\nwhile retaining all the functionality of WTForms\nfields.\n\nBased on work on github.com/richardjpope/recourse:\n\nhttps://github.com/richardjpope/recourse/blob/master/recourse/forms.py#L6\n", "proba": 5.690291686732962e-07} {"commit": "ec83e6af18a521fa2a82ca95456e202b918d89ea", "message": "create the muc_id right when using local-xmpp\n\ngit-svn-id: be7fcf8b57a85a067d5bd030757d140cf5159929@1349 8402a193-bf1e-0410-a7e5-8246bfde4f7d\n", "proba": 2.4581581783422735e-06} {"commit": "508878f435ce5a9558d7d9463c9d6a018c999fe2", "message": "Also pass back which user is logged in\n", "proba": 1.557837236987325e-07} {"commit": "4ae7f5109087695f8f8a9f15030c3dac5b23e0ac", "message": "Handling unregistered users for overview.\n", "proba": 1.0991444554520058e-07} {"commit": "6558dc990cdedc22c79cba5cf531282618a7eb82", "message": "view change\n", "proba": 5.359133865567856e-07} {"commit": "bc43f2736e252ea0bb593403ef77d894d85c9876", "message": "excel_import: update user if user is existed\n", "proba": 2.7790360945800785e-06} {"commit": "6894b7557997f4b972d2b93e18f5294b685a0483", "message": "see: last commit but re: main application code\n", "proba": 1.3287427691466291e-07} {"commit": "629e6d0c103f96061d42094e32f509f76436ba35", "message": "Bugfix: Make `tf.contrib.distributions.Independent` tests not flaky.\n\nPiperOrigin-RevId: 173921378\n", "proba": 1.876842787851274e-07} {"commit": "799ccea4abf7cd363fe4ad4f1d61bbe85bf0a826", "message": "in DEBUG mode treat referencing non existent Listing Handlers as errors\n", "proba": 4.671061617500527e-07} {"commit": "91324c5475e203e482aa30984a3be6dbcddccb9d", "message": "Fix iterlists usage for python 3\n\nPython 3 has lost all methods prefixed `iter` so\nthe Python 3 version of ImmutableMultiDict doesn't\nhave `iterlists`.\n\nsee:\nhttps://docs.python.org/3.0/whatsnew/3.0.html#views-and-iterators-instead-of-lists\n", "proba": 0.9998251795768738} {"commit": "f04f0111f94fea09a5813b83fcc07f1d262dd713", "message": "Changing output of musicxml2svg to multipart\n", "proba": 1.6362906535505317e-05} {"commit": "f1a0dc7b59e1407a5feba49e4e94524db1f4a281", "message": "Fix condition\n", "proba": 9.260559750146058e-07} {"commit": "2f7c31657051f868d74fda5a26d84b37cde701e9", "message": "test_pelagicontain.py: removed obsolete code\n", "proba": 0.005083812866359949} {"commit": "f3242d3f20e0f18fc58b1ec4e27232d68e69a415", "message": "update the config.py with project_target_name\n", "proba": 1.004086129796633e-06} {"commit": "ec8886e8a26917ac9ba746be4627cefdfccbaf93", "message": "Attempt to rectify some docstring errors", "proba": 0.00023533229250460863} {"commit": "f485bdbcb2b3fde2c3a7485074b82889fe032a44", "message": "Refactoring.\n", "proba": 1.0347050647396827e-06} {"commit": "f7c86aececca4935cb6da9a04a786b87d7f2c0c8", "message": "modified xalt_syshost.py to support level1 level2, host as well as nics style\n", "proba": 1.6603077312993264e-07} {"commit": "2617fd2487d8940309b7a19cb3011985eff3a327", "message": "Fix issues related to regerating ssowat conf while hacking permissions...\n", "proba": 1.0384263759988244e-07} {"commit": "a74a1a85afe5aa4a5c7833478b895fd8bfc3ce87", "message": "Test failures fixed\n", "proba": 5.072130875305447e-07} {"commit": "1904049548807e6d42e9977d1c80e5e7815a20e4", "message": "corrected views.py\n", "proba": 5.726275844608608e-07} {"commit": "da8e1762831d3dcd2d17fe727bf42fbaf0aac288", "message": "add intel 19.1 to migration settings\n", "proba": 1.4460430008966796e-07} {"commit": "f1d6f1f084369b92b2df0399560f4ec21bfd8b7e", "message": "Show \"Results\" header line when there is at least one result.\n", "proba": 1.1702597646490176e-07} {"commit": "39f455376ddfd715dd607c178043e0fc2fee7b37", "message": "avoid creating indexes on Users twice during the schema migration\n\n", "proba": 2.796634248625196e-07} {"commit": "664fd1a39ccd55c9429fc705499039461f56bec4", "message": "change temp handling -- postgres invalidates the current transaction as\nsoon as an error (like delete from a table which doesn't exist) occurs\n\n", "proba": 1.3035074175604677e-07} {"commit": "7650cf5818cb286a2ec38099c481aea155e618ed", "message": "do not log requests\n", "proba": 7.487026323360624e-07} {"commit": "78b855f719ed1789f0d23e01f1ba1729a5f5b87d", "message": "Fixed bug with clone\n", "proba": 2.884663388158515e-07} {"commit": "f1f54f5f54d6b065362db04540569ff908139b2d", "message": "corretto lo script di spamming\n", "proba": 1.1426486707932781e-06} {"commit": "de1e1432bd4d0ac89e5339f6410e3aa091e5fd5a", "message": "comet: server side for sending streams (without delivering yet, though)\n\nSigned-off-by: Bas Westerbaan <1d31d94f30d40df7951505d1034e1e923d02ec49@westerbaan.name>\n", "proba": 1.1432684487999722e-07} {"commit": "b5c3876ee7eff768a8e26749503d52fa9f122c91", "message": "Fixed multipolygon handling\n", "proba": 2.1170968977912707e-07} {"commit": "7720a13620d972c9c424d0402b025fd4e309f9ff", "message": "move allele assignment lines\n", "proba": 3.356064553372562e-06} {"commit": "bc3fa38388a190e3124143ac0f6de5af9eab2cfe", "message": "deal with negative RAs\n", "proba": 2.0085381038370542e-05} {"commit": "53820706d38ea64cbed96304079dee523ebf6789", "message": "Support sending \"notify\" pushes\n\nthat are simple notifications, not linked to a survey.\nIdeally, we will also add \"redirect\" notifications, similar to the local\nnotifications in\nhttps://github.com/e-mission/e-mission-phone/pull/220\n\nIn that case, we should have the list of valid notification types in a list.\n", "proba": 6.0945703808101825e-06} {"commit": "6b7a2c4b547191d71eb79f74233a2306078b7b37", "message": "Add the package that contains epstopdf, which is now used in testing.\n", "proba": 1.032956475910396e-07} {"commit": "932a7b8c451682861edd6bc3e078a25449ce8f76", "message": "Fixing bug in filename\n", "proba": 7.54619406961865e-07} {"commit": "e52e5035345509977d6f404afda57f58a209f8c5", "message": "Change to the work directory.\n", "proba": 1.2782551550571952e-07} {"commit": "cba84c34d546c0d1e169bffdd39821125256c14f", "message": "Changed the name of the view base classes for the API (because oauth_provider contains a class with the same name).\n", "proba": 1.1058293125643104e-07} {"commit": "aa97ec24a5966dc27751c484ee3093fe0fc1db2d", "message": "removed invalid import\n", "proba": 6.768881348762079e-07} {"commit": "d32a6ed01347b00b98b3121d2e0d44cf6b6f0633", "message": "appease lint\n", "proba": 4.750972948386334e-06} {"commit": "de3fff8442aa751a74447f29f29eed953b5a3143", "message": "Review changes\n\n- removed commented code\n- simplified json file read\n- replaced ' with \"\n", "proba": 1.7890626224925654e-07} {"commit": "244cc06d4c8dedbfe1335b8f7b5d956fe9817c37", "message": "Subcounter rate int not float in python 2\n", "proba": 5.684450457010826e-07} {"commit": "272c16b4173b8bf46b590de4d4c9b9f40cafbbe5", "message": "Fixed Modbus downlink converter\n", "proba": 2.7526570534064376e-07} {"commit": "395ef263b17278f07f7bed35a976a5d9fc2c72e9", "message": "Enforce argument count for property getter/setter\n\nGetters and setters for properties automatically generated by `get_*`\nand `set_*` methods must have respectively no and 1 extra parameter.\n", "proba": 1.055715159736792e-07} {"commit": "ae7e789c996bfe7c768a5954dfe10a03654448e4", "message": "Refactoring: extracting methods and params.\n\nPreparing for higher granularity singature of the functionality in the\nrunPermutations function by extracting many functions and breaking out\nparameters.\n", "proba": 1.0692562568692665e-07} {"commit": "360f8ef17cb12b055601961317420fcdcf801665", "message": "Commented out content of functions test(), test_suite(), see notes\n", "proba": 1.3987661873215984e-07} {"commit": "1a73603e228d38abab29fbac47b677e2b6f3692d", "message": "Added httpUrl converter.\n", "proba": 1.1689770218481499e-07} {"commit": "f7100cc235281775a66389df05c0e1cd4fe75958", "message": "Remove LOCALE flag in regular expression to avoid errors with Python>=3.6\n", "proba": 4.208962309348863e-06} {"commit": "028b7de3d40572ca1be0a8964103c039302bc86d", "message": "Corrected the doc string return order of the results.\n", "proba": 2.3926888843561755e-06} {"commit": "c0f4e105ddce9512f46e01ccdcb0b8f27a557765", "message": "Decorators!\n", "proba": 2.2959336831718247e-07} {"commit": "b5c534e680a0f8f8c9f8ed05a34bc3beefd6ffa1", "message": "Pass all footprinting parameters\n", "proba": 2.125205810443731e-06} {"commit": "3b85f888c6a4c50eca50a64c4ed60020ce0b3b6d", "message": "Add dump command\n", "proba": 1.643656833039131e-05} {"commit": "a8d6747a01dfb7996f5c78328006749a60b9f63f", "message": "objects/__init__.py unit test case\n", "proba": 2.60725191765232e-05} {"commit": "a2ce66de24f25dbd922b8e34d9f36feba27bdd0c", "message": "Add support for multiple documents in a single record\n", "proba": 3.306676887859794e-07} {"commit": "a1319310dd541d914366ad6840469452304e41cb", "message": "reverted some things that don't make much sense\n", "proba": 7.341188847931335e-06} {"commit": "144197d1baf971d6e1d6d12f95c5ed2f9b0b8221", "message": "bump 0.11.1\n", "proba": 3.7477527712326264e-06} {"commit": "112d9844069a10ebfee316a8ee7c18f300bd97ba", "message": "Improved classify_shots of the UHFQC_classifier_detector:\n - raises errors when combination of boolean flags does not make sense\n - adds option to do ro_corrected_stored_mtx or ro_corrected_seq_cal_mtx.\n", "proba": 1.60592620090938e-07} {"commit": "be42fc612bc8f337d81c4c1cd1eecf77d873fae7", "message": "Discord: markdown_escape: escape @", "proba": 1.3287394722283352e-05} {"commit": "dda7c6d5fca6cfe64fab789a015aba91882db8d1", "message": "QE: remove get_mobjs\n", "proba": 1.7883510281535564e-06} {"commit": "36bcf09119e57862f4b8bcb0327c775d440fb2bc", "message": "FIX: filters moved to class\n", "proba": 5.349319280867348e-07} {"commit": "bad5df20143538df676d67207e262b17926b4185", "message": "Fix import and spacing\n", "proba": 1.331724433839554e-06} {"commit": "51e64fc04b4b6fdd88ddb29d3e7d829c16e4c968", "message": "lint with black\n", "proba": 2.4041069082159083e-06} {"commit": "f67d8f7ffee9cf24f419a23e75d4eb380d1f1283", "message": "Remove unittest for deprecated methods.\n", "proba": 1.2579647545862827e-07} {"commit": "e18b824577ad5ca3808ca26b5911ad80c7ce7787", "message": "SearchReplace: use a gray an outline and keep foreground color\n", "proba": 3.139728619316884e-07} {"commit": "8c24d95ebf6de5ad99b596cb47f221f4f9f0078d", "message": "Add document for wrap preprocessor and model in one graph and add its python API (#2595)\n\n* add document for wrap preprocessor and model in one graph and add its python API\r\n\r\n* enable junit report for pytest\r\n\r\n* fix failed unit test\r\n\r\n* fix unit test\r\n", "proba": 1.4479776666576072e-07} {"commit": "3a33613684315430954a020d679d66050b9913c6", "message": "update beam search feature for interface with transformer model (#2855)\n\n* update beam search for padding value and cache structure\r\n\r\n* update python API for beam search\r\n\r\n* add comments and update python layer\r\n\r\n* modify comments format\r\n\r\n* modify comments format\r\n", "proba": 1.264087217123233e-07} {"commit": "2ce3965c1828bb8a26496a5ea2a706f5a13c9060", "message": "remove print statement\n", "proba": 0.9999992847442627} {"commit": "d1710744c77cc1cf62d1d6c48fad1c921c92b48a", "message": "Support global average pooling (#1365)\n\n* add global pooling\r\n\r\n* update doc and python\r\n\r\n* update doc\r\n", "proba": 1.305557759678777e-07} {"commit": "806dae123776174ebe5acc148eb41b72870929f7", "message": "Supporting all Heat parameter types\n\n-For now allowing all types and make them string.\n-Heat support much more types than it is stating here,\ncausing the new templates to fail. We should switch for\nHorizon code, for generating of the form and follow the heat\nspecification there.\n\nChange-Id: Ic6b40023ba9301ecfb3630f31a1f396c2d35cf3e\n", "proba": 1.1444722076703329e-06} {"commit": "a696370e3bed78a8a3b590a23a333418aa05041b", "message": "fixed vehicle counting bug\n", "proba": 3.0301089282147586e-07} {"commit": "a8481ab3e1ad927415eb057dc7b11437e66274f6", "message": "got rid of set_network_connection() usage in test due to permanent failing\n\nSigned-off-by: Oleksii Lymarenko <786fd30cc5a7e9c54cda8e30209fc4036bd2b8ea@gmail.com>\n", "proba": 1.221669521100921e-07} {"commit": "c8f2a3057b3602278666bce925751e5c72793c15", "message": "[new feature]add generateBackward for loadTF (#2529)\n\n\r\n", "proba": 1.0649413439978161e-07} {"commit": "cf965cc84601004ace91dc74f0415e356dd9108a", "message": "Add asynchronous, check for report existing happens in different task.\n\nPiperOrigin-RevId: 385930639\n", "proba": 0.00023477201466448605} {"commit": "25a8856b2891022b886b28890d4f0cb3aaf91ffd", "message": "RecurrentDecoder enhancement (#1619)\n\n* RecurrentDecoder refactor\r\n", "proba": 1.3574150159456622e-07} {"commit": "5647fd114d082433a6f9f2b94997aa3deb03b279", "message": "added year 2017\n", "proba": 4.996957727598783e-07} {"commit": "c7b222f78a780c508a29f4d302bd7b77534013c8", "message": "Update __init__.py", "proba": 7.178883242886513e-05} {"commit": "fafc501db155be58489b7e7d2e00d95b532b5db5", "message": "admin users should use their correct tenant id as well\n", "proba": 1.9283153562810185e-07} {"commit": "bd7ec41f2e7723d7d336bacb0835e594ba28e192", "message": "enabled value check is consistent with add service module\n", "proba": 1.9797774086782738e-07} {"commit": "2765aa1b9287f2790983f293b39d1e171d45e416", "message": "Fix a TicTacToe test bug.\n\nPiperOrigin-RevId: 230345644\n", "proba": 0.0032146943267434835} {"commit": "cc8293f60406cdabd649bb171bc7998ef884f672", "message": "Add utility functions to svnmerge.py's test suite to enable the\nrunning of a single command and checking its output against regular\nexpressions. The ability to check for the presence of or the lack of\npresence text is available.\n\nCode pulled from Giovanni Bajo's repository, revision 272.\n\nPatch by: Giovanni Bajo \n\n* contrib/client-side/svnmerge_test.py:\n (TestCase_SvnMerge._parseoutput):\n New method to check the output of a command against regular\n expressions.\n (TestCase_SvnMerge.launch):\n New method to run a single command. Uses _parseoutput().\n (TestCase_TestRepo.lanch):\n New method that applies a dictionary to the command string and\n then calls TestCase_SvnMerge.launch.\n", "proba": 2.886479819608212e-07} {"commit": "8f183f859eed7f35e414807bb9f80c639171f6b5", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "29e081bb8a19079d9a6c7d7cfb399d1de8b469bd", "message": "fix a bug, test=develop (#32488)\n\n", "proba": 1.3360950390506332e-07} {"commit": "5ab2f6c972948e326c8591eeb4bba1682e1185cf", "message": "make journal event handling more generic and also not drop events\n", "proba": 3.620186532771186e-07} {"commit": "9e57cddb17b12221f25e265883a5adca35fc3a20", "message": "Drop _as_dict_, use vars instead.\n\nDoing this makes me wonder if making header/_header_ read only\nis actually a good idea.\n", "proba": 1.2717801212147606e-07} {"commit": "4abf32238e447d59c6b7735c60cbd5053bdc6a89", "message": "Use isdefined for interface inputs check.\n", "proba": 1.1591987458814401e-07} {"commit": "12e1400b34a7f3c80b0c12d23330a157650d28d1", "message": "Ensure message is signed before accessing `.sender`\n", "proba": 1.6781193323822663e-07} {"commit": "1b1aa4a284164c449307c6cc31021a60e04e41f5", "message": "Teach 'win-tests.py/make check --mode-filter' to also get who an issue\nis assigned to in addition to the target milestone (and add that info to the\noutput).\n\n* subversion/tests/cmdline/svntest/main.py\n (list): Print the new field, wrapping to a new if we are to avoid\n overly long lines.\n\n (get_target_milestones_for_issues): Rename to...\n\n (get_issue_details): ...to this, and grab the 'assigned to' element when\n querying the issue tracker.\n\n (execute_tests): Print an expanded test list header for --mode-filter\n output.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1404821 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.0007908914121799171} {"commit": "d746787c2a4262e89e32c79ef0a5421aac917601", "message": "Generalised pixel aware functions to use pixel_id. These functions are no longer tied to being 2D - they can be used for 0D, 1D etc...\nAdded pixel etendue virtual method. This is used to convert the mean radiance to power.\n", "proba": 1.1721954962240488e-07} {"commit": "f31adde8b51577de580161b656b93331d19b006e", "message": "A follow-up to r19149, improving the code execution path and inline\ncommentary.\n\n* subversion/tests/cmdline/svntest/main.py\n (create_repos): Gate iteration over stderr in length check, and add\n comments.\n", "proba": 1.0010516149350224e-07} {"commit": "03794c71fa35a44e7fb4ca8fb1d1b6fc168e4ee8", "message": "Tweak and extend issue #3807 tests.\n\n* subversion/tests/cmdline/update_tests.py\n (update_nonexistent_child_of_copy):\n Verify that the 'update' didn't undo the deletion.\n (revive_children_of_copy):\n New XFailing test.\n (test_list): Run it.\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1078506 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 6.406647116818931e-06} {"commit": "76ad78c6dddb138fee523c80f2701ef3ca56b316", "message": "Fix numpy-ndarray bug\n\nOn zSystems, the ndarray is not retaining the values for nparray. Defining the data type is required to get the desired behavior.", "proba": 1.055809320860135e-06} {"commit": "c38c7fbaa789b1a6e081204e28a0f056bc100880", "message": "Last update to TimeDistributed layer", "proba": 2.1231849700598104e-07} {"commit": "28683d739b2e76d71fb74b9d22a4f9faa3fb8cf8", "message": "add seeds (#676)\n\n", "proba": 1.326589426753344e-06} {"commit": "afe5669a646a255cf3a6ed8d8fffb57ebc8ba4a7", "message": "Solved running problem, now the generator builds and creates empty roads. refs #149\n", "proba": 1.2012733918709273e-07} {"commit": "c3e14bf0295872e0ee5ae64bd1eac224d0058046", "message": "Fix telegram message omission.\n\nWrap full title by strong tag.\n", "proba": 0.0002991639485117048} {"commit": "f28ba7b33d004540c97edc08df4602b336b929ef", "message": "bump scheduler before mn probe\n\n\nFormer-commit-id: 360484b8d492da612ba868c779e63602d0a229a2", "proba": 9.44915370837407e-07} {"commit": "bdb8b9a347e68f80a2e8d44ce5590a2e8214b6bb", "message": "test: doc: improve doc for `from_hex` helper (mention `to_hex` alternative)\n", "proba": 2.0274049461477262e-07} {"commit": "dd7b540e00347c9df08055e8951b3475ea029182", "message": "add def of mnlistdiff to mininode\n\n\nFormer-commit-id: be36fcccc3e3b027a8b40caacdcafb7d829f08a2", "proba": 2.8716385713778436e-06} {"commit": "e119e53b514c29faa326859a57c3d94b3eacf6de", "message": "Disable the mpmath test_visualization test\n\nThis test was either printing a message to the terminal or opening a\nplot, depending on whether matplotlib and pylab were installed, neither\nof which is ideal for a test.\n", "proba": 1.3951890309726878e-07} {"commit": "0f1530d0d9065c2deef3bfb1f40c31d7e99c4280", "message": "fix projection plotter\n", "proba": 5.305251420395507e-07} {"commit": "f1b74a2f3f5a76cba7535e08bcbd8985bda3a4b5", "message": "Add nn.linear support for mpc and add test\n", "proba": 1.952121522208472e-07} {"commit": "488462658b35d5ace206d948df7e81a5fc96f981", "message": "Add xfail test combinations\n", "proba": 7.964368705870584e-05} {"commit": "a2f43cd3acaef399ec467f19f9d77cb7b4de81be", "message": "Add all budgets info from past events\n", "proba": 1.4089734179378866e-07} {"commit": "4a32cd2c6ec0fc03a39ad3cfbb5292e7b2994330", "message": "Uncomment form.\n", "proba": 1.6298925231694739e-07} {"commit": "bf11a1a3fda17bea905cefda11ff2cb44e610a69", "message": "Better error message for duplicate desktop icon (#3446)\n\n* Better error message for duplicate desktop icon\r\n\r\n* remove trailing whitespace\r\n", "proba": 2.005675014515873e-06} {"commit": "bd97bedb3f9b0bddcf3556acc4cd01ab35c7e960", "message": "Fix order of arguments in assertEqual\n\nThe correct order expected by testtools is assertEqual(expected, observed).\n\nChange-Id: I8457af6e15a9000dd6c54ad8199331e75bd3c7fd\nPartial-Bug: #1259292\n", "proba": 0.9999994039535522} {"commit": "c78a6bbade44ae88f8256ae88fa5a4ab37b5ecb6", "message": "Grid Stored orders fields\n", "proba": 2.9708331794608966e-07} {"commit": "58dde2daad0f87594a55ee285405395ca7018143", "message": "Ensure that popover is correctly placed when displayed while window is resized\n", "proba": 2.9299562243068067e-07} {"commit": "35ab3e0f8b340f50932f3199696f2842e0ff1640", "message": "Add rendering error.\n", "proba": 1.8437582127717178e-07} {"commit": "584a133755237bd59301366e7dcf830565faab8c", "message": "Moving to roads\n", "proba": 3.730846947291866e-05} {"commit": "2848a94cee152d77306a4bab9787cd74df19bdf1", "message": "Disabled test that suddenly started to fail\n", "proba": 4.72631654702127e-07} {"commit": "7bb8b39a16ef520d7fe9d1a708d8409aa883f25c", "message": "fix a potential leak of env vars\nwhen a particular test fails. Renaming all `_env` to `whitelisted_env`\nto be clear\n", "proba": 7.51744835270074e-07} {"commit": "6b6efe94d73ac0aa19425b4517a12cc2c6c04667", "message": "fix is_sorted\n", "proba": 5.09057026647497e-05} {"commit": "397ef74cdb92abb58160e1709e5587a9cc4f911b", "message": "spell fix\n", "proba": 9.318018783233128e-07} {"commit": "9c45019208a6a914adea89a7cc056ab9e1ec6d83", "message": "Fix for python 2.7\n", "proba": 3.2303658372256905e-05} {"commit": "03410481556ae3fa2767beaa9fa5e2e6be332b2a", "message": "fixes possible bug in segment_afq\n", "proba": 8.932724995247554e-07} {"commit": "c64e35c2a0e7ebc7378634993ff1fbbdb7becb4f", "message": "should be the final fix\n", "proba": 0.6839928030967712} {"commit": "78faf31bea4168ee5151ea33c5d4914c9d4f7c71", "message": "Added equation of lines calculation, is a point inside a given rectangle calculation and so on...", "proba": 1.1636380747859221e-07} {"commit": "0bd57c041f584f21e6ba581a53de8d7603c7a131", "message": "triplet_to_pmwrgb(): New function\n", "proba": 2.0605335521395318e-05} {"commit": "01321179a842223e4b7fbf194727ca6b37a8e877", "message": "check and create folders\n", "proba": 4.06979637546101e-07} {"commit": "c6356a478504d9bdd9fda17321904e23e5570426", "message": "Support direct content parsing in HTMLParser\n", "proba": 1.7542751606924867e-07} {"commit": "7d30453954e10826c3ea5481d428bbcb0f133195", "message": "Fix docstring errors\n", "proba": 0.00025212974287569523} {"commit": "4d5fb68f1ce51be828374ea57cc169bdd4c6e516", "message": "Redirect user to correct topic page after final quiz\n", "proba": 1.9134878925797238e-07} {"commit": "c30e5b00dbfee60ad661a0b0fa41dc3be3dd3079", "message": "fix load info\n", "proba": 3.0008393991920457e-07} {"commit": "20a04561ee6b137292a3d1cfa27a252d4f2b3df5", "message": "* Added vpnui to floating window list.\n", "proba": 1.0216272983143426e-07} {"commit": "80026a030d479a3b97ebe5ee4c95f062b1bec7ef", "message": "Breaking apart the methods in main.py for testability\n", "proba": 6.809309979871614e-06} {"commit": "6cc25b52ce3970e30b1f20c4689432c2ad953847", "message": "partial CR changes\n", "proba": 3.9863397205408546e-07} {"commit": "eb5e412927f0ecf4a48ae6b260b70d7c116e096e", "message": "Bugfix\n", "proba": 8.038198870963242e-07} {"commit": "3209a016c389dba3e7dbf73cdbbb992df636e048", "message": "Group and sort records by division/conference\n", "proba": 1.2684817818353622e-07} {"commit": "04fc38f14c180e89e012996e72e218c2fdfd8bf5", "message": "docstrings\n\nSigned-off-by: Adam Stokes <0a364f4bf549cc82d725fa7fd7ed34404be64079@ubuntu.com>\n", "proba": 1.2903548451959068e-07} {"commit": "eedfa7d85cc47af54e7fcab967babd5ee3a8a715", "message": "Delete deploy_docs.py", "proba": 1.248178136847855e-06} {"commit": "399b260515f7a47bef539dfe1a2cfcdfad0ce7d6", "message": "StringEncoded encoder now accepts b-strings when encoding set per #156\n", "proba": 1.6493380883275677e-07} {"commit": "1b5b1290f749e42d7449486929d980db941b5e22", "message": "debugging travis setup\n", "proba": 5.359062242860091e-07} {"commit": "1aa6af108cfe975716d1ca88994dad6eaf0a92be", "message": "Arregla test\n", "proba": 3.7703267707911436e-07} {"commit": "a482e1f35a80de566c0a93cce61eae95e8112aed", "message": "RK stationary activity stuff\n", "proba": 1.8501343390653346e-07} {"commit": "f3d89469ac4e2ffc04fc66a81bbcdf697cf058af", "message": "clean up\n", "proba": 1.0365005209678202e-06} {"commit": "56e71354ff8e57c5858abac3912c532a2f9e032b", "message": "Updated test executor to match mdp expectations, so now uses monitored navigation.\n", "proba": 9.889645014027337e-08} {"commit": "2e1eb9d97a0ce4de2402fbf1d870c9c3918db643", "message": "+ updating publish_webhook_event to write body to redis.\n", "proba": 1.0360859192815042e-07} {"commit": "21727208c7c09b7b43e13b459406f530300a141e", "message": "implements record-parser class.\n", "proba": 1.31564050320776e-07} {"commit": "d887e0a4b99ee29452130e5d0fd153ce43176756", "message": "Do not remove server_groups from default_quota_set\n\nserver_groups and server_group_members are removed from\ndefault_quota_set temporarily, and now Nova's client\nalready supports these two items, so there is no need\nto skip them now.\n\nhttp://developer.openstack.org/api-ref/compute/update-quotas-detail\n\nChange-Id: I64996f6ec5153a68dd25fa2d5a7b66eaa245bfd3\n", "proba": 4.936551249556942e-06} {"commit": "f2df0a6bdd0ff0522cc7d2ba81c964f731210272", "message": "fix other cert file name and move to static version\n", "proba": 1.6039105332765757e-07} {"commit": "8285d61c5bdc4e49af7cc861d9000ffc09720d9f", "message": "TEST: Verify base64 return values after decoding.\n", "proba": 2.2290184631401644e-07} {"commit": "a4a8cea5ba1453ee9f5babd3e60a18cb0c6421a3", "message": "add test\n", "proba": 1.7454851786169456e-06} {"commit": "f7c41ed4c869bff25539fab9e02022589d41dfc0", "message": "temporarily skip cluster tests\n", "proba": 2.6460054414201295e-07} {"commit": "8d62b28fae3d54520c460ab1fd49cd36f24d8d50", "message": "make sure simulacron/test_empty_column uses protocolv4\n", "proba": 8.717830155546835e-07} {"commit": "067b08b49e9603676f8e0ce0b5358ac92f05644b", "message": "Update binary jailer size\n\nSigned-off-by: Jonathan Woollett-Light ", "proba": 1.240577773842233e-07} {"commit": "9bcb9cb800e17113641a585b15e89d6a63356e07", "message": "Arreglo de roles\n", "proba": 4.117196397146472e-07} {"commit": "36d926b875fafd20bd9e42fcba5c2072fa7d977c", "message": "Test tuner errors\n", "proba": 4.114009470868041e-07} {"commit": "a1abd156ece75136b48ef873e334cf02ac994ccf", "message": "Fixed the error list bug.\n", "proba": 1.2889871925381158e-07} {"commit": "27515ee228fc3d835e16a7b8711eb2a91c7b0725", "message": "test when pad=0\n", "proba": 0.00932342279702425} {"commit": "e2e5bd3b5e11ea0a543d46c426868aceaf36b504", "message": "added view\n", "proba": 1.3398758369476127e-07} {"commit": "984f551d892d868c7845eee82c2cc448e421bf87", "message": "[generator] Fixed typo.\n", "proba": 1.3325663417163014e-07} {"commit": "68b128d5a9ccfe05d64fc1a93e686f8489fd63b9", "message": "Fix default in docs of references/video_classification/train.py (#3409)\n\n", "proba": 1.2483597799928248e-07} {"commit": "955b203ce7bd3fec26f5cfca2f3892675a0c3a55", "message": "Remove dataset_size default from HDF5Dataset initialise\n\nThis should always be set to the value of totalFrames on the start acquisition message\n", "proba": 2.759951485131751e-07} {"commit": "df7d9759951731dd8bd2a01b8e57309a98d50e75", "message": "Finish up first version of evaluation script\n", "proba": 5.078795766166877e-07} {"commit": "422fc3edb9f21cd9d6685211e62110a789fa5e69", "message": "ENH: store data in testing folder", "proba": 4.1521482785356056e-07} {"commit": "fa6d326f671c103349c6e56c41b8a5ff650f232f", "message": "change\n", "proba": 5.156657061888836e-05} {"commit": "b625d19cab260c398d57fbd8de0a0c86e875647a", "message": "Catch file-writing errors\n", "proba": 7.351869157901092e-07} {"commit": "4371790253dd02ecd4a92fbba37f2e2c33c4c235", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "a7b42d57a05c30af070ffff0fd8f06c4ae1c0e03", "message": "Fix Formatting\n", "proba": 1.228687324328348e-05} {"commit": "c98ee8862045e0a7cefdfcd1d156f94fb97adee5", "message": "Fix the percentage_of_reoccurring_datapoints_to_all_datapoints calculator to cope with empty lists or lists with no repeatence properly\n", "proba": 2.001791654038243e-05} {"commit": "280420499d6e9849fa29c290ae6696402873fa1c", "message": "Updated diversity function; forgot something\n", "proba": 2.0108143417019164e-07} {"commit": "a48aa9977a4a98e0cbda0480cc7c34afa8f9d07a", "message": "Fixing errors in admin application.\n", "proba": 1.2745290689508693e-07} {"commit": "88c1ced322ae03e138d318dc316ff0db0477ce76", "message": "jinja test for post is instance of Event\n", "proba": 2.800042295802996e-07} {"commit": "ce31b50a70643441c1fea02fe221936e649dee45", "message": "Can't print summary either\n", "proba": 0.00025943093351088464} {"commit": "7b93b61f9abe692c9e277168a28326edc3562f7a", "message": "favicon.ico RedirectView\n", "proba": 2.5030719825736014e-06} {"commit": "7ecc83de23df629fcebb541262925e34dd17cc84", "message": "[TF:XLA] Add additional test case for tf.gather.\n\nPiperOrigin-RevId: 185398368\n", "proba": 3.6716842259920668e-06} {"commit": "9fdb2b4c6e8789e2bf465cc1d081e4b6d3e721cf", "message": "fixed a minor whitespace issue\n", "proba": 5.557094937103102e-06} {"commit": "db511114eafa28fd5d023f11279236dbf28f98ba", "message": "Simplify pylint disables.\nChange: 117384554\n", "proba": 8.437012002104893e-05} {"commit": "281f59b8657d0b193d0e2c2731ed5bff239a748b", "message": "avoid flake8 check error\n", "proba": 2.636338081174472e-07} {"commit": "1c9b905c595ae34caf2cedd663b54310927cb7c6", "message": "[TF:XLA] Increase floating point comparison tolerances in some tests.\n\nThese tests were sometimes failing on XLA:GPU depending on which CUDNN/CUDA kernel was used.\n\nPiperOrigin-RevId: 234446008\n", "proba": 1.851361020044351e-07} {"commit": "7be54a0aa72bcb771a783cf512aa1049e13ccab8", "message": "- resolved import naming collision\n", "proba": 1.4243587997953e-07} {"commit": "f58e043832562695abecafaa21ed22d9b031d5a2", "message": "Fixed KeyError for gender attribute\n", "proba": 2.6769811256599496e-07} {"commit": "2dd82a5c0724d6e052261b60b632fa04cec2a49c", "message": "Implement downloadable csv on time-series endpoint\n", "proba": 1.255939423572272e-06} {"commit": "d0ad03cded64fc307b15668c81d0c65fd8486eff", "message": "Refs #29416 -- Fixed GeoExpressionsTests.test_multiple_annotation() on MySQL 5.7+.\n\nFailure introduced in b6e48f514ebe4e31b76e1750e043d4f296e645dc.", "proba": 1.0747277201517136e-07} {"commit": "dbd74fbeeee59cbb74998bb4939584c19eb65b03", "message": "Remove another test.\n", "proba": 2.1554021714109695e-06} {"commit": "83203f6e35500b1f8aad93074ccc6858c09735fb", "message": "Change version to live\n", "proba": 2.1461175947479205e-07} {"commit": "8413600c7c0fbc19e6235613e95368cf7b95d00e", "message": "Redirect staging to DevSite (#4043)\n\n", "proba": 1.0934277128171743e-07} {"commit": "40f1886c62e1c68b7658532700596ff8f6ee26a8", "message": "Add AMD codeGen unit tests (#4509)\n\n", "proba": 1.148392385630359e-07} {"commit": "0bc7c457f52cbf6dfd59092f14f84b10b64fa8df", "message": "extra safety check to storage open\n", "proba": 1.1999463822576217e-07} {"commit": "18a0211de774241fd64851940986b5dacf06f8c2", "message": "Added tests for Brazilian CRPF field that were accidentally omitted in [5089].\nRefs #3957.\n\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@5108 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : 65a4f9e4df162519e1a4031329224ceda9295cf3\n", "proba": 8.422658765994129e-07} {"commit": "ed9fd0d96f3ff4a12a60b62d81808cf1ef4f674c", "message": "update api views\n\nSigned-off-by: Bernard Ojengwa \n", "proba": 1.2163137341758556e-07} {"commit": "4ddb2ce1d96737fed0f27d44d403a81fdbbca67f", "message": "Clarified a comment from [11687].\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@12500 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 0.9999986886978149} {"commit": "fa195d4eba6397262e3e76c8525eb48dcb5e7f2d", "message": "test: Add missing sync_blocks\n", "proba": 6.066956848371774e-05} {"commit": "a3bdff07acc38360e3a7b6d25644222ff63fdae7", "message": "Squish: Fixed SCOM05\n\nChange-Id: I1ea55b1ffc811cb986eee28983f27a838e156805\nReviewed-by: Christian Stenger \n", "proba": 1.218162992699945e-07} {"commit": "288c1b07cb47430877be65f9d9dab8294a0cd699", "message": "updated changed field name for N:N project member relationship\n", "proba": 2.496379920557956e-07} {"commit": "317fe1b3a34ae9f6a5bf0019c80f9dd734a49156", "message": "make sure we don't run into a locking race-condition\n", "proba": 3.231359642086318e-07} {"commit": "5b73bacf783f1dc52d950560679544bb2f8076f5", "message": "tests/test_nanshe/test_imp/test_segment.py: Remove spaces before commas.\n", "proba": 5.365246579458471e-06} {"commit": "494527c9150bbb950733ce2dce8d2475ff5c4e45", "message": "remove unused import\n", "proba": 7.364135399257066e-07} {"commit": "218710748835dcdcd17359aff8cc169a01c93d3b", "message": "Server - Updated routines URL naming\n", "proba": 1.5747941972676927e-07} {"commit": "372baa64cabea08f75782e79a018e42ae3d0d33d", "message": "Update 911.py", "proba": 8.552848953513603e-07} {"commit": "39bfd75e5bd96ae0b328a189ab3a688778b62a41", "message": "Fix for TSM animation creation issue found by mplatt\n", "proba": 1.3019295863614389e-07} {"commit": "9849926fdb23bdcffda37f9aeae8e7010abf2d0f", "message": "Simplify calculation of Petrosian radius.\n", "proba": 7.695454655731737e-07} {"commit": "b8d371f7bda9af4b0094164146f955d74bcc4900", "message": "ENH: Add UnobservedComponents to tsa.api\n", "proba": 2.6496644522921997e-07} {"commit": "db6b155f628576e86f705dc3c53ee75715ec33b1", "message": "Work in py3 when executed by name\n", "proba": 5.271189706945734e-07} {"commit": "79bf863eaee96f8b2fd57bbe7560b22205177297", "message": "ARELLE-366: typed dimensions with missing content:\nallow GUI display and validation error messages\nto to process.\n", "proba": 9.868484340813666e-08} {"commit": "6345bfddb6fd97947cc100c3c93a31c670037fb2", "message": "Version bump to 0.1.2 b/c more packaging problems\n", "proba": 1.216570097994918e-07} {"commit": "d492299471dcb132b0d7b3a0c7803a9f8a12baea", "message": "Fixing..\n", "proba": 2.2058604542962712e-07} {"commit": "42d2aa890fca164f8cc371f6d9d8732896d53500", "message": "Testing.. VGG_19\n", "proba": 2.8466547519201413e-07} {"commit": "3ab13f921a1cdff142c5d90232e9ce436142c9af", "message": "TWEB-46, remove print\n", "proba": 3.6082883525523357e-07} {"commit": "40e92a039a1af05189c6bd2dbd672ac339f49aac", "message": "switched from sgd to adadelta\n", "proba": 1.863460738604772e-06} {"commit": "4bdc24e3785953988d74211a31b1aa632167514d", "message": "Bug fix\n", "proba": 5.465154799821903e-07} {"commit": "700f04bc52a92253a25f01ae8ef4591c7ac7cd27", "message": "removed boolean from if condition\n", "proba": 0.0025108614936470985} {"commit": "8fd3063387f1825d2f245e7157c296482835c9ef", "message": "fix path in tests for development.ini\n", "proba": 3.972976401200867e-07} {"commit": "d07c6fc05df6585e6f490b1dcde3de8c392f4f06", "message": "Fixed too many pages in user lists\n", "proba": 5.365033644011419e-07} {"commit": "b08968133cd44966d941ef4b2235a05dd48603fb", "message": "Added some methods for storing photos.\n", "proba": 1.0334649402921059e-07} {"commit": "bafc9f7ae0c732d0fbba44cf4be35d43aaa3a141", "message": "More rule improvements\n", "proba": 1.4371082102115906e-07} {"commit": "a7c0242a755c72294c8f50d1b67a7cf662559a6e", "message": "Automatic retry and backoff (#481)\n\n* Automatic retry and backoff\r\n\r\n* Larger backoff factor, put in constants\r\n\r\n* Run pyformat", "proba": 1.3179938207485975e-07} {"commit": "91deb307714c09969da5d53a21fe3894c0f19119", "message": "CTRL+Q / CTRL+W close window shortcuts.\n", "proba": 1.3624978123516485e-07} {"commit": "5b694b93242bc04bf19eed2313410a924c24f8d8", "message": "Create a file containing all unsanitized DJ names.\n", "proba": 1.3321788117082178e-07} {"commit": "020c35e21d973ef45960efdc7bfb3ac2d81b62c6", "message": "Update Oftraf subclass: Method monitor_thread will call\nself.oftraf.oftraf_get_of_counts() without any arguments, as \nit is provided for oftraf factorization.", "proba": 1.0869836586380188e-07} {"commit": "6bc4b77a270c1579672329433832906481b6c081", "message": "Update do.py\n", "proba": 2.91469973490166e-06} {"commit": "bb045f67aa9e6d0d7511e5d3d600568f1abe9d3b", "message": "Fix an issue with rule put API endpoint return an error in case the body\ndidn't contain \"id\" field.\n", "proba": 1.6943756975251745e-07} {"commit": "9e31d4f0804960c8eb27c07279737661c5366593", "message": "Make sure we call validate on config schema API object.\n\nThis way we make sure config schema files are validated and we don't\nallow bad or empty config schema files into the system.\n", "proba": 1.0800089000895241e-07} {"commit": "8eb951c075314fb3601dbc040260eeb193b0089c", "message": "Add \"service\" attribute to the token model and also add missing\ndocstrings.\n\nStoring \"service\" attribute on the token allows us to more easily\ndistinguish between service (system) and user tokens.\n", "proba": 1.0778069992056771e-07} {"commit": "44586a5494954977dea72873c31ce6062b18ae30", "message": "linearizer: remove nesting from create_output()\n", "proba": 1.5660135659345542e-06} {"commit": "98f1bd57de405e92eff768c6a968d32e6b41a703", "message": "Put in magnumclient service_type workaround\n\nOlder versions of os-client-config only have an api version for\n'container'. It's pretty easy to put in a workaround for that.\n\nChange-Id: I1edaa7ee416e4cc85bffb999a0e66b9494dabc37\n", "proba": 1.5146573787205853e-05} {"commit": "cffa92c45241545a0099a83ee6960ebe5dc886ce", "message": "reset response.closed and clear response._closable_objects before saving response to cache\n", "proba": 3.5392878316997667e-07} {"commit": "fb58af2819b27c7e212ea365fcc24ee3a58ea884", "message": "\u53bb\u6389\u4e4b\u524d\u5bf9user\u6a21\u5757\u7684\u6ce8\u91ca\n", "proba": 2.5609301701479126e-07} {"commit": "46f469033ce8d3e3dc21af8000f70ffa60b4791c", "message": "conduit fill\n", "proba": 5.146176249581913e-07} {"commit": "4a9911fe9c1b87cacca876031c50d8439da8fe95", "message": "refine online ip log\n", "proba": 6.256141205085441e-05} {"commit": "160993581f7c7f21bce11dce45ee6757743a5c8d", "message": "Hash code deduplication for GitLab SAST and Checkov (#4055)\n\n", "proba": 1.1331626126320771e-07} {"commit": "ef8fe9e42c7b35d8482eb495a698d07646d4e6d2", "message": "Remove old code\n", "proba": 0.9689477682113647} {"commit": "aaacfe1dd17783d43772cd4083a96b4b5b2e5c34", "message": "Improving code reuse.\n", "proba": 4.706876552518224e-06} {"commit": "a1d05e2a078c97f744a668f10b41b961cd581064", "message": "Delete udprelay.py", "proba": 1.7306947484030388e-06} {"commit": "d1af9213c94fb82b0b8e628c5deec520d74e29c5", "message": "Add primary_resource_type to terraform.yaml_check\n", "proba": 1.0400622159068007e-06} {"commit": "64dce24f71d1e58b66eb70f93ab268219efa5af0", "message": "Enable import history by default (#4794)\n\n* Enable import history by default\r\n\r\n* Update settings.dist.py", "proba": 3.7426556787067966e-07} {"commit": "d0531ba184632e7a30b694a69c1d4fc90840cfb7", "message": "Disable autoescape for jinja templates\n\nThe jinja templates are solely used for paas manifest configuration. We're not sure what the impact of autoescaping will be, either now or in the future, and so we've taken a positive decision to turn it off.\n", "proba": 1.0978705944353351e-07} {"commit": "ec8dee29e71e0ba119302583441f6770b7880b66", "message": "Bugfix2\n", "proba": 2.0062516625785065e-07} {"commit": "4a0be499d8a52fa1c13acef66ea6d461415d4231", "message": "Be quiet when all leaks were large and ignored\n", "proba": 1.846247812409274e-07} {"commit": "113e2414e055d366744ea251f75bde169637cf8f", "message": "Remove 391976 (fixed)\n", "proba": 1.9838483922285377e-07} {"commit": "8830723796911dd9d3a35e18af08eb0ad832c2c9", "message": "Add SendGrid credentials\n", "proba": 4.0290544234267145e-07} {"commit": "e8dd1f88b111c96eae27cbecf888101366cf0c4d", "message": "mmseekto bug fix with bytepp variable introduction to reduce calculation times\n", "proba": 1.2902010837478883e-07} {"commit": "812296e328c05ed1f4ca90d34d55cabec72fb5a8", "message": "added function `disp` to safe encode and display data (print replacement)\n", "proba": 1.0992912535812138e-07} {"commit": "2a7d7531379bb5b3231aaa9d7a1128f131e4c444", "message": "Change translations tag to link to same path when no page is given\n", "proba": 1.8767873655178846e-07} {"commit": "f7f16bf317f8268b2adc88e6984070ce504ffb86", "message": "A new mu update rule that seems to work a bit better. I also made delta invariant to the scale of the x_i.\n", "proba": 1.0501160829790024e-07} {"commit": "09264562d1877c68f62b0d5057e5537411bd4e07", "message": "remove useless debug infomation\n", "proba": 1.876713395176921e-05} {"commit": "4618faec288a77893332fd6417994ffd3b40d609", "message": "fix openblas dl script\n", "proba": 4.7492150656580634e-07} {"commit": "3253b230b9b669c981f061fc9922ca52dca3523b", "message": "Bug fix: actually use parallel writers", "proba": 2.921769350905379e-07} {"commit": "311e6eb067d50404487ca50f8efe34baa3889679", "message": "Fix miss do aging bug when ovsdb reconnect to df\n\nChange-Id: I09a9d51ecd1b12d75321a1e0804134d654c36b47\nCloses-bug: #1630482\n", "proba": 4.0330601791538356e-07} {"commit": "73b883cf28571e34ac9c46985101d215ee8c3ca8", "message": "Remove rna_pdb_tools/rna_pdb_rnapuzzle_ready.py for now\n", "proba": 9.667165841165115e-07} {"commit": "bcdf9e1100becebbaf025309b922c2521b7c0a8d", "message": "Fix tests\n", "proba": 2.8394715627655387e-06} {"commit": "a1d2ca7469478c7801cfa6c8652806c1a9129970", "message": "psHints, allow initialisation of the object with data.\n\ngit-svn-id: 68c5a305180a392494b23cb56ff711ec9d5bf0e2@43 b5fa9d6c-a76f-4ffd-b3cb-f825fc41095c\n", "proba": 0.9999980926513672} {"commit": "cc71f88a9aba3723b7d91ed5193b8734b5da4eb2", "message": "Update utils.py", "proba": 6.909024250489892e-07} {"commit": "0bbb2c584e4e2e3f25f3d2f5731dda3ea1c26b44", "message": "added BETWEEN, courtesy Rick Morrison. go Rick !\n", "proba": 1.117563499519747e-07} {"commit": "9f805603950c58957192cdc2430588c86f18a92a", "message": "\u89e3\u51b3\u5728\u90e8\u5206mac\u673a\u5668\u4e0a\uff0c\u53ef\u80fd\u51fa\u73b0\u7684\u6587\u4ef6\u4fee\u6539\u65f6\u95f4\u6bd4pch\u751f\u6210\u65f6\u95f4\u665a\uff0c\u9020\u6210\u7f16\u8bd1\u5931\u8d25\u7684\u95ee\u9898\n", "proba": 1.8043053273686382e-07} {"commit": "83cd11a56a0e1c219bbee928ec5763112b8c4942", "message": "Add get_status() method to poll event status.\n", "proba": 1.2032776908199594e-07} {"commit": "ae140687eab2769a5a23d44c192fa83cdfb5fc86", "message": "adding a phantomjs killall to harvest zombie processes\n", "proba": 1.7112954253661883e-07} {"commit": "c776ae568ebf27297139ee0e3efaa74fe4bc2621", "message": "Added UTF-8 support (#15)\n\n* Update downloader.py\r\n\r\n* Using io.open for Python 2 compatibility \r\n\r\nUsing io.open instead of open since the it supports the encoding flag.\r\n", "proba": 1.05001191741394e-07} {"commit": "31f5fdb168b8026595a4a2ea1eb3b9ea0f394858", "message": "Fixing a bug in the query compiler\n", "proba": 6.039931577106472e-06} {"commit": "ec34eeb145fe352f88e1cbbe41ee9f82ef0874da", "message": "rename json file\n", "proba": 3.3032838473445736e-06} {"commit": "12277e31abe9e8d5cfd3ba31bc90ea9baa970428", "message": "couple rules", "proba": 2.5653937427705387e-06} {"commit": "ae19e187e0ac73185e39bd152ef479950ed5163e", "message": "Seperate the __pyhp_*__\n", "proba": 0.0015504565089941025} {"commit": "c878e3230190920fd864455cf0a903d96103e463", "message": "just pass label.asString() results, that is all that we need\n", "proba": 1.6914115974486776e-07} {"commit": "74d281b493e121c2498af0acd5355659a682c443", "message": "make a single call to getFileContents() when getting extra files for\na change set\n", "proba": 3.0110564352980873e-07} {"commit": "6a8cf2a1442715e49b908dbd96141553f5996fe0", "message": "Add a bunch of attribute types to cms.AttributeCertificateV2\n", "proba": 6.703970711896545e-07} {"commit": "c089f42907287322b9813bf0a8c2dae12865d42f", "message": "Minor cleanup\n", "proba": 1.8076914898301766e-07} {"commit": "068f29992b06c4135cd3dd0b1c4a7b412dff7d3c", "message": "clarified how MPCE data is imported\n", "proba": 4.2449579495951184e-07} {"commit": "571b1c4170842e730ad53473b4735f32b6c330dd", "message": "Include the call parameters in the py-callers needle.\n", "proba": 1.1614949357863225e-07} {"commit": "a20665bae3130054b9381226184623579fa5c241", "message": "Expose MultiInstance query types\n", "proba": 2.894197734804038e-07} {"commit": "da14dbd812c00dc894b2596fbe6f6918aaab9044", "message": "Always returning integers\n", "proba": 0.00011549697956070304} {"commit": "928955841f4912cceb188d61b26751bda1cf61d1", "message": "Return date_created field in response serializer but rename to created_on to match what ember app is expecting the field name to be.\n", "proba": 1.1439228586596073e-07} {"commit": "5d764196fa8f752dc666a542ce291bcc397bd9f0", "message": "Return an empty search query set if q == ''.\n", "proba": 0.9999994039535522} {"commit": "928b8a40cd75baf2d0494653dc0f9e3448d4c40c", "message": "BUG: Marked failing test as expectedFailure\n", "proba": 2.946370614154148e-07} {"commit": "c723b3012601d16661d2b8fd7e626171133fda77", "message": "solve task: use int number of seconds for subprocess timeout.\n", "proba": 0.0011538536055013537} {"commit": "e8d9082e45eeb69bfe30d9de30760c4f9689f28f", "message": "String is read from csv file, not path\n", "proba": 6.989562825765461e-05} {"commit": "fd9af9683da40d2daa334d610db8f509373151d5", "message": "Allow recent uploads to be hot right now.\n", "proba": 1.0501180724986625e-07} {"commit": "a336022537519b04996300bdf81512525b2d1b3c", "message": "Refactor test with too many requests\n\nMake less requests and save few pandas ;-)\n", "proba": 1.2390678705287428e-07} {"commit": "0c3f299bed28fca2c872b6de8e2ca9ce09660b30", "message": "Setting up to add a simple prinln function... not in the original, but useful nonetheless\n", "proba": 2.3511535118814209e-07} {"commit": "8ed65eac0b3fd4777d585c8e1b9981b2bbff9e2c", "message": "Fix bug when flickr image doesn't have Large size.\n", "proba": 1.192728973364865e-07} {"commit": "200c6662b45190e107872170a9820156bd8e0f5f", "message": "Wrong vars\n", "proba": 2.1811167243868113e-05} {"commit": "2964ce997820e0915560faf63f76238a4c41b101", "message": "add one new method to get issue all fields\n\nfor this method we can send one http request and get all\nfields we want.\nthen get each field like project,summary,issuetype....\n\nlike this:\n o = self.jira.issue_field(\"SKYW-19080\")\n print o['project']['name'],\"\\n\"\n print o['summary'],\"\\n\"\n print o['issuetype']['name'],\"\\n\"\n print o['components'][0]['name'],\"\\n\"\n print o['reporter']['name'], o['reporter']['displayName'],\"\\n\"\n print o['assignee']['name'], o['assignee']['displayName'],\"\\n\"\n\nSigned-off-by: Mamh-Linux \n", "proba": 4.0545819501858205e-06} {"commit": "56f24b6bb6c6f51f6c8ba39babf9933531e81b55", "message": "Fixed scheduled metrics test\n", "proba": 2.6602049274515593e-07} {"commit": "de78564e1ec49fcfe0e527b02412bba4932726fc", "message": "Linreg.plot() - Added text annotation')\n", "proba": 1.6322336193752562e-07} {"commit": "d1327f65f3809ce196feeabb6d89b1c60abb9080", "message": "use fancylogger in rest.py\n", "proba": 7.803129165040446e-07} {"commit": "6663f8f2f7da0028e8e12bba40a71c6ec8bfdc87", "message": "build field values form form instead of post\n", "proba": 2.2322605275348906e-07} {"commit": "a13fda88947487e57ed26f29fc4cd86aa7f3d2a3", "message": "Improve full name, orcid\n", "proba": 0.0001537731004646048} {"commit": "6678890da68970a5abff0193331c06fa2c2e062f", "message": "minor bug in regression\n", "proba": 4.559180979413213e-07} {"commit": "78665e5bdb75ee5575f502b7e20120b734ccf280", "message": "factor out model creation, use faster solver\n", "proba": 8.669496310176328e-06} {"commit": "fccbca356aa52d9e29a90f97bd8e11976dcef3ac", "message": "exec in Python 2.6 needs code to end in newline\n\ncore/modules/basic_modules.py:\n - CodeRunnerMixin:\n Append newline befor executing code\n", "proba": 7.027221613498114e-07} {"commit": "22c9d361b78b0c3b68d0e82bc1dd5fb422a91aa1", "message": "Adds tests for Unzip and UnzipDirectory\n", "proba": 2.0168140224541276e-07} {"commit": "3e2db9adebcff1d58427242201c953b4dd95aacd", "message": "Added area scaling option\n", "proba": 3.9087260006454017e-07} {"commit": "c73f936b12f72c78ffc47ebd8039e3d7bca57c4b", "message": "Completed standard to long name conversion\n", "proba": 4.2619544160515943e-07} {"commit": "0d350b9649bdd2918ceebf774aa55e1f88e583d2", "message": "codeblocks analysis: need to handle mis-identified instruction-aligned pointers, too\n", "proba": 8.055342277657473e-07} {"commit": "ee72655658e69bd7dd50b92cc93d98d00465dd83", "message": "Remove unused class variable from heartbeat/monitor.py\n", "proba": 5.748249236603442e-07} {"commit": "0b07f09adc6294e5b21353b6301f2f3ae4dd37c5", "message": "add stacked network\n", "proba": 1.122078174375929e-06} {"commit": "1137c27817462dabfe5787f68a05cda0d7e2fe9f", "message": "Use EventQueue in win32ioc observer for testing\n\nSigned-off-by: Gora Khargosh \n", "proba": 1.3108025598285167e-07} {"commit": "9874be9948ed969ba5fa9d7bc27441fc2945397f", "message": "Added ref to wavelet denoising. demo\n", "proba": 3.6886220300402783e-07} {"commit": "dc11f7485c0ef0b3d40e0e5917b96e60631f77b4", "message": "Ahora elimina las llamadas hechas correctamente de manera predeterminada.\nEs posible configurar para que no elimine las llamadas correctas.", "proba": 5.131883153808303e-05} {"commit": "df85e2572cb9bdb3086d8aae4cd2a076f2c16dd8", "message": "Cleaning up the create table / index functions\n", "proba": 9.421193681191653e-06} {"commit": "7839e4a449e4c1420fd54eeee3a4c3a7a2741105", "message": "Fix rst docstring syntax\n", "proba": 0.00013771766680292785} {"commit": "923cf1dc557ee78ed26055335a2eaeb3baff3431", "message": "ENH:descriptor in each event is now certainly a document, not str\n", "proba": 5.9215264627709985e-05} {"commit": "6e825b75978ede07b9b1494c7c9432c568e0c4cd", "message": "0.5.2\n", "proba": 0.0004609504831023514} {"commit": "c224f4a3e2650724a47f7c8afccf405d9240465c", "message": "CFY-2780 added centos cli packages environment variables\n", "proba": 1.265358520186055e-07} {"commit": "a69d50b1beaaf45ee8fe5375839a4f1c07784ed9", "message": "Fix out of range __repr__ tuple\n", "proba": 0.9999994039535522} {"commit": "16e3af09d16818ce37500a07ccf261de219a282f", "message": "more proper stopper class in timeout plugin\n", "proba": 1.4022494099208416e-07} {"commit": "d1abbe0106dd30d1b304bc8057b91cd3c034972a", "message": "fixed bug of filter\n", "proba": 2.976201187721017e-07} {"commit": "d0956e25ddb11dbe9e5ac770bb763fe90c9c2ce7", "message": "fix(superdesk: io: rfc822): don't crash if soup.contents have null len\n", "proba": 0.0006664606044068933} {"commit": "23ef41ffaa1e936237c86ed4cb100d8bc87df755", "message": "Fix spinning in Welcome page (#7247)\n\n", "proba": 1.1638700669891477e-07} {"commit": "17ffbc9f980eadc38284c35c0fba68f3520f7a0b", "message": "Split out specific Event creation and serialisation methods for greater clarity\n", "proba": 5.222470917942701e-06} {"commit": "82125c5c7579e17ccdd34a3e3a3b11735c048303", "message": "Add something to create a product_id\nBe more robust with time handling? Maybe buggy :(\n\n", "proba": 1.1345092389092315e-05} {"commit": "abd8017e4b67d871cf0b4ee27b8cf7cbbaaed7dc", "message": "check that we have tokens", "proba": 1.861100855649056e-07} {"commit": "8694387efd44f189c9a5d867e764c5cf2fd3b7e9", "message": "Remove unittest.main()\n", "proba": 4.0573024762124987e-07} {"commit": "c2073e34d05fe69c1d264b03d1efe062a517134e", "message": "patch fix for win32 avd\n", "proba": 3.0027891284589714e-07} {"commit": "1c034fda15a8127599a78911db5518cd4e9660b8", "message": "Updated reference to old (and buggy!) version of the Perforce Python API.\n", "proba": 1.0741846523387721e-07} {"commit": "37aa66339e0ce668d55d0990f7397f56a2afbe1f", "message": "remove breakpoints\n", "proba": 0.01034083217382431} {"commit": "cbde2a571c5976c986e0de9fc9be7107558ab26b", "message": "flush/release implementation\n", "proba": 5.676632781614899e-07} {"commit": "4a317cb28bc922e662cd1a149dfe089198cd09bf", "message": "Small changes to display code.\n", "proba": 1.1206093830651298e-07} {"commit": "1602a60a08f39c0d4781da8ad50ee8d8da4c9489", "message": "[IMP] website_payment: cleaned data for ogone test\n\nbzr revid: tde@openerp.com-20131115170757-t8ldtid1atxopl1s", "proba": 1.5575639622511517e-07} {"commit": "43c3e570fa1febcc4105c2e88cd6aeef221e45b5", "message": "Add logic to delete an ACL IP of a host\n\nSigned-off-by: Pierre-Yves Chibon <0e23e1aa25183634677db757f9f5e912e5bb8b8c@pingoured.fr>\n", "proba": 2.504967824279447e-07} {"commit": "c3ccc25cfb87cc2ad27c690f444da937f86b4f0a", "message": "prepare dumper addon for sans-io\n", "proba": 1.5143896803238022e-07} {"commit": "503a70b3b9f0aaf8abd3bfd970beea839eb42b3b", "message": "FEAT: ML: Add random_90_rotation()\n", "proba": 1.6326928744092584e-05} {"commit": "49fb0c2d9385d4333f07d8542be2d5eb2282d94f", "message": "Write out the rank used for each model run\n", "proba": 1.3097383998683654e-05} {"commit": "fd98d7c9935790227954fda2f0ebdd22069ac701", "message": "Small changes\n", "proba": 6.553515845553193e-07} {"commit": "68da7daa094c49d7353e8c20dea21d6fc6911e0b", "message": "refactor to use _is_autopay method\n", "proba": 0.00011664861813187599} {"commit": "9f92169c1f1b90c97fb638a50db085a3ba47854f", "message": "Added pre and post run extension calls\n", "proba": 1.4582157348286273e-07} {"commit": "ba031163b3a58d67cea430bc6c09f45f2b9a450a", "message": "use cls\n", "proba": 4.4450321183830965e-06} {"commit": "e19e15e13e2d85c99f1b7360d35e44211d558d4d", "message": "in odata, treat offset as not a page offset but object offset\n", "proba": 4.42890041085775e-07} {"commit": "3c5ef1d039547c86b6f07289ecad4132c1fecb7c", "message": "exclude terminated subscriptions from next_subscription\n", "proba": 5.018759452468657e-07} {"commit": "5f3bca636aca91ea9461b893ef5c00cea508d427", "message": "Order annotation x and y elements\n", "proba": 1.4452739378612023e-06} {"commit": "00fbdd61182eae006726929c806f4759e00dbbf6", "message": "Fixed Python 2.4 incompatibility. Resolves issue 40.\n\ngit-svn-id: b8e4c7d935891a2991ccbb3f654a3a46a1065c9f@80 eb01185e-fd33-11dd-bc25-5f29055a2a2d\n", "proba": 4.7292876843130216e-05} {"commit": "55fb009cc20d4aade076aabaa6de81b0523a2326", "message": "notify exception in app manager when there's an unexpected exception raised\n", "proba": 5.850632192050398e-07} {"commit": "69020047370dadd95b0a09af1c0b58396332db22", "message": "Include filter_on_server_modified in rule create view\n", "proba": 5.379214940148813e-07} {"commit": "0a61410982b792fff4ff75a4fc60cb95a6306acb", "message": "Don't set last_visit_date in unscheduled visits\n", "proba": 1.3682685676030815e-05} {"commit": "ea3c8ea755debf543a85482497186ef6289ed5fa", "message": "Don't separate domain and user enabled flags\n", "proba": 2.460066639287106e-07} {"commit": "4e907ada19d862457e135845f2433da7917db626", "message": "Provide additional context to the list view\n", "proba": 2.5240819013561122e-05} {"commit": "10c3bd7a7742994887af1a983a94e3620751732c", "message": "fix comma\n", "proba": 0.9999399185180664} {"commit": "38c36a7e1bb1ba878c122ab384d33680b13b1b53", "message": "no more infinite loop for forms submitted in the future. sorry guys.\n", "proba": 9.994814575975397e-08} {"commit": "b7559a9c7b312da4569158bf1b32dc5947f0d700", "message": "Added reload function\n", "proba": 6.658292477368377e-07} {"commit": "452901ae8e1aa05a639d733cd9eeff2180d6b7e4", "message": "always use intersection\n", "proba": 3.830032710538944e-06} {"commit": "a3934a52a868f37a1a27731050c2390d6ed338c6", "message": "Ignore deleted configs.\n", "proba": 1.307137438288919e-07} {"commit": "e13e0644e6cb3572859c579f04432261a2b2055e", "message": "Update queue used for refresh tasks\n", "proba": 4.0122290556610096e-07} {"commit": "7e8b635bbbad1a480ce4966d83225a95c2e5b625", "message": "Removed unused import.\n", "proba": 1.2888077094430628e-07} {"commit": "7b0d374c162ad0f41e8a0a7247eb3e38622d6f49", "message": "Add segment hover text; colorbar size/position; group gratings in legend\n", "proba": 2.0239122022758238e-07} {"commit": "d87e7d39753ba95c404616e4bfda399d6d29697e", "message": "Only dup _stdout_read_fd if it is not None\n", "proba": 0.001556093106046319} {"commit": "f69a260b0f4fdc1bc54544cf943981eb5c4637e9", "message": "make email show up in report builder out-of-reports message\n", "proba": 3.1391476795761264e-07} {"commit": "93b412e4a66f5d0bf6f0ba62c1b8df3bb2e23f4d", "message": "Encode paths to hash (#1061)\n\n", "proba": 0.00020618819689843804} {"commit": "adeb579769964ee757e19722898a0649f4d8b405", "message": "fix suggest\n", "proba": 7.265926456057059e-07} {"commit": "ca7980a62014fddadb9f85398194f02ff50631bb", "message": "more fd comments\n", "proba": 1.2098375634650438e-07} {"commit": "6dfa817e8439c8f9c416985286fe25b850b6e3aa", "message": "pycodestyle\n", "proba": 1.9288502244307892e-06} {"commit": "c5d61e80bc5f1711738df56a02cf6059f213541a", "message": "Adds failure call back function for BrickWriterDispatcher.\n", "proba": 1.1859540904879395e-07} {"commit": "97f1a9365353b6c68e81e0002f5ce13d7dd874cc", "message": "use prefetch related to reduce query overhead\n", "proba": 4.4747181959792215e-07} {"commit": "78448588f4f7518fe807248734869120b547492e", "message": "bugifx old API\n", "proba": 3.328856905682187e-07} {"commit": "fc684cc649284fd084d3dd8c94a37e8bced77e23", "message": "fixed wrong usage of temporary file handle and unsorted dictionary\n", "proba": 2.2710665348313341e-07} {"commit": "ee1ecec02218666e9b44f0e891e809c60c122643", "message": "few aesthetic changes\n", "proba": 2.769768059351918e-07} {"commit": "cfb083e421b377b6910d4e41d16a1ebc229f1c5e", "message": "fix issue #1\n", "proba": 3.5127430919601466e-07} {"commit": "47b5c419ae499eb3fbd31effc6acdb93b43b7714", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "d6cf09e4b8e79bcb5adf330b5c500504e60488de", "message": "updated service loading to catch on_load exceptions and ignore service\n", "proba": 1.9360712144589343e-07} {"commit": "065fcd6dd08ef07adac3c68203c138b7e9e810c6", "message": "Refactored more stuff in the todo terminal app\n", "proba": 1.3117379182858713e-07} {"commit": "de99659783a6dd55eeac1d1a8a823d318097f173", "message": "Add icon to prexisting export RIB button\n\n", "proba": 1.7597342605313315e-07} {"commit": "2df603ceab9a68c23c7407d67f8de2023bb979f0", "message": "saans test\n", "proba": 9.705280490379664e-07} {"commit": "cdbbaac71effe47c5152230f4cefc0570e8edf9b", "message": "Fix last commit\n", "proba": 1.9165995581715833e-06} {"commit": "8f37a782ad3daafffef24a6412a20c934412e3a4", "message": "New getNext algorithm, main part\n", "proba": 2.151940066141833e-07} {"commit": "0471df528e8a352cff630ba8a41ba2e389ccbbea", "message": "Minor changes - closing some TODOs\n", "proba": 1.211272575574185e-07} {"commit": "51bf15c268203e38663d74a943d83467848185e3", "message": "[AC-8797] lint\n", "proba": 2.5908217139658518e-05} {"commit": "6dd540f156d353d7e39a5a466929b762b9cafecc", "message": "add docs on interface\n\ngit-svn-id: 353d90d4d8d13dcb4e0402680a9155a727f61a5a@895886 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 5.258667101770698e-07} {"commit": "4de1b8a3279a6d9aa13dd65a01f70d286e60a45e", "message": "[IMP] add when validate payment with surcharge to create an concile the corresponding debit note.\n", "proba": 1.581675661554982e-07} {"commit": "64cf1f7bbc028712f7c8449fe4e24ae529004ce1", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "fd679a97eafe3f37105dd4c890dc100bd1f14f1d", "message": "AMBARI-16157. JDBC Connect String for Ranger modified wrong for non-default port.(vbrodetskyi)\n", "proba": 1.1864236171277298e-07} {"commit": "524f0eb9a5be3a8e04aef63dcc8a634859db8179", "message": "adjusted widget for randowm sampl form\n", "proba": 2.352333297039877e-07} {"commit": "5aa42d429262fe44a4f02ea55c885eb1b3402359", "message": "set default for turn_allow_guests correctly\n", "proba": 4.801532895726268e-07} {"commit": "fe725f7e452363e60cb0daf8ef55af603adaa0df", "message": "Cleanup top level request exception logging\n\nFirstly, we always logged that the request was being handled via\n`JsonResource._async_render`, so we change that to use the servlet name\nwe add to the request.\n\nSecondly, we pass the exception information to the logger rather than\nformatting it manually. This makes it consistent with other exception\nlogging, allwoing logging hooks and formatters to access the exception\ninformation.\n", "proba": 1.1203230343426185e-07} {"commit": "141163d0a90500b425fc13d010f7a32e5b0ddd78", "message": "Reformat inet.py\n\n- move docstrings to second line of prop data\r\n- place 'ro', 'req' , 'defval' at end of first line of prop data", "proba": 1.3385834790824447e-05} {"commit": "c3dc6b6f39350c96b9f1c328ae3f103e0f798374", "message": "Fix conflict.\n", "proba": 1.4081249901209958e-05} {"commit": "4cef09da029721872ffd1775de5de356a295724a", "message": "line length fixes\n", "proba": 1.9430237898632186e-06} {"commit": "63b4abe49ff1b77d6ff718f947c096fc815cbc17", "message": "Add country code", "proba": 0.012275083921849728} {"commit": "d010124750c43a61654e8df7a54ff2cea2e5f520", "message": "Tightened language in vq's module summary docstring.\n", "proba": 1.1260268450996591e-07} {"commit": "b67c64b25f78751b4c096017f1771aeaf4f9a0a7", "message": "Add RPG special room", "proba": 2.722331657878385e-07} {"commit": "b81424c078f893a17277f0e5f410d2eebdf84c21", "message": "add math room (autopull)", "proba": 3.276755705883261e-06} {"commit": "44cf0fca40ee7c57ef81fd5648552516ca9d38d3", "message": "Fixed crash when page ended in nowiki tag.\n", "proba": 1.0571679354143271e-07} {"commit": "eb6b2841a9244b0df06db6e7d340ac0b71972ca6", "message": "Delete yt.py", "proba": 0.0002722996869124472} {"commit": "2b07017586d01d545dd257af4109541819288515", "message": "add delay\n", "proba": 2.813119408529019e-06} {"commit": "514c097f725884e8d2526227ca5a2993f9bc3505", "message": "upstream fixes\n", "proba": 4.4883645955451357e-07} {"commit": "5fbbc1bfd2faaf508820f98754b58244ad815fe5", "message": "Add speech_context to streaming system test.\n", "proba": 4.0356110275752144e-07} {"commit": "2364f33d3a296a567b44cfab4fd8faed406e3a98", "message": "Basic tagging\n", "proba": 3.702105288994062e-07} {"commit": "21844273c090dadd433f2a71b5868afc077b71d4", "message": "NLTE fixes - LTE check made, but reproducible test case needed\n", "proba": 1.1529969867751788e-07} {"commit": "db6f39202949acbf959884bf4ac0ba9927eb094f", "message": "Try sys.getfilesystemencoding again\n", "proba": 4.6408146658905025e-07} {"commit": "fad05e8706a262b3a98ab897ed8f54175c657b7b", "message": "revert validators\n", "proba": 9.70387304732867e-07} {"commit": "1af0d3c0c2cc987085be5733ca69dde202cb5eb1", "message": "Simplify tag()\n\ntag() always takes a new_tag.\n\nSigned-off-by: Andy Grover \n", "proba": 1.5614547237419174e-06} {"commit": "783d05370c2c5d3f37d5def86ec4d29aa0bfe1b3", "message": "set start year\n", "proba": 0.0002366251137573272} {"commit": "828b78767c17419513337ca29b5c2dab08995714", "message": "Remove now useless TearDown method.\n\ngit-svn-id: ac2c3632cb6543e7ab5fafd132c7fe15057a1882@53797 6015fed2-1504-0410-9fe1-9d1591cc4771\n", "proba": 4.908427581540309e-05} {"commit": "a3d2df3bffb64a65306ea4726cfd6f3e5ff52550", "message": "silly, but current cubes feature is that dimension \"is a date dimension\"\nif info.is_date is true\n", "proba": 0.00040693857590667903} {"commit": "790420a83cbb86cbc699a4fd8d86b8a81cca684e", "message": "Added anyAttributes to domain-specific_object_attributes in cybox core binding\n", "proba": 3.305025018107699e-07} {"commit": "85c2f34b6a408f97aa750397338d39771e0fff74", "message": "first implementation of afw_to_nfa_conversion\n", "proba": 4.260783725840156e-07} {"commit": "36dc106e7ed6b22bab5efa7029bf9246ee6e408f", "message": "Adds resources to task batcher\n", "proba": 3.414949389934918e-07} {"commit": "c24b33dd5008a88ab84a722880b87a87e3a7fc30", "message": "fixed typo\n", "proba": 2.684115770534845e-06} {"commit": "916fa7f993861562098b6d349f3130c58f8a0590", "message": "Update tdiTable.py \n\nUpdate tdi table to add match value look up table", "proba": 1.9136119533413876e-07} {"commit": "66ee0bb9f87f4f648ab8fd27404644a7ef3ec25d", "message": "Fix reference to class function without a reference object\n", "proba": 1.383051130687818e-05} {"commit": "7da4018e22a52128122c08317edc77f473b43b28", "message": "Fix tests, as repeatedblocks doesn't export BlockNode anymore.\n", "proba": 1.0738507683072385e-07} {"commit": "ade168ee1987adc23737d3d51cf1c56124b8da9b", "message": "Reordering checklist\n", "proba": 2.7052607265432016e-07} {"commit": "427c82d26a8bf14dcee58910eb5289e38708fb37", "message": "add stop operation for sub process node\n", "proba": 3.4991882102985983e-07} {"commit": "13127b9e7d007cdf28e4ed8dce878fe2fdfeb022", "message": "fixed max nick-in-game length (Rajh's fault!)\n", "proba": 1.1145173317572699e-07} {"commit": "94b4418e0f0d34030a5fe4d0e9298194d473bad4", "message": "fix overwrite\n", "proba": 1.322721232099866e-06} {"commit": "43c2b62c021f3030073e77671f1e70a955d80a91", "message": "views.py para diret\u00f3rio\n", "proba": 2.2099432328559487e-07} {"commit": "3fd433a60f65cac9fb4825a27d1441a9d9faedad", "message": "dqdv plot\n", "proba": 5.892848548683105e-06} {"commit": "206b1789bcd63e3b03e56c4f27b09c0bfe35088a", "message": "Caching fasti search view.\n", "proba": 1.2564709095386206e-07} {"commit": "769842261d1f4e5749c21398e7514d98ac5757b4", "message": "Bump version", "proba": 4.5088074784871424e-07} {"commit": "a4633c0cfc8ec728521a6c7bd8664c63cfdb1712", "message": "Add missing module to setup.py.\n\n\n\ngit-svn-id: 54a00c96d7caad0f188abf6e0ebede48f6547068@35 630680e5-0e50-0410-840e-4b1c322b438d\n", "proba": 2.734855115704704e-05} {"commit": "f82719e909a69ae5551b210eeec0dae6682ff249", "message": "imports", "proba": 2.234216708529857e-06} {"commit": "7e1fad18d59ed7b12c0f1fdfbe9bc9d178f1b5a9", "message": "fixed error w/delete method(passed leaf not in tree)\n", "proba": 1.2641825719583721e-07} {"commit": "6a043b7371b9c470ac36ae57ff8694ef422aa1ad", "message": "Fix Session not being able to save auth_key=None\n", "proba": 0.00017299101455137134} {"commit": "99499ec660fac3364dc98419b63939864c44148c", "message": "Update with Aiohttp instead of requests, and 2 new feature, Stats and summary of player\n", "proba": 1.1779555109114881e-07} {"commit": "ce5910a162500e1370297e5f5d6e30ac2596fe45", "message": "Use batch_params[\"id\"] instead of iteration counter\n", "proba": 4.022200300823897e-06} {"commit": "db63b1cd774b9a7d75474f659fb684556f862533", "message": "Add destroy_server to javelin2\n\nTo make it easier to test and debug the create_server logic, add in the\ndestroy_server logic.\n\nChange-Id: I97092a817db66b52b50eab26714e76c69e25e228\n", "proba": 1.2856034118158277e-05} {"commit": "25d1251b838460f08c8fb4cd62ce485ed8dd5d94", "message": "remove select\n", "proba": 1.0050824812424253e-06} {"commit": "d18abf6264d80ccb49ffbdb2eb6ecd32b91f107d", "message": "Commented Bot.py\nRemoved some old unused code.\n", "proba": 1.0474435896412615e-07} {"commit": "d2ea252fbf259bbfc01b62481896af1bd1437667", "message": "Promo Mar\u00e7o v2\n", "proba": 6.451777494476119e-07} {"commit": "4105e2abfb36539be4b130525527902057b1b777", "message": "Correctly restart deamonized minions on failure\n\nCloses #29199\n", "proba": 1.5697112587531592e-07} {"commit": "1ce49723d5a8d4e6f0f135f142b3c621fb7ed1f6", "message": "add lines to run functions directly from command line\n", "proba": 7.114512641237525e-07} {"commit": "ccb61072c8d43251b998a68896769ca700f5d827", "message": "All helpers now work correctly other than anomalously created identifier key\n", "proba": 1.3281233179895935e-07} {"commit": "9f6f58580027f306e79dd629cb09705f9ff527ff", "message": "Renamed Day.py to datPython.py\n", "proba": 0.9999756813049316} {"commit": "7dac6f1ada87e8259b8f6f08c439d380ceda7205", "message": "Added some more xray examples\n", "proba": 1.1688733536630025e-07} {"commit": "dfc60e1c6a1fa139abe41fd937b38aafe63edfaa", "message": "Ensure the key term is in the text before removing it\n", "proba": 0.004011737648397684} {"commit": "093641dc3773dfac1d110f8e58ffd8bf041f1695", "message": "Separated the core function that calculates equiv. width from main function --the latter should be the one invoked by the user. Fixed Python 3 compatibility issues. Added feature to save histogram PDF. Added input parameter to specify folder for output figures.\n", "proba": 1.0847116982404259e-07} {"commit": "be850ac63334bc107e865ad8ac8a286bbc8279a8", "message": "Fixed masking/revcomp rules to match was sourmash is doing.\n", "proba": 1.0905222325163777e-07} {"commit": "5f205c251be4105b80ba02a81fc153aaa9658551", "message": "argparse was used to provide better command line interface\n", "proba": 4.670339990298089e-07} {"commit": "c41fb2d88a07901a974f78bdfc8716ad74d51d2d", "message": "sky reader\n", "proba": 9.55375639932754e-07} {"commit": "116f30e2ecc5e7ecc968451b7df053bb8007b7b6", "message": "[FIX] remove no_registre from required field", "proba": 2.828842013968824e-07} {"commit": "432f96a531b541757feb0f26908892dbe59c9e3d", "message": "ENH: added post_collect decorator\n", "proba": 1.914521021717519e-07} {"commit": "5b400a69b7edd511999235042f7ca14fa043f3cd", "message": "Add v0.935 to Angsd (#25995)\n\n", "proba": 1.2704103369287623e-07} {"commit": "4aab04a33a3e90a659b6ba88770ea1e23bbaefe0", "message": "linting\n", "proba": 9.858867997536436e-07} {"commit": "c43da1c4b0c407636ea0c33967c1cf7cf2fcf3ba", "message": "fix bug that caused script_path to always default\n", "proba": 2.3846422436690773e-07} {"commit": "3301f578a2e4060a6a8b3addb49fcbea7b08f017", "message": "paypal : we now ignore transactions with no 'displayAmount'\n", "proba": 1.4001608406033483e-07} {"commit": "832bcc2a3a18d5146893c061526e58de296273bc", "message": "change in the sequence of import of main.py\n", "proba": 4.194708526483737e-05} {"commit": "e62c4a4f4fabab28d239c9d2398506e716c18aa2", "message": "RIN preprocessing: minor documentation addition.\n", "proba": 1.1678727673825051e-07} {"commit": "57db87bf030f5350427356c3ba6766c333018db0", "message": "updating created queue params\n", "proba": 5.690280886483379e-07} {"commit": "7ab2c8c9a1ab34445235bc6e6c63e440560dbb3a", "message": "Make kfold an optional argument\n", "proba": 0.998267412185669} {"commit": "43c9a574a98ecf7e029115fa38872be50033b3df", "message": "Add some scaling based on figure size\n\nSigned-off-by: Jonas Kalderstam <35a2c6fae61f8077aab61faa4019722abf05093c@kalderstam.se>\n", "proba": 1.3390467756835278e-07} {"commit": "eb88dfee9ae7849d4c15effce8ff78592da148ba", "message": "byobu: add version 5.131 (#14932)\n\n", "proba": 1.0769110758701572e-07} {"commit": "8c3bd8d488526d27af8cd131b0fff9425b0eb83c", "message": "peppity pep pep pep\n", "proba": 1.5821289707673714e-05} {"commit": "2d26f8e01fc6a60a080f3168eee1bff946c34799", "message": "Dont update a Post unless there are changes\n", "proba": 1.4548140825354494e-07} {"commit": "122e3e011acf8526a2d5e265a86d00c2a90a371e", "message": "tweaking mass values\n", "proba": 7.924165856820764e-07} {"commit": "9d8d4acf031323301cba1a1a4219a95cffc73e3c", "message": " - Conserto no uso de itens colados a listas na \"pseudo Python sintaxe\".\n", "proba": 1.144282890663817e-07} {"commit": "b4eb2dc64ce4774ed6bc0959625a9c18b625027a", "message": "Add two parameters, embedding_dim and vocab_size, in SharedSoftmaxLayer to make it compatible to embeddingLayer.\n\nPiperOrigin-RevId: 326962169\n", "proba": 1.8103083903042716e-06} {"commit": "43c74f2f1774ce21b735862433cda0ddc694ea13", "message": "Bump cmake (#23434)\n\n", "proba": 1.5749564852285403e-07} {"commit": "9e36b4f418f604c0cd0a6979a37668e09c8d37fc", "message": "Added is_gce method to BaseNode\n", "proba": 2.7613731390374596e-07} {"commit": "8b3ba2ac13bd7a3bf08dc46499be055e2a04ba95", "message": "wheaties better fix for extra line on linenos codeblock\n\n\ngit-svn-id: 305ad3fa995f01f9ce4b4f46c2a806ba00a97020@451 3777fadb-0f44-0410-9e7f-9d8fa6171d72\n", "proba": 2.48174615080643e-06} {"commit": "1273f5446e5ea9a62b2970f9ba61025fdb686639", "message": "Updated decode handler for Docker-based devstack\n\nThis is a temporary solution until we update this service to use the latest JWT configuration used for other services.\n\nECOM-6569\n", "proba": 1.1992817405825917e-07} {"commit": "9d63c341f3644c19060c99e0b7d5210bb1a64551", "message": "Updated GUI.py\n- Renamed variables to be more relevant / accurate\n- Removed unnecessarily initialized / unused variables\n- Added more global variables to make it easier to customize the board & player piece colours\n- Initialized a list to store the player's latest piece coordinates (Python 2.6 requires mutable variables if you want to edit out of scope variables, so an integer does not work & this is the only real work around)\n- Added in 2 new functions to return the player's latest piece's Row & Column values as an integer\n- Changed the board setup dimensions (the board can now be scaled by changing a single variable)\n- Added scalability & the ability to customize the ASCII intro print out. It will automatically adjust to the boards dimensions & resize appropriately (can also set different fonts for it)\n- Added in a Main function to act as starter & input handler for the GUI\n", "proba": 1.15875236588181e-05} {"commit": "16b80041c4422eca7417dc9ca4798eaf3ed043b2", "message": "Working on #1906\n", "proba": 1.7231685944807396e-07} {"commit": "6ff5795342d53f02413364e9f04e47ef2e501e1f", "message": "cmake: allow gcc on macOS for newer versions (#25994)\n\n", "proba": 1.1023609403082446e-07} {"commit": "ee0d9681d8f94dc7d30a92bfb61494d1f4a02cac", "message": "Fix last commit\n", "proba": 1.9165995581715833e-06} {"commit": "bdd0fe456f9616aa9603148b656591fd3b0556f5", "message": "Add new nemesis RestartNodeMonkey\n\nNew nemesis that restart the node.\n", "proba": 1.2483930333928583e-07} {"commit": "0d88493d3480c2a9865824ac26d61ac7582c7df9", "message": "Remove typepad backend\n", "proba": 4.5802215709045413e-07} {"commit": "b0a9d920043a2d634795c4c0bf3058adf9bed2af", "message": "[IMP] clarify meaning of custom_odoo_path\n", "proba": 5.159964075573953e-06} {"commit": "c67f9f2ab699bef48a412a9b1efaf88dd46aa183", "message": "Fix an error in handling upper-case atom names.\n", "proba": 3.38674544764217e-05} {"commit": "aec54c8619e556a1240a9aed04eb00fbfbc27ad7", "message": "Updated result format to match resultdb-updater batch result standard\n", "proba": 1.7185980993872363e-07} {"commit": "114b35144ea50fff4626d82ab2d2ecb8a20ba10b", "message": "ExaGO package: add version 1.2.0; update dependency constraints (#27961)\n\n* PETSc is a core dependency, yet we left a variant for PETSc.\r\n This was removed, and ExaGO always depends on PETSc. The CMake\r\n arguments were updated accordingly.\r\n* camp+cuda is only a dependency when we build with RAJA and CUDA.", "proba": 1.1350640249929711e-07} {"commit": "6b680e6f60248bc2ff57fee5cde9933044617829", "message": "Bug fix for RawData of images larger than 256x256\n", "proba": 1.7178491873437451e-07} {"commit": "b265d8eac1ed4dce03de8db1781e47b55440fe20", "message": "Give 404 when there are no entities returned to a nearby entity query MOLLY-140\n", "proba": 3.646507684607059e-05} {"commit": "df78f57a5105c7cc741ca076ea01e0741bb6a4c0", "message": "ENH: Mark statistical terms as window_safe.\n", "proba": 4.790400112142379e-07} {"commit": "d27c84a102ea30f7ef7d3f3bf7aabf679bcb0dfe", "message": "style\n", "proba": 2.627134790600394e-06} {"commit": "0e43f5299152271adee6de144562ae08087cdc58", "message": "FLEXI: Updates cmake options according to recent changes (#23042)\n\n* fixes cmake options\r\n\r\n* adds several optional tools\r\n\r\n* use tag & consistent names", "proba": 1.2060326071150484e-07} {"commit": "55d339194d59f78b001ad939aae2e67f6ebae5ad", "message": "Update hwloc to 1.11.3\n", "proba": 1.5330418534631463e-07} {"commit": "4428f59ad549189f6e9c0eb039b3b4b72b625ac2", "message": "kaldi:refine dependency openfst (#18047)\n\n", "proba": 1.1075961481310515e-07} {"commit": "0a395fefbc885904e0b14ddea593d3cf6c579ce8", "message": "qt send tab: use monospace font in \"from\" UTXO-selection section\n", "proba": 1.621180274469225e-07} {"commit": "47681b625d6d45e7b11c10b56325b8948788dae9", "message": "revert static_fee\n", "proba": 8.784571150499687e-07} {"commit": "86c8c3306bbf02c8b0556c00986c4fdda44b3711", "message": "Add variant for the --enable-two-level-namespace option in MPICH (#27230)\n\n", "proba": 2.4281527544189885e-07} {"commit": "f7b9592eb9f30e6857f8f0ae257a948ef4aed5eb", "message": "petsc: add version 3.12.3 (#14374)\n\n", "proba": 1.226363224304805e-07} {"commit": "a46ac16cc260d779f6e50eaf03eb02e4341d37ed", "message": "ability to rename with empty extension\n\n\ngit-svn-id: 6ce22b13eace8fe533dbb322c2bb0986ea4cd3e6@691 2d143e24-0a30-0410-89d7-a2e95868dc81\n", "proba": 6.486396614491241e-06} {"commit": "3182d4d26b80f73275d5167d9a31def6a9db38f8", "message": "Typo harder.\n", "proba": 8.277287406599498e-07} {"commit": "5bc6623a9d42a3272def381cfb36d299c21b50cd", "message": "Added special case for models not being a module, but a package\n", "proba": 1.3227902684320725e-07} {"commit": "fd82cff737baabba9dd8c36e97cb5258114caccf", "message": "Make spfft build with rocm (#18068)\n\n", "proba": 1.105742910567642e-07} {"commit": "d4d433102c2f785ff324f1db3e240ce161abf4f7", "message": "minor change\n", "proba": 5.548630497287377e-07} {"commit": "ffcc805b7b035ff992cd11e2b1aeed2e4d2365c6", "message": "cache vehicle ids by fleet number, for a cheaper query\n", "proba": 1.4173114948334842e-07} {"commit": "ae6a9ea4eb98f33185907a01733539ab53994147", "message": "issue#6: Added ignore_dyn_nodes_in_log option to explicitly ignore new behaviour\n", "proba": 1.2884549960290315e-07} {"commit": "10ebccf6766a85da11fee4447a914ac338401d36", "message": "handle unexpected disconnects from uwsgi websocket\n", "proba": 1.6328392860032181e-07} {"commit": "532711168a033510ce6f0d02736e1ccf237f8913", "message": "Draw offset lines in real units\n", "proba": 2.947781467810273e-07} {"commit": "2a8b56e892722e857036fb2234dd7d3568624a24", "message": "Fix overflow page data calculation (#23)\n\n", "proba": 1.108713831854402e-06} {"commit": "ad0c7a3a89bfabace97ba92de0f648a745ec5be1", "message": "fix OT\n", "proba": 1.4498750715574715e-06} {"commit": "95ec63663852ef19ec0cc7c36bb74c3f28f16b13", "message": "deleted corpse code\n", "proba": 1.204916657115973e-06} {"commit": "587cce0f443e3119e00d09905547ce690085f0f1", "message": "test pop and push moar\n", "proba": 2.7971384497504914e-07} {"commit": "60ff1d57458c113f31261fa82a739695e4b5348a", "message": "Training batch reading stub.\n", "proba": 1.5543379561222537e-07} {"commit": "5f079c1711bd67bb934cedc19b81fb8c9d565f64", "message": "Small documentation fix.", "proba": 1.201504886694238e-07} {"commit": "726d87f5ca4a1217c79cb651a48a9919c58bd271", "message": "Added comment redirects\n", "proba": 1.88455871352744e-07} {"commit": "00ab8b90d1dd93ccbb87e5331c946af08636365f", "message": "remove a wee bit of cruft\n", "proba": 5.21414995091618e-06} {"commit": "27c534a19d00deba67064537e124b020ec6801f4", "message": "Add admin helper to encode action item names.\n", "proba": 1.2025067519516597e-07} {"commit": "5d93f5781431538a87d9ea60eda3b7cd1990702a", "message": "Nexmo MSISDN doesn't have a +\n", "proba": 2.8421192155292374e-07} {"commit": "6bc601b0562929543a7fbd675a45420d102d7b94", "message": "Make ec2 to csv executable\n", "proba": 0.0029740864410996437} {"commit": "41efbfdda6b28375580919f9ca67cac5f29be5ba", "message": "Removed dependency on jQuery.\n", "proba": 1.2194637122320273e-07} {"commit": "fd3c61fd581d061358e20dc445c3102e07ace63b", "message": "Update settings.py", "proba": 7.488397386623546e-07} {"commit": "b8fa0a1be4f87d33a06b13a72af9a5e49e20f1ba", "message": "Show an error message: 'exec does not work with FARGATE.'\n", "proba": 2.183112655984587e-06} {"commit": "f32be2db9d0319df9ae669289f2a5c4c6c466bf7", "message": "Fixes #72: Health checks use HTTP v0.9 which is not compatible with some services\n\nProblem:\nHTTP health checks configured in Marathon result in health checks on\nBIG-IP that make requests like:\nGET /path/to/status\\r\\n\\r\\n\nwhich is different than how Marathon and OpenStack LBaaS do\nhealth checking. We should use HTTP/1.0 to follow OpenStack's\ncompatibility path.\nSolution:\nUse a BIG-IP HM send path which appends ' HTTP/1.0\\r\\n\\r\\n'\nto the path string as configured via Marathon.\nTesting:\n1. Configured Marathon Health Check path as \"/\"\nfor the application.\n a. Checked to see that Marathon reports the app as healthy.\n b. Checked to see that BIG-IP reports the app as healthy, i.e.,\n Available (Enabled).\n c. Checked BIG-IP configs to ensure that the ltm monitor config\n has:\n ltm monitor http svc-2_172.16.3.2_8080 {\n ...\n send \"GET / HTTP/1.0\\r\\n\\r\\n\"\n ...\n }\n d. Checked that when pool-member logging is enabled,\n /var/log/monitors/.log shows the line:\n send=GET / HTTP/1.0\\x0d\\x0a\\x0d\\x0a\n2. Repeated same test but with Health Check path set to\n\"/static/index.html\"\n", "proba": 0.0012614964507520199} {"commit": "191e4fa4caa7b09ae4831211a2c659f7e0512cbb", "message": "parallelized model\n", "proba": 9.918999239744153e-07} {"commit": "df0dab76c0cc5a38628d4b300ad71d718b109642", "message": "enforce dataframe requirement, fixes regression\n", "proba": 3.194864461875113e-07} {"commit": "0e37591317fa31aac1eec0608c7dc93a38f1e5c4", "message": "Removed redundant 'LeonardBaseWorkPackages' class.\n", "proba": 1.256043162811693e-07} {"commit": "226b7e48d9faaa6fd82e84427307b1b4061a47d3", "message": "Simplified some code in Leonard.\n", "proba": 6.251379090826958e-06} {"commit": "bbc4a77255698cc50d64522037daac4e0a6c713d", "message": "Show latest block times on main page.\n", "proba": 1.082211156244739e-07} {"commit": "0532e348beab333422be322938b56770a4925935", "message": "+ done with celebrity classification, as well as writing results to the respective files\n", "proba": 1.0338868605686002e-07} {"commit": "1a720763ba70b7dbb11ec1610cc927d0003834fe", "message": "Workspace created\n", "proba": 7.367830221483018e-07} {"commit": "cff97ae4a4c2fb515eff0e114eb9952b5eb14391", "message": "hash a few more times when saving master password, to be secure even if the two salts happen to be the same (very unlikely anyway).\n", "proba": 1.2321602582687774e-07} {"commit": "92358ab90f60b2a128101f50198c9f5d5c91589e", "message": "Remove bogus pass statement.", "proba": 4.179782536084531e-06} {"commit": "9a38e95948b9bb82fda52ec0e08d17bdafd05245", "message": "Adjust comment content. [ci skip]\n", "proba": 3.6785888823942514e-06} {"commit": "86f878d83b862fe454285a528f3a53b3e55452da", "message": "Adding class\n\nCreating an overall class for managing all the pieces.\n", "proba": 1.333956021198901e-07} {"commit": "a55d04612c2c494eb05d6eebc6b51ebb61f634aa", "message": "sigmoid-try\n", "proba": 4.3084746721433476e-06} {"commit": "302386b0dd4f5a23e7b56b9bc46e5fcf6771e734", "message": "Only label columns if they actually exist in btable, otherwise raise error\n", "proba": 3.5738227666115563e-07} {"commit": "494d1c380c02b5c6c3c25be191021570aad96dbc", "message": "Force float-dtype on likelihood array\n\nThis fixes a rare error where the likelihood array is assgned the dtype\n\"object\".\n", "proba": 1.1268228661265312e-07} {"commit": "bfcce4cec23afaf001df2341cb7d17722b5827b6", "message": "Make Engine.turns_when iterate over only turns, not branches\n", "proba": 1.9932331269956194e-06} {"commit": "3a25a517a5c876a9fcacaa1b359aefe26e95e7b9", "message": "fix for the above fix\n", "proba": 0.00018124761118087918} {"commit": "4aff8bdf8d2b7ec6629b989654692dd0e23e1c91", "message": "Fix a type check\n", "proba": 0.0006682283710688353} {"commit": "e2665c91746d868b2a77fd6e162dbb082743856a", "message": "Optimize dict_delta a little more\n", "proba": 2.287150522306547e-07} {"commit": "55d7f3e4eb3cf0d89977f9a6c6a847d76bab06b1", "message": "do not invoke strip() on None\n", "proba": 0.00015218691260088235} {"commit": "a6a74dd5bb7c2d89c8fc641ba7faccedef4b75a2", "message": " Changed a couple of log.info to log.debug\n", "proba": 1.0714034033298958e-06} {"commit": "b555de912ee861e33960616a69111dace853b791", "message": "Fixed a bug in Content-Type detection\n", "proba": 3.3832142776191176e-07} {"commit": "1687ef187e896d40be538a5629bc23c75392da7d", "message": "url.quote urls before render_templates for embed pages\n", "proba": 1.8907766730080766e-07} {"commit": "28b31e15f8c5c91b262baf95e22c9fa819fc0a49", "message": "If workspace exists but permissions differ, update the workspace.\n", "proba": 1.269204261689083e-07} {"commit": "1d8f997d1ca542f4b8a4eea1645b255003c3545b", "message": "linode.resize is now on production\n", "proba": 1.2498011869865877e-07} {"commit": "39e833e935fd3712773bedab795279dba007b994", "message": "fix id to not integers\n", "proba": 0.9999992847442627} {"commit": "256f17dbdfb1f68e257a5560a10ac6b27ec2fa03", "message": "Much improved error messages when hitting the Floobits API. Related to #212: better behavior when creating new workspaces with bad characters.\n", "proba": 9.759226315964042e-08} {"commit": "be435796afbc75bddc3cf231902fb4a17299cd3e", "message": "Convenience API on Unit node for subtypes.\n", "proba": 1.1134146404856438e-07} {"commit": "dbf9df0deba2a851b8aea4caa3484384ddc44589", "message": "Use UnitId (long) instead of bson for Mongo _id\n", "proba": 1.1267235322520719e-06} {"commit": "2058c27074591028ef87e496137522e3a8454af9", "message": "switching off mongo cpu on the api\n", "proba": 3.470103706604277e-07} {"commit": "155dfb5c051f25c48b46a25906d7ed2b19da7352", "message": "Fixing utf-8 encoding issues.\n", "proba": 2.2279984079887072e-07} {"commit": "2f33fd11e728403f1b483001fd0d3418911698ec", "message": "Refactor api.py a bit\n", "proba": 4.311843326831877e-07} {"commit": "ceef8119ae8c8f9386a961510451f722547a8a07", "message": "nothing\n", "proba": 0.00033422152046114206} {"commit": "ce13c3f52a3a04078d32ff80b645d169344bdc4e", "message": "updated for quail-flask\n", "proba": 1.7667734653059597e-07} {"commit": "5bec3f968a1da6c5e86016515bad34a15c431bc8", "message": "1. Separated stacks for labelled brackets and indentation levels.\n2. Added logging.\n", "proba": 1.1323135851171173e-07} {"commit": "672e42e558cb47b37d4a8c7fb47105e4efad7142", "message": "fix doc config for latex\n", "proba": 3.398743331217702e-07} {"commit": "542b87fed3917a5d10778ae4bc9055e539e3538e", "message": "doc: Added \"Useful Links\" section to all sidebars\n", "proba": 1.1675074773620508e-07} {"commit": "bc5956b46cb8525b1dab18475ce374ebce795554", "message": "rm debug print\n", "proba": 8.914206773624755e-06} {"commit": "4b0917beece54d99b8078872097d312edbd7e896", "message": "update stage 2 API view to save all the required related records in an atomic transaction\n", "proba": 1.1926584875254775e-07} {"commit": "c8582c277dc80142105ae54b688152664115b6af", "message": "byBranchNoFlavorMap and byBranchNoVersionMap do not exist\n", "proba": 2.471752225119417e-07} {"commit": "6481b12bac65d9e8d565650d580adcdd5cce39f6", "message": "slice off username,password, and port before checking host name\n", "proba": 1.2984395425519324e-06} {"commit": "f7c81c8325c3be76354a1ac7d4e02cebe2bfa77e", "message": "Make is_bound_method private.\n\nSmall change that in practice shouldn't matter, but I'm a bit pedantic\nabout things being private.\n", "proba": 1.1753101034628344e-06} {"commit": "5888d4231bbe0d33e9c94d475bb116e4b7fd3e0c", "message": "Fix unit tests for issue #272.", "proba": 1.0627661595208338e-07} {"commit": "980f3258acb103c8da5d3dd0f3cfd530eea9cd54", "message": "fix import from django.conf.urls\n", "proba": 7.672078936593607e-07} {"commit": "5ac929c94193b7ade08e81981fdbbc77a39d3167", "message": "Update a base\n", "proba": 3.1723669735583826e-07} {"commit": "19571aa7b5049c4845c201257c5afe815ce1875b", "message": "fix: database max_age default\n", "proba": 2.6543544663581997e-05} {"commit": "ff8d4979cea094621a5654a1f20c7874a28e8867", "message": "Tweaks\n", "proba": 8.381992415706918e-07} {"commit": "fcdea6a3cd6b1c2330a79438b611bd238ce20ec4", "message": "-Finished compression algorithm\n-TODO: 1: refactoring and cleaning the code 2: Testing with representative dummy data (where carriers are switching lanes and the position of the drives is resetting) 3: Export Csv 4: the exeption where the Nth drive is finished and the carrier wants to continue to the N+1 drive but there is still a carrier on that drive. What do we do in that case?\n", "proba": 6.15414023741323e-07} {"commit": "8a4f7aa62caa79acdca8005d95dc4d2a29afc6b2", "message": "Skip some benchmark tests if there is no access to /proc/diskstats in the test environment.\n", "proba": 1.1641009223239962e-07} {"commit": "056269e5054edef453e38188b897f868ba656e65", "message": "changed generator values to reflect 2 week scenario\n", "proba": 2.101122333897365e-07} {"commit": "66fddc3b739031f58837871ed51ef2994911ea89", "message": "ENH: simulation.model.job: absolute symbolic links added as fallback from relative symbolic link for tracer input files\n", "proba": 1.8317072658646794e-07} {"commit": "ab0884cfee9aaf5a8bf2f6e66509af582c0ab3e9", "message": "Add error handling to topology creation in case the Infrastructure layer was not installed\n", "proba": 2.990118446177803e-07} {"commit": "3176f4b10083566c132b69a2c842809681d838dc", "message": "Fix a bug in the permanent delay when the object is destroyed\n", "proba": 1.0733178896771278e-06} {"commit": "b2f698e29bb927f74825f1e4223697491332c749", "message": "Version number\n", "proba": 9.945499914465472e-05} {"commit": "2967342cb9e4c36279e74b87ed2c376eb9adb416", "message": "Slightly improve ground altitude estimation code.\n", "proba": 1.419184769702042e-07} {"commit": "096dd8ad5606bc27eb9f33adff367363c382d88e", "message": "bug 1186235 - npm-cache-get step should be called with VIRTUALENV_EXISTS=1. r=jgriffin\n", "proba": 5.361492185329553e-06} {"commit": "e85b30c1a32aeb9eb1cbe887bcadcfabf30b3407", "message": "eject all available_ball in eject_all\n\npreviously only balls which already have settled were ejected. also\neject to the configured default target instead of the next device.\n", "proba": 1.018747468606307e-07} {"commit": "3f9612eb181bad4b9acbbda050d28a901da615c4", "message": "Use ordinary estimator, not deprecated contrib. Messy temp commit.\n", "proba": 1.0575410414048747e-07} {"commit": "357a0f3e878fd332b6909d28933d361fd5cf2071", "message": "use is_parallel for better encapsulation\n", "proba": 3.5856899103237083e-06} {"commit": "bd818f2a65ed2bac73d4f12f87d7c1d213b64715", "message": "add in view for named loci and trigger for including LID\n", "proba": 1.2091028622762678e-07} {"commit": "70d76a582819aa10a14c1ef36ff4c4c2de3d6c3b", "message": "Request for permissions is an outlier\n", "proba": 1.3428103557089344e-05} {"commit": "10ca45cb0218ce5fa972f364445035e732da1489", "message": "enh: enabled list of atoms in sub_orbital (probably not worth it, but)\n\nSigned-off-by: Nick Papior <81a73bca3d342ffee33d7cf845fdbf77b6553831@gmail.com>\n", "proba": 1.3205101367930183e-07} {"commit": "48c213760f55069614c1c65ea958d369b5138b70", "message": "Style fixes\n", "proba": 3.7103583849784627e-07} {"commit": "149fa9c2365fd60c766985eb1f13b0c9d43102dc", "message": "Return empty string if file doesn't exist.\n", "proba": 8.831547165755183e-05} {"commit": "1a818170a4537187b46597027a59d92c6b197e84", "message": "Clean up imports.\n", "proba": 1.4471756060174812e-07} {"commit": "ddb79d01e7ae0c840a3f3181a600aae34613c4e5", "message": "Add a __repr__ method for LoginToken\n", "proba": 0.001048790873028338} {"commit": "973a8da0a491825bfad459b12fbdc101c2376e03", "message": "Download links are broken on Transtats prior to 2018\n", "proba": 1.1046130055092362e-07} {"commit": "427d1e229c4f2223dcb70bb038a06344af9965ae", "message": "Deleted some dead code\n", "proba": 0.00012191645510029048} {"commit": "d1984c602b83bcb5694031c020c9eb343337b1c1", "message": "changing chaco example to use enable2.example_support instead of chaco2.example_support\n", "proba": 5.756653536082013e-07} {"commit": "39b69b7116345727489c6a44be13bdd0ebdce5be", "message": "should be accessible from anywhere\n", "proba": 5.302747467794688e-07} {"commit": "7aee6d7de4e64e56210a24d7ccfb5f980e6655fa", "message": "Don't reset timer on clear\n", "proba": 8.875914545569685e-07} {"commit": "2f4b79233e30d42140bbc07059417443bf7a0757", "message": "Minor cleanup of repeated identical test assertions\n\nassertDictContainsSubset is being called multiple times with\nsame arguments in a loop. Since assertDictContainsSubset is\ndeprecated form python 3.2, replace it with checks on\nindividual key, value pairs.\n\nChange-Id: I7089487710147021f26bd77c36accf5751855d68\n", "proba": 9.797699931368697e-07} {"commit": "47b3307cc5809f04da363d228850a1cc180419f3", "message": "Add some checking for columns with no data and fix gaps in VCF ref field\n", "proba": 1.9248868454724288e-07} {"commit": "174961b9454feedd2947b472d520d23f296abf69", "message": "Fix action test (#21102)\n\n* update _parse_returned_data for no _ansible_parsed\r\n\r\n_parse_returned_data no longer adds _ansible_parsed\r\n\r\n* pep8 cleanups\r\n", "proba": 2.3404601279253257e-07} {"commit": "1fc8b753950e61199d99ccea86ec0fcc18c5abc6", "message": "SVGCell now saves either SVG or images\n", "proba": 1.5178525814008026e-07} {"commit": "2eeb872525a720289c3dc2658a43b67475ca9b64", "message": "And missing yields to session creation in tests and purge sessions before each test.\n", "proba": 9.879860130013185e-08} {"commit": "c148a713995ea650236add89ac42436d83d8b416", "message": "test stub for orchetration\n", "proba": 2.4452418756482075e-07} {"commit": "83003f608f28cd9f80b176d8674015a1bdbee704", "message": "share views\n", "proba": 2.763196107480326e-07} {"commit": "b8051d5febb52c2a50c8707f1ad81cb2fa256ca5", "message": "to test\n", "proba": 6.880683827148459e-07} {"commit": "b94b103b9cff91557f581b89bfa2c97d4865e2e4", "message": "Add message indicating if a new key was generated. Needed to diagnose\nlocalStorage loss on iPhone.\n", "proba": 1.1730856641634091e-07} {"commit": "d4f84711981dc81395f8f53845d91d1ee57b7398", "message": "Correctly create the additional dynamics and fix some more comparisons with None.\n", "proba": 2.117844104532196e-07} {"commit": "babb1ae676f0d32d31bfe90915649ac0f645b112", "message": "Passing global context to tree hook\n", "proba": 2.58517673046299e-07} {"commit": "0634950bf04d1fb555227a5eb6b6b6efca7272d5", "message": "Fixed a bug when trying to create subdirectories for file type externs unnecessarily.\n", "proba": 1.0896219748701697e-07} {"commit": "1fe401d167562d87d2fa370e01a8741a43f56907", "message": "fixed config in example\n", "proba": 4.482841973185714e-07} {"commit": "0ba1eefc82133ac7acde0b2905e17a9aa4abae08", "message": "fixed wrong return\n", "proba": 1.5762246903250343e-06} {"commit": "07844037ae6c498219b569f17eca826f63235570", "message": "Find out more about groups.", "proba": 1.1663467347489131e-07} {"commit": "3e9f7e47084fb0603a242d98dced511247599fde", "message": "Remove if statement from viterbi_decoder. Get length from rate denominator instead.\n", "proba": 4.1670700738905e-06} {"commit": "92fd49422c84876085cd8240f4672f24d5aaeed2", "message": "[dev-dhh] a3c demo temp\n", "proba": 2.2881410188801965e-07} {"commit": "5cf3b4c5b5ea6ade294dfb79e8df849d9cd81075", "message": "ENH checked for scipy version\n", "proba": 1.3644989849126432e-07} {"commit": "9ff770d1cf834cdcc255ffea6e50d4948680d8ca", "message": "minor intraday example rand\n", "proba": 5.269953362585511e-07} {"commit": "2b99ada89224c3d277ca0e5d220e589a9f360434", "message": "Added a setText for kitchensink's muliple dialogs\n", "proba": 1.3751773053627403e-07} {"commit": "4e889b0a30f3654290b0b3f06e2dc6aee3f95308", "message": "Implement Detach/Attach Protocol.\n", "proba": 1.9211456958601048e-07} {"commit": "23e5c2d0542c82822e5ee25f700e4348978905bf", "message": "Add \"data\" to source pointer\n", "proba": 4.316074409871362e-06} {"commit": "a288e96594d4389be3b2813315b339d88aa88a9d", "message": "add upload timestamp to manually entered actions\n", "proba": 3.885601245201542e-07} {"commit": "f8936cb5aa5d392f2b9123a97e39ad32e8426ec3", "message": "wrong scenario specified\n", "proba": 1.7198701698362129e-06} {"commit": "9ecfbc658f669c02f8bc81b7c832edc0a639ee95", "message": "make podcast indexable by all its Ids in episode-list\n", "proba": 1.0713707752074697e-06} {"commit": "9f51bad003933a53dadf761529d87377f9edb8cf", "message": "Fix some errors in the tests\n", "proba": 0.0007540215156041086} {"commit": "cf13876a194c702d6a49b490e99cbcdd43942d02", "message": "Made Res_Links a singleton so that category_links_import.csv is only loaded once.\n", "proba": 1.0344805900786014e-07} {"commit": "9a131538ee9c6d598833055a859dc69c0af94b4e", "message": "Removed duplicate pyvirtual display in platforms.py\n", "proba": 4.962678872288961e-07} {"commit": "b6d8b86dd6fc12835cd40964650b88caa8cd79e8", "message": "Ignore hosts not appearing in their own features\n", "proba": 1.3431137801944715e-07} {"commit": "18d04c9ba694e827bfa50fbfd6be2eb70f5f5ae2", "message": "Update commenting\n", "proba": 2.1761169932688063e-07} {"commit": "2eb8fe6696424f7cfb75742695f843061706d778", "message": "cleaning up old file\n", "proba": 3.651445240393514e-06} {"commit": "7a96689c685c63b614ad02eb4d38f363dfaff152", "message": "Fix invoice sign for refund invoices\n", "proba": 5.43849296263943e-07} {"commit": "8a52251c85f409a8ecd1a407bdca00c2d4b53183", "message": "testlib: Clean up core dumps in between nondestructive tests\n\ncopy_cores() always downloads all core dumps from the machine after a\ntest failure. But we don't want older ones, just the dumps from the\ncurrent test.\n\nCloses #13855\n", "proba": 1.3541153975893394e-07} {"commit": "e664c249d0197783382c49427af3bc34fa04510d", "message": "Add serializer to parse invoices into marshmallow\n", "proba": 1.286504357267404e-06} {"commit": "139d529f6234dced31a0d0f3a890fdc704ccc5f6", "message": "Added documents admin action logs.\n", "proba": 1.1543458811047458e-07} {"commit": "f1f47758d5a95b7ab7684f9e7a8d689b3668b0dd", "message": "Add datetime to mail error log\n", "proba": 1.0202033990935888e-06} {"commit": "1fe1636418aca739dcc218992d321c7c97349b87", "message": "FIX : the agent_conf_name is made up of _\n", "proba": 1.3972675105833332e-07} {"commit": "c2c8771e29e2633eb3f402b92dfc092c7de6a62d", "message": "Fixing tests for ensemble local predictions\n", "proba": 1.3773481555290346e-07} {"commit": "b23a1873cb1ffdce0589dc9be96cb891e0ca46d6", "message": "#26 kill the calculation if the SCF does not converge\n", "proba": 2.1025736884894286e-07} {"commit": "949a269b8a878241d8c0b849893b9274c4bb01c7", "message": "remove old code, and make sure resources are closed\n", "proba": 2.587709957424522e-07} {"commit": "689becbf57c5955a8f87055e4da6c0733b6362da", "message": "removed sentences view\n", "proba": 0.0011549993650987744} {"commit": "e953626b530b303a0b34c192e5f300f063b1498f", "message": "updated\n", "proba": 4.958747581440548e-07} {"commit": "8e3a72aed2e510bcb19604fdcf00b85c91c4e7e9", "message": "Caption instead of description\n", "proba": 1.8952927348436788e-05} {"commit": "4c495fac02f75c537fc6bc617391c5f0b97610e2", "message": "Show downloads in date-reversed order\n", "proba": 3.44418253916956e-07} {"commit": "3eb72acd9f9a9b768da7765ded79cc0320975597", "message": "Issue #74: added sample video files to package_data of giftgrab.tests in setup.py\n", "proba": 1.1878127281761408e-07} {"commit": "1e13edc6249e9d2de06e2d86056fdea840d08a63", "message": "add sniffing\n", "proba": 1.9729572159121744e-05} {"commit": "e4637a256585200e1d97abcbc6b252fa815af1bd", "message": "Add start-fg option to logsandra-monitor.py\n", "proba": 4.7380592604895355e-07} {"commit": "05aadd7c3721d64a231c2f1488e7c0741170a3a1", "message": "Remove old, unreferenced feature flag\n\nThe reference to this was removed in this PR, which got rid of old\nreminders code:\nhttps://github.com/dimagi/commcare-hq/pull/21832\n", "proba": 5.358225735108135e-06} {"commit": "3d21fad066e22597543beb1723821ff6bbbbe058", "message": "Add pypi classifier for python3, fixes FB-7588\n", "proba": 5.567081302615406e-07} {"commit": "b409e236296ce423a20b3f86bb551151fdaa55b5", "message": "Fix unicode error\n", "proba": 0.02950548380613327} {"commit": "9f4a49fdd2b7d96efb396be3671f02648bb5aa64", "message": "Updated test (TRIVIAL)\n", "proba": 2.9722303906964953e-07} {"commit": "1822b886de043d1dd17255dfaa31a02a17d2417a", "message": "fixes moved help link\n", "proba": 2.6079806048073806e-07} {"commit": "d83acd8462864522ae35e7bb6ad913d35e200c30", "message": "fix for python2.6\nsetuptools/cython does not work together (it looks like)\n", "proba": 1.0524581028903413e-07} {"commit": "b6b0fd47e2c9e6fa74a522528018b79505847733", "message": "mostly printing stuff, some just_totals work\n\n\nFormer-commit-id: d9a0a63782322c59de15b2d48ea0eb3a8e1c11da [formerly d094edf5e827b9fc0d74bc951644943ae6196340] [formerly d9a0a63782322c59de15b2d48ea0eb3a8e1c11da [formerly d094edf5e827b9fc0d74bc951644943ae6196340] [formerly d094edf5e827b9fc0d74bc951644943ae6196340 [formerly 809689c530ac45ab979c99652910ce2b9528ac70]]]\nFormer-commit-id: d7b48b79f4f76abaaa2db671cebcd6393bf58b8b\nFormer-commit-id: ebfba0eb512b35bab682a996a14d4b16311d9d80 [formerly 17ae3061ea36a167df446d5187aae956a4280724]\nFormer-commit-id: 25931ef5437ec5279698bef75403ce2804adf8e9", "proba": 2.120271346939262e-05} {"commit": "3764ca50502a03965deaf4e8eee3f5b279f07189", "message": "Issue #68: nicer formatting of reported features when installing\n", "proba": 1.1680999989494012e-07} {"commit": "833393e9f0da33d72eefe593fd7dde503f2c1ac2", "message": "Changes to dataset.py\n", "proba": 4.1084131225943565e-06} {"commit": "7547ed6979af5890a4f72a916f9a2da090fd752e", "message": "0.1.24\n", "proba": 2.2559897843166254e-05} {"commit": "58bb0af39cab3d0899abf0e9b963ddc3822a98b0", "message": "Added more tests for right side operators\n", "proba": 1.2063063081768632e-07} {"commit": "f6c5bd53c9bdfc9c8263be383e064dbcc12ec915", "message": "fix issues with multiglaciate and in-place updates\n\nIn-place updates causes problems with using the model with PyMC.\nFix that and simplify the code a bit.\n", "proba": 1.06711695480044e-07} {"commit": "8fd799ac287977aad0d545f5223cea2c01a660ac", "message": "Limit default number of CPU to at most 8\n", "proba": 2.444421625114046e-06} {"commit": "1d207a134e5fa1979e7393652bf954752a80a25c", "message": "Fix wave generation unit test\n", "proba": 8.37794061681052e-07} {"commit": "905fd71f997c6a543c598fe32af3e04fdd3ea5c5", "message": "more helpful message when requesting wrong content type #343\n\nshow diff instead of causing requests_mock.exceptions.NoMockAddress\n", "proba": 2.767769160527678e-07} {"commit": "d8d21d38915427cf357d7832bdeeead59b35e201", "message": "Made test for GIS Envelope function more strict.\n", "proba": 1.0649495152392774e-07} {"commit": "80002276c2740ac2dac52684e02f17a41ffac496", "message": "These tests are not destructive\n", "proba": 0.9990967512130737} {"commit": "10c6c3cb01821e61d44688143c91b3754155eea0", "message": "Remaining replacement with yaml.safe_load for YAML 5.1+ compat\n", "proba": 2.6248957851748855e-07} {"commit": "256cbc24e5a2d1935b1b901c0cdf38b99e779d15", "message": ":fire: Remove inconsistent tested code\n", "proba": 3.2407476169282745e-07} {"commit": "0a4ac23c51192d13d5bc827d2951a332f310da86", "message": "Fixed #6365 -- Added `blank=True` to parent attribute of `m2o_recursive` model example, thanks dgrant.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@7015 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 9.230405453308776e-07} {"commit": "7b9caa70d3abe6eada8d053fe2f1460a75aaa142", "message": "Add a test for funcptrs in parameters\n\n", "proba": 3.278630856584641e-06} {"commit": "75a57b9db08e34f8c876b56eeff946aef158d48b", "message": "Updated input tests data\n", "proba": 8.665898008075601e-07} {"commit": "46feb062107eadf6cb19a9b3619b8f6aeaef9177", "message": "blacken\n", "proba": 2.8316915177128976e-06} {"commit": "e7c7014936d25c51a178bb1ce0af5647536ecbc8", "message": "remove chardet warn\n", "proba": 2.0350346403574804e-06} {"commit": "cfddbdad2a039494cfd0091c035ceb5a8ecc2199", "message": "fix: ignore file mode changing error on remote filesystems\n", "proba": 1.1424427839301643e-06} {"commit": "c2e1c38a0078e6efabc83fc2efdc0b3087c4eb36", "message": "additional fixes to terminate logic in csmachines\n\nThese changes passed preliminary tests on dev2\n", "proba": 1.3179473512536788e-07} {"commit": "0c85bee1c550c1e08ff8df58cbd0d675ac5d294a", "message": "Fixing config on tests\n", "proba": 7.359459459621576e-07} {"commit": "1177bfd306decd72254cd3c4f26b251bbd8466e8", "message": "Test case demonstrating #5069 (underflow)\n", "proba": 1.2090681877907627e-07} {"commit": "35cebe177e55ae1abd8a822d056304231d5753f2", "message": "Rewrite conditions on user pipeline\n", "proba": 1.530161398477503e-06} {"commit": "4f291eb7d26a3990c06bdaef7a9771e99485ed6e", "message": "fixed fetch_trips_and_send_push_notifications\n", "proba": 1.275226054531231e-06} {"commit": "57ac23f2584fd8e19d7c9341c3b7009de1d424fa", "message": "Simplify tests.", "proba": 4.22364291807753e-06} {"commit": "9123afa4c045643a56a049cd0d5d1ca2d7367218", "message": "MNT: make fake ChainMap a bit more real\n", "proba": 3.990651384810917e-05} {"commit": "392c5ee8f408cdfc71e595e3c050d8762567fa79", "message": "v0.5.12\n", "proba": 6.130665951786796e-06} {"commit": "23e3197f15d13445defe6ec7cfb4f08484089068", "message": "Use few nsteps for testing sim-script\n", "proba": 2.44718279418521e-07} {"commit": "5c4fdea6e56b4de133c46172d177d7ff085514bf", "message": "Add region tags to support Data Catalog docs [(#2169)](https://github.com/GoogleCloudPlatform/python-docs-samples/issues/2169)\n\n", "proba": 3.1308420034292794e-07} {"commit": "05f8f4652165716bbe7dc485dd37a46bcfafc917", "message": "Indent error\n", "proba": 2.06630124921503e-06} {"commit": "e1b3cc15104ef62b06ed1128d0c2317b97371b3c", "message": "Minor code refactorings: Extract form function to a new free function, and passing arguments as PETSc's context\n", "proba": 2.033653885291642e-07} {"commit": "8e1bca6167bb9fc18c1c3e646914a3f85748de96", "message": "Incremental smoke test coverage for ryuapp.\n", "proba": 1.0820646423326252e-07} {"commit": "5b7ae988e12422ecf820632e6d47413498aebc5c", "message": "Skia master utils: add subcategories for builders\n\nThis will be used by Rietveld to more easily categorize trybots. It does not add the extra category/subcategory view on the console page like we have on our old masters. Adding that will require changes to the upstream buildbot code.\n\nBUG=skia:2974\n\nReview URL: https://codereview.chromium.org/613703002\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@292180 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.1161761221956112e-06} {"commit": "bb5d0211b005a8733ca52325e7c26efa387a06f5", "message": "implemented naive bayes classifier\n", "proba": 1.4686778513350873e-06} {"commit": "cbca30d44d7f868ea987696e4634ccf135ae24d9", "message": "Test helper for GOAWAY frames.\n", "proba": 1.1951873091220477e-07} {"commit": "ad615816a9f50c0b42a43879c6b78e003bd6131e", "message": "Update documents of downloader module.\n", "proba": 1.197161907384725e-07} {"commit": "aaaae547272bc82dc579cb826b0fc01083a41e1f", "message": "Test failing...\n", "proba": 2.5634616918068787e-07} {"commit": "d735801a625a38a757e3fb98293716790e2e032f", "message": "cleaner error on bad usage\n", "proba": 5.519797809938609e-07} {"commit": "125d12e444126c2d9d67be3ce249fed8586da1c0", "message": "remove conditional logic, since line_profiler is now required\n", "proba": 8.253387591139472e-07} {"commit": "7e5727358e4004f0765ff1d2a47caee331b60fcc", "message": "Fixed migration\n", "proba": 5.548233730223728e-07} {"commit": "1dd4ca1d814471caeee259ce34ef1301ed501631", "message": "lyrics_sources: put sources in their correct category\n", "proba": 0.0015896721743047237} {"commit": "ac3a49c0ba1cdc2ecfbabcf2b3a32facc0e8841e", "message": "Delete swig_decoder.py", "proba": 5.412279278971255e-06} {"commit": "cca871262af7a2153ce42677ccd5b2a95189e8f9", "message": "fix for broken nick tracking in join phase if you get removed due to a Guest/away nick\n", "proba": 1.260290787286067e-07} {"commit": "f9327999e30a5ace605ea1688f70aeb649a2a2c9", "message": "test coverage raised up to 60%\n", "proba": 1.9105485193904315e-07} {"commit": "4329b82d9ce0facf110e9bc20473399624815bbf", "message": "Use ternary conditional\n", "proba": 0.9986265897750854} {"commit": "f51c373d877a7ff6efe4210904318216c989463c", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "f9ae3a10ad299da9a52b57f3122c53c80983892b", "message": "Removed string parsing from business logic functions.\n", "proba": 3.164755071338732e-07} {"commit": "9f850b3168d5bc827c2553426720e5702bf5296b", "message": "add comments\n", "proba": 1.9999514222490689e-07} {"commit": "29cf18f7bec60d8023072e24585b1ce87ce6ece6", "message": "Update revealroles\n\nNow shows which side turncoat is on, and what role someone was if they\nchanged during game. Also removed string concanetation so save on\nmemory/time.\n", "proba": 9.886834817507406e-08} {"commit": "cab8f8f0fb5d4fa0e7957d27942bdfd383ef399f", "message": "[FIX] Related with O2M behavior corrected\n\nlp bug: https://launchpad.net/bugs/413121 fixed\n\nbzr revid: jvo@tinyerp.com-20100125123453-ahsnyt52zy8du9oc", "proba": 2.780112708933302e-07} {"commit": "138ab1360d3a4aef21f73b147151a153f68663e4", "message": "Adding test\n", "proba": 1.2634958466151147e-06} {"commit": "3107195bcda8395210bca51992ba2d2f51868d4d", "message": "action_limit is an optional parameter\n", "proba": 2.1508499230549205e-06} {"commit": "99f2d8cc1cd8e28ce853bebdce5d6f83bd122a5c", "message": "pep8 fix\n", "proba": 2.8706645593956637e-07} {"commit": "f55c0ef288995970358e7322b9b96716e9dc2bf3", "message": "Change check to just disregard alert if sans mac address\n\nSigned-off-by: Michael Casadevall <6fe105eefab41990d7ec714c6c25ade3095cdb48@them.com>\n", "proba": 1.1430951474267204e-07} {"commit": "bc2ddd6cbaa0ec7af479f6947a69fc1b41d181d2", "message": "Demo file updated.\n", "proba": 1.266910203412408e-07} {"commit": "f3c31bba2dfe49c485703afaa1ee0273d8a3811d", "message": "Update the SyzyASan blacklist.\n\n- crnss.dll : Doesn't seems to be build anymore.\n- ffmpegsumo.dll : We should be able to instrument this one.\n- googleurl_unittests.exe : Doesn't seems to be build anymore.\n- gpu.dll : Doesn't seems to be build anymore.\n- icuuc.dll : Doesn't seems to be build anymore.\n+ syzygy/asan/* : We need to blacklist this dir, as we don't flush it between the builds.\n\nR=iannucci@chromium.org\n\nBUG=\n\nReview URL: https://chromiumcodereview.appspot.com/22870006\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@217077 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.5009983801282942e-05} {"commit": "da3bf7b52994b9bce9d3045cea05aa2ae037ed57", "message": "import pandas; improve auto-quoter; revert output prompt to normal\n", "proba": 3.572886043912149e-06} {"commit": "252eb57068343c2f7fb167c8e2080e1a5e9f219e", "message": "restore OF no filter in domain for data (yet present), leave for BC\n", "proba": 1.2242540492479748e-07} {"commit": "6ac496693d7b9b8d94ae15d861d5f674d6b59ea2", "message": "Fix python2 compatibility\n", "proba": 0.00030320690711960196} {"commit": "c21c6fe5637a2c422bcda5adabcfe148f16435b4", "message": "Update runsegment.py", "proba": 8.549333756491251e-07} {"commit": "d9ed80075d91ee96b354219cf4515298d3ed05ce", "message": "Explicity added vertex attribute to EnsembleData for my sanity.\n", "proba": 1.0365464930828239e-07} {"commit": "3403e8a1b2ea0de9aea6a8a8d56f63d00c0482b1", "message": "bump up deps\n", "proba": 3.879565895203996e-07} {"commit": "befd95290aaceb61769375befa1b40fd309d7209", "message": "Update runsegment.py", "proba": 8.549333756491251e-07} {"commit": "f5f0553293311ecbe20f60cc2055a5784bc6fd66", "message": "add ASA (norwegian public company)\n", "proba": 6.128918357717339e-06} {"commit": "dac7b44ec393edad0e669601f0701bff23c467e5", "message": "forgot to convert pextplanes\n", "proba": 2.6874843683799554e-07} {"commit": "6bf7b130a35d3711ec97b1dcfd51b1933ccc4508", "message": "crypto/junos_9.py - added a for loop to decode passwords from stdin\n", "proba": 2.687156097636034e-07} {"commit": "487d426d053e711c4d4b3325e2b6f63c17bef6ff", "message": "Limit to 12 months bill history on backend\n", "proba": 0.0013985789846628904} {"commit": "0a824fb70f7a6afc6d56746fa9572ffabac0b62d", "message": "Stage Flapper binaries for Windows.\n\nThis is only step 1 -- this brings binaries (and the crazy header) into the\nbuild process.\n\n\nReview URL: http://codereview.chromium.org/10067013\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@132080 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 6.32530543498433e-07} {"commit": "afbb7966ee68026760a575577e392732fc307045", "message": "Add packaging for Win64 Flash\n\nBUG=255228\nTBR=shess@chromium.org\n\nReview URL: https://codereview.chromium.org/18052023\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@209224 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 5.299335157360474e-07} {"commit": "d72fd232d5540badbc186fe5893a0b01f18d178d", "message": "avoided unnecessary call of sqrt in gaussian\n", "proba": 6.556666107826459e-07} {"commit": "88425e8802f0db3cbed0c7612534d0e9cc566dcb", "message": "fix up module init file\n\ngit-svn-id: c22915a7c370be3ea898bc36961810cc98a757b4@440 2bf6ea0f-123d-0410-b71a-f1a21eb24612\n", "proba": 8.7221151261474e-06} {"commit": "09f549884c6c498fddc7da349552787c7b79018f", "message": "[FIX] Use the right variable for the send email function\n", "proba": 6.17788873569225e-06} {"commit": "ffe979a38e6931c5d4ac13422b280a3ded825c28", "message": "[IMP] add debuging help method\n", "proba": 2.478751355283748e-07} {"commit": "4cbfdd8e1f09670e8bbe450b6c0bfdf1c205e26a", "message": "SDK - Components - Only yaml component files can be used as source (#1966)\n\nPreviously, if the file was a .zip archive, some functions like exception printing would fail as it's not a text file.", "proba": 1.0925979410103537e-07} {"commit": "ee82e27a4adc5ee9ba132e2a6bc483e03b99a4bd", "message": "unify error reporting in trans-lint.py\n", "proba": 2.642962681420613e-05} {"commit": "a016d827c9711d2e0302421c5290a7c5ae74ac0e", "message": "Update outdated TFRecords format detail reference\n\nThe link doesn't work anymore.", "proba": 1.0403275751968977e-07} {"commit": "ff43da804869048f092a8395d2a0f03c9367fbb9", "message": "Fix for pruning. ", "proba": 1.8826708014785254e-07} {"commit": "e873510f78143704033c29e89fb8d6a23b6233ce", "message": "blackify\n", "proba": 0.0005124855088070035} {"commit": "fb450738d834940e59741db8ad13ac34fcd4c7ba", "message": "Timer.__call__ no longer needed due to optimization added to generic notifier.\n\n\n\ngit-svn-id: 9d763a2146cc7918956fa045a5de4b112f309167@4265 a8f5125c-1e01-0410-8897-facf34644b8e\n", "proba": 3.017218659806531e-06} {"commit": "8f3bb17d99712d1de38299462801ff18c4b47bd5", "message": "testing remote change\n", "proba": 4.833938191950438e-07} {"commit": "0545cae1667d2df4dc3d8cd9390ba6284729ecde", "message": "Fix possible bug when speed is 0\n", "proba": 0.9994524121284485} {"commit": "1ecd66eca866a2e0483c95ebfa26d7c2af4e1efe", "message": "setUpdatingFlag needs to reinitialize DB connection\n", "proba": 5.435999241854006e-07} {"commit": "fc8a3f14319ffebf9c51e70d5dbf1e2086f2905d", "message": "Refactored tests to specify the running migrations through a decorator\n", "proba": 1.853685915875758e-07} {"commit": "bd95d52e9f0d9a284ab25f7c0344151e9c69ce11", "message": "Created another sub-parser called compare, that will be used to compare vserver and/or service setups.\n", "proba": 1.0412765050205053e-07} {"commit": "39165e5f1eb9da1b5b64672e983ca31a28b734b6", "message": "Update to new save_services_configuration result type in pyvcloud\n", "proba": 2.2157128398703207e-07} {"commit": "1c2fd396b6a345e0f53d92ebd95aaf7e0255a343", "message": "Bugfix when spectral_layout is given initial node positions.\nThanks to Ken Northover.\n\nFixes #106\n\n--HG--\nextra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%40599\n", "proba": 3.7176158684815164e-07} {"commit": "1cf21fa38c03ff974c9efa5eafb1520b66058252", "message": "Rename a private method\n", "proba": 0.9994620680809021} {"commit": "3ba7be29e986959ab11c388093e2ae0c9701c0f6", "message": "disabled SSLv3\n", "proba": 6.092689091019565e-07} {"commit": "689abbaa9ce07bea943a0a1b0ebe666b33568c11", "message": "doc update\n", "proba": 3.261732501869119e-07} {"commit": "8c08a3934414be952f43f04fa0afb7aa0972f21e", "message": "Replaced ImageOps.mirror with Image.transpose.", "proba": 1.5085144866588962e-07} {"commit": "1f70b25372eebef992d2a35759e11f9527b54073", "message": "change log to show current time\n", "proba": 4.068849364102789e-07} {"commit": "3fb93b2ed5b1b367c535529095a1252fe00efc74", "message": "Increased tolerance level in a test assertion.\n\nThe previous tolerance level caused the test to fail on some machines.\n", "proba": 1.0618138730933424e-05} {"commit": "8cc97457c2fd0432646f9b84308d7874d066ad78", "message": "Updated doc string for plot method\n", "proba": 3.322418820062012e-07} {"commit": "d5f03967dad0219b8b524d7cf67efb2a811654c9", "message": "fixed test tolerance\n", "proba": 4.6455662072730775e-07} {"commit": "1b1590b5d1196efe453207a1bbefa307bba443e9", "message": "add rpow & fix 'Number' to 'Number_' (#76)\n\n", "proba": 2.1168032162677264e-06} {"commit": "033e537ee210c77422b8927d92ab8084ad1a6c2b", "message": "minor fix flake8\n", "proba": 2.4025982270359236e-07} {"commit": "f86c3e5ccf6346ef606af92dfde3d79ba3cd7825", "message": "Support for offline_config\n", "proba": 4.007441418707458e-07} {"commit": "373d2ea281529778df85e5c7bf87b742a71c05d4", "message": "Show numpy and scipy versions in `show_config`\n", "proba": 1.2615221578471392e-07} {"commit": "dd512b2d6fec082ac88c62e3b106f9cc5811d40a", "message": "Enable support for Samba passwords\n", "proba": 4.071605417266255e-07} {"commit": "fa9d4b205cf54431782fffc779e9bd3c108ffd91", "message": "Print statement.\n", "proba": 0.00010387224028818309} {"commit": "a5dea509c79e6cbffd7da07ee1916056994cb322", "message": "Add zero line to acorr plot.\n", "proba": 2.953090927348967e-07} {"commit": "37389d2d76868762da06a471f0b310236c2b90d2", "message": "make implementation inline with docstring\n", "proba": 4.494918641739787e-07} {"commit": "ac975fc40dd40d023b748b2a8c4e7890bc8b60bf", "message": "Updated verse regex and added warning for not found references\n", "proba": 1.2728030185371608e-07} {"commit": "680ad87705b761e449900c75563b79ad745ab228", "message": "Add updater to draft-4.dev3\n", "proba": 4.5682685367864906e-07} {"commit": "6363db9e9b6e28fcec805d2b7d8ae99099b9a5c7", "message": "Test the reloading server, not the normal one.\n\nThe normal *probably* works, considering it's in the standard library.\nInstead, test the reloading server with the extra handler and\neverything.\n", "proba": 1.2342113109298225e-07} {"commit": "dc32d754795abc1a192120bce70b7bdeedd84bc6", "message": "Fixed typo.", "proba": 3.5226929639975424e-07} {"commit": "8c8d5f89c7c95c18b5e90f5cf09f746d4c74abc4", "message": "Followup on #1462 Actually change log.unhandled_greenlet_exception (instead of importing it into a local variable and changing the copy). Print the whole traceback of the exception.\n", "proba": 1.0635204716891167e-07} {"commit": "0fa7eb0cb37ca1ea09848acd7dafcf0f210a9d25", "message": "Bedtools wrapper autoconvert dataframe args to tsv\n", "proba": 3.4804972415258817e-07} {"commit": "5b6bc07e163d745575fde6815693f2b62b7fe66c", "message": "get nr of GPUs before generating RPNs\n", "proba": 2.630361279898352e-07} {"commit": "f7e969f0c93fbeab12339766bd2aed2e7fbf3621", "message": "add timeout for push_queue.get\n", "proba": 1.5346670352300862e-06} {"commit": "73a48760618842a32e72a5160187ddeb72309472", "message": "Check if field exists before adding\n", "proba": 4.249818630341906e-07} {"commit": "f81a5fc186d16eee57f76e9519fe4c4123939701", "message": "Added one more fix to merkle proofs\n", "proba": 1.1931987842217495e-07} {"commit": "9b8430b0f3a8dcc3597c343f068c21a7e2f738fc", "message": "Implementing contexts and context units.\n", "proba": 2.518640940252226e-07} {"commit": "34632db0aecd750ad2bd9b4831ecfb3d8b69cf2f", "message": "Small but significant optimisation.", "proba": 1.3065940152046096e-07} {"commit": "6067aa711bcc6fd7522ffd64f1d40f7affbfa5b4", "message": "Correct health_to_str call\n\nSigned-off-by: Tony Asleson <1ef2d381aa56d512126ddaacc29e68136e4fdf55@redhat.com>\n", "proba": 3.661784546693525e-07} {"commit": "739e61721f193e8e38d20f400a11a3578f544d4e", "message": "Jenkins: report fix for old cases.\n", "proba": 1.1896197094074523e-07} {"commit": "c3391e3e4e69948e629cf809cb9c14f0284ecf88", "message": "into: rearrange optional imports\n", "proba": 0.9999077320098877} {"commit": "611bfba740d8703497dcd34b042767240d14e798", "message": "move vpd83 bare number to contants\n\nUse contants instead of bare hard-coded number/integer.\n\nSigned-off-by: Gris Ge \n", "proba": 3.635950349689665e-07} {"commit": "374e4bae30ae196efa265a5fdb05233cbd2b8eb3", "message": "fixed pyramid broadcast bug, added progress bar\n", "proba": 1.8501395970815793e-07} {"commit": "7b886ff78985863ca90682640bd588a6590e0529", "message": "fixing module to reflect latest updates\n", "proba": 1.3309012558693212e-07} {"commit": "6e8df060bcbd74198ccc8d7c7ce85db154a3cc17", "message": "Revert \"mosaic/route_patterns: handle bound buckets of different power of 2 sizes\"\n\nThis reverts commit 11e151d0d64fe0b52af7a7525d20e3c31e6d0915.\n", "proba": 1.1383487219518429e-07} {"commit": "cb01f11ccffeb148a99a9ee28ece201e8449a6c9", "message": "Add --build-dir option for debugging\n\nThis allows the user to preset the build workspace. This workspace isn't\ndeleted, so it's easier to debug the build process.\n\nFor DM-4196.\n", "proba": 1.2120791836878198e-07} {"commit": "0474efb19a343e63256aff4eee11755bcf8dba8a", "message": "read from directory, don't crash on errors, wrap in json array\n", "proba": 2.691331530968455e-07} {"commit": "ad654469e52664a7e9af25c416279715d93bbb47", "message": "Updating blinds control to not block\n", "proba": 4.0999367456606706e-07} {"commit": "d06f67eb26d9ef99dfd8f7a188d5a62265500436", "message": "Read first of a series of build files.\n", "proba": 1.0425324603602348e-07} {"commit": "9af422053e8d67ccae1121070a7cef8900b262af", "message": "Better handling of failed requests for Ensembl lookup + unify flagging of which IDs need fresh data.\n", "proba": 1.0528014371402605e-07} {"commit": "c136d20bb7d893226495cf9a6cbcde14eca3cd9e", "message": "fixed indexing all fields\n", "proba": 2.9074601570755476e-07} {"commit": "1bbd5667b8b9e994e94a64c20dc7321460219ee7", "message": "Added unspecified mode handling\n", "proba": 3.9649708583056054e-07} {"commit": "c78fbe25b6c13ddc675b678525b83e474ab73a1f", "message": "Remove dependency on bz2, gzip and zlib modules\n", "proba": 3.9566455711792514e-07} {"commit": "0a2fb84e4287dc51e1a9a9fe2a44fa4e53485161", "message": "getnikola/nikola@94ff975\n\nSigned-off-by: Chris Warrick \n", "proba": 1.0823886498201318e-07} {"commit": "23b0652a89f20f30d51ed7e5cf5f57b0f690b2ae", "message": "mute unity test\n", "proba": 1.0146745808015112e-06} {"commit": "132b12e27fa69319f85dee0089fad1ba1a342fd8", "message": "activate fake rabbit for debugging", "proba": 2.771736546947068e-07} {"commit": "135fc8f9d66a3017217c384fecbec06f40a2193b", "message": "Agregado Html de TermAndCond\n", "proba": 2.5019832605721604e-07} {"commit": "fd7cdf3763d19f6cf1749fbe543569adf87d412c", "message": "Resize compute tests", "proba": 1.0707374258345226e-06} {"commit": "efe4951a87cf49df4a2ac145dc31c749486cb855", "message": "Make random selection more forgiving of smaller datasets.\n\n\nFormer-commit-id: 6ebfc5ec44cdbbe42daa325aca46f53105bae518", "proba": 0.0004580617824103683} {"commit": "6287e7c68b96f9eade1c27b29e60dc3092e53cc9", "message": "Simplify libvirt volume testing code.\n\nThere is no need to copy all of the iscsi generation from\nprovider_location because provider_location is an internal\nimplementation detail from cinder. We just need to make sure that\nwe handle values for iqn and target properly.\n\nChange-Id: Ic80228ad22e58887a93d45168a6ad5f2f6c30e20\n", "proba": 1.2009564898107783e-06} {"commit": "96341af2b7dd600ebe40b5ab7ab1accefddb51f5", "message": "Brian: weather update\n", "proba": 0.0014908667653799057} {"commit": "96f4c24792a3096f7669c49304f4c8f2ac8688b4", "message": "Add support for LXC volumes.\n\nThis introduces volume support for LXC containers in Nova.\nThe way that this works is that when a device is attached to an\nLXC container is that, the xml is parsed to find out which device to\nconnect to the LXC container, binds the device to the LXC container,\nand allow the device through cgroups.\n\nThis bug fixes LP: #924601.\n\nChange-Id: I00b41426ae8354b3cd4212655ecb48319a63aa9b\nSigned-off-by: Chuck Short <753a8074f04ffd62a8fff7516e3ae689be8e35ad@canonical.com>\n", "proba": 4.209674671074026e-07} {"commit": "2a532f58f77c44af22a40033eba0f6bd65cb9419", "message": "artist url\n", "proba": 2.3877560124674346e-06} {"commit": "2b293f306704453255bf5cd28f6317579d9553ca", "message": "Fixed bug 962840, added a test case.\n\neventlet.tpool.Proxy doesn't work with old-style class in __str__()\nor __repr__() calls. See bug #962840 for details.\nWe perform a monkey patch to replace those two instance methods.\n\nChange-Id: Ia51bbd3e71cad7df45da5b3b27eef70f9d9e9002\n", "proba": 2.0260106339264894e-06} {"commit": "6f4408ecbca3a002b04f516879f83200c1744470", "message": "minor changes\n", "proba": 3.7436623756548215e-07} {"commit": "b6cef623c400102fe3b56238df348eb39569e303", "message": "Clarify nwfilter not found error message\n\nIn bug #1039398 the user got an error message about an instance's\nnwfilter not being found, but it gave the impression that live\nmigration was involved.\n\nThe ensure_filtering_rules_for_instance() method was originally\njust used for live migration, but since:\n\n https://code.launchpad.net/~chemikadze/nova/driver-agnostic-restart-instances/+merge/69069\n\nit has also been used when re-starting the compute service when\nthere are running VMs.\n\nClarify the error message and the comments in the code to reflect\nthis.\n\nWaiting up to 30 seconds before reporting an error here seems\npretty bad. It appears this is to handle the case where the\nnwfilters get defined in a separate thread. For reference, the\ncode was added by this merge:\n\n https://code.launchpad.net/~nttdata/nova/live-migration/+merge/44940\n\nFor now, just add a comment explaining why we're polling for\nthe existence of the nwfilter.\n\nChange-Id: Ieb085a6753ac72116d5f5a706fd1a908703286ad\n", "proba": 0.9994860887527466} {"commit": "5f895e0f63c06a695faeabe23f4c172bc50a5912", "message": "Redirect to index.html on source Route\n", "proba": 2.9268451839925547e-07} {"commit": "fb3b7252ef84ba7bdb9a85707604f76d39e39134", "message": "added comment in test\n", "proba": 2.0763228292253189e-07} {"commit": "49e479a36819ce7cc1c9368010d372a72b4f1686", "message": "updated fake values", "proba": 1.5973070048858062e-06} {"commit": "39c76b0d3b27cb557995b38485c61de0718302bb", "message": "fix the guard condition\n", "proba": 1.4347325304697733e-05} {"commit": "a884c074ea1f4e69d548b0050090bd9448ca0fe2", "message": "arraydef bodies should be arrays, not python lists\n", "proba": 0.9985295534133911} {"commit": "f8b99117c1abfd8c6a9b95195c397ef484a05c23", "message": "Adding ability to specify the libvirt cache mode for disk devices\n\nIn past versions of Nova it was possible to explicitly configure\nthe cache mode of disks via the libvirt XML template. The current approach\nmakes this a derived setting of either \u201cnone\u201d or \u201cwritethrough\u201d based\non the support of O_DIRECT. Whilst this provides a good set of default\nsettings it removes the ability of the cloud provider to use other\nmodes such as \u201cwriteback\u201d and \u201cunsafe\u201d which are valuable in certain\nconfigurations.\n\nThis change allows the cache mode to be specified on a per-disk type\nbasis. If a disk type does not have a cache mode specified then the\ndefault behaviour remains unchanged.\n\nDocImpact\n\nbug 1086386\n\nChange-Id: I3d296fe0b4b9b976db02db90ad69fd299cd2096a\n", "proba": 2.3889305111879366e-07} {"commit": "835cfc4ea710dd666f4d06a32ad87f9715c05aa6", "message": "added test webhook endpoint\n", "proba": 4.6408192133640114e-07} {"commit": "dcefb951d037b81e64700b4cd09b029c25792a33", "message": "add allure reports\n", "proba": 1.0197034043812891e-06} {"commit": "400d98b4a8a028cff9fa859c90b8638126281822", "message": "add DocumentProxy\n", "proba": 3.7931778251731885e-07} {"commit": "c54bd3926b342a54a75bcd21d361e36124a71976", "message": "redhat append fix\n", "proba": 3.735235623025801e-06} {"commit": "74fa18af00a367d8f984966acb33c6143b55b043", "message": "pep8 fixes", "proba": 1.7972881494188186e-07} {"commit": "6bbbc6c23ce8d8fd9b4960b91dd6c4cead44b078", "message": "Hardcoding Timezone", "proba": 4.851018820772879e-05} {"commit": "f25ed31bfce80eda76c70539f504f4cea8d47fdf", "message": "update empty required test to use seed schema\n", "proba": 2.534725069835986e-07} {"commit": "f18f19dbc3ab9a9c195d2eea4764e8e356b58dce", "message": "Better error handling in _AttrDict\n", "proba": 1.8083380837197183e-07} {"commit": "2b3bbc49da7ea7eebbc046e746db1c085b08a425", "message": "handle updated qemu-img info output\n\nOriginally `qemu-img info` always output an (actual path: ...)\neven if it was duplicated with that already on the line.\n\n $ instances=/var/lib/nova/instances/\n $ qemu-img info $instances/instance-00000017/disk | grep 'backing'\n backing file: $instances/_base/24083... (actual path: $the_same)\n\nWhereas after the change referenced at:\nhttps://lists.gnu.org/archive/html/qemu-devel/2012-05/msg01468.html\nIt suppresses a duplicate (actual path:)\n\n $ instances=/var/lib/nova/instances/\n $ qemu-img info $instances/instance-00000017/disk | grep 'backing'\n backing file: $instances/_base/24083...\n\n* nova/virt/libvirt/utils.py (get_disk_backing_file):\nAvoid an indexError exception when parsing the newer format.\nFixes bug 1000261\n\nChange-Id: Ie2889b6da8a5c93e0e874e7a330529f6e6e71b0b\n(cherry picked from commit 0624b7aab0c0fe4869111ad8e302151548d6ba20)\n", "proba": 0.018187368288636208} {"commit": "8c41227c994310ec742dd438891a839f360c069f", "message": "weather-testing\n", "proba": 5.213871645537438e-06} {"commit": "0087021a8233df14fa753675d5acb72381c7aab9", "message": "Fix : we can have problem in the call os.getlogin under the hudson service for testing (bad euid?) so bypass it.\n", "proba": 1.0393577554168587e-07} {"commit": "6e3385fbc8b1702c6ddd5a84da16afaf116d9ee0", "message": "make notebook_server mode consistent with notebook mode, meaning explicit show call is required\n", "proba": 1.8608434970701637e-07} {"commit": "6bbedd1a13966c1d808521228196700746ce7323", "message": "Fix parameter description in create_server\n\nMake clear the parameter name is \"metadata\", not \"meta\" -- this is\nconfusing at the moment as some other functions do use just \"meta\" as\ntheir metadata argument.\n\nChange-Id: I2b3ab478e5ad6e885e88bf0471502c9c971e46bd\n", "proba": 0.9999984502792358} {"commit": "649cdfdf0fda4aa13f6fe39cc9735480a3a33c69", "message": "fixed #328\n", "proba": 3.8016449366296e-07} {"commit": "be7a59010c8268ec7cd6f208095ea788d05a8a26", "message": "foursquare api\n", "proba": 6.353266712721961e-07} {"commit": "3aea5ed1f9559df4b1e79946a649f1c151484783", "message": "Scons: Handle empty lists in arguments correctly\n\n* This was returning [\"\"] rather than [] which lead to empty values in LIBS and CPPDEFINES when no plugin is used\n", "proba": 1.9549365504190064e-07} {"commit": "eb0912b8ee52ec6cc5b875a4eb79a82815c2d9ba", "message": "handle alpha kw correctly\n", "proba": 3.1141444196691737e-06} {"commit": "70bf284a65c18347aa409644b1adbea87f49ff5a", "message": "Notify with Gif V1.15\n", "proba": 1.2560718687382177e-07} {"commit": "5972644fe7d0267849440d8e60509baba6e013a3", "message": "Rename class name to be consistent with file name. Remove unused import.\n", "proba": 1.0725631938157676e-07} {"commit": "4f53c016c6dd57d6f3b781619521264d027fcc88", "message": "autopep8\n", "proba": 1.0964565717586083e-06} {"commit": "7a8b90972f9edd7e97d1db00f0acff5ab7d348d4", "message": "need int64, else breaks on 32 bit plats\n", "proba": 7.248388556035934e-07} {"commit": "a06c9bb04d56e9212eba907f1c72ddfa8670622c", "message": "Unnecessary imports\n", "proba": 3.375190999577171e-06} {"commit": "3a5bbddbfca2a0512848875ad2358c8e1fe648e5", "message": "Add tests\n", "proba": 5.818237696075812e-07} {"commit": "d91496be8511b7481b1c92c43d520f2011502d0b", "message": "Use six for the import of configparser\n", "proba": 1.3542174315261946e-07} {"commit": "d0f0cd3ce633ccd1ab0a1b9552fee404f8ab54f4", "message": "Collect server info in a TestEnvironment instance.\n\nBugfix.\n", "proba": 1.0927396942861378e-07} {"commit": "453dfd02672c864a3d604dfd2c05fead406431f6", "message": "Port 5000\n", "proba": 3.0146329663693905e-06} {"commit": "afd8431c1361c9d3d59f8b328ed64fa5e31c608e", "message": "Remove unused unittest import\n", "proba": 2.6275881737092277e-07} {"commit": "0cdce352e583369edaccafe94e66ba1e48201132", "message": "No more local\n", "proba": 4.12831377616385e-06} {"commit": "eabf8483e6197491a32c924bfc5a9557f4b35ca0", "message": "rewrite controller functions with libjuju\n", "proba": 3.643677359832509e-07} {"commit": "996aa5e18eca09b8ba2af701cbc3491a205804b1", "message": "Fix a bug.\n\ngit-svn-id: 77a43f9646713b91fea7788fad5dfbf67e151ece@6187 94b884b6-d6fd-0310-90d3-974f1d3f35e1\n", "proba": 0.9999977350234985} {"commit": "da76073528cd4c67480ae4089386551ea409129c", "message": "add test case for reserve,terminate issue (found by Tamas Varga)\n", "proba": 1.0909778325185471e-07} {"commit": "18b456aa3a710f129583a58175d6c1b23d17f46f", "message": "save data\n", "proba": 3.650292683232692e-06} {"commit": "4dd125a674484c684fb6c187140432e1dac16fae", "message": "Use store_true if default value is a boolean (#230)\n\n", "proba": 3.8379646866815165e-05} {"commit": "c82b3e031a6243865c7063580149c2a7dfce3665", "message": "Changed Database Structure\n", "proba": 4.7047214479789545e-07} {"commit": "84178d93fceb6cfcd20ffa44d48e28f9f591ebc8", "message": "parallel\n", "proba": 4.725955932372017e-06} {"commit": "be0c8e0ee3bcadf119fb3a4ee2904af443b8243c", "message": "Fix advection radial profiles\n\nColumn numbers weren't correct. Moreover, computation of\nradial energy flow was assuming spherical geometry, leading\nto absurd profiles in cartesian geometry.\n", "proba": 1.491761736360786e-07} {"commit": "ec50fb1b7683c44d065914b946d250dbe01aae9f", "message": "STY: error and warning formatting on 'function_base.py'\n", "proba": 1.3582204871909198e-07} {"commit": "0d7b5b8b04ac71e4a9c7dd3791b90290807ddcdb", "message": "Add tests for `cmd_display_kb`.\n\nThis commit adds tests for the `cmd_display_kb` function, including\nnested (named and unnamed) `KeyChord`s.\n", "proba": 1.0915356796203923e-07} {"commit": "dd6e9055f216df6c943dbb563c76afa5d9572717", "message": "Respect DEBUG and PORT config directives\n", "proba": 2.0757072149990563e-07} {"commit": "2dc793654b791b450dbf8a6978ed5eed15e2959e", "message": "Cached property timeout set to 60 secs\n", "proba": 1.1933983614653698e-06} {"commit": "d03c775f5175819be2dda8795293d616b43747ce", "message": "Added traefik dashboard url\n", "proba": 1.3302287982241978e-07} {"commit": "546e878e86f36edfcc4a2f0cd6a989a28d807df4", "message": "annotate failure for 10912\n", "proba": 0.00016271203639917076} {"commit": "5265343e268264101ec317594b1b97814d8d5875", "message": "DOC: Fix formatting in rot90() docstring (#19256)\n\n", "proba": 3.136825341698568e-07} {"commit": "7a31ae36e33ddbae5ba8a87c07c1c9c9fc638469", "message": "add and commit any images that are part of the log\n", "proba": 1.5608561909630225e-07} {"commit": "249352ff460da1ac002399c8ca8940c6b5bf4397", "message": "fix test\n", "proba": 1.6747775362091488e-06} {"commit": "fcbc15cdb14fa065a59b4c06ffb2af9029544bc4", "message": "remove variables after use\n", "proba": 3.0637215786555316e-06} {"commit": "05facbdc60266e7b3ba0c723ad3904acc1faa04d", "message": "Changed logger name to flask_apscheduler\n", "proba": 4.347657522885129e-06} {"commit": "dfdc294feff4f7511db640b0750a8cda77cf155b", "message": "adding keyczar's dir file setting\n", "proba": 3.573652236354974e-07} {"commit": "99e8f891c98c857d913cd3a369c62727bcbf81cd", "message": "Fix encoding in Python 2\n", "proba": 0.9999949932098389} {"commit": "98871b69114b565940c889dfb52fc05661ea04db", "message": "Deprecate set_package_path, set_local_path, and restore_path.\n\n\ngit-svn-id: 77a43f9646713b91fea7788fad5dfbf67e151ece@5334 94b884b6-d6fd-0310-90d3-974f1d3f35e1\n", "proba": 0.00011561399878701195} {"commit": "b802b19bcd87343765f777880b2013329fb56e8f", "message": "Refactor\n", "proba": 5.142872396390885e-06} {"commit": "59b44cf49a02c71480ed8dea9ab9622eb908361f", "message": "dersdefw\n", "proba": 2.477546331647318e-06} {"commit": "ccfee5186ba3de32b10c3465325226d2711bdc37", "message": "Added debug logging\n", "proba": 1.6383266654429463e-07} {"commit": "794ef36d0f68422465137b25b9e204a2ed5e8053", "message": "Save state immediately after modifying it\n", "proba": 1.3893614436710777e-07} {"commit": "03aef557d780542083d5bd775a1e90dde440692f", "message": "Scan for abs(level) tests.\n\n\ngit-svn-id: 77a43f9646713b91fea7788fad5dfbf67e151ece@2766 94b884b6-d6fd-0310-90d3-974f1d3f35e1\n", "proba": 5.112823055242188e-05} {"commit": "fa36e7843b3fa8e2151bab35b76e93645931131d", "message": "fix cache error\n", "proba": 2.1683042632503202e-06} {"commit": "f2cb7e94e0452a2f4b59ebea3270b5db6f9ab5ce", "message": "make incomming data available to update them in before_post and before_patch and also for relationship resource manager\n", "proba": 1.368294988424168e-07} {"commit": "8a44e6d78e034d4ad7b478d48c750c048c3cfdd4", "message": "Make sure this tweets on the first run\n", "proba": 0.0002091032947646454} {"commit": "68a4767a1dfbf7a2b2bd60be7991d4b4f1235e84", "message": "test: currencies\n", "proba": 0.9999994039535522} {"commit": "424982e89c06b5e5f658e19c8c09a65afc17dd26", "message": "no message\n", "proba": 2.1470650608534925e-05} {"commit": "3aa85ee4cd9270711a2115077e83d08f6e5103fb", "message": "Create OutApiObject with with_error_callback function, and make Message extend from it\n", "proba": 1.355213470333183e-07} {"commit": "23e5b7f7f45ab44b0e8984a66f148687be05bde2", "message": "Add login endpoints\n", "proba": 1.262876594410045e-06} {"commit": "da68ae4d9f6150ddaa9d7423a51698622f14a5b6", "message": "Third commit\n", "proba": 2.3201036469799874e-07} {"commit": "bf40b0da204ef71788432ddf5d5144d33973ef94", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "7a95a6e1828241f4c93ec7339fd5897fdb0fef62", "message": "Simplified counterbalance chooser.\n", "proba": 2.1249776693821332e-07} {"commit": "45e65d5ebafa9c793d17270d88782b6cf0914d6e", "message": "debugging\n", "proba": 2.4004323222470703e-06} {"commit": "4eb5ad6978a17bb0760fe5ebd3b55672ce184d2c", "message": "added revenue\n", "proba": 1.2659825188165996e-07} {"commit": "a14e8b6209c11658048d3485e2e5447b7bfd32d3", "message": "Convert string formatting to use `.format`. (#6)\n\n", "proba": 0.9999994039535522} {"commit": "85ced9d6af6242374858cc7f952971bb798ff164", "message": "remove print\n", "proba": 0.0007934024906717241} {"commit": "9cbf0c3be26f1d6b69fb34af66978aec3a4d9c95", "message": "update needs to stay in the charge method\n", "proba": 2.42392331983865e-07} {"commit": "e4a1ac23060b40938ddcb6cbf06fef15c029d367", "message": "EX-187 (cgates): Disable functional test until we can fix Varscan claim\n", "proba": 1.1204875960402205e-07} {"commit": "999574f6b342199350bd2c71607c012f2f0fbee1", "message": "application updates\n", "proba": 1.15204886697029e-06} {"commit": "7e4b24db517998b2527ea652058c1090af891930", "message": "less printing\n", "proba": 1.7480922451795777e-06} {"commit": "6659830eb09ff5007d4107c766baf4c79a33d4bf", "message": "test cases for __repr__() improved for scalar types\n", "proba": 2.5617807750677457e-06} {"commit": "8bb37ae0b84daf2e96f01036acccffe541b858a2", "message": "print\n", "proba": 7.684111187700182e-05} {"commit": "177e5f2127dee9a80e286769b48a38e2e3cb92b2", "message": "app.py fix\n", "proba": 1.351309947494883e-06} {"commit": "edc1549ffb6c3edd27ef250b99e030d8f4258b0d", "message": "Fix bug in handling unsupported requests\n", "proba": 7.845646337045764e-07} {"commit": "2e98a5e1b3826341f081e4b736f838d191951fb5", "message": "remove things we had that were redundant/incorrect\n", "proba": 0.9996964931488037} {"commit": "a609adc70701782db8a393a8119b8ec0bf1ab6b8", "message": "\u0434\u043e\u0431\u0430\u0432\u0438\u043b \u0433\u0438\u043d\u0435\u043a\u043e\u043b\u043e\u0433\u0430 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\n\n", "proba": 9.049594495991187e-07} {"commit": "799a4d389ac919fc2f6e6bfa427659cff03994ee", "message": "Updating order status json logic", "proba": 5.741214863519417e-07} {"commit": "27ebd4968b26ea930a54400034dd661bdd3981c3", "message": "second\n", "proba": 2.2937986159377033e-06} {"commit": "842affe9aca5fb5d50221cb689e4893c1e560644", "message": "bind to heroku port\n", "proba": 2.2322733173041343e-07} {"commit": "cfaca78fa1986d21b7a7814f333f7ca8a96cec87", "message": "Add support for failed API lookups (still needs templates and logging, though) and specifying extension=true for CB endpoint.\n", "proba": 1.0345496548325173e-07} {"commit": "067d542fa3ed1f7cc5110be8d93070bfb4b647a9", "message": "fixed mimetype\n", "proba": 7.532597692261334e-07} {"commit": "2aa1cfef36620da10b605ec55b53fb23adb5165f", "message": "try again", "proba": 2.878732914268767e-07} {"commit": "226807b06ad99e7646dddfb1c03aea3a742e340e", "message": "updated, test singleton\n", "proba": 3.3196158710779855e-07} {"commit": "65389cee2cc564eea51fa42c7cbe03f10d00bf6b", "message": "Allow the submit score page to create users\n", "proba": 2.943180277270585e-07} {"commit": "f3e1082e0575d939715ba897682176dc03f8379f", "message": "Apparently clock is expected to be assigned, not passed as argument\n", "proba": 6.521426598737889e-07} {"commit": "2a1d0a622fdf0aa968f984adafcd3eaa94123441", "message": "Some slightly nicer colours, still need to fix the shutdown bug through\n", "proba": 1.0811403683419485e-07} {"commit": "b2efc220089ad8d14bd241320d7dd0a29df9992d", "message": "Redirect to the index.html from the index", "proba": 7.861749509174842e-07} {"commit": "80506c8d39b09fc272d48117be2fe27cd0ca19c1", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "d55dbead038e200db8ffe4c3363306b7d5eeda78", "message": "!!!!!!!\n", "proba": 3.536028714279382e-07} {"commit": "32e71f101ef5c882066844ec3ba8c9945fca54a9", "message": "Update alias filter\n", "proba": 4.795995209860848e-07} {"commit": "4c52484b2d45aae5d9a451ed3fb267a763b64458", "message": "Create app.py", "proba": 2.8407662284735125e-06} {"commit": "9587fb971333468f1989cf57ac2fd7bdfb11be9e", "message": "fixed login wrapper\n", "proba": 8.152535428962437e-07} {"commit": "700be7d432a1346f7ebfe8d6d60dc06e5ad96ee5", "message": "Create app.py", "proba": 2.8407662284735125e-06} {"commit": "71dd55d76f2b93d0e2d7f843571434bcdf6083cf", "message": "Check sanity\n", "proba": 1.8126146414942923e-06} {"commit": "e4b7a63eeb02d72295b11683ec0d45916044cd40", "message": "add a generic pledge-payment url\n", "proba": 2.0549505279632285e-06} {"commit": "a08e951aba3c56b5c041200e25b63f7000d0aeae", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "cb6bb4cb4b09c32e8f09766531e93abb1d9a243e", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "9d82ccb742bd0594e8c416d1fe3f48ed225e30c3", "message": "UPDATE: \u4f7f\u7528\u989d\u5916\u7684\u51fd\u6570\u6765\u751f\u6210\u83dc\u5355\u9879\u548c\u5de5\u5177\u4ee5\u53ca\u8fdb\u884c\u4e8b\u4ef6\u7ed1\u5b9a\n", "proba": 1.2247350866800844e-07} {"commit": "0828ff9c1df95d8895fb3f3b06eae35f5cfb9278", "message": "update add community number to edgeAttribute of ig_community\n", "proba": 2.11524621818171e-07} {"commit": "92e4526ee44d77075e1c66d7d0279882333a5bdf", "message": "Fix debug flag\n", "proba": 1.0712628863984719e-05} {"commit": "591e35aa12d2c85e074b09a1a26ed1c72446cbfb", "message": "Edit add person\n", "proba": 1.5413348819492967e-06} {"commit": "0cf65fce3c0aeb2f0f5288f1a69d35c99dd61b34", "message": "app.py small fix\n", "proba": 5.101406941321329e-07} {"commit": "fe54e6eba63f0ae866351ffd75375045f4e8e841", "message": "fix json dump issue\n", "proba": 1.5792459180374863e-06} {"commit": "1af04986539c65897d70f49f17c38eece31b905f", "message": "added url and menu\n", "proba": 4.187839408587024e-07} {"commit": "ce8dd48c7a304e15b2f978d75f93d65bb68593f1", "message": "add producthunt\n", "proba": 4.801858040082152e-07} {"commit": "0220d93c46faecb2de61ce07d6d729b0d55b75c3", "message": "Do not print a score.\n", "proba": 1.2414574484864715e-05} {"commit": "51762b88ce684aa2718f953738bf0cbd86ef27e6", "message": "Fix port\n", "proba": 1.5394426782222581e-06} {"commit": "2f1c01bfc192bfe94f0d775d6b2c7129fe7851b2", "message": "foursquare api\n", "proba": 6.353266712721961e-07} {"commit": "d6328f30885bb334d0eb5b7055947eb035afdb61", "message": "test menu\n", "proba": 2.3480192794522736e-06} {"commit": "94a39b1889682bb3da647e7c0bd28e2381774405", "message": "add requirements\n", "proba": 3.232876224501524e-07} {"commit": "f9df8bedbe3c48310fef78ff80075917266d2e81", "message": "Spaces, not spots!\n", "proba": 1.6188968743335863e-07} {"commit": "b96bc71dc2ec7cdb328a181a4aaeda976e66a14b", "message": "weather-testing\n", "proba": 5.213871645537438e-06} {"commit": "83d542e825c0b885ef68c438da5a620a3461e7b3", "message": "Sending lyrics to projector window works.\n", "proba": 1.0705826980483835e-07} {"commit": "60f3b1d3ee1838473cca94e6a45f6cc704dc1a39", "message": "Send identicon string in users endpoints\n\n", "proba": 2.2127522925075027e-07} {"commit": "9516d9e042d5dde09c13fd0a4b406b6fbadeda00", "message": "Remove Nan in pet Image used to estimate T1 normalization\n", "proba": 1.2090255552266171e-07} {"commit": "37fadae316060029cefef71fa89d4a04366482b9", "message": "fixed broken tests. dammit.\n", "proba": 1.4235602918688528e-07} {"commit": "af3249367f2afa4b32568223982b154e2e72491b", "message": "Only log retries\n", "proba": 2.1671701233572094e-07} {"commit": "99ef96ed7215e773fcba4cc5f41ca7b88979223b", "message": "Use stringified version instead of status code\n", "proba": 7.124058925001009e-07} {"commit": "23947a8d31e6f5fee7960e7dccebf7cf8deb620e", "message": "Bumped version number for v0.1.1 release.\n", "proba": 1.1123002252588776e-07} {"commit": "a6874ad019677acf63b8fb57cce855970943975c", "message": "back to dev\n", "proba": 1.6412572279023152e-07} {"commit": "f918930b281822cdb3a0478b6d5e22d1010d41b6", "message": "Improving docs.\n", "proba": 4.408013012380252e-07} {"commit": "3da58e7f841be4f01323159bb806c60fdfeb294d", "message": "handle RuntimeError too for invalid attributes\n", "proba": 2.4419094302174926e-07} {"commit": "28a9a92862b02e6757ade9f4d7ea6c79dd9cd5a6", "message": "re.search would be a better function for this\n", "proba": 0.9996633529663086} {"commit": "215f79e9c1b742cfceead27826c1e37b0d61a8e9", "message": "weakest_link: Check presence of images without recursing into them\n", "proba": 2.584030482921662e-07} {"commit": "c6181dc8675e7f2fd1d277d552f35bfbb8d75c71", "message": "testing\n", "proba": 1.6199514902837109e-06} {"commit": "d966ecee15b467ca1c602b499ef79cc38c50bca1", "message": "Add uniqueness test to exemplar profile\n", "proba": 3.3792252907005604e-07} {"commit": "e7709bd52cbe09610000c49080bc4820aff6e486", "message": "control error, an advance for issue #95\n", "proba": 1.280110524248812e-07} {"commit": "ca1de86a1a5361f96abc503c25a994488ce7f6ef", "message": "Added a filter to return PathNodes from UrlPath\n", "proba": 2.266096998937428e-07} {"commit": "9506a44531ac98aa5f017228d650388739dfb5e1", "message": "Removed the route number not needed in this implementation\n", "proba": 8.144966159306932e-07} {"commit": "ee56b78f5ea17d20a8b22053c1880cb0b643a04f", "message": "Don't make a copy of UrlPaths as they are designed to be immutable\n", "proba": 1.4214941757018096e-07} {"commit": "b8d53981e8067a8f63082da1c53d4fd968289780", "message": "remove unused code\n", "proba": 1.6653786587994546e-05} {"commit": "cd89f4e1e0bef7ffdd9850aaa68e026f47f1ef7f", "message": "Add -w flag to usage for -h flag\n", "proba": 1.0284501286150771e-06} {"commit": "d967d2b9fd4d4455e2ce4a95b0a1980a3066b5a3", "message": "force cast to ASCII string to avoid a double url encoding when bucket name is a unicode value\n(connection.py contains a code for urlencoding of unicode headers)\n", "proba": 1.2509232760749e-07} {"commit": "08e63448a33de9c88da7de1347237b577ba82b3c", "message": "Add data classes for term-based model.\n\n``Symmetrical2dArray`` is a supporting class that subclasses numpy's\narray class and ensures that for array ``a``, ``a[i, j] == a[j, i]``.\n\n``symzeros`` is a convenience function similar to ``numpy.zeros`` but\nreturning a ``Symmetrical2dArray`` instead.\n\n``AnnotatedInteractions2dArray`` is a new structure akin to\n``AnnotatedInteractionsGraph``, but with the two-dimensional symmetrical\narray at its core instead of a dictionary.\n\ngit-svn-id: 6391b798f55e3e4f5184bc6d113ebedc82009d5e@3717 1fbec0df-f6b4-4bca-857c-de90862b47bd\n", "proba": 0.00136155029758811} {"commit": "93980bd2b0e124b0898a9f90b3766d0fb4718557", "message": "Refactor\n", "proba": 5.142872396390885e-06} {"commit": "89d06607ed72e6f585cfa10090f90740703144ac", "message": "Improve logging and CLI output\n\nChange-Id: I4ab47835f74139a6b37a63724b57dd239921150b\nCloses-Bug: #963\n", "proba": 3.231000664527528e-05} {"commit": "5a4b41f9351bc5d4ad332caa17a0f49f0e07fbf6", "message": "Change logger name\n", "proba": 3.409694727452006e-06} {"commit": "163f13b8ade9095370f8823dc0652668e2788c8a", "message": "new shape\nonly gen every 10\n", "proba": 1.8364981713148154e-07} {"commit": "e093e33716c9d7487c61357d40a3640e010dc6df", "message": "pretty monospace printing for \n", "proba": 1.0717023002371207e-07} {"commit": "c61028b87bea051efb8f1e7098389039ec835374", "message": "Bump version - 0.3.0\n", "proba": 5.323039999893808e-07} {"commit": "c2b65cf046056f7c376f841dfdb5b21783dfcd09", "message": "in order writing, player is done when he has no units\n", "proba": 3.2555219604546437e-06} {"commit": "b2272772b557183034fc2818f8204e7b790ed3eb", "message": "added help text to whisper form\n", "proba": 1.3553260203025275e-07} {"commit": "210b008d25904305b5896e727ec789c7875585ea", "message": "added hack to prevent friend invasions\n", "proba": 2.683563309346937e-07} {"commit": "b9f82d43f0ec00a549335aaf2e2c0ed8575316df", "message": "Don't need sub-second precision in time_ago\n\nSigned-off-by: Maxime Petazzoni <0706025b2bbcec1ed8d64822f4eccd96314938d0@signalfuse.com>\n", "proba": 5.801471729682817e-07} {"commit": "f3f42effd6512db42120eebd790a8531a85795ce", "message": "Bug 2813: pass args separately instead of as list\n\nWhen I switched to using optparse, I accidentally dropped the * for\nthe case where the command was a string instead of a function, which\nis used in flushctl instead of elsewhere. This caused the arguments to\nget passed as a single list instead of separately.\n\nChange-Id: I4e6bab6db3fd0e17dd7b4f396b324604129f3e85\nReviewed-on: http://review.membase.org/3345\nReviewed-by: Matt Ingenthron <1fa2ef4755a9226cb9a0a4840bd89b158ac71391@northscale.com>\nTested-by: Matt Ingenthron <1fa2ef4755a9226cb9a0a4840bd89b158ac71391@northscale.com>\n", "proba": 2.280158514622599e-05} {"commit": "c630a7500ff5c053a2f7ff40c85724f662624af4", "message": "added another lazy map test\n", "proba": 1.8762486320156313e-07} {"commit": "83b8cc27b4f1ffb1d3b42dfab86a7f1a29825979", "message": "Fixing fs permissions issue for login.\n", "proba": 1.1301914781824962e-07} {"commit": "94eec7737828f1a13ff347845f1dfee93466ec35", "message": "The migration hasn't used a yaml file as its intermediate in years\n", "proba": 2.9342177754188015e-07} {"commit": "de0dcff1ff20f5e6661cfbea91b74b8a7146e502", "message": "modified if\n", "proba": 5.555614279728616e-07} {"commit": "9b6784bab52227fc5e0d5bc6ba0f13fcac64f9ff", "message": "Add fixture for StringStore\n", "proba": 2.5427826244595053e-07} {"commit": "04e6a6518869b1ca15beb79694049e0fb164a2aa", "message": "Remove Japanese from LANGUAGES\n\nLANGUAGES is a list of languages whose tokenizers get run through a\nvariety of generic tests. Since the generic tests don't check the JA\nfixture, it blows up when it can't find janome. -POLM\n", "proba": 2.1419516542664496e-06} {"commit": "787db89a937ddf5348375312855d28c7058e3205", "message": "dbapi: unconditionally commit on any DQL to avoid stale batching\n\nOn encountering any DQL statements, we MUST flush any previously\nbatched operation and run them immediately to have the latest data.\n\nNotice after fixing up Cursor.description which revealed tests\nthat exorcised the path in which DQLs would be run without\nthe previous statements.\n\nFixes #213\n", "proba": 1.5151366028476332e-07} {"commit": "f04b2cf3259020829e26cc8cdfb2d74745aba1ad", "message": "Export more of condition.py in the top-level __init__.py.\n", "proba": 2.0286118740386883e-07} {"commit": "bddb3af4a1226fb33f257598398ee593d059b65e", "message": "In is_sparse simplify proposed conditional.\n", "proba": 2.7265975859336322e-06} {"commit": "8fbaf80319683d4dbdcf87c7795c7f889a2e0d94", "message": "fix tests in django 1.6\n", "proba": 4.1790104887695634e-07} {"commit": "52a91ae20ffa67534c92456a9afc0b3e7da8e6bb", "message": "Seems to be working now, test pyslip.py\n", "proba": 2.1198121658017044e-07} {"commit": "1a11b97d905553d9275aa74b3d2468728c6c1474", "message": "Address feedback.\n", "proba": 1.2936348525727226e-07} {"commit": "14a031eb169d42a7cbb4cf81b0ae35d87f510530", "message": "tests for writing to single/multiple files\n", "proba": 3.5633473771667923e-07} {"commit": "5778a25c76ca69bb5f9b506754ac8232d2468fa7", "message": "cleanup of self.asserts\n", "proba": 5.704135901396512e-07} {"commit": "0cfd1be2cd5cc2f7da77540d9a4341ee7a009a45", "message": "Adding headers to page.\n", "proba": 1.261781932271333e-07} {"commit": "88b0611233483e1ea482b3bb70888d64020d66e3", "message": "Set email-sending failover parameters (number of tries, sleeptime\nbetween tries).\n", "proba": 2.5112632329182816e-07} {"commit": "544d0a985518e0a7d07d8a9cf1c1cad52e04900d", "message": "ordering cards.\n", "proba": 2.462601855768298e-07} {"commit": "cfc654c97c3f28725fab28a387e9a61193ac62ed", "message": "new packager: build the win32 and win64 installers\n", "proba": 2.151634390656909e-07} {"commit": "e2fb95a4c03932edbe63195196c40b9b09a944b1", "message": "Fix notification issue with 8 hour gap check\n", "proba": 2.081715848589738e-07} {"commit": "c79aab4f1f2b941a1b19459ff2c78602f0038671", "message": "use MSE instead of accuracy", "proba": 2.994241913256701e-05} {"commit": "5a92df55811b61e0c75d0669187e9fedab0e984b", "message": "print offending line on syntax error\n", "proba": 2.7335852792020887e-05} {"commit": "34c5402b33f540234b86eb481d7dd4a714ba9bd1", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "e1d40cd01801fd53bd8564e6e08c9a51f66137cf", "message": "fix asp\n", "proba": 0.9990102052688599} {"commit": "8239720165d0fc7376938b2906087304908420a3", "message": "update the gispython.org url\n\ngit-svn-id: 8af3510caa0da55760593bee91f6642c197586ea@156 25cca10d-0837-0410-9e4f-92b931fda1bc\n", "proba": 0.00032310240203514695} {"commit": "8bef755f6c33b38439d9d5e1201d802c0a56dbf4", "message": "Made optional arguments default to nil\n", "proba": 6.4727646531537175e-06} {"commit": "16ce7555e31217b716f31d2cc41fc6d77fff6731", "message": "Fixed ManyWriters?\n", "proba": 1.2157907747223362e-07} {"commit": "2babcb155978910ea520d40f7feead80e617a276", "message": "Updated from Brython Server: 2/10/2016 7:57:47 PM", "proba": 1.105920048871667e-07} {"commit": "e67472446d453c97840ca5da59cb6dac55a1fad5", "message": "Updated from Brython Server: October 5, 2015 2:34:38 PM GMT-4", "proba": 1.0883839962616548e-07} {"commit": "79e985bbe25eae8125e688c8466a186dd157963f", "message": "Updated from Brython Server: 2/23/2016 7:08:29 PM", "proba": 1.0953147011605324e-07} {"commit": "e2be5e6bffd3d00ecac94e31641d274a4fe1810c", "message": "Remove the auto_read items from the read history. Makes it really useful now.\n", "proba": 1.012208628026201e-07} {"commit": "dfea77df6e6ba27bada1c80da6efab392507736b", "message": "Fix making threads daemonic on Python 3.2\n", "proba": 5.133214472152758e-06} {"commit": "232ac768c770f604d0dc088566b18f6839ea581f", "message": "Updated from Brython Server: 2/9/2016 2:42:58 PM", "proba": 1.1524429055498331e-07} {"commit": "67fc4da460deace59a8801580377d3f7811ad230", "message": "Minor fix", "proba": 4.2334357885920326e-07} {"commit": "80d98abae1846cff3ffcd16edf2b00c87ad19020", "message": "demos: py_simple: Remove broken plot.py.\n\nSigned-off-by: Cyril Hrubis \n", "proba": 1.431609177870996e-07} {"commit": "bed8598835b72422604ecddf667443553775c91b", "message": "Update aoj.py", "proba": 1.0139762025573873e-06} {"commit": "81753069b4a920fe5bef7e3a1169ce384b939d52", "message": "Updated from Brython Server: 2/6/2016 4:18:47 PM", "proba": 1.1194814675263842e-07} {"commit": "14b95e0d7d6cc23d1f80690273a21443e12d8de5", "message": "Remove validation from Tuple._serialize\n", "proba": 8.370933755941223e-06} {"commit": "03d41d21e13282f883e22defd9ca03ed7d3336f2", "message": "fallback to scipy KDTree if sklearn not available\n", "proba": 3.407077429073979e-07} {"commit": "6bcf84763851aa8e77331d6b1dd2e03b0d54b7e8", "message": "minor change in test_curves.py\n", "proba": 3.7588452528325433e-07} {"commit": "762165ceadb8721a0e0f05d9912a80b08fa3ea8a", "message": "remove commented code\n", "proba": 3.5036961776313547e-07} {"commit": "bca532eb3df381074dee15b7758dbf9999266964", "message": "fix STRINGS reading\n", "proba": 7.4961953941965476e-06} {"commit": "3b5e94b4a48ef371bd7b9731fe1203378851b3d8", "message": "Use temporary playlist folder for stored playlist tests\n", "proba": 3.397181558284501e-07} {"commit": "9c8c18790bfcea0780537fd67f80fa57c3556afd", "message": "read the sequence number\n", "proba": 0.9987321496009827} {"commit": "dff65541fa6ceaf1f7ee614642038afed5309944", "message": "Change update datetime last login date\n", "proba": 5.396682809077902e-06} {"commit": "e3ef6c0bcb31e8aa2bea4eb08bfa937c80c9b916", "message": "adding comment to explain ducktyping ambiguity\n", "proba": 3.1395489941132837e-07} {"commit": "33ca9bca80f9bc12d9fc61eda9ab809a7ed14ebb", "message": "change: export tests.base.maybe_data_path\n", "proba": 2.9848840767954243e-06} {"commit": "05d9c8eb54bd6fd7aa260fd1ccd92dc8e8f63a10", "message": "force opening file for pandas\n", "proba": 4.333812455570296e-07} {"commit": "daf4c77228c5df6bad43ee5506949a6a47d64887", "message": "flake fix I think\n", "proba": 3.9689129494036024e-07} {"commit": "aac292b399db7015ed83f4716105ba34f98ec592", "message": "fixup 8e9bd4d", "proba": 9.321785910287872e-06} {"commit": "d63011756a66bada1b0bc37fc3aacd2e68a46141", "message": "Add nt2aa conversion function\n", "proba": 4.605803405866027e-05} {"commit": "42385bb43d770625cb35990305431532757d9329", "message": "Add argument logic for Valgrind options. References #720\n\nr13007\n", "proba": 1.4312475116184942e-07} {"commit": "8910b25e9a762e8beb942d246a0c7356040cc2e9", "message": "Added function to retrieve a selenium web driver.\n\n", "proba": 1.1181114700775652e-07} {"commit": "49fb7e55da3aee39091ba5edc033fb1611562e46", "message": "House-cleaning; resolves #2\n", "proba": 1.539717413834296e-05} {"commit": "3899605cdd43a349eb33cd6eb231fcb7a9454972", "message": "example get money in detail with token merchant\n", "proba": 1.3021654865497112e-07} {"commit": "f806e62ae0fe1d260158c4aeede7c11ffbbfaf8d", "message": "maintain python 3.6 compatibility & removing debug prints\n", "proba": 1.591240561538143e-07} {"commit": "2da6625c9d601a2d5512d9fa24faceebb1aab799", "message": "update values in default field\n", "proba": 6.412555535462161e-07} {"commit": "97bb500a5da82b3d474b941940567452dd12d2d2", "message": "Fix merge conflict in test imports.\n", "proba": 1.823865005690095e-07} {"commit": "841a0f91e7ebc3fb3c3f58a804f1dc6d25562152", "message": "bug fixed with theano function printer\n", "proba": 2.2215822070847935e-07} {"commit": "731856431e38b85ab7f62aa7a51d7bc0c94f8982", "message": "nuke bad debug line\n", "proba": 9.685603572506807e-07} {"commit": "14b5bd70f9e65280f5a443df2a39e53e8998bf58", "message": "[orchestrator] + swift zone. Fix overriding problem in python\n", "proba": 0.9999938011169434} {"commit": "8d7c7acdffd4be5f636a74a8cce5661955dd1996", "message": "Add more parameters to Qubit's FP operation\n", "proba": 1.9051593369567854e-07} {"commit": "4112c07688d0e0e568478e9f42be349bdd511d45", "message": "sync: Correctly sync multi manifest workspaces\n\nWhen actually fetching the manifests, start at the correct (sub)\nmanifest.\n\nBug: https://crbug.com/gerrit/16198\nChange-Id: I39fdd726f1917ef4277a0b7c83663c8f49167466\nReviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/343914\nTested-by: LaMont Jones <01939f9990a33aa2509cfaed21d2f9ba201a2b37@google.com>\nReviewed-by: Mike Frysinger <8f3f75c74bd5184edcfa6534cab3c13a00a2f794@google.com>\n", "proba": 0.00016517375479452312} {"commit": "efaa8f3f98db72d36671536c0450efbf0a7bcb4a", "message": "separate function for input UI drawing\n", "proba": 4.733208811558143e-07} {"commit": "ecf7dce7bedb4a86597420745bc9013988fcf190", "message": "abusehelper.core.bot.Param: Simplify help attribute init\n", "proba": 2.397855951130623e-06} {"commit": "ba00b06ae446f25d09b350b08f95a06f569b3758", "message": "mech_driver.OVNMechanismDriver \"_ovn_client\" is a read-only property\n\nmech_driver.OVNMechanismDriver \"_ovn_client\" is not a class member but\na read-only property and can't be assigned.\n\nChange-Id: I6fdd9d929e75a6092e0a874b8ffcf283c64b076a\nCloses-Bug: #1869342\n", "proba": 8.433123639406404e-07} {"commit": "ddbe676bde4002c97c7fe45a72ba3aecb8a0475c", "message": "Remove unused models.\n", "proba": 1.3249770347556478e-07} {"commit": "67d7a904e5d494705f8d84e6085ac652ccf4953e", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "c32d9b6feca795bc0fa869cce764fc128f0a9252", "message": "Added missing shipping method permission.\n", "proba": 1.1062977023357234e-07} {"commit": "5f1ec79094815486d26bc66a55b5ff1d1e97b6c7", "message": "catch postgres replication status error\n", "proba": 2.9838969339834875e-07} {"commit": "bac564f82ba07da0afcbf89a638472017fa62c66", "message": "Better loading of experiments.\n\nWhen experiments are loaded from serialization, the initial order of\nmodalities is preserved. That way it stays compatible with logged\ninformation.\n", "proba": 1.0220404789151871e-07} {"commit": "836812765fcd9c4d871e576eaa282d825a189770", "message": "have to deepcopy the list of archives\n", "proba": 5.785101393485093e-07} {"commit": "ccc4a1002e63e957c441a1fbb8de561e399aebb4", "message": "Don't let exceptions halt the bot.\n", "proba": 1.3132299159224203e-07} {"commit": "1eac44098812194df637204d3de446ee57f87ac9", "message": "reduce indent space\n", "proba": 0.0024858664255589247} {"commit": "8f4096e612f72e93567b38af5ecdede21d6b92ee", "message": "Some new comments.\n", "proba": 1.2148797168265446e-07} {"commit": "0c98bc1397203a74755793c8a64edd7b5c00c27d", "message": "If software is not recognized, output recommendations based on compatibility.\n", "proba": 1.2458633591450052e-07} {"commit": "6af296b747e653cb8463f3217469ee77de37ba42", "message": "Added echo for dice rolls\n\nMay not work\n", "proba": 1.211493270147912e-07} {"commit": "8326c50d563336337e34af63e6787d5cac927db9", "message": "Inaccuracy problems with resistive background and closer to Tx.\n\nNeed to be tackled.\n", "proba": 1.0327239863272553e-07} {"commit": "149bc013a354fa1310042cfc30e14c151b204c68", "message": "adding a bunch of fuzzy parsing tests for the supply app\n", "proba": 1.5933726160710648e-07} {"commit": "d834074378f8c56935203eff8fb5db0ca33f2b0a", "message": "Use OpenSSH 7.2 banner.\nAdd OpenSSH 7.2 warning messages.\nFix OpenSSH 7.0 failure messages.\nAdd forgotten failure on rijndael-cbc.\nBump version.\n", "proba": 1.0226801094859184e-07} {"commit": "3025372b4ea6727d088e50eb959cb052ab63a048", "message": "Minor improvements to logging and !live", "proba": 1.248757399707756e-07} {"commit": "ee0bdb71a0bb488d982c07cbcd4a9c445dd380ba", "message": "Move texture generation to a separate function\n", "proba": 3.451818031408038e-07} {"commit": "94e87aa7c2abaa134b1344e629e6ff56badbc211", "message": "Admin Panel for MS\n", "proba": 3.09285610455845e-07} {"commit": "684ea315ec76ecbf13138076166eac7531ff8c93", "message": "Shorten variables.\n", "proba": 9.35538082558196e-07} {"commit": "d72cc7b4863b63310f2345972d899e544e4e30d5", "message": "Reminder not to run two instances of the bot at the same time\n", "proba": 1.7532683216359146e-07} {"commit": "f7217bff7c3ed13ae367618e163eda54bae19ebb", "message": "Avoid using 2.7's set notation\n", "proba": 0.00017580942949280143} {"commit": "012682660ef48451fe64f2765914266439326289", "message": "Fix windows build on python3\n", "proba": 8.203510333260056e-07} {"commit": "9da9b812ad50dffd5b9cfdcf344bc5d12ce10f2f", "message": "Added cronjob comment", "proba": 1.4630074929300463e-07} {"commit": "17a8f8bf5cd5328fc1a4651508012a0a313eff52", "message": "Add few more expression and fix __eq__\n", "proba": 5.9011936173192225e-06} {"commit": "281f6e3aa625956f56cf4bc67f397e8f5905121f", "message": "Modified sv_processor.py\n", "proba": 4.613768851413624e-06} {"commit": "a190912a7b217a64ca1156852b5a185ea3fd9e48", "message": "Use absololute url for link\n", "proba": 1.8295581583060994e-07} {"commit": "31611002d0b3ef1579f788181b1eef69f8c77710", "message": "First time read fix\n", "proba": 4.900639964944276e-07} {"commit": "270093d15b19a3f1b349314c4fae0ec98aa98796", "message": "[internal] java: add `__repr__` and json conversion for dep inference type (#13124)\n\nAdd `__repr__` and a JSON conversion for `PackageRootedDependencyMap`. This allows me to dump the mapping to disk during debugging (with code not included in this PR).\r\n\r\n[ci skip-rust]\r\n[ci skip-build-wheels]", "proba": 1.270495175731412e-07} {"commit": "762149e326e88a084ea2382ddd229fa86b7c5b1c", "message": "aaa I broke it\n", "proba": 1.3337921700440347e-05} {"commit": "c75361da5212a88ffd347db5b652bc0b522e2a36", "message": "Fixed for latest engine.\n", "proba": 1.094802968282238e-07} {"commit": "b0eacc577ea5dc0bc67bc208740697f7142ec911", "message": "fix bbcode typo", "proba": 0.9991210103034973} {"commit": "c1c443db6ce33d149c096fa6ca8ae34dd92da5e9", "message": "Don't hardcode prefix for activity\n", "proba": 7.5493780968827195e-06} {"commit": "0ea732c3a0c7961612159d01f9ab0512aa5310c9", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "022fd87ddf73121e81cf9a9ec23217f469062801", "message": "add a get_depts route\n", "proba": 4.837770575250033e-07} {"commit": "c4ca7de49598d2a279ac870430bf66c43e42b560", "message": "Refactor --vary option to be boolean.\n", "proba": 6.535823104059091e-06} {"commit": "6644b1bc24f93218a8c68ba8192d04885459776c", "message": "added iter function and remove species\n", "proba": 2.0010922696656053e-07} {"commit": "49392789284bdb118487a4584dab7254e2297770", "message": "Bug typo\n", "proba": 1.3784784869130817e-06} {"commit": "ec6ceb5a11b6b3cce30ca9af73d9b1e2e1516a60", "message": "Only set log level for erasmus module\n", "proba": 1.425478615146858e-07} {"commit": "6381e5ed88c8f2160ed9a0fb64643e1f9b354bc4", "message": "Add \"if-exists\" clause to fab.db.import_db and fab.db.export_db\n", "proba": 0.9993450045585632} {"commit": "21da749516973d2893c01e3dacf5eb8cb64cbb6b", "message": "Fixed formatting error in help message, tried to tidy code a bit.\n", "proba": 1.101347990584145e-07} {"commit": "361095e5adf84337a61ec30ea5be725cc82fbc03", "message": "Globals module holding config and backlog\n", "proba": 1.4795571701142762e-07} {"commit": "fac2503b2a8621ad61c19608ab5e4095e12b1ced", "message": "Format & remove redundant values\n", "proba": 1.0518984709051438e-05} {"commit": "51d46cdaeeac6e8ea868573fec2eae3b3548d786", "message": "fix fix fixt\n", "proba": 1.89590252830385e-06} {"commit": "5feea38dc364061bea9cac60036acc2749194208", "message": "Added !uptime command\n", "proba": 1.4531306646858866e-07} {"commit": "f6bba647c88c761064d24895bb1f68d030daf6c3", "message": "a couple of refactoring fixes\n", "proba": 3.609314092045679e-07} {"commit": "e550070b47d88ddc0f14576815361d00c35bb9c4", "message": "Don't comment out the thing dummy\n", "proba": 1.6834890459449525e-07} {"commit": "ee8ce3c5f80954530d5529004c43dbb0e56db309", "message": "remove underscore functions from completion matches (#38)\n\n", "proba": 1.6450965745207213e-07} {"commit": "43ebb45668371a7d4097fb00c1439b26b2da8c74", "message": "cleaned up email templating\n", "proba": 2.3153914298745804e-05} {"commit": "676588e07004ce09978b9249262fae07acf37aed", "message": "More example commands\n\nhumor is essential to working environments\n", "proba": 7.352009561145678e-07} {"commit": "1807fb974a238b452b788f64e5a102538ab5070c", "message": "update web url\n", "proba": 1.345109922112897e-06} {"commit": "baec4ef1de402ca025d9ae71bbee5aa34d0397d7", "message": "Add log\n", "proba": 1.7599184047867311e-06} {"commit": "044f7918670c0703f099dec166a0e784954b6587", "message": "added more bot recognition\n", "proba": 1.2698377531705773e-06} {"commit": "02caa7d876cc95a6f525fc779d716df7eff1082a", "message": "fix escape character. fail.", "proba": 5.1353690651012585e-06} {"commit": "4f38518873e57f4c4fe996ba82e543ac0e464419", "message": "placeholding\n", "proba": 4.121614438190591e-06} {"commit": "04365c34652913c8e9965e2e0cdcaf7fbc573aa2", "message": "Grr.. docopt won't let me use my nice descriptions.\n", "proba": 9.979613224686545e-08} {"commit": "bb31fb4e59ffe40dd10a1bd856bc36c3b789eff0", "message": "update bus proxy and headers\n", "proba": 1.780640559445601e-07} {"commit": "bcf0293429b05374fa08d2a412a53a84d13356ad", "message": "narrow return of glob_to_regex\n", "proba": 2.790421149256872e-06} {"commit": "3b5797f1773bd22da4b038e88862a0c84b5c75e2", "message": "Modified cam.py\n", "proba": 8.300788749693311e-07} {"commit": "2ecc1fbfaab20143e4e1a96065c1b7795d6cb2a0", "message": "Just send the URL\n", "proba": 1.6885958586954075e-07} {"commit": "ef3c6e46761940561080370595d0cefa09f47a3f", "message": "Month/year archive rendering title\n\n- render_archive_year and render_archive_month set the tag value\nto year or month/year when calling render() to generate more\ninformative page titles.\n", "proba": 1.1098885721594343e-07} {"commit": "f4abd24e889fade93cae10d97aa270690dfd42e1", "message": "Fix logprint when a manual flagging script is found\n", "proba": 2.104310823369815e-07} {"commit": "d3ced8d951f60790a60ed1beca0eec8b2b0a0b8f", "message": "course_builder view\n", "proba": 3.4903359846794046e-07} {"commit": "3aa50a8123a7b38d3e7db19ae167e1ffa8f080e0", "message": "Revire TestDevice using raises decorator\n", "proba": 2.2614035799506382e-07} {"commit": "8128556fa82c68829cb597c73523ec1a844a2d34", "message": "Cleaner config\n", "proba": 7.533294592576567e-07} {"commit": "1cc66da403551700b16f98ae4cb1fb5ab0d858a2", "message": "Remove superficial var assignment\n", "proba": 1.3257875934868935e-06} {"commit": "1720b6bb9e6924063b4a34eea250a86604da7b8e", "message": "making the function accessible from the cmd line\n", "proba": 2.264447721245233e-05} {"commit": "9e38f6f96e697d710efc541b4faa325452873b25", "message": "Improve MNIST example to be actually viable\n", "proba": 7.840703801775817e-06} {"commit": "c0b6da6383805e6d501562aee3b58e8adb42843c", "message": "[svn r65] Refactored all the _in, _out, _dead_list stuff into one object, the ChildProcess. Haven't fixed the test_contention test, this is just a refactoring only.\n", "proba": 1.2540826332951838e-07} {"commit": "c6965c3cac06db3d854dfbf071df78b076188ca1", "message": "setup, not output\n", "proba": 0.0003162089269608259} {"commit": "2b54eb0405622cf3355b6862ce343dda3170c9b3", "message": "add parsing to FangraphsClosers class\n", "proba": 2.2604095306633099e-07} {"commit": "c2fb4fb3bb1de8ca92fa9a807293221ab23e5d4d", "message": "fix float64 error for bi-rnn\n", "proba": 1.9833027181448415e-05} {"commit": "612757f09a1d4987d14219ee352ce472707b1d07", "message": "pylint.\n", "proba": 7.759924187666911e-07} {"commit": "d52cc9c04e89641785a5d2b4c6549ca816dd1e48", "message": "remove rpdb set trace", "proba": 4.956567636327236e-07} {"commit": "8d5205176bfb4f7e842c8803985588455877a529", "message": "fix for issue #4051; replaced X = np.asarray(X) with check_array(...) method\n", "proba": 9.873904218693497e-07} {"commit": "3959231dd30a3a2cff85efc8bddb5b7492b9b1f6", "message": "fix relocation issue. Closes #1\n", "proba": 4.152635426635243e-07} {"commit": "6185a981ee7a1f847e7560fa76a96bfa3704c832", "message": "Show info for many files\n", "proba": 1.1452632975306187e-07} {"commit": "025cff28fba0102ff01865917f57676cfa3ce0bb", "message": "DOC Remove outdated doc in KBinsDiscretizer (#13047)\n\n", "proba": 1.0521169002686293e-07} {"commit": "7c07a68bb9f2b0f1746604473e55a8e9743244f0", "message": "switch to numpy docstring\n", "proba": 3.200310675310902e-05} {"commit": "c43023f86c803f0a4e72e5c6dd77d324846f40ae", "message": "NXDRIVE-246: Fix pause/resume by pausing the QueueManager too\n", "proba": 1.2377203972846473e-07} {"commit": "feebccc6316dfc51a36ce2dcc8fd63bcdac26ad2", "message": "Sorry, Rob, no more DEPS rolls\n\nBUG=skia:1945\nR=rmistry@google.com, robertphillips@google.com\n\nAuthor: borenet@google.com\n\nReview URL: https://codereview.chromium.org/300633006\n", "proba": 1.3170691204322793e-07} {"commit": "a45fd617775a4a2c7df2323ff2eedd1aa486b5ff", "message": "add to do item in element_to_Z\n", "proba": 7.026686148492445e-07} {"commit": "271834d3471cfe62b3686276b6607064305bb068", "message": "Fixed reference to numpy.lib.pad\n", "proba": 2.0281746060391015e-07} {"commit": "d41af20b1bdf5b630962a2e474b5d9c7ed62cd5c", "message": "NXP-12694: Use generic resource directory finder for icon files\n", "proba": 1.275098071573666e-07} {"commit": "cd938690628cfcc09d2a909dfc960db853ef7f5d", "message": "Semicolon removal.\n", "proba": 3.2399503879787517e-07} {"commit": "6f261f31618da13b1a0284819b776ae03bd23322", "message": "heatmap text output\n", "proba": 0.0002079929254250601} {"commit": "c6b9e4b42c60f993d5d1dbc6f683c67322b1271f", "message": "Add Variant counts column to Gene subview.\n", "proba": 1.2285967443403933e-07} {"commit": "330517333c73d49d579ab9251525f8cdbc4d298c", "message": "Fixed Python 3 support\n", "proba": 2.786658797049313e-07} {"commit": "221d72fd0734bfd8449117a69a54b47afc74d4f6", "message": "Data views: access positions through choice field\n", "proba": 2.0670016454005236e-07} {"commit": "8097da277a781fa88423428bc2c9640e7580be94", "message": "Now correctly sends context\n", "proba": 3.6794799029848946e-07} {"commit": "8cb55468114b7363d250ff8aa016fc1b8ceab830", "message": "fixed the \"recent actions\" list not pointing to the objects detail page - backport of rjwittams fix from new_admin\n\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@1191 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : 529fada8aab066268cf7b5447f742101aab55614\n", "proba": 4.837626875087153e-06} {"commit": "a1a134e77d2d7c058bb9e0debeefb6e5aa8b39ef", "message": "Fixed #5981 -- Fixed failing regression test when using locmem cache backend. Changed `add` to pickle the value as is done in `set`. Based on patch from mattmcc.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@6709 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.3441840565064922e-06} {"commit": "ebbf4b230aa638f62031eafda3df7bae3a433873", "message": "pylint cleanup for format_sra.py\n", "proba": 6.01990961968113e-07} {"commit": "4e249d11a6e56ca8feb4b055b681cec457ef3a3d", "message": "Refs #32502 -- Added SchemaEditor.prepare_default() on SQLite.\n\n", "proba": 1.0174580467037231e-07} {"commit": "88d6d54339f36ef4b071605a0a6d3fb999c5cb8a", "message": "drops urls\n", "proba": 3.0372956416613306e-07} {"commit": "f779a004319e49a001a27c3e51c925101627ba10", "message": "DW: Corrected the failing tests\n", "proba": 4.449392235983396e-06} {"commit": "32b0abe7733a2a12c7cb6642283de42d22e4cf7c", "message": "Colour coding for sections added\n", "proba": 1.339521844556657e-07} {"commit": "feb52a7560e106b27743f5faf18a1732eb7082d7", "message": "fsed/tests/test_ahocorasick.py: test_transform_roundtrip\n", "proba": 2.2466219888883643e-06} {"commit": "998c5e40fb5d43613f57b9ed37c9ff70c4aa9132", "message": "[FIX] logging level of pooler loading, number of modules is info, the actual list of modules is debug\n\n", "proba": 3.221187512281176e-07} {"commit": "437f780a32c786142b3831bebd3487ab26ce8cbb", "message": "test the kernel least-squares example\n", "proba": 2.4121305614244193e-05} {"commit": "7b74820ef18b5441c86cad3c3393b1aac586aaf4", "message": "add conf_path to ccm.py\n", "proba": 1.2599678029800998e-06} {"commit": "7fe9ee1eefe577159fe7c60485449d53f32e8c38", "message": "BUG: Fixed typo in line checking for test parsing\n", "proba": 1.4997499420132954e-07} {"commit": "bf0184c377fcb477a66a4578c276be8fc81be45f", "message": "converted argv to integers\n", "proba": 0.999998927116394} {"commit": "ad8fcbffa2e90372e8ebd04c76603979d8434b1f", "message": "[IMP] WorkerCron: make the cron workers not all starting at the first database. Better repartition of work\n\nbzr revid: chs@openerp.com-20130701120345-4687avu7re5pw6sf", "proba": 1.3152822248230223e-05} {"commit": "0b55225eb5ed78f595cbdcdde0294c3156897c6c", "message": "Update fs-crawler.py\n\npwd method does not work on windows\n", "proba": 3.555872467586596e-07} {"commit": "d079c01f24c78c8ff828ddb0bb14ffd99bc3d81a", "message": "Fix tests to reflect compress_begin->begin rename of LZ4FrameCompressor\n", "proba": 3.8828525816825277e-07} {"commit": "8dfa0af3ce76c92dcab4ea308de0067b915e065d", "message": "Formatted console course listing into columns\n", "proba": 2.709520856569725e-07} {"commit": "71c93bbe1378004e7f6bde475e4f02af7e7e01b4", "message": "[FIX] fixed local variable for subsequent usage\n\nbzr revid: rco@openerp.com-20110429071147-b2043hv0jsf9jgtn", "proba": 3.9667145301791606e-07} {"commit": "c49a70171c058ef39bd6eaf8e2a6a1269833ea1f", "message": "Update program name in __init__\n", "proba": 2.210466846008785e-06} {"commit": "6c4a523833c7c01f586720a0225469004a499b1b", "message": "Added thread syncronize to mountfs", "proba": 1.5043596590658126e-07} {"commit": "3fe95cf4886583cded1f323656701e2dab182c9d", "message": "add defaults from later versions of sphinx\n", "proba": 2.7113276246382156e-07} {"commit": "6963e2a604345d65eada0d03441ca0de2adb17e7", "message": "capitalized apikey\n", "proba": 0.9997536540031433} {"commit": "9b6dcce6243858bdb82e446fa71b6f5866f150cf", "message": "Make the importer handle a few more cases\n\nIt works for me, now.\n", "proba": 1.1668696942024326e-07} {"commit": "902e6e407e8fff229da13f00c48c590e23d415fe", "message": "Code formatting\n", "proba": 1.929241989273578e-06} {"commit": "f549468f7ac007ad087d1bba99048917d14342a2", "message": "Support top-level parameters in verilator backend\n", "proba": 2.07813357633313e-07} {"commit": "de83ebea61358f21f09aa9332a69b379f6f9c62e", "message": "Complete tests for user\n", "proba": 1.6901117305678781e-06} {"commit": "cc4cf5533fed88bea1216902c36519c186d0cf94", "message": "add-restore-method-in-NoADBDeviceBackup-obj\n", "proba": 2.6378775146440603e-06} {"commit": "b1297582f4a700ebe84cca7fc99f6e86f13a0fc4", "message": "correction bug import csv colleurs\n", "proba": 3.332630740260356e-07} {"commit": "657294190594f7f16db96deb74cec402ffff26e9", "message": "gmm, kmm, dpgmm in controller\n", "proba": 2.1516672177313012e-07} {"commit": "0ab38768f80c8afdf5a5ac9af3cf43526eee6559", "message": "Add better error handling for missing files.\n", "proba": 1.3286692990277515e-07} {"commit": "f6e24f2676a5c123bf4998650a4466bfdd6b2ce4", "message": "fix 'except' to specify 'ImportError' correctly\n", "proba": 2.207076977356337e-05} {"commit": "74b0b4f649113679e213eef1bb9fc9f5be71e8c3", "message": "Migrate name and mail edit test #25\n", "proba": 1.4658915858944965e-07} {"commit": "81d478b0a250c984c17d57169a62cbe549c0ea2f", "message": "Created comment model.\n\nAdded message field - text field.\n", "proba": 1.0501280911512367e-07} {"commit": "032c4237da8a8bc8948be6c61a5b7aff9cc54a88", "message": "Added an XXX note for an untested code path\n", "proba": 1.382625640644619e-07} {"commit": "6c8b8ea26a2cc5c842554bd18e365c7d1167bd9c", "message": "Added test for admin request page\n", "proba": 1.5680384990446328e-07} {"commit": "5d864b6072fc71a21ec12f806e1791a811fd190a", "message": "Working now\n", "proba": 1.2804792959286715e-07} {"commit": "64ad08d9e6d5f944fafa876b397c5d36d8a00cd6", "message": "Removed duplicate entries in media.gyp.\n\nTBR=mark\n\nReview URL: http://codereview.chromium.org/108039\n\ngit-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@15341 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 1.0877029126277193e-06} {"commit": "4e2fc4f148c5311c1cb7bb9e954ff6c6bb791917", "message": "Added the missing UnhandledMessage.message\n", "proba": 4.477352831600001e-06} {"commit": "9ea8f880935faf259db3c26d612c24c449ce5f28", "message": "fixed unable to get article bug\n", "proba": 2.5247010171369766e-07} {"commit": "3e4aec6b28855d44d33333d7a0a73222d2d09aca", "message": "Added fonts path\n", "proba": 2.7213738462705805e-07} {"commit": "b2ee68b6f71c50caf95ae516b6abe3008640c5b5", "message": "Re-enable media_mmx on 64bit Win build since we're now using VS2012 on all the bots\n\nThis fixes link time errors when using MSBuild.\n\nhttps://groups.google.com/a/chromium.org/d/msg/chromium-dev/ch29eQMpENE/wixUxldZZbEJ\n\nBUG=179657\n\nReview URL: https://chromiumcodereview.appspot.com/23129020\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@219120 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 3.0859666821925202e-06} {"commit": "82368c0e9b8f26670d15a21e4345e02905f4c4b5", "message": "Added the ability to use testing.Container as a context manager without an actor class\n", "proba": 2.192644927845322e-07} {"commit": "9fa15b040ad24704216382a5254931e73a0d32a3", "message": "show doesn't pass labelsize\n", "proba": 2.8794056561309844e-07} {"commit": "3052361050386c8ae390fe4152eac6e95feff8c1", "message": "make it backwards compatible\n", "proba": 0.9997822642326355} {"commit": "a72c3e5a4a283e5dcd108109f4fcc2e3ce51cbec", "message": "fix wrong filemame wiring\n", "proba": 5.325771894604259e-07} {"commit": "f641af3ad6bfa0d7e0388da80a59df1e34897f79", "message": "pdfbeads: Write available metadata to PDF\n", "proba": 1.1907502539543202e-07} {"commit": "f7888a96bca534204492eaad444ec5207ff89c15", "message": "Disable ULDI on reference to yuv_convert (vs2010)\n\nUseLibraryDependencyInputs on VS2010 currently fails when linking .obj files\ngenerated from .asm. Disable ULDI for just this project.\n\nR=ddorwin\nBUG=97534\n\nReview URL: https://chromiumcodereview.appspot.com/9271052\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@119476 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.0718275689214352e-06} {"commit": "30134e22f118abb15a66f61368d64b144969867a", "message": "Added more tests for glue.utils.matplotlib", "proba": 1.2893990231077623e-07} {"commit": "6bf2fca7560b5e80be3f7bddbeb3b6741b08e0ff", "message": "developing\n", "proba": 1.0944079349428648e-06} {"commit": "8e117d4f598bf23e86273381cfcef739ee0fe547", "message": "Make env formula's exclusion of keys more graceful.\n", "proba": 3.2742050848355575e-07} {"commit": "e819124c75327b4b94e2aa9394c8728246caef99", "message": "try to make cli not require an alembic.ini on heroku\n", "proba": 2.3251649849953537e-07} {"commit": "b614f4818f6c0c4a100ce2b0032ae67e9583e77d", "message": "Added proper unittest.skipIf when skimage.io plugin freeimage not found. #190\n", "proba": 1.3303721857482742e-07} {"commit": "28a6ddc37cd1c500c3ca02d0ef60f0f377a32449", "message": "cleaning up\n", "proba": 1.0348471732868347e-06} {"commit": "54403981441b227d57617cb60062aa093eb173e0", "message": "developing\n", "proba": 1.0944079349428648e-06} {"commit": "32ffaeccbe74e8513368527c00eeda5cb479c09e", "message": "[#3810] Include projects of explicitly content owned organisations\n\nWe include the projects where explicitly content owned organisations are a\npartner. The users of the content owner have permissions to access these\nprojects, and it makes sense to include them in the list returned by\nmy_projects for a user.\n\nFor implicitly content owned organisations, only the projects that cause the\npartnership to make the organisation a content owner should be included, and\nthey would be included by default because of the partnership.\n", "proba": 1.4420453453567461e-06} {"commit": "9e13aab02c6c75fc27e862f8160ee3b358aba633", "message": "mel list: ignore non-jpeg files in '__micro__' dir\n\nIgnore files such as '.DS_Store' that tend to pop up in directories that\nhave image files in them. Although the list of such spurious files is\nprobably quite short, be lazy and exclude anything that isn't jpeg-like.\n", "proba": 1.626119825459682e-07} {"commit": "80f91bbe16955f842f44b69ee0040f2920d5fbb9", "message": "Default scrape categories and pages\n", "proba": 2.0584091942055238e-07} {"commit": "a7a2db1c5b957cec49f6772975443c8a3d65c05c", "message": "Use logging instead of print\n", "proba": 1.1202220093764481e-06} {"commit": "be80c368161eeace47d93eb9908ddda1aacf3b86", "message": "fix mypy_selftest (#1369)\n\nRelated to python/mypy#3337.", "proba": 1.0995470489660875e-07} {"commit": "74450584dbfeb56c96e8e5edf70b9151dcf82170", "message": "small simplification\n", "proba": 4.7546395762765314e-06} {"commit": "bcf2d342545c7c90f7dc9ca6ea425674b842c102", "message": "The % in LIKE expressions is quoted in different ways on different\ndatabases. This uses \\% for Postgres and MySQL, %% for other databases\n\n\ngit-svn-id: fe2f45b2405132b4a9af5caedfc153c2e6f542f4@334 95a46c32-92d2-0310-94a5-8d71aeb3d4b3\n", "proba": 4.9828067858470604e-05} {"commit": "58c6d0209d71872f0682d478921db1e00496e16c", "message": "Fixed #12807 -- EmptyResultSet ORed condition\n\nThe EmptyResultSet wasn't treated correctly so the end results was\nincorrect, too. The bug had been already fixed in master so only tests\nadded.\n", "proba": 1.0869877797858862e-07} {"commit": "bb8c9e01669ca893ebda68f99c2adf05317e0227", "message": "More handling of stringio for py3\n", "proba": 1.302077379250477e-07} {"commit": "b1c64cd3053106fe3c12897d73898000157277e2", "message": "\n\ngit-svn-id: http://svn.colorstudy.com/trunk/SQLObject@139 95a46c32-92d2-0310-94a5-8d71aeb3d4b3\n", "proba": 3.6165013739264396e-07} {"commit": "7fbc1a373a665d48d3f40ca1c2327b68f78fc129", "message": "added version to response test output\n", "proba": 2.6110092221642844e-07} {"commit": "142a5251cc5e4152c087de7c905a392b05d677c9", "message": "ClassCppWriter: Extending friends\n", "proba": 3.902196965555049e-07} {"commit": "82e954e41da6d5a57c6e0257f674defe3280984f", "message": "further GUI work\n", "proba": 1.2698531293153792e-07} {"commit": "687864c12e0d2cd69a55fb7150b737800a1e85c0", "message": "fixed syntax... today isn't my day\n", "proba": 5.616059206658974e-05} {"commit": "1ceaaf73be423126283576859375e05c5cbcd497", "message": "Updated database so that descriptions default to ''\n", "proba": 1.4738635627509211e-06} {"commit": "fca512669b8d59e64fa2155cb61ecbbc4dc412b9", "message": "Updating dar.py\n\nAdding documentation, clarifying variable names, making the code PEP8\ncompliant, and turning the bot into a class so it can be used by other\nscripts\n", "proba": 1.590163520859278e-07} {"commit": "eee18f6da7f56e98275f3ca6401d0efda0060879", "message": "Fixed the inadvertently not-switched plot titles after having switched the plots.\n", "proba": 1.2319947018113453e-07} {"commit": "a6661f0ac16d5f3821d47a0266f26a7c65fffa4e", "message": "Consistently use tcp:%s:%d for controller IP address format.\n\n(In user, kernel and ovsk switch classes.)\n", "proba": 1.1008019384917134e-07} {"commit": "e8d60e0fcf005104771e3bdd33cace5c56011f2a", "message": "Pass code check.\n", "proba": 1.722629718869939e-07} {"commit": "24893bc28df6851b851e4b04e9e6cce083129554", "message": "Less complex service setup\n", "proba": 1.7599624868580577e-07} {"commit": "4bab5e5b964fd4fd5fde87d8df784408c1e264e8", "message": "set default encoding to utf-8 to temporarily bypass kid bug\n", "proba": 2.3671545079650969e-07} {"commit": "67ac0c0d71244383d48e5a75424e22950d279dc4", "message": "switch order of meteogram plots as per request", "proba": 1.24277093505043e-07} {"commit": "93b91b82924d6f35e58d9d92c4fe53690c201989", "message": "improve legend logic some\n", "proba": 2.490221959305927e-05} {"commit": "45f4e415efd18f293b4f605947f30ada7e7e2860", "message": "order of imports changed to fit convention\n", "proba": 7.164721296248899e-07} {"commit": "fe33b7cff5d31d8d6f0016d48c7892065f45019c", "message": "Fix misnamed method\n", "proba": 3.5612039937404916e-05} {"commit": "2292d1a0156111ee0d2cb515c97c52f1b1db4bc3", "message": "Remove unused setting\n", "proba": 1.2619134395208675e-06} {"commit": "181cba12702c29421ca46dabbd6446cf8f6f1399", "message": "this pains me: continue to use AMO's bundles for Marketplace admin\n", "proba": 1.2029047979922325e-07} {"commit": "3458d35decb53db89c5354f734069521079b50dc", "message": "Trying to figure out problem. Creating dev_test.py that is a copy of the manager.py for debugging.\n", "proba": 1.6488881726672844e-07} {"commit": "73ca25ae5e8da9e169c1d8add13b4da07dc5de56", "message": "Printing scoreboard\n", "proba": 1.1124483307867195e-06} {"commit": "fb1a4b3adf4ffd9028c09d9f0d5188b256b64c84", "message": "hline. Correct size for tfr topo.\n", "proba": 1.2193414988814766e-07} {"commit": "798dfe77cc48087d01a18cda8e7452de84a8e330", "message": "Removed the in operator\n", "proba": 0.00020700883760582656} {"commit": "efb6bf5972c1bc956cb97222447b6359066611f2", "message": "detailed missing instrumentation info", "proba": 1.7494001269824366e-07} {"commit": "f239d3dc52b4648e44a5cfe71aff6749a607e9ec", "message": "added additional properties and curie prefixes\n", "proba": 1.2717195829736738e-07} {"commit": "12403032f062c24590987554381425be4857dd70", "message": "Adjust logic to work with empty strings\n", "proba": 0.00654555344954133} {"commit": "009cc2e9a87d869251a7d9512354767e9619d60f", "message": "changes:\n- fixed a bug, where a token could be created with user None.\nnext steps:\n- write blueprints for lock (sending sound!!) and flashing (control &\u00a0status panel)\n- adding remove/update support for services!!\n- testing services!!\n- completing sound service!!\n- find minions to code services!!\n- logs\n", "proba": 4.156976046942873e-06} {"commit": "1d2e5237eb050ee908370c262d17d62f446a76bd", "message": "Added between dict.\n", "proba": 1.4215090970992605e-07} {"commit": "91009b672cfb557b0cf320505b72521cda99af97", "message": "fixed an unnecessary argument\n", "proba": 0.00014320483023766428} {"commit": "23188457000ca1e382770113552e791e38b03d8d", "message": "jsonrpc metric call - check\n", "proba": 1.5018639487607288e-07} {"commit": "983958fa31c6c456f8483ea727fc668cb21979b2", "message": "Exscript.Logfile: don't overwrite built in function 'file'.\n", "proba": 1.2383803493776213e-07} {"commit": "8319835def3acce88622a2d9a2fef2e6eaef7b4c", "message": "fix encoding; fix replace for other langs\n", "proba": 2.7018316473004234e-07} {"commit": "b57e4134d5c4d753ca79d65a4ed90aec65ad0ee7", "message": "implemented aliases, better error handling, various other fixes\n", "proba": 1.748145876945273e-07} {"commit": "d428c5f900326fe958b047d4c93644fb3c703c69", "message": "mongo_import: wrap up code into main() function\n", "proba": 0.0005265391082502902} {"commit": "31c3e4074a167c465f4b1ad8ac4ace081d05de9b", "message": "backend: small fix\n", "proba": 5.918739702792664e-07} {"commit": "286355cb225a7d5e5d86418011c13ba1a1b19435", "message": "make cursor customization\n", "proba": 4.0381519283982925e-07} {"commit": "71461639384e698dded6ad91134834fb849c9ebe", "message": "Make mount_images executable\n", "proba": 0.0004647590103559196} {"commit": "8a1ab1a79305e968fda2c2e18609a4c591d71756", "message": "Filtered images (trashing) are saved into filtered.dat if state dir is specified\nFixed BaseURL path in kml\nSorting moved to filterImages function\n", "proba": 2.513676236048923e-07} {"commit": "74ab30e9269e080774716537ed5821b904b7b38a", "message": "Added crucial missing log message related to direct access\n", "proba": 1.2412832006702956e-07} {"commit": "ea714f2719e28818d07afbc52d774c79e148a4b3", "message": "dev-15\n", "proba": 1.3583914437731437e-07} {"commit": "db52e50c7dd79723503aac2b66b6df92af5a5967", "message": "listen on a given port\n", "proba": 9.221272193826735e-06} {"commit": "158a25e0d4aff05400057e97e32b7f58b1a635a0", "message": "inline docs\n", "proba": 8.03408340743772e-07} {"commit": "db00498f1149555de340c8f0ede5ce9295f50883", "message": "Refactored connection creating and exceptions handling\n", "proba": 1.728829346347993e-07} {"commit": "89df5cd0e9ebdcc3acfb1154975669c445020083", "message": "zara corrected\n", "proba": 3.4059767131111585e-06} {"commit": "8a9b333d7952fb3048e4d39384e3ba198fb46e6a", "message": "Give a warning if the given file(s) weren't found\n", "proba": 0.00041289886576123536} {"commit": "3637b388a7c6d0b2aa2bbfe47e3ea91a7123f197", "message": "Changed command handler to cmd_\n\nhandle_ interferes with discord.py names\n", "proba": 3.2139814720721915e-06} {"commit": "f6f2a869720480fb48de01f00721015963aaa3d9", "message": "Bumped version to 0.2.2\n", "proba": 0.00011079253454227} {"commit": "0f799df8e027340ae7ebc0019b66474ebc7b1931", "message": "Process two-stage pseudo-ops first, and second stage right after\n", "proba": 8.801348303677514e-05} {"commit": "b661fbbbe1d981a279083052842e1401df8c8663", "message": "added feedrate formatting\n", "proba": 2.731006247813639e-07} {"commit": "662d79cfbd0cd0aaf922a93dc5a5a2d88f7f17ed", "message": "Fix PEP 8\n", "proba": 0.0022255873773247004} {"commit": "68ff8677a1f9f48d3aaa988a4fc1e5028c11a540", "message": "escape `%` characters\n\nbecause we're really using the `where` clause from the command line, and\nwe don't need the `params` replacement from the queryset `.raw()`\nmethod.\n", "proba": 1.2490099265960453e-07} {"commit": "b3ce6d6864ddec7860bc37a46e428118fbc33ec4", "message": "bumps version number to 0.7.3-dev\n", "proba": 7.072401899677061e-07} {"commit": "c3eb6ad0c4cafd71995c5a1c1767f612353d4dea", "message": "added null registrar for times when the monitor is not in use.\n", "proba": 1.0514207815504051e-07} {"commit": "711718a961ee36e285112e9a4bb6abfd21bb69c2", "message": "hal(protocol): get data for first_name / last_name\n", "proba": 6.366717116179643e-06} {"commit": "58bde6037e77da0ab73b7ae4b523decd34a1d1a3", "message": "Warn on failed alias\n", "proba": 3.980045164553303e-07} {"commit": "1f3ef229ea86db2aeffa79ba1447636490534788", "message": "Fixes bug 1231317 - Added std::_Atomic_fetch_add_4 to the skip list.\n", "proba": 1.0322828813968954e-07} {"commit": "971dce4798e9af2db6317b99d54098a157519fb2", "message": "Work on removing the functions from submit_deposit() (01)\n", "proba": 4.812388283426117e-07} {"commit": "a1f83dfc2d43f7e79b8bc05e22e0d5e7063620a2", "message": "Fix w.pop not working on nests added with w.add on a function\n", "proba": 3.11562757815409e-07} {"commit": "daf96667e7fb51ee396e47a94c5b4a1506eda856", "message": "typo in datapath attributegroups pydoc string (skip ci)\n\nIt was referencing `entities(...)` in its example instead of\n`attributegroups(...)`.\n", "proba": 1.244571308234299e-07} {"commit": "173ba3de9829d09be02c349eb3903bb57604533a", "message": "Fix variable name.\n", "proba": 4.545180490822531e-05} {"commit": "dd64a7faa664efef2cce9113e92bb683f336ac5b", "message": "added active process checks\n", "proba": 2.814955450958223e-07} {"commit": "5eb950139ebdba2c8ddddf4fda2ba46481f74a5a", "message": "Refactored code.\n", "proba": 2.2682266376250482e-07} {"commit": "f4210f9b869122c74ef99617b15e0e2e11465df0", "message": "set dates for tests reasons\n", "proba": 2.124549155269051e-06} {"commit": "132e931f2cf09a951bfe01487b81f05c79442628", "message": "Add optional stop command to proofreading\n", "proba": 6.838495778538345e-07} {"commit": "484fd6aa1ec8357a9977c95073b21ce57bac42bb", "message": "calcs/hazard/disagg/core:\n\nCleaner definition of hazard curve and disagg task arg generators.\n\nThe calculation workflow (with proper queuing as the appropriate time)\nworks now.\n", "proba": 1.0705623054718671e-07} {"commit": "b84625f7f16b62d21396feb1965a1d63e491bab1", "message": "Fixed import\n", "proba": 5.355914822757768e-07} {"commit": "5bea10cf2275b12af06dcc205c1b5116ff62098e", "message": " added missing views #7\n", "proba": 1.288847073510624e-07} {"commit": "8b1a6ac1d34da98f6228a5e0e1804d7fa88406f3", "message": "Small fix\n\n\nFormer-commit-id: 3575c2ef9076ef7bf390f522cfe531deb66c1583", "proba": 7.191830491137807e-07} {"commit": "1e247f9283ec63253eb3142ba013d35d15826bf5", "message": "Creating episode data in order of levelling up, not in order of existence in the database.\n", "proba": 1.3570888768299483e-07} {"commit": "c9b17932d9422cd3863b1b4ba9406dfee973a9d1", "message": "add instantiaed version too\n", "proba": 1.3776910634533124e-07} {"commit": "6ae28f83d7bd39f0534ce7e572bd02597977339b", "message": "Add query logging\n\nSigned-off-by: Chris Wisecarver <5fccdd17c1f7bcc7e393d2cb5e2fad37705ca69f@cos.io>\n", "proba": 4.151874861690885e-07} {"commit": "2b3701548ac3b9fee14eec834ae2f4718dabd352", "message": "Actually do things correctly.\n\nSigned-off-by: Chris Wisecarver <5fccdd17c1f7bcc7e393d2cb5e2fad37705ca69f@cos.io>\n", "proba": 1.2713557850929647e-07} {"commit": "66cfcd375f3677849118f9cf4e3779886247f21e", "message": "Arch: Added all the draft tools to the Arch WB\n", "proba": 1.7465278290274e-07} {"commit": "bd99a7c371bf7cdb52d3d739f3fef733ec597779", "message": "Met \u00e0 jour les r\u00e9glages.\n", "proba": 1.7975143862258847e-07} {"commit": "d58bc978760da7a7babe97f4fe68360da3d1de9f", "message": "build script backup\n\n\nFormer-commit-id: 7dfab1d81130165a0e6bd0a7c7761cc35d1faa29", "proba": 6.629596214224875e-07} {"commit": "04f8c474a425ac211617082b290ade7fcadee228", "message": "Path: Add `Waterline` command and PEP8 clean-up\n\n", "proba": 2.5797683633754787e-07} {"commit": "14c36da81d9d53052a248c3a02d1e7d7854e78fb", "message": "Test: Fix formatting in TestApp.py\n\nSigned-off-by: Przemo Firszt \n", "proba": 3.184637478170771e-07} {"commit": "09a70c7e121e4fd7726a626f48657fb531ae1a52", "message": "Parser fix having a summary field in info\n", "proba": 1.7127943863215478e-07} {"commit": "785666aa9e0f8cd7ba2be3caa4a8202309b4951b", "message": "remove post-build cleanup", "proba": 1.5416905796428182e-07} {"commit": "6dfd604006dbc44480d57c07ad7fc655dccb0f50", "message": "Possible support for position/velocity/etc. control\n", "proba": 0.0011039290111511946} {"commit": "32f162fcaf892b4c45e5de656a4861882b062c6c", "message": "Belle Vue\n", "proba": 1.5812609035492642e-06} {"commit": "32151fb9ad97b6877c20818010885d098e921636", "message": "add some BODS operators with no data in TNDS\n", "proba": 2.402121594968776e-07} {"commit": "883d589d47231397475df1140e53ba7a92fae25b", "message": "Use new registration status field\n", "proba": 2.0856842297689582e-07} {"commit": "f798c7f902ba971ca50b4a6db53087e0d6da8730", "message": "added decode content to avoid parse error\n", "proba": 3.780314443702082e-07} {"commit": "50db1d7089bc2dcf4dc2b43b841914e16f750d79", "message": "More robust error handling in the face of unhandled errors\n", "proba": 3.8353513787114935e-07} {"commit": "fc144f26e2b8c02c40888de02e6f8b6b00ba55a5", "message": "Bug Fix\n", "proba": 6.679860007352545e-07} {"commit": "6bc9882079767a488cdc481177afe3bdf5dad275", "message": "properly index h5 dataset when getting boundaries\n", "proba": 5.326046448317356e-07} {"commit": "4d6de3bd2df393e81efbaa5f7a3f091c3f06497c", "message": "Additional changes saved, oops\n", "proba": 1.244249716592094e-07} {"commit": "999e133e9a4fa5816e162702a0cfd2219c88d098", "message": "Documentation clean ups.\n", "proba": 1.118469796779209e-07} {"commit": "7eb670a6a36f168742957e4d5513a53c79613b42", "message": "trunk version bump\n", "proba": 5.728941232518991e-07} {"commit": "799fbf28e007e14d366762cd8c75b60c14f59f19", "message": "Displays uncachable params to debug an issue only on Travis CI.\n", "proba": 1.0336422917589516e-07} {"commit": "bf56939736d6cad288f961b6c86c9a7b15ae435c", "message": "fixed the bug in check_point function for multiple tracking\n", "proba": 4.1856793586703134e-07} {"commit": "94ce3fdcb29ed1e753e3930d1814f08aadecfccc", "message": "fixes\n", "proba": 4.844783347834891e-07} {"commit": "7b4acdcdd566d445928ba1a86ab86b5e7e43d7db", "message": "fixes #116\n", "proba": 1.4691916305764607e-07} {"commit": "01b36d30be5afa3a2153ebb60fee1947282454d1", "message": "Removed accidentally committed work on freebusy, will be back soon\n", "proba": 1.1136079081097705e-07} {"commit": "3d8a1ec2215a98aabec724a0e48ec1a39f616bdd", "message": "added sample url regex for coupon summary\n", "proba": 1.5720392809726036e-07} {"commit": "e996866f659fc711c27590dc7d897bfe3794dbab", "message": "Deleted GWASOnt for GWAS.\n", "proba": 1.1983944148141745e-07} {"commit": "d864e31d5045382edec0282e8763e47cfb64931f", "message": "Added discrimination based on method\n", "proba": 2.619306940232491e-07} {"commit": "7cfcd6d8cfbe458fb6f855d4b671d2facecb57c9", "message": "Crude workarounds for ugs\n", "proba": 2.9833137205059757e-07} {"commit": "87f609d3054244055a12235c9bca34fc1cb86a15", "message": "bumping the version after adding the support for agouti scaffolding results format\n", "proba": 1.3314091518168425e-07} {"commit": "1ae123974102dbf0b12fd2583c84921c4c7f7ef5", "message": "Improve window frame drawing\n", "proba": 9.513823897577822e-07} {"commit": "3ef0c5ac1458bdb5a81a0169f91ed1237d36dfd7", "message": "Back to proper docstrings\n", "proba": 3.8293501347652636e-07} {"commit": "ada056a37613e8153c4053c8b1a9283c3eb67e42", "message": "feature/update-widgets-and-fields: Replace attr update\n", "proba": 2.6398200247967907e-07} {"commit": "898d847e27ff2498940607ed9dfe72b0f1956e1f", "message": "Refactor log lines to use native interpolation\n\n* updates `sync.py` to remove unnecessary interpolation via format\n operators\n", "proba": 1.470791204383204e-07} {"commit": "e3e7372a30a493614e158c475c10508db538b4cd", "message": "use https for youtube\n", "proba": 5.309057655722427e-07} {"commit": "cf7072ab5ff9bad85edca035a6507e2f15f36742", "message": "Make attention collection key public\n", "proba": 4.0685003455109836e-07} {"commit": "ed585fb069c88ff3b0bc66adb7d3133c5eba31b3", "message": "Update models.py", "proba": 4.731647038624942e-07} {"commit": "f8afe957ebfe03d4a5998df6b94f70e07a888e5b", "message": "Missing imports\n", "proba": 5.330718067853013e-06} {"commit": "3415d2274de3f5eb11d6421eb7b804dc94eac4b3", "message": "Minor implementation detail\n\ngit-svn-id: d9c6dde0f7e2de8b6df4d8fb80f7fbb81645aad2@5282 5dc97367-97f1-0310-9951-d761b3857238\n", "proba": 6.330254223030352e-07} {"commit": "ae5685fa9462f32efb44be84ae222106bf4d6dbe", "message": "Made an option to set user-agent, removed duplicate entries in tasks array\n", "proba": 9.214521128342312e-07} {"commit": "41d1baac31e4a109480a6129c4f1f1cd2b37c1c9", "message": "gitc_utils: Remove unused variable\n\nChange-Id: I569819675a99ff6c01fb57b23fed033c39d14d1f\n", "proba": 1.6137764760060236e-05} {"commit": "403fd338b4a00fb8360d9240f0c198452add02c6", "message": "Fix for older versions of GitPython\n", "proba": 3.3397830634385173e-07} {"commit": "a86426cdcb092bbd72926e3bb8373194ebbac43e", "message": "word datatable: sense order (#97)\n\n", "proba": 0.0004288309719413519} {"commit": "719c0269f43332d294b5b6734f8037a3934f42af", "message": "Encrypted audio working with PyNacl\n\nI chose PyNacl since it came with its own libsodium portable copy.\n", "proba": 1.0318183285562554e-07} {"commit": "033349527d67280e5aa6d43cfe7c776c525822fd", "message": "Put elsevier key-check into a wrapper.\n", "proba": 1.1309591485542114e-07} {"commit": "3950573db975b181e11bba9e5fd9e1e41dde6d9c", "message": "Removed random output reduction and added interval based output.\n", "proba": 1.3907812501656736e-07} {"commit": "df18c616122fe34a0c3de02051ea6be242993778", "message": "fix(builtin): don't set --preserve-symlinks-main by default (#2176)\n\n", "proba": 1.4006029402935383e-07} {"commit": "45ba1abffc98cf46193aaef5b9c09a87984b4d1f", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "12927fcb7d8760fb0ce4927e5ff087b2ef9826a1", "message": "comments\n", "proba": 5.451620381791145e-07} {"commit": "3da35cc07226f586269692a3d52a192d7b490501", "message": "Add command to strip characters from the ends of a message\n\nThis allows the a file to be wrapped in parens.\nMay also want lstrip and rstrip\n", "proba": 2.0677764211995964e-07} {"commit": "c1b004a5abe6917b319bef07b37377d942c7c40b", "message": "Added flag to load cluster data from file\n", "proba": 2.635116516103153e-07} {"commit": "94d74965d21a5beefa171cb820858714074dbaf1", "message": "clean up unused imports\n", "proba": 5.22757602539059e-07} {"commit": "f7ebfe9274f3a19c70e7b74256bc53696b643efa", "message": "Exception now raised if all fluxes are negative\n\n", "proba": 7.643662343070901e-07} {"commit": "5c5839cd7b141c45f55ded131e1652f61d8e8112", "message": "rerouting to work off suburi of fogtest.com\n", "proba": 1.383642569408039e-07} {"commit": "7f4b3656cf34bc7319a79f789726874f60bb85aa", "message": "Add icons.\n", "proba": 1.4478769116976764e-07} {"commit": "43572c09ad32b2b3cbe4a8b2348b8c692622c2a6", "message": "Make getTrackID() add the track if it is not in the DB.\n", "proba": 1.2002267624211527e-07} {"commit": "36e9695f5f9d777fde0353df450bd411ecdb857b", "message": "Require gazpacho loader\n", "proba": 1.4514356507788762e-06} {"commit": "780b8ad2d9c088cf2a919ff8a35e84226a43dcd9", "message": "Bugfix for laser turning on and off\n", "proba": 1.402222693513977e-07} {"commit": "5210952e6fe00d69270f0e4e58b8ca4e79e530f9", "message": "remove workaround for sync bug\n", "proba": 4.4816067656938685e-07} {"commit": "b459266c38279a16b47072caaabf69539d923bbd", "message": "Moving back (again) to blacklisting env vars\n\nBlack list is empty as I suspect we don't want to filter\nanything, but retaining to support API (could be YAGNI).\n", "proba": 1.096458035476644e-07} {"commit": "f8c005cb2c20a0453a15377def2a9eff7e90d71c", "message": "Minor modifications\n", "proba": 4.283387227133062e-07} {"commit": "d0f5159796eadcfdaafba54dc328839944723e67", "message": "set timeout to 3 seconds\n", "proba": 0.0004729774664156139} {"commit": "2e5a4105f8ae68869ab9dd7e140a04da1e5a918d", "message": "disable tests that cannot work currently\n", "proba": 1.486586569399151e-07} {"commit": "e74f48b4cf80907fa430e8ec536738a33adccca9", "message": "Fix fonttools suggest test xfail\n\nNow it will actually give correct XPASS behavior\nwhen the fix is applied.....\n", "proba": 1.0389553750655978e-07} {"commit": "aab7523869b708865ef984facefa073932d530f4", "message": "fixed styling on new tests\n", "proba": 1.4944929205285007e-07} {"commit": "bbbb4c757c1cbe12d0d676efd60c57ac4b5c8f64", "message": "Actually show infile type in help text instead of empty formatting braces\n", "proba": 1.3105575646932266e-07} {"commit": "452169710f20a38372bdd686f79680df1215d188", "message": "Remove 2-arg-using form of is_valid from tests.\n\nThis will soon be deprecated, and these tests don't care\nabout specifically doing things this way.\n", "proba": 1.0990333976224065e-07} {"commit": "ebd9fa12740312a1195341012348bedb73d8b87e", "message": "small cleanup\n", "proba": 3.856771684240812e-07} {"commit": "dd11dda4bf941a1f3b7dfa8f0db3d3c37de56359", "message": "Cheat with aggregation?\n\n", "proba": 1.2496629153702088e-07} {"commit": "d3ae323826cdc6dd8c26e939e602b1471887548e", "message": "Make sure current year is used in test\n", "proba": 1.2194886039651465e-05} {"commit": "c3d37544d6d1c3533125169b3706d66b13e5c8e4", "message": "fixed `Git` constructor calls in test_branch.py\n", "proba": 4.188162847640342e-07} {"commit": "b71ec4030085ab5612d5c139f2a452419af51b72", "message": "Replace assertSrcEqual with plain assertEqual\n", "proba": 0.9999890327453613} {"commit": "75bb516edbc39f9a657e71e75f05f0fd6a33d60d", "message": "Adapt tests to the new value of TWISTED_REACTOR for new projects\n", "proba": 2.755548678123887e-07} {"commit": "cfc30efb802475e876d5c86dc272859e0030f6b5", "message": "We don't need to test _all_ status codes\n", "proba": 0.001090780133381486} {"commit": "0b03d6776cf181d79d61e97294cf44f8ceb1244d", "message": "Don't throw exception if any command fails to load\n", "proba": 2.0207505713187857e-06} {"commit": "2ee5b6e231340175208549827e6e04b4429c4a02", "message": "test_comments\n", "proba": 1.1718594805643079e-06} {"commit": "b00ec66ba948077b61e25cf7dc004857c432b01a", "message": "Fix typo in comment\n", "proba": 0.0009169346303679049} {"commit": "7ae29a31392c08126e53210cbfb5c2dea440e3b2", "message": "Stop iteration if each has a complete caption\n", "proba": 3.015107267856365e-06} {"commit": "d45914bf4a509b46409584813c7221ef85ebfab9", "message": "Test case: when the loop on events is ended prematurely\n", "proba": 6.625350215472281e-05} {"commit": "467c6ef59c861af85ad5d5dd72f1b811be625e53", "message": "Add classification as output for detections.\n", "proba": 0.00019146563136018813} {"commit": "2a8aa5d482d9c4fd048f6561685e6f28ab4ce2bd", "message": "Update test coverage meta-test to point to the correct module\n\nSigned-off-by: Chris Lamb <711c73f64afdce07b7e38039a96d2224209e9a6c@chris-lamb.co.uk>\n", "proba": 1.1392338450377792e-07} {"commit": "b23adc0b9973b581679d256049d9ab3f349bec7f", "message": "typos\n", "proba": 0.9996148347854614} {"commit": "57d4979ed67e6371e1b0d085f6121681e0f62664", "message": "disable tests using vizier because not working\n", "proba": 4.3864122289960505e-07} {"commit": "2b64d369cdbce20ff5b2ce4606f2138cbec7a6c2", "message": "updates references & docstring.\n", "proba": 1.1561945711946464e-07} {"commit": "75f49b188bfb4d395533ace350b678e14064b7dc", "message": "fix tests\n", "proba": 1.2553598480735673e-06} {"commit": "a1c358335e1c7348719e8672bd4d67bb5cbc83c9", "message": "cleaning up settings\n", "proba": 8.292686288768891e-07} {"commit": "8ac6f854de55186ce53ae45152932c5aa84ab6a3", "message": "Test save all\n", "proba": 1.5215120185985143e-07} {"commit": "3cbc9bb4555c297aa940522a9a0bc4bc9b89965a", "message": "Tests passing\n", "proba": 7.229721177282045e-07} {"commit": "9668589c87ac1d34b273272398d4955460c3038a", "message": "test_endtoend: updated test procedure docstring\n", "proba": 3.7940203583275434e-06} {"commit": "810e0861f29e614c2011b98c7cbdb465408c20ba", "message": "Added more tests about executor\n", "proba": 1.2508766644714342e-07} {"commit": "d00fbae42480e2fa0b911d386d45fd8e046eef88", "message": "Clean up unused imports\n", "proba": 3.7456479162756295e-07} {"commit": "55ec9f244ce0c2dc0cea878af55b6c84f150787e", "message": "More tests for grouping logic\n", "proba": 1.3110751240219543e-07} {"commit": "4b591c67a47551688d8053b632aea28b95db4c2b", "message": "Ebooks: removed unecessary phases.\n", "proba": 5.06237370245799e-07} {"commit": "87ebe821130e909b3825f4876e4ece33c283eda9", "message": "Fixed #12336 - infinite recursion in dir(UserSettingsHolder)\n\nThis is a regression introduced in trunk, so it does not need to be backported.\n\nThanks to miracle2k for the report.\n\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@11799 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.8691010836846544e-06} {"commit": "bec67ed70736d63cf5e7a8e6ecd290a9910b3f79", "message": "Redirect with resource ID instead of course ID.\n", "proba": 1.1050092041386961e-07} {"commit": "72dea9616a84cefd8424f965060552c84cfd241d", "message": "Test unrunnable script exceptions too\n", "proba": 1.895611774216377e-07} {"commit": "d8da439b46b84cf1b6fb5c42acbc46e4d7eb026e", "message": "fix content compression", "proba": 2.001207394641824e-05} {"commit": "a9b9e5b464d0e82de5bd44d478eb55a347f0a32d", "message": "improve coverage in isDerivedFrom\n", "proba": 0.00027833518106490374} {"commit": "c303d6ab917f271922cb0d97f0d6bffdc01e398e", "message": "use 'hex_codec' instead of 'hex' (#3)\n\n", "proba": 9.19825688470155e-05} {"commit": "d9765426fd6a282ccfacd8b073326fd232733cd5", "message": "add update\n", "proba": 4.6391198793571675e-07} {"commit": "9f20f232a9507f0002adc682a87bb792f6fbdd4e", "message": "Add example code copied from django doc\n", "proba": 2.567043395629298e-07} {"commit": "5f7806e9f256e2e2fdf38b0031f7029d73548ac6", "message": "LCM and GCD tests.\n\nSigned-off-by: Gora Khargosh \n", "proba": 1.6943288017046143e-07} {"commit": "95de44a8aeb74027492b3858ed65d02ec767b27e", "message": "Allow only integer ids to be passed to __in\n", "proba": 4.3682102841557935e-05} {"commit": "0800dba5ca7c73db0af3ccbaaec800399e9a12a7", "message": "docs: fix simple typo, schduling -> scheduling (#910)\n\nThere is a small typo in tests/test_observer.py.\r\n\r\nShould read `scheduling` rather than `schduling`.\r\n\r\nSigned-off-by: Tim Gates ", "proba": 2.8038227810611716e-06} {"commit": "055041c88bbfac2562316d0dce115a396a6eebef", "message": "Add Gargoyle switch for Akismet.\n", "proba": 1.2173337893273128e-07} {"commit": "98fb24c85141886146e983737c373c7634119d4b", "message": "Update package number\n", "proba": 1.3120247785991523e-06} {"commit": "348d3a7b3b00e2713b7760d15198f44953037bf4", "message": "bah, another bug..this passes all local tests", "proba": 1.2374241009638354e-07} {"commit": "8daa8dd5f6f3d938b7d2e68d333495ba971d6b60", "message": "Fixed compatibility error for 3.3\n", "proba": 4.5481158394977683e-07} {"commit": "109a910b573ab3cff1d9a117bb27acd4212dbdf0", "message": "Small refactor and simplification.\n", "proba": 1.6292834459363803e-07} {"commit": "a91c67e6dd1d5616a927b7995d25cd8decc52832", "message": "[skip hazardlib]\n", "proba": 1.3950133848084079e-07} {"commit": "b7825c21548bb0ca015b3bdc6218638a233c16e6", "message": "STY: updated docstrings\n\nUpdated docstrings to use accepted triple-double quotation marks.\n", "proba": 1.0136768935353757e-07} {"commit": "6205c62709d6565106e76b31d64bcc06c4514806", "message": "fixing E501 flake8 error\n", "proba": 2.329488637542454e-07} {"commit": "11360033c1e79ed6b7f7100cf502696a56a7c302", "message": "adding dependency to migration\n", "proba": 7.792033898113004e-07} {"commit": "6307cae04ed8e5ec670429723890a082834568db", "message": "adding test to pca (grid mode)\n", "proba": 1.244293628133164e-07} {"commit": "e1a5d127de21248e8d11ed35bdd1157c1e027e37", "message": "Made UHS curves exportable from the engine\n\n\nFormer-commit-id: 11bd065837e3d165d4b9b8bb56bab258db558668", "proba": 1.7862464574136538e-07} {"commit": "20d68247a2e77756150400757ec917899bd0f8f6", "message": "fixed task rollover\n", "proba": 3.875637503369944e-06} {"commit": "2c1d3461b19e2f138c8132fcd1c82149886b52dc", "message": "Duck Duck Go parser updated\n\nDDG changed their pages so the parser had to be updated\n", "proba": 2.987173957080813e-07} {"commit": "ff1f960f5004f14886dac74d6435a71236454d19", "message": "- trailing spaces #19\n", "proba": 6.748109171894612e-06} {"commit": "9fe4b46f51af9767ce4c86ea29e028977e4ac812", "message": "config: set perl version in paths properly\n", "proba": 6.035188562236726e-07} {"commit": "1a57bc27aa56ab06b145f4145f59a4c02899c6c0", "message": "Avoid iterating (in worst case) over all edges twice\n", "proba": 3.461672167759389e-05} {"commit": "9d122753022c2d8c550aae7ecb43825deb4ec70e", "message": "Bugfix, common flags are now int, not bool anymore.\n", "proba": 1.03676399021424e-07} {"commit": "108bfae50f55d4ec9ceca8d8f510a47d9b35b76b", "message": "Fix gpu in example\n", "proba": 3.94780272472417e-06} {"commit": "33e56b4e2170a3f21e0a8398004722277a852fd3", "message": "Removed individual_curves from HazardCalculation\n\n\nFormer-commit-id: 5f65f35b11f3f2a24a4888bb00edbf28b84d94d9 [formerly 5f65f35b11f3f2a24a4888bb00edbf28b84d94d9 [formerly b4aa724687fc1e83be11115470af956ae48f8360]]\nFormer-commit-id: f9d25277a007cd3efce08fdf721ab733d1b4a61b\nFormer-commit-id: 7dbad73de4aa884207a195aee448b685d54b0f4c", "proba": 9.231918738805689e-06} {"commit": "2d9147456f1797d0065d9ec82e551a865487b93c", "message": "Increment version to 1.7.2\n", "proba": 0.9989558458328247} {"commit": "4b1d084c917602607b9efc09124a803828693d67", "message": "cerbero: Run cross-winXX binaries with Wine inside the shell\n\nWith this, we can run gst-launch-1.0 pipelines inside the cross-winXX\nshell like so:\n\n```sh\n$ wine gst-launch-1.0.exe videotestsrc ! autovideosink\n```\n\nNote that the `.exe` program name suffix is necessary.\n", "proba": 1.3602867454665102e-07} {"commit": "4e15a60924b1d75e5359393c13cbb7e5f890a64f", "message": "improve coverage\n", "proba": 3.2445606734654575e-07} {"commit": "3e02181bb6229459f08cfc5df51225e3469746b4", "message": "use absolute_download_url for download paths with hostname\n", "proba": 2.0553726187699795e-07} {"commit": "d8e3b9fa7776e87cc06edfe3c5302959f4071bf5", "message": "Cleanup [skip hazardlib] [demos]\n", "proba": 1.2156515083461272e-07} {"commit": "a8988cad972c9f221243820b6c0560dc19b96a38", "message": "next release\n", "proba": 1.4087274280427664e-07} {"commit": "2294a8ce9001a4c0a591f72abf563c8dbfd73ea3", "message": "Switch exception calls to critical and use traceback\n", "proba": 2.447005442718364e-07} {"commit": "48c7b1a41bf5bb45cb4ac3a12c22bfb9fb928c26", "message": "Fix python3 str/bytes error", "proba": 0.01220598816871643} {"commit": "84877b7e7fd5149622171e1853022c455f697e45", "message": "af952982-2eae-11e5-9b3a-7831c1d44c14", "proba": 2.0905581550323404e-06} {"commit": "01e022c3b93e34ab1c14036c7f6de1e24c923ee1", "message": "bugfix\n", "proba": 8.478961035507382e-07} {"commit": "028926ee9f78de50e520c72f2a22505e68930244", "message": "FEM: ccx writer, splitted writer, make include names class attributes\n", "proba": 1.6783849332568934e-07} {"commit": "328e6c7fd6f609b6339eb1aa93de4f4759c265ec", "message": "Fix dimensions\n", "proba": 1.758423422870692e-05} {"commit": "5c2491b5a88f205ade4e5cdbeddcc06173182414", "message": "Bump version to 0.6.1\n", "proba": 4.7207936404447537e-07} {"commit": "7518e0f6a8a5301e48b396d26269de4892ff464f", "message": "9922fdd1-2eae-11e5-a931-7831c1d44c14", "proba": 9.562699005982722e-07} {"commit": "161ab7e84954a5acbc185132845ac93edbf94b34", "message": "Fixed an off-by-one error\n\n\nFormer-commit-id: 00f624fc6c784e4fe4568d0ad6c92cd78afe6d39", "proba": 7.150632086450059e-07} {"commit": "cfa95cc113624b128655c3c71955f8f81560fee1", "message": "Fix NSEC.to_text()\n", "proba": 9.781916014617309e-05} {"commit": "5355fdb9efc11d9e1d3c4da7f83d6de4d6b6883d", "message": "Correction to spelling\n", "proba": 0.0006152613204903901} {"commit": "225910230e706e47c22aa095bd33202c6d6e4232", "message": "Comment explaining the local implementation of snapper mouse move\n", "proba": 1.461748126985185e-07} {"commit": "af273dc839d53a9d4eb3d2b895271959bdb76e3a", "message": "converted some methods to attributes, Dna.seq now returns sequence as a string\n", "proba": 5.544340524465952e-07} {"commit": "0dba29c1ca02e066a5f9141990c62fee521899b7", "message": "8224b40c-2eae-11e5-be8f-7831c1d44c14", "proba": 2.3943596261233324e-06} {"commit": "50c3fed9cf3eca9cd8eb6272b43d976bd83c9531", "message": "obsolote module", "proba": 4.734418723728595e-07} {"commit": "eb5f08a592446a473e7ee692f8eeedf6930e6610", "message": "Removed useless import\n\n\nFormer-commit-id: 30107415c3397388ccede40da2d6e1cc9b29782c", "proba": 5.490591092893737e-07} {"commit": "a4b349e5fe5a97c94ef2e1167704146c3fe6152c", "message": "Delete Elevator.py", "proba": 0.0009498155559413135} {"commit": "ac4088fd3335323e38ed58acf009a6efe35d53b0", "message": "aac1bdc7-2eae-11e5-a4bb-7831c1d44c14", "proba": 1.7106997347582364e-06} {"commit": "ce6e5f4f226a311d4c6b47ec359883359636a70c", "message": "syntaxerr: missing r'literal' for unset PS1\n", "proba": 1.6845825712152873e-06} {"commit": "6cbbd6ccd6598669972837f9062f784280c44ced", "message": "export/hazard:\n\nWhen exporting hazard curves, order DB query results by `id`. This ensures\nthat results have a stable and consistent order.\n\n\nFormer-commit-id: 44ff325f571171dfea6c51f3de06944c7b6ccc99 [formerly cdcac197b8c7b2f6a2965d472e48bb083e778fc2] [formerly cdcac197b8c7b2f6a2965d472e48bb083e778fc2 [formerly 82057a7ccb3044e2a54dd1e9f35bcf65881e9464]]\nFormer-commit-id: 3fb1412285ffa8fcf1a9b2af8c46be8475ba3ba0\nFormer-commit-id: 3a31c462ad3121d4099bb9715aac7019040c9bb2", "proba": 0.9967852830886841} {"commit": "ed582931a5e1b80faccaffa0d662853f88644467", "message": "839dd05c-2eae-11e5-be22-7831c1d44c14", "proba": 1.1043829317713971e-06} {"commit": "ad9deee040bfe896c50efe2c0305826825a2ddc8", "message": "Quieter logging for DB serialization.\n", "proba": 1.157128934892171e-07} {"commit": "49bfc8dff7b58688343c7d974a58464577222c52", "message": "7b4cf41e-2eae-11e5-9fa3-7831c1d44c14", "proba": 1.7920626760314917e-06} {"commit": "c4fb09a4189766053c5c5ddcdc78b9e7d905b7ae", "message": "Update tests to support parameter on _get_capacity()\n", "proba": 1.8821717162609275e-07} {"commit": "855002fe21c6a249a52f4bd4bb90bebbf142bfd4", "message": "Reduced asset_refs too [skip hazardlib][demos]\n\n\nFormer-commit-id: 4001e4c27493eb81d63f52867056a4d4388ab0c9", "proba": 3.4015579331025947e-07} {"commit": "a38e61e1e5d9a86dcfb83025852929e35a36efb2", "message": "Also output the names of errors.\n", "proba": 8.679090228724817e-07} {"commit": "6cba63038f2ccf369cd64cbe6af6f9e725e8462e", "message": "ba8ef7b3-2eae-11e5-8fcd-7831c1d44c14", "proba": 2.404499127806048e-06} {"commit": "c1188c06cb88abd8d2e456a0ecece3406c0dab0f", "message": "bail-threshold fix\n", "proba": 1.0469268545421073e-06} {"commit": "cc2158492f972afc4c86d0776d2f3775dad4c25d", "message": "a858cb75-2eae-11e5-be92-7831c1d44c14", "proba": 1.1744461971829878e-06} {"commit": "ed553cf53b1440e03d9a92c7019422bae00d5ed4", "message": "c3deb5de-2eae-11e5-b1e7-7831c1d44c14", "proba": 4.508791334956186e-06} {"commit": "b5e38777afadb0777c56271bf300caf951cbc740", "message": "Avoid an exception if the VI is not connected, receives no diag response\n", "proba": 7.33728654722654e-07} {"commit": "be21d6da6074b2a75aa8c76d8c36521fbd7fc47a", "message": "Making test.settings more modern.\n", "proba": 1.238876450315729e-07} {"commit": "a105e512d4e29f617ca56cc549ec10d9cbb248e7", "message": "b1537878-2eae-11e5-842a-7831c1d44c14", "proba": 2.6455411443748744e-06} {"commit": "045391ee2c1173783d4c6dd3e38853dff7b7bb9c", "message": "FIX: typos in _locked\n", "proba": 1.1014967640221585e-05} {"commit": "b5adb22015c0b3b36dc369fd1b8070e9ebffcbb5", "message": "reset coverage settings.\n", "proba": 1.896132602041689e-07} {"commit": "e9a99256a055d162876abdcb4b1d5f5f340dae46", "message": "6e1cf759-2eae-11e5-a09b-7831c1d44c14", "proba": 2.196545210608747e-06} {"commit": "5ae2de063b514b5cc07efa8e8492107d6d089cff", "message": "Test that if TIMEZONE is None, we only return the time zone if present\n", "proba": 0.9982681274414062} {"commit": "f5dff220e96c4fe20a13ae78b973fac960e21761", "message": "b08f6a30-2eae-11e5-9a52-7831c1d44c14", "proba": 1.5819939562788932e-06} {"commit": "6465137609bfb7529c3c484e61dc13e40437d957", "message": "Add better smartrate assertions\n", "proba": 0.0006267970311455429} {"commit": "44382bc82e2da2eb7bff599e76838a9743dd4c84", "message": "8f9da6ae-2eae-11e5-a222-7831c1d44c14", "proba": 1.8170748035117867e-06} {"commit": "b16c3be4ae61172f8c339c15e79e6db243a51884", "message": "More testing for shipping.upsert_dewar\n", "proba": 1.1451923143113163e-07} {"commit": "23a21826751b51e74ff7295442b125b75b6626c2", "message": "688e2a63-2eae-11e5-bce2-7831c1d44c14", "proba": 5.67034157938906e-06} {"commit": "e1001c0ef3b913c88b2f7d8bf3fef1b51593a9e5", "message": "Update the tests to use tmpdir fixture.\n", "proba": 1.0892230051240404e-07} {"commit": "15f2d64afe395c6a939191a3dd06c4d9f5cde8ad", "message": "a5e5952b-2eae-11e5-a4a6-7831c1d44c14", "proba": 4.443480975169223e-06} {"commit": "1122f2e139c8e4bce40ee8858d3c6eb13df00685", "message": "oops... one test was not running\n", "proba": 2.416040388197871e-06} {"commit": "b166a9ca63863e144c6a3a81ae36899eaf942741", "message": "89f925ab-2eae-11e5-9312-7831c1d44c14", "proba": 7.939430588521645e-07} {"commit": "e9cb7b824ff77b0cff38275cea783d4232c9d460", "message": "write failing test\n", "proba": 0.00017415714683011174} {"commit": "d07da14f5cb112ffc0327b9032ac3b6f00fe84f1", "message": "658e3111-2eae-11e5-ac95-7831c1d44c14", "proba": 9.88347551356128e-07} {"commit": "498b5c46c95cfef54f658341b399756c685ac4af", "message": "Add a test for Markdown in letter templates\n\nThis is pretty much an integration test, the more thorough testing of\nthe Markdown stuff is in `test_formatters.py`.\n", "proba": 1.867373242703252e-07} {"commit": "ad72e7bed04c27e1c29a2b8bc91e6519c1c6b13c", "message": "6f54c9e8-2eae-11e5-b2dd-7831c1d44c14", "proba": 4.652789357351139e-06} {"commit": "765f95f5f9aed0e73ad05717bbe3ba7aa8f0659c", "message": "[Delay] Handle invalid durations\n\nFixes #197\n", "proba": 2.5763728217498283e-07} {"commit": "14bfebd6f9b0590750da1c993db3f0995aa00712", "message": "mix up the schemes a bit in the find_all_links test\n", "proba": 2.118681550200563e-06} {"commit": "aa41643dc68bc81b0fdc696a56621dcc56cd0e7f", "message": "777596de-2eae-11e5-a7bc-7831c1d44c14", "proba": 1.2561908988573123e-06} {"commit": "ee9811b3fb81865d7f97b002df96da47f24b47e3", "message": "Implemented missing tests\n", "proba": 5.640989911626093e-06} {"commit": "58dd8920737a009d94b641d3c65ef38007d6f6d3", "message": "9cc31723-2eae-11e5-be4c-7831c1d44c14", "proba": 1.416618374605605e-06} {"commit": "7d537ec4032b33d2dc5bd93ce5fe2742901a33de", "message": "no need to be too verbose =)\n", "proba": 3.718436710187234e-05} {"commit": "6664ec3eca39927122d4d03070ff93bc8c1dd59a", "message": "bd008454-2eae-11e5-8c0e-7831c1d44c14", "proba": 1.0904989267146448e-06} {"commit": "d86ddc412aa173164183bd7c4d627b93a69721b9", "message": "Added function description\n", "proba": 1.2854076203439035e-07} {"commit": "9e7f3f20973c5d97b36a5e5eee728718a1a3e7fd", "message": "Fixed private values bug\n", "proba": 3.3946682265195705e-07} {"commit": "43ecfd847b060767db51d61190fedd03a93035c3", "message": "8974a399-2eae-11e5-b715-7831c1d44c14", "proba": 1.504333795310231e-06} {"commit": "652be002b396a645105b3b4e76d282c57aac0e51", "message": "fixed last 2 tests that were using bytes type rather than string\n", "proba": 1.774114650743286e-07} {"commit": "72bfd33414c604d4f1fe750aaf49c5290e98fdc3", "message": "Doubled the default number of threads.", "proba": 1.3449415803279408e-07} {"commit": "285b0f296c9856284631d239d5ff22a54d8093ad", "message": "Fix linter\n", "proba": 2.4392938939854503e-06} {"commit": "8fdba737a74aead7ac51e9fba158520be40a5114", "message": "Fixed dict items.\n", "proba": 1.3712551094613445e-07} {"commit": "f80055802c6789dd968a8487a4a2832e2b5152ce", "message": "[ADD] l10n_ar_afipws_fe: compatibility with \"Fecha de Pago\" for wsfex (#358)\n\n* [ADD] l10n_ar_afipws_fe: integrate \"Fecha de Pago\" to Expo webserive\r\n\r\nFrom 01/11/2019 AFIP requiere that when registering a exportation\r\ninvoice we inform the Payment date of the invoice.\r\n\r\n* [FIX] l10n_ar_afipws_fe: incoterm_id.afip_code field does not exist,\r\n\r\nUse incoterm code instead.\r\n", "proba": 1.0037742015356343e-07} {"commit": "3fceeaaf6a165e4740fa1617d6484796d5879fe5", "message": "Add account as direct dependence of payment slip\n", "proba": 5.831069529449451e-07} {"commit": "7d6284544772c891a563e3d31dffec7fdd7549c9", "message": "Temporary fix to get fix test that relies on writing a file\n\nNeed to mock the file out; added a TODO for now\n", "proba": 1.1378494235714243e-07} {"commit": "41638f9019700171526417b3d43075bf7152df70", "message": "Fix failing webtest.\n", "proba": 1.0788564850372495e-06} {"commit": "c77cc36d31e51a76195f18d69791515b81494543", "message": "[Sim][#50] Show time for every printed line.\n", "proba": 1.0188892929363647e-07} {"commit": "bd305c223e1d6cbba94163743702387056f5a12b", "message": "[Sim][#50] Use Pycosat to check for equivalence.\n\nZ3 API is too slow when it comes to constructing complex expressions.\n", "proba": 1.1191142590405434e-07} {"commit": "8aa40c854177bee60c48e6e75b4265a8466068b9", "message": "Tests added for _get_softmax_name and _get_logits_name.\n", "proba": 1.1065171889867997e-07} {"commit": "b46b742368b6db4c62b0792825dbf0c83a3e6257", "message": "tests are in test_series, test_frame\n", "proba": 1.085942926692951e-06} {"commit": "b4af4b5777284f1d8151e9a6c8fda1a86c8b61c2", "message": "small changes\n", "proba": 2.5906804239639314e-06} {"commit": "d72506f99ddc847a665109cabd714d19ebee96b9", "message": "Log more fields in check_mod_actions.\n", "proba": 1.1429904844817429e-07} {"commit": "e190c0261f18fa9b8ec1f7001571d086059ab76f", "message": "Update test_mcmc_monomial_gamma_hmc.py\n", "proba": 1.3228159332356881e-05} {"commit": "94ce25a8b5a0e38382cca061906d4d1adad826cd", "message": "send umodes on connect\n", "proba": 2.170338717633058e-07} {"commit": "ff4d2888b73ac0519d4e8d3956d465233f4896ef", "message": "adding testing\n", "proba": 3.2923094295256305e-07} {"commit": "33617ceb7fd4b3a94431d3c5817ae71a6e4a827f", "message": "fix missing import\n", "proba": 0.008360686711966991} {"commit": "359b6ec35a7149f2ee21124ed49c96a86eb5419a", "message": "Settings: fetch ADMINS variable from the settings\n\nIn JSON, a tuple is represented as an array while Django does:\n* Django < 1.9 : a tuple of tuples ((\"\", \"@\"), )\n* Django >= 1.9: a list of tuples [(\"\", \"@\"), ]\n\nChange-Id: I253f37519ed276695694ccf2f778a6e7f84da3ac\n", "proba": 0.999991774559021} {"commit": "cf1af87ae9cc7e2ec436aaa0b6eb0be1e121091a", "message": "Fix analyzer setup in dump.getar for python 2\n", "proba": 6.018841531840735e-07} {"commit": "ec0483b975700dd5b8e6f9aec647e47a4a23b824", "message": "header progress percent starts at 0 instead of None\n", "proba": 4.625540896086022e-06} {"commit": "4648ed3cad1c565bab8adc2e64b5e28252fe7cc8", "message": "Only return open FTBFS bugs.\n", "proba": 1.160007201406188e-07} {"commit": "f28b800425bfaf7fa385539134386f84f95dbf31", "message": "development of hrsadvance\n", "proba": 3.181965837484313e-07} {"commit": "6a9491235040ca2d5eb21805bf73d4f88feddfe4", "message": "Fix problems in tests\n", "proba": 0.0008271879050880671} {"commit": "cd0526bda2ac6506397722f992b9b4d75badd358", "message": "fixed format string and last byte for flags and nonce\n\nassume input flags and nonce are both integers to be packed\ntogether into a byte after bit shifting\n", "proba": 3.655664500001876e-07} {"commit": "6c4aef60416bd18ad1ad163fa6eaf818f4204106", "message": "Add more assertions\n", "proba": 5.239562142378418e-06} {"commit": "e0f036f3a4806c298961a61ccc8e7e38ab4b4587", "message": "linkers: Always use mesonlib namespace\n", "proba": 1.4073215481857915e-07} {"commit": "a06147c61f47d0c802603a819e65c9fc357c6294", "message": "Fix documentation\n", "proba": 1.3418582511803834e-06} {"commit": "1d07797d4b46b3a3a7dca2ab2c5306cef8a0eb3f", "message": "Test compatibility with touch router settification\n", "proba": 1.515340244395702e-07} {"commit": "7cb09a01cde77eeb1257e4740e8093c766e4d58d", "message": "put Controller.domain in a separate migration\n", "proba": 4.7312050810432993e-07} {"commit": "c1d8b738199d45d42c4d765c195a8fd0815cfbcb", "message": " Merged in the Communities types from the dev workspace by hand\n", "proba": 1.144888699400326e-07} {"commit": "3e69639a89134575abda3696b41f6ac0d5e4887e", "message": "Old style exceptions --> new style for Python 3", "proba": 1.8750108665699372e-07} {"commit": "f81e7e57f8d0a2f43b2d60fa8ec429f9d7fc278c", "message": "Replace get_object_or_404 call with filtering logic to avoid exceptions with duplicated revisions.\n", "proba": 1.0725959498358861e-07} {"commit": "6fa0cf201959e2de429f7784d1bae28785fe86f0", "message": "Python: added force_ function for debug\n\nThis allows to debug programs using logger without an actual connection to connectordb, by \"forcing\" stream adds without checking connections.\n", "proba": 1.327835832398705e-07} {"commit": "e157d79f952f82918913ee2201b288130fc13b50", "message": "Add pylint thingamajig for startService (name defined by Twisted).", "proba": 1.0616882661906857e-07} {"commit": "72da8bb199ab05d2f56c4a6c40a0c3a00b90452b", "message": "SSL config\n", "proba": 9.130666853707226e-07} {"commit": "bfb3325c2a8be1d46ada6ef8cc0991612f0a6f9a", "message": "Proper conversion to dtype in progress.\n", "proba": 1.2197975252092874e-07} {"commit": "4b77e69532ed9b63c6ad267ecb514d496df9e89b", "message": "add numba to globals of inlined parallel func\n", "proba": 5.36526131327264e-05} {"commit": "9fccd033952c45a8061178fb0dcf23d9f10a928e", "message": "Delete rankcheck.py", "proba": 9.749306855155737e-07} {"commit": "1027359cfa466d99407c578c8f99c82e8b684e51", "message": "support parfor push numpy calls for submodules\n", "proba": 2.1281535111938865e-07} {"commit": "71c90cc485677b36267f68bbd2a8ec4a30de6f90", "message": "[examples/resnet152] Fix a bug in config.\n", "proba": 1.0608016509650042e-07} {"commit": "49260f09be95883267a37ca2272cdfe830946681", "message": "Introduce safe secret generation for password storage\n", "proba": 1.480168378975577e-07} {"commit": "7255e9e78f9addbac0ae280d8316228622ab5ea7", "message": "examples/simpleweb.py: Removed *args, **kwargs from index handler. Not needed thanks to [133:76bdadf4b96a]\n", "proba": 1.161228055934771e-07} {"commit": "0475e64e113ea9e007d575a139ae7745edcbe5bd", "message": "add set_edge_linewidth function\n", "proba": 7.4804270298045594e-06} {"commit": "ae76af817b47f859c92dae75fac2ef0b3af42a0b", "message": "Don't report an error if we deliberately killed pppd\n", "proba": 2.3443470809070277e-07} {"commit": "36aa89ac7e77dde7fba7a14db21845a456577b46", "message": "Fix erroneous fetch fail when fail_on_missing is set to False\n\nFixes #13832\n", "proba": 1.166485162684694e-06} {"commit": "97781f18bed806723810feae1b733188aff125fb", "message": "Make loaddem command really quiet when verbosity=0\n", "proba": 5.7979701523436233e-05} {"commit": "d238fe4a2246233bd5a60423e7dbf46a704072b9", "message": "- Add channels to /update handler.", "proba": 1.1160064161686023e-07} {"commit": "896412f287178b5e7f49f66609373bc13d26e5dd", "message": "Remove spurious print\n\nThis was causing junk output like \n\nSigned-off-by: John Spray \n", "proba": 0.000730436819139868} {"commit": "4123f3f6bc9c2117445ca46027e3b835ccbbb58a", "message": "ENH: Added tests target to build script.\n\nFormer-commit-id: 3809a0478a6ea55b10e3d4bef15a8ebab5eb5ad0", "proba": 4.1697111896610295e-07} {"commit": "2f57c70ef84858bf7d9d6a5bf7ec4b424c5beedf", "message": "added traces\n", "proba": 1.762024908202875e-07} {"commit": "6ab8118bf4b5c42c76312feea83c6c465b8d1979", "message": "add taiwan future query\n", "proba": 0.9999991655349731} {"commit": "30f1e013c3cbdc5f28088322dd6dcc762ce53df0", "message": "Add cache control and last modified headers to the page API (#750)\n\n", "proba": 1.019664992440994e-07} {"commit": "04f4e3a6b50a462d569d278647bc1acbdc443176", "message": "don't print hours in format_seconds if 0\n", "proba": 0.9996090531349182} {"commit": "4f93c2b7c7f61270f917da3d6d5208ec33953fff", "message": "enable loopcontrols ext for jinja\n\ne.g. for break, continue etc\n", "proba": 1.1463396276667481e-07} {"commit": "f8985efdac0e136cb3e5d8c0ad175a61d53c8a46", "message": "avoid dep on cherrypy stuff\n", "proba": 2.643579080086056e-07} {"commit": "4f1f6261f5e34183fdbe9b503f0cd0066eee8aa1", "message": "Remove val_raw usage (keyerror) - fixes #8\n", "proba": 1.7672620344910683e-07} {"commit": "6ef59a5bcec59856b30b62329c7f2a13ea03ef4e", "message": "My banghole need TP. fix: Orcsome catch **ALL** key events.\n", "proba": 1.3341558258161967e-07} {"commit": "e6f8e0e6bf18d2e6e64989a34b5eb66c2b8cb774", "message": "Use POSIX shlex mode; add comments\n", "proba": 1.716601190082656e-07} {"commit": "aa4b5679a59fa56ee299c1d5b75407b5fc60019e", "message": "Update get_next_tab(self,s) (#154)\n\nIt seems that Google has updated its html format. 'class=\"ZO5Spb\"' has been deprecated.", "proba": 1.1823865975202352e-07} {"commit": "369142163ee4a20a7a7525b15fc606f9ecd0ed18", "message": "2008/09/01 v1.19 Added calls to the API (only) for creating\n (sub)namespaces, deleting (sub)namespaces and\n fetching descriptions of namespaces.\n These have been manually tested, but no\n units tests have been written yet, and the\n command line interface has neither been extended\n to make use of these calls or to provide new\n primatives to let users use them from the command line.\n All this and more will come.\n The new functions, all methods on FluidDB, are:\n create_namespace\n delete_namespace\n describe_namespace\n create_namespace has an option to recurse if the\n parent doesn't exist. Although planned for the\n the future (and arguments have been included in the\n function signature), delete does not currently\n support recursive deletion or forcing (in the case\n tags or subnamspaces exist in the namespace).\n", "proba": 1.6449835982257355e-07} {"commit": "8b444de795263fc65128030098708331e8ff0afb", "message": "Increase notification wait timeout in functional tests\n\nIn the baseline the wait_for_notification() functional test util\nfunction by default waits maximum 1 second for a notification to\narrive. Based on recent gate failures it seems that it is not enough\nin some cases for the notitification to arrive. Therefore this patch\nbumps the default timeout to 10 seconds. This will only make the test\nexecution slower if the notifiication arrives later or does not even\narrive. So in the happy case the test execution will not be slower.\n\nChange-Id: I75e2bcd87535de7e44bdf317c3ab12ba8952dcca\nCloses-Bug: #1742688\n", "proba": 8.77798993315082e-06} {"commit": "570674078de1e7402a461bc5786a64a1908a0923", "message": "moved comment", "proba": 2.3772285828727036e-07} {"commit": "9fd8014cf5bd7ad4fc00ed0eb5cb1ff179c6946a", "message": "restore locking in notification tests\n\nThe notification samples tests are mocking out locking entirely, which\nmeans that all code using locking for safety no longer is. As this is\nspawning services that talk over the oslo.message fake bus, this seems\nlike a bad idea.\n\nChange-Id: Icdb9e77a1be3efc0068bd1add1d3c72d44183329\nRelated-Bug: #1649403\n", "proba": 2.0049457816639915e-05} {"commit": "1d1178c834a20a8c5bf6d1f5598e8fd11e020a63", "message": "No need to assign endpoint to a var\n", "proba": 1.7259662854485214e-05} {"commit": "96c710ed6afcc3c3fde9174c4f582dd914ebdb68", "message": "fix automatic html tag error\n", "proba": 3.0045446237636497e-06} {"commit": "4f6297189a9af5aef554f45b43c0495838af0488", "message": "projects.dev.settings: Made it easier to toggle terminal logging.\n", "proba": 1.0884213708095558e-07} {"commit": "2d0e88f8afeaace8fa58f77ffa2cc0201ee53736", "message": "ir: Merge DataSpace during clusterization\n", "proba": 1.3220940786595747e-07} {"commit": "5879da1a7c7b81531f5199a284c483e83051b70b", "message": "Delete for.py", "proba": 1.4927537677067448e-06} {"commit": "cefd1f4bf80b33eff44c54b6e9e61741d8a33148", "message": "resolution: delayed processing of SOME quantifier after anaphora\n\nThis should allow correct behaviour when dealing with sentences like:\n'give me another one'.\nPreviously, 'one' would not be processed.\n", "proba": 0.9987131357192993} {"commit": "2e2da95f4b80f6418eb6dec5df609845e0eb684c", "message": "Use adam as default optimizer w/ params same as deep mind's ac gan paper.\n", "proba": 1.0362519731188513e-07} {"commit": "e45a20dd6da6762df4a12ecbd8beb1ed8a1e191c", "message": "- context : improved display by adding new settings that allow to customize the layout\n- related to PR #60 : added a new setting `gef.readline_compat` to set to true to fix a long time readline library bug that would make color display of gef_prompt SIGSEGV GDB altogether\n", "proba": 1.6288048243495723e-07} {"commit": "138b3e32b9c84a17bdf4bd31b20d1b26080c985d", "message": "clicking on cancel button of power off dialog didn't close dialog\n\nSigned-off-by: Eric, Hsu-yao Tsai \n", "proba": 1.1530783439184233e-07} {"commit": "d01663e8047c939cf06ad5a9d8c60f7c669c2a8c", "message": "repair path feature added for UpdateImportedPartsCommand, issue #16\n", "proba": 1.194835164142205e-07} {"commit": "6bf0a80a76318a7a1bbd35dbf6e23cb27f1ee832", "message": "Fix pyenv code failing in python3 (#400)\n\n", "proba": 7.463013753294945e-05} {"commit": "673fca395320078a183ae6d41aaa88a535c674a7", "message": "Removing outdated test.\n", "proba": 1.185396058644983e-06} {"commit": "87835055bfda6b20568ff790137cd710751a01ba", "message": "[batch] do not explicitly set cpu in BPE, which improves test time (#9462)\n\n* [batch] do not explicitly set cpu in BPE, which improves test time\n\nThe `BatchPoolExecutor` assumes, incorrectly, that the default number of CPUs for\na batch job is 1. This is not true in test and development environment.\n\nI avoid explicitly setting the value if it is `None`. This choice preserves the\ndefault value in this environment. I set the thread limit to 1 if the CPU is `None`.\n\n* fix", "proba": 0.00023695066920481622} {"commit": "88662cccc746953ace63eb927b2a6447487ff0f9", "message": "permissions\n", "proba": 4.7055561935849255e-07} {"commit": "a6bed91ef1219718fa7c9797c95ab1acf27dc725", "message": "added debug mode\n", "proba": 7.478470251953695e-07} {"commit": "d5f88a24b9e32449cac57a7c6d70393970a85cf1", "message": "pass location of BAT_DB to method generating json\n", "proba": 4.148910477397294e-07} {"commit": "2b65501ca7d9a004fa41307c3a618b98ac02eb38", "message": "Use entity class attributes for aquostv (#52670)\n\n* Use entity class attributes for aquostv\r\n\r\n* fix\r\n\r\n* fix\r\n\r\n* Tweak\r\n\r\n* tweak", "proba": 1.4974875739426352e-07} {"commit": "0f3d6f3f01044ff23cdc21d4134c222c26b53664", "message": "fix: Path expansions need empty string default\n\nSee also: #72\n", "proba": 2.230694207128181e-07} {"commit": "b07bbe32227a4fb2af2d494f275666e6348dd6e4", "message": "allow parameters to be passed for ec2 instances through kwargs\n", "proba": 2.6948552545036364e-07} {"commit": "b608ce08ddf85796bf7d98bf84ac41d7edc8b3b7", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "cca26d0f8629805adbe945a52f01fe1d2b43a355", "message": "Stop failing on invalid XML\n\nReport errors, but don't fail.\n", "proba": 1.352079124217198e-07} {"commit": "d30ed05f305afd813dcffef85865ba7e30a8c702", "message": "Expose Spotify as a service (#53063)\n\n", "proba": 2.143458459613612e-07} {"commit": "32d80d6b5e127ed52bd4d5b4337c1058344ca975", "message": "bump version for next dev cycle (#163)\n\n", "proba": 1.0339223166511147e-07} {"commit": "96ede54a1b2ebfcaba1310a03581e78dc058dbca", "message": "always call set_volume with integer values (#31418)\n\n", "proba": 1.7977406230329507e-07} {"commit": "cfd8afbbc657ef16c28c74e2ebcacec1ddd12157", "message": "Add support for non-blog pages\n", "proba": 1.919695193919324e-07} {"commit": "05dfbad8615b9004088490efc7323374fdfe4378", "message": "handle step process failing to start\n", "proba": 1.0843006066352245e-06} {"commit": "d1eedf35148505022a2f31523970c644c7b55a3d", "message": "whoops, needs passes\n", "proba": 3.629658920090151e-07} {"commit": "3fa78a3a390ffaa587ff1ef7b039c78e16e98cce", "message": "Fix #3 for reader, changed the delimiter for file names to account for those that include commas\n", "proba": 2.647262249411142e-07} {"commit": "c53824a3427235c814cfe35c5c85fd5e1e312b40", "message": "i3: Remove call to GetTimeouts() after SetTimeouts()\n\nFixed in commit 72e984a54049c77208546b8565cece100e87be48 from\nm45t3r/python-dpms.\n", "proba": 1.1308480907246121e-07} {"commit": "c37e0927542a4e5d0137dc60647d3a2183d4eca5", "message": "Grid stitch progress indicator\n", "proba": 2.3669943516324565e-07} {"commit": "ec70a431d60a14677d1c9aa446229c9012308907", "message": "Correct max time on API query\n", "proba": 0.00015491129306610674} {"commit": "8adf0e319646617f6465182e57c41a2bc2ac38fa", "message": "refactored\n", "proba": 0.00033057446125894785} {"commit": "a2164627e39dd53955d00c8d5408331cc3a71c3e", "message": "use \"from PIL import Image\" instead of \"import Image\"\n", "proba": 1.3856669056622195e-07} {"commit": "e08cdfa36ef3a08b25779c025e109a25a239835a", "message": "wrap process of submitting the internal subscription management form in an atomic block before calling response redirect\n", "proba": 1.3401889020769886e-07} {"commit": "02dd14977bf6d4752f16351ba150c899d639459c", "message": "parse.py: Update docstrings\n", "proba": 7.034805662442523e-07} {"commit": "ee08d3e78986b8ed9a6dc372c272c5ecbee0d470", "message": "lint [ci skip]\n", "proba": 2.704623511817772e-07} {"commit": "ce7f0c865f4bc267b4ad174bc15a8dd4c115e642", "message": "Restructured\n", "proba": 2.154980847990373e-06} {"commit": "255c9e1c0baa30a23ebf798db038822a5bbb7fe6", "message": "remove pickle from _start_export_task task\n\n- only an id is passed via this task, so should be safe to json serialize\n", "proba": 6.213572874003148e-07} {"commit": "e365366a7779fc25d722f38417b357964b3e7457", "message": "Removed api job\n", "proba": 2.8285103326197714e-07} {"commit": "5a2d87ee21348b588eda52f536925419415d6afb", "message": "update dimagisphere urls to match single page situation\n", "proba": 1.3683431632216525e-07} {"commit": "4454bf01d50daba687a1094ee590d18cc6b9f34b", "message": "Remove {} from namespace in helper\n", "proba": 3.329411265440285e-05} {"commit": "d7487e142ab706aad2754879dd1fb4609405d318", "message": "bad refactor in pycharm\n", "proba": 4.0470795283908956e-06} {"commit": "aaf0b7ebbe60d4525a16e0d69daf373fd90cb04b", "message": "fix location setting bug when adding admin user\n", "proba": 4.025436339816224e-07} {"commit": "06f2a14fd4ec19cf8351685d51ab399ff98ebfe4", "message": "validate case type\n", "proba": 0.00023468789004255086} {"commit": "31daa45375a9413d52505e062a0aec8d328c1a81", "message": "Add allow_duplicate_source in ccbinary\n", "proba": 2.4412847778876312e-05} {"commit": "eec4a6cb6e8511a7baf4836f67013492a99b2972", "message": "Change state name for community review\n", "proba": 9.468981829741097e-07} {"commit": "f1ecb0069d4e990f3890a703221d4afc4012f209", "message": "Fix cooldown messages not being sent properly.\n", "proba": 1.1522472931346783e-07} {"commit": "3a36bcad866fbd7678e3bd8b7ebf83083dfb489d", "message": "change import order\n", "proba": 3.589767629819107e-07} {"commit": "2ba7a5d3593d6662f42f14ba3a7f79f8b2749f84", "message": "hacking fix for access-om2 file structure\n", "proba": 2.945421044842078e-07} {"commit": "088a6ebfe9de61b7c5ed952d290c26b3a9bd9082", "message": "More info at rank_files()\n", "proba": 1.1180666348309387e-07} {"commit": "7f42129606734bd6a94454700d33cfae81741d76", "message": "added home window properties\n", "proba": 1.631737092111507e-07} {"commit": "73900fcad423804ab47854b6cb4c135b88dad6e4", "message": "A little documentation with the subasset longname encoding\n", "proba": 1.4009302162776294e-07} {"commit": "73ad6e991ff893ee5210beb1040320eaef9550b7", "message": "Blank defaults for version so we don't report bad stuff\n", "proba": 1.2662107451433258e-07} {"commit": "24cf461e93316a633baed1614ca4ba5165aebc0c", "message": "fixed bug with ssh\n", "proba": 3.684648959279002e-07} {"commit": "2e7b6c9c456721d40e8d20d38e1899dd3d77e926", "message": "Reworked bypass handling to provide zone information if available through LRR messages.\n", "proba": 9.927367017326105e-08} {"commit": "03e0348c06025ede57d93e6ca5e2718967040bd6", "message": "Only add dns-external-primary if configured\n", "proba": 1.8955647362872696e-07} {"commit": "c52a61bf9e312378722519b699f0485038aeb5a8", "message": "Removed some unnecessary changes\n", "proba": 8.837955647322815e-07} {"commit": "eba17c8085a9c9b282c829a271fa37d8c5ef9f07", "message": "minor changes (prettier list output)\n", "proba": 1.3530646469916974e-07} {"commit": "1250d6278c3e117e87fe5cd9a5128d17f5625622", "message": "Added basic error handling for request processing.\n", "proba": 1.041510842014759e-07} {"commit": "a498a26d00015945ea34f321760a4d11d05e742f", "message": "set config defaults for syslog\n", "proba": 8.178997177310521e-07} {"commit": "978d443fc0a38866c65500ce3aea18f7170eda82", "message": "remove check out new parts from metar command\n", "proba": 1.7823973053054942e-07} {"commit": "32593c66591b2ae9da4b69e3bde91d918cd3b67a", "message": "Cplex even faster objective change\n", "proba": 1.8268626433837198e-07} {"commit": "f25a55a2e9e5c2cc7573dd1834b3ab828a448393", "message": "fix weather\n", "proba": 0.9988963603973389} {"commit": "569b8f9581f893c1b607d90bdb5ab26bc481433c", "message": "fix: pep8 compliance\n", "proba": 4.791286301042419e-07} {"commit": "cd398175ad1c6f3074f6fc1aee27fee24e61e437", "message": "Add gzip of the requests\n", "proba": 2.672053369678906e-07} {"commit": "a70cd48b8d3f3cbf95e485ba3b7f442f20880872", "message": "Fix name error\n", "proba": 0.0004398106539156288} {"commit": "5f512bfe9a53b22c1ff38571aca331965bb67298", "message": "Avoid Python 3.6 warnings.\n", "proba": 6.740036724295351e-07} {"commit": "d9d68792d6d41877c28b3c8aa787ade83d64074e", "message": "work on config module\n", "proba": 6.315842142612382e-07} {"commit": "c3512cb4d8582478e6867ba00b2875e85abe9683", "message": "Missing space in error.\n\ngit-svn-id: 2f953839656920094b02ff4c102876eed7a2c24b@107 9f8c893c-44ee-0310-b757-c8ca8341c71e\n", "proba": 0.9999973773956299} {"commit": "6a8b41f921555b5c39761185955496a4a062bcb2", "message": "use better variable name to represent the directory path rather than just the directory\n", "proba": 1.2031736105200252e-06} {"commit": "1e29ebd7aa5bc865daf0fd5587c6a4418f3999c4", "message": "Gracefully exit if CRDs do not exist\n\nThis commit checks if the required CRDs are present in the cluster.\nIf they are not present, it logs the error and exits.\n", "proba": 1.1786814724246142e-07} {"commit": "5b3c66487051559fc9d182a04e5b7defd8fdd6b7", "message": "Organize system tray icon creation functions.\n\n", "proba": 1.1921058273856033e-07} {"commit": "73ce02098407aa956d373197661575384250ccc6", "message": "[STMS fix] : manage multiple teams in query_set\n", "proba": 9.040942359206383e-07} {"commit": "f9ad5629b7c6b8d8dead3cb686e19934c97d5762", "message": "gui: safer way for module reloading\n", "proba": 8.479567554786627e-07} {"commit": "06fd7d895f86c8bbcf55fa0f0d77426feae9b1b7", "message": "Removed broken progress bar start/stop callbacks\n", "proba": 3.8600356333517993e-07} {"commit": "25103e184c173b5af4b5190150d930795d70cd48", "message": "json parsing working\n", "proba": 7.58735495764995e-07} {"commit": "5f919d25e1166dba9606d5c007dc8547bad5b308", "message": "another fix for restore, batch @ 15\n", "proba": 1.1421938950206822e-07} {"commit": "d3f11a4b480d6e2ebaabae594a8f35d13fde6952", "message": "Initial code for --action split-mbox to split large mbox files into 25mb chunks.\n", "proba": 1.026843321483284e-07} {"commit": "f9a26b5ad41022df683dab4ed941a28ad21659d0", "message": "* Add purge-labels action which will remove all labels (not messages) from an account.\n", "proba": 1.0125175720077095e-07} {"commit": "d4eceec84517af7317023a1bc5607b7a423e2d92", "message": "check for normal operation\n", "proba": 3.452786074831238e-07} {"commit": "c08c388cf96efd046ff15002e09c874bc8c5908c", "message": "Use TLSv2\n", "proba": 1.0678152648324613e-05} {"commit": "c559fc0758a2e49a729141da6b0bee6c22c906a3", "message": "More unit tests.\n", "proba": 1.316010695973091e-07} {"commit": "a6d4ed553b174ead72cbf13b7fdd7d4363a1b45b", "message": "Allow adding custom Django apps in settings_local.py\n\nThis makes it easy to add per-site additional Django applications, such as\ncustom auth processors. In order to add a new app, settings_local.py just has to\nprovide the variable RB_EXTRA_APPS.\n\nTested successfully with django-socialregistration.\nRB_EXTRA_APPS = (\n 'socialregistration',\n )\n\nRan unit tests.\n\nReviewed at http://reviews.reviewboard.org/r/2630/\n", "proba": 1.1403939424781129e-05} {"commit": "92edc8f237b6eedef0160bb6d65c4bf51c803869", "message": "calculate the first observation probability in forward algorithm\n", "proba": 0.0014429297298192978} {"commit": "0e0a795e45bcb2d73fa47cabd38b19df392465b6", "message": "RMK-834 - Turn off filesystem base packages\n", "proba": 1.1794359977557178e-07} {"commit": "e0bd8c4ae405f944d41ccd467c7e43e91b293841", "message": "Improved AnimePlanet code\n\n- Improved accuracy for TV/OVA results\n- Added manga search (with the ability to search for an author too)\n", "proba": 9.97232589838859e-08} {"commit": "9bb1f02178ad11ea768f5e86f44bb7004a7f6b09", "message": "Corrected database path and set the ALLOWED_HOSTS variable to allow debug mode to be turned off\n", "proba": 2.2528880094796477e-07} {"commit": "49a5f6a4a1b56b1a2953c9d9d43cd2638c69e0d0", "message": "We cannot use bulk insert any more due to task_id_factory.\n", "proba": 1.031952123753399e-07} {"commit": "4997c098a6f236079f865c704fec6ca4a57adb6a", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "039f47d32aae907d58b3c6538a01d36d4341f998", "message": "removing commented code\n", "proba": 3.9409493979292165e-07} {"commit": "aea41f861b9da6fac9c376e0b6a2831f133c4d0e", "message": "Changin the way image format is being checked so that it doesnt conflict with MPO format for JPG files\n", "proba": 1.396526840835577e-07} {"commit": "93aa61f8dc63c91a29ef087816a71367bbfbde49", "message": "[#2051] Remove \"during membership\" constraint on membership calculate methods\n\nInstead, only the link to specific membership is used.\n", "proba": 1.0299012842551747e-07} {"commit": "ede3881c6b7c1ab76eaedf4c1f8b1452ff620576", "message": "Add want_comments\n", "proba": 3.568553950117348e-07} {"commit": "b2a933bdc11448f197eb24a5cb2821ada90ea742", "message": "Rename function and give it a better docstring to make its purpose clearer.\n", "proba": 1.4422775507227925e-07} {"commit": "63f3b57977d2f5eba25bca3676a8a988a927a225", "message": "maybe i've found the problem\n", "proba": 5.9323069763195235e-06} {"commit": "71a54c83dcd30edf4dfb50963dcfacc2c6e80619", "message": "Don't use twisted.trial.unittest.TestCase.\n", "proba": 1.4460029262863827e-07} {"commit": "edacf0d2db5fb9453de369e74d80a6bab052a5db", "message": "Use store to serve dynamic layer requests\n", "proba": 2.3915018232401053e-07} {"commit": "d2884554f3565722c6438ed6a7301c37f82fb6ee", "message": "comment cleanup\n", "proba": 1.710638031227063e-07} {"commit": "d212e84aee678987cb0e7568ee87d635ae899676", "message": "hide some\n", "proba": 8.965504889602016e-07} {"commit": "49e2703ccb1ed3e028439ff0b6423b98ed5e220d", "message": "add min and max data limits\n", "proba": 1.4724545280841994e-06} {"commit": "dc7a4e5a418c43baf8255263ce334ecb4d3de1c5", "message": "Removed unused function\n", "proba": 1.386001599712472e-06} {"commit": "de63f609c94f244a27ceb0e07e91ef61c8321ce4", "message": "and increment the version count\n", "proba": 8.277596498373896e-05} {"commit": "607a904221383f4a8085ffdd0585f5ad9503c8ef", "message": "addressing a bug for packages whose version string includes a parenthetical.... (Really??)\n", "proba": 1.330058836401804e-07} {"commit": "8567f5ce9fb4defe44fd234b2ef793cd94150e10", "message": "Close temp files before expecting JLink to use them - this is required for Windows\n", "proba": 1.1892885254383145e-07} {"commit": "e81d7ad84f83c0107477602f6878cd3ee20d4593", "message": "variable update 2\n", "proba": 4.4292931988820783e-07} {"commit": "1cba45d54095be0740d817af9d08f3f14674e7c7", "message": "Return Address classes from the Geocoder.reverse() function for ease of use\n\nSigned-off-by: R. Tyler Ballance \n", "proba": 1.2633593371447205e-07} {"commit": "9608ce7f31fdd6f7aaba93a74b052d5f7fa51df8", "message": "Membership removal for testing\n", "proba": 1.2844297714309505e-07} {"commit": "c83d8eadb5834e34693a9d017074369f2161945a", "message": "renamed local var for clearer naming", "proba": 6.038136461938848e-07} {"commit": "1d9764bccede3eb51a6e9344ecfc126fa13a0b67", "message": "[fix] support bodyless requests\n", "proba": 1.8527245515542745e-07} {"commit": "9f0ead95976c379957faf7d3f02eb52bf80a2e17", "message": "Remove TODO note, since it hasn't been TODONE.\n", "proba": 1.3780761776160944e-07} {"commit": "7751e4bed8c0037c1c6454be2d624a1d5c114598", "message": "add deactivate_all to main view to stop stray spanish calls\n", "proba": 1.6813855552300083e-07} {"commit": "383aca2be0ecea3b59fc2ced614226e082118f13", "message": "Release Review Board 1.6 RC1.\n", "proba": 1.0479391221451806e-07} {"commit": "ea9b72255139e859d73e663e1b60b7e6e1f627a9", "message": "added helper methods is_comment and is_setting to Statement class\n", "proba": 6.926216542524344e-07} {"commit": "6b120bd78aefb7c0e0459bf2ec4967378ff32539", "message": "Calculation of intrinsic rate correction for a solvent.\n\nUsing Abraham's A & B values for solutes, calculate a correction\nto the intrinsic rate constant for a reaction in solution.\n", "proba": 2.603671589440637e-07} {"commit": "5cccfef57226d61dd68ea0ab53a677ae3e23db29", "message": "[core] disable fixed bot nickname feature\n", "proba": 2.7794314405582554e-07} {"commit": "26f561694497b4abbd2263cf358b44534ec82255", "message": "plugin/le: add new attributes on ConfigNamespace required by new certbot version\n", "proba": 2.2001228217050084e-07} {"commit": "5a2ca668ca6ac0f6c7ee0ef4e67fe1d5b1fe7a26", "message": "Revert \"release_tool: Add warning if not running from master branch.\"\n\nDoesn't go well together with new release repositories, that must be\nlisted correctly in the repo list according to version.\n\nThis reverts commit 9a24cea73962d6ad9beaa0bc4e2ce9daa3cc31d7.\n\nChangelog: None\nSigned-off-by: Kristian Amlie <505e66ae45028a0596c853559221f0b72c1cee21@northern.tech>\n", "proba": 6.796605589443061e-07} {"commit": "ceae1d317efa90134be27ccc576db51abc6dda0c", "message": "modify wsgi.py\n", "proba": 1.6002130678316462e-06} {"commit": "74e0067470e5f43afe6a3e8c3a436da803e367a8", "message": "fix enable_all_nodes to avoid transient disabling of all ws\n", "proba": 2.6264407892995223e-07} {"commit": "7b0d6e844a53bb28c15a53b69e0f5e7b557f8899", "message": "Cyrus: add delete_mailbox\n", "proba": 1.4766972071811324e-06} {"commit": "dfa7337d1b2da09a9b95767f81a36453e05a842f", "message": "Update api.py", "proba": 1.4854431356070563e-06} {"commit": "7fa311a8d0020e38f1c28e770aaced708494f992", "message": "Fix request/oauth request confusion in get_headers.\n", "proba": 1.1979739156231517e-07} {"commit": "55c72a5297244ba51fba5ebc5b71efc3001e0dd4", "message": "Add Beam, Bead to main module\n", "proba": 1.6179275519334624e-07} {"commit": "21100a387796f8090eacfd463095a76db96e15dc", "message": "We don't update nexthops when responding to a ARP request/ND solicit.\n", "proba": 1.0363230984467009e-07} {"commit": "b148a78c81b8a26c1ab9f4da495c541d4c93f383", "message": "Fixed for favoriting other file systems.\n", "proba": 1.0641920766829571e-07} {"commit": "10bebae5a9513cb3c481a47dc4079948d1ec7d65", "message": "Reduce memory footprint of feature and label arrays\n", "proba": 1.1811744116130285e-06} {"commit": "c16675643d04b88730f25aa2b16fc8c8d43d775f", "message": "csvjson: Pass json_kwargs to agate.Table.to_json\n", "proba": 4.59992088508443e-06} {"commit": "37eafe0477b1748ffc8c6ec63539948b61fbd3d9", "message": "Extract geometry_for_row() from feature_for_row() in CSVJSON\n", "proba": 0.0012533623958006501} {"commit": "f3e553fe2988157b1dec70fc8007e980b9c2ed41", "message": "moved the semiadditive stuff into a separate method\n", "proba": 1.7204869209308526e-06} {"commit": "34a2ffcc5c473f11d69ea8559a8fde38d7227d4d", "message": "multiple condition fix\n", "proba": 3.191672988123173e-07} {"commit": "2721cde6f0e90329b0ac65ed3db836a30c8cfad8", "message": "Fix _getSettingProperty up\n\nSeems to work again now.\n\nContributes to issue CURA-2407.\n", "proba": 9.793630084686811e-08} {"commit": "4cc0026af3cd1cf33f5ccb8a3cf6f4614037aea8", "message": "Minor rework in response to code review.\nContributes to CURA-1504\n", "proba": 1.1337917982245926e-07} {"commit": "d8eb6c16652f59ad8d7b0e1c8482ca4fe814a7f1", "message": "formatting issues\n", "proba": 2.089067265842459e-06} {"commit": "3e51a5467bccfb814ac36af976dc64b85af94b85", "message": "Updated Czech format strings. Thanks Honza Kr\u00e1l. Refs #11637.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@11975 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 5.488021997734904e-05} {"commit": "84b0376d643422dacb054a4109a98fcbc9a1ca45", "message": "Update style\n", "proba": 6.069288929211325e-07} {"commit": "864786ddfd54cd122fcb8354537ece923c2e0f23", "message": "Fixed #13863 -- Corrected decimal separator in Swedish format module. Thanks, Ulf Urd\u00e9n.\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@14128 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 3.447979179327376e-05} {"commit": "b5a1eb0e232905dec9fdd9bd34e7009d5c248005", "message": "Refactor absolute_download_url & get_download_url\n", "proba": 2.068257117571193e-06} {"commit": "f1755012388e11efcd11e67d940f406af7dc8c43", "message": "lpc17xx_can.py: improved documentation\n\nSigned-off-by: Neil MacMunn <822ec91a7ef82248fd36162ca8ac3283eba70848@gumstix.com>\n", "proba": 1.1053759862988954e-07} {"commit": "d9f404c9a3fe25af6f4a75cf351867dd458ded64", "message": "Fixed #1985 -- Got CurrentSiteManager working\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%402989\n", "proba": 3.3339276228616654e-07} {"commit": "e48f38fc47173ab8a327050e31aa091ffe479a3b", "message": "Always show some events on the category page\n\nIf there are only past/future events, enlarge the currrent events range.\n", "proba": 1.0403851291584942e-07} {"commit": "783a93be560128a4e248f5a1341f1ab267ef53a2", "message": "Removed one more legacy bit from [3855]. Refs #2827.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@3868 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 4.292262929084245e-06} {"commit": "17695675d9393e977b92803af39fd6d44d4de047", "message": "simple_loop now supports a callback for termination\n", "proba": 1.65134636631592e-07} {"commit": "205cb040d4158948433aa85535dfcbacccbada01", "message": "Removed some stray debug that was accidentally left in r3830.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@3831 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 3.541483238223009e-05} {"commit": "d465c4bc4c523d12f47b941de6f2a8964b80d1ec", "message": "Added logging for standings and schedule retrieval timings.\n", "proba": 1.0585541332375215e-07} {"commit": "9d1f93844fc11f4cb3393fcdf79c5e0b456b38d9", "message": "Remove print statement.\n", "proba": 4.641828127205372e-05} {"commit": "106846bf67ce8ccb04befdeaf90408b425852c18", "message": "Add ex_clone_node method to vSphere driver.\n", "proba": 1.1607032490701386e-07} {"commit": "2db6ad36ede486fc22a1d331058ad5f7f99308e2", "message": "100% coverage\n", "proba": 1.3092908091039135e-07} {"commit": "c49799ea18926cc26fac89bc9f6e62f2794f5c0c", "message": "ModelFlux can now handle break_lambda as a numpy float or python float\n\n", "proba": 2.3315000419188436e-07} {"commit": "6fb84473f4a5a13b80c283106bc091e9bdbba9bb", "message": "remove temporary more permissive _go_inactive for shutdown sequence in mission manager tests\n", "proba": 5.8925224948325194e-06} {"commit": "422f38d6be3569734423ced9b54fea90e0ebf799", "message": "Wrote CornerPlot function to... make corner plots\n\n", "proba": 1.6185155971015774e-07} {"commit": "d030c786b9f1a2fca9ac78fd313fcf833bc33094", "message": "add nice exit message benjamin thoughtfully requested.\n", "proba": 1.0416042073302378e-07} {"commit": "1f21e5cb72cc3e345e8cd195d7e9fcb66057f8ba", "message": "[trivial] Fix typo in docstring\n\nChange-Id: Ie142198b868d91f386319bdc253f7be34dedc55b\n", "proba": 0.9999703168869019} {"commit": "4d7c040bb5802ec1e79a6b36abbb69c02b381d21", "message": "updating filtering\n", "proba": 8.942679414758459e-07} {"commit": "b7d3db6e14cf40945d1988608bcd4a1197e44cf8", "message": "pornolandia crawler\n", "proba": 5.541369887396286e-07} {"commit": "587218d6b7351cd3ec7b9121acd60b365432ea4a", "message": "Only parse node_id if one exists", "proba": 3.6831031025030825e-07} {"commit": "7189438a88b8718cd72146216d2fb26b5fd5dc27", "message": "Bugfix for ICT, the beta distribution was using x_in shape rather than xt_in.\n", "proba": 1.140729750659375e-07} {"commit": "ad6f95b8b7ad5cfe7173380507bc072d497c4866", "message": "Added getAvg method to HARKobject\n\nPer CDC request in Issue #81, HARKobject now has a method that returns\nthe average of a requested attribute name. If that attribute does not\nexist, it returns NaN. Method accepts keywords to be passed along to\nnp.mean (axis, keepdims, etc).\n", "proba": 1.0543870132551092e-07} {"commit": "a5b9dd51c724b60ed3140bd068a433aae98fccd0", "message": "Bugfix\n", "proba": 8.038198870963242e-07} {"commit": "d32adc7f11731f747114b27fa5ad359d66c4cb63", "message": "Fixed file reading/writing on Windows\n", "proba": 3.843186675567267e-07} {"commit": "39597149e90d6f63d73e069c174a169f79eb2e46", "message": "Fix return value to match docstring\n", "proba": 5.212297401158139e-05} {"commit": "a91a41dba1348e2019a86cc14bb0726044057932", "message": "added iterate_directions util\n", "proba": 1.8133753201254876e-06} {"commit": "4d4e18b9447a34716d30eb7cb1a28a609ff2ff7e", "message": "Adding quick test for GUROBI_LIN.\n", "proba": 1.133721525548026e-07} {"commit": "719904480944994af31160e96c2e2a5e6e99f995", "message": "removed all checks from within specific config handlers\n", "proba": 3.573928211153543e-07} {"commit": "4d82d1412c015535a5380e14fa6eb2acffe30577", "message": "fix check for frr babel wireless config\n", "proba": 1.6130898927713133e-07} {"commit": "3ee5e7ca4d4750b7018b28eb35a9b90015e3d9c8", "message": "fixed assignment error on static directory\n", "proba": 3.673305855045328e-07} {"commit": "b8e041ff3e91f64665c4750acb84a20bc5383db9", "message": "Rechunk strategy\n", "proba": 4.2460470695004915e-07} {"commit": "f6746d1e5be0c8e4d7564471ed87f103cd7f2873", "message": "Correctly handle and store comments.\n\nSigned-off-by: Lizhou Sha \n", "proba": 1.1665959220863442e-07} {"commit": "dede603e348184cebaa25fc27d7711fa7bcc878c", "message": "On edit submission redirect to the post in question\n", "proba": 1.411326735478724e-07} {"commit": "2c79c2750a80e95c092cd09c6673b180aa85d77b", "message": "update for Travis CI\n", "proba": 1.5188531676813e-07} {"commit": "7fe30f1a801eb10d54e7ae1e92943cb297503742", "message": "first step towards adding help\n", "proba": 2.5882280851874384e-07} {"commit": "73dd8add51cc1e364bda00de523141d29447ce45", "message": "Cache only required rows for speedups everywhere\n", "proba": 1.2299273066673777e-07} {"commit": "10824f71e9fe94d0e2d304195a2ab079e1d7dfcb", "message": "Refactorings and fixes\n", "proba": 1.5299805511403974e-07} {"commit": "c5505ab4b60033785e9f39e9e22f9bfe790cdb6a", "message": "add menuIn and muniOut method to log class\n", "proba": 1.8123175493656163e-07} {"commit": "9c27f8757849b10361c77dca2225e5aa6b16e102", "message": "2.1.0 Beta 1 - Fix issue #51\n", "proba": 1.1985888193066785e-07} {"commit": "4d6c13e1b08e833869debee4d5e856966bac8724", "message": "added flag_cmp property\n", "proba": 2.1195737076595833e-07} {"commit": "995ccbad6df73a9a68b0e6c151b2c9739e0df657", "message": "tweak memory dump format\n", "proba": 6.852172305116255e-07} {"commit": "5ae537136a308a970fdd37ace3ffae2104c7a552", "message": "automatically update first letter to lowcase for lwc name\n", "proba": 1.076364355867554e-06} {"commit": "675609776487e1b30f8860b3543d75be87b868bd", "message": "Update to the documentation and use of the tag parameter so that things are more consistent\n", "proba": 1.6140485570304008e-07} {"commit": "8b7e0f6e3bcadc025c39a2f5b3123cbf82269112", "message": "execute mode for synthesis.py\n", "proba": 6.127984306658618e-07} {"commit": "a4930c7ae82aeff0ff408af187fd1cfbad307a30", "message": "tag cloud MVP\n", "proba": 8.171886634045222e-07} {"commit": "177a629e545e6bf58c84e6c95a584e879ba13b4a", "message": "changed deprecated form of raising error in new_omfread,\n", "proba": 1.1330816107602004e-07} {"commit": "97cac861c4ffdfbe54d6ffd93e206665e5557dff", "message": "Adding an explanatory comment\n", "proba": 2.3049504704886203e-07} {"commit": "a71c3150b5ff06a283a7e8103d2b25f8bf614b7e", "message": "Update joemonster-addon.py\n\nadd dailymotion plugin handle", "proba": 2.949117003936408e-07} {"commit": "e92a9c83104fbbc8835a6c0198f99537cd69fd41", "message": "modify\n", "proba": 5.782343350801966e-07} {"commit": "5022301fc59bc8bc5e704c3484c5383e72f0ab0c", "message": "Adding timeout\n", "proba": 3.2485779684066074e-06} {"commit": "082ef7efbbd8fc5ab7fa1a5c66f69e7ce300aa93", "message": "Nuke node creation as callback\n", "proba": 4.08807153462476e-07} {"commit": "a3c1baf6a1d95e56910c89d126aeb7974ed176ff", "message": "Deprecation warning for property\n", "proba": 1.4632293243721506e-07} {"commit": "1a7353de9f6567c9bcb891382a8579230ddce995", "message": "NR-597 : Unpublished posts are trimmed\n", "proba": 1.0286977669693442e-07} {"commit": "5b0396259e9a1fc934d74aafd71a2b93abed60f7", "message": "NR-357 : Implement an option to unpublish a post without deleting it\n", "proba": 1.7395844054135523e-07} {"commit": "489399c6f161282b96f2f32ec0d726f1eaaf7f4e", "message": "NR-536 : On post insert with publish time set the order is not set\n", "proba": 1.30436305312287e-07} {"commit": "d311b13d60dcc5718c44aaff5ce814d9de328497", "message": "convert first worker process to multiprocessing\n", "proba": 0.9999994039535522} {"commit": "3b45ef5561f8d7cf8f005cca78f45c4641e365ce", "message": "fix(michigan): Michigan supreme court tweak\n\nWe found a handy api but it appears\nthe wrong key was being used to get\nto the supreme court opinions in the\nelastic results.\n", "proba": 9.773084741482307e-08} {"commit": "95c84ec4f822cdde544fb043e6c097173f3e774b", "message": "Enlev\u00e9 la d\u00e9pendance du module vision au GUI\n", "proba": 2.3374956015231874e-07} {"commit": "3331fba908f658312c7b04c71999576c8241755a", "message": "Remove unneeded imports.\n", "proba": 3.293885981747735e-07} {"commit": "b77a8f43d4513d1948a799576f3b5197653a7909", "message": ":bell:\n", "proba": 1.115290842790273e-06} {"commit": "5ac83860719f1d5cf914016bdfe8f0f35bc82539", "message": "remove unused uniconvsaver.py (Fix #725)\n", "proba": 1.1307154323958457e-07} {"commit": "8f1de0bc15e5a1ce00914c5bb102370d83397f0f", "message": "Parse \"diff --stat\" command\n", "proba": 0.9999986886978149} {"commit": "242cba97d21a275be1734f9cdaa5f14a498da28e", "message": "prevent local arbitrary shell execution from rsync URIs\n", "proba": 4.269822397873213e-07} {"commit": "f9817fa3e5ecf50e792fc47f61853b29f09d749b", "message": "\u2728 Add to_disk parameter and make writing to metadata.json optional\n", "proba": 1.4183336816131487e-07} {"commit": "2fba915d5100dd92eac1877c672fd8c3de97e3eb", "message": "Update conf.py\n\nIncrement version to 4.8.2", "proba": 5.244178282737266e-07} {"commit": "929577bc4d8fafe5aa6dbf409f916c6c53276e22", "message": "mk3: fix deprecation warning\n", "proba": 3.676295250443218e-07} {"commit": "2b8f200aea7c982ce0ef06d303eed90fe1f2590f", "message": "Update conf.py\n\nBump version to 4.8", "proba": 1.760370480496931e-07} {"commit": "bdd3d83c430f4643dfe47e550f5be1d9a0e6de46", "message": "fixing configsync stuff for upstreaming\n", "proba": 1.897670216521874e-07} {"commit": "f2582f6388d1e4c76b80f1eac9894ce30a385c83", "message": "mk3.attic: filter-out source-output-by-* stuff, shorten common sink-input-by-* prefixes\n", "proba": 7.396483852062374e-07} {"commit": "d7a664a3adce5ce02a5da2fbf9b86d6a45bc2e1b", "message": "Version 4.2.3\n", "proba": 6.085783752496354e-07} {"commit": "cc9a17dba562d7a903fcd72f6eb9cb7852a0bd53", "message": "pango set_size expects int\n", "proba": 7.79475703893695e-06} {"commit": "3da656f42fdcefdefb0bf10f9e048572f101f876", "message": "Removed unused import from geozones admin\n", "proba": 1.4893053901232634e-07} {"commit": "0d0476f3ad422a09b14115cb79a195d33af9ba07", "message": "Added create plan\n", "proba": 1.4338282028347749e-07} {"commit": "686ee442e861ba911e85b40f9ffc0d89d5edffe6", "message": "Update traffic.\n", "proba": 2.200137458885365e-07} {"commit": "bb049c509daa7678fd36dbc65a8d26a6421a8083", "message": "Make tests pass after the last change (shorter default steplen)\n", "proba": 1.243787011162567e-07} {"commit": "89934826ca56699144708b2e01f00f1679f65426", "message": "fixed error in chypre\n", "proba": 5.524548214452807e-07} {"commit": "17134bb9b456eb201e5f3892e83e242b4e6cb3d3", "message": "Removing commented code\n", "proba": 3.527655394464091e-07} {"commit": "4d99b6cdc61da930cf67ff4969e14adbdefe3ac2", "message": "better particle support\n", "proba": 4.033210245779628e-07} {"commit": "4c9a11ceeda3949726aa9bc835f792907012dd9c", "message": "Moar logging off\n", "proba": 1.7582547684469318e-07} {"commit": "ee90638a6e1cd8206b7e072bb86e9a819c634bbf", "message": "Require user to be logged as the user to prevent unauthorized access\n", "proba": 1.6501434174642782e-06} {"commit": "912d89dca5823bdca749c57cbd343cf6b28bc8b4", "message": "trying to fix #1609\n", "proba": 1.8371198393651866e-06} {"commit": "bc2c783ebabb6e9c532ea8058bd9b79a4ce227cd", "message": "Added str() around device.port print statement.\n", "proba": 1.165967518090838e-07} {"commit": "0cec99f77e6e69fcbe4552fa044c9f1e062170e3", "message": "Update the protocol grid view on enable/disable\n", "proba": 3.654911608919065e-07} {"commit": "44104163f15d0c1928c35fee30905cc12bf98dd2", "message": "Load hgfs config values as strings\n", "proba": 7.225282274703204e-07} {"commit": "42792e978c977407412372c64b2e535a27d48afd", "message": "Extract common base functionality for storing xblock fields in the relation db\n", "proba": 9.313079090134124e-07} {"commit": "727718e90dfc3d21b6c387005956e4f2183ab63a", "message": "Use `exc_info_on_loglevel` instead of `exc_info`\n", "proba": 2.5085034849325893e-07} {"commit": "aad522cb78366368a61a1745b0df3f497088d64e", "message": "Clean up selection table rendering\n", "proba": 3.879983978549717e-07} {"commit": "30081d276ce71bf88ef868d68d80c75bd42e9158", "message": "Added mjd2date() to parse.py\n", "proba": 1.758237999638368e-07} {"commit": "300bc84e3aeb8005fd662efeaa886946331cdbe7", "message": "Check for existence of queue first\n", "proba": 1.6656159118610958e-07} {"commit": "274e206b9758d7c96b08587317d88957b77228da", "message": "Set python_shell=False for eselect.py\n", "proba": 0.9998577833175659} {"commit": "119efcb0159e6f6c630b119dff93abea672f8cfc", "message": "modules.genesis.bootstrap(): pass repo_url arg thru to _bootstrap_deb()\n\n************* Module salt.modules.genesis\nsalt/modules/genesis.py:36: [W0613(unused-argument), bootstrap] Unused argument 'repo_url'\n", "proba": 2.561975804837857e-07} {"commit": "fdcb2af61d2208a6416bf860fc3b38e5da4eb9d3", "message": "Add function to obtain specific user info from MongoDB\n", "proba": 1.626174110924694e-07} {"commit": "cd5905f7ec27207b650c7a48791dc66f2d2b8e85", "message": "Sleep before trying to resolve instead\n\nSigned-off-by: Pedro Algarvio <09cbe6caca393bd5bff64d4c1f1ad660b906a807@vmware.com>\n", "proba": 1.2057772380558163e-07} {"commit": "00748427112a889a1b67442ed6eb30e2300ad373", "message": "Prevent all `publish.` calls from publish calls\n", "proba": 0.9999949932098389} {"commit": "65574fc37fa052e6841b09caec2d0426bc666311", "message": "Fixing spacing issues the IDE was having", "proba": 2.2691180845413328e-07} {"commit": "5f6bce6473a660f25d3469c6f831b909e63c3a17", "message": "added service support for opensuse\n", "proba": 1.1784139530846005e-07} {"commit": "ec0f9c5ea483a9ac6c381d1406fbd332dfc80916", "message": "mlm log\n", "proba": 1.2264079487067647e-05} {"commit": "20c2c91bba17da0f3ccd4f922ce97f6aa14b9dd8", "message": "daemon-reload on call to service.avaliable\n", "proba": 3.4391806025269034e-07} {"commit": "ae5796a075c5c0c8799178ce5b6abf4b83467e3e", "message": "Ensure that this command doesn't fail randomly.\n\nSometimes when running win_pki.py.import_cert will return a help message\nasserting that there was an argument error. This is because the\nunderlying json coming out of PowerShell might actually return nil\n(None) so the .get() with a default return doesn't properly protect\nagainst a None getting iterated.\n", "proba": 2.0455131277685723e-07} {"commit": "6b72fcd04dc7046578645f870c495c51d94dc275", "message": "Use print wrapper to avoid IOError tracebacks\n", "proba": 6.830596248619258e-07} {"commit": "5fdd866d12451eb765f808d7e0cdfbd2f5bdd210", "message": "Switch __salt__ to use the dot-lookup subclass\n", "proba": 8.31569832371315e-06} {"commit": "d618464ae70ee121807d09f02f50d53f71d96cfe", "message": "INFRA-1593 - duh, fix stupid bug I introduced\n", "proba": 1.3946662136277155e-07} {"commit": "f6900b7c66e1e5a038bf434d9e717c2c57c20b95", "message": "- more pylint fixes\n", "proba": 1.126389861383359e-07} {"commit": "07e89cc7b3167d731ad041a481fa9814cb45062b", "message": "- pylint fixes\n", "proba": 1.2187253162210254e-07} {"commit": "cc1cd22471f39f9c3c56d105486feebd336a1fb9", "message": "improve detection of changes of docker.running\n\nIf a container is running with an outdated image,\nthen we stop it and destroy it, before create and start a new one with\nthe same name.\n", "proba": 1.159868929789809e-07} {"commit": "7c24a3d57d09ea38d5b638ed3e3bd4f85aba650f", "message": "some little fixes\n", "proba": 1.7715414912800043e-07} {"commit": "c9703ff6c00f8063c1044ec0eed5fb94e5dbb93e", "message": "fixes for lint and nox pass\n", "proba": 2.0778917075858772e-07} {"commit": "1fc6fd8fbeb6ef9fa6d7d79f7b886d6d81822f00", "message": "Troubleshooting create()\n", "proba": 7.199310516625701e-07} {"commit": "b9dd9f2d91dcf0222315b04e6a7290f28c61b12c", "message": "MansOS IDE, fix recently used menu not functioning as expceted.", "proba": 1.0098713687511918e-07} {"commit": "3f3eb424c29d60ac8ca5da4b9309c406aa92c8bb", "message": "FIX: cast port number to int\n\nThis can be a problem if reading configuration from ENVs\n", "proba": 4.076987067946902e-07} {"commit": "c193b717ebf1928f51230865e6769c5e26430535", "message": "Fix return value parsing\n", "proba": 0.0005936244269832969} {"commit": "405cd6914aa31464ee94d7afb9598e3e3feb76c3", "message": "Update GameTag.COLLECTIBLE naming\n\nFixes #414\n", "proba": 2.898053423905367e-07} {"commit": "5b20f3abb2d6961f2d977f256ad785f9042a14b1", "message": "ARCHIPEL - CENTRALAGENT Hooks\n", "proba": 1.7729712453729007e-07} {"commit": "d5b04adaf1d39b65967bb6f4976eb218a76f58ab", "message": "tidied logging\n", "proba": 5.862170837644953e-07} {"commit": "fb06a3b244fd50b25926aa41b9ac8b433e621004", "message": "docstring\n", "proba": 5.97681209910661e-05} {"commit": "b1f1371108e57578e7263adb2be0e30049a1f128", "message": "Fixed some debug prints\n", "proba": 3.616032415720838e-07} {"commit": "503d16706f7de9352d7d4957fd8a4f913c4a5696", "message": "Added cloudflare func to flask-limiter.util\n", "proba": 3.3320458214802784e-07} {"commit": "dfff93d508a5468b31217d8583e19a85b9775ae4", "message": "Some small changes to make compatible with a \"non-integer pk\" patch in\nwtforms\n", "proba": 2.510884939965763e-07} {"commit": "78a43dcf3f31511801d9b91fec4415e8df3b6534", "message": "Not a good idea to generate a new id everytime.\n", "proba": 1.68801292943499e-07} {"commit": "250a5051ddaf924e7db0e00f4e39c409179a8590", "message": "fix missing Session._creation_time that was removed by accident earlier\n", "proba": 3.2380028187617427e-06} {"commit": "6ca79a53e5eb5732786eeafb431acff35980dd8a", "message": "check for empty list of cbc_times in _build_empty_record (steady-state case)\n", "proba": 1.6222072929394926e-07} {"commit": "bde79880ee761f9df8b1284bd00c402cfcc7e3c9", "message": "enhancement: major: multiple histograms\n\n1. histogrammer now will process multiple histograms in one pass\n2. The histograms can be of less than 8 dimensionality\n", "proba": 0.9985519051551819} {"commit": "b18d2dfad4edb8c9768d7ee8118da10509725b1c", "message": "Updated \"get_dataframes()\" method to accept \"names\", \"zones\", and \"net\" keywords to pass to the \"get_budget()\" method when pulling budget as a DataFrame.\n", "proba": 1.1859790305379647e-07} {"commit": "3ea2a55280fbbe056bad45b0f387ee9a4772a644", "message": "Added \"net\" keyword option to \"get_budget()\" method to compute net budget terms.\n", "proba": 1.1822975665154445e-07} {"commit": "d8efa18cd45c16490a73b1447a0dca11289466af", "message": "add version and author\n", "proba": 2.3735157128612627e-07} {"commit": "04c44d0134c378ec1132beb7e548523d775344f4", "message": "Fixed VOC2012 evaluate (#3553)\n\n", "proba": 1.1718064740762202e-07} {"commit": "4cf9c04faeab819e85c71167a045aa94ea705b64", "message": "Extracted search terms safely to fix /api/tasks\n", "proba": 3.8893568898856756e-07} {"commit": "e89717db20a364b6f8ad9d3614280a32ef70b844", "message": "Bazel: Portable way to guess whether root directory is reached\n\nChange-Id: I582aca7d9ba8a8b17e6d54580490f242dfe0926d\n", "proba": 3.580123802748858e-06} {"commit": "634b6fc61957fa374f6920d3cfbb14a73e4fb49a", "message": "case insensitive sort\n", "proba": 0.000111809276859276} {"commit": "88fb7256bd508ecbd8da68a10e3b865d9f60198c", "message": "added handling for argumentless Java constructors\n\n--HG--\nextra : convert_revision : svn%3A79c32731-664e-0410-8185-e51b9e89f9fb/trunk%401037\n", "proba": 4.087892193638254e-07} {"commit": "1a7fa991e28eefd8a5015f199d105748fb5e0de5", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "2fd045e85f3625f71abe9e5a86aa3d02dc280bb2", "message": "CPT: Disable fancy box printing on OS X, it's breaking Travis now.\n\nPerhaps the file encoding has changed?\n\nSigned-off-by: Vassil Vassilev <0b291c0bdb4e22c8b7705ceedf8e168ff73f20e8@cern.ch>\n", "proba": 4.742878445540555e-07} {"commit": "8747000532587e69a59bfc78ccb123eaf29e2a8f", "message": "Fix timeout when not detached\nAlso fix how timeout kills subprocess on Linux and Mac\n\nReview URL: http://codereview.chromium.org/115042\n\ngit-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@15466 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 1.7987266573982197e-06} {"commit": "7667d4e8d69ed1ef1ac9df93d17c139e96593e02", "message": "reabstracting yaml parsing for code reuse and adding ROS_PACKAGE_PATH to rosdep.yaml searches\n", "proba": 2.6976579192705685e-07} {"commit": "644933e778173d62883dc48a934ed1808b90679f", "message": "improve benchmark script\n\ngit-svn-id: 4f0141143c3c635d33f1b9f02fcb2b6c73e45c89@8978 a83610d8-ad2a-0410-a6ab-fc0612d85776\n", "proba": 2.398496235400671e-06} {"commit": "19b9bc2a5f0cfd3550ed887a0ec9343455a4edf4", "message": "Add except for UnicodeEncodeError to feature_merging", "proba": 2.3883703192950634e-07} {"commit": "ea4aa7e7ec997f439c1b0a3258902e463578aa15", "message": "Update Android build file for SkQP to point to ndk compliant libjsoncpp\n\nBug: b/74442448\nChange-Id: If5e0e349cdb13352d580e55b0af26c908cc80003\nReviewed-on: https://skia-review.googlesource.com/115605\nReviewed-by: Greg Daniel <39df0a804564ccb6cf75f18db79653821f37c1c5@google.com>\nCommit-Queue: Derek Sollenberger \n", "proba": 1.8321667027976218e-07} {"commit": "e8bc07c5c88d6727b914afff48b957942210aa97", "message": "Do a little more to clean up in the event of an Exception\n", "proba": 2.1535693122132216e-06} {"commit": "b523594f6a50315f705ae077ebeeadf070bc3c62", "message": "Fix burning problem that revealed information\n", "proba": 0.0002522874856367707} {"commit": "a91e816debbefe04706bec0c8622a2c2a1834b90", "message": "Small fixes\n", "proba": 2.0434912073596934e-07} {"commit": "47e7f51b01f468fb4862f2225fe4c4a1c054c3f2", "message": " add groupsummarys and groupsummaryd\n", "proba": 3.615997741235333e-07} {"commit": "27dc321737a7db6ee4605244aa6d82726b1fd861", "message": "Added the findcorr function in the 'Data cleaning and exploration helpers' part\n", "proba": 1.1845366998386453e-07} {"commit": "28b954b468beb3b2df6955a36deb2b94ca6b4d71", "message": "Specified all fields in model forms, part of issue #25\n", "proba": 1.146293726606018e-07} {"commit": "e72ed172fd911ccb1641e942b7c6a5ccc129b505", "message": "started fixing potential field generation\n", "proba": 1.7661803042301472e-07} {"commit": "976b1bef4b5a7e8420b165b591b06662d03f2f9d", "message": "parc added missing curies for swanson.org\n", "proba": 1.2969280760444235e-07} {"commit": "82ef49323e711cf55c94ac213e3f978036b43b31", "message": "Revert \"Added a random seed parameter to control GaussianCloud patterns\"\n\nThis reverts commit r11891.\n", "proba": 1.022344662260366e-07} {"commit": "d43459845d94c186fb671a88d4badf465abe731b", "message": "Added apparently required import statement.\n", "proba": 1.0631148228412712e-07} {"commit": "138c6d872535bfcd7e5d7bec85fb04d3eed06f6b", "message": "Have same signature for block and step function.\n\nThis prevents issues but has no effect.\n", "proba": 1.0341155842752414e-07} {"commit": "94015b9370800adbfbbd3079786d997d264e9071", "message": "Added \" many\" method to stats module\n\nmany takes a list of statistics that the user want to know. Usefull for\nretrieving \"many\" stats at once.\n", "proba": 1.0923250215455482e-07} {"commit": "0a5deb771274e9f02b0aaf40238fe7e0b8fa261b", "message": "Remove self test and Python2 from __future__ compatibility import to work with Micropython; moving tests to separate file\n", "proba": 3.132123254090402e-07} {"commit": "0f7c98b9bd655a16b20753310ef9a5436cf1e028", "message": "remove debugging\n", "proba": 6.531336839543656e-05} {"commit": "654cdeb15a75c593df31ba011c777cae4cb63c4b", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "827d4a9ed0a853f434d7fa0df645aba253844447", "message": "phylab finish\n", "proba": 4.743991155464755e-07} {"commit": "ca3034489089988df59aa8415016d0c28fa12c24", "message": "better log message for searching\n", "proba": 1.4251538686949061e-06} {"commit": "67cbcd2fa6a02724bb720546eeb7492fa4af9a3f", "message": "work on demo.py: sample running\n", "proba": 2.8452760147956724e-07} {"commit": "5408189b681b2cfdad41bd8dd746d3e40449a8bb", "message": "1.0.2dev: When the //None// milestone is selected for tickets to be retargeted to on milestone close, the ticket milestones will be set to `null` rather than the empty string. Refs #5658.\n\nThis makes the behavior consistent with tickets retargeted as milestone are deleted. Refs #11018.\n\n\ngit-svn-id: 50cd48c816abc7a9f40e8e03a4277466cb30a3e4@12191 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 3.077931069128681e-06} {"commit": "c1e525b3f8ccd7d942f875bd64e108bc5717de76", "message": "Implement printing of results with recall and precision\n\n", "proba": 1.3284386568557238e-07} {"commit": "e44b1ee733b72b24ff7132c0fb15de3b011574b7", "message": "add --pidfile option to tracd (fixes #2807 -- thanks to exarkun for the original patch)\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@3456 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 1.0062035471491981e-06} {"commit": "4968e98343a69912408143e2434ebf83590cc218", "message": "Reformatted the `Formatter` to make the regular expressions easier to maintain. No semantic changes at this point.\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@2394 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 0.9998564720153809} {"commit": "58b6a115cdddaf89f0e5ce898bd67a103a03e9c3", "message": "forgot this\n", "proba": 3.954928615712561e-06} {"commit": "8e240a2e1c3034537abb7857914ede38d78c4282", "message": "Strengthen docstrings for metrics module.\n\nPiperOrigin-RevId: 318828720\n", "proba": 3.6288489013713843e-07} {"commit": "3a1638f0d20cf6887d945f6f9c887fa77565f4a6", "message": "make equations more beautiful, better input unit checking\n", "proba": 6.998964181548217e-07} {"commit": "3761344c2ef7b2359fa39ebd7f3bd554b34c41c1", "message": "Quick work-in-progress commit\n", "proba": 1.6120441159728216e-07} {"commit": "b62c4552487e10fe73b49b034d783f8a3998b41f", "message": "Add add a related_name for ProjectUser project ForeignKey\n\nThis will allow to easier reference the ProjectUsers of a Project.\n", "proba": 1.110449687757864e-07} {"commit": "a8b0baf4e1a3e67e64d1064b3bbffa9686b69863", "message": "Updating trilegal_model_grid\n", "proba": 1.1328129403409548e-06} {"commit": "cc2f7a875a90837ae654a7e2057849113dabc620", "message": "Hotfix: unicode\n", "proba": 0.0025432028342038393} {"commit": "984183eb26ea6eb8278b5d271788b71526c55923", "message": "tweaked compressing handling\n", "proba": 5.861511453986168e-07} {"commit": "5d78296d20dacb45070e10fea39413af2a6b21ed", "message": "Making nox skip unchanged samples. (#327)", "proba": 1.280911732237655e-07} {"commit": "de704e14cf208a4745a2742ac30afabbb075770b", "message": "Made set default values for course_review and professor_review in user_course model\n", "proba": 2.613570302401058e-07} {"commit": "37e0f363d42332fcfbc79489d4e9040b904e9c07", "message": "Making a `nox -s default` session for all packages. (#4324)\n\n* Making a `nox -s default` session for all packages.\r\n\r\n* Using \"default\" `nox` session on AppVeyor.\r\n\r\nThis was 32-bit or 64-bit Python can be used, depending\r\non which is the active `python` / the active `nox.exe`.\r\n", "proba": 1.2585252306962502e-07} {"commit": "517ab094325026e8c025fdec490830f546e88ecf", "message": "Attempt to allow learning for relaydomains.\n\nsee #38\n", "proba": 1.356421250875428e-07} {"commit": "bf9d64fbd85267a9a86d021ad4e1f0b9ddbc1b03", "message": "min period for multiple transits\n", "proba": 1.0174517228733748e-06} {"commit": "52905d458b4d646e83c650a4dd6560b82d09cafa", "message": "Allowing logging system tests to fail. (#3691)\n\nThese hose our builds.", "proba": 9.978204928984269e-08} {"commit": "03a76902a6725f62ea742fd20ed8ca19017ee721", "message": "use numpy.random.RandomState to avoid seeding the global numpy random generator\n", "proba": 9.742670954437926e-07} {"commit": "a2fb7186d6e865715b79f9c6f66fa7c49cc52bcd", "message": "TODOs re draw detection\n", "proba": 1.571029173419447e-07} {"commit": "4d4964b6e090263efba25074b1b8c27d9210bae2", "message": "PEP8 poll app\n", "proba": 1.489282652755719e-07} {"commit": "df4effffb6b93c98936738aa2a08417fc123b9cc", "message": "Updated obp.py: userId -> userId, username -> username\n", "proba": 5.56645090910024e-06} {"commit": "904143fb870d83669f2f7effe136e0d10362c0c7", "message": "BUG FIX: Set results to player when using outcome field\n", "proba": 1.7390767936831253e-07} {"commit": "cdc53dfd08ddbd5f283a7eb9370459356cac64d2", "message": "Added logic to populate new fields in ScaleFile at time of upload\n", "proba": 1.6179399153770646e-07} {"commit": "f23a28d10b1e9a3009322bdb8da6be64b654e701", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "8c7111c30d4eeea01e2691b3376ab9ad780a9249", "message": "fix bug for length of vals\n", "proba": 3.4212081345685874e-07} {"commit": "1121889e105df9be70f84447d726bd4c9afe3e50", "message": "changed script to class to ease unit testing\n", "proba": 2.1314237130809488e-07} {"commit": "10b3aa5b1f7ee893718ceb57d258e1a1c271511c", "message": "Hack around Apple's broken chmod patch\n\nSee http://bugs.python.org/issue13315\n", "proba": 1.5195023195246904e-07} {"commit": "4ec847834ab91dad4b0fafbcd4a75244085f81c1", "message": "Def dump update\n", "proba": 3.4453063335604384e-07} {"commit": "9327a4db389df52314b7382b64a74e8eff3f3da7", "message": "Simplify config file handling.\n", "proba": 3.492523887871357e-07} {"commit": "dcbd1bec4d14438144b2a1d5db86830a93744e80", "message": "Fixed a typo.\n", "proba": 3.9507861515630793e-07} {"commit": "3fc9daeee36e060b6f458c2fde2b0530712ffd8a", "message": "Bug 1282123 - Add a mechanism for the blame generator to operate on other branches.\n\nThis patch adds a BLAME_REF optional environment variable\nto transform-repo.py. If this environment variable is not set,\nthe script has exactly the same effect as before, which is to\nread all the commits in the blame repo starting from HEAD, and\nthen add new commits corresponding to everything reachable\nfrom HEAD in the source repo.\n\nIf the BLAME_REF envvar is set, that ref will be used instead\nof HEAD for both the source and destination repos. Generally\nthis should be set to something like 'refs/heads/branchname'\nto generate blame commits on the 'branchname' branch from\ncommits on the 'branchname' branch in the source repo. The\nexact semantics are described in a comment in the file.\n", "proba": 1.6937762836732873e-07} {"commit": "28db53aefe845fe6457139bab59a2802d5b22755", "message": "Remove old CTCP reply\n", "proba": 4.626519114481198e-07} {"commit": "ef80dd60854b60e260552213cd4ca6f7ceb6b570", "message": "improved wkb integration and python3 compatibility\n", "proba": 1.5111032780623646e-07} {"commit": "cd75c139910e8968e5262d0f0f5289119b258f21", "message": "Remove user from count query to show likes count for all users for obj\n", "proba": 3.019902408141206e-07} {"commit": "384d1acc34f548128871d26702ea3de801674c85", "message": "Remove cruft\n\n--HG--\nextra : convert_revision : svn%3A69d324d9-c39d-4fdc-8679-7745eae9e2c8/trunk%40179\n", "proba": 5.095096184959402e-07} {"commit": "e6fadc8bc42d74515febceaa2691841b04b4c8f4", "message": "dont verify self signed certs\n", "proba": 1.899131234495144e-07} {"commit": "8f67557ad61ae68fe0f284ba860149997c1aac9c", "message": "commited some changes, not really working\n", "proba": 1.1640831587556022e-07} {"commit": "e483a2b5b6464f2abfa7c41351bb47390213c21d", "message": "clean\n", "proba": 2.5739889679243788e-05} {"commit": "cf299da4be0440ac8d050e225daa8d2904bf6cc5", "message": "better command exceptions, adding short keyword parameters ie: cut(ls('-l'), d=' ', f=1)\n", "proba": 0.0013458565808832645} {"commit": "7af4b1f89acacd9a9da552dbf94ee535bd42c4fe", "message": "using stacklevel to make the warning appear in a better place\n", "proba": 4.194830580672715e-07} {"commit": "61ef121a42aa91bf0df763009c4e9f879177d9e8", "message": "making the 'which' and command calling behave more like what is expected\n", "proba": 3.6732424632646143e-05} {"commit": "af3553d44c5c887041eb730568b26a871188d114", "message": "Remove unrelated documentation.\n", "proba": 4.0340910345548764e-07} {"commit": "6c4e328b9181f82265eeac46616129ab8c7369c0", "message": "[SQLiteBaseDatabase] Make the instances picklable\n", "proba": 3.1332604066847125e-06} {"commit": "65b5d2b16fa96a5cfca47223c4a0af35d4c46d5c", "message": "Builder: convert some class attrs into plain class attrs not Property\n\nProperty is not a way to specify class attributes. A Property when\nprovided as a class attribute defines an instance attribute with the\nsame name. In these cases, it looks like we were providing the Property\nin order to define an \"abstract class attribute\" which subclasses\nwere supposed to replace by a plain non-Property class attribute, which\nis not what Property does, and having the Property in base class essentially\ndid nothing, as far as I know...\n\nThe immediate reason to change this is that I'm working on a modification\nto HasProps where it's no longer OK to get a property's value prior to\nHasProps.__init__, which Builder needed to do when these things were\nproperties - but I guess they shouldn't have been properties anyway?\n\nI'm not sure I fixed all of these, for now these are the ones which\nwere used prior to calling HasProps.__init__ which created an immediate\nissue. Someone who knows Builder better might be able to de-Property\na few more of them.\n", "proba": 0.000586336653213948} {"commit": "a49bfe8d245ef49a4d2fec314ecce8c4d145e3d8", "message": "catch index error for messages with really short links\n\n", "proba": 1.2645743652228703e-07} {"commit": "80287a1d937f84c773b1b63922d9367fca29699a", "message": "remove request from the user\n", "proba": 6.875567919450987e-07} {"commit": "682da5ea944bddb6d94d9e148c019b8d61cc8c4a", "message": "Updates commentary.\n\nSigned-off-by: Gora Khargosh \n", "proba": 1.1648671716102399e-07} {"commit": "2043fe2d197ae3a5defd59aef00d8908ed2e109e", "message": "python2 -> python3\n", "proba": 0.9993520379066467} {"commit": "c9bb050fd09dc369307f1df8e36d256e1a81d9b3", "message": "Set CLOEXEC on server sockets\n", "proba": 2.571772483861423e-07} {"commit": "5353a00c7652d95298400c4e7b5d68c5d69213ff", "message": "basic file reader and data converter function\n", "proba": 1.7925876250046713e-07} {"commit": "95ff8e72dc90411ecffbd91476b4152288e39e9a", "message": "removed experimental MissingType\n", "proba": 2.3726579456706531e-07} {"commit": "ca2709055408a573bd9fa12b4ece29b22062b8b5", "message": "register lua script\n", "proba": 5.373098019845202e-07} {"commit": "fdaed770f91e0d42bbedfe7419c29dc41f580172", "message": "rm monotable\\__init__.py from index, will re-add\n", "proba": 8.384118928006501e-07} {"commit": "94f14df3beec5e00757980165a58f02b9c96044e", "message": "Improper python syntax fix\n", "proba": 4.64167314930819e-05} {"commit": "fc6a1fadeba114291973755a5560123acaed7a51", "message": "Speed up grid search\n", "proba": 5.984642825751507e-07} {"commit": "592e6bcb8893f5dd4ee5a91511e5aea7adc3ae35", "message": "Fixed typing bug\n", "proba": 3.8387838685594033e-07} {"commit": "9fbd1b6c510488d44b241712af6d844c8bd3e7db", "message": "Factored\n", "proba": 2.445568725306657e-06} {"commit": "507893079802ca594a671bafb90c21f9255f1387", "message": "Removed unnecessary intermediary variable\n", "proba": 2.812169896060368e-06} {"commit": "fb10548fc0caa43021089dd0bee6a7d52fe252e4", "message": "clearer decision surface plots and classifier final predictions for the ensembles\n", "proba": 1.6940380476171413e-07} {"commit": "07de39bfb136df6488b1933c5b6c0fc8787b0efa", "message": "Module docstring tweak in qp_subproblem.py\n", "proba": 5.400608529271267e-07} {"commit": "5d6cd3299b1445d7f4f219a8acdb313a21e36406", "message": "Slowly adding adaptive RK method.\n", "proba": 1.246453962266969e-07} {"commit": "4c3683d95f2647655a6c5bedf74ccbd23762f8b2", "message": "remove !random entirely\n", "proba": 5.4757847465225495e-06} {"commit": "93af49141f1c4c30842a8bda9b7481c43e450bc7", "message": "Added rkck step function to take one Cash-Karp Runge-Kutta step.\n", "proba": 1.0619515222742848e-07} {"commit": "fdfa6f5695e7223269a973286f9dd92b62338a5e", "message": "Diagnosing recurrent os.mkdir error\n\nWe continue to get this exception in integration tests:\n```\n12:11:01 Error in integration_tests.test_provisioning.TestProvisioning.test_create\n12:11:01 File \"/usr/lib/python2.7/unittest/case.py\", line 329, in run\n12:11:01 testMethod()\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/integration_tests/test_provisioning.py\", line 26, in test_create\n12:11:01 cfn.ensure_destroyed(stackname)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/venv/local/lib/python2.7/site-packages/fabric/tasks.py\", line 170, in __call__\n12:11:01 return self.run(*args, **kwargs)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/venv/local/lib/python2.7/site-packages/fabric/tasks.py\", line 173, in run\n12:11:01 return self.wrapped(*args, **kwargs)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/cfn.py\", line 36, in ensure_destroyed\n12:11:01 return bootstrap.delete_stack(stackname)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/bootstrap.py\", line 474, in delete_stack\n12:11:01 connect_aws_with_stack(stackname, 'cfn').delete_stack(stackname)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/core.py\", line 132, in connect_aws_with_stack\n12:11:01 return connect_aws_with_pname(pname, service)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/venv/local/lib/python2.7/site-packages/kids/cache/__init__.py\", line 112, in _cache_wrapper\n12:11:01 result = wrapped(*args, **kwargs)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/core.py\", line 124, in connect_aws_with_pname\n12:11:01 pdata = project.project_data(pname)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/project/__init__.py\", line 108, in project_data\n12:11:01 data = project_map(project_locations_list)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/venv/local/lib/python2.7/site-packages/kids/cache/__init__.py\", line 112, in _cache_wrapper\n12:11:01 result = wrapped(*args, **kwargs)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/project/__init__.py\", line 92, in project_map\n12:11:01 opm = org_project_map(project_locations_list)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/project/__init__.py\", line 78, in org_project_map\n12:11:01 data = map(find_project, project_locations_list)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/project/__init__.py\", line 67, in find_project\n12:11:01 return fnmap[protocol](path, hostname)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/project/files.py\", line 140, in projects_from_file\n12:11:01 pdata = map(lambda pname: project_data(pname, path_to_file), project_list)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/project/files.py\", line 140, in \n12:11:01 pdata = map(lambda pname: project_data(pname, path_to_file), project_list)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/project/files.py\", line 68, in project_data\n12:11:01 snippets = find_snippets(project_file)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/project/files.py\", line 122, in find_snippets\n12:11:01 path = project_dir_path(project_file)\n12:11:01 File \"/ext/jenkins/workspace/test-builder/src/buildercore/project/files.py\", line 118, in project_dir_path\n12:11:01 os.mkdir(path)\n12:11:01 OSError: [Errno 17] File exists: '/ext/jenkins/workspace/test-builder/src/tests/fixtures/projects/dummy-project'\n```\n\n`os.mkdir` is guarded by `os.path.exists` so it should not be executed if the directory already exists.\n", "proba": 0.0005633264663629234} {"commit": "3851d67cc49c6f9f549e461dfa2092b4cb5ff505", "message": "added RMSprop\n", "proba": 2.0564077374274348e-07} {"commit": "be281d002a9c9b2952e2ec713f8c754411b03e06", "message": "randomizer: filter the nothing items out of the spoiler\n", "proba": 1.1178891554664006e-06} {"commit": "0694bf886a4271fd1a0dd2c4a84e24cb2372dceb", "message": "fix door rendering\n", "proba": 1.0361309250583872e-06} {"commit": "510808e7c886d9730c2353eae7963006abb93352", "message": "add chained eye blink detector to ssvep fragment\n", "proba": 1.7294708243298373e-07} {"commit": "4a8d6d79392b89440a974f40f5553dfc8b8578b2", "message": "rom: removed some dead code\n", "proba": 0.00028026706422679126} {"commit": "85b654e2d0b01258b9923f7b5d6d3a98c737e467", "message": "Handle the output from the new barcode scanner.\n", "proba": 2.5329727577627636e-05} {"commit": "f083556fefe5e123007a44da23c43e6eef9df587", "message": "improve logging of http proxy for unit test\n\ngit-svn-id: 6ed3528c1be4534134272ad6dd050eeaa1f628d3@10713 f43f7eb3-cfe1-5f9d-1b5f-e45aa6702bda\n", "proba": 6.370387950482836e-07} {"commit": "3bc033c032a5176cd8b0a8f38317a882403d6fb5", "message": "Changed default values in rrt.py, updated README.md\n", "proba": 2.2553989253992768e-07} {"commit": "5b45c52282a2713a0321316e7783490b4a927328", "message": "HitBTC: BCC -> BCH\n", "proba": 0.0002003004919970408} {"commit": "f547dace1f4a426c521db1b9d593f6b4c37051ca", "message": "Implemented all pylint recommmendations on spacing\n", "proba": 1.6973855565538543e-07} {"commit": "d10cc2db36e091f0c71d9e567bb46a849af10513", "message": "Changes privmsg_handlers to handle BotError\n", "proba": 5.346351485968626e-07} {"commit": "861cc8e32d0b05a2b8035e53755151a770e1c366", "message": "chore(only parse args when executing as a script)\n\nCloses #40\n", "proba": 1.7269211127768358e-07} {"commit": "a79331b6e9776b97e9a3edce589c55a33ae15a6c", "message": "Bugfixing. Corrected sequence number for strengths.", "proba": 2.0016840096559463e-07} {"commit": "e707a749e6ce2f3937ac2c99a0fcbc83221080c2", "message": "Small refactor\n", "proba": 7.065128215799632e-07} {"commit": "341cec0f14b437a7bc87e48f6e3f8c19ca733767", "message": "pylint\n", "proba": 2.1026107788202353e-06} {"commit": "4a21c528c941d3e80505cd50c6e54972223092f7", "message": "Don't insert semicolons after colons (alternative block syntax)\n", "proba": 2.584212950296205e-07} {"commit": "3fee6671e5d8b659ea7a6f667276f86c094617d3", "message": "enforce python3\n\nSigned-off-by: Hagen Paul Pfeifer <4d5bb2d32024e62584022f82eb016d5f4634880b@jauu.net>\n", "proba": 3.0515803928210516e-07} {"commit": "dbae0b36198b9616dc5a7e496033e6bb55c2f4f8", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "12348d9b0433d65e419d53bad7f7a2b55df5d6dd", "message": "random seed better one bug fix\n", "proba": 6.210871674738883e-07} {"commit": "0f57293057d3ac75edca936f4718df0a0b87dfa1", "message": "modify run.py to work with uwsgi\n", "proba": 1.9686295615883864e-07} {"commit": "ce1b7050e407d1711f7ce149942b9f54587de866", "message": "Added prints\n", "proba": 2.3764192746966728e-07} {"commit": "3b0c65773301978a9ec0e9ee1ae5f2943f9123e4", "message": "fixed reply\n", "proba": 1.4267189385464008e-07} {"commit": "00183ffc8052a1191ee5277511a9d6f0a0ec9532", "message": "Changed update frequency\n", "proba": 3.0873746936777025e-07} {"commit": "78dc082190cb94167e2efa444af7417b55193496", "message": "1. Fixed syntactic error.\n", "proba": 1.7002192009840655e-07} {"commit": "54a129869e33dfff3aac3a6932bcddebd0ef62f6", "message": "remove junk from run.py\n", "proba": 1.7442404214307317e-06} {"commit": "03d120aaf4d7c8f52e22b1c5aa37ca4e6e4a10ae", "message": "change lock implemetation to continuous\n", "proba": 9.60896500146191e-07} {"commit": "7890db9efe764d0d1a7b319ada02f739fbf80194", "message": "bumped version number\n", "proba": 2.2809651909483364e-06} {"commit": "a99beacf6f2c795bd8c8f1b5bedb4a61dc31f5e3", "message": "Parametrize flask address\n\n", "proba": 4.6374654516512237e-07} {"commit": "3939d5f3a2e10e3d7625bb8a735e8ebc5157a4c7", "message": "Update pywtl\n", "proba": 7.668062949051091e-07} {"commit": "6f46e47a0aa6cc4058a4d8b49f90244ead8c7d42", "message": "fix a bug\n", "proba": 1.6163130567292683e-05} {"commit": "1dcd4a3e8b718fc68f7148b64ba567f2da4d1581", "message": "Corrected docstring\n", "proba": 4.835458821617067e-05} {"commit": "976df91bc1d6c7bf4e42b66a215bb86c46140817", "message": "edited connection to db in run file\n", "proba": 3.979252198860195e-07} {"commit": "7e4824a01d38414986dc145ba251752468067e28", "message": "Allow degree=auto for image command line\n", "proba": 6.231961833691457e-06} {"commit": "61b90720962d279d8482572e6be7daad58e48462", "message": "Include only *hidden* maintenance categories\n", "proba": 1.284853681227105e-07} {"commit": "9b228d3856d7647effee7613ceb1bcc72af3867e", "message": "Add label option and use colors from Seaborn deep palette\n", "proba": 1.2273424943032296e-07} {"commit": "79aa1d3f7da17f6c8cf6a335045e17379b7c7226", "message": "Working on using the project.pickle file whenever possible, since it is so much faster\n", "proba": 3.805969015502342e-07} {"commit": "422a9a383b590f55e9e9d223a3b922908eebf4a7", "message": "Significant transfer speed improvement\n", "proba": 1.5532206987245445e-07} {"commit": "161a06a4ad45f9d341be8e9343f7ebfab69d250a", "message": "Change how download URLs are returned.\n", "proba": 3.580519205570454e-07} {"commit": "4e42c48a873dc6bac29803fdd13cc2fdcf929e7a", "message": "Simplify code\n", "proba": 0.041258614510297775} {"commit": "feaa6f54945d1b25268a12a0fbf819a22d29d11d", "message": "Add tests for all() routine\n", "proba": 2.331716586922994e-06} {"commit": "7e1befd412afbe9ab2528fc05600107751e878c5", "message": "Better help text.\n", "proba": 2.5794017801672453e-06} {"commit": "d71b73007b8d4b77b017309add383bacf62e83bb", "message": "Raise special error if mfa patch required\n", "proba": 2.197107704660084e-07} {"commit": "60f51fcccb10edc03dc527700b3ea66224461620", "message": "remove eval.extract\n", "proba": 9.503770706942305e-05} {"commit": "b5fedf3df39d68e0329e3cdf4145d271213ab8f6", "message": "refactored test generation logic\n", "proba": 1.0753199148894055e-06} {"commit": "229afaa875601a1e9946c72c2095068aee46d90d", "message": "simplify regex, bracket matching\n", "proba": 0.00017271576507482678} {"commit": "5bef33e68233dbb72e27fce433a6659d8cabb7e7", "message": "webserver: comments", "proba": 3.0462988434010185e-06} {"commit": "d5bece9b27e6222e00e2ecff9a13db4d52c2217e", "message": "Test fixes.\n", "proba": 2.190249972500169e-07} {"commit": "18a3c06cc70c7e50e5372f6903ae3f10925482f0", "message": "SmartSpider\n", "proba": 1.6271760614472441e-06} {"commit": "c42f507194bddffb7bd8915ff70d3022c4da1556", "message": "Set the depth to 1 for submodule update\n", "proba": 6.698934384985478e-07} {"commit": "1b3e85dcbe0c921a31435ae870b03b074de9fc9c", "message": "Solve warning message ascii code issue.\n", "proba": 0.0005960444104857743} {"commit": "19a92ca7f683a4e2fe4820729d2f795b26bbda55", "message": "read_table -> read_csv to fix pandas issue\n", "proba": 2.0003081147024204e-07} {"commit": "f68df62da5a1806d9257698e54b6b8f2b68d523e", "message": "Added column for Cage number to experiment data csv.\n", "proba": 1.0697090857547664e-07} {"commit": "56fb8cb01cdf8bee6e307d0c32d5ffd14c8d7e23", "message": "default ducking per track\n", "proba": 2.8052113520971034e-07} {"commit": "f4be3aa5114757a8bb2a390d7fe41162673566fb", "message": "Fixed grammar for Vw\n", "proba": 6.973579615987546e-07} {"commit": "ae059dee129807ab643c3f6931c663cca01155c4", "message": "remove unused crop of corresponding ROI in secondary images\n", "proba": 1.979228017034984e-07} {"commit": "bc63f6e930c171bde402191c8ef948a6ad38e8fe", "message": "only return glints with diameter between /2 and *2 of glintdiameterperc, or all glints of no glint matches criterion.\n", "proba": 1.0156858110121902e-07} {"commit": "3e6bff3eea35bb569a9c2fe37d9aa51162177757", "message": "Adding a security to prevent execution from stopping when global correction matrix estimation fails\n", "proba": 2.68755599108772e-07} {"commit": "fd04d02217e96e22bcf08cb47603a74a7b4fe566", "message": "replace ToggleSwitch with LED in docstring\n", "proba": 5.879022637600428e-07} {"commit": "37a9fb678cbdd92dc62d84b39d90c576ad851f7e", "message": "[feature] Fix testing of inputs paths\n", "proba": 2.4754090190981515e-06} {"commit": "70d9b5e1144015f5e8a1b72be59aedb8c7ff2f02", "message": "minor fix\n", "proba": 3.935496124540805e-07} {"commit": "94f4c9b3e6dc76111d21efa170a547378db0df38", "message": "Make the default connection timeout None\n\nThis fixes the default behavior, which used to cause a socket timeout\nwhen waiting for 10 seconds for a message to be produced.", "proba": 1.7460266121815948e-07} {"commit": "6c7dc8755de2dda1add1c2fdd4e488e65a6e0fd8", "message": "Coment\u00e1rios adicionais incluidos\n", "proba": 6.349177965603303e-07} {"commit": "931c8c368ffc308e46538da2135a06f02491aa9e", "message": "Fixing different edit handling in ST3\n", "proba": 2.2484213957341126e-07} {"commit": "54b8fe9bcb458623148660ad11042df711d8b7e7", "message": "fix(sct.py): Fix falsly sending empty emails\n", "proba": 1.5084668802956003e-06} {"commit": "afa0d017cd2fb9b5622243dd79ea3d52e8f515ed", "message": "Use frozenset.isdisjoint instead\n", "proba": 2.6879507686317083e-07} {"commit": "fb4679cb50b73a3f9455af953c24afe60c417994", "message": "Rename normalize() to _normalize()\n", "proba": 0.9999974966049194} {"commit": "0dce2394b4d780eef55bf2ad93bc102ba58231db", "message": "PATH: add arc edges to drillables in PathDrilling\n", "proba": 2.4324359060301504e-07} {"commit": "a4d661567db7381b37c7d26f79e6f7e06a302588", "message": "use relative imports\n", "proba": 7.437346312144655e-07} {"commit": "1c1ae347170deaf2ffe2f15153dd0f34dc84f2b8", "message": "Fix urls\n", "proba": 0.9986621141433716} {"commit": "39e026bc8301b4166dbb4a17a52634a30a8f1e36", "message": "removed typo\n", "proba": 4.8293022700818256e-05} {"commit": "73d74f35a0bbaa78d5ce7762df29698f95ed2484", "message": "added rainfall analysis\n\n\ngit-svn-id: a2babe56996d5ef2cfd262307688672f011c6e35@91 46f1e1ae-ddaa-4461-89cc-888b818d8ef3\n", "proba": 4.712440500043158e-07} {"commit": "22989c08fa87150c5d681ebdac8de6e63599c1a5", "message": "Modify the symbols with the double prime\n", "proba": 0.0010324169415980577} {"commit": "dc63c10f455520ae42fb5d9abcf2e001a52a148c", "message": "celery you suck :()\n", "proba": 5.060163061898493e-07} {"commit": "978833c2d429f7303c9b9160b8cb9b00a2937358", "message": "Fixed missing args in PriorConstruct\n\n", "proba": 2.1796417115638178e-07} {"commit": "4dd98937fa1d0b5ce40f2efd932de6d119d8c71a", "message": "th_max reduced", "proba": 0.00010032272984972224} {"commit": "dd170dae2d560148d4fe034872963060e37a9303", "message": "basadmin and adminunlim no longer owner only\n", "proba": 1.2282312411571183e-07} {"commit": "f53cf284ca03102c7b125073e8fe044bdaeaba2c", "message": "utests: fixed invalid timetuple that ipy didn't like too much\n", "proba": 4.3311391095812724e-07} {"commit": "5c5f86c1d422f13246ad757c016a816f1b596b94", "message": "Update Bot.py", "proba": 1.8430512227496365e-06} {"commit": "2d82231a22f52ebfccfce193dc05b4682c9d58a3", "message": "fixed test when global variables have been set (global state FTL)\n", "proba": 1.3872245574475528e-07} {"commit": "aa210ac5b4c0ed107ae557f72018488cf8d86df7", "message": "fix missing space character on line 181 of test_sysstats.py unittest of\nsysstats.py", "proba": 0.0013507013209164143} {"commit": "9177e91f58edaf52af613e57c8c2931fcbc41745", "message": "Add Fits output format.\n", "proba": 7.545546623077826e-07} {"commit": "caf2f95eaaf9b4fad4840414aed60835dd437b45", "message": "cleanup candlestick.py\n", "proba": 3.026169451914029e-06} {"commit": "eaf0cb1f96499a91dc83ead8edca784d64257e29", "message": "Upgrade old style print call in example.\n", "proba": 1.1412020484158347e-07} {"commit": "bb547ae55646e281ac8069791ffe0e2eef3d68b5", "message": "Fix for 'ValueError: Auth type must be OAuth 2.0' when attempting autodiscover with OAuth credentials. Refs #747\n", "proba": 8.337058716278989e-06} {"commit": "ff8cc481b28637966e95bdb25b949e013533e14a", "message": "Don't second-guess closing previews - they're all TRANSIENT. Fixes #6\n", "proba": 2.4262737952085445e-06} {"commit": "3301960a53c18b17a3f4bb94167d3a5a00eb412e", "message": " * add \"expected failures\" to unit tests\n", "proba": 2.3260995476448443e-06} {"commit": "c8e7acaab445313756db9d6aa2964bf4f1fbdb05", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "ffc24551a27130b332cfc9bb6e07837c78f28c08", "message": "Admit error code if stdin is not a tty\n", "proba": 2.5466792067163624e-05} {"commit": "a9c1dbf954a59939a17051b07fd66c2bf603c3ba", "message": "buildbot test 2\n", "proba": 1.7486995318449772e-07} {"commit": "d216cebee74e49dfb85ba32762de696e31af8887", "message": "Modified test to match commit f6c89aa.\n", "proba": 1.2020090878195333e-07} {"commit": "71c3c1b0067b269d0ef2e20b0995a7f6b47c2e16", "message": "Enhance failsafe condition\n", "proba": 6.128919949333067e-07} {"commit": "5f882b39d51081436b5dca6aa7dbe74d687cd082", "message": "trying to make the error codes work\n", "proba": 1.5429526456500753e-06} {"commit": "fc2fd4b0dcc4adc4e191ae0ba595e53ce698727d", "message": "unit test update", "proba": 4.470640249110147e-07} {"commit": "523fbc944dbdd3b5fd03e52bb66959142fefda9e", "message": "fix data type for Python3 compatibility\n", "proba": 9.492018762102816e-07} {"commit": "115f3475a68895183b84e6775a0146ad3f0d0550", "message": "avoid update --self (since it overwrites config.py and update.py)\n", "proba": 1.376262304120246e-07} {"commit": "f81de97ce9510df434a404a94af848b1add15095", "message": "fixed merge error: self.server renamed to self.test_cleint\nfixed some formatting inconsistencies\n", "proba": 7.775346944072226e-07} {"commit": "8bfe83a8011d7402bf69cbd3b046026bed4b89fc", "message": "forgotten sys import\n", "proba": 3.6483677945398085e-07} {"commit": "fd63f40779dff28356f60df878b7dc5893260708", "message": "specify axis in _range_check\n", "proba": 2.454737796142581e-06} {"commit": "9031205f6951f5d2cddb049203239743ddfc05cb", "message": "added get_playbook,run_ansible\n", "proba": 2.830099390394025e-07} {"commit": "84be50ebca3bc74a729ba83a3eb574e8c0b07423", "message": "Adding itererable interface, since someone may try that\n", "proba": 1.373396258941284e-07} {"commit": "e4f7c0ea1625235c3f5f17368287262e54b68d0e", "message": "Tweak to max transcription length\n", "proba": 7.222423050734506e-07} {"commit": "4d542632912e76492fa28623b114f98ebe386f0d", "message": "Use logging module\n", "proba": 6.925351385689282e-07} {"commit": "6377f87cad0de9183628dee69e3aae3241ab726c", "message": "Use functools.lru_cache for caching\n", "proba": 6.068570996831113e-07} {"commit": "ff7c11a47bb6e189c6a7e5566664fc2e42546d52", "message": "Update WikiDAO to fetch real data without info\n", "proba": 1.339131046051989e-07} {"commit": "7ca453516333e99203a0d7ecf07ba5abb651ea94", "message": "added transform clousre\n", "proba": 1.4902914813319512e-07} {"commit": "3e85a2038c47aa8a093f746a6b588a063f4baa50", "message": "Fix guild ban deletion\n", "proba": 1.9533820250217104e-06} {"commit": "576a16b292ba7339f2d4224879e7bd6d2324a01d", "message": "[core] don't repeat update_guild_syncs\n", "proba": 6.199201720846759e-07} {"commit": "7e055326077cecda0119a4984e2a867ee0e5d668", "message": "Delete soup-util.py", "proba": 0.0010582634713500738} {"commit": "61de9d04c3e71ca338ad1d4c33650e9a35073fdd", "message": "Include apparently-forgotten functions in docs\n", "proba": 5.873004624845635e-07} {"commit": "55f0c856bf17165631908e5823db38a24cf539e9", "message": "Added a missing import to the active_host_constraint.py which caused an error when scheduling a new vm.\n", "proba": 1.108794620563458e-07} {"commit": "f6a7e524d7ada682fa60ccf362e74321b47a0f3b", "message": "api: removed unused import\n", "proba": 6.362986368912971e-07} {"commit": "64a34253c6b45f2e4d5bc05efb9622f4e9710857", "message": "DOC: stats: doc change that got left out of last commit\n", "proba": 3.91306372193867e-07} {"commit": "bf3079362e44816be52b9163f9f51c3721ce915a", "message": "Add test for multiple domains in one label\n", "proba": 5.102183422422968e-06} {"commit": "c407955d8fc50afc552b39c38828f0c28047ade0", "message": "mythril/laser/ethereum/state/calldata: make symbol creation unique\n", "proba": 1.5366294974228367e-05} {"commit": "c9874fe693fb222c7935ef066f83a3b33487efa3", "message": "Minor test suite improvements (investigating a flaky test)\n", "proba": 1.3914923613356223e-07} {"commit": "01c838518248dfc3ea6c983b63435de164eac70d", "message": "[FIX]. jim_stock. Elimina dependencia\n", "proba": 6.785470759496093e-05} {"commit": "ba9e7c6fe4188a121a424d58cb6152de6d2dfaeb", "message": "fix my bug.\n", "proba": 1.2433221741048328e-07} {"commit": "4d344264beb6943b3a795c833356b7770274ff3c", "message": "speed improved\n", "proba": 4.703914783021901e-06} {"commit": "7b58a742b992684e2ea7ba58b8f94741a641483e", "message": "Fixed stupid mistake\n\n--HG--\nbranch : trunk\n", "proba": 8.763779078435618e-06} {"commit": "0e0ceb7a097f1979d20996b88aa05e1580539b8c", "message": "Convert tests for nbgrader validate\n", "proba": 0.0034990564454346895} {"commit": "bffa656ee3da2093d759615253a50a955b6e4da8", "message": "exclude added python dataclass module\n", "proba": 7.099209256011818e-07} {"commit": "8a699264668a1145770677a1801808ffb671452b", "message": "New structure works\n", "proba": 3.157450692015118e-07} {"commit": "f6919486275883ab51f6201e2bc060ea62f3913f", "message": "drop hacks\n", "proba": 7.335578970923962e-07} {"commit": "15d6e14f8e4ad71972206e68e90e32f00c8a91d8", "message": "Windows: Disable warning of scons when providing gcc.exe or cl.exe in PATH.\n", "proba": 1.0739613998111963e-07} {"commit": "52e9efda343a80a4123b69a4621d1cbfc75e656a", "message": "fix _db not found\n", "proba": 1.5238935020533972e-06} {"commit": "bc4dcc16dd69530911fd8e7cf6cefc49cffafd80", "message": "standardized interval time for CPU measurement\n", "proba": 3.9687540720478864e-07} {"commit": "c3c8672f914d0f7bece11d7c012c6a4b04d0aff8", "message": "nicer default reds and greens\n", "proba": 2.2621973982950294e-07} {"commit": "f3ed971acb4615a08fd3d9beb8ba9caaee5366d5", "message": "fixing bug in flat attention\n", "proba": 1.6770825084222452e-07} {"commit": "ef40b6703378b6bdeb61135564696944448f3f36", "message": "Made changes in Graphics.py\n", "proba": 2.5064207420655293e-07} {"commit": "6b2465b7e4839e510a6c0fbb8c028ff5400b7a86", "message": "paste grid_ref and grid_str to fig in make_subplots\n", "proba": 2.1076026257560443e-07} {"commit": "a52d41d7dc6b737cc99cefd0d9040c89693f4b83", "message": "use a more specific assert method\n", "proba": 3.735125346793211e-06} {"commit": "3b122990882f337a849857502634743409286779", "message": "Performance improvement\n\nTo make \"in\" ops O(1) instead of O(n).\n", "proba": 1.7143553122878075e-05} {"commit": "6756fc374c5c416c827b103b3d45861e568ffad1", "message": "Replaced reduce() method because of Python 3.3 Incompatibility\n", "proba": 4.7676465328549966e-05} {"commit": "16795db2c0a46c1b3b15b5824b7092de596cd57b", "message": "Select stat map directly (no contrast map for F-tests)\n", "proba": 1.0641434045055576e-07} {"commit": "9a58bad57dd833181b62068f10423a62903d48ab", "message": "Add comment", "proba": 1.5774051576045167e-07} {"commit": "385d2f99c84f5e6a72dea19955dd6086d74af834", "message": "rewrote dictionary comprehension, not 2.6 compatible.\n", "proba": 3.837930933059397e-07} {"commit": "5b67dfda0cec98f25cd3f067a364e92a3b39f982", "message": "Fixed the core_test.py of the event based calculator\n", "proba": 5.362778665585211e-07} {"commit": "79d2dfeefb2c4fa4b3f67b9010c0a7c5df0e23d2", "message": "Added popback stats\n", "proba": 2.960148606234725e-07} {"commit": "c50308764b5bae06019f3933eb52d24c57357244", "message": "Rename make_contenttype_relics to match others\n", "proba": 6.719839120705728e-07} {"commit": "166be7d7684b4bd309661603a35710e0ed752680", "message": "Save existing configuration to ..old in write_config()\n\nAdd a default-True 'save_old' flag to write_config(). If 'save_old' is\nTrue and an existing configuration file is being overwritten, a copy of\nthe old configuration file is saved to ..old (e.g.\n.config.old) in the same directory.\n\nErrors are ignored, as the old configuration would usually just be a\nnice-to-have, and not essential.\n\nThe same functionality could be added for minimal configuration files\nand headers, but it's probably most useful for configuration files.\n", "proba": 0.0005741579225286841} {"commit": "53af0751e1a8082ac1892d65a1ca4574f8446a98", "message": "Fixed typo in users.py\n", "proba": 4.460538889361487e-07} {"commit": "e339e19608682b62e4338187e5efeab969be97d0", "message": "fix if no eog events found\n", "proba": 0.0002809980360325426} {"commit": "1d3988f2124f7bf9307e168e6f78a32bc72a0489", "message": "fix mongo never doing systemStatus\n", "proba": 2.1096830096212216e-06} {"commit": "3316fb3d9f37fcae12c5ef5abe008daa772202c1", "message": "Tighten up _next_line()\n\nself._line is only used for error reporting, and the empty string\nreturned at EOF would never be shown. Move the assignment to after\nreadline() and use a local variable to hold the line instead, to get rid\nof some property lookups.\n", "proba": 1.6253957824119425e-07} {"commit": "535f34a50305f6071b47bbd6f43324bddbdd4bc3", "message": "corrected parsing of args\n", "proba": 3.1221079552778974e-05} {"commit": "ef39e2d6039bc095c889368e2c64a6268283b7b9", "message": "Proper coding of null board counts.\n", "proba": 1.8046787886305538e-07} {"commit": "09268676ef9f80291c554431b15495afd63177af", "message": "Tests: remove unused function.\n\nThis function was accidentally added in e0f0cd7d244a.\n", "proba": 1.3269901444346033e-07} {"commit": "ac32f8c9836ec02084091d58a1d2b2d805c11a51", "message": "fixed input data for test_malaria\n", "proba": 7.3478709055052605e-06} {"commit": "b8c31786f667c67b8e470568da9930452061e492", "message": "Split out helper for writing symbols in write_config()\n\nGives a better overview.\n", "proba": 1.9703237796875328e-07} {"commit": "86e013c6c7acde85ae03241a10b84df8f73c7aaf", "message": "add todo\n", "proba": 1.153739958681399e-06} {"commit": "da040b0fce69e987e080ff9c822682c7d1f4ad55", "message": "Accept 'page' and 'pages' as post-list type values\n\nSigned-off-by: Chris Warrick \n", "proba": 1.6305752126299922e-07} {"commit": "41be1672c4d8ddcccd8d2c97f3f13d45884e2eb3", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "a873a190946d55093e90adc88b008a79fa4fafa4", "message": "feat(tests): Record time required for each test\n", "proba": 2.286955123054213e-06} {"commit": "dd9b2efac976a849aa725dd1c20f208be78deb63", "message": "finish kepdetrend docstring\n", "proba": 4.5825589722880977e-07} {"commit": "83bc8f65e1653934980c4bb5e9186a54d43f0820", "message": "Added a couple of missing pointcloud tests\n", "proba": 1.5265379715856398e-07} {"commit": "e86831f56c0ada20b279a4084a104ce2b9db8ea7", "message": "\t\tThere are some bugs in save function\n", "proba": 2.8103038403060054e-06} {"commit": "c7d06f974d16ee92f1a39c1f89b495a5b11446ce", "message": "Add slugs option.\n", "proba": 3.9731241940899054e-07} {"commit": "a1b94a3d3e2fc699c3bea9995d39243016afcba3", "message": "zdtm: zdtm.py: write \"meta\" checkskip/hook scripts for group tests\n\nSigned-off-by: Ivan Shapovalov \nSigned-off-by: Pavel Emelyanov \n", "proba": 1.408671010949547e-07} {"commit": "71c85b255b93ef3f592a59596d3d6693e3c2155d", "message": "Forgot to check if these keys actually exist.\n", "proba": 1.0555098128861573e-07} {"commit": "00257f5ae42749ce29d3af13c75bf79bcaedc798", "message": "add more tests\n", "proba": 1.278939123494638e-07} {"commit": "8f18c8970ce906d9adedbba11d7c6c690a425ff2", "message": "Add stateful/threaded python client which can perform rpcs through the switch\n", "proba": 2.565014654010156e-07} {"commit": "2dd856d1f215fed4ac4ba0f5ee0f573ea0e27a45", "message": "Set the correct help_category for the @script command.\n", "proba": 4.678672667068895e-06} {"commit": "fe15fa9d02784e79dd0df708218cb47e8e87d50b", "message": "Fix pb with salome_test.py\n", "proba": 0.9999488592147827} {"commit": "205037047fa19f7e49675abe691617f6c915d0be", "message": "Try to delete target files before installing. Closes #578.\n", "proba": 1.0863867316857068e-07} {"commit": "7d027aa1346f36f9b17c36643fd61c37b1e1180e", "message": "pgitemdata: Make image read-only\n", "proba": 1.7125132671935717e-06} {"commit": "127af316fe4e71caa64d5be6037011d192d0e5c1", "message": "fix: add default role on sign up via SSO\n", "proba": 3.686392346935463e-07} {"commit": "5580dfd2e5a868b074172abefa1909585d15e5ed", "message": "oops, pyflakes safe again ;)\n", "proba": 1.4662479941307538e-07} {"commit": "151bd73e87ae536a9b0b526e64159cbef0111058", "message": "added more stringent check\n", "proba": 1.5141803544338472e-07} {"commit": "6e4b8f651e2f40365c7f9d4d536f350585b7a73c", "message": "finder updates\n", "proba": 3.614046306665841e-07} {"commit": "f2ecb753e83b2df75f070824b818f5216447b688", "message": "Remove note fields from trait views.\n", "proba": 1.1247550446569221e-07} {"commit": "d871a27e1ea9f2bc2d710d64a55bae5c2dea1973", "message": "test_reader_close\n", "proba": 7.168266165535897e-05} {"commit": "05cb2d67029637e80a6c088cecea29e085a48777", "message": "Updated host_tbl to include offsets (and more)\n", "proba": 1.0462295563229418e-07} {"commit": "77128d037e5dcb8cdaec4fb588b3cb5a18ca4c9b", "message": "Added db section to configuration\n", "proba": 1.765877186699072e-07} {"commit": "5c26e53f9aa9d40cfdcedbde6ec2c1071256ae89", "message": "edit comments\n", "proba": 2.307275082102933e-07} {"commit": "08a83a837ca145ad56cdbe28e076178bad05452a", "message": "Removes unused import and fixes visual indentation\n", "proba": 1.8513362931571464e-07} {"commit": "ed1100c3b941c864652f75ab1f04c761ee2130a6", "message": "Test Suite: Disable single instance mode\n\nSo that we can run tests on multiple branches at the same time\n", "proba": 1.4656497171472438e-07} {"commit": "650b6922076e7e8f2cd3278f3ba4805af8216993", "message": "Server: specify method to calculate checksum\n\nChange-Id: Iacc7f4036874df9f51c4a021affe9436ac38c316\n", "proba": 1.5356977201008704e-06} {"commit": "976e978f8f906ee137a2cc188d65391e24defc65", "message": "more test mod\n", "proba": 1.246742868943329e-07} {"commit": "debeac46a88480183f92ab2d80b014fdae4379bb", "message": "Removed msmbuilder-specific build script.\n", "proba": 1.102220110738017e-07} {"commit": "2ce61669338022c657e49927dd51386779154cc4", "message": "rolling back accidental change to torture test\n", "proba": 1.8716075089741935e-07} {"commit": "6fa46793a056ceb2ca7a206c77d874741d22a9b5", "message": "Fixed a stupid variable name (def\\!)\n", "proba": 1.729487308921307e-07} {"commit": "58ce7c2141b164e3326d6b01c0bc09cbd6d01ec4", "message": "Modernized.\n", "proba": 1.1296219781797845e-06} {"commit": "53853efc48b449a088fe174b04ddf6eb40b91ee8", "message": "Code for checking the authorization info required for API access\n", "proba": 1.7148603603800439e-07} {"commit": "90226b826a5db2111b058c0a3ad5f46aa4f6cb34", "message": "Allow * to be used for multiplication in calc plugin\n\n", "proba": 1.520270416222047e-07} {"commit": "7c223a1a8d2f7dffe926f075e0849901188cf5c2", "message": "Bug fix and baka eat\n", "proba": 1.8556634984179254e-07} {"commit": "6723855ea556e519ef982b5aa7962e65da4221fc", "message": "Limited maximum count o 20", "proba": 0.0007369912345893681} {"commit": "169ea131f0bee6cfa6044da4b7169390c83fe4d0", "message": "update hook searching in help plugin", "proba": 2.08998685025108e-07} {"commit": "c91af5ce6058ad4fdd74ba91755304e685a2b799", "message": "Simplify ICMP plugin (using dpkt)\n", "proba": 1.36453806476311e-07} {"commit": "f1def9758c68a6c25c3cbaff801df4212ee351dd", "message": "fix failing tests\n", "proba": 3.2594114145467756e-06} {"commit": "75c78f1a17a3d9e3cccb8e033b7fdd0af41bf5ae", "message": "Change uid searching\n", "proba": 3.8578752992179943e-07} {"commit": "44e9e6bb1b9cb0eecc7cdb58d219b8430814fb1e", "message": "Fix ping plugin\n", "proba": 5.622035246233281e-07} {"commit": "a6560274a0150cf974210b39e7f29f263ec5b927", "message": "Update riot.py", "proba": 6.712517688356456e-07} {"commit": "0a871d89d468fb1956469095feae6f7e715278e8", "message": "\u30c6\u30b9\u30c8\u30b3\u30df\u30c3\u30c8\n", "proba": 6.243397479011037e-07} {"commit": "8f4f2f0695e3936756f6980a4fa84bb69b059bbf", "message": "Update time.py", "proba": 1.186460281132895e-06} {"commit": "3666bb0edbc0a716bea6fbfcb5b56f7567b9eee1", "message": "fix useless posts to irc\n", "proba": 3.825190651696175e-05} {"commit": "2889501d85f2c3f749d541d007263bfee960dd45", "message": "make download_magic use correct input/output convention, #495", "proba": 4.1323883692712116e-07} {"commit": "7e2c5f21a474a17c5757adbe4fd3801b7a49e109", "message": "fix the download_magic fix", "proba": 7.707103009124694e-07} {"commit": "b976981a221b5366b0cae33ffef7ee28da41d252", "message": "Fix for python 3.4 - remove ref to \"from __builtin__ import ...\"", "proba": 1.1977203939750325e-07} {"commit": "bf54a9b3013778d322e77a848e15e9871050d3f9", "message": "Refactor\n", "proba": 5.142872396390885e-06} {"commit": "224203ecfc5430a446e7d8f30b41972a4940db58", "message": "Low frequency limit is added to the multitone generator\n", "proba": 1.345069904346019e-07} {"commit": "991e2c9a647e70bc6bb9f430c1efacf2652dfc49", "message": "correctly remove bad data in ipmag.specimens_results_magic, fixes #199", "proba": 6.32722446880507e-07} {"commit": "1dba5da51c54e2c3670c5b3d23bfb22faf37dcab", "message": "reformat fate flow tracking_manager.py\n", "proba": 3.5060702430200763e-06} {"commit": "5171cc7925857e1f826c19ecf7f587184e1230d1", "message": "Typo fix for TextVectorization documentation\n\nPiperOrigin-RevId: 410381238\n", "proba": 1.387703463251455e-07} {"commit": "e5dd952a6792a1fda6fe15ed0fd7a433b754408e", "message": "implemented updated #3 from Eberhard, move center of mass 4cm in negative z-direction\n", "proba": 1.565611853493465e-07} {"commit": "122a40579c85a93ac66af4f158af01765f9198e5", "message": "So much effort went into making this dumb test work\n", "proba": 1.6532827658011229e-06} {"commit": "32b3c4f98ef5aa92df3e9760ed1186eac2f92da2", "message": "no change\n", "proba": 6.223966192919761e-05} {"commit": "f2b7d8fb0f00e9b506cae9d8602cd4bc1b31c465", "message": "Removed Joysticks Init\n", "proba": 3.354626301188546e-07} {"commit": "12e826ef239cbafa46d0269cee4fecbecd9864a1", "message": "cors: update default configuration\n\nSet_defaults has been added into oslo_middleware. so we use it\nto override the configuration defaults.\nMore details: https://review.openstack.org/#/c/285368/\n\nChange-Id: I3218750a76e79f212fe6b136780d8f0d4e5fd993\n", "proba": 3.336784004659421e-07} {"commit": "e764ddec4de3c88a37d58d7028c19021de678349", "message": "catch case different n_candidates\n", "proba": 0.00019751301442738622} {"commit": "d31284026b213520d142d7ceda9fcd70542f8ec0", "message": "Improve code readability\n", "proba": 0.002396104158833623} {"commit": "f4f94ff04085c36e3da3ad3c3a8525d5c5ce46ff", "message": "added static pages to urlpatterns\n", "proba": 2.6140838826904655e-07} {"commit": "3b2cf5308d29a73b309842441a6db176ca1456ad", "message": "Added line graph and histogram functions for test data\n", "proba": 1.2551834061014233e-07} {"commit": "4558ccb15f4bbd0c2375befe9ec8012691760a29", "message": "have ipmag.upload_magic3 return a dictionary of dataframes with all failures", "proba": 1.1957740753132384e-05} {"commit": "20dce58699b4ff7c40ebd328513f24bbde0ee525", "message": "Players does not need to holder tournament info\n", "proba": 2.2990755610408087e-07} {"commit": "c463c2bdb0042174a6f31b66defd631cfcf71b5b", "message": " feat(lasc): LASC Data Collection PDF\n\n(Feat) Add _get_pdf_from_url to fetch pdf directly from document url\n\nAlso - removed Past and Future Proceedings from Normalized Cases Data\nand merged into a universal Proceedings data set.\n", "proba": 1.0023947538684297e-07} {"commit": "6b5b6ea009db7484891334a0526ceb3323df336b", "message": "Remove redundant ScipyOpsTestCase.\n", "proba": 9.252171366824768e-06} {"commit": "78c3ba03ef23d9e13a284cb8883d826a51a4c58f", "message": "\tmodified: pmagpy/ipmag.py\n", "proba": 3.519415940900217e-07} {"commit": "f4f9ab6c28885c98fcfe81589cc6b10311fd887b", "message": "Small function name changes in doctoring\n", "proba": 7.684996603529726e-07} {"commit": "a09b5970414ad3af397715158a10e92a802937ee", "message": "Style (Cleanup) Move functions around in file\n\nMoved check_success to bottom of document.\nMinor tweak to url creation.\n", "proba": 1.0070323241961887e-07} {"commit": "3a89a0699c2e383396fe2a4da9e57909e79555d6", "message": "Fix broken tests by renaming default app id from \"your_app_id\" to \"test-app-run\".\n\nThis fix is required due to changes in GAE 1.2.1.\n\nPatch by: Pawel Solyga\n", "proba": 1.898354469176411e-07} {"commit": "b77a48095ec28b11c36b5547ef70d57aa10777ad", "message": "Remove/update data for consistency\n", "proba": 3.5497396311257035e-07} {"commit": "416096d37affce16e17c237f4cb4e06e3ff060f5", "message": "Use chaining when re-raising pymdptoolbox's exceptions\n", "proba": 1.8736237450411863e-07} {"commit": "820784bdae74da71dda93f4897675c2a0acd0a91", "message": "Store shape as an attribute.\n", "proba": 1.250979266842478e-07} {"commit": "118811b1c9df87a790e02f199556cafd7000852f", "message": "testing improved\n", "proba": 4.083099724994099e-07} {"commit": "67f47060b5263cf7afb0390914196c5193903438", "message": "parallel version, ProcessPoolExecutor\n", "proba": 2.2263246535203507e-07} {"commit": "fb5ab6f0e1177a4c8d8ebf79377e60abfeb61e9b", "message": "build exception hierarchy from MythrilBaseException\n", "proba": 3.3215127359653707e-07} {"commit": "e8a2cc03a3d797c56508b34df0bbfa92c7e7c499", "message": "Fixed unit tests for new link ordering.\n", "proba": 1.0427949348468246e-07} {"commit": "1b9861d3a2f964c3f33bccd1b460a38bc3f0bc54", "message": "Do not import pygments prematurely when running with coverage.\n", "proba": 1.044271797923102e-07} {"commit": "f0f78027342cf54fa569f8cc6da8ed42a82fa0b5", "message": "add user_dependencies to **from** \u2014 yet do not use them yet\n", "proba": 1.718081819035433e-07} {"commit": "a6542f5d4415bc65b84aa4c3067edd2d6039c312", "message": "coverage test for retry.py:111\n", "proba": 3.265124917106732e-07} {"commit": "922238858896a0508f4f9205197f112d715dc767", "message": "nanshe/imp/segment.py: In `get_neuron_dtype`, make `centroid` explicitly double precision as it will have the same type as `gaussian_mean`.\n", "proba": 3.1076925210982154e-07} {"commit": "cb9d79efa87043f76989ed530de2bdb4b1fe8d19", "message": "Removed the tests of each layers in the sequential model. (#11115)\n\n", "proba": 9.123790505327634e-07} {"commit": "cbbdabd50bb98a57f2a382445243eb6b5b832705", "message": "max faster quantification; o(n2) => on(n log n)\n", "proba": 0.00042943560401909053} {"commit": "f4e94898b0b29668f2ba2be829a5bdb38b05a501", "message": "Grammar fix: will -> can\n\nThis fixes a nit from:\n\n https://review.openstack.org/#/c/335673/2/keystone/conf/identity.py@24\n\nChange-Id: I5a69a7bbcf885fc5d35ff1fe0d1f1da37a201a21\n", "proba": 0.00013306642358656973} {"commit": "ca8074ced2e1b8fab5bd0e92a73536157fd6d9cb", "message": "Removes a Py2.6 version of inspect.getcallargs\n\nChange-Id: Iabcc1a184c4c1501659dd437d6c94b290425b4c7\nImplements: bp remove-py26-hacks\n", "proba": 1.249501337952097e-06} {"commit": "018b0118dc020a2f3fc188ee375896edec341ab6", "message": "removed deprecated docs, not true anymore\n", "proba": 2.0617490292806906e-07} {"commit": "46fee994d10f2d361fb870098a8c2a57177920e6", "message": "os_subnet: add support for using the default subnetpool (#20191)\n\nAllows to pass use_default_subnetpool instead of a cidr. This is\r\nrequired when adding an IPv6 subnet if BGP or prefix delegation is\r\nenabled.", "proba": 1.0458943933144838e-07} {"commit": "de714e5af86eba22222b4db4a4e5e21300c93485", "message": "Use `volume` as input parameter name to match `image`.\n", "proba": 1.3073294269361213e-07} {"commit": "9b44109ba3091e6538dedfac2987cf31793e892d", "message": "Fix pr44962 add check before hot add cpu or memory (#48289)\n\n", "proba": 1.0490870749890746e-07} {"commit": "06e3c5f79c60a45d252992fc7bad5bdc9d6103e7", "message": "Load parents and allow custom search paths.\n", "proba": 1.1240987873861741e-07} {"commit": "a2f685a13428a1c22af4b2f8621adb6bfc6aff95", "message": "Replaced lambda functions with list comprehensions.\n", "proba": 2.1371594982610986e-07} {"commit": "b4802350ec9e471d3f133310c12a84cbb3b01873", "message": "Fix one issue (#52370)\n\n", "proba": 7.549692213615344e-07} {"commit": "38de8c0dbe21308fc5074f84785878fd3cac4433", "message": "Reorganize includes to minimize import statements\n", "proba": 4.924223162561248e-07} {"commit": "dd2e9a0bd895074806f6b41d999d0fcfb6600f66", "message": "UI update minor fix\n", "proba": 4.2405272893120127e-07} {"commit": "2262e1688c62380069ead496181675204d549ce0", "message": "Wrap dictionaries\n", "proba": 2.799321009661071e-06} {"commit": "f24a2332433f96ed584f09d20ba372f5161d8081", "message": "Add omega to __call__ for Super\n", "proba": 0.9998093247413635} {"commit": "d4696d5c8288026dd3c56b769a309829b8a8cd3d", "message": "Update build_upload.py (#6119)\n\n* Update build_upload.py\r\n\r\n* Update build_upload.py\r\n", "proba": 6.917522910043772e-07} {"commit": "9787c0de74086ec11b2c08d9981e216a52946fc0", "message": "Fix missing ) carnage\n", "proba": 0.9998074173927307} {"commit": "aef5b220b88c0f93a52a50abc678748f8eff8438", "message": "Ensure rationals converted to floats for evalf\n", "proba": 4.52457315986976e-05} {"commit": "12243ff13920a4d8cf66260a1b9ca4164ca433a4", "message": "check\n", "proba": 8.487350555697049e-07} {"commit": "054efbe903f0e0e095b729f1824ddbe8cfb59d1f", "message": "Minor Text Fixes\n", "proba": 3.2382760650762066e-07} {"commit": "2e1e6d659e55d6441a13f6732cb2225145331378", "message": "add is_legacy method for InetnumObject\n", "proba": 4.5389682782115415e-05} {"commit": "255f62ae8b2668a698e713b5ef75a80ee9e03367", "message": "Fixed Code quality and mentioned issue", "proba": 1.2851673147906695e-07} {"commit": "732508c737a4b15eb7d97d7678c82c4380cd6e27", "message": "Check fix\n\nMove DB field checks from field definitions to class Meta:\n", "proba": 1.041240693666623e-07} {"commit": "086af0fe0c18c4c196a2b5a9bb875b4c2459621b", "message": "create lats and lons in a single loop\n", "proba": 3.1981812753656413e-07} {"commit": "bbabd742ff3add740dc329489b99c3dd09aeca5b", "message": "[Add]BitfinexApi\u65b0\u589eclose\u51fd\u6570\n", "proba": 6.087560677769943e-07} {"commit": "e01383c349dcb8d8c94347f11169d54fea659d1d", "message": "More PEP8\n", "proba": 1.5356259552845586e-07} {"commit": "4c5d1aa40a4d0cf562fdb73722476b255899e0cd", "message": "Show account in log when login fails (#3348)\n\n", "proba": 1.1483398054679128e-07} {"commit": "f30fce70bda45c1d07bf5bcc365a426146a76980", "message": "[Add] relogin after disconnected\n", "proba": 1.960345059615065e-07} {"commit": "f0d40fd6d241e66876c5f304aba6256e164d0d11", "message": "PGPool: Rotated out account already has been updated\n", "proba": 1.2301713070428377e-07} {"commit": "5dc0d760baf56b022434534f7d7de9f485a3fc58", "message": "Confidence hull plots now display transparent colored polygons.\n", "proba": 1.0271057959698737e-07} {"commit": "cdb153c9c17cd0cf4f8af8d4afeaa18872368b33", "message": "Revert \"vocotgui: minor code reading\"\n\nThis reverts commit b2559f8329c73ec79e9d97dbe9020c1f2f54d3f9.\n", "proba": 1.151856210412916e-07} {"commit": "a8c57cee402476032148bfa529d26789d302ce15", "message": "simple view with dynamic data\n", "proba": 1.5488718929645984e-07} {"commit": "da3b162d95b14dae4ac960e65aaa889e09897616", "message": "one by one\n", "proba": 0.0023779200855642557} {"commit": "6d2bb66536f2b35d9f66ba2577af98cdaeb4f7eb", "message": "Update AbstractForm to use mode_name for preview mode\n\n- clean up to align with other usage across Wagtail\n", "proba": 1.1524264209583635e-07} {"commit": "4902c0ab4b79bc4153a8da0dbb11a4492f186d14", "message": "Remove assertNumQueries from deletion log test\n\nas per https://github.com/wagtail/wagtail/pull/8289#discussion_r844114429 - it's too sensitive to changes to logic elsewhere.\n", "proba": 1.0894557078700018e-07} {"commit": "35ca4aacb77a3ad6e9dfec4a78f643315aa5f38e", "message": "Bump version to 4.1.2\n", "proba": 3.0499742820211395e-07} {"commit": "39d88baeb04e3aa95a8a1aba71280b66ebd7e706", "message": "Init commit\n", "proba": 6.405153953892295e-07} {"commit": "ae4d36e48a645d0a3c65eba6f83fbc056869afb4", "message": "more file types for the don't-deflate-during-daz check\n\n * Add a config setting for already compressed file types.\n\n * Add .tar.gz, .bz2, many others to it.\n", "proba": 1.0409230100094646e-07} {"commit": "d407b2d4065efacd57bd669bf0d88377fea5716a", "message": "added pep20 to cutscenes\n", "proba": 1.3672918441898219e-07} {"commit": "706e056ca5f0d610edf1f7ef5d6bdf94f85742be", "message": "Fix linting\n", "proba": 3.619362360041123e-06} {"commit": "4350a24fb2d787ee078b201bc20c9b5f46e9e300", "message": "removed unused imports\n", "proba": 5.81701726787287e-07} {"commit": "6b9d6706840c479d50df89c75572f4221ae95a4a", "message": "create very simple post model\n", "proba": 1.3470211968069634e-07} {"commit": "bb01405ab8207c304599a8118e97feb89d1be8c7", "message": "lib.util: Update some function names\n\nThis switches the names of some functions to use the more recent\nnaming conventions. Old ones are still available (for now).\n", "proba": 1.0050827370378101e-07} {"commit": "250cd911ad9518127866f0959e3732e17912dc69", "message": "add versionadded", "proba": 6.71807015351078e-07} {"commit": "4a147bb33060afa3efc6a5fd436eb6f86acefcfc", "message": "third time is the charm?\n", "proba": 1.317929729793832e-07} {"commit": "2601ca0138c444410a485fd973b060fba5af946b", "message": "* preprocessor.py: Handle __asm and with. (These are necessary for Mac OS X\n 10.4.10).\n\nSuggested by: Barry Scott \n\n\ngit-svn-id: 397be6d5b34b040010577acc149a81bea378be26@40 1754e6c4-832e-0410-bb55-0fb906f63d99\n", "proba": 1.4786447763981414e-06} {"commit": "5a084df26923fc9694fe065214ff53492bb35559", "message": "search fix\n", "proba": 7.381073032775021e-07} {"commit": "b806c6d27c5c2c6c295d8a1f1cd71e7dce31d3d2", "message": "fix IndexError when /not/ loading from cache\n", "proba": 6.520269835164072e-07} {"commit": "9f0d96c5863a11099da3b1d1b7bae76c3de221df", "message": "\u66f4\u65b0\u4e0b\u8f7d\u9a8c\u8bc1\u7801\u56fe\u7247\u90e8\u5206\u4ee3\u7801\n", "proba": 1.3545752608479233e-07} {"commit": "2507c4d82fd1953973360c46d2a81f9b94d116b4", "message": "Updates to comments.\n", "proba": 1.1774972819011964e-07} {"commit": "d57be563bf59ed304233c2e5cec062fa25e310e9", "message": "added type detection\n", "proba": 2.993696170960902e-07} {"commit": "40e9342693db00a1ec6c8c08f86da39a40c3d70e", "message": "Remove global Opt with NoLookupError handling\n", "proba": 1.536748186481418e-07} {"commit": "616a87143693c79332b1756e19b948f2e8d6d827", "message": "more specifc service reloading\n", "proba": 1.185687210636388e-07} {"commit": "fb02abcd2589531c1b853d898603904987927f10", "message": "Use prefix match instead of simple one\n", "proba": 3.6865751553705195e-06} {"commit": "86bc98c13e8f3916acbac8c54b7a36b1ebf26152", "message": "update the test case of ArgSpec\n", "proba": 4.33601826443919e-06} {"commit": "1ab64214c2868968eaabbb14effc573f7cf637ae", "message": "Use isinstance instead of type(obj) == type(Unicode())\n", "proba": 0.00011206331691937521} {"commit": "10794b1962869ce71ae3564b2950c5dcf0aab6aa", "message": "Changed expires_at to be optional in token create / update\n", "proba": 2.033027612924343e-07} {"commit": "c6a3476abb39051fee73ee87676fa232862ca796", "message": "Filter out the __pub keys passed via **kwargs for dnsmasq.set_config\n\nFixes #34263\n", "proba": 2.927939419805625e-07} {"commit": "b0baac37b138368b29067f168b9b050fc704c96f", "message": "Fix missing max interval in xAxisConfigs\n\nMissing max was causing graphs over 1yr with few very points (say,\nmonthly data) to default to a 12hrly xAxisConfig. Fixes #155\n", "proba": 2.8498979531832447e-07} {"commit": "f35cdc66561c7f9dda660bad39ffeffa30f0b586", "message": "fix docstring for mod_bufsize #29236\n", "proba": 1.6010618253403663e-07} {"commit": "8266aa5b7c36cc4d319c7e80d34583b606f6d7f5", "message": "longer timeout again", "proba": 4.997329483558133e-07} {"commit": "6e4d77429c4b538f4004054e1d4d5fb697b63a0a", "message": "[tests] add Intervals\n", "proba": 2.765565909612633e-07} {"commit": "c23c81640f16b9d72bf7830ed68f1d43c6bed6f0", "message": "Fix legend column calculation to take into account xmin (margin + padding)\n\nhttps://bugs.launchpad.net/graphite/+bug/888230\n", "proba": 0.0006002788431942463} {"commit": "392d89957be707c0c3f25fd746b3d711e7584543", "message": "45e1b538-2d5c-11e5-9de9-b88d120fff5e", "proba": 9.788344868866261e-06} {"commit": "49aaecc73a5d3381597192648f4cc1aac6064c19", "message": "pdbedit.modify\n\n- expose generate_nt_hash\n- convert nthash to upper case (to match pdbedit's output)\n- quote args\n- introduce pdbedit.modify\n", "proba": 0.00012922294263262302} {"commit": "574c21c805ffef0886225107f8d9485d94e38bd3", "message": "Add function to retrieve associated player item\n", "proba": 4.1573071030143183e-07} {"commit": "d553a87b82244e1485ddbc8590614cfb5200aa64", "message": "Removed assert\n", "proba": 9.47934495343361e-07} {"commit": "1d4327cf033f30d0693cbfe7c2104632a32428c2", "message": "17d9a773-2d5c-11e5-977d-b88d120fff5e", "proba": 6.650748218817171e-06} {"commit": "b0bbb0db92d6bb8489b30b49b781cde563dc0f84", "message": "Disable the systemd service module on non-Linux systems.\n", "proba": 1.2589561038112151e-07} {"commit": "142bacd155b9ab5dccf6506e43fc4641cef3a500", "message": "Minor: log output to file and test 2 spinning drums\n\n\ngit-svn-id: 033d166fe8e629f6cbcd3c0e2b9ad0cffc79b88b@1257 3a63a0ee-37fe-0310-a504-e92b6e0a3ba7\n", "proba": 8.995986604531936e-07} {"commit": "32eb9f461318c3d1ac07bf726b7a6b1b5b0a98eb", "message": "Add is_locked on database metadata on host api\n", "proba": 1.1474458005977795e-06} {"commit": "df8fbd7d721440a7eb9feeb2a3e3bd029ab934da", "message": "[fix] batch qty checked against stock_qty field (#10906)\n\n", "proba": 1.0853242571329247e-07} {"commit": "a955f92c34686c64cfcce62f53f0bd453f508d9f", "message": "0b527d63-2d5c-11e5-a208-b88d120fff5e", "proba": 6.314520305750193e-06} {"commit": "e6bc8a94e5d801fdf448de0cb8d0b8194a73de75", "message": "normalize systemd module commands\n", "proba": 1.3409027133093332e-06} {"commit": "0b587c4d330604030bda62c2d8c9a0c6ac9c9b0c", "message": "Add spider for department of veterans affairs\n", "proba": 2.1527357603190467e-06} {"commit": "925ce3673c3a1b8aeee7900f19133a24ca71cb68", "message": "Replace VeDbusImport by DBusMonitor\n", "proba": 2.5724862098286394e-06} {"commit": "629957a32c71addf702c6760aeff35b93ae7d44a", "message": "420d05de-2d5c-11e5-97a6-b88d120fff5e", "proba": 5.925182904320536e-06} {"commit": "1486766f6750a19f165a16b848a7ca78fb77a824", "message": "Bugfix: use proper input field for company name on new company modal\n", "proba": 5.093114054943726e-07} {"commit": "71d9b65db5f9a129c59830ddf5a9fc8d6061892d", "message": "use error_bad_lines=False to read whatever whatever data is available\n", "proba": 5.465798494697083e-06} {"commit": "174e139e48910942355eab7081d65923cf5a9d7a", "message": "coerce int and long key parts back into int and long\n", "proba": 1.358315330435289e-06} {"commit": "05a8cc9bbff41abd47e3e4c8526061ffee22232e", "message": "split upstart commands\n", "proba": 3.273660468039452e-06} {"commit": "7138f9388e871f25cda02d1f228dc0470f49b0b2", "message": "Fixing django.apps bug\n", "proba": 1.7867452015707386e-06} {"commit": "32a83dd9c189d6341749bafed9694e64d10f0db0", "message": "1d5ecbc0-2d5c-11e5-a668-b88d120fff5e", "proba": 1.3407196092884988e-05} {"commit": "366075654faed48502febd4ab8171cab01d195dd", "message": "Fixed small bug in _get_proxy_connection_details\n", "proba": 5.778280751655984e-07} {"commit": "fb453b6d775db37b2827de62ed632d7099ee49e2", "message": "remove all logging handlers in initialization\n", "proba": 1.2590561482284102e-06} {"commit": "833f20720c6be004dbe7945da5724f20f40d685f", "message": "18912a51-2d5c-11e5-8678-b88d120fff5e", "proba": 8.009939847397618e-06} {"commit": "d7ae5c160c2ef0cdf4fb4fa927bf9c20dae88510", "message": "Add default config for ilabs\n", "proba": 3.903071785771317e-07} {"commit": "a36546e5b2e0f0d40ed6fdd1355c859b82d60c81", "message": "Fix minion traceback when pillar SLS is malformed\n\nWhen pillar data is rendered for use by pillar.get, SLS that does not\nrender to a dictionary results in a traceback on the minion. This commit\nresolves that traceback.\n\nFixes #5910.\n", "proba": 1.1426308077489011e-07} {"commit": "db35e0eecefb0234dbf8f40bf450ebf21799c0fa", "message": "1c03c4d9-2d5c-11e5-a2c0-b88d120fff5e", "proba": 1.564869671710767e-05} {"commit": "1a523defdf6ec9ab6526bb3d8bf0d203067a2fcb", "message": "update BLS_ingest2 with optional parameter for API key\n", "proba": 1.432491529840263e-07} {"commit": "a42c51f9bf9edb7639a2e0efc817d36deabad16e", "message": "Do not merge previous values in pillar include loop.\n", "proba": 1.131537388232573e-07} {"commit": "609ac40cb908d4b9349088df433b6d65c9fc0fbd", "message": "0e084b57-2d5c-11e5-a1fd-b88d120fff5e", "proba": 1.2044803952449001e-05} {"commit": "0fbcac06f2b5819a8fe349dcbca871f3db2c4463", "message": "Make diagonal_adjacent_nodes_at_node read-only.\n", "proba": 1.3358773685467895e-05} {"commit": "86923b0cbe58e6662e5a6ab1b43a69bee984c11f", "message": "Add documentation for Jinja filters: yaml_dquote, yaml_squote, sequence.\n", "proba": 1.1770976016123313e-07} {"commit": "7b55352b9c3c22134871ca6e581e325159f8265f", "message": "fix problem with extra newlines\n", "proba": 3.165879661537474e-06} {"commit": "8a4749f958e9149bda80fcec05a5f7ece0890d69", "message": "consider import nodes too, in case the desired definition is a re-exported symbol\n", "proba": 9.618610192774213e-07} {"commit": "46481d39b494e34f8fe69e3979436accb56fb889", "message": "Fix Bug introduce in cc1cd22471f39f9c3c56d105486feebd336a1fb9\n\nOnce the container is destroyed, put the flag `already_exists` to `False`\nto let the new container be created.\n", "proba": 1.1417375844757771e-07} {"commit": "aaf3e9c3b59f9d57f736862e200912222f55aeb1", "message": "Fix self typo\n", "proba": 0.9999799728393555} {"commit": "c72bf5d13ee62c3518de99a4798c60f635dfd199", "message": "Better message handling.\n", "proba": 2.3531545423338684e-07} {"commit": "8d201fb7c095123b327d63ff0d39a5c95195c9ae", "message": "Adds docker.latest_running state\n\nEnsures the container is running with the correct configuration and its\nimage is the latest available.\n", "proba": 1.2262053417089191e-07} {"commit": "b46897ad39d7307a144ca7ce797f69ce9e94cd1d", "message": "make ssh_auth.present and ssh_auth.absent behave sanely with same key material\n", "proba": 2.421225644866354e-06} {"commit": "89d3cc29449b2a98b66c5e15bca6a6254380c03a", "message": "Ensure that creds is a dict (pagerduty)\n", "proba": 7.588918151668622e-07} {"commit": "6cc1d19eef28d765720aee5332f4975767e95e8a", "message": "Support period \"current-month\"\n", "proba": 1.0158906889046193e-06} {"commit": "bd60898929004ab396f1fe1109ebfc262046aadd", "message": "Modified the render_cheetah_tmpl() function in salt.util.templates to call the correct methods depending on Python2 vs Python3.\n", "proba": 1.3138787835487165e-07} {"commit": "f3228d76e8bad41a20c3d2aa3900ea75483241bb", "message": "Fix indentation, typo and additional PEP-8.\n", "proba": 2.421792828499747e-07} {"commit": "2600cd30a85150e49761e9d5ec71fdc453ae3a38", "message": "update lase_simu.py\n", "proba": 5.612114364339504e-07} {"commit": "39c1368c4057b62f3eaebf31dd17bd4eab0a9bad", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "c6a24fdd26717e8ff2b50125087de3cd90a7c62c", "message": "turn rtol to 0.002 on densenet121, since AMD and Nvidia GPU's precion difference (#1733)\n\n", "proba": 1.0149267382075777e-07} {"commit": "c8113daa63f61efeebb73a3da63c486129603473", "message": "[ref] openacademy adding domain and ilike\n", "proba": 1.3387378317020193e-07} {"commit": "e9d4abd1018965e4f16f9edf06a28f343a2b20ac", "message": "[FIX] ir.mail_server: cleanup,typos\n", "proba": 4.621571463303553e-07} {"commit": "e1ee4469946b18ca4c732236d20e0d85d0588a63", "message": "[FIX] website translations\n", "proba": 3.1823907420402975e-07} {"commit": "8c3b520b890ea92cb5d9123b41f70b2b546e1dbf", "message": "Typo fix\n", "proba": 2.181570607717731e-06} {"commit": "07a1f21a7833496e43be3806855e12938c68a3c3", "message": "async reindex logging verbose\n", "proba": 7.603348421980627e-07} {"commit": "582083419e17e8fc96d3e7716e392bbb42c28540", "message": "removing backarc hardcoding\n\n\nFormer-commit-id: bb1b2c61e7085a29a81a2f272cfa8089a9762f0f [formerly bb1b2c61e7085a29a81a2f272cfa8089a9762f0f [formerly be377e4d75b3d1615a50e536202584f1633b23ca]]\nFormer-commit-id: de0ac1f1ec8d5a25b7e3c90f94f7a2445c827c8c\nFormer-commit-id: 51d3e92350902e802231e016ed49dd8fc8d4bd95", "proba": 0.0008932685595937073} {"commit": "cc3279340e81374d361c1c49c18f7609df9d883b", "message": "join command; part command\n", "proba": 1.2464088285923935e-05} {"commit": "3c4ed707d3bafa0be7a5fb58b2c7171fe8a38472", "message": "removed bad attribute from export_2d\n", "proba": 4.357621889994334e-07} {"commit": "044fff068d108ffe304cb5b408bea9da31bc38ff", "message": "More style updates for network-related code\n\nError message formatting, else/if merging to elif, docstrings.\n\nSigned-off-by: Michael Hanselmann <68b67885ff74281219b4a4be33cc20fd45078d7c@google.com>\nReviewed-by: Helga Velroyen <2d0126b1ec6f9ec5cbec4a7012aa14faeaef10f5@google.com>\n", "proba": 1.311625368316527e-07} {"commit": "e211ab38438fe045738ed484e043e3de4ab3a7c3", "message": "Support offsets for daily statistics\n", "proba": 1.5099608674518095e-07} {"commit": "e166cb94a55915b1239c64a45fdab6799a81625f", "message": "rename bcc model for consistency to bcc_paracrystal\n", "proba": 1.2929803006045404e-06} {"commit": "198674f3687f70e946e721493bc303421a0d6baf", "message": "Fixed \"Power Port\" column name", "proba": 4.533426931629947e-07} {"commit": "a2d1746d3666deee867849144517884122b98aa4", "message": "Decreased requested precision in the integral for the T90/T50 computation\n", "proba": 2.3169948804024898e-07} {"commit": "769e6263f936f0712a916ff2e53b396db2065de5", "message": "fixing syntax error\n", "proba": 1.2554196473502088e-06} {"commit": "423d22ed233b002c61bb0e680cf7e7236b6b8081", "message": "\u2728 Add API Server config for RapiDoc (#3415)\n\n* \u2728 Add API Server config for RapiDoc\r\n\r\nSigned-off-by: Alexandre Franke <0723c2bfdbf7f51184fa182c35a5f15b715177de@matrix.org>\r\n\r\n* Update scripts/dump-swagger.py\r\n\r\nCo-authored-by: Alexandre Franke <0723c2bfdbf7f51184fa182c35a5f15b715177de@matrix.org>\r\nCo-authored-by: Travis Ralston <61e7937d32f507327e40c246857578c31465821e@matrix.org>", "proba": 1.5931705377170147e-07} {"commit": "1710bbe80af08844545d4812c36b59ed87295949", "message": "problem 39 solved\n", "proba": 1.547053034300916e-05} {"commit": "4f2fd04ef218da92bb9414c871c196f838396e75", "message": "prepare bgpranking webservice to use the PyPi package\n", "proba": 1.2914641445149755e-07} {"commit": "320228d3eab26c6e1d15a96e6d0b97d3d276d684", "message": "Fix minor bug on forward model\n", "proba": 3.6397145208866277e-07} {"commit": "c9f4b8e65b5d591cf5e1dfb8a7bec14cd1069e2d", "message": "Add shortcut for network-related cluster params\n\nSigned-off-by: Andrea Spadaccini <92d490849ac1b40cd8e8878e4d94603bebdb089f@google.com>\nReviewed-by: Michael Hanselmann <68b67885ff74281219b4a4be33cc20fd45078d7c@google.com>\n", "proba": 2.5777984546948574e-07} {"commit": "4a71e4a3c5fb4e95c6979451161941ab135a6b44", "message": "Add timeout to create connection\n", "proba": 8.553338375349995e-07} {"commit": "caf2f321e0df1db52f137122da808ba314f9c183", "message": "follow up 4efa6cb24bde25611c0ff581aa89395dc32328db\n", "proba": 2.3430924557032995e-05} {"commit": "50f4bb6d80978998fb92abd32e5f2bbb1c9ac167", "message": "Default quantity is 1\n", "proba": 0.999972939491272} {"commit": "1d667695e63b97deccc239b3aff2b1c6cceb62fc", "message": "Zhaltrauc fighting now requires shield in inventory\n", "proba": 1.2495914347709913e-07} {"commit": "56781d70870acaa612c0731266449692105a5909", "message": "fix det from prv\n", "proba": 8.699525437805278e-07} {"commit": "a6582eccc98ad6ed4ef93866d8ca262417ff36c1", "message": "double definition", "proba": 1.3263604614621727e-06} {"commit": "a3043a9663ddd32fac0fda12e08eca55e405b4fe", "message": "Fix for running multiple arguments from a list and a fix to a missing variable\n", "proba": 1.4500701581710018e-06} {"commit": "a0bc119e9036e3813ef18b7171b428349c0815d1", "message": "Reformat exports (DRY), add primary_isoforms list\n", "proba": 1.4351469701523456e-07} {"commit": "503acea4db87cf158f8121195d81848786804ab2", "message": "added zerg codes from second replay. not done\n", "proba": 5.378708738135174e-05} {"commit": "4af3123af75f9b32a383fe8aac711094923dd010", "message": "To vmet fixer script applying ascent, descents or linegaps #274\n", "proba": 1.1293704460513254e-07} {"commit": "a64ce11a454ba0556317015e70372fb63794aecf", "message": "fixed giantbomb api\n", "proba": 4.5192857101028494e-07} {"commit": "29488512888805f1f77eda9cf3930d9e9c00acdc", "message": "Fixed bugs with low wall width\n", "proba": 2.408673083209578e-07} {"commit": "09d7e106105ee318e3441fb4246f09196b471c4c", "message": "nested transactions\n", "proba": 5.424898063211003e-06} {"commit": "990c48d2bbcc8aa429e5eafd673cc08df71358a4", "message": "Outlined function for querying sources\n", "proba": 2.0653759236211044e-07} {"commit": "e23bf38604bae376b04349ad606ef222652f192f", "message": "Get transaction manager from object itself\n\nOnly fall back on application level event_manager.\n", "proba": 1.1642252673027542e-07} {"commit": "c3cafa079cffd72a7903f386e66c9da5c3d691e0", "message": "Third commit\n", "proba": 2.3201036469799874e-07} {"commit": "fc037b9980bb6f2bd6ef390f7828e788be8b4264", "message": "Drop GenHub import in check script (relies on libraries that the script is checking for)\n", "proba": 1.05572922848296e-07} {"commit": "60717c84f9e090fab4ad75d6b334106408912ca2", "message": "Make resources registration stuff available\n", "proba": 3.2524138759981724e-07} {"commit": "ff25098cede5d7b4e7ef270a98d922c9e34f5dff", "message": "Removed K search code\n", "proba": 1.577793256046789e-07} {"commit": "ca6c929552fcc700199ad47d9f209c804a1ccc10", "message": "Make classes static based on recommendation from the automated code review.\n", "proba": 1.4823889671333745e-07} {"commit": "95906fb91755c939b6d6ce6caff72b279e2ab5ae", "message": "Update version\n", "proba": 4.1292173591500614e-07} {"commit": "32faccbc3ff8d0fb0cd35ec841554c8ef384bf0d", "message": "minor changes\n", "proba": 3.7436623756548215e-07} {"commit": "65c617acf20283267d88e43aa8d4be8480ef2272", "message": "chore(version): update version to 0.7\n", "proba": 3.2771213227533735e-06} {"commit": "c497908cd98fc15a5cb8c94481e2d434d835ae2d", "message": "handle existing symlink properly in install.py\n", "proba": 9.608543223293964e-07} {"commit": "7268f01494b64c6ad102ec4b477a957406f1f748", "message": "improve help message for geco_overlay_plots.py\n", "proba": 7.505176995437068e-07} {"commit": "10e027d5b050c60dc1b0c6806ef8d6fea7849858", "message": "Link to the file at Commons.\n\ngit-svn-id: 9a050473c2aca1e14f53d73349e19b938c2cf203@9348 6a7f98fc-eeb0-4dc1-a6e2-c2c589a08aa6\n", "proba": 1.2411804164003115e-05} {"commit": "fdbe26fb0198ffe7ee99d4feea52d12a8e3213d3", "message": "uses glass.db for urls and ids\n", "proba": 2.598829098587885e-07} {"commit": "5f4f77271231e4904254a53d50e33d675e93e811", "message": "Print out the variant string rather than uninterpreted variant\n\nNone -> empty variant\n", "proba": 0.9999994039535522} {"commit": "154d5aaccb010ba09cc189ccc428c88c682b27d7", "message": "Quick Syntax fix in glob.glob.\n", "proba": 1.4641115342328703e-07} {"commit": "efe5ef29e83018226f062b66edd8afacc9d90275", "message": "added extra switch to ordering\noption in convert_node_labels_to_integers\n\ncan now be called as\nGG=convert_node_labels_to_integers(G,ordering='sorted')\n\nand the node ordering in GG will be that produced\nby sorted(G.nodes())\n\nNote that this can be expensive for large graphs\nas it will have to generate a full list of all nodes\nin memory\n\n--HG--\nextra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%40167\n", "proba": 0.000704717414919287} {"commit": "c017362a961b63610f0c783757953466f3724790", "message": "Add attributes to compose. Addresses #311\n\n--HG--\nextra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%401567\n", "proba": 1.1244907227592194e-06} {"commit": "1f837251c4945a5c0b123781561bb33d4cae4517", "message": "Fix Trace.std()\n", "proba": 1.2923195527037024e-06} {"commit": "92611f9ec476f6174e05aadeb57448f7b8070ea7", "message": "remove any keys with value None\n", "proba": 0.9993972778320312} {"commit": "c2c5d3713239b7217ce62edf2b138bc476785108", "message": "Fix adding http trackers\n\n", "proba": 3.1434185530088143e-06} {"commit": "eeb0c40ee52544c59cf90d65d6445a0a3e3be57e", "message": "[projects] Add '.' for Male subjects on X-loci\n", "proba": 0.06411530077457428} {"commit": "f197cccf32c3e3242f0af59007957988ae14fc95", "message": "[projects] Simplify titles\n", "proba": 2.8098589609726332e-05} {"commit": "6c22025ae053ef3ad44896e99db18d07d35ba8ed", "message": "Added simple mbed SDK test linking against popular libraries\n", "proba": 1.296929355021348e-07} {"commit": "2b6ccf24c51a867a81217538c1a39877bf452207", "message": "Updated main url file for Django 1.9\n", "proba": 2.84477664536098e-07} {"commit": "517f0d998c5368a7d93b4cb85fc27da0bf1b1cfa", "message": "Use path info from Issue 23 when path info from Issue 21 is n/a.\n", "proba": 1.1641864006151081e-07} {"commit": "5b5839d79f48f115d47be05ff5f201c2a61d8e4b", "message": "Fix pickle merging.\n", "proba": 3.1460467653232627e-07} {"commit": "81da882371e7842e96cf6b3212e29226cde35873", "message": "fix input params\n", "proba": 6.439343269448727e-05} {"commit": "57778d110722ffb1615a951fa69e3f08fdd3c803", "message": "removed \"password\" field from reporters\n", "proba": 1.850063313213468e-06} {"commit": "b79668a602ba9158610eac8b2beb80cf91b3c571", "message": "Fix for issue #3.\n", "proba": 1.0788436100028775e-07} {"commit": "ed0051e95ddf0315ae5de08c0c33e9f779e75b32", "message": "Dropdowns now use family order ID so we can manually set the order of sets of groups\n", "proba": 1.3124412134857266e-07} {"commit": "c2fb571e261a1b72c5a19dee83800e2b39fdc238", "message": "Fix calls to all_map in ShipCommand.\n", "proba": 1.1124275545171258e-07} {"commit": "c91c0d29a06a536a88e0c9ac06af6926b51483e9", "message": "Fix ue3_commandlet\n", "proba": 0.001185582485049963} {"commit": "8210663d6b318c7906b4b6070eee0c0f6f4e044d", "message": "Fix PRUDP sequence ID rollover to happen after ID 65535\n\nPreviously it rolled over at 0xffffffff but actually the sequence ID is a 2-byte field.\n", "proba": 1.2837195129122847e-07} {"commit": "d02522b68e6b37d459962a35bc33452f9889e75e", "message": "label_images: Remove KEEP_RATIO option\n", "proba": 3.0641626835858915e-06} {"commit": "dfaa4f751d77f3515e1490ebd7b8cedc1c5d18a1", "message": "make cropped imgs\n", "proba": 4.373313231553766e-07} {"commit": "32e5bf70882b4e68b3d05b8dcf5b07b74dd4e8a7", "message": "more suffixes\n", "proba": 6.421325338124007e-07} {"commit": "863761f11189b75bf2a888cafb868c7ebfe340dc", "message": "Delete useless import\n", "proba": 2.3128695829655044e-06} {"commit": "e521caabc4cc0c025bda539ceb889ac301747344", "message": "versioned delete - doc #1503\n", "proba": 1.1927801324418397e-07} {"commit": "298cdd86f00f37f2c00fcf7471ba1b6a1f8fdd32", "message": "added argument coef for mini-batch training\n", "proba": 1.3784388386284263e-07} {"commit": "06984d09730a0569128f26d4317caf264932bbb1", "message": "adds moments() and d4sigma() methods\n", "proba": 2.4963637770269997e-06} {"commit": "b3f6a8f3ab7d995ad0f3809564c2dd526eb41057", "message": "attrdict: better support for lists\n", "proba": 1.3071667126496322e-05} {"commit": "2bd023249cf46184ca5da80a0fa587e31a7567bc", "message": "Fixed adding multiple peers\n", "proba": 2.9872367690586543e-07} {"commit": "19f7204ac12f5ab8e1b35b3959cae00ab5ef873d", "message": "makeffv1 - removes data and provenance dirs/adds object dir\n", "proba": 1.5579458079173492e-07} {"commit": "7c3e6998a10305b820927708bdf798535e39e6d9", "message": "changes\n", "proba": 8.874663762981072e-06} {"commit": "e71ebfcc3000580ca0ab991176308caef07f2b5b", "message": "Update GUID\n", "proba": 6.202359941198665e-07} {"commit": "03dd57caf4e8183273f6fd51de6bb2db7c524b95", "message": "\u5355\u53ea\u7968\u7684\u8be6\u60c5\n", "proba": 1.8763452658276947e-07} {"commit": "9adbc5856e2c275b1ee7ffa128d3d4924f62ea08", "message": "Made the output more visual\n", "proba": 0.999976634979248} {"commit": "bf91caa594a3beb2a3ac6ef458f50f61b6592f5d", "message": "Test ValueError in density_par\n", "proba": 6.608651688111422e-07} {"commit": "09828605d18a2f261880f3e2880718e06193c842", "message": "TEST: pipeline: fixed email (not finished)\n\nFormer-commit-id: 6873a0b0bff170bddb1cd3a1cd180e85bd0ef148", "proba": 3.308996610940085e-06} {"commit": "75f718214105cf38f4be4cea87fd821a498b2d70", "message": "re-add default base uri\n", "proba": 6.810217882957659e-07} {"commit": "8cad08a3a6ca8bc83d677b0d9e7c8781c3c0201a", "message": "Convert Enums to use strings\n", "proba": 0.9999644756317139} {"commit": "7ddd63dfaff94d49042f332bc1cda4dd30d93e1d", "message": "update setup.py to conform with SciPy\n", "proba": 1.9151200092437648e-07} {"commit": "36ed16826a08c948933f8255530de14adeae70be", "message": "Updated a few outdated references to notice.recipient from notice.user. Apologies for not catching that earlier.\n", "proba": 9.825306079846996e-08} {"commit": "5313405a8f44277f3f8410d7205ed27b9d3409f7", "message": "Fix typo in scipy.optimize.newton argument validation\n\nA copy-paste error in #2462 broke `scipy.optimize.newton`. The other\nzero-finding functions have an `xtol` keyword argument, whereas `newton`\ndoes not; it has just `tol`.\n", "proba": 1.944987161550671e-06} {"commit": "e9d29c26c3b8c60c33be4551690c71cb55f17bc8", "message": "Fixed the really stupid, really terrible bug of pkg_config\n\n * Need to remember to check function declarations next time.\n", "proba": 9.921215138319894e-08} {"commit": "f8c686761b3989c3fde1312ef18c6059892f4518", "message": "[hb_input] Use width of space glyph to pad input\n", "proba": 7.644530342076905e-07} {"commit": "e8838a6978158166315baf10f7e5bb818c76387d", "message": "Add source_check function.\n", "proba": 1.7177607958274166e-07} {"commit": "58951f91f81b10b878d35de1ad6a0d34f00fee65", "message": "test: test test client\n", "proba": 0.0036306199617683887} {"commit": "de3b1fb96f8e1c37e7d4cc322f8a8bf00a128e30", "message": "add help to CLI\n", "proba": 2.390336817370553e-07} {"commit": "d992fbbde7c8e5274d80e2fce9c840e7209c78c6", "message": "Change response format of CreateVolume to match EC2", "proba": 2.448525151521608e-07} {"commit": "bcf81cd3c40c9d756a48e9398fb6388f8d0ea623", "message": "minor simplification to how default settings are loaded\n", "proba": 4.419706556291203e-07} {"commit": "25f1188747b79f04d933a47ccf213004a47ce128", "message": "import dash in create_ctx\n", "proba": 3.2156137308447796e-07} {"commit": "c354f0d12e233a9f17e2adc58bee527d10ea7cd9", "message": "Fixing the syntax of the check_es_nodes to comform to pep8 syntax guidelines\n", "proba": 4.652659981729812e-07} {"commit": "aef148b0888d797fe3e76fe94b325ee692e64f6d", "message": "added debug prints for scheduler", "proba": 4.920040623801469e-07} {"commit": "62dc949fef49fbc6ae6d01aea05bf0eff4af452a", "message": "Do not raise on exceptions too\n\nSome docs still might not fit in ES upload max size,\nso it's better to skip them and continue uploading the rest.\n", "proba": 1.0262911587233248e-07} {"commit": "73183b2a2bdd946e6bada149dbce3477046b7c22", "message": "Clean up\n", "proba": 1.531641828478314e-06} {"commit": "0a71c68e4b24933fa6165eeeb5efeb4c75704a48", "message": "Repair logic error in function run()", "proba": 2.7449971184978494e-07} {"commit": "14938ea0676be36cea892c7d193881b19c9d2f6a", "message": "fixed AI training bug\n", "proba": 4.2500010977164493e-07} {"commit": "6a808d0b300b62746bcb287e90a43c41c572f9ee", "message": "added READ1 READ2 detection to screen_duplicates_PE.py\n", "proba": 3.5713969737116713e-07} {"commit": "aac87ccc8346324c9399897b8300dc0807b4be30", "message": "add unlistify to nlp.util for coursera.gt.social\n", "proba": 0.0008691147668287158} {"commit": "6658140296ad2d36105416ba60b3752880f0fe17", "message": "Remove nginx assertion\n\nfixes #569", "proba": 3.742984233667812e-07} {"commit": "d63a0c9f44022e3a5754514b1a78b2eae9011374", "message": "xrange has been removed. Long live range.\n", "proba": 1.2721804409920878e-07} {"commit": "cdd102e83ba138fc155f115b7e78769172e88ede", "message": "add export to csv functionality\n", "proba": 5.316261990628846e-07} {"commit": "ca37ec26deac3a6d33bbabf71f8495adf65e8078", "message": "iFurther improvment in pretty-printing\n", "proba": 1.2983313979475497e-07} {"commit": "c06ae34fe732a985209a25d7692ce5a7dad99ae3", "message": "send proper EOF to slave!!!! yay!!!\n", "proba": 1.0661140237289146e-07} {"commit": "97c8635e590cc6a68810e2b7ccca784d3d9cbd5f", "message": "Bypass URI as path only if absolute for OPTIONS\n\nFix cherrypy/cherrypy#1662\n", "proba": 1.36863718580571e-06} {"commit": "52c911a842b50d6e79676cd1a7ac52df53ce8b08", "message": "Pull proper config from environment.\n", "proba": 1.3932091746937658e-07} {"commit": "f931572f4b0e056daaaffc807f4bb9c0a663642b", "message": "Add chrome.{dll,exe}.manifest as AdditionalManifestFiles.\nCopy in the \"First Run\" file.\nBUG=none\nTEST=none\nReview URL: http://codereview.chromium.org/126287\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@18654 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 4.986816293239826e-06} {"commit": "e9c43d63cbabd43fbcafcdf5e04eca2734192963", "message": "Only enable breakpad and keystone for official branded builds so the rolling google chrome build doesn't spend the time doing the work for these things.\n\nBUG=none\nTEST=Official builds still auto update and have breakpad.\nReview URL: http://codereview.chromium.org/155364\n\ngit-svn-id: http://src.chromium.org/svn/trunk/src@20401 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n\nFormer-commit-id: 3e2b3c49357bdcb1904bde3add1f65c0ea32841a", "proba": 4.983080089004943e-06} {"commit": "f7d93e52f576135a10aabde00dd0d78dc8c6d126", "message": "Revert r18441.\nBUG=none\nTEST=none\nReview URL: http://codereview.chromium.org/125158\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@18450 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 3.807057737503783e-06} {"commit": "cd12f48e108d6be67685dfbd7ded93fd35dff698", "message": "Fix tree\n\nReview URL: http://codereview.chromium.org/67195\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@13812 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 0.0008293132996186614} {"commit": "3c23135e0bf25a90835187536282f024fa3010e2", "message": "Convert additional tests to gyp generation:\n* Split chrome_dll_version.rc generation into its own target.\n* perf_tests.exe: add missing modules:\n browser/safe_browsing/database_perftest.cc,\n browser/safe_browsing/filter_false_positive_perftest.cc,\n common/json_value_serializer_perftest.cc.\n* interactive_ui_tests.exe:\n add dependency on installer_util_strings;\n add dependency on new chrome_dll_version target;\n add missing browser/debugger/devtools_sanity_unittest.cc module;\n add missing resources.\n* Cleanup: alphabetize sources in test_support_common.\nBUG=none\nTEST=successful build\nReview URL: http://codereview.chromium.org/119373\n\ngit-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@17979 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 0.9999274015426636} {"commit": "f30f5e4d4d551ff6f95335599acf2f089aafc816", "message": "Switching an instance of SolutionDir to ProjectDir.\nPlease try not to use SolutionDir when you mean ProjectDir -- it prevents\nbuilding the project from any directory other than the solution directory.\n\nBUG=none\nTEST=none\nReview URL: http://codereview.chromium.org/151165\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@20522 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.706736631807871e-05} {"commit": "0ef4babb0ffaa9f36062cef2d0c202c476a1fb82", "message": "Updates prior to cutting over chrome.dll to gyp generation:\n* Add dependency on the 'theme_dll' target, commented out\n to avoid a problem with default.lib not being generated.\n* Make the location of the generated chrome_dll_version.rc file consistent\n with other uses of SHARED_INTERMEDIATE_DIR.\n* Add the necessary generated *_resources.rc to 'sources'.\n* Remove 'process_outputs_as_sources' from the 'chrome_dll_version'\n action. It's now that it's in its own target.\n* Add settings from chrome\\app\\chrome_dll.vsprops.\nBUG=none\nTEST=none\nReview URL: http://codereview.chromium.org/125021\n\ngit-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@18254 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 5.411133315647021e-06} {"commit": "68d8eda19083ddd54cf152bd5be1c688d2d63953", "message": "Tweak output message.\n", "proba": 2.2654162989965698e-07} {"commit": "ab6bb809feae46ba9c879a1385d2ef35d1878447", "message": "Added the header\n", "proba": 1.6655395995712752e-07} {"commit": "414261f4f594ee859d71810e10f2b0249f730939", "message": "Use browserstack device names from jenkins job config\n", "proba": 2.1418237849957222e-07} {"commit": "4793566a412485ef953ba8c32f20f6a985b0aefc", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "a85a80e7327ae7d6afecae1455d47de21be24911", "message": "Print filenames for data extent items\n", "proba": 7.427359491884999e-07} {"commit": "0b4f03a56394dee070f6e1723af8ce3a9ce44bfb", "message": "[youtube] improve DASH formats file size extraction\n", "proba": 2.956396372155723e-07} {"commit": "5aecff725b33dfcb8aa5fa65a5b6bf41a18b2c34", "message": "Change dir to repo root when working with existing repo\n\nEnsures proper operation when running the script from a subdirectory.\n", "proba": 1.1068802052704996e-07} {"commit": "1a6967cc1a12b527d7183efb23599682d10ae75c", "message": "Fixed categories\n\nSigned-off-by: Jamie Adkins <3171c194172a38df5abe01c35eb23efc5050d9fa@gmail.com>\n", "proba": 1.1976541713920597e-07} {"commit": "ecd238131142424c602b0bfb916ba2a05cbdb4f3", "message": "Add interface of talib\n", "proba": 3.1260654509424057e-07} {"commit": "26060b2cfe835e208d29e12d70a1a8eee70b3c14", "message": "Specify UTF-8 encoding instead of relying on locale default (#3009)\n\nCurrent locale may not be UTF-8, which makes the spec/names.wast\r\ntest fail. Fixes issue #3003.", "proba": 1.1033243652036617e-07} {"commit": "5c95a9769a7f1243f0117a0b5faa492fd6b0b162", "message": "set default csv separator to ,\n", "proba": 2.2951520861624886e-07} {"commit": "d6cbb7391d57f17f96fb57467b4a1ea2a12d633a", "message": "Updated run test seeds on the proper database\n", "proba": 3.081914883296122e-07} {"commit": "0dff34f90f228047b6e7cf17a36e8b6b4cb5ea77", "message": "Copy bug report to stderr, not stdout.\n\ngit-svn-id: eb86470c0dbc9d881c76e652f76111a30a15f3d1@1537 9f8c893c-44ee-0310-b757-c8ca8341c71e\n", "proba": 0.0005076696979813278} {"commit": "3a889a66862d3c5856e124156522202de08ee2f5", "message": "Bug 1146426 - Add support for funsize in desktop_l10n.py. r=rail\n", "proba": 2.127435152488033e-07} {"commit": "6e7a597e18c8d4712357d20583c26744178ca879", "message": "Fix to previous commit\n", "proba": 3.883729732478969e-06} {"commit": "0e9277104ff2e57ce8a295457aa3dcd831e6f455", "message": "Fix task creation when there is no assignee\n", "proba": 0.0015748238656669855} {"commit": "d868affe34c33d4b7ee1fa9b264497d5d9ad9ba9", "message": "Set glyph width\n", "proba": 1.9618073565652594e-06} {"commit": "daf7700eeceefd613a740aaf04d66b77df53efb9", "message": "Skip single letter subdomain guesses\n", "proba": 6.248673344089184e-06} {"commit": "7f93b85eb586df31c5cdead52dc6ccc70929e692", "message": "remove toskerise.py\n", "proba": 4.076223831361858e-06} {"commit": "40b64ea27403fd9ec15bc621bae298d1d5ed83cb", "message": "Added attachments urls.\n", "proba": 1.1709150271599356e-07} {"commit": "edf9baf6a7e87318fca203e070c14cd962075f81", "message": "API.serialize_instance: Document a few design decisions in the docstring\n", "proba": 7.002449251558573e-07} {"commit": "478db1f7ef0e71630ed19e0f79d803bab2313039", "message": "remove cleanup\n", "proba": 2.0327456695667934e-06} {"commit": "b4121517251e98b78063bdfd01ed5f53816abf45", "message": "Fix issue in UI message default if no mementos returned, re:#285 and #485\n", "proba": 1.384731689313412e-07} {"commit": "8b0e39eec8a82fd3f5a424ec75678426b2bf523e", "message": "Remove runtime dep on python-pbr, python-d2to1\n\nRequires RPM spec to fill in REDHATCINDERVERSION.\n", "proba": 1.0802540373333613e-07} {"commit": "e983a4c765a76401157809663d204390c451b09f", "message": "Fixed closing of output when sys.stdout is used. Implemented support for -m (--maxdepth)\n", "proba": 1.167912841992802e-07} {"commit": "cb1e10046d7994872c6195552048ec33c4cbb1af", "message": "Whitespace/comment tweaks\n", "proba": 2.8040560096087574e-07} {"commit": "5be11456b59bc4d2010279ea2ceefb7aaa51972b", "message": "cosmetics\n", "proba": 1.643785367377859e-06} {"commit": "89c8376605af320700419e4ddae365d804591e98", "message": "support for the limit-day-ordinals-to-day-1 locale option + bugfix\n", "proba": 2.3197186749257526e-07} {"commit": "1dfc134743da92f3b599c5dd9ccc148834f0fc7a", "message": "checkpoint: fix silly mistake\n", "proba": 0.9988946318626404} {"commit": "86682f11e654cae58cc4b9ddeaa7b69c1c874920", "message": "Python 3 fix for thumbnail generation.\n", "proba": 1.1374979180800437e-07} {"commit": "275003cc37961beb06b344aba8554b56eaf67550", "message": "--wip-- [skip ci]\n", "proba": 2.533161591600219e-07} {"commit": "82d79c235d0a9b461b59474378e3a38a05bdd4eb", "message": "Better comment on frame inspection logic workaround\n", "proba": 1.480389926200587e-07} {"commit": "c7666dd1886b123962dde373920a4594153136d2", "message": "Use more efficient bytestring -> bvv conversion\n", "proba": 4.437040388438618e-06} {"commit": "1a2463bff483365e8c697cb1ce362c2525dff817", "message": "added date checking, only rerun if more than 30 days old\n", "proba": 3.0084100899330224e-07} {"commit": "5dd1ca6bd59d735045587cc49c0de380f38dc9ad", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "255f52a2a12f8dc7418788d07448da0d23546984", "message": "Remove the addition of the .pem to the keyName when getting the connectParts\n\nThis is done when the keysDirectory is not provided, meaning they want\na raw key and will determine where it is in the calling program.\n", "proba": 1.1091563578702335e-07} {"commit": "cea267f4d3c0895efcf109fdb409e31a1ba59dfe", "message": "SEDborn can now handle where no fluxes are significant detection\n\n", "proba": 1.249381682555395e-07} {"commit": "490afb4864b819947e84fec92a871d5161d8a9cd", "message": "Adapt users_django.py script to userena\n", "proba": 0.00017554526857566088} {"commit": "4121520d26eebc35733f602c83b508d52f683323", "message": "Commented out now-unused autocorrelation time calculation\n\nNote that (if I ever put this back in) this can fail for very poorly-sampled posteriors.", "proba": 1.0276211526161205e-07} {"commit": "f5782b59f7e6594d14e2a43ab151c3699d56e434", "message": "Added option to vasp_summary to select calculations by title\n", "proba": 1.29403716186971e-07} {"commit": "b669030472b33c1b6cc1d7c8a6dae53f0bc002b3", "message": "Improved extraction of values from parameters vector\n\n", "proba": 5.703298029402504e-07} {"commit": "2c6014d145b3f7efb318b2e9d2a9fd91a9c9c99e", "message": "Removed dependency on py-xml.\n\ngit-svn-id: eda3d06fcef731589ace1b284159cead3416df9b@1208 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 5.054026405559853e-05} {"commit": "46ee28b76924b46a28f784c55ac2d6b3e1c31669", "message": "Component incompletely constructed should be unregistered.\n\ngit-svn-id: eda3d06fcef731589ace1b284159cead3416df9b@5686 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 0.0008070351323112845} {"commit": "3221b681a8a14c1a6fe557e5e97c561d8df3253d", "message": "0.12dev: Merged [8333] from 0.11-stable (#8160 - Setting `BaseException.message` is deprecated in Python 2.6).\n\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@8334 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 7.5938291956845205e-06} {"commit": "2e84fc567486cbedb6e9dfc98481d6a2aa4063e1", "message": "generate valid json\n", "proba": 0.9999995231628418} {"commit": "cfa6b481e83918174f1f2d2945b4b06bcd8e769c", "message": "0.13dev: Follow-up to [10417], make `get_actions_dict()` public.\n\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@10418 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 6.1003087466815487e-05} {"commit": "753cb201f8ea971469a69496951959ab1f75b32b", "message": "added wordcounter\n", "proba": 1.621104274818208e-06} {"commit": "643165c9f30125b2a845a8e0d1ba52f3481f7b2a", "message": "Search now filters resonably.\n", "proba": 1.298512160019527e-07} {"commit": "9a1bfb15dcea057976b0df197800cc00a0da6592", "message": "build kernel modules for sles\n", "proba": 2.241439744921081e-07} {"commit": "a20f065de248e2355b7459b20fe12f2938c1f5c2", "message": "Permissions granted to \"authenticated\" will apply to any authenticated user.\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@79 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 3.477428890619194e-06} {"commit": "a4eab67a4796fbdf7dd61fde057aedf886146175", "message": "Fix python 2.1 compat.\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@1254 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 0.9999986886978149} {"commit": "8c91695f32331339bbf9996973e5158035183152", "message": "Uses bytes on Python3\n", "proba": 6.416228643502109e-06} {"commit": "20ce45eba08c492221152ec6a890344afbfd09ae", "message": "1.0.3dev: Removed duplicated setting of `[trac]` `log_level` and `log_type` in `EnvironmentStub`. Refs #11893.\n\n\ngit-svn-id: 50cd48c816abc7a9f40e8e03a4277466cb30a3e4@13584 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 2.7374937872082228e-06} {"commit": "f996f6bb6285e2804e9dbade73235a358630c5b9", "message": "TraitsCLIBase can take dotted name in keyword argument\n", "proba": 3.0489215419038374e-07} {"commit": "d0b4999629ad1c95366652988f81a3e8291c3873", "message": "[FIX]\u4fee\u6539sell\u6a21\u5757\u7684ci fail\n", "proba": 1.6967511839993676e-07} {"commit": "20ad8b98b0c9a193a2e02449551568256be13d04", "message": "Added back 'environment_dir' option\n\nThis option will control where Senlin engine will be reading the\nenvironment files.\n", "proba": 1.0790000004590183e-07} {"commit": "30ca2d8c51f7515a9745ef1104f46ff38be21c48", "message": "add pseudocount in case sample has 0 reads\n", "proba": 7.412001195916673e-06} {"commit": "e5064032c7b4dd0c19b1bc6ea72e0aa659cdf242", "message": "added thread count filtering option to the consolidated plot script\n", "proba": 2.4099139750433096e-07} {"commit": "2c8e4b14a698a53c417ec8749826e9a99e45ef01", "message": "- Fixed multiprocessing lock\n", "proba": 1.253252861488363e-07} {"commit": "f262d018c6ca2a8596a23a40aefd93f889a75cfb", "message": "update help\n", "proba": 1.8185208716658963e-07} {"commit": "f46788cf283d9ca1d41ff50a8ef9a69bb1c045c5", "message": "pylint\n", "proba": 2.1026107788202353e-06} {"commit": "c5bd5a48b3c1068e535b3c62e28d765647f4fbe0", "message": "__init__():\n initialize a pattern match compiler\nfind_datatypes():\n scan for datatypes at top level, rather than wherever we might find them.\nprocess_formals():\n remove variable-arity code\nexp_define():\n catch pattern-matching definitions\nexp_match():\n call the match compiler\nexpand_nvcase():\n removed the assumption that all alts are present, which forces us to keep track of which ones are.\n add support for an 'else' clause.\nexpand_datatype() => parse_datatype()\n\n", "proba": 0.0005270531983114779} {"commit": "2467824ecc9c104b38ada24e0da393b056afb16f", "message": "Small bug fix import-related\n", "proba": 2.0137312617407588e-07} {"commit": "f5c662bff3c567dd2e166dbafd682b91d1b769f5", "message": "add space after comma\n", "proba": 0.999977707862854} {"commit": "ea9bb3692fa3aa108b4af7f61b008584969af144", "message": "update transient.py\n", "proba": 8.597680789534934e-07} {"commit": "9c6739830ea8ccfbe697bc691de001a42f01f9c6", "message": "Write each byte at a time in protocol\n", "proba": 0.00016712810611352324} {"commit": "e1213c957589396f896ed1f5e747c11eb49471c9", "message": "Also log which user sequences are skipped\n", "proba": 5.168910206521105e-07} {"commit": "10875baefeea29d5f819f04343928331b90a8897", "message": "support for slavic characters when translating from hr to en\n", "proba": 1.1905697050451636e-07} {"commit": "c550788dce56b540422d0c76878c42b1bba14bd4", "message": "Remove evil _backing_url hack.", "proba": 1.4886707333516824e-07} {"commit": "2da052ebbe8cb98617f7e4ba7fb6e97584e5a5dd", "message": "fix(Main)\nIf there's no Calibration line in the .csv file, add that line. This part of the code to do that was in the wrong place.\n", "proba": 1.4839321238468983e-07} {"commit": "96f08dabeae3ee4b6ff36703ea9ffc31d2f216fd", "message": "try 4\n", "proba": 4.484801593207521e-06} {"commit": "40801e903165f56864fc12178022c88be97f29f3", "message": "- small change in chart name scheme\n", "proba": 1.399027667048358e-07} {"commit": "d264c67fb7900a53438a5233b91c7db455ff998b", "message": "Update 01.py", "proba": 1.8528412226714863e-07} {"commit": "39d0abb22d32c4cce4e9d9832265d18f5fb643d9", "message": "synchronize tmux command.\n", "proba": 5.087065346742747e-07} {"commit": "b48583a508eafcd7628db6cb3db019d2811ada5a", "message": "add comments.\n", "proba": 1.3516562091808737e-07} {"commit": "359e3330a630fa9bb8d29d89ce0b3049a1f49d4e", "message": "default proposal hashes field\n", "proba": 5.898223207623232e-07} {"commit": "d6d16dde78358bce26b3798bc104d00c7e3e9242", "message": "fixed str(gate) to include \"name\" keyword, and changed Polygon to Poly\n", "proba": 1.936176516892374e-07} {"commit": "81f313f99fb5d5fb9b0e75c0591a9e78e4c8130c", "message": "[FIX] Made vectors work again after moving class around.\n\nBefore the vectors were used with the class name only (i.e. Vectors)\nwhich is broken after refactoring. Now they require core.Vectors to be\nused.\n", "proba": 1.0826488505699672e-07} {"commit": "068f84ef47e0131ea4f05ca401f58b884e50108e", "message": "MAINT: commends", "proba": 9.11339302547276e-05} {"commit": "f5b52ae7519173104278d535cbf71372896ee132", "message": "Added getRegion and getAlgorithm example to network api demo\n", "proba": 1.2624416001472127e-07} {"commit": "3aabc478b0c27305d3b5efe9e94aea782635d05a", "message": "Misc. cleanup.\n", "proba": 1.4791113756018603e-07} {"commit": "cf05f87b3ab2c3a9bb6b2caea2fc7db8fb8e94c9", "message": "Issue #29: Implement chown shell command with autocomplete for local users/groups.\n", "proba": 1.0214208145953307e-07} {"commit": "0d2b8db64bb847425d1b1eefe3530eda8e899c98", "message": "examples/pymtbl_make_random_table.py: report accurate entry count\n", "proba": 4.85080761336576e-07} {"commit": "4f35d0c6244cebd776dc421ca923152ec6680a47", "message": "Pull wsgi.py from remoteuser for proper apache/wsgi_mod config.\n", "proba": 1.0554997231793095e-07} {"commit": "b6cc9a57c3c5ec741a8a5075caee4fd12c76d490", "message": "Follow the GtkTextView font size in plots.\n\nAlso added print_widget() method.\n", "proba": 1.0050213461454405e-07} {"commit": "6e16342330f76247869b8b3ebbacbbc7d51ee96f", "message": "browser-opening visual test\n", "proba": 3.453846488810086e-07} {"commit": "a7442708fabe210555356fb4c0ac9fc7ae9a92ff", "message": "Update __init__.py\n", "proba": 7.178883242886513e-05} {"commit": "7faf60068ea98160f3ac8c3c41be38fc44f4ef9a", "message": "Attempt to fix CUDA stream redirection in test\n", "proba": 5.449489322018053e-07} {"commit": "8a53f0fb5d0bf91ee058a18409d73213cff7c42c", "message": "remove unneeded hdf5 file from generate_pair_list.\n", "proba": 1.208287869758351e-07} {"commit": "cd180ec2ca4a107bbd51449f78c36e555bcdbbf2", "message": "Fix slash escaping\n", "proba": 0.0001344214251730591} {"commit": "2a68130e90c7fbda7cfe29e39d0eda5a74791329", "message": "fix service admin search test\n", "proba": 3.225079012736387e-07} {"commit": "b1673460945e0ad2d8ce8e034e0da79936db5d28", "message": "mate/unmate testing ---- auto sync\n", "proba": 1.9507629644976987e-07} {"commit": "b19f84783efe046fac96426ebe6e1d7c8dcf1fcd", "message": "fix green party person's name\n", "proba": 0.9984995126724243} {"commit": "aa53f481bc884e8523086a8da4bb02e6a1dd3330", "message": "Fixed bug on delete endpoint\n", "proba": 4.092323138138454e-07} {"commit": "a9d4be91d0f58e7d943ea1e7da72b8f66d6f1ce2", "message": "Fixed some missing methods.\n", "proba": 1.4631302747147856e-07} {"commit": "cb1c48ac3029bd4417eff646c60559e6e898c035", "message": "Fixed regression of header_conversion?\n", "proba": 1.1830848478666667e-07} {"commit": "98104313b403de4da9c6de48e2699a4d38989b9e", "message": "Toronto: fixed links, mayor contacts and districts\n", "proba": 1.2814395233817777e-07} {"commit": "957d857ca851a7c3141a3de0b9199fa6e87e4df2", "message": "Added documentation about delimiter and quote arguments.\n", "proba": 1.1713774483723682e-07} {"commit": "d3a96ee74b2e0df8e54d7dd3023b4a7e6679406a", "message": "Update traits.py", "proba": 6.234799343474151e-07} {"commit": "f659fa4b274e31fa5f2fd31d94537b8d4e7dc16d", "message": "Rtd format\n", "proba": 1.1217272231078823e-06} {"commit": "4fe2788bdb7bd4ce33e99999b6bb8a4ab5cca4ea", "message": "added more tests\n", "proba": 1.1879939876280332e-07} {"commit": "6bb408cf79c05abaf53d5287860fede884030da2", "message": "1. EmptyException -> Exception fixed\n2. Cosmetic changes\n", "proba": 4.3062194890808314e-05} {"commit": "dbd77f82ddd6a2835ba2ded20f409730ca623d15", "message": "Support password change\n", "proba": 5.66522203371278e-07} {"commit": "63d29cbc44fcb9f831b9604c8ba8a0fd4f2f0d56", "message": "a_star\u306e\u5f15\u6570\u304c\u52b9\u304b\u306a\u3044\u30d0\u30b0\u3092\u4fee\u6b63\n", "proba": 3.0645474907942116e-05} {"commit": "7ba28d638a773d20fcaab943f04bd624ab1d6b31", "message": "change version\n", "proba": 6.66106814151135e-07} {"commit": "0056c3ec3a936f8234fea2ac0a1590ff1315228e", "message": "tract profiles visualized with correct scales\n", "proba": 1.9476102863791311e-07} {"commit": "7fc7d18db42dbd97ee940e25e84a42681ca2372c", "message": "Improve handling of abandoned related changes\n\nDisplay [ABANDONED] if the parent is abandoned, and do not display\nchildren if they are abandoned.\n\nChange-Id: I8384cd9df2f3a9310874e62f227963a5f1a9476a\n", "proba": 1.1890114365087356e-05} {"commit": "afd4fa498a269f5d31bec15d39b3b3c7d045a269", "message": "adding BeautifulSoup for dependency\n", "proba": 1.2644875369005604e-07} {"commit": "0c136e8d65844bc104da74c6297c1af21c53ce94", "message": "Normalised paths before processing to avoid issue with ./directory not being correctly recognised\n", "proba": 4.029661511140148e-07} {"commit": "7eceecc3125ab4f7b6cb896d543e7f842493d3ce", "message": "sort roc rows by precision\n", "proba": 1.0227615803160006e-06} {"commit": "a036441bce2fa50bb957dac9f5a06bcfcf0c0ca7", "message": "Add DEFAULT_HELP_EMAIL for e-mail footers\n\nParks also wants us to include `treescount.help@parks.nyc.gov` in e-mail\nfooters. Figured we were probably using `DEFAULT_FROM_EMAIL` for that,\nso I added a DEFAULT_HELP_EMAIL global to aid with that.\n", "proba": 1.2629016055143438e-07} {"commit": "e81c1312a6edb3873e62c962adfff9adf8d0017e", "message": "Fixed model conversion logic if property is not column\n", "proba": 7.694588930462487e-07} {"commit": "85bb3e16bec95f62adc2f4cdd91a351ec6b72f69", "message": "Added session.commit after adding movie so return result will be full\n", "proba": 1.885705813720051e-07} {"commit": "ebad7afc25f140787386ad797cd3bb02dd989727", "message": "fixed more issues with changing regex to regexp\n", "proba": 1.640596991592247e-07} {"commit": "cb6c2505ec8addb7cdc2f2280347fba8f9595a7b", "message": "Update inventory.py\n", "proba": 5.722246783079754e-07} {"commit": "25e66f64b10414122a28a5aa32e9b8dac334f764", "message": "change layer \"classes\" to \"sources\"\n\n* layers are made of source classes\n* change base class items arg to sources.\n", "proba": 1.0600472677424477e-07} {"commit": "1f29d43367a103b0bd4f22f856bf6e58003271fe", "message": "Fix exception check\n", "proba": 1.872337293207238e-06} {"commit": "022c6c42d7247162265ea142abbed209e08da292", "message": "Less sleep in start_vision\n", "proba": 3.265255656970112e-07} {"commit": "ec911f7a403ae563e5dca92b215a549b5b1d9894", "message": "stat_plotter fixes\n", "proba": 5.081915901428147e-07} {"commit": "306330e1e94c491b76ad9cbe61f19b959038321f", "message": "add comment, save new tokens into config\n", "proba": 2.5450074758737173e-07} {"commit": "26c97b5718e327ce7a9e67c371ad708299788972", "message": "Better detection of pre-existing users\n", "proba": 3.5596383440861246e-07} {"commit": "2ed40510246aa99d8526279d0c4ca16fe1f1681d", "message": "Create line function.\n", "proba": 1.4612935046898201e-05} {"commit": "5d99e58e0942eaa3a5ec75d3117ed349fc8384be", "message": "Comment about supporting HADOOP_HOME\n", "proba": 1.2684490968695172e-07} {"commit": "58ba89037d5a36db6c92ac4e8450840b23f6212d", "message": "More sensitive read-only flag handling.\n", "proba": 1.0713262099670828e-07} {"commit": "fd58a76a995b2c9d3eb83ae0182fff772aa232d2", "message": "Updated from Brython Server: September 11, 2015 2:29:33 PM EDT", "proba": 1.0687628559935547e-07} {"commit": "edd9664fa0fd84b3077985e80a1171c71d5d6155", "message": "Use rpc's for documentation popups\n", "proba": 1.5359101723788626e-07} {"commit": "777a3f6f1f0ce83b713ebd937d5440ab6804f06b", "message": "Updated from Brython Server: 1/25/2016 2:26:26 PM", "proba": 1.1124657817163097e-07} {"commit": "966b5fc1b2dcfc806366426647976e3a5cfabd26", "message": "Updated from Brython Server: October 7, 2015 2:00:33 PM EDT", "proba": 1.0717104714785819e-07} {"commit": "7293e14aa23a2a7955c2935b012c1b0705249db0", "message": "Added option to del-storage-pool.py to specify storage system name\nfor case when we delete by name.\n", "proba": 1.0384917459305143e-07} {"commit": "2fbf570b21c10c307dc708e70a3b545b22297161", "message": "camera settings changed\n", "proba": 2.15632326217019e-06} {"commit": "555389db9de8ef2263c3a96672ea046ece5fa1de", "message": "delete assert adversarial_example.shape == self.__original.shape\n", "proba": 0.0054440624080598354} {"commit": "d9311281c4d26ffcb570b9250917dd4f37bc96e0", "message": "Added vmin and vmax for background field; changed colormap\n", "proba": 1.348391265310056e-07} {"commit": "8935fea72b36663b8e33af146a05de858106d699", "message": "Added missing statuses (stati?)\n", "proba": 1.2709702446045412e-07} {"commit": "22ffdd8dc3389f2dc101dffa1f55dae5b693ad30", "message": "Properly handle runtime properties dict\n\nIf a `runtime_properties` dict is explicitly provided as an empty dict, we want to maintain a reference to the original object, rather than to a newly-created empty dict (for proper introspection later).\n", "proba": 1.2977656638213375e-07} {"commit": "b44d6d21dd6481bf43e7945d56c3f07311508090", "message": "add edit_flows page\n", "proba": 4.5558255123978597e-07} {"commit": "3772617d9c62fda61f8c5dab00bc4d50fea73063", "message": "add level option to network diagram\n", "proba": 2.670387289072096e-07} {"commit": "c5a280e1c6be1bb5e48fb23384dcaf3633331ef6", "message": "add agent-level gaps to diagnostics\n", "proba": 1.5619594933014014e-06} {"commit": "96f23ceb422ae453c3f4812662b54011774ade76", "message": "Make link_handlers attribute of LinkHarvester\n", "proba": 4.529494503913156e-07} {"commit": "2f25b1ba489d3f65018838b954c08b075a96577f", "message": "Change the default XMS endpoint to true value\n", "proba": 3.3088799682445824e-06} {"commit": "f012fe0294e459950640cfa36885f370763d4b36", "message": "Remove class references in rtype\n", "proba": 2.9085526875860523e-07} {"commit": "a75004aa88b17b0a5815b6c3fcddfd8d29d3253d", "message": "added some tests for root_level in show_sub_menu\n", "proba": 4.878862682744511e-07} {"commit": "dd98dc8f36a1ed07f00c438143f69a561e2ffef3", "message": "User-Agent header value added to request hash calculation to allow proxification of ua-tester\n", "proba": 1.717269384471365e-07} {"commit": "203125ea6e0a39e0bfdbfee66c8cd4be754f28a5", "message": "contextmanager for force_language\n", "proba": 1.0255979532303172e-06} {"commit": "907534bf739483eb86bfadcc7b90d79759871f0f", "message": "check_regression fix: skip results with no scylla version\n", "proba": 4.875285526395601e-07} {"commit": "69804a6130892ec8ec392a3920dbe13e77a61b62", "message": "Parse results_per_page and es.host settings.\n", "proba": 1.1382651621261175e-07} {"commit": "49ebbe5890290cdabeeafd5bf8e5d2f346587e73", "message": "ENCH: Kicking off with pairwise stack registration script.\n", "proba": 1.055610425737541e-07} {"commit": "b9960dfe8732f9beca99bae564b9297e9dcba6bc", "message": "Code cleanup in sdv/scripts/__init__.py\n", "proba": 4.119032382732257e-06} {"commit": "7c9de028818481af5783998599715bfc0a971c7f", "message": "2to3: avoid reference to removed methods in Python 3\n", "proba": 0.01395677961409092} {"commit": "977f0bfd346d51d5a78cefa10b4ff0539aaf2c0e", "message": "Fix lmplot backwards compatability layer\n", "proba": 0.00018429136252962053} {"commit": "1797d1e005b7fe8801124e7deb660da72260e8fc", "message": "Removes all-caps variable names\n", "proba": 0.0006228909478522837} {"commit": "63d590aac08100026fd59c88827f9801c03e0ad9", "message": "Add System1 folder class to known folders (#864)\n\n", "proba": 1.135248055561533e-07} {"commit": "e4d726e46ae4798caf8959e19edeb36871189b0c", "message": "Fixes stmt referencing\n", "proba": 2.054996315337121e-07} {"commit": "95b29e5a1cd8aa10273b6b4d0af6c8693d63bb3e", "message": "Adding some functions from version2 branch\n", "proba": 3.567931230463728e-07} {"commit": "ee47b88f6d2208c1123c562654c55171df8b648e", "message": "correct cam.py\n", "proba": 2.4480189040332334e-06} {"commit": "fd68b437dce4e5f0a72be403e9c9b5ffe7ef27b0", "message": "keeping the \u03b5 productions from the init_first set preserved. Yet to verify with other grammars from the dragon book.\n", "proba": 1.001765923547282e-07} {"commit": "b205129b1a91189b48e4f41f7f9de83eecac4ebd", "message": "extended search results\n", "proba": 2.1316878928701044e-07} {"commit": "08fbb01a91c1022078b0032705225f6270fda475", "message": "Fix problem with long subjects\n", "proba": 0.0008798812050372362} {"commit": "4c54abf151cba3039bdaad2e6587951a5da8045c", "message": "Add GuardianTodayUsFinalNew to list of email send definitions for US\n", "proba": 1.2332066035014577e-07} {"commit": "05bb87ffe68b08f83f8ab0c6bfd4aec706d919b4", "message": "fix: unicode\n", "proba": 0.9998706579208374} {"commit": "403b459ecb95163b5557cae1231084b2a4e40720", "message": "Implement ``acquire_context`` function on ``ShopNavigationLink`` and use it in subclasses instead of ``_find_context`` closure function\n", "proba": 1.4249187643144978e-06} {"commit": "199ba28d9a7a211f8c565fcac4315b14f20e4d34", "message": "Finish documenting attributes\n", "proba": 1.8827300607426878e-07} {"commit": "c7277ee2e727277f3f13e4995fed7410d357adbe", "message": "Listen to mentions\n", "proba": 1.228358996741008e-07} {"commit": "5b9413f96ddea8279ab4403e4d7cfadee3e659b8", "message": "Fix-up Repository#iter_pages_builds doc-string. Add latest_pages_build\n", "proba": 1.041397126755328e-06} {"commit": "2908a85bc66688ac86885833e28c3125868b3714", "message": "Popravi izris plosce\n", "proba": 2.345926532143494e-06} {"commit": "8b6b94363574432a87ad390b0c35704055e9066f", "message": "Add note in comment where upstream taskflow change is\n\nThe optional task should in the future not be needed\ndue to an ongoing taskflow review, so denote that in\nthe async code for future prosperity.\n\nChange-Id: I96ac9c59c10cd61d48aee609150271c72572be7f\n", "proba": 0.9999979734420776} {"commit": "c705303457249e947055d5445295ba110cf3afd9", "message": "Added unit tests for delete_image specification\n\nChange-Id: I92a55269bad5edd39d9281d270e76f426002ccac\nSigned-off-by: kasar \n", "proba": 1.3257378839170997e-07} {"commit": "043102aa1762a628bd9d2c7e4084f680bb074e46", "message": "update fix choice bug\n", "proba": 4.686790759933501e-07} {"commit": "40e31ccc04eb06b02165c9700819f07a7d093754", "message": "Updates to make mergebot command-line capable.\n\nSigned-off-by: Jason Kuster <68c46a606457643eab92053c1c05574abb26f861@google.com>\n", "proba": 1.1690751477999584e-07} {"commit": "59aa1b015c62382bf4a4500408e2740bf39ad96b", "message": "6e5312b8-2d5f-11e5-b8b9-b88d120fff5e", "proba": 6.464843409048626e-06} {"commit": "c86d68f2b1a90c0281d9fad265152e3a0fbd3c4d", "message": "pattern.en tests for tree.py and modality.py\n", "proba": 2.5213373078258883e-07} {"commit": "27cac44f042bfcde1ac01dc24ec6985669f30bbd", "message": "Use local BLEU script if fetch files\n", "proba": 6.629836661886657e-07} {"commit": "e52e3b88f327ef9b09e89ca108d85f6ad728583e", "message": "FosWiki: more regex for even stranger header markup\n", "proba": 1.2501396895459038e-07} {"commit": "9d5995d499313194265554bacadeae2c1dffe2b5", "message": "6b248d23-2d5f-11e5-916d-b88d120fff5e", "proba": 2.7949940886173863e-06} {"commit": "507dfddd27d47376b0674d551044cdb26d590514", "message": "Added unit tests for metadata preservation.\n", "proba": 1.0976695818953885e-07} {"commit": "8cca750e4b20283ba06db2c27519d59b2638fb46", "message": "Removed headers in __init__.py\n", "proba": 1.808761226129718e-05} {"commit": "74b943153268588dc39951a7c9b493e33a94ce9c", "message": "Revert \"Render HTML better\"\n\nThis reverts commit 0b632ddabf69ec3800fd6f84c3b9fd118f70cf08.\n", "proba": 1.225075010324872e-07} {"commit": "2d761b6ac092b93cb011db524e9f230957e5ff0f", "message": "DOC: add warning to isclose function (#10214)\n\n* DOC: add warning to isclose function\r\n\r\nThe default absolute tolerance for isclose can result in misleading results\r\nwhen the numbers being compared are much less than one.\r\n\r\nSee gh-10161 for discussion.\r\n\r\n* DOC: compare numpy.isclose to math.isclose function.\r\n\r\n* DOC: somewhat clarify the warning for the isclose function\r\n\r\n* DOC: clarify notes for isclose function\r\n\r\n* DOC: clarify that atol should be reduced for small numbers\r\n\r\n* DOC: update based on feedback\r\n\r\n* DOC: update based on feedback\r\n\r\n[skip-ci]\r\n", "proba": 1.3498322459781775e-07} {"commit": "7ba17f3966d29fb87139dafd0d6cccc0b893d915", "message": "newAccount: first implementation of new JWS and new Account\n", "proba": 1.4207637377694482e-07} {"commit": "dccc9fc5e25e49b5bd97fcfcf0377a1b8f218d7a", "message": "added STRATZ links to profile and match commands\n", "proba": 1.292767848326548e-07} {"commit": "7c7a24dd79c20bc8c3ee7675c65db9c4ef8cdffa", "message": "Define next() for Jython 2.5\n", "proba": 0.005232763942331076} {"commit": "bd2209a779d0dd3998451ed808725f6ec6306b21", "message": "DOC: fix typo\n", "proba": 7.313945388887078e-05} {"commit": "755ce9fb3fd741d63a2ad1b8d7c1e4bdda83e7cd", "message": "add some debug information\n", "proba": 1.0727582093750243e-06} {"commit": "b0749869063a32705b968bea8299d97cff6a18b4", "message": "fixed ?lastgame and ?match images\n", "proba": 3.275291931004176e-07} {"commit": "ce1a3b7898484d244806fccc7c52840c11ac98f2", "message": "DOC: Update arraypad to use np.pad in examples\n", "proba": 1.6887891263195343e-07} {"commit": "9f8d63f1a3bb7e82979ef1f53dc89a9d83b1e234", "message": "Expose entrypoints details in info command\n", "proba": 2.4282405775011284e-07} {"commit": "298dfd3dddc340706ff0b0dbedbc2ea95498a333", "message": "Renabled writing to submission directory\n", "proba": 1.428976617035005e-07} {"commit": "52e901b72580eb8521f7bf392058bf4c7c4ecbf0", "message": "Fixed flake 8 issue\n", "proba": 1.5049435830860602e-07} {"commit": "24e5eedfb57e1302a39576207c8025a8dd18c1db", "message": "dailygachi now guild specific\n", "proba": 1.3400419618392334e-07} {"commit": "f7697551c4b07bc8eb3180517a358910305d9646", "message": "[racf] changed serverinfo2 with space between server info and roles\n", "proba": 1.414001076227578e-07} {"commit": "1c99b04975ca1a1be553368b23fb53f47be81db2", "message": "remove debug line\n", "proba": 0.00011947228631470352} {"commit": "2325d2ac74fc92b5f325a58db8a5d7515583d848", "message": "bump version to 2.9\n", "proba": 2.284345157477219e-07} {"commit": "c8c657a1a8ee86b421b081d81bfa5a9a944c6809", "message": "fixed repr for college coach\n", "proba": 1.8029808757091814e-07} {"commit": "cc3fd4b12f900029aae9fd5d7d20e05b7244f807", "message": "0.2.2 Release\n", "proba": 3.8084888842604414e-07} {"commit": "048619e6866fbdf200f1f92d3b907caafd93b658", "message": "Drop the math import\n", "proba": 1.068924461833376e-06} {"commit": "293d64e29861c2b0bb50bb15b4f53846f111640e", "message": "Added test for ObservationManager.recent_observations().\n", "proba": 1.1290387647022726e-07} {"commit": "ee8df4377013853b3577edc1ce557d4598f9f8bd", "message": "stacks\n", "proba": 2.1229775484243874e-06} {"commit": "1503bf01903f088d812a9cb38a4ce7582e063a58", "message": "Fix test flakiness by changing timeout to a longer value\n\nSigned-off-by: Dan Yeaw <2591e5f46f28d303f9dc027d475a5c60d8dea17a@yeaw.me>\n", "proba": 1.5269922641891753e-06} {"commit": "6855beaf28ab0ac8aaa2cb4149aae31b9c029867", "message": "added logging to test_ds18b20\n", "proba": 4.181761141808238e-07} {"commit": "df415b4bfb2e3dc715cee867b5f58b405dce827f", "message": "Maybe help command?\n", "proba": 6.175281441755942e-07} {"commit": "a472c008031774a6c178e8c60f1fc587a13df4cc", "message": "update test_install.py to report success/failure in log of times\n", "proba": 3.6391625712894893e-07} {"commit": "8ac0327f9643b5b8fb85e64fb03d6a06b840f5bc", "message": "changed mapping module import style\n", "proba": 3.0779614235143526e-07} {"commit": "57ea315f4d3367d80da8b493519059bf678bf4ab", "message": "DATIM-Metadata-Project#102 Fixing datetime import\n", "proba": 1.250162284804901e-07} {"commit": "0cc8a470b77efda862325402085d9d806b49ceba", "message": "Removed line to be PEP 8 compilant\n", "proba": 0.0004529522848315537} {"commit": "10e321630507854d0c33db8dac041846bbacc298", "message": "Don't use encrypted privkey if not needed\n", "proba": 1.8909710206571617e-06} {"commit": "86c0fba40931bdde84a183a883e1a9c2816f6136", "message": "Update tests to include QR code.\n\nSigned-off-by: Kalman Olah <9c6f1d21f830c70c1a1dae4ae81fa22e2b8bc9d4@inuits.eu>\n", "proba": 1.4187084218519885e-07} {"commit": "a82b0ab8552d8b08eece70670d9e205445fee842", "message": "fix imports\n", "proba": 2.233424083897262e-06} {"commit": "2d9841a9b92a4689f6ddf81c64dc540b58261cc8", "message": "always use sys.stdout\n", "proba": 2.8224957304701093e-07} {"commit": "92b3877e9314f838d6625244dfe21733a1c21a0d", "message": "tr.py url encode almost complete.\n", "proba": 1.867615395667599e-07} {"commit": "d1c70a57d9d65f50147d5dde2929469b0bb11af4", "message": "added comments\n", "proba": 1.3997723158354347e-07} {"commit": "c2331e4312ed6210fcc160fe833936d906d85c1e", "message": "[add] Options to select previous sessions\n", "proba": 1.323873135561371e-07} {"commit": "452a65324e095c6aa77b1f8406fe9490cfefc531", "message": "Use new macos -std= flag in Metal compiler.\n", "proba": 1.1034506286478063e-07} {"commit": "8d9168ed69f2223785507533392e0b5115162738", "message": "remove condition.retry decorator\n", "proba": 3.681526550280978e-06} {"commit": "188da61a7cc32bf5e81a391f4210ef3c0cb3bc1e", "message": "Updating photosetid for unittest\n", "proba": 1.3008175869799743e-07} {"commit": "c1c94902d56ea535818c65352a2285ae3d35ee9b", "message": "Remove pysolr 3.2 warning\n\nThis isn't strictly part of removing Django 1.6 support, but was spotted\nalong the way.\n", "proba": 1.0232557201561576e-07} {"commit": "38c033522b7ff7af6a9bcb01835bcea206e5a916", "message": "Use 'is' for None check\n", "proba": 0.002222479321062565} {"commit": "3ec63fcdfac34205a990f640d80814579a060ec6", "message": "Fix indentation\n", "proba": 0.0172440055757761} {"commit": "6a4704cbfd207dff75ea5e28d5ed9cc219780d74", "message": "Change of default starting point. From ones to zeros.\n", "proba": 1.366086195275784e-07} {"commit": "5955fe281a327fccc1c8504220254d600536c2c7", "message": "label dataset creation in SentencePredictionTask fixed (#1602)\n\nSummary:\n**Fixes issue when finetuning with `SentencePredictionTask`**\n\nLabels (instance of `FairseqDataset` in `SentencePredictionTask().datasets[split][\"target\"]`) would be encoded from `source_dictionary` instead of `_label_dictionary`.\nPull Request resolved: https://github.com/pytorch/fairseq/pull/1602\n\nDifferential Revision: D19330027\n\nfbshipit-source-id: 048da7a3698eb152fe5867cd5babe50b857a73ab\n", "proba": 0.0035052651073783636} {"commit": "97840140b6121b56e1c6468092c1fdb33573af09", "message": "Fix some urls that begin with an extra /\n\nI tried to fix this in the WADL but I couldn't seem to find a fix that\nworked.\n", "proba": 1.1223206541899344e-07} {"commit": "5732238bbc665f026433e63173555461c9b27490", "message": "Convert wire_assigns from dict to Bimap.\n\nThe previous code stored wire assignments as a dict of sink wires to a\nlist of source wires. However there are many instances where the\nreverse lookup was required, and this was resulting in a significant\nnumber of linear scans that were very slow.\n\nWireAssignsBimap replaces the old dict -> list with a dict -> set in\neach direction.\n\nSigned-off-by: Keith Rothman <1bc19627a439baf17510dc2d0b2d250c96d445a5@users.noreply.github.com>\n", "proba": 1.193544107991329e-06} {"commit": "e2d2844ee7b2f1c7c03c1f0d938ede6c7ba932a0", "message": "Corrected issue with split file name provided in current directory without ./\n", "proba": 1.243354148527942e-07} {"commit": "83d492e133556c6a71d7568309900a22f8b7f61f", "message": "Move some things around\n", "proba": 2.933953737738193e-06} {"commit": "b46527336c40c24fc66c9504632744544410758d", "message": "clean code style\n", "proba": 1.2195129102110513e-06} {"commit": "5c4f95ee8b1f87b8997cc65e8522d488aeca2e5c", "message": "fixed\n", "proba": 9.654138466430595e-07} {"commit": "fa47bebeed1306e98e6b1dda29df6107bfec1660", "message": "Refactord error logging\n", "proba": 2.750203407231311e-07} {"commit": "3cd61f97c655921d2d72d8480a7329753c8dc84e", "message": "Automatic commit with j\n", "proba": 1.405299059342724e-07} {"commit": "843bb1726f1cb5bb723fb3637454d06d7dc07fdf", "message": "Fix variable name\n", "proba": 0.9998103976249695} {"commit": "b4e5c768affc09be20262ffcea01124cbc8439c9", "message": "simplified async repex example\n", "proba": 1.063601189343899e-06} {"commit": "8ba44bbedf6a06e403dcf39685ac00811169aab8", "message": "Fixes in getting database statements\n", "proba": 2.192425370139972e-07} {"commit": "20a82b771ed39c3bc3858119c278d80364eac485", "message": "Restructed code, now parsing GroundOverlays, made processLayerList function, added debug boolean.\n", "proba": 9.896400143816209e-08} {"commit": "90d3482cba294c3260ac9f85775703bc703a7c29", "message": "Revert \"Decode key returned from db into unicode.\"\n\nThis reverts commit 9e63f0b303951da12dd4d96e9842b6c191763522", "proba": 6.206191756064072e-06} {"commit": "1c9eb024af8e3efa10d64aca735f0c114eb93197", "message": "changed min-date to 1971 to avoid potential bug with dates in Windows", "proba": 3.6800801694880647e-07} {"commit": "ccc78bbc60add0da2879efa539986865cceb4eb5", "message": "correcting error handling\n", "proba": 1.934839701789315e-06} {"commit": "f11af65b71c4ea30905a711a1d4dd51cf3269dd7", "message": "Add Sentry exception capturing", "proba": 3.019211192167859e-07} {"commit": "bc12b9dc2f3a83e78b7d4b2226fae2e15622cabf", "message": "interface tweak\n", "proba": 1.2523775012596161e-06} {"commit": "04ea711030382903356c04c1587f0c599cea18a5", "message": "To BooleanField None data means False, so BooleanField need to override validate()\n", "proba": 2.1116549760336056e-05} {"commit": "a27aacfcbd137d5607a0caf71978349888f969e6", "message": "[update] added search and filter options to player ratings admin\n", "proba": 1.2982076214029803e-07} {"commit": "1fa6969c2da7ad913e901f21c820f1c7823f6a5a", "message": "Update undelete() doc string\n", "proba": 1.0181020115851425e-06} {"commit": "9889fe7b77e77d7c408e785bdb2a15c3bcdb4465", "message": "Optimize None -> bool to avoid branching\n", "proba": 2.095722265949007e-06} {"commit": "28a331ee24e4a3bf6435bd67d3cf1ed2654cefed", "message": "Slow down nodes pulling\n", "proba": 3.435608277868596e-06} {"commit": "14322c32709af61f00c3b4ab737843e1934abd5f", "message": "Running swarp for goodObjv2\n", "proba": 2.6693868449001457e-07} {"commit": "529095b40d72080d4dbd4cb827c2b7b7f895360c", "message": "#10 Changed organization code placeholder to specify it should be unique and short.\n", "proba": 9.927556732236553e-08} {"commit": "6d0aefccc6b3d063e20ee08b641760c424cb4a64", "message": "Start on disgnostic plots\n", "proba": 2.105117715700544e-07} {"commit": "287eb8b90b52e312fcd7de89a9cad327e8410362", "message": "import subprocess\n", "proba": 1.3534418030758388e-06} {"commit": "2370dbe641c99201fca8a54feb75fe29afc51436", "message": "link only gtest_main\n", "proba": 1.6095171417873644e-07} {"commit": "95bf6992b623741bce93031b2b9ed2c6ca14b896", "message": "devops: make start_webpack always build assistant data, too\n", "proba": 1.3407513677066163e-07} {"commit": "1c900c099e98af16ecf92d2db37438f7cce88cb4", "message": "Fixing obvious typo.\n", "proba": 8.765708230384917e-07} {"commit": "e9019c11b5a8f352e2086062dabec1ea1e19dd69", "message": "squash that dang boto bug\n", "proba": 5.772926670033485e-07} {"commit": "c53494124f7703afbabc3677e05af75f954580f5", "message": "[ui] replace print by click.echo\n", "proba": 3.3800216669988004e-07} {"commit": "1a9a86d624d8f7d00d167da55fc0088ba2069809", "message": "test both utf7 modules with generated fixture\n", "proba": 1.5158981625518209e-07} {"commit": "b280bbd8d380a309184c8a5eaae29ea35d5d71f5", "message": "adapted implementation of guess_dest_platform()\n\nharmonised choices with ohdevtools (as agreed with AndrewW)\n", "proba": 1.2630702883598133e-07} {"commit": "5c9068ec705dfb568cb04e10e11507b94dc1701b", "message": "Clearner v_dot predictions\n", "proba": 4.3099686308778473e-07} {"commit": "c06d6e226fcf95a1c022894f1d898dc4470ee676", "message": "Use celery work queue instead of multiprocessing queue\n", "proba": 3.462150175437273e-07} {"commit": "ca01e48e57e6c1866d7eb0dfb516ffb478a7348c", "message": "Add path to multiscanner module and import\n", "proba": 2.0178336512799433e-07} {"commit": "c14eb81aa5d8e95db55655485784b74fc988d66e", "message": "Add a short shellcode on x86 for commemoration.\n", "proba": 1.2292675819480792e-06} {"commit": "85ae60013f23454f00c07db566f1e2a5dae955de", "message": "Updated configuration file name from config.yml to valigator.yml.\n", "proba": 1.1799725996297639e-07} {"commit": "11380578aa407fcd54c8a87c11b2406b980eaaa4", "message": "added little message saying tab can close popup box on main menu (when user hits ^X\n", "proba": 2.405766679203225e-07} {"commit": "e767495159c7972fa65c4c23db117e2969a73326", "message": "codacy tweak\n", "proba": 7.832205710656126e-07} {"commit": "3fca4bba4bec09c4b0e458d8f78d9d40d6652052", "message": "remove temp file using set_timeout\n", "proba": 9.779822676136973e-07} {"commit": "d946bff4800c919d50a70e1770066aa42bc38e36", "message": "gdbus-codegen: sort input files\n\nThis means the output (including lists of filenames) does not depend on\nthe order of the input files, which may matter if this tool is invoked\nwith a glob or some other mechanism that doesn't guarantee an order.\n", "proba": 1.2860660092428589e-07} {"commit": "cb68613c633b5d44d33cc93cdd720308cda68f22", "message": "/login perform logout and return 200\n", "proba": 0.9988116025924683} {"commit": "d88b0f77a624b5058dadb2df953c340e3c807558", "message": "fix lookahead type comment", "proba": 2.5807256065490947e-07} {"commit": "ea24dfeb378a6df64102f8c3ac0b1ce143a6e4e2", "message": "applied fix suggestions by vecna and hellais\n", "proba": 1.2008725036594114e-07} {"commit": "98b329ecc970f9210385f7c92cf0ac5407e092bf", "message": "fixed features abstract class so it uses ABCMeta\n", "proba": 5.3997536042516e-07} {"commit": "eade227d277780df30b6355840acbbe44e28bb9b", "message": "Make our use of requests slightly more backwards compatible\n", "proba": 2.769889420051186e-07} {"commit": "e094b611d6cf452998ed8514eb29206927add755", "message": "Changes regarding Hash-level directory structure.\n", "proba": 1.218049163753676e-07} {"commit": "072bc480cbc489cd89d03405026f152934893b7e", "message": "Revert \"Remove unnecessary and broken DELETE check.\"\n\nThis reverts commit 7906153b4718f34ed31c193a8e80b171e567209c.\n\nReverting commit accidentally commited straight to develop.\n", "proba": 1.2056231923907035e-07} {"commit": "4707545ec3a407cf15400586214e5a66dac49ef1", "message": "Reject matches where the attr is not in the source node.\n", "proba": 1.1000484079204398e-07} {"commit": "4e8fdf81610c59915fea89ac67b2e3740a392fc4", "message": "improve submission model with indexing and columns to be timezone unaware, due to mysql\n", "proba": 1.2218535516694828e-07} {"commit": "2867ea119a846e1eb61c64a206058dc0d28d090b", "message": "refactor: Use global API_URL and HEADERS\n\nSee also: PSOBAT-1197\n", "proba": 2.6647779804989113e-07} {"commit": "c5e219e7fa206de2f5180983927d2e58bc20e69d", "message": "Add 12262 annotation\n", "proba": 7.930335073069728e-07} {"commit": "475359d3b24495aa8890b40e2be867cf595ed81f", "message": "Update dtests for CASSANDRA-9441\n\nThis disallows frozen<> types in function arguments and return types.\n", "proba": 1.0014545637204719e-07} {"commit": "3422ccd14ddf1469bd1377f8907e30d09a3d7b35", "message": "convert tb to list\n", "proba": 0.9999992847442627} {"commit": "f964d106815088c5a7792a5ab686bc96525d8de8", "message": "fix logic to use ExoSM if there's an EG only link and user didn't forbit EG stitching\n", "proba": 2.205479745498451e-07} {"commit": "a0a99e9b3a0f70a370efe6ffab8d2f66ee873796", "message": "fix off by one\n\nand add some tracing\n", "proba": 3.5661247466123314e-07} {"commit": "273d4a3ea177724a2c0e3684c89bc9b80357ada1", "message": "[ipgen] Do not copy template description file\n\nThe instantiated template is not a template any more, so no template\ndescription is necessary. Its presence actually adds to the confusion.\n\nSigned-off-by: Philipp Wagner <5a4b10454c30419e54a1570be358a516ff84bb63@lowrisc.org>\n", "proba": 1.8408432822525356e-07} {"commit": "aa88d5192338e2263516de791665f819a00b5c36", "message": "T1397: escape backslashes in output passed to configtree\n\nThe ouput of config.show_config (cli-shell-api showConfig) does not\nescape backslashes, whereas configtree expects escaped backslashes.\nValues containing unescaped backslashes consequently lead to a parsing\nerror; cf. T1001.\n", "proba": 1.125885091823875e-07} {"commit": "b0356db3d527dd5e5239adb92e3f26d0f71d1d70", "message": "Lightos connector - refactor disconnect volume\n\nDisconnect volume needs to perform the following operations:\n1. Update our connection DB that the volume has been disconnected\n2. Flush any pending I/Os on the device file\n3. Update the discovery-client that the volume has been disconnected.\n\nSigned-off-by: Yuval Brave <4e937afa6b629a6bab3cefd3f1f5692c268d79a3@lightbitslabs.com>\nChange-Id: I5cd5456c4cc3e415fd08b678cc57fc794dc0621b\n", "proba": 0.003155234269797802} {"commit": "503df98d0071072bb3293028dcd46dc8704cd9ae", "message": "Added depthwise convolution; updated docstrings\n", "proba": 1.3065218240626564e-07} {"commit": "e5ea6e177c03a504a1835f0839fcff74d1a4ea25", "message": "ommit header for other stocks, only output header from 1 stock\n", "proba": 1.360336057132372e-07} {"commit": "dbe4eccf5de9f0444acdd7a6938e1be3f77c8fe3", "message": "save in file\n", "proba": 9.623059895602637e-07} {"commit": "fdb75ce29714fc1d3f64a46bae212375685e19d9", "message": "Use auto_update property\n", "proba": 5.865213097422384e-07} {"commit": "e5c985a6be0040ddac7b538abebcb55f24614368", "message": "Fix order of proportional legend sizes\n", "proba": 0.9996459484100342} {"commit": "567486baf70f0ebf19a84f3ac927feeebf9cd79d", "message": "Add new job to create Onesignal apps.\n", "proba": 1.261072242186856e-07} {"commit": "3b17e5dc2c1d3ccd18629e83f2c2302a4197cadc", "message": "Unpublish old projects.\n\nThis will help to clean number of projects on each categories, and keep\nonly the active ones.\n", "proba": 1.0769439029445493e-07} {"commit": "f8901a85fff2f6e368fe91f92a6aef022eeef364", "message": "Remove unused constant\n", "proba": 4.4997112127020955e-05} {"commit": "c69a82cb10999b8913789e56ba89fe8340e0b77e", "message": "User can have info without SSNN login.\n", "proba": 1.227529793368376e-07} {"commit": "a5ab75b4ef846f291e96af9e660b28609939163d", "message": "Add some unsafe-fx ops\n", "proba": 1.1956585694861133e-06} {"commit": "793af66034c2fab290c1aab555cf0d9215af4268", "message": "Stub all the kernel structs.\n", "proba": 1.3801712839267566e-07} {"commit": "fcd66f77133f29fa02de02f083c91c1228edf274", "message": "\u0418\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u0441\u043a\u0440\u0438\u043f\u0442\u0430 (\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d test_ \u0443 \u0444\u0443\u043d\u043a\u0446\u0438\u0439 \u0437\u0430\u043f\u0443\u0441\u043a\u0430)\n", "proba": 2.3481329947117047e-07} {"commit": "a4b3b7a2cfc900cf45f422edf6ab779904fef607", "message": "Local connection doesn't need a port.\n", "proba": 1.3907931872836343e-07} {"commit": "7bd98602b6571ed54370c80dcb241c3add17344f", "message": "STYLE: Docstring fixes to DiscreteLp.tangent_bundle\n", "proba": 1.9114050076041167e-07} {"commit": "c7cd9049e93a6df01c7337fa13df109042bdcb20", "message": "tmp fix for compare_hash error\n", "proba": 2.1573771391558694e-07} {"commit": "af2ea27180440c2f5b1d5e8469d593ec9f5b51c8", "message": "add zero-width to embeds about antispam\n", "proba": 2.8504416604846483e-07} {"commit": "30cf47305c0f44c479a1d9048fc089b70c0c41f3", "message": "Added add_libdirs() util function.\n", "proba": 1.2478241728786088e-07} {"commit": "bba6ce6fadde412e72f4d5a774c9f1c16a5086b6", "message": "BUG: replace odl import with from ...\n", "proba": 1.0854277832095249e-07} {"commit": "6364b4e23e2aa8f88e2241879fb340b60795cc81", "message": "- bumped version number\n", "proba": 2.934718565938965e-07} {"commit": "90411a75cee798f8cb367063282ef2683a58d81f", "message": "update domoticz indexes and and moist value\n", "proba": 1.4441617679494811e-07} {"commit": "6a2a1471cdd71c74c18344bbc6091cf2008b92ff", "message": "mrepr\n", "proba": 2.1317764549166895e-06} {"commit": "89add60ab17ef96d91e64d63637d6723dc8224ae", "message": "Commented out some unneeded parameters from the URL call\n", "proba": 1.6319394546826516e-07} {"commit": "cb2c52e252ef4888abc55f25abfe2214894020e1", "message": "Add ProgessLogger class.\n", "proba": 1.317933566724605e-07} {"commit": "d5e951c1754034f8a15fe3b378db3a2d1828070c", "message": "try loading dlls from numpy.core directory\n", "proba": 2.643735399487923e-07} {"commit": "330e41a168ded6d8ba00d041b2bc2fc6be015820", "message": "Support email addresses containing a + character.\n", "proba": 1.6808965597192582e-07} {"commit": "9dceb3da8d4969a8e71339e824e19dca1ed8e442", "message": "ENH: handle commit objects in from_filename.\n", "proba": 1.3173617219308653e-07} {"commit": "f1393cd74f971e8dd5d5dfd671947734b7e34c69", "message": "Issue 147: clock schedule_* did not create function mapping when scheduling an\nearly item.\n\n\n\ngit-svn-id: d4fdfcd4de20a449196f78acc655f735742cd30d@1299 14d46d22-621c-0410-bb3d-6f67920f7d95\n", "proba": 6.792367912566988e-07} {"commit": "fcb95d2ad3e752360b75dd4f42351ceca45aee11", "message": "Fix float division in clock.\n\n--HG--\nextra : convert_revision : svn%3A14d46d22-621c-0410-bb3d-6f67920f7d95/trunk%40338\n", "proba": 1.8059963622363284e-05} {"commit": "1ebe9642128b97699aec3456cac5f5c9578eca62", "message": "Pushing event handlers using magic names: avoid getattr (via\ninspect.getmembers) on all attributes, as this invokes properties and such,\nespecially problematic for partially-initialised objects.\n\n--HG--\nextra : convert_revision : svn%3A14d46d22-621c-0410-bb3d-6f67920f7d95/trunk%401550\n", "proba": 3.2769182780612027e-06} {"commit": "f1bb6e62610b913f2f1b8d5879264ac6966794e8", "message": "add tostring fxn to BaseElement\n\ntostring recursively converts self and all subchildren\nto html-safe xml. Overriding tostring behavior can lead to quick\nexportation of element to a string, which may be written to file.\nIn general, this should be the desired export-path rather than\noverriding encoding behavior.\nhtml-safe xml is xml whose attributes are html-escaped using\nhtml.escape(str(attrib key/value)).\nfor example: & -> & and \" -> "\n", "proba": 0.0023911213502287865} {"commit": "b4d45743be527961aef314fd5c45bcce2afc0641", "message": "little code info", "proba": 1.2398291460158362e-07} {"commit": "2183aa2151d5961c061b466c2330e6fc6a46b2ee", "message": "Channels/Calls working again in Asterisk 13\n", "proba": 1.343741615755789e-07} {"commit": "18cbbac28132c001d7ada5263a8b351eecd7db77", "message": "[dotest] --skip-category should append and not override.\n\n\n\ngit-svn-id: 4c4cc70b1ef44ba2b7963015e681894188cea27e@329358 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 6.9365887611638755e-06} {"commit": "9457a95bd15b3b4dd7021bad2546f41585232415", "message": "uncommented the unit tests for Livneh2013 ftp calls\n", "proba": 1.2555126716051745e-07} {"commit": "3de45068456e988ccc38e2a7dffc3c9db4ee5c5c", "message": "Update datamodel.py", "proba": 7.854308137211774e-07} {"commit": "b2930446240f6dbc88d3dcb88a8d1060929191e9", "message": "joblib parallel for learning curves\n", "proba": 2.0848789006322477e-07} {"commit": "afa579adf327f2dd3ecca8588657cff2909d311c", "message": "- fixed empty cell support (?)\n", "proba": 1.232870232570349e-07} {"commit": "f01b1b018206a6d84b2da6c24b23406b5715f165", "message": "Spelling correction in method names in the statistics module\n", "proba": 4.2274970724065497e-07} {"commit": "bda49f1de3620c5a4512d270336a042761e0a411", "message": "List Flask-WeasyPrint in the extension registry.", "proba": 1.0494073166000817e-07} {"commit": "01c78db2ad91f2c475a089b38600027a419007bb", "message": "Minor changes\n", "proba": 3.7887019743720884e-07} {"commit": "c530b49c08b1c4a24da05b0b202577638eb493c6", "message": "django-auth-ldap (Authentication)\n", "proba": 2.3185774011835747e-07} {"commit": "950300d155cfb43e04594ac35f8bd5d00591f9da", "message": "Added FilePacket for using shell commands.\n", "proba": 1.0457826959964223e-07} {"commit": "cce8d246f8cb1a299a766fac8210eeb8e6d75904", "message": "--imdb-queue now looks up title for movies when added by imdb id. fixes #914\n\ngit-svn-id: ad91b9aa7ba7638d69f912c9f5d012e3326e9f74@1880 3942dd89-8c5d-46d7-aeed-044bccf3e60c\n", "proba": 8.043236903176876e-07} {"commit": "2baf3670fcda4473017afafc85e86a33addcb25b", "message": "[tests] fixes to the common AgentCheckTest class\n\n* For metrics and service checks, if there were none reported during\nthe check run, the coverage report would raise because of a division\nby zero.\n* Remove the warning message when using count.\n", "proba": 1.077531521787023e-07} {"commit": "b4ab48bd45a5dec0a0d62928a333ef12b8fffdc1", "message": "URL Correction\n", "proba": 4.702340447693132e-06} {"commit": "ab54fd1ebcb5e1a07b14d8aaf0376f119bdc55e9", "message": "Stop with bad loss\n", "proba": 9.186058491650329e-07} {"commit": "434fc3503cad1b60974a5e0effbacadc120ce14c", "message": "Update manipulate.py\n\nJust altered findall to find_all", "proba": 1.7267845464630227e-07} {"commit": "08b6dd4baca28ce8bcfd12cf0de6538164ec4bef", "message": "Make hostname more random. Reuse get_random_hostname() for emails\n", "proba": 0.003946379292756319} {"commit": "be625618446ab46d7513aaa6d732059cb517372f", "message": "Delete pyq-osrm-tsp.py", "proba": 0.00010187891166424379} {"commit": "eb2cd411dbcc9955260a5c62d2647b6535dde697", "message": "Fix blantant syntax error in some debug output\n", "proba": 1.071391670848243e-05} {"commit": "d63f79e726b03babb4bffc89bfb00db86ff1e183", "message": "change angles of vertical vs horizontal\n", "proba": 0.0002865353599190712} {"commit": "f4967865494bd8a333af2d1027acac0b774bacf7", "message": "created a get wrapper such that the cookie can be refreshed\n", "proba": 3.597595252813335e-07} {"commit": "65284177a65d3f8e89c0f88975ca39246de14a25", "message": "GRI admin enhancements: display ETA.", "proba": 1.0997946020552263e-07} {"commit": "59e07d231ddf331082b46b6efc100d16e66dfd75", "message": "Fix unregistration\n", "proba": 4.1998966480605304e-05} {"commit": "30ffa979f33cc4a692da3e4b2938e57eaf7e4579", "message": "add on_url to HttpFilter\n", "proba": 3.2124597737492877e-07} {"commit": "ae7afccb12e6b16b29b435dbdc77bb7d6f16edbd", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "fc4ba2b510c8b81dca0ebfb5d09fba99ecff8b67", "message": "Move lock out of build menu.\n", "proba": 1.1836016966526586e-07} {"commit": "446a882bd3b9f811688fe2152042f99c59b7e165", "message": "Added support for quantified BV without theory combinations\n", "proba": 1.3112826025007962e-07} {"commit": "91018e03b45fda02bd0dc302925cedd3d903a70f", "message": "Test for input schema validation\n", "proba": 3.683268232634873e-07} {"commit": "b087724951460517cc14a7f3d661461f896bc28b", "message": "improved health of genome alig and retrotransposon code\n", "proba": 1.7120432005413022e-07} {"commit": "2e108304d0404adb50b19db3c370dac1c058cec5", "message": "game_mode: Start the game/editing modes split\n", "proba": 5.333802732820914e-07} {"commit": "3983b54987e1525ed92385b6541b664bbc52e7c7", "message": "fix phantomjs not work in all mode\n", "proba": 1.1741661865016795e-06} {"commit": "e658637c18acdb59ee5f4ceacce106e2b38cb6b4", "message": "Added Y_metadata to log_predictive_density\n", "proba": 1.8199243356775696e-07} {"commit": "f9b6ae91e3b28f4ee5a6c6794e9a054c8f8d2c53", "message": "\ud83d\udc0e\ud83d\udc55 speed up tests; fix lint issue\n", "proba": 1.1588185344635349e-07} {"commit": "cd291bde527bff8a94e0a0cfc8e5fe50b77266f3", "message": "add logs\n", "proba": 1.707098022052378e-06} {"commit": "61afce90b59b5cb80faf80dd87b9ae52e6a75c74", "message": "align ghpython.xdraw_faces with rhino.xdraw_faces\n", "proba": 0.9991112351417542} {"commit": "fcb12dda3dc95421452d7ce066c0aa6eeeb16521", "message": "fix: update to follow change not to import .compat in .utils\n", "proba": 3.3252209163947555e-07} {"commit": "f592f4449e6b5856e462ceae88cefb06a8b5f2a8", "message": "Fix Deprecation warning in tests\n", "proba": 3.0781697546444775e-07} {"commit": "491a78e35af0cffd799319f42ac2051b7673fd02", "message": "Read the config file before running cli.\n", "proba": 1.266930667043198e-07} {"commit": "d9717ba5abda31aed2981526e2a52ca303156706", "message": "Better pretty referrers\n", "proba": 1.4196611175520957e-07} {"commit": "f11b199db8dc7b9747660cacc64eb193ce9197cc", "message": "Properly handle the close of an outdated connection.\n", "proba": 2.6154478405260306e-07} {"commit": "d10580bf43839a9540183f38be1a38720cf07663", "message": "fail gracefully if mosek is not found\n", "proba": 7.102791528268426e-07} {"commit": "b2a0f040ff0536ab4192cb998a6c04c0ccdd45de", "message": "Small edits for clarity and local optimization.\n", "proba": 1.0436147590553446e-07} {"commit": "c68cc329d148e87a6cdd1b2cbfd6da2a07f4486c", "message": "Fix-up docstrings after Connection() signature change.\n", "proba": 1.0739183409214093e-07} {"commit": "7429141b7b2fa8792301fc5422fc7c32b20c0203", "message": "More keys\n", "proba": 1.3129881892837147e-07} {"commit": "82f389f414b7b92a27f58bc26718c7f7ac00a24c", "message": "Add emoji in report\n\nSigned-off-by: Harsh Gupta \n", "proba": 0.06153203174471855} {"commit": "894acd0e5198036af1c8465746d33bfeca1a113b", "message": "cleaning up\n", "proba": 1.0348471732868347e-06} {"commit": "842ad772d95a9702229eb32c534b44b71137f80f", "message": "more ipc list updating\n", "proba": 1.2374572122553218e-07} {"commit": "ae630a6cec924fc8d5329532ed73b4ddc8d0a84c", "message": "Move set_value below get_value, inline with elsewhere in pytac.\n", "proba": 1.0596369293125463e-07} {"commit": "841893b8c4be2618bbcd6272c709604364e3a2fc", "message": "[FIX]ir_property: If we add a property on a many2one field with multicompany the value of main company is replaced in all companies value\n", "proba": 2.340652116572528e-07} {"commit": "15ad0260ff560fe05fe1b7c8a24a87370f84ca23", "message": "screenshow: More tweaks.\n", "proba": 1.0844137676713217e-07} {"commit": "a725db4f6cb0c73ea526f73cb0f9767eda671726", "message": "fixing BertForQuestionAnswering loss computation\n", "proba": 2.586609468835377e-07} {"commit": "4c046af842bcf08e407d9697ae9f1cebadf70e45", "message": "Allow progressbar_background color to be none.\n", "proba": 1.8163422055295086e-07} {"commit": "8d4c724c2dd3c61f7db9a4e411833a8d516aa521", "message": "Sort config keys\n\nSigned-off-by: Daniel Nephin <6347c07ae509164cffebfb1e2a0d6ed64958db19@gmail.com>\n", "proba": 1.071266524377279e-06} {"commit": "502f1fdf6bdeb21f3b66f4a5d175ab5ff805231b", "message": "[FIX] module loading: allow addons path entries to have substring of others.\ni.e. having ./addons/ and ./addons2/ is now possible\n", "proba": 1.9428425446221809e-07} {"commit": "4a1f6493a78ce246aac81f243d2f562f22880529", "message": "Return type None on nested call was breaking details display (#2416)\n\n", "proba": 1.298538165883656e-07} {"commit": "3a4fc11aaa346138c70ee374ea806328fdbde03d", "message": "PIN translation\n", "proba": 1.2425615523170563e-06} {"commit": "7e59200e20edf5188f8782e6bd9e62fc6155c419", "message": "make sure getTupleStrings always returns strings to its callers\n\n", "proba": 2.2655265752291598e-07} {"commit": "699f6cb449d7755fa76898b0a2f0750d73dd89f6", "message": "Enable openid.yadis.etxrd._Max to compare under Py3\n", "proba": 3.221378221951454e-07} {"commit": "68fc17bb9366e655ab80c8bf0137b0b7b786f6d9", "message": "Fixed umfpack setup script.\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@1791 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 2.5518809252389474e-06} {"commit": "7851f93cdd598dfbe90b1e7e503a03fbb5e89a21", "message": "fix log change to work with objects again\n", "proba": 1.5323840329983796e-07} {"commit": "b32203a3e6f67e352237e07cae23170ea5e134e6", "message": "dupes: implement iterative instead of recursive\n", "proba": 2.0967152522644028e-05} {"commit": "091d73a53a56ccc8501937806af0563e5e6b8a5f", "message": "add basic error handling for provision\n", "proba": 3.3641481422819197e-07} {"commit": "3fb155d23430e33251de92713194352a988f675b", "message": "DeepZoomGenerator: Move coordinate calculations to a helper function\n", "proba": 2.1097039848427812e-07} {"commit": "4890e66703d788f7080d189f2aead15ec817fb37", "message": "Delete index.py", "proba": 1.5797528249095194e-05} {"commit": "9ce26c27476334686ad0efe35f7beb64d428c4b8", "message": "more pep8 fixes\n", "proba": 1.186268576702787e-07} {"commit": "98e1b49bbb60bab56ca2f2ff92b82204bd86dff5", "message": "Testing\n", "proba": 1.8708933566813357e-06} {"commit": "f6ffadc7ba09b8e6eb52187eaf58a103dd1c6403", "message": "added extra compile args for cython\n", "proba": 2.4570093160036777e-07} {"commit": "155e6e69e574f9ea3de4310151a84898fb9391b6", "message": "Fix issue 438: add missing 'enum_type_wrapper' to setup.py\n\n\ngit-svn-id: 54a00c96d7caad0f188abf6e0ebede48f6547068@457 630680e5-0e50-0410-840e-4b1c322b438d\n", "proba": 1.1795152659033192e-06} {"commit": "c039f379da72d10945708a7949f274d1d6dd7e66", "message": "changed line terminator to newline for intel_feed_csv\n", "proba": 2.9601276310131652e-06} {"commit": "e10e8615c9dda7f80df71bb483315172679df4b7", "message": "[skip travis] Update Python setup\n", "proba": 1.3893706807266426e-07} {"commit": "e6436c76a0623df8499bf7b895093f3421516a26", "message": "python 3 style exception capture\n", "proba": 2.1362200186558766e-07} {"commit": "98be5b6d118d1d3b3fd737a9ccb4c3dc80876928", "message": "Allow value_for to accept string for diatonic_pitch.\n", "proba": 2.3147420336044888e-07} {"commit": "1c180f6e7bb5aa20df728c831b878d3056ca21f4", "message": "instead of \"statically\" pacing streaming, try to keep a certain \"distance\" from the client\n\ni.e. try to always stay 4s ahead of the client\n", "proba": 1.8038785754015407e-07} {"commit": "3d37b07acd8df496be28c504105bfbf391bfdfbc", "message": "Fixed potential errors with brands that contain colons.\n", "proba": 1.3844702095866523e-07} {"commit": "355e04f30b634c8f9ccb44369d5044319c000120", "message": "Cleanup monkey patching of clang-exe\n\nFix #1521, or so I hope ;-)\n", "proba": 1.0949888462619128e-07} {"commit": "c7f259d9c361099d23d32a7c777368284401301c", "message": "implement append-to-plot functionality for the Theory view\n", "proba": 6.039691129444691e-07} {"commit": "1eae96fd433e4c2fbcf26745adae34d0f371b291", "message": "fix black formatting\n", "proba": 0.003996377345174551} {"commit": "ef8215c0c24227523c819a4ebdddc134c19c93cb", "message": "do not breakout, it works better now that you are mutating within the population\n", "proba": 1.548535095707848e-07} {"commit": "6bc4ecb24245e5656f1fa6bdbd51ac2d940cfd09", "message": "fix for app running behind a proxy\n", "proba": 2.9203013696132984e-07} {"commit": "d6d1d21f5aced29bef21bb50ab8719c975b07bf5", "message": "Fix bad merge\n", "proba": 0.0002393568865954876} {"commit": "0cf68a3919bde9f86acaf758f8ef64df4981759b", "message": "Minor PEP 8 formatting change\n", "proba": 1.5492767602154345e-07} {"commit": "115584024ab310325d5737c25a371c3192f1dbd5", "message": "Mangrove gain year count seems to be working correctly. Trying to make all the tiles now.\n", "proba": 9.77908882759948e-08} {"commit": "fcd2ece1a66d529736709bd37a9ebf448c9be558", "message": "added more nodes and processers per node for submit_miso_pipeline.py\n", "proba": 1.4402941417301918e-07} {"commit": "f8e0bee14def339962d07d293a83a420b875903d", "message": "tweaks\n", "proba": 9.085585475077096e-07} {"commit": "ae851fa86b1a4874136ed8d257f31d641630bef7", "message": "fixed issue with cross domain errors\n", "proba": 2.887641699089727e-07} {"commit": "c9ec3e46a37e8a96d4b3b01bd55d8f0d0809225a", "message": "Add help message and description\n\nosf now prints the help message when run without arguments\n", "proba": 1.7843122179783677e-07} {"commit": "b23ce704ee796c3609f73ca1fef7e297a8a95617", "message": "only print if not zero\n", "proba": 0.003377219196408987} {"commit": "56c8ff87885f8f902319fc9ac8a181358565cc3c", "message": "remove FIXTURE_DIRS\n", "proba": 1.8834403817891143e-05} {"commit": "416cc4c40c76ad816365826e40d93669f9a39ed9", "message": "protect against none usys\n", "proba": 1.5869169374127523e-06} {"commit": "f17dac13461ce438cead8a2e15f748149a799609", "message": "models: user init makes more sense\n", "proba": 8.818250353215262e-05} {"commit": "6398559f97cf82ac788378bda1abb40b9f290cef", "message": "Ignore use_old_ssl on Python 3+\n", "proba": 3.5225357351009734e-06} {"commit": "17b7008d3ad68752ce04d5220fb6d3d6c5cd16c1", "message": "typos\n", "proba": 0.9996148347854614} {"commit": "0c65f7e7426a03834a492df6dde248d6ad1a6f8a", "message": "cuda bugfix\n", "proba": 6.467677735599864e-07} {"commit": "6651e490f649c6982aac9249610b418456c34ce9", "message": "Clean up pyxl/element.py a bit.\n\nGive internal names a _ prefix.\nSkip empty classes.\nUse a class variable to avoid ugly and expensive hasattr().\n\nTest Plan: Unit tests give no errors.\n\nReviewed By: dan\n", "proba": 4.6542311338271247e-07} {"commit": "5e12f26fee168f2fe5168397757b54c433e6ff5d", "message": "Allow type stubs for FlatLayoutPackageFinder\n", "proba": 2.83010763268976e-07} {"commit": "bf097a7a833b8cd3ec4d49503ba3456669a4e886", "message": "Change Delegators to Property\n\nDelegator seems to be more of an alias.\n", "proba": 1.1027037061239753e-07} {"commit": "0da9d268eabc208b895f2e8b0517fc10a032d921", "message": "Fix remote run cmd (ignoring --edit-flags)\n", "proba": 1.610102060567442e-07} {"commit": "da78bf3e6b9eb10131c6d34af04ec15beccfbda2", "message": "Clarify usage docs\n\nThe policy docs were confusing because they start describing the\npolicy rule expressions but reference only one format. Rather than\nprovide a short and incorrect description in the intro, reference\nthe section that describes the format in full.\n\nAlso, the section that describes the rule format is moved right\nafter the intro since this is what the reader is going to be\nlooking for.\n\nAlso, the \"Policy Rule Expressions\" section is clarified. Since the\nstring representation is preferred, describe that first.\n\nChange-Id: I69b74e2d0bd9cbe8fe447a1e0f8fa5ce2470b431\n", "proba": 0.9999773502349854} {"commit": "3ef3db4158dca8849f2735c5515fb7b7928fc0c1", "message": "Improve performance of reading BathyXYZA\n", "proba": 0.00011520790576469153} {"commit": "2e92019ef957b547856e81a144db6845bf95d881", "message": "fixed load_classes() for Python 2.6\n\n- __import__() function does not work when passing a file path as name\n", "proba": 6.163552825455554e-06} {"commit": "1839b2bc68e7b54da3095152f72ccb1be7153b0b", "message": "update function name", "proba": 7.934094355732668e-06} {"commit": "c9a749b6e962c00f89600e378beda03ab77bb53d", "message": "Setup CRM Easy Project > Configure the Database\n", "proba": 1.1993662951681472e-07} {"commit": "cb86c34c3b43bd9396979c0694e7f1089acb9787", "message": "UDP recv size\n", "proba": 2.279232148794108e-06} {"commit": "8b92679b20243d925f68c4943c4937c0f9fd7bbd", "message": "Removed abstract names confusion\n", "proba": 4.8486461309948936e-05} {"commit": "9a734c81e97ffa1517600577b7efab118d874ea1", "message": "h2_random_rotations\n", "proba": 0.00012936300481669605} {"commit": "9188afbcdcc102a643c058f2504334a671e11829", "message": "n\u00e3o mostra modelos com multiplicador == 0\n", "proba": 8.4427920228336e-06} {"commit": "266e2aa7c3415025be142a5dabfab10bac34e663", "message": "Removed unused code from ChainClean\n\n", "proba": 2.3559523754101974e-07} {"commit": "142719bedc1393a5cf02b5933cca3ccae5c20dca", "message": "Bugfix: Exception in Tkinter callback\n\nTraceback (most recent call last):\n\n File C:Python27liblib-tkTkinter.py, line 1542, in __call__\n\n return self.func(*args)\n\n File C:Python27libsite-packagesqtools2qgui.py, line 196, in on_open\n\n message='Open one or more files', multiple=1\n\n File C:Python27liblib-tktkFileDialog.py, line 125, in askopenfilename\n\n return Open(**options).show()\n\n File C:Python27liblib-tktkCommonDialog.py, line 48, in show\n\n s = w.tk.call(self.command, *w._options(self.options))\n\nTclError: bad option -message: must be -defaultextension, -filetypes, -initialdir, -initialfile, -multiple, -parent, -title, or -typevariable\n", "proba": 0.000631043454632163} {"commit": "6725a7743c6f4fb093447d0af8243a0597af3646", "message": "0.66 scaling for octave plots\n", "proba": 1.4043398266494478e-07} {"commit": "d7104076a66938a6fc50610370d3bd4f0865d8cd", "message": "added csrf exempt\n", "proba": 1.7574065225289814e-07} {"commit": "1ea76bab4048d95d123d7e2f025c69da1cad58f1", "message": "sagews: make print \"foo\" work in sage 8.9\n", "proba": 0.0008204127079807222} {"commit": "4d1c3118c804de701018ec2cd8a885f130a828df", "message": "No bug: compare-locales might not have a checker for a file-format, that's OK (#1143)\n\n", "proba": 1.201637758185825e-07} {"commit": "b701cc1d7867438f06535f94ef3437104e4bad78", "message": "feat(vsts): Expand requested scopes\n\nAdd 'vso.code', and 'vso.release' to the list of requested scopes.\n", "proba": 1.2802082949292526e-07} {"commit": "eefc6a81bd85dfc13f3bc633914d59f733518029", "message": "fixing migration logic\n", "proba": 7.789470828356571e-07} {"commit": "5f8040a3a361a5c230ff06c920c81d8f4383c5c7", "message": "fixed motor signs in fc\n", "proba": 1.932111075575449e-07} {"commit": "2905f003f306e1f722902bf8a9a8af0ab85e03e8", "message": "adaboost can save to disk and read from disk\n", "proba": 2.1918170034496143e-07} {"commit": "45243c22f3bfd65e41f56152511aa03fb2c69ae0", "message": "Bug fix: missing bincount import\n\nunique_learning_data_elements() needs bincount but import was not added\nwhen it was moved from agglo.py\n", "proba": 5.259319095785031e-07} {"commit": "91b339bc1c5aaba17d99de1096b609a52dc9194d", "message": "Fixed bug on the endpoint aggregation if using a format api or None (without format\n", "proba": 5.213988174546103e-07} {"commit": "e36176d4d2097ed4550b0a0e26f3d00deab051a2", "message": "Fixes an import as well as adds the temp directory cleanup.\n", "proba": 1.0402799688336017e-07} {"commit": "03437b64c94477fb389ba152c711dc2be0b24c0b", "message": "whitespace, comment cleanup\n", "proba": 4.807076834367763e-07} {"commit": "d7b02cde4299c685159cb59bfdde7a8cefe9c606", "message": "Don't BILL for INTERNAL calls\n", "proba": 2.2851121173061983e-07} {"commit": "6ba847c5267b4a6cebb48465e4121e78d3c9ec47", "message": "added all of Namespace Manager methods to Graph... so that Graph's can be a NamespaceManager\n", "proba": 2.215495271684631e-07} {"commit": "da8cf66ea18d625782d011f51350140695fa2834", "message": "deployment ready\n", "proba": 7.499217531403701e-07} {"commit": "86c3c89de958f432ddaca07bd619857582abad5d", "message": "typo fix\n", "proba": 1.0356772691011429e-05} {"commit": "3e1f3efc2cb3020d9e5406d55a37e8d9b3d3ed40", "message": "changed away from telepot\n", "proba": 3.727698469901952e-07} {"commit": "446fc31d3db96f48b76013212ec00b20d1acb316", "message": "Cleanup - removed superfluous prints and comments, corrected copyright symbol\n", "proba": 1.2017042649858922e-07} {"commit": "dc56498c2c2e86ac27dc6a2064c12120caffd39b", "message": "Improved reset on the client\n", "proba": 5.907275522076816e-07} {"commit": "93275f3482d49b98715e4c8846cc6b2c6cd40275", "message": "a silly fix\n", "proba": 3.3756469974832726e-07} {"commit": "c56288dcd0f219138e335ec3385cccc41f13c549", "message": "Corrected HEC-HMS output of 24 digit in hour position\n\n- In HEC-HMS output, it's mentioning the time of\n 2017-04-05 00:00:00 (mid-night) as 2017-04-04 24:00:00\n\n Corrected this issue, before write into the Discharge .csv\n", "proba": 1.731869087961968e-05} {"commit": "c569af8452a2b72c3006fa890ec7e3908b3565ea", "message": "Fun with flags\n", "proba": 1.4124498193268664e-07} {"commit": "52d7fa63cbd83f0abdce0d68ba31346a0febab2e", "message": "more docstrings\n", "proba": 2.314706790684795e-07} {"commit": "65b29775b94171a9050315d8344b47432a4213c8", "message": "With @travs:\n1) Created stub for I/V curve model. Fixes #50.\n", "proba": 9.64950217507976e-08} {"commit": "c09c495c2a655a0b4f825493ffd7b3da2e815131", "message": "Add support for version-specific downgrade tasks\n\nUpgrading can have no specific knowledge about additional\ntasks besides upgrading the configuration, as upgrades need\nto be able to go to any future version (within the same major\nversion). Downgrading, however, is version specific and always\ngoes to the previous minor version. Therefore, the downgrade\nprocedure can do arbitrary specific tasks prior to switching\nto the new binaries. Add a hook for this.\n\nSigned-off-by: Klaus Aehlig <4ce51de36d9068cd7db2eec1151e0f3f95419008@google.com>\nReviewed-by: Helga Velroyen <2d0126b1ec6f9ec5cbec4a7012aa14faeaef10f5@google.com>\n", "proba": 5.813911343466316e-07} {"commit": "8b992966b21666587a1119cd510bbb6cad3d5c82", "message": "Show memory as GB\n", "proba": 2.819133158027398e-07} {"commit": "e90fbc24e262ab561443d64153da6b3af333a912", "message": "small issue\n", "proba": 1.1223543197047547e-06} {"commit": "f4ed6c9c2a263e9239d3eaa8f9dfc4f046d40825", "message": "New function: check_post_bad_request_syntax\n", "proba": 3.631785875768401e-05} {"commit": "a8b9df435759e229c96bd9df3761316424bbfd43", "message": "re-add vgd_levels8+3d test\n", "proba": 6.751262731086172e-07} {"commit": "2c9b9e7f59f7cbf87040ada185b24143d7e07383", "message": "Fix sorting\n", "proba": 2.4202319764299318e-05} {"commit": "434a980f1d02eaf1117492236747b7daf4dba374", "message": "Fix derivative computed from unsmoothed pressure\n", "proba": 5.870003292329784e-07} {"commit": "f4a402f6507c4badda73eb2d913e8084bddece73", "message": "code structure pack_item in parser\n", "proba": 3.174877519995789e-06} {"commit": "d45f901133028a40f3acb8773a5b4ea022e74d26", "message": "Fix poorly named attribute.\n", "proba": 1.4063073194847675e-07} {"commit": "af4040d898affb9ea2e70fc15152bc85a5a2914a", "message": "updated docstrings\n", "proba": 4.0185781813306676e-07} {"commit": "bf7311b460b670958f816acbdab986f88a831d6d", "message": "modified\n", "proba": 4.220560185785871e-07} {"commit": "6d5ebb6b653b9551c78383e23309860f1f650ba3", "message": "These defensive OS checks are not covered\n", "proba": 1.345141811270878e-07} {"commit": "8c62063e955f616bfce5a600e89990d3e3731d92", "message": "print merged pdf in graphics.grabseeds.batchseeds()\n", "proba": 1.3054021508196456e-07} {"commit": "bff7984a261f0db6053b8580f5963646f98a5194", "message": "Modified syntax of lambda expressions (bug fix)\n", "proba": 1.2884341060726e-07} {"commit": "73863cfd1a492a64493324b27ee12c7c99f22db3", "message": "Import project settings correctly in test runner\n", "proba": 2.419964459932089e-07} {"commit": "1603a8ad24f9c3a059b9a740fb4e9c4a36e641b7", "message": "Update query json logic\n", "proba": 3.5926964301324915e-06} {"commit": "86acc629ac88352e8e8041227cdeed3b249d2e3d", "message": "Encountered syntax error in python3.5", "proba": 5.337878974387422e-07} {"commit": "53b34e9c4a0e17095af545d803cd574a3f93da68", "message": "Fixed a bug when there was no scope.\n", "proba": 1.1107356812090075e-07} {"commit": "52e5ca7e2499e87ab04b60e521135a979bcf1132", "message": "Fixed tangent plane check and other minor fixes\n", "proba": 1.364660420222208e-07} {"commit": "171ced6d34b56f626ec8a280343c788ec5633e6e", "message": "let's try commenting out the conversion, now everything should be in unicode already (hopefully)\n", "proba": 1.588050935197316e-07} {"commit": "a074225a949b06520d662c533a4abff65c169d04", "message": "int to str\n", "proba": 0.00027652279823087156} {"commit": "8ff45af307097e97eb6aa7bfb424f8a0ca618fe6", "message": "enh: speeded up repeat in sparse_geometry\n\nNow repeat is *MUCH* faster by implementing a faster indexing setting\nto reduce overhead.\nThe repeat construct of the Hamiltonian should now be preferred over\nthe Geometry.repeat <- Hamiltonian(G) for performance reasons.\n\nSigned-off-by: Nick Papior <81a73bca3d342ffee33d7cf845fdbf77b6553831@gmail.com>\n", "proba": 6.82558891185181e-07} {"commit": "4dc2b3b80753ba1a7bcc4f9fe0749f17d9d7071b", "message": "Convert tab to space indention\n\nFixes linting errors as pyflakes expects spaces.\n", "proba": 1.2740041199776897e-07} {"commit": "c3e894c1a52dfeddae46a4e942688f8935656705", "message": "enh: added warnings when using construct for 1-orbital systems\n\nIn case the user accidentially have two atoms lying ontop of\neach other sisl will now print warnings.\n\nSigned-off-by: Nick Papior <81a73bca3d342ffee33d7cf845fdbf77b6553831@gmail.com>\n", "proba": 2.5458132313360693e-07} {"commit": "64a3cb2446b664817329bac127da9fe91c7e54ee", "message": "Added test for changed semantics in Python 3.\n", "proba": 1.1389090559532633e-07} {"commit": "11954b5b2b16564a33c9370bb849117e4da7cdc9", "message": "TST: Silence test warnings.\n", "proba": 1.434304124359187e-07} {"commit": "a116a22a2250241f7f9cf60808680bb17fb0264b", "message": "0.15701 \u4f7f\u7528\u4e8c\u6b21\u56de\u5f52,\u8fd8\u5f97\u8c03\u4e00\u4e0b\u554a\n", "proba": 1.2289940798382304e-07} {"commit": "3c6b41b3019f65b26fc2ab5401d55697f8c65e15", "message": "Thread queries in main method\n", "proba": 2.828162166679249e-07} {"commit": "b78554b3319e01f2a5f8f913cebd85e3eaea2ebf", "message": "Fix ContentsManager on older python\n", "proba": 3.654936051589175e-07} {"commit": "aa3569616d58a850a2827e9d40fe416fd20360e7", "message": "check_pk and check_k are private\n", "proba": 8.082050953817088e-06} {"commit": "5f99bec3bfee93d5d2713a376dba0c27a8d2a457", "message": "[FIX] flask_middleware_connector: las fechas de pr\u00f3xima recepci\u00f3n ahora tienen en cuenta las fechas con fiabilidad media\n", "proba": 5.486147642841388e-07} {"commit": "993830c316a7076c184f516c871134a3e0d2c787", "message": "prepare a frame for viewing added constraints\n", "proba": 2.4425756350865413e-07} {"commit": "cdbee6f4c93c7ced320707260836cd844f83c523", "message": "Expiration value typo bug\n", "proba": 6.099589882069267e-07} {"commit": "f2b67cd0c36992683b202cdd23efd6df03e9f214", "message": "Add a bunch of purge aliases\n", "proba": 9.810229357753997e-07} {"commit": "7b48999bb3dd6d5f9909564c491609b0fcfa57e7", "message": "Automatizando mais o customers #2\n", "proba": 4.0374703758061514e-07} {"commit": "b656810d4d83d43eef106485155968008e796210", "message": "Linux & Windows: Fix for Preferences crash caused by lazy-loading QtMultimedia (#1545)\n\n* Qt: Fixup for the preferenes dialog crash\r\n\r\nThe crash was only happening when scanning the QR cameras. If the camera\r\nscan code was removed, the crash would stop happening.\r\n\r\nI suspect that QtMultimedia doesn't like to be invoked from a button\r\nclicked handler or an action handler, or while constructing the dialog,\r\nor both.\r\n\r\nSo the fix is to do the camera scan from the top-level event loop via a\r\nQueuedConnection.\r\n\r\nWe fire off a signal on showEvent of the preferences dialog, which is\r\nconnected via QueuedConnection to a handler that then imports\r\nQtMultimedia and then does all population of the video device combobox.\r\n\r\nThis fix makes it so that I can no longer reproduce the crash.\r\n\r\nThe ultimate root of the problem likely is some but in PyQt5, as it does\r\nnot happen with PySide2.\r\n\r\n* Linux: Fixups\r\n\r\nQtMultimedia lazy-loading was still crashing on Linux intermittently.\r\n\r\nThe only fix was to load QtMultimedia at app startup, rather\r\nthan lazy-load it from within the Preferences dialog.\r\n\r\nThis fixes the crashes on both Windows and Linux.\r\n\r\n* Minor nit\r\n\r\n* Nit: Make sure the QueuedConnection slot can't execute after dlg close\r\n", "proba": 0.00015718319627922028} {"commit": "449192b111cf3959118da3f01a0fc8a942ecd6bb", "message": "Removed requirement of scanner conf\n", "proba": 1.4501071632366802e-07} {"commit": "12f5e4f862ff44bda0868338bd1bb9e07b3a50e3", "message": "Implement smiley id extraction from URL\n", "proba": 2.9109883143974002e-06} {"commit": "9cbbbbdac010e6f68653acdabd8ac95a4ee03853", "message": "Fail early when trying to use Chalice decorators\n", "proba": 2.3516020064562326e-07} {"commit": "e1a02b45e7c5e0065f50ebd2c309f05afc22e29c", "message": "Menu UX fixes\n\nVarious fixes in the menus;\n\n* move the 'Delete' from 'file' to 'wallet'. As this is about the\n current wallet, not a file.\n\n* Fix the ampersants usage, removing duplicates and adding some obvious\n shortcuts. (for clarity, this is for keyboard navigation using 'Alt').\n\n* Fix usage of elipsis (...).\n Any menu item that takes an action is potentially dangerous to click.\n To make clear that some menu options do not in actual fact take immediate\n action, but show a dialog you can still escape, then we add the ... to a\n menu item. This commit fixes all the menu items to do this properly.\n\n* Small consistency fixes in title-casing (there should be none in the\n preferences dialog)\n\n* Move 'Ctrl-Q' to become a visible shortcut for Quit.\n", "proba": 2.22934801286101e-07} {"commit": "19219d91ab589a400714fe5fe784007bc143cceb", "message": "Refactor naming.\n", "proba": 5.809034178128059e-07} {"commit": "76badac1d44d6c1e436dfc02f4a9a6aebf94721f", "message": "fix: properly detect if directory is contained in another\n", "proba": 4.1549844809196657e-07} {"commit": "b5797ff8c7430eb6df0ec329d1dd59f33b32e2d2", "message": "[Qt] Fix to exception raised if attempting to broadcast in offline mode\n\nIn offline mode the broadcast_transaction method on the main_window\n(called by lots of other subsystems) was not checking if we had a\nnetwork. It assumed we were online. This would lead to an exception\nbeing raised about NoneType not having a broadcast_transaction method\n(obviously!)\n\nFixed this to tell the user they are in offline mode and they must\nrestart to go online.\n\nAlso, if the network is not connected we're now catching this situation\nand presenting an error window telling them they are offline. This is so\nthat the user doesn't end up with a 30 second delay before getting an error\nanyway.\n", "proba": 1.6331739516317612e-06} {"commit": "e064d5a378f7960ba87700e8c0ca92d57b288901", "message": "Next on Python's Top Model\n", "proba": 1.6034944394505146e-07} {"commit": "34d717bafb91de122f59aaf9cb1c21340e38b5f9", "message": "CYTHON: minor cleanups\n", "proba": 2.564268584137608e-07} {"commit": "e444ff35194f9f332ed8a49ff0df0a8166bad47b", "message": "catch invalid password exception\n", "proba": 5.502282874658704e-06} {"commit": "87eeac51adf4441ee7bed8b2b6764b1087b95b39", "message": "Fix setup home dir for root\n", "proba": 2.57746648912871e-07} {"commit": "f51c8019917ea689a5d2e27e7b68e5a621f4ecc3", "message": "BUGFIX - ATMO-431\n", "proba": 1.4259354941259517e-07} {"commit": "0a3c1c032ab0c8fef4f2eb1ddb137f855f445e4c", "message": "client: Support python2\n", "proba": 6.556235234711494e-07} {"commit": "f2353edb4da579b0a19f52c41b37f4420c4e1087", "message": "RES-437 ability to disable the skipping of repeating stable encodings\n", "proba": 1.1519836107254378e-07} {"commit": "e44ce128b5a7107b1b034c760607ee5ee1294ff7", "message": "Update filesystem.py", "proba": 1.409070250701916e-06} {"commit": "554394709371b429121488b1ba60ec52cd80d2f2", "message": "cleaning up\n", "proba": 1.0348471732868347e-06} {"commit": "e8f5f76667f29b0ee19f5b75146961d4391d429a", "message": "Reloading BigQuery table in system test before fetching data. (#3468)\n\ne.g. https://circleci.com/gh/GoogleCloudPlatform/google-cloud-python/2065\r\n\r\nError introduced in #3426.", "proba": 1.0847737286212578e-07} {"commit": "4f888109f3003acf96db2cdb168c5bbd9e466568", "message": "tests: fix flakiness in connection cleanup test (#487)\n\n", "proba": 1.1957207846080564e-07} {"commit": "da1e3341fd89888823ebada6f82a95ee1bfd71c9", "message": "[test-tica-proj] fix ctor call", "proba": 2.621283385906281e-07} {"commit": "640a77807b34391de4bd15079e9d7da31dc4691e", "message": "* subversion/bindings/swig/python/setup.py\n Add libsvn_repos and libsvn_swig_py to the dependencies list for the\n 'ra' bindings. (Rumor has it that Brandon Ehle submitted a similar\n patch. I'm too lazy to dig it up.)\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@844801 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 2.663672603375744e-06} {"commit": "ebdca8fdb4bf011e441c0de78d0f3191bc0d5afe", "message": "correct signature\n", "proba": 0.00032472889870405197} {"commit": "c59802b0dd25bf98af92d332a538c16cc4dc537d", "message": "dummy GK should not deploy mgmt network, mgmt network can be considered as the default docker0 bridge in the emulator\n", "proba": 2.1282794193666632e-07} {"commit": "314127ee93e8c10d9fdb8a1aca2a6460cfbc6545", "message": "Add support for leg. armory and tabs in search\n", "proba": 4.34308230978786e-06} {"commit": "4ad6c8b281cfa32ed7a9a86a3d33c3b19b354582", "message": "Test tweak to fix codacy complaint\n", "proba": 1.3357204409203405e-07} {"commit": "f4f48b84459388de6d2146cbf52e301fc95c3348", "message": "Missing end comma\n", "proba": 0.005594154819846153} {"commit": "7c6629204385a303a8a8b99324f6fdae8fa03470", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "2944ccecf075a5be7072acec9a0a863516488151", "message": "Fix ranges of we and wf\n", "proba": 2.3774030921686062e-07} {"commit": "3368c11676e277866323cc9bb424e932cdc397ad", "message": "we were better off creating the record at sfa after it has been created at plc. That way we dont end up with a record in sfa and no record in plc\n", "proba": 3.493746305593959e-07} {"commit": "be67398e368a78624abf2c48090d4dce3b1ca8d7", "message": "Add svd_retraction behavour to TangentVector\n", "proba": 9.595943311069277e-07} {"commit": "e3fb61a2423102986f96728965f37c1a5880cebd", "message": "docstrings...\n", "proba": 1.5606686076807819e-07} {"commit": "d954f4b11399c5552aec7c7d1b6b7a1ebb0e8e71", "message": "protect against void bwlimit\n", "proba": 2.06789409276098e-05} {"commit": "0aad49dc54aaceaf58a2153ca6189d3f164b204d", "message": "Add success messages in settings\n", "proba": 3.714670810950338e-07} {"commit": "eb17689a4dbe81f007805a99eeeef54806a96dd8", "message": "* subversion/tests/cmdline/svntest/main.py\n (write_authz_file): Simplify Python code. Fix grammar in a comment.\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1657566 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.999995231628418} {"commit": "266661594d12939bd05d60ab2f0c8c866e92026d", "message": "Fix dict.keys() PY3 compatible\n\nThe dict.keys()[0] will raise a TypeError in PY3\nas dict.keys() doesn't return a list any more in PY3\nbut a view of list.\n\nChange-Id: Ib58f7130352aa4c2a4bae3a830a5a83ee8a711d1\nCloses-Bug: #1583419\n", "proba": 3.079353700741194e-05} {"commit": "8251db2e8a92234428a0c4a270c3d99b8b76b846", "message": "adds sub-wlsubj001, ses-02 to tranfser_to_BIDS\n", "proba": 3.448415952789219e-07} {"commit": "1e53ae28365421f4816719b4a8316ec29fa74ece", "message": "DOC Document behavior with duplicates for SimpleImputer(strategy=most_frequent) (#18923)\n\n", "proba": 3.242073773890297e-07} {"commit": "0d1f5864d0d7db3655d149517a41b651e051164b", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "6c09914be381831a1cb4cfffcb0106e8a79a611f", "message": "fix: Remove unused import\n\nSee also: PSOBAT-1197\n", "proba": 1.1830599788709151e-07} {"commit": "2fb37322b237cb989320a46d39966c2b55e81bfc", "message": "[ids] Fix typo\n", "proba": 0.9991043210029602} {"commit": "fa76329c7ee21c3aa0ec9960d75bbf74e5dba925", "message": "Simplify dependency validations\n\nThe dependency validations are all very similar and follow the same\npattern.\nHence, a refactor was done to simplify the dependency validations and\nstreamline the validation process.\n\nThis should provide more maintainable code and hopefully help spot any\npotential issues while avoiding mistakes by future validations that will\nbe added.\n\nChange-Id: If7a1ba59d6ed0bf9a028d514d1580e18c9602bfd\n", "proba": 0.00020746170775964856} {"commit": "392e54e5086ce8b3617f6aab8b7e54fe516a0c41", "message": "update regex to support hostnames containing underscore (#694)\n\n", "proba": 1.3004306254060793e-07} {"commit": "644b3ee7da3bb3eb4a79eff1e8743a5f779a518a", "message": "Success shouldn't crash\n", "proba": 7.970300430315547e-06} {"commit": "b6088317f8bc0ecdac6c423649ba085cd89cf8ca", "message": "Follow-up to r24572, put back XFail accidentally removed.\n\nNot quite ready for that yet...\n\n* subversion/tests/cmdline/update_tests.py\n (test_list):Keep mergeinfo_update_elision as XFail for now.\n", "proba": 1.0418625606689602e-07} {"commit": "77abc7d1bc6b7b9914dbc5a3b69c5aa2d0e02f08", "message": "support big UDP data\n", "proba": 3.688104754928645e-07} {"commit": "6b96e35ff985ff2b1577cecb4759d6601630c7b4", "message": "delete unnecessary variable args\n", "proba": 6.191442480485421e-06} {"commit": "cf7b83a9733977e4c8335e74745e94e0aae24bb6", "message": "Added metadata functionality\n", "proba": 2.2678632660699805e-07} {"commit": "939998db349c364aa0f5ba4705d4feb2da7104d5", "message": "Fix float type flag definition\n", "proba": 8.874003469827585e-06} {"commit": "0bd3be65e401209824c2d947a2474259a0fe7002", "message": "Streamlined BufferGroup.allocate().\n", "proba": 1.778332574531305e-07} {"commit": "67016a95b98a6994db8d145fc820812eebb13b3c", "message": "global speed limit\n", "proba": 1.195892309624469e-06} {"commit": "9d15048abfd5f7d0baf1b2712bc6a9e01d462aad", "message": "FIX compute field in survey user input\n", "proba": 3.12790547241093e-07} {"commit": "9090752b82a8ed9594f99f331bfdf7fcffb67109", "message": "\u65b0\u589e\u5ba2\u6237\u7aefIP\u663e\u793a", "proba": 1.8014272029631684e-07} {"commit": "051fa98e534160b5c391388cebc7bc41d6b3e65e", "message": "fix host_list type\n", "proba": 4.184520548733417e-06} {"commit": "e9130ae0f441ea955ddee62eeee8796a5bb3a6f5", "message": "Don't eval tools for truth, just fail if it wasn't the right type.\n\nNewer buildifiers were still flagging tools as not always being set,\nbut the real issue was if the value in the args was say an empty\nstring, then that last if would have still failed because an empty\nstring is False. Instead fail if someone passes anything that isn't\na list or depset no mater what the value is.\n\nRELNOTES: None.\nPiperOrigin-RevId: 241521323\n", "proba": 2.2507419998873957e-05} {"commit": "c904d50537df085829f30314b4246977b400067b", "message": "the file api now supports ranged requests\n", "proba": 1.448445914320473e-07} {"commit": "7fb0dbc9a9f5973e16fb265d68a96c749a33a9ba", "message": "Update ceph_list_pools\n", "proba": 6.080400680730236e-07} {"commit": "63711f5007a5049210d85b33d42aa94f6edcb0d1", "message": "minor stuff\n", "proba": 1.7851395739398868e-07} {"commit": "9ce24ec9ce5ea32d9cedc3f340d575e092ab6d70", "message": "added test for callable Validator instances\n", "proba": 1.5804573649802478e-07} {"commit": "a7cc28d79cd3a6cb3979b87b847a340650a0a44d", "message": "Rework the retries decorator\n\nUsed to inspect the decorated function in order to fetch parameters,\nwhich isn't the way a decorator should work. We fix this by\nintroducing a wrapper function (connect) which has access to parameters\nof GraphiteHandler and can passed them to the decorator at parse time.\n\nWe also add proper docstrings in few functions/methods.\n\nThere *isn't* any change in the functionality of retries decorators.\n", "proba": 1.4011426685556216e-07} {"commit": "2f7595c451b9d41cb07c2bb7db1f0e7b356609c7", "message": "closes #43 - ambiguous fsm transitions warn, instead of erroring\n", "proba": 1.248418044497157e-07} {"commit": "2dd680cfbffe5143d8ee265e03148f06c0557925", "message": "added in some ratty form of screening with epsz\n", "proba": 1.2568520446620823e-07} {"commit": "c58006ec4399ebabdea24975f53f623df6b5ae23", "message": "Fixed typo.", "proba": 3.5226929639975424e-07} {"commit": "8d0379a3c7fa430e2f0ed2bd7e57ca7dd73c010f", "message": "Remove titles from URL exports\n", "proba": 4.934382218380051e-07} {"commit": "f6b654670a59faf8dc7d65ca7478ae57c0af62a5", "message": "Fix regex\n", "proba": 0.9999806880950928} {"commit": "8af1dfc882312f26e6ed92935a4c371265d604d7", "message": "fix lint\n", "proba": 1.3035814845352434e-05} {"commit": "4c14194a0650c601b3e15fdeabc03d5d75ffabf6", "message": "add convenience\n", "proba": 1.6747152358220774e-06} {"commit": "3b87313878d2b6448f7b14642fbc70462461d5ce", "message": "Fixed rpc consumer to use unique return connection to prevent overlap. This could be reworked to share a connection, but it should be a wait operation and not a fast poll like it was before. We could also keep a cache of opened connections to be used between requests.", "proba": 1.0634961000732801e-07} {"commit": "0e43e320cd741605098941fda47253cbf0764a8f", "message": "Added coroutine function to submodule level\n", "proba": 1.9411498897170532e-07} {"commit": "0d4f8b226f08cb91210708b5fcf485f15b218abc", "message": "Remove duplicate method\n\nDuplicate method(_do_test_create_instance_above_quota)\nare found in compute/test_servers.py. Remove it.\n\nChange-Id: I0753992cadc40adce40999bb5ae8ecd503bd53bc\n", "proba": 0.002481215400621295} {"commit": "9926685cb78366028f6a3e905bed186b6ede36bd", "message": "Improve UT test_api_common\n\nAdd cases into api common UT.\n\nPartially Implements: blueprint test-addition-refactoring\nCo-Authored-By: Dharmendra Kushwaha \n\nChange-Id: Idcf2782d8799870140f217d640149e67604b052e\n", "proba": 2.047257476078812e-05} {"commit": "3aadb7fdec8953d1529e5aace2ff53ffbe73ec8c", "message": "cache with and without backprop (2nd try)\n", "proba": 1.067540438270953e-07} {"commit": "b1ee82d9059f99403f885939594182df4bf11457", "message": "Send message ack in rpc.call and make queues durable.", "proba": 1.0640886216606305e-07} {"commit": "b41897bb75db800f39b76bf4a9ab6be1b03d0cd4", "message": "Clean up the SES rule set before requesting new cert\n\nThis is needed because requesting a cert produces an active\nrule set and commit dda0b74e806b350e9ed9f0494eb6f125b21bb9f3\ntriggers an exception when there is an active rule set.\n", "proba": 1.244262790578432e-07} {"commit": "b76763bcb544fc54d4482d94a0360b8e0ddce2c5", "message": "Propagate the \"throw exception\" in case of return statement as well.\n\nCode like \"return 1 / 0 \" is now optimized into a static exception\nraise as well.\n", "proba": 1.9454680000308144e-07} {"commit": "52689ae9e38f7f37393f3bb570338da5ac66d3e0", "message": "Activity pagination fix\n", "proba": 3.6680827975033026e-07} {"commit": "45e5ae28377abc0eefd2e71ef553380b25283c48", "message": "Fanout queues use unique queue names, so the consumer should have exclusive access. This means that they also get auto deleted when we're done with them, so they're not left around on a service restart. Fixes lp:803165\n", "proba": 1.403172547043141e-07} {"commit": "c58db08fbf0cc5601e02129666ff9060930d7088", "message": "added test case for #238\n", "proba": 1.9312010124394874e-07} {"commit": "4ca8f1efd9ded43d90be386578c1751d319fdd40", "message": "LTE Plasma Test\n", "proba": 2.9790126632178726e-07} {"commit": "2a2cfbc4bfa8e306295741186992b5f1f44985e0", "message": "Add start time and time elapsed entries in overview table.\n", "proba": 1.186110196726986e-07} {"commit": "37e859852720c8282b3b93ca0558898b662b5625", "message": "Git error overwrites in file\n", "proba": 3.5835833500641456e-07} {"commit": "ae6e1a609f258fac79019b903f4ea7a98dfe0a81", "message": "list_target fixes\n", "proba": 1.1459935649327235e-06} {"commit": "44365bbaa914c6e243d7be082e8545f191ce3b79", "message": "removed testcase\n", "proba": 1.8674761577130994e-06} {"commit": "ed396e9237242c2539cf3a192fff3980db705fa4", "message": "nullinux update\n", "proba": 4.267595556939341e-07} {"commit": "d0883abf3c0720bf5c17d568201f8344a34a255e", "message": "fix issue with service exception not being parsed/created properly in some places\n", "proba": 2.783673096473649e-07} {"commit": "896e87281ffe3c12b28ab7732b1b0f972cc33130", "message": "Remove colors from legend\n", "proba": 7.795066494509229e-07} {"commit": "d851c848bbab105a57a5a24f1fdef5728c686ca6", "message": "Handle deleted worlds\n", "proba": 4.776076707457833e-07} {"commit": "8197797771e98f3b12c75d2546bd2be77567efa4", "message": "Added verbose argument to create_timeout_function()\n", "proba": 2.0953194734829594e-07} {"commit": "0bd51ce3a56bffaf7aaa5acec3023f6ab8a7482b", "message": "skipEvents renamed better. Clean up printing. Start messing around more.\n", "proba": 1.0214071721748041e-07} {"commit": "07e12518e3c9747763451af994113f71e824f0e0", "message": "adding in svd support\n", "proba": 3.3820464295786223e-07} {"commit": "6683f13b4e4a1cb466c7b0528d96ff841f09c015", "message": "metric: print error if unable to read\n\nSigned-off-by: Ruslan Kuprieiev \n", "proba": 2.477418377111462e-07} {"commit": "33ef59792173df418e6526e3ac79e5b97bf99446", "message": "Also corner in result, comments\n", "proba": 1.0896572888441369e-07} {"commit": "4fbd4a4e35c366d4ce228eeec56b6f9d18016d47", "message": "Some commented lines for future\n", "proba": 1.1932181109841622e-07} {"commit": "8e4e5df20c3e686c7940d9a8ecee25b4f3d52a42", "message": "get_texture() takes averager as param ('mean' or 'median')\n", "proba": 2.5709787223604508e-05} {"commit": "3cfdbca045fd8abfba28507683f8c5551a596c9c", "message": "Remove lefted lines\n", "proba": 2.009466015806538e-06} {"commit": "67cc83d108f00473d412d2fb3793f522df1567dd", "message": "audit - improvements, kwargs, cmd extended, exception, general\n", "proba": 1.247022396455577e-07} {"commit": "8529f7ea112bb819be0c2f0bd15c3bc0ad4a02d7", "message": "audit - valueize, sec fix fixed for dictionaries\n", "proba": 1.2045923369896627e-07} {"commit": "ad05af56769b3c897f45d8f9541e89b182a66c53", "message": "added error handling\n", "proba": 2.748362817328598e-07} {"commit": "d05088f16f229b4f33d4d82c97d2add4a16894dd", "message": "Add Apache license text", "proba": 3.4156497008552833e-07} {"commit": "d832237bcd429186e5c78f6a031e642cd83cfdc7", "message": "adjust default current\n", "proba": 1.5547576595054124e-06} {"commit": "71ded9e8e48c859e79a86c4255302d28a55bc836", "message": "fix zwnj in token splitter\n", "proba": 5.070007773610996e-07} {"commit": "016d1b409b95cba65f28a3c581b4aa15fcb94333", "message": "added loggin\n", "proba": 2.932897302798665e-07} {"commit": "aaaafe57351eb69962a80834177db90b9b497bc5", "message": "make dumps_slice function a method\n", "proba": 4.8595240514259785e-05} {"commit": "ac9d0a0416b12dc2a9d6b073783ca51351bda9e4", "message": "Added view of user folder\n", "proba": 3.075989525314071e-07} {"commit": "25d881ab1f4a2f9bc0653c05c87d847b8189b14f", "message": "added sorting to the categories.", "proba": 1.1525770560183446e-07} {"commit": "60603a8575ed22228558ace20361540bdc95c0f2", "message": "Remove debug print\n", "proba": 3.4594083899719408e-06} {"commit": "a5c976364d179bcd807274ac15b62ff2b5f64190", "message": "compare starttime with boolean not ERROR\n\n", "proba": 0.9999898672103882} {"commit": "8429a8d0f56a4ec240a056a00844f99af00a2a6d", "message": "QComboBox.textChanged was renamed to editTextChanged in Qt4\n\nApparently there is compatibility in place for my version of PySide, but not for some others.\n", "proba": 1.0229922509097378e-07} {"commit": "b05bd8d4424836a0e7c8738be9b525f18ca3de1b", "message": "Mention renderPM (and other renderers) in the userguide.\n", "proba": 1.0035425646037766e-07} {"commit": "dda52fa64511a623cf0bac3767b350de9083b1bc", "message": "decaptcha", "proba": 2.7098669761471683e-06} {"commit": "49a8658cac4b8f842feae9a00ad3b2480c7916ac", "message": "Add is_read_compacted to create_reader() in python API (#5483)\n\nFixes #5365", "proba": 3.6873450426355703e-07} {"commit": "1ef2761049c5e37897c8155814255fbe1b05d68d", "message": "add test for related votes to events", "proba": 1.7563475296356046e-07} {"commit": "99732b1f77c5b3a57943108947872efcfbe0d685", "message": "pw_presubmit: Allow specifying setup.py roots\n\nAllow external projects to specify setup.py roots in init_virtualenv.\n\nBug: 138\n\nChange-Id: I6df944f6374ec4c6589782c040d00a20acab3b52\n", "proba": 1.4268579207055154e-06} {"commit": "65a4eb20889ee8a58216979b90bb442453ef68f8", "message": "Changed loaded to autoload now it will only autoload if the environment variable AUTOLOAD is set to True\n", "proba": 0.006491473410278559} {"commit": "096863d61d0e725760bad2599138a913d1e94ead", "message": "Add g1.http.clients.bases.Request.copy method\n", "proba": 3.280587463905249e-07} {"commit": "e92548df5c0cd1db4b6fd31a80844ffd4e530448", "message": "Use the new BuddyModel color-changed signal\n", "proba": 1.6429015659014112e-07} {"commit": "bf93855038afe7b5fcf6dcbd7ca2604658ef5f7a", "message": "Fixed loading from checkpoint issue with load param dict\n", "proba": 2.2659953913262143e-07} {"commit": "7fac0f2d52c397247435f9eae17f6fe38e383c95", "message": "fix #99\n", "proba": 3.9670359797128185e-07} {"commit": "ef779319bfc23f503f063ce6a038fb13b3b862e8", "message": "added ability for ClassVectorParameters to assign a default icon to their children", "proba": 1.4666858305645292e-07} {"commit": "0b03d72d0eac24f7619ee194f37844682d695e38", "message": "FEATURE: Add User class\n", "proba": 2.3028390216950356e-07} {"commit": "c3f708bdd9f3e0635f87724f67146dc18dd60640", "message": "fix jekins error\n", "proba": 9.357183330394037e-07} {"commit": "91bf2bfb76a6320746fb260b568dd68403bc25a4", "message": "/sgf no longer requires login.\n", "proba": 1.061631564880372e-07} {"commit": "2cf211569d84615c764515b8c9579cdc9227c5cf", "message": "jep dataset (#1840)\n\n", "proba": 1.5669442632315622e-07} {"commit": "7ae9515d10e7ec37320f0582146afe949a831c4e", "message": "[test] Add skip behavior tests for allreduce\n", "proba": 2.519731765460165e-07} {"commit": "83bf53c1c844231f332fbdc47d414503f2348f1d", "message": "Remove unneeded list variable, add documentation", "proba": 6.189366672515462e-07} {"commit": "cc29e7cef4601adbe33147ed8f28c9dd906ca734", "message": "Completed about_multiple_inheritance\n", "proba": 4.568686904349306e-07} {"commit": "367d739085d6c06ac7245320eac002156823cc9a", "message": "Com_Setoption\n", "proba": 4.3377818315093464e-07} {"commit": "54daf7ca4f7cab8bad9e4c55cc3f81e663bf8a57", "message": "Use context manager for output file\n", "proba": 3.871368335239822e-06} {"commit": "b2d2747a0a0ee8291e42b863c5c9ea9232a1ff02", "message": "session_auth really should NOT use thread_data.\n\n--HG--\nextra : convert_revision : svn%3Ae1d34091-3ce9-0310-8e96-997e60db3bd5/trunk%401323\n", "proba": 1.1528094319146476e-06} {"commit": "e306da90946da9e5e39d97cab1ea185d76fd17ee", "message": "Added comment around line 616 concerning possible bug\n\n\nsvn/trunk@753\n", "proba": 1.3176406810089247e-07} {"commit": "571c568855187e0eed7b44760b325e705f86ae10", "message": "Allow REDIRECT_URL to be set through an environement variable (#19587)\n\n", "proba": 1.151158883772041e-07} {"commit": "de9877a4d2def79a086ffd7d3232ae15f6c17682", "message": "Added form class settings to Embeddable\n", "proba": 1.75321815731877e-07} {"commit": "bb06efc576f57c23563d77a37e75922835fb0a35", "message": "catch array items by parent tag\n", "proba": 3.9960380604497914e-07} {"commit": "10db5e8b893a84e765162535f64e1ede81d48b47", "message": "Add comment to show usage example", "proba": 1.3783771635189623e-07} {"commit": "bd61a065d9241ea1ff15f9cd9eeceba7b0ec9792", "message": "Added functions for plotting/histogramming arrays\n", "proba": 1.56786200022907e-07} {"commit": "70f773104479f1f6f447aa83d1223949f2cc7cd0", "message": "Fixes for Python 2.\n", "proba": 1.413101955449747e-07} {"commit": "e2130cd57db9e9ff7e2524a0cd0d9fcbd6d3db02", "message": "cache all schemas on startup so appInfo is fully populated\n", "proba": 1.4634052547535248e-07} {"commit": "867ed63d33406ccf7002af7ba20e487542b30791", "message": "remove servername from database if update fails\n", "proba": 1.4769507288292516e-06} {"commit": "9eb9fe8e1133fa744bae477761839eaecced1ee9", "message": "pr review\n\n[ci integration]\n", "proba": 1.200452288685483e-07} {"commit": "e56aaa6335e696bff61f3dcdcdeeab0e6f96245e", "message": "oops, accidentally removed libs_path_dir\n", "proba": 3.7064327784719353e-07} {"commit": "26c1cf8a623d5cf10f3bafeb2820e401c302d005", "message": "update.py: add back cv/api/v0 and common/bq/pb\n\nIt was accidentally deleted in https://crrev.com/c/3490758 :P\n\nAlso, swtich to python3 interpreter in this change\n\nR=qyearsley\n\nChange-Id: Idc05dc70bb39d2e69cffa3a066abf5438d2f87de\nReviewed-on: https://chromium-review.googlesource.com/c/infra/luci/recipes-py/+/3495390\nAuto-Submit: Yiwei Zhang <50b2a565e2e78c292794832469a30ce5abc9959c@google.com>\nReviewed-by: Quinten Yearsley <747cf52e0cef2e3e9371802a2d344b6c87126a4b@chromium.org>\nCommit-Queue: Quinten Yearsley <747cf52e0cef2e3e9371802a2d344b6c87126a4b@chromium.org>\n", "proba": 6.61070657770324e-07} {"commit": "b937de3b944f85917cc31a4ddfba66c2f7fa93ef", "message": "Fix formatting of wrong checked-file list\n", "proba": 0.0019463114440441132} {"commit": "a177031c4a34a4b33332622f41a56672e10c422b", "message": "Item access_restricted Fix\n\nIf item.access_restricted has been set to False we will not get all permissions to item. Optimization :D\n", "proba": 6.114615871410933e-07} {"commit": "4593546250990b52525e5db791ed8a50a88745bf", "message": "File list iterator\n", "proba": 3.5294153803988593e-06} {"commit": "c65dcbb938ccf090106efda749562ec9a45bbefc", "message": "Simplified bokeh Callback initialization\n", "proba": 2.335499857508694e-06} {"commit": "5fd92208122c82d05b63b99ab5c8e2007aa0ee14", "message": "Fix typo within cover/knx https://github.com/XKNX/xknx/issues/64 (#9527)\n\n", "proba": 0.00010906068928306922} {"commit": "0d837833f816e44e06ab77c680215b44b8d0f94b", "message": "Fixed (hid?) bug in calculateBondSymmetryNumber().\n\nThe function Structure.split() returns a list of structures that result from\nthe splitting. In calculateBondSymmetryNumber(), this function was assumed to\nreturn exactly two structures, which it should if things are going normally.\nHowever, this behavior is not guaranteed, so a check was added to ensure that\nexactly two structures are returned from split(). If not, the function returns\n1, which is as if it was not called for that bond.\n", "proba": 7.691742212045938e-07} {"commit": "2b5cdf7da2e31b3c28c8962d840bfd26f8ab9669", "message": "Bug loading data without column names.\n", "proba": 1.2134879057157377e-07} {"commit": "34812fe2deec64229efd4119640f3c2ddf0ed415", "message": "Make the sprint layout a bit easier to look at\n", "proba": 2.5570889761183935e-07} {"commit": "1d671f0bcf4070c5f25ac47a1346b0203df40c4f", "message": "new visualization with plasm\n", "proba": 1.801867028916604e-07} {"commit": "39c099b828914236dccd659302b2f17e23318c8e", "message": "print name of unsupported hyper method\n", "proba": 0.0005408653523772955} {"commit": "6954d6ba3576e944b27dbe6c8e05b8311077c009", "message": "Unnecessary includes removed", "proba": 2.337308302458041e-07} {"commit": "5c8fed7dba6ab982ed6585115465db733b3b641c", "message": "Fix user mimic view to store session key hash\n", "proba": 4.2119435761378554e-07} {"commit": "bd6a83f5174bca487ff440dac3f59754cfe3c12c", "message": "[FIX] Adapt to OpenERP 7.0\n", "proba": 2.9321215606614714e-06} {"commit": "5290bdee1ca400db846e38ac848b9bfd0ba63d71", "message": "replace cameraserver with better one\n", "proba": 3.3450405680923723e-06} {"commit": "e100f6689e7b1800b53bc217d24bf3a10f7c6f77", "message": "Update deb pip handling\n", "proba": 4.163004234669643e-07} {"commit": "57d35c1dcdfddc0626063e1c171dc2633f7fbf31", "message": "v0.6.4\n", "proba": 5.78518984184484e-06} {"commit": "9dc84e3beb02b3efd9c30855245bf83081d5ae57", "message": "Further fix for non-spec musicAlbums\n", "proba": 1.5701932909450989e-07} {"commit": "170b26ef3cb6cdc8e0b6c966416b8a7c9da87d1d", "message": "bug solve and project halting\n\u6682\u65f6\u4e0d\u518dcommit SOGAL\u4e86\uff0c\u5148\u4e13\u6ce8\u4e8e\u6e38\u620f\u672c\u4f53\u76f4\u5230\u6e38\u620f\u5b8c\u6210\u518d\u4ece\u4e2d\u5206\u79bb\u51fagal\u6846\u67b6\u3002", "proba": 9.881122764454631e-08} {"commit": "c32499076efddf486e9bbd6127afe824c0aacda7", "message": "Highlight all matches in regex search\n", "proba": 1.0141811799257994e-06} {"commit": "449385a12b1ea1332ae84a23f9fd2fbb604369b2", "message": "replace prints with logging\n", "proba": 4.5793636672897264e-05} {"commit": "28a62e02d79f83d34833885feb2112ee0e7c4041", "message": "Fix small bugs\n", "proba": 0.0011342515936121345} {"commit": "70f0460c1459293a342d92a57611c6a56f375117", "message": "[Adjustment] develop, commit, fail black, adjust, repeat...\n", "proba": 1.1244976150237562e-07} {"commit": "010c65cc9a605306e5ab80e22d743bb41297a048", "message": "lower config parser log criticity (fix #236)\n", "proba": 1.211591467153994e-07} {"commit": "8cd8d73cd4fbea3c658b44f8b4c765ea93e09080", "message": "templating: Pretty print Renderer.\n", "proba": 1.2144371908107132e-07} {"commit": "9572e23c0785bb9d3035494297a71237b383ecb5", "message": "Improve ImageCaptcha\n", "proba": 1.0977518059007707e-06} {"commit": "403be319f7607801d93d639ca2c58ac0dfed10e2", "message": "raycast check works for any texture size\ncamera controller initialization\n", "proba": 1.4698476036301145e-07} {"commit": "7d45be4bafec8d09085b798fe7f09de3d22e0dcc", "message": "Removed static and uploads URLs from urls.py. staticfiles_urlpatterns handles\nit.\n", "proba": 1.2700250806574331e-07} {"commit": "82740dcfb3567083ffd03e880e89d59eea0ec346", "message": "Modifying 'getAccessTokenFromFile'\n", "proba": 9.216041689796839e-07} {"commit": "2844cf94782a238c32f194923f822924319d5839", "message": "mo bugs mo problems!\n", "proba": 2.5082906063289556e-07} {"commit": "0f4f2d20832bb97c7d2e24c299fa3a045e398510", "message": "Add abbilety to make direct SQL queries\n", "proba": 8.754254281484464e-07} {"commit": "dde6314d3d95b013df0984a6640b61a38390bec4", "message": "fix bug & edit width of bar\n", "proba": 1.7157272225176712e-07} {"commit": "9320668f2c313b5d84b0d6d58bb39ed57cf9a93e", "message": "EC-11 Changed a setting I shouldn't have. Woops!\n", "proba": 1.0699906738409481e-07} {"commit": "9cf52f1d000e14b40d5c98b4ab14646f7b82aab7", "message": "API: vernacular patch\n", "proba": 2.156376694983919e-06} {"commit": "e5d011aa7f3758d0dd5a3e5f77440701fe512fd2", "message": "Remove linuxread.py\n", "proba": 2.897058038797695e-06} {"commit": "0c888653c41258c3435251f15e9444ce2d81879e", "message": "added initial hero command\n", "proba": 2.3386081693388405e-07} {"commit": "83b126746b2163c319752320e0b2f4baed59ef9e", "message": "Temporarily display lists via widget.py\n", "proba": 2.847347104761866e-07} {"commit": "0e575408cd458e2c60a5239f900890d0b27dc7b8", "message": "Bumped version to 0.1.3\n", "proba": 3.837302210740745e-05} {"commit": "cd90b7963419d960f19732a87bec2a4a0c8abf1b", "message": "Fix misleading error when missing auth scope\n\n", "proba": 2.0208033674862236e-05} {"commit": "a04c0972ddbf49a2b46ac46cce78d87cdf070d57", "message": "Documentation of !music\n", "proba": 2.1570768637957372e-07} {"commit": "16dda03889f92ab4ac84725c572e55f3872856c4", "message": "Remove questionable loop\n", "proba": 2.5242584342777263e-06} {"commit": "88cb6e2a08b11ef14d635dea5136491b881ae82f", "message": "Quitar formats innecesarios\nxq el ide no me dijo n\u00e1???? uwu\n", "proba": 0.9457672834396362} {"commit": "64f47122f6ef1e4e564b3670cc69e8fd5e990ff3", "message": "Add files secex 2000 and 2001\n", "proba": 4.2249419607287564e-07} {"commit": "d5751b5830e59a520f509dc4ed25ad051160e121", "message": "Updates author field in forms.\n", "proba": 1.1401631638818799e-07} {"commit": "a06f0744aab0d262643ea2e58e3aa5713b3a0267", "message": "Updates help controller to include edit post method.\n", "proba": 1.0440228948027652e-07} {"commit": "3e7d2d46042ed41e2d6752a9372337fe07eb19e9", "message": "Removes shutil import from news views.py\n", "proba": 1.3407513677066163e-07} {"commit": "53a7d9d700f266b35d0a93b37d90432cd0a3f603", "message": "temporary replacement bleach\n", "proba": 4.4096483975408773e-07} {"commit": "ed653938409283dd3a001cc6f5655a9a6316e1f7", "message": "Extract reading wheel file from wheel_metadata into separate function\n", "proba": 3.811170017797849e-06} {"commit": "20f5cdc419d5bb2b43c79c44e307e67bb05a97b6", "message": "Check header length\n", "proba": 3.6125200608694286e-07} {"commit": "c72fa37e0de77e450c92d2904c56f1f9d0990490", "message": "more testing in geni_trust\n", "proba": 1.099180124697341e-07} {"commit": "5313100e10ffe95fa6d697dcdd96dde57a664e97", "message": "Go as fast as possible!\n", "proba": 3.6806102343689417e-06} {"commit": "e02591b1982a0cd5970af7423e1c5d7525b098a4", "message": "Added sampling_func parameter to FollowVectorField.\n", "proba": 1.1193661464403704e-07} {"commit": "a891a4cb8454ff238a73c1aae6182ed96938780b", "message": "Improve error handling when setting the locale\n", "proba": 2.5075421490328154e-06} {"commit": "bd8081aeecd48255704e922e59072a1fcedc3843", "message": "Update CMPA documentation\n\n[skip ci]\n", "proba": 1.1404491573330233e-07} {"commit": "760db446004983fa5cf7b73d16b3b841a2a6fc3f", "message": "PEP8 case on attenutation methods for DigitalAttenuator\n", "proba": 1.1457002813131112e-07} {"commit": "2be3e447f2e986f1436e3d3d402eefc22544a3f6", "message": "clusteredEventList: avoid bug when 2 cursors have the same position\n\ngit-svn-id: f4e1a40f847802203273bde8e26df4d11611876a@3660 44470bb9-56e9-0310-a0f8-c586564d3dc6\n", "proba": 1.085547683032928e-05} {"commit": "c491b87d1c418c94da91e48690d2b4f75bfb6613", "message": "movedo token from team form to team list\n", "proba": 1.982662496402554e-07} {"commit": "b6e040f6756a9686a411cfd25add32ad3e8583a2", "message": "mappingpanel: tiny fix\n", "proba": 9.393187951900472e-07} {"commit": "607be96175718d2b43aaa5949c9115339eec181a", "message": "added pools names\n", "proba": 6.039328468432359e-07} {"commit": "4ce807022cb6de07ea3b3b35865343ada91cf445", "message": "added 'jvm_arg' option for jar-tool config in pants.ini\n\nThis does not solve issue 169, but it makes is less painful and easier to configure/diagnose.\n\nTesting Done:\nAdded this to pants.ini:\n\n[jar-tool]\njvm_args:['-Xmx257M']\n\nI used '257' because its an unlikely value.\n\nPANTS_DEV=1 ./pants goal ng-killall\nPANTS_DEV=1 ./pants goal bundle \n\nps auxww | grep 257M shows the NGServer process.\n\nBugs closed: 169\n\nReviewed at https://rbcommons.com/s/twitter/r/421/\n", "proba": 2.635846976772882e-05} {"commit": "47167df25b2de7af0ad228652a7dc191fb959c99", "message": "Add async_task exemple on maintenance\n", "proba": 3.7561110843853385e-07} {"commit": "6c3d9789a8d65055cdc69d173f417aa16cdf53e0", "message": "configure ssl task\n", "proba": 2.3957461507961852e-06} {"commit": "ad3995bc25ce5897589087e4b5f8b8467f8e2bce", "message": "Fix test_get_applet error\n", "proba": 2.6773799618240446e-05} {"commit": "318acc13e4d93be5b61c87d384a3c87cee77ae30", "message": "new procedure: groupby\n\nrelated discussion: #4\n", "proba": 7.34264858692768e-07} {"commit": "318a8a293cd88505d818d9b085923a06817b5836", "message": "Update __init__.py\n\nBump version on master", "proba": 3.648719712145976e-06} {"commit": "566d17057ee1208530cfa85a88e8c170e4619638", "message": "Take out svn, leave pudb in charge\n", "proba": 3.564696839930548e-07} {"commit": "c17ab726b35905ad41b9009cfc4eef77732b63ba", "message": "ttfonts.py: use rl_config for standard asciiReadable\n", "proba": 3.467463614015287e-07} {"commit": "17fddb35f8e1fa2ebca576e064aabb6662e1355d", "message": "timezone_from_string\n", "proba": 0.0005023707053624094} {"commit": "ee3c0f789337f2047ace5f2a5c0058acc8935991", "message": "this isn't really a python module\n", "proba": 3.511893055474502e-06} {"commit": "01913b09637f3ca83e724d94a96f67566fc5226a", "message": "Improved reporting\n", "proba": 3.11135181618738e-07} {"commit": "4a886c4248e75f511f0867dfa653861a0604b02b", "message": "Remove the lowest 2 values in historical data for alerting\n", "proba": 0.0001133696423494257} {"commit": "0bd3a7c7931c91d5f64f085b3bcc2c62656c0dd6", "message": "Additional debug logging for js source fetching\n", "proba": 1.4749039678463305e-07} {"commit": "447e045e2878ffa1a435cc79cd0b78d1b4050330", "message": "We cannot expand lines without a column number\n", "proba": 0.0003878201823681593} {"commit": "642e0994f7dbbc1d3d7ee73b33c3c4d891d5c470", "message": "Allow promoting a user to admin via the manage users page.\n\nSometimes (such as if you're using ldap for authentication),\nthe primary admin of the install won't be that of the initial\nsuperuser.\n\nUsing the initial superuser, you should be able to promote any\nother user to be an admin - via the is_staff flag.\n\nThis patch allows this promotion, by extending the ChangeUserForm,\ncurrently used to administratively modify users.\n", "proba": 1.3332463311144238e-07} {"commit": "19b17a566940c554103aeb7097f77f0467bb24bf", "message": "account: don't validate new password unless it's being changed (#4531)\n\nThis was introduced with GH-4467", "proba": 3.5054139857493283e-07} {"commit": "c3597d85c2514dcf71931a76ece863ce89ddaeb1", "message": "Updating packaging to pickup files that were previously missed.\n\nChange-Id: Ic57f9854a6d0aede987ed8f951b625341a84ec98\n", "proba": 7.765683562865888e-07} {"commit": "68aa1075d5c826fd9c268be85864e6d4565c81ab", "message": "Log exceptions.\n\ngit-svn-id: 8b0eea19d26e20ec80f5c0ea247ec202fbcc1090@729 5646265b-94b7-0310-9681-9501d24b2df7\n", "proba": 8.203682227758691e-05} {"commit": "0a28ec1f5d0a13903bab6c586dbf639ebf78a09d", "message": "Add info logging to JobScheduler\n", "proba": 1.5266340369635145e-07} {"commit": "a9fea9133a55df283c16cafd4ec5c9971f4eb787", "message": "Do not limit search result count\n", "proba": 6.07579238476319e-07} {"commit": "eedb6aed2aa11d009c14ac6356c911e80b3d7e5e", "message": "Debug ouput removed\n", "proba": 2.528614402308449e-07} {"commit": "c4386936d4b441db6c9ab327640b689d56d879a2", "message": "resolve TASHI-8\n\n\ngit-svn-id: bf82309ee31681273af20a825c7064ea7c5af838@1294428 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 6.371499807755754e-07} {"commit": "67a230dd5673601f2e1f1a8c3deb8597f29287db", "message": "Increase default batch size for align step\n", "proba": 3.530728065470612e-07} {"commit": "0a221a4bb23f3f675137f8e0c163de877c2f6b37", "message": "Remove html-specific logic that was breaking parsing of valid documents\n\n--HG--\nextra : convert_revision : svn%3Aacbfec75-9323-0410-a652-858a13e371e0/trunk%40523\n", "proba": 0.0003992397687397897} {"commit": "dabc85d1ba7919c7ea29edaf0839575cf1ebee79", "message": "Report Tune metrics in final evaluation (#7507)\n\n", "proba": 1.024546563144213e-07} {"commit": "91f3dfbfdd42f51d04f4f956a1de1316d3b97b77", "message": "[Adafactor] Fix adafactor (#14713)\n\n* correct changes\r\n\r\n* add comment", "proba": 1.2929046988574555e-07} {"commit": "55bda525555e2dd299a5431f0708cfa8e3b9db0e", "message": "Same fix for `addcmul_`\n", "proba": 1.704887182540915e-07} {"commit": "3626ee85608bdbe4e0e64486941b91d3203719c6", "message": "Modified bfe_field to have one separator for subfields of an instance, and\none separator between instances. DEPRECATES the use of 'separator' parameter\nfor this element. Please check your templates.\n", "proba": 1.0768288660756298e-07} {"commit": "d2b839e0e82c56c8c284816b9a564373b7dd5324", "message": "Add intermediate feature extraction in beets plugin\n", "proba": 2.436958936868905e-07} {"commit": "b6824f68cf0b59082e2f3a415edfd182fcabd399", "message": "make return from pre_save receiver more consistent\n", "proba": 2.9463535611284897e-07} {"commit": "0b37c7493dd068bee645fca68a1a257deb1019ed", "message": "fix ConfigParser type\n", "proba": 6.335907301036059e-07} {"commit": "2018d9237b61710e637f6c2c109d83d9e1cad343", "message": "create_image_stream(): new optional insecure_registry parameter\n", "proba": 4.324715064285556e-06} {"commit": "8331e70299f1ec79077c17503ab5359cbbd7faa0", "message": "Fixed typo when propagating handler403 value\r\n\r\nIt was propagated to handler404 instead of handler403.", "proba": 1.2251253167505638e-07} {"commit": "932b3b71362c1cd05c6044f7fd6f2eac904807cb", "message": "Fix in-place restart in weird cases like nixos\n", "proba": 9.098748137148505e-07} {"commit": "32cedcd88a687e2339550367cfea9c618b12ba49", "message": "Added some error-checking to help diagnose input formats. This code needs refactoring though.\n", "proba": 1.128462869814939e-07} {"commit": "78833146900e8fe8a3a886e49cded7aa63387e84", "message": "admin can see contest datail now\n", "proba": 1.1608648264882504e-07} {"commit": "e9d9dee93719665a93a9bb371eafc08b8f588994", "message": "Fix problem searching templates on theme folders\n", "proba": 1.7362377775498317e-06} {"commit": "6958241f3f160cbedb286bf81b57c9e7d58f1781", "message": "preliminary refactoring\n", "proba": 1.043084921548143e-06} {"commit": "3c0f832bdcbf90049e1685d2c9c86ebbe8786048", "message": "test that mailbox timestamp is updated correctly\n", "proba": 1.3139370821591001e-05} {"commit": "8b7bb205add4f923d90604216de5249687737c70", "message": "Change structure.\n", "proba": 5.126905193719722e-07} {"commit": "5fece0bd1cb1e68f19993e024bab968de2778d83", "message": "[tiktok] more URL patterns\n", "proba": 1.297281926326832e-07} {"commit": "30f750b65389ae1c7315073879b1e4273f838b91", "message": "Use dict instead of tuple for better readability\n", "proba": 1.298986944675562e-06} {"commit": "987abc0ea10d76e94a757da4fa638f8be0782e7d", "message": "rewrote code for 'test_convert_fortan_to_c'. Added description, made code such that multiple inputs are tested once and that each value in the transposed matrix is as expected.\n", "proba": 1.165627310228956e-07} {"commit": "fda4f9692fe55a4065bcd7604af8b2fe47e1a659", "message": "Fix speaker coupon script to not include coupons for helpers.\n\nAdd more fields to the CSV output: type, admin_type, talk_id and\nspeaker_id.\n\nAdd Django 1.8 support.\n\nFixes #531.\n", "proba": 1.0573756981102633e-07} {"commit": "222c2b858fb1722f9aaf45e780b08e505e845665", "message": "tfdbg: Curses CLI: Fill line-end whitespace with default color pair\n\nto prevent spurious color pairs from appearing in certain text\nterminal environments.\n\nRELNOTES: Bug fix: tfdbg curses CLI: fix spurious background colors in some text terminals.\nPiperOrigin-RevId: 189742433\n", "proba": 3.2350658329960424e-07} {"commit": "49010b56a9afad70525feddc5be4c92ead83865d", "message": "Keep links on one-line.", "proba": 1.1018900636372564e-07} {"commit": "559fbe62d3dd803a1fd91d4ed636e2a1103f6ad5", "message": "new: TransactionTemplate.getItemWidth/getMyAddrPrefix", "proba": 4.090641425591457e-07} {"commit": "46213ecc8f4b0c9dbc31fec38362f751889a0633", "message": "BasicRtlSimConfigVcd: better localization of non interface signals", "proba": 4.599204999067297e-07} {"commit": "e1581e54afb85d8620b693920b8e3e1c1cf8f018", "message": "fix optional host patch for match_hostname=True\n", "proba": 0.004035577178001404} {"commit": "d48e0d29870867748a8e79a60c7d87c0f732ee03", "message": "stored the latest tss, draft and location for callback defaults\n", "proba": 1.4795487857099943e-07} {"commit": "dbe81de02f4f3174fa00cbfe8929e59e804fb409", "message": "updating to reflect the docs.\n", "proba": 1.0896282276462443e-07} {"commit": "6089b4d9fce89d9854db570ec0882956f95c5833", "message": "ENH/BUG: use P in orth_irfs in BaseIRAnalysis to allow generalized IRF\n", "proba": 1.3164525114461867e-07} {"commit": "10058ed7f547c43f5f62bbb4a03f354e904a8c36", "message": "fix directory-copying required for patch application\n", "proba": 2.5537843839629204e-07} {"commit": "dce2b00701810104f033a486e9f503d9a2385882", "message": "Incorporate Rick's improvements.", "proba": 1.4234653633593553e-07} {"commit": "21153ae0ffcbc05f7f73468dfb3331a3da460943", "message": "fix regression in EC2 upload build code\n\nSigh. I did a cut and paste when creating an earlier patch to add support\nfor F16. This slipped through. This change makes EC2 upload builds work again.\n", "proba": 1.0167596542487445e-07} {"commit": "1326f37d2a7c25ae7bfb6a4de044b57b4221e8c5", "message": "Calendar webhooks tweaks.\n\n* don't try to close db session if we don't have a db object\n (if e.g. somewhere else in the app has short-circuited out\n of the request)\n* make route argument names consist with other routes\n (makes it easier to test with dummy args)\n", "proba": 1.5220403781768255e-07} {"commit": "ee0bdddeee537d28b16c08eedee03fb1a3a1458f", "message": "Set random state to 42\n", "proba": 0.9999958276748657} {"commit": "317ce4fda928ae7226114097697456c257fd8ba8", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "08b3863b766c7111fa58cfa361edce94c095b940", "message": "Fix import.\n", "proba": 2.2054503290291905e-07} {"commit": "b91c2c7b3215d83f856871851e79a65bbc9710dd", "message": "Make Sound API backwards compatible\n\nAlso make it easier to sound single tone\n", "proba": 2.2758364082164917e-07} {"commit": "60dfd3d182e93da348711badbbd7ffba82f403fa", "message": "Fixed broken in-memory unit tests for the user messaging features.", "proba": 1.1110556386029202e-07} {"commit": "0625d875262011d8e1b6aa32566b236f44b4da66", "message": "fix logger\n", "proba": 4.796777830051724e-06} {"commit": "28ec9a994523d7633bd9196e7bd0e4c0f2caf2c1", "message": "next time try not to test commands on plugin files...\n", "proba": 1.073754489766543e-07} {"commit": "12cb7ba583f8095c20c11f696acdf4a1783fc56c", "message": "Gas catalogue improvements:\nfix latitude, add spectra rating, add links to plots, add ra, dec, equiv width, em/abs velocity difference, tau\n", "proba": 1.1992793247372902e-07} {"commit": "7c2e4ebc6d37736d038b6a28f6d9940d7e24740a", "message": "Add back in SOUTH_USE_PYC\n", "proba": 0.00126072287093848} {"commit": "a6e961eac9014898b13a06c0091977008ce5f125", "message": "Make unittests clean up after themselves\n", "proba": 2.5284720095442026e-07} {"commit": "8d3bfb3c046ae7fbaa45714d22e029e13766ecfb", "message": "Remove outdated options and fix formatting\n", "proba": 4.645230546884704e-06} {"commit": "b43782fbc36a6cc250e590c5b26ad77509714e6e", "message": "Remove run_local pytest option\n", "proba": 9.531551086183754e-07} {"commit": "a28809b90556aa5fae21bf444910892e31cfe7fe", "message": "Fix issues with recording; need to record link nodes via top node to links parent.\n", "proba": 1.0204043121575523e-07} {"commit": "124a15037c9ea09ef293b053030c88cfb3bb0b72", "message": "Return Driver information to Car maintenance\n", "proba": 1.356110743699901e-07} {"commit": "2e664f8adce3c24967ab776e004e66b50a6d7b2c", "message": "update README.md\n", "proba": 2.751205556705827e-07} {"commit": "9313d1e5bce31332394816a7ab320856d2f1413e", "message": "flake8 fixes.\n", "proba": 1.2007488692233892e-07} {"commit": "b79e926161fba21b4c8aba482cc3d5a756a308ec", "message": "python-ctypes: fix mediacontrol_new_from_instance invocation\n", "proba": 6.332672455755528e-06} {"commit": "b29d708ce43248b4e7a64515a6316f12cc25f581", "message": "v2.2dev\n", "proba": 1.027880443871254e-06} {"commit": "0cfbc04cf9585bc261c81b99ef69a2b81aafbc75", "message": "leave scheme up to the user\n", "proba": 2.3880787125563074e-07} {"commit": "b18615d9cc325639514fa3562c558d4dcbbf43e6", "message": "Updated to v0.3.\n", "proba": 1.2021352802094043e-07} {"commit": "8b2512f624c85268f24685d47394ab4d6058d5fa", "message": "Add new lines.\n", "proba": 6.7945197770313825e-06} {"commit": "2c4022b2f70cf4da495c5ace7af7f3eda2971b2d", "message": "FIX: Should've check load_theme in non verbose mode\n", "proba": 5.1168131903978065e-05} {"commit": "233ec6263b1d84f63d4cbe1bb77f8990e573241e", "message": "Change default for ES storage to false\n", "proba": 0.0015472517115995288} {"commit": "606d2d4adabb534f1f060edb70cab07f7bc91bcc", "message": "single orbit\n", "proba": 2.5603617359593045e-06} {"commit": "91a25c94fc63c05521a39a1928cd8b53b8a1ec82", "message": "update rename_file.py\n", "proba": 1.7573473769516568e-06} {"commit": "3490590baecf780ce07720142ce4804b0548d022", "message": "og experiment\n", "proba": 3.903894310042233e-07} {"commit": "be357a56d0c952887291f7017a1147f345b2ca25", "message": "adjustments in FSM construction (and explocit set of initial state) upon\nchanges merged by Edward. All platform UNIT and INT tests passing ok.\n", "proba": 9.690263169659374e-08} {"commit": "a5dae10a7648a9a942127ad91fe823eb4ad541ec", "message": "Trying the whole process now with 360 as the speed for everything\n", "proba": 1.1925230580800417e-07} {"commit": "4329c0664ba74e82ef48e33f1bd1e08d64710051", "message": "Refined OOI DataProductLink\n", "proba": 2.7978694561170414e-07} {"commit": "0e286d660af3a7f68bc4ff2cc78343fee96621eb", "message": "Drop action_plugins/synchronize.py\n\nA new ansible came out that included a fix to the bug this\nworked around, and at the same time broke our use of the in-tree\nplugin. Dropping it fixes our gate.\n\nResolves-Issue: BonnyCI/projman#212\n\nSigned-off-by: Adam Gandelman \n", "proba": 1.1735959049019584e-07} {"commit": "b7e4bd8294e22a180646385e205f3da4edf62412", "message": "safer get of external data set config\n", "proba": 1.43940155794553e-07} {"commit": "3a75b42b2e8a46d8fb6514d73adf93dd33433c4e", "message": "fix argparse\n", "proba": 0.998485267162323} {"commit": "a55845d97049bbd3bb3e429ddfab767235baebba", "message": "josemod: reason: create log_message object\n", "proba": 8.745936793275177e-05} {"commit": "66a35772dcdd95f6b1cd4fd3ffc6f5dfd1bcb34f", "message": "restricted slots check to installed slots\n", "proba": 1.947342838093391e-07} {"commit": "ab09e7abbf7edefb1901957ae5ba2a6f22f49976", "message": "Set TESTED_DOC to current snapshot\n", "proba": 2.3982028096725116e-07} {"commit": "39fa3a9843eb0a11d369ad75725223d79e818eec", "message": "jmod: give account age in member logs\n", "proba": 6.609502634091768e-07} {"commit": "6d5fb70ddfe78723c6222f4147b3c20d3d138441", "message": "fixed #53\n", "proba": 4.165498523889255e-07} {"commit": "bd5fbc7142322cd993693bc8dee35ffff771a242", "message": "Return empty list when asking for seeds of a property\n", "proba": 0.018347259610891342} {"commit": "8f316aa34dab36af1cfbe2b082db074e95d6e060", "message": "OOIION-1823: Update of device and deployment attributes\n", "proba": 1.3422801714568777e-07} {"commit": "7f2794ee814607b4b113c914e34683ef833fc65e", "message": "fix channel_joined\n", "proba": 7.902687571004208e-07} {"commit": "d6ddaf5962fa5860d68813582b4b1251272754af", "message": "trivial -- making pycharm happier\n", "proba": 2.051062750751953e-07} {"commit": "170a04fba08843040bde04e0b162f8a2a06982ff", "message": "remove unused imports\n", "proba": 1.1998655509160017e-06} {"commit": "1a7f5499648bcfaac24f1cbba2748ae59146a4af", "message": "Fix bug preventing first line in buffer to be changed\n\nThis rewrites modify_buffer_line and modify_print_time (now\nmodify_last_print_time to be more clear) to be much more readable.\n\nmodify_buffer_line had a bug where it moved past the first line, causing\nthe line_pointer to be lost so the first line couldn't be updated. This\nis now fixed.\n", "proba": 5.594021104116109e-07} {"commit": "057510c78f80c3592c562006413049ab1292d0a3", "message": "Replace the exceptions in backend classes\n", "proba": 5.712006168323569e-05} {"commit": "dc15658f300f6ce2ff57ab3f493f6d72ee097db9", "message": "Re-use HTTP proxy settings from weechat when connecting\n\nFixes: #573 ", "proba": 1.304727561546315e-07} {"commit": "3c9e2ef140ba0ea7cbdc28bae64db81bf0286535", "message": "[AIRFLOW-5345] Allow SqlSensor's hook to be customized by subclasses (#5946)\n\nDue to security reasons we have an alternative PostgreSQL hook that fetches credentials dynamically.\r\nWe would still like to use the `SqlSensor` functionality as is as our hook is still backed by sqlalchemy.\r\nBy extracting SqlSensor's `connection.get_hook` into a method we can override the `_get_hook` method without affecting the functionality of the hook.\n\n(cherry picked from commit a8cb800662d674369d17d773fcfd3fcfac6bb2f5)\n", "proba": 4.2353499907221703e-07} {"commit": "584861d2ebde84bca10ca98c5ba267b5f56382bb", "message": "topic whocares\n", "proba": 2.5471251774433767e-06} {"commit": "a4a2f5ae20e6583721e3a14eda7267e34314982b", "message": "disable unused hook\n", "proba": 5.958531232863606e-07} {"commit": "d01319384b6d1d3b2eac20c866f9bcaa5a3fe7b7", "message": "Trivial: Fix doc string for class DeleteBaremetalNode\n\nChange-Id: I8a6b0e1759b3cbbee52ef11c4bd5269afa871f62\n", "proba": 4.7971905587473884e-05} {"commit": "6fe53cefc657ec92814c7fb9c94281f499e3d212", "message": "dereference usernames in messages\n", "proba": 7.748939970042557e-05} {"commit": "676a2fd668b288aedc42ea175e403ad17416552f", "message": "Update usage of deprecated WeeChat API methods\n\nThe script will use the new methods if the WeeChat version is new\nenough, and the old deprecated methods if it's too old for the new ones.\n", "proba": 2.39759913256421e-07} {"commit": "173ba08077b06119326b115df169537a96da93ef", "message": "Switch to storing db dumps in private S3 buckets in production\n", "proba": 1.4992880892350513e-07} {"commit": "99822b22b4e1cb82782100564b6504c6a240dd05", "message": "highlight slack keywords\n", "proba": 5.488795409291924e-07} {"commit": "a6fc4b6c7f10b13eb78ab3715182f1b13729aff7", "message": "Display entire path to backup on CLI command\n", "proba": 2.4168829781956447e-07} {"commit": "8a9363b86d73fcefef761478f1e1fb19cea8cccb", "message": "Avoid wrong debug message for ping/pong replies\n", "proba": 2.8489898795669433e-06} {"commit": "796072d6052f5d9b55bcd549a47c42288d9f3fa5", "message": "small addition to ternaries example\n", "proba": 1.5060649616316368e-07} {"commit": "f7a36873147ac8f201d320b8c0b692437720a0cc", "message": "Add initial implementation of slack blocks display.\n", "proba": 1.1198145699609086e-07} {"commit": "cc66e8aa1424244e8d0caf6f6c68a37892a972ba", "message": "Web: Treat pre elements as plain text for broken text recovery\n\nFor some browsers (currently just Gecko-based ones), we sanity-check\nall results we get from the AtkText implementations because there are\nmany bogus results. Sometimes, however, we get zero-length text at\noffset results which are valid. This happens in plain-text documents.\nTurns out it can also happen in preformatted-text elements. In these\ninstances, other AtkText bugs (e.g. bogus text-range extents) can\nprevent our hack around from obtaining the right text range for the\nspecified offset and we wind up treating all the text as if it were\non a single line. Treating preformatted-text elements as plain text\ncauses us to not attempt broken text recovery when we shouldn't.\n", "proba": 2.4287450287374668e-05} {"commit": "648339c03b67e69bfc8fab379ad428377417a040", "message": "Upaded logic, program is pretty muc complete, not fully tested\n", "proba": 1.1613997230597306e-07} {"commit": "cc5a11abbaddef1aa3feb29009e57ca335b9cf57", "message": "version bump for PyPi update\n", "proba": 1.7748068614764634e-07} {"commit": "900d03eab5bfa3d6a6f0f52b0e2c766610f49a6c", "message": "Web: Don't attempt to infer labels for ARIA widgets\n\nAuthors using ARIA are expected to provide names for their widgets,\nand typically do. However, when they don't, and we try to infer what\nmight be the label based on surrounding text, we sometimes wind up\nduplicating a string the author plans to present some other way.\nAnd label inference is not especially performant. So only do the work\nfor native HTML widgets which lack an accessible name.\n", "proba": 9.27760083868634e-06} {"commit": "38efc5cdc731cb115bc90ed9827a85ac64d26310", "message": "Adds css view url\n", "proba": 5.287814701659954e-07} {"commit": "5c633aed5c1e1f9e533d96cfcb847213ce3b5f69", "message": "Upate line follower code\n", "proba": 2.1842882347300474e-07} {"commit": "43b0581b630a771010da9a4de01f48f91fdf0f1d", "message": "Web: Don't return early when generating ancestors for table descendants\n\nIf a user is tabbing among links inside an ARIA grid, we were not\nspeaking the headers and positions of column headers. In order to fix\nthis completely, we need to do two things: 1) Generate ancestors and\n2) Adjust what information gets generated for the cell information.\nThe second might have undesired side effects, so the changes are being\nsplit. This commit only addresses the first.\n\nSee issue #253\n", "proba": 0.00026197967235930264} {"commit": "60947e6b62ad3767116add1067fc23cc2cfc8b5b", "message": "Make it iterable\n", "proba": 0.9984683394432068} {"commit": "f82bbf6a53398fc0ec04279fe4ed369863cbe336", "message": "use settings argument for migrate command, as well.\n", "proba": 1.1385126441609827e-07} {"commit": "058f56a286b6e4a7951a0eb74d66d373cf5e30bb", "message": "fix bad path for pot files\n", "proba": 1.306069862039294e-06} {"commit": "13d79ad6b8a29bc115b9a7b2be39904cfd583b6b", "message": "fix flake8 error\n", "proba": 3.1337575023826503e-07} {"commit": "2b0b4db697b617aa5b618c7b2c9f94667d3381f9", "message": "ctrl.set_transformer(grp_id) and ctrl.check_transformer(grp_id)\n", "proba": 5.7705883591552265e-06} {"commit": "fff2fb7cc2c4be9af44b09ea8110fe01acf3b979", "message": "Converted some dead code into assertions\n", "proba": 0.9999209642410278} {"commit": "4af09b952e07f7a88e10c43cb2af6a493f42217a", "message": "add subroutine views\n", "proba": 7.631716698597302e-07} {"commit": "414afa4b510d49e90a4a776bdeb4c9c066a64922", "message": "follow neo4j semantics: rename filter_type to filter_label\n", "proba": 7.728343189228326e-05} {"commit": "532017f4ee459cd3af64c894d6407fa7cb781358", "message": "Add transport and token properties\n", "proba": 3.8598994933636277e-07} {"commit": "37d4632ff88a582750ac14fcba21eef9de381ff0", "message": "Add poor-man logger and use it instead of print\n", "proba": 7.435286079271464e-06} {"commit": "2605e16012c51d1cae69130596e603a620d48cff", "message": "disco: Fix error which occurs when using the play command before the bot is voice connected\n", "proba": 8.644610147712228e-07} {"commit": "6794af06fec96ed71784b03cf31d42d78b7496dc", "message": "Improved OpenGraph metadata.\n", "proba": 1.2751053191095707e-07} {"commit": "30394d03f2348d707f7e795ee3a40a5676ef7b34", "message": "Remove no longer used functions in Client.\n", "proba": 1.1068949845594034e-07} {"commit": "f6129354c26be83277fca4d7a76451783b4cb6b4", "message": "Fix the issues casued the by id difference between product_product.id and product_template.id\n", "proba": 0.9997318387031555} {"commit": "85f27a7ac7fa8cdd452d70a9b468e440bc103906", "message": "packages/ffmpeg: revert vulkan change\n\nCan't get it to work:\nlibpthread.a(libwinpthread_la-cond.o):cond.c:(.text+0x4b0): multiple definition of `pthread_cond_init'; libvulkan-1.dll.a(d000409.o):(.text+0x0): first defined here\n\nWill need more fiddling.. no clue why it says vulkan defines pthread functions .. it doesn't\n", "proba": 0.001905060955323279} {"commit": "f83442096bac59d4a8bf7400036f13c44333a39d", "message": "Client.edit_message no longer checks for private channel.\n", "proba": 1.0752177814765673e-07} {"commit": "ecb2400e909fa07b51f6a5bb8a3a754728b4d89d", "message": "make the docstrings look better in reST\n", "proba": 4.4243117258702114e-07} {"commit": "84f38b166e3cc299f382cfb63a7ecb70d6feb672", "message": "Add atomic keyword argument for member role editing operations.\n\nThis affects:\n\n* Member.add_roles\n* Member.remove_roles\n\nThis is the main attempt of fixing long standing bugs like #56. Since\ncache consistency is too hard to ask for due to eventual consistency\nand this generally being one of the only main roadblocks that the\ncache ruins, it's best to just implement it in terms of the atomic\nendpoint instead.\n\nFixes #56\n", "proba": 1.2993486961931922e-06} {"commit": "229adc9137e5a2cfa6e539545bf382264e034b07", "message": "fixed bug with missing function\n", "proba": 5.36945606199879e-07} {"commit": "de7373498475043e9a1dd803160c59c7c9d6c16d", "message": "Fixed param import on holoviews/__init__.py\n", "proba": 1.690230988060648e-06} {"commit": "99356bd6f69cd33a1d4f16787abac10c387efe78", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "7452d1863c8e5b7bf26cabdb330ad20185f3778f", "message": "Implemented Event.__new__ setting the .name attribute on the class]\n", "proba": 1.165159417837458e-07} {"commit": "37d0523da4782fc1ccb7c5a5c048782c979f2e7d", "message": "net.pollers: Set more sane defauls for timeout intervals - select, poll and epoll all behave differently\n", "proba": 1.234698743246554e-07} {"commit": "0b8fd100447849d715948d8b3cc16cabb973990b", "message": "Fix verify_certs and ca_certs settings handling\n", "proba": 4.828197006645496e-07} {"commit": "3b202917d1a3df43a932433e884a600370325642", "message": "test: changes test help messages to new improvements\n", "proba": 2.450289230182534e-06} {"commit": "876d058bd3e0125bfd11e9cd07cafbb503fffac0", "message": "Make ancient file Python3 syntax compatible\n", "proba": 0.0002894297649618238} {"commit": "7a0230f35b333bdad31c51c545e24eb2682cd09a", "message": "fixes #9759\n", "proba": 1.457441385355196e-07} {"commit": "635b13cbd1d1ef02dce4670a3c0fa89ad291a8a6", "message": "Some more sanity check in ValueSet.\n", "proba": 1.0986435228232949e-07} {"commit": "b996717c6608c96af0d44c42dabf43ccfe709c29", "message": "update: CSVtoJSON script\n", "proba": 2.459426298173639e-07} {"commit": "69f05f26a37819ef1fa9775cef1ea534eb54dc5c", "message": "Fixed the bug with orders csv report\n", "proba": 1.7292235554577928e-07} {"commit": "120d673ce43b746c753b8c3b509938307df48bc7", "message": "test/automation_horizontal_resharding.py: Add work-around to make pylint happy.", "proba": 1.1916669961919979e-07} {"commit": "2c920a0b0c59351f17e8b26d158e03c64fc2b578", "message": "add graph in command line options\n", "proba": 1.2314665127632907e-06} {"commit": "c491afa2a99c4acd29501b96deea2149babd47e6", "message": "Subscribers should auto-subscribe to 'fin'\n", "proba": 3.841889338218607e-06} {"commit": "dcc5c3b3869b304580b4d072b0c488b581f04bd9", "message": "Capture exception thrown by os.path.dirname\n\nGiven None as an argument, it throws an AttributeError in Python 2,\nbut a TypeError in Python 3.\n", "proba": 0.00021628817194141448} {"commit": "c5ab326ecbd6fcb5adabc7af2daeecd68263994c", "message": "Update contrib_plot to call correct draw_state.\n", "proba": 1.1020372170378323e-07} {"commit": "3c5c64984e4c43fcf02e6ec9714170073af717cb", "message": "Return None for betaP property when sdf is None\n", "proba": 0.9999525547027588} {"commit": "3e116fc6e714c11a46714a75eb3f0e05a148b370", "message": "Disallow Rigid objects in md._DynamicIntegrator.constraints\n", "proba": 1.0486145356480847e-06} {"commit": "ffbe22511b7d5dd5289c12a2d893668f58e9f5af", "message": "tiniest of tweaks to HTTP_USER_AGENT check\n", "proba": 1.84662823699e-07} {"commit": "ed9d1ea7650206905a404cb64b9a659c5b4a884b", "message": "fixed bug\n", "proba": 6.589494319086953e-07} {"commit": "f2dca804c25d7e5a02b0dbc4c45da47b43d0a08a", "message": "Adding get_latest_by to Transaction model meta data\n", "proba": 2.6686817022891773e-07} {"commit": "afd9a565886e7c81f5c6d69558c92ca33b07e1ec", "message": "SVN: remove, because it duplicate of analog scan\n", "proba": 5.931589157626149e-07} {"commit": "f939ac96abc07418b1048fdde187c9af46386883", "message": "some light linting, and trying to determine what makes hotpants-photocell hang forever\n", "proba": 1.631895969467223e-07} {"commit": "8d5d5279f4cdc5591b58eeaab2cb3996d24060ee", "message": "Removing needless print command, made opening of messages file more robust.\n", "proba": 1.1994669080195308e-07} {"commit": "7ababee8cc9f82fe5541c6a653612114e96ba654", "message": "fixed the reference before assignment problem\n", "proba": 3.5090999972453574e-07} {"commit": "ef270177305c207844174be3afc85cc9a1d1762a", "message": "htk_mfcc_visualize: visualization works\n", "proba": 9.754452548804693e-06} {"commit": "8d5db9ee1c5f5e04dc9164841eb3e11a640788fc", "message": "set table title as caption instead of heading\n", "proba": 2.2361356968758628e-05} {"commit": "e7179a461be7d2d39c8fd8f986420733a40cb779", "message": "DEV: ml\n\nFormer-commit-id: 2ef56cabd0748c371afab497f757bd52b6283f0c\nFormer-commit-id: e05f47e17244fd19c723ed7b5f6dfe6dc9b67d82", "proba": 8.446484685009636e-07} {"commit": "bb496b7051e8d87aee70e08605d01ba774615d0e", "message": "align rights\n", "proba": 1.9398355561861536e-06} {"commit": "ef538e68110548c6fcbe4bee7693a04dbdb1b2bc", "message": "fixed removal of flagfile option\n", "proba": 4.4282248268245894e-07} {"commit": "ca17ea7a4683557d5ebaa9050851f05ad9f0d58b", "message": "Adds restart and sleep together\n", "proba": 3.2901249369388097e-07} {"commit": "6d19a88973d66ff5ff2be035c45c3c48521a04aa", "message": "Fix regexp for module name\n\nOn my machine, the previous regexp led to the following error\nAssertionError: Regex didn't match: '^[\\\\w\\\\.]+$' not found in '_sysconfigdata_m_linux_i386-linux-gnu'\n", "proba": 0.9995941519737244} {"commit": "5fd4612bd3fd43d70257a34fa8559b0ac125cd00", "message": "deleted old unmaintained stuff\n", "proba": 2.448679481403815e-07} {"commit": "9fe472d2428737ee76cb3f5f864f7e5f34b13cdc", "message": "polys: Fix _minpoly_from_dense() docstring\n", "proba": 0.0009706725832074881} {"commit": "2b1f73533e72fb28a26a738bd1ced93a1d8d7169", "message": "polys: prevent linear growth of memory in orthopolys.py helpers\n", "proba": 3.325379509533377e-07} {"commit": "4d5abdcfec2258e4eea477d8b92ae62664160e10", "message": "polys: select new factorization method for polynomials over algebraic fields\n", "proba": 5.2543657602655e-07} {"commit": "750d23a8314249133b660aa8b3881990fdaee730", "message": "change isinstance(obj, (str, unicode)) to isinstance(obj, basestring)\nas suggested by Piotr O\u017carowski\n", "proba": 4.9596401368035e-06} {"commit": "ef1af25fd91e62f6088e16ef9457383ed5344e33", "message": "Implement project push\n", "proba": 5.802710916213982e-07} {"commit": "042a234eac8b2c66b0917379636550e3319618ab", "message": "[commands] update sys.modules in load_extension again\n\n6f71552c508c61d9b6bf024fc259063ad056b7c4 introduced a regression: loading a module that is not in a package\ndoes not add it to sys.modules. Updating sys.modules is required after all.\n", "proba": 1.393222532897198e-07} {"commit": "3bd43cf94d002632e267e81503fc0845dcbde593", "message": "remove unused import\n", "proba": 7.364135399257066e-07} {"commit": "f504ac5ea7f6ce1b36b243377e0487742d5e513f", "message": "TST: added more tests for alphalens.tears\n", "proba": 1.5370559935945494e-07} {"commit": "06d08333ff82130ed9c46827781079c95d1cf973", "message": "FIX: remove old fashioned python2 syntax\n", "proba": 0.00046122208004817367} {"commit": "4b1a530f3589b6be928c8e81c1bb9f1547abd606", "message": "Update to new ESI URL esi.evetech.net\n", "proba": 1.648114817953683e-07} {"commit": "d7fdc332b0ca2c34a87f7e8b6bc7fc4749c52c29", "message": "Rename {Build->Get}PackageTarballCommand to reflect command name\n", "proba": 4.965585276295315e-07} {"commit": "2ab618e5434114ff163eed3f89231e4de95738a6", "message": "refactoring for #13\n", "proba": 4.781303459822084e-07} {"commit": "d49aaacb7dd454781fd9cb2cd2cb92e9c07d7d31", "message": "docs typo\n", "proba": 3.874990852636984e-06} {"commit": "6af6d5133c3172618bb550c7aba16eabc5e362c5", "message": "REF/CLN: maybe_downcast_to_dtype (#27714)\n\n", "proba": 1.2081552824838582e-07} {"commit": "1dee2a3774738236746936dcd9b03787f4d47a57", "message": "anal syntax tweak\n", "proba": 4.534603021966177e-07} {"commit": "98d6fe0797bfd2b6e58f59941e695018cb820316", "message": "allow non-staff users to log on\n", "proba": 2.924043940311094e-07} {"commit": "172cc6943bf28af6e0efea52675d38ec2a693860", "message": "test: resolve bug in interface_syscoin_cli.py\n", "proba": 1.21648815820663e-06} {"commit": "9f97d114113a59590319bcd411e1132c3026d758", "message": "TYP: Type hints in pandas/io/formats/excel.py (#30400)\n\n", "proba": 1.169541263834617e-07} {"commit": "0722eb084c5c4d7aa24e3102cef593af46993519", "message": "Display better name in the checks list\n", "proba": 6.604042027902324e-06} {"commit": "3c102074b16378977ae280131a6de7fcab58dbab", "message": "override drawDot() to support output graph to customized path in\nbackground process\n", "proba": 1.927350155028762e-07} {"commit": "5178e229c046f2f5be4034b346d8758465d58358", "message": "Clean-up pyse.py for read/maintainability\n", "proba": 2.950638986476406e-07} {"commit": "69ce3269dfcb87e972ef29a84772d781d1613c9c", "message": "better handling of the pub/sub workerthread's stop behavior\n\nproperly unsubscribes and cleans up the connection now. also allows\ncallbacks to call thread.stop() without errors.\n", "proba": 1.0695948304828562e-07} {"commit": "4ef9cfec04e2c7a1c1217093c2b2890a759bc6e1", "message": "After review: raise exception\n", "proba": 0.0001285895414184779} {"commit": "3c7af1691bdab63f36393dc00a220ae79f72de4c", "message": "Update py docs -- with hash and better header\n", "proba": 1.2656494163820753e-07} {"commit": "5b7d32fd9a745b1b7daf20bce8c207175a135f4c", "message": "minor test changes regarding print and __repr__ to address denis' comment\n", "proba": 1.6784937884040119e-07} {"commit": "f4586efbca0b4d00426bb0ae22e0bfb0e8f3095e", "message": "[tests] Remove 'account' API from wallet_listsinceblock\n\nSummary:\nRemoves usage of account API from the following functional tests:\n\n- wallet_listsinceblock.py\n\nPartial backport of Core PR13075\nhttps://github.com/bitcoin/bitcoin/pull/13075/commits/5d536619abda745c298fd827a856df775f223241#diff-22d0300fc7a3006ded2ffa33a91d28dd\n\nTest Plan:\n test_runner.py wallet_listsinceblock\n\nReviewers: deadalnix, Fabien, jasonbcox, O1 Bitcoin ABC, #bitcoin_abc\n\nReviewed By: deadalnix, O1 Bitcoin ABC, #bitcoin_abc\n\nDifferential Revision: https://reviews.bitcoinabc.org/D4523\n", "proba": 0.0056031933054327965} {"commit": "a25bc64293bef2aaea9e205f75e1869dd93a78df", "message": "fix the week count bug\n", "proba": 6.405633030226454e-06} {"commit": "a80273178e91e52cc4c39b4d4006034a20763394", "message": "using name as a parameter name for wrapping methods breaks when clashing\nwith a method that has its own name parameter\n", "proba": 3.697416275372234e-07} {"commit": "2022191c6313339a968a7ecb936c1591cd165195", "message": "l10n_es_facturae_face 11.0.1.0.3\n", "proba": 1.3719512708121329e-06} {"commit": "8952f8c69eb89e3519b25e5f15e0cc292105fe6a", "message": "[windows][gui] Show directory check in the GUI\n\n\r\nLooking at the code, there is no reason for it not to work on Windows.\r\nAlso it's been confirmed in #1969\r\nFix #1969\r\n\r\nWill need to be tried though.", "proba": 1.0640560788033326e-07} {"commit": "863f1cfcc043fa1910df23d724e7389f62ff35de", "message": "BLD: more platform int fixes per #855\n", "proba": 1.2179748409835156e-07} {"commit": "910191844f51fa8add0c72299cb636e2b091c498", "message": "settings(common): add autocomplete app\n", "proba": 8.83069424162386e-06} {"commit": "926a38b303feeca70148e82087de2cce0d8d29d9", "message": "This should take care of a number of RuntimeWarnings coming from self.theta_dc.value = nan - which will also mean that self.theta_dc.error will be a nan, if I am not mistaken - in which case self.theta_dc_celes cannot be computed.\n", "proba": 8.896788017409563e-07} {"commit": "3aec1d7f1f0893d9dd27a0905f3d4b0429e6e544", "message": "Hyperopt: Filter out Tensorflow info and warning messages\n", "proba": 1.4114587543190282e-07} {"commit": "ee452c8bf4e85823c29357fca446b69ee034ba59", "message": "Add auth for Google\n", "proba": 8.328883609465265e-07} {"commit": "877a739c2066866f881735606ee27d046793e50e", "message": "Refactoring Main() and killing --runash crash-loop brokenness\n", "proba": 1.468953456651434e-07} {"commit": "7bcfef5e8070161b01678c020de8dfdaef35a64a", "message": "fix weird test\n", "proba": 3.582107092370279e-05} {"commit": "e1fca8431be1e0990d3d1dabc67985769ab4a9ea", "message": "Hard code some collections we want to access in the database and make everything else private\n", "proba": 1.1643341224498727e-07} {"commit": "ecfabf03a029129df111bd8a84f410f342779635", "message": "l10n_es_ticketbai_pos 11.0.0.6.1\n", "proba": 1.9924138996429974e-06} {"commit": "5da450f549ac411e11409f99743e5aae7af18971", "message": "DOC: Examples for Series.apply docstring\n\nDOC: more series.apply example\n\nAdd example with Numpy function\n", "proba": 1.39507065455291e-07} {"commit": "d8ddf1d64ca63df9c0d93267b3217ac4476e52eb", "message": "Tweaks to LogTo to make it Windows XP compatible\n", "proba": 1.6367337707379193e-07} {"commit": "ac9546096a583dae84ae19d07beaddb6f352c2e2", "message": "FIX: Speed up tests\n", "proba": 3.520134157497523e-07} {"commit": "55fee598e7852241ced85f5fa3e6d9fd7b62f933", "message": "fix:init with name\n", "proba": 3.518585435813293e-05} {"commit": "b9853fed072672ebab0166720fd631d1208dc9c7", "message": "l10n_it_codici_carica 12.0.1.0.2\n", "proba": 2.702068286453141e-06} {"commit": "c61ed964d328cccc971b7f06946e0c4dd497c373", "message": "Headers.scheme (attr) \u2192 Request.scheme (property)\n", "proba": 1.2821534767226694e-07} {"commit": "a2268b65d50374c9c87af83ff49e4320f8c4cbd4", "message": "Fixing wizard tell behavior to actually work with screen clearing\n", "proba": 1.5322072499657224e-07} {"commit": "30616cc21c02c82388ba0b7a5cc083c5f0b90cee", "message": "removing print statement\n", "proba": 0.6731776595115662} {"commit": "56ccf92037154a3bc6eefef64d8a5063936053b2", "message": "Check for correct array size in active_link_ids.\n", "proba": 1.345806452945908e-07} {"commit": "05e020d25c63524023e600f2703b47911d60fbc2", "message": "fix handling of non-ASCII in `make_franken_uri`\n", "proba": 4.7483092657785164e-07} {"commit": "aa70b8648b92b03d4c3d501e7d0309efe6c9fb10", "message": "fleshed out logic for just-in-time genome alignments\n", "proba": 5.389852503867587e-06} {"commit": "996746c504109fc6379ff2425db9747443ed0818", "message": "Delete dataset.py", "proba": 2.469528953952249e-05} {"commit": "53c584a2338272826514db34fb6cdd3e71d781be", "message": "Front-end reports available ports and protos in handshake\n", "proba": 1.3445826141378348e-07} {"commit": "9f6608882032798f3e3294df1dbd52af01ade47d", "message": "more fixes for mismatched pyokit and repeatmasker coordinates; fixed type of repeat ID when parsed from RM files to match indexed RM alignments; other minor fixes for liftover code\n", "proba": 1.102566997701615e-07} {"commit": "61b81558a54837b7ed32ec22f2cf21a8f6b665d7", "message": "HotfileCom: marked as dead", "proba": 0.9998499155044556} {"commit": "f8239015ec427a2b5e62afa8370885894483a356", "message": "Add additional Random.atfork() to prevent RNG errors in large runs\n\nConflicts:\n\tparamiko/transport.py\n\nWas: ssh 41f4566\n", "proba": 4.188905791124853e-07} {"commit": "441fd280290f237c76d06539d698f7557b6f4284", "message": "Reorder Bundle fields in the administration panel\n\n", "proba": 1.528568702724442e-07} {"commit": "e74c40aa75a70d0b8cbddb835e32ab397045d44e", "message": "Making sure BE/FE is uppercased\n", "proba": 0.9987607002258301} {"commit": "74a5ef4abef92d5a951b266b1914bee265c3c413", "message": "Added functions to get and set the solvent count in top files\n", "proba": 1.5027136157641507e-07} {"commit": "d34d379ce39828dd6ebe14c8f65e0abed5495755", "message": "Fix typo error in CallHelper._fill_agrs()\n", "proba": 1.0883153663598932e-05} {"commit": "3268a24828cb480d142e43a6b4570821b4b5abb2", "message": "Adding --errorsurl for prettier failure handling\n", "proba": 1.3408255483682296e-07} {"commit": "4b59b09dd5443c3b98936c1e3b9b36927df97296", "message": "Adding searchable classes to settings\n", "proba": 3.7882540482314653e-07} {"commit": "56cff42ae6811d3e8019e7f4c7fe4fdbb95ce2f7", "message": "Added parameter to annotation search endpoint allowing filtering by collection that the annotated media belongs to\n", "proba": 1.093978454491662e-07} {"commit": "a216affbce7f066a42e6e55e9728e9226beb3373", "message": "Add parsley:attrname() XPath extension to get an element's attributes names\nRevert to smart_strings=True (for the time being), used for :attrname()\n", "proba": 4.460328000277514e-06} {"commit": "e372bf6ed4ddbdd8343d54899b77d44b0910f523", "message": "fixed minor typo in SIS5 emulator\n", "proba": 2.814880417645327e-07} {"commit": "e7c901e4d1c052cdd1e417fc3fb4440365df40b0", "message": "add redis queue test code\n", "proba": 3.2147920592251467e-07} {"commit": "6a9f431016965249ae437fccc004799bdb9b345d", "message": "Update docstring for Room message method.\n", "proba": 1.1613952466404953e-07} {"commit": "93c89b491f982565daf28ed90edfccefc403b36b", "message": "Handle cases where we get back a 0-length chunk from Twitter when fetching the\ndigest for a list.\n", "proba": 1.2332795051861467e-07} {"commit": "d32f4cd78781bde4a1f26a36b8f31e04d64d85d9", "message": "Fix nested directory names in the index\n", "proba": 1.2335292012721766e-05} {"commit": "3a33c8131bedcf511a127146ae995c0007db02a0", "message": "StandaloneIO: Added documentation for new methods.\n", "proba": 1.0339972789097374e-07} {"commit": "30ee562ac5d5df52584c0b7cceb947cd254bb2d7", "message": "further generalise over dimensions\n", "proba": 2.6815170713234693e-05} {"commit": "c7a62fc0343ae90dc4842d6749360d760c83f49a", "message": "Pass 'user' argument to impala cursor\n\nThis prevents authorization errors when using NOSASL Rebased version\nof #1254.\n\nAuthor: petobens \n\nCloses #1338 from cpcloud/petobens-master and squashes the following commits:\n\n7ac7eb79 [petobens] Pass 'user' argument to impala cursor\n", "proba": 3.467900171472138e-07} {"commit": "509928cb4ff781e05a0817df94dbe1a45675a00e", "message": "remove list coercion\n\n", "proba": 3.7504630654439097e-06} {"commit": "17b8c672536bfbeee13aecd8a3a93b329e5b0b58", "message": "add a cumulative chart of the presentage of growth in the update bgp massages\n", "proba": 1.2591711140430561e-07} {"commit": "98c3540257211cd572a1b5430066afd1d16fdcf7", "message": "Catch IOError.\n\nChange-Id: I1992e339433c13145cfc7d30b6376f28c05e3665\n", "proba": 2.108511580445338e-05} {"commit": "f8a20ed82bf21285ad7b7a14867244b85cd239cd", "message": "Remove Q.\n\nYes, it does work this way. Answered on Trello with details: https://trello.com/c/KKNf2cY7/40-set-up-treelstm-composition", "proba": 8.804637764114887e-05} {"commit": "ea830caa0dff376b49275f83ed05f8dc9ed8b123", "message": "Extended script to render a single page to STDOUT so that it renders all (registered) pages and write them to separate files in a given path.\n", "proba": 1.0432405872506934e-07} {"commit": "515823488b78dff9dd96c6d80f5637f582a91775", "message": "remove some duplication in ChangeTracker\n\nThe modify() and rename() methods are identical. Collapse them into a\nsingle method.\n\nChange-Id: Ie6a3d8bda2e8ca76dbeecf267628ee0e1781e9f8\nSigned-off-by: Doug Hellmann <0798ebecfb7bc4dfb9d0445c2fa030eb64e1fa1c@doughellmann.com>\n", "proba": 0.9999905824661255} {"commit": "0a8807bd407e0d5865ea68c5a4a38407c5b590fc", "message": "refactored replaybuffer\n", "proba": 1.377940975544334e-06} {"commit": "5a3625c46cd7ae63cb4d0d40e5c878a6a95d835e", "message": "Updated version", "proba": 2.698738796880207e-07} {"commit": "57ced9541a60b9114768083a8b9b89ac33dbc3fd", "message": "Update docs\n", "proba": 5.778236413789273e-07} {"commit": "db61472a495d639a5faf8d760f96af9182055b7f", "message": "google_tranlate_py2_funcs get_trans and get_lang_list list to text string change\n", "proba": 1.4959060763430898e-06} {"commit": "85338d673116b9dd46a98061c8331d1e81205f75", "message": "Reworked level-instances model\n", "proba": 4.109664644147415e-07} {"commit": "17751c05d797690a814a6d7dcc85e31147f943f8", "message": "add functions for reverse index and similar elements extraction\n\n", "proba": 3.0925198757358885e-07} {"commit": "6e64c9c65fede4f2fb602c7edb89d5d3dcedb7bd", "message": "Indicate saturated PMTs in plots\n", "proba": 3.866925180773251e-05} {"commit": "13cb8e74029fea33b10f3e23cfaae130474ad561", "message": "set synchronous_commit to local when creating roles\n", "proba": 7.654670071133296e-07} {"commit": "fae4083f766fcb3e93eb44745b09546af255fcf7", "message": "Release 0.4.1 of vaex-core\n", "proba": 1.1726337589834657e-07} {"commit": "00b18f3aac4ebdc4745352f34b7fc265da8c3db8", "message": "bugfix for python 2.6\n", "proba": 4.931380885864201e-07} {"commit": "b91a781fc27a2356cb36df2e43215d0d1c266050", "message": "Continuous reading of XED files. Closes #53.\n", "proba": 1.0745637979425737e-07} {"commit": "875c77addb1ece8ecef53af000983cb3921d62fe", "message": "Bug fixed pada Python 2.6 di DbTools.py fungsi table_seq()\n", "proba": 2.5006212922562554e-07} {"commit": "0ef8b3afa2bd50d7f16fb50b9e12fe8e61b4a119", "message": "trailing whitespace\n", "proba": 0.00048579261056147516} {"commit": "f944abbb77ba6ed0e24028b4f94a3f824e06a08f", "message": "fix spelling of \"occurrence\"", "proba": 0.999823272228241} {"commit": "895a259dc0685cc87f1ac32daecbe7e4cef87c8d", "message": "BLD: Add fallback for Cython on older Mac OS X\n", "proba": 1.9503946191434807e-07} {"commit": "686b717bf2f2b625cdf020f44a140ded45b3f6b6", "message": "Added \"literal\" option to AssertHandler\n", "proba": 2.529439200316119e-07} {"commit": "cb717fe7490d304f858f00b459166f8b42900300", "message": "Allow uploading file-like objects, allowing uploading of BytesIO/etc.\n", "proba": 1.1645739306231917e-07} {"commit": "79346853aac5ccc86496fe1ea87b5034b3a94ae5", "message": "Add debug-config command\n", "proba": 5.850135949003743e-06} {"commit": "69245c2b32ec57648c095ec2625b67739bfe0d7c", "message": "correcting logical error affecting None comparisons\n", "proba": 1.290846830670489e-05} {"commit": "518c6cb94cacd2d221810f828d7772c1948f3271", "message": "SOLFile.from_xls para leer un archivo XLS que cumpla el formato.\n", "proba": 1.1425611035065231e-07} {"commit": "20c65a8ec391083eda234af5fdbf4f77fc4600ce", "message": "Polish genome only if it passes quality thresholds\n", "proba": 5.712557822334929e-07} {"commit": "dec5a6f2eed87195d49199c38c49b59dd4a1d361", "message": "fix time comparison in google\n", "proba": 0.00019157282076776028} {"commit": "50b7c498191a5e6acdbbd086c782ad80883e7c2b", "message": "fixed pagination and alphabetic order in groups\n", "proba": 1.337300091108773e-06} {"commit": "9515d1007164eca9c529f1e0907b9161ed8d76c4", "message": "Changed implementation of mov.\n", "proba": 1.2741523391923693e-07} {"commit": "f7ff571935d6cf82a1ed678da09d4b0bd3fe0282", "message": "Update program modal\n", "proba": 7.565057558167609e-07} {"commit": "2f0ccaaf11ac535111d686e960733d4217b68ba6", "message": "genxml: work for objects which only list interfaces\n\n\n20061019163402-53eee-cec314ab6322255dd561c03b3048c48b97149947.gz\n", "proba": 3.649227267032984e-07} {"commit": "09779ecebc64601a8f4565a725f5afb42d3e878b", "message": "use surrogateescape unicode error handler\n", "proba": 5.645525220643322e-07} {"commit": "a6b276b734cc296c4a86b68be1850831f25e9afd", "message": "pyterm: ugly hack to make twisted optional\n", "proba": 4.208498296520702e-07} {"commit": "39d02f4190f287e816a2fffce9a0c4240f25fd1f", "message": "Fix no logout on update password for current user\n", "proba": 3.3211306345037883e-06} {"commit": "c5985c30ebcc97e9bc2ab0eeaefa3a1031f459b0", "message": "Fixed: Improper experiment detection is now proper\n\nI forgot a hyphen, so the \"intervals\" experiment was always run. It's fixed.\n", "proba": 9.913665053318255e-07} {"commit": "ef7403273ed1bb7994d3eb0f76f11d650d4e0cb3", "message": "remove unused import\n", "proba": 7.364135399257066e-07} {"commit": "10317e73b3def9fb114d82822f76824f792f069b", "message": "allowing AWS info to be passed in via environment variable\n", "proba": 1.974902659185318e-07} {"commit": "a5a633a25890a064179021f447d655954c7eddcc", "message": "implement workaround for missing XML-RPC features to set attachment caption and description.\n", "proba": 1.0171049069640503e-07} {"commit": "e4735372521b41ff43ac6f2f30df6f818ba22250", "message": "added ability to handle many plugin reos. added my repo.\n", "proba": 1.0797472782542172e-07} {"commit": "93d58771eaedca06b82d5b41b2bf3661796a5f76", "message": "explicitely stop test JVMs\n", "proba": 3.103303356510878e-07} {"commit": "2368cc27042199a2ef1ed7434dbfea5261edcbc0", "message": "Made /clear last between sessions.\n", "proba": 1.0462854760362461e-07} {"commit": "880acafe269a1e48135f10ff7c400932207cb901", "message": "Fixed #10102 -- Set svn:executable on daily_cleanup script. Thanks to John Scott for the report\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@10054 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 7.517204494433827e-07} {"commit": "edc1a78f0548e916dce8483ed79f448461dad994", "message": "FIX test: Must separate tools/test-featurs and selftest.features\n", "proba": 1.6447170025912783e-07} {"commit": "bcdc284cebfad6c1e2c1bfcd58299742c27b5d2c", "message": "fixed regex ordering and changed some Ors to MatchFirst (as or takes the longest match, which means we were often matching IPs as hostnames), all tests now pass\n", "proba": 1.7686345188394625e-07} {"commit": "47ce61533a5364c6d45803a696d86cbcb1ed2b33", "message": "Fixed #228 -- Better handling of timezones. Thanks, rmunn\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@347 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 5.428362896964245e-07} {"commit": "7a9811c700c515798c7d4ff23ae5798717fdf16d", "message": "Consistent usage of straings.\n", "proba": 1.2684249384165014e-07} {"commit": "bb86b0b30c5e1a822b92994ad1e261149ef36d17", "message": "make part of mmtools\n", "proba": 4.4674865762317495e-07} {"commit": "244844c52fe3876254e5a78ad8bc9476fcf935b4", "message": "fixed linesep to newline", "proba": 4.5781513335896307e-07} {"commit": "dc4609a466a5f2e0c24ca23fd79832a7a23c3f41", "message": "Teeny weeny optimization to RegexURLPattern.resolve()\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@4587 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 2.7981304810964502e-06} {"commit": "6b88da9fecc616ff25c01594f42d191f995388eb", "message": "Simplify AppEngine SDK repo def\n\n* Removed the \"find locally\" option, since Skylark doesn't support\ninvalidating the environment variable properly anyway.\n* Changed it to a \"normal\" new_http_archive.\n* Added strip_prefix so the appegine-java-sdk-version prefix doesn't\nhave to be specified everywhere.\n", "proba": 1.1828321078155568e-07} {"commit": "3ced1f5aa6c89b43f738f8026fb507b18910eb40", "message": "Don't use 2 characters for Windows newlines since Sublime only uses 1.\n", "proba": 1.0657257121238217e-07} {"commit": "30c2d167541eb0b77090e037106f5db61ad01e83", "message": "Fix pdf files naming for 6.1\n\nChange-Id: I49531496fb4bfafb308b1f4de495707e06368943\n", "proba": 4.261230799329496e-07} {"commit": "1b7be6d03c2d3d7300686574a82483de7df34ff3", "message": "try videoinfo url when no stream could be found\n", "proba": 2.2605453864343872e-07} {"commit": "3bc052598221d39ab40ced7367290929945dd32f", "message": "Made NoReverseMatch exceptions more helpful. Thanks, mrts\n\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@8272 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.5696932678110898e-06} {"commit": "9a1a025eca0b5ffac84414f74f854d32fc7a5c5b", "message": "Remove <(library) from gyp file.\n\nThis is a corresponding change from Chome.\nReview URL: https://webrtc-codereview.appspot.com/1053004\n\nCr-Mirrored-From: https://chromium.googlesource.com/external/webrtc\nCr-Mirrored-Commit: 2e2a4cff1869e6789d7e9a4926f4aa25e11ebc6b\n", "proba": 1.14315744212945e-05} {"commit": "414475b8428d7ab253f3fbbf91039f54f282a05f", "message": "Add remove sql action\n", "proba": 3.918496531696292e-06} {"commit": "c49d0e81c480b5072d4d939899da8edd6287c65c", "message": "Removed pendulum.py\n", "proba": 7.403470476674556e-07} {"commit": "f983188bb5a281d633a9daf22707bdd83af36fe6", "message": "Fix off-by-one with column handling\n", "proba": 0.000500494206789881} {"commit": "503a27d2123d33cac701d04f848e2b18a6c030c8", "message": "Fixed #1707 -- LocaleMiddleware now sets Content-Language header. Thanks, ubernostrum\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@2843 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 2.2491590812023787e-07} {"commit": "e22b46f14c0aad7e87392432e9405420b456e60e", "message": "Use job LIST_PROJECTION properly\n\n", "proba": 2.4570607592977467e-07} {"commit": "ba76c3c45b9fee43c2791247e752959781368773", "message": "Refs #27656 -- Removed \"This will\" prefix from djanog/templatetags/i18n.py docstrings.\n", "proba": 1.0020391982834553e-07} {"commit": "e9d8fb6a4d9a5f795af83f3996407d722d61bd8b", "message": "fix issue #9 postpone sys.path reversion\n\npostpone reversion of any manipulation to sys.path until VirtualBoxManager\nhas been instantiated.\n", "proba": 1.0349956625077539e-07} {"commit": "9a397bcaa0b1a4525ac164e36ba0755cb92ff28d", "message": "Follow-up to r3763, which was not 100% correct. Hopefully the final word on #3504...\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@3791 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 2.829934146575397e-06} {"commit": "ede7e90c1e024e4a622798b34441b40c39dd1fbf", "message": "allow for no subscriptions in returned list\n", "proba": 2.0931744870722468e-07} {"commit": "2ef57b6867c21ede68bb6f59084953f62243db25", "message": "Update __init__.py\n\nbump __version__ 1.0.2 --> 1.1.0", "proba": 1.0384257620899007e-05} {"commit": "7000c42319c4b60b0f4c63cb8edacfce499d6edd", "message": "1.0.2dev: merge [11949] from 1.0-stable (fix for #11262)\n\n\ngit-svn-id: 3aa280b99a9b480b02b1e2eda394e64594ad3297@11950 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 2.270300910822698e-06} {"commit": "5b6f311327aff672d5a588b50ede833797bca659", "message": "Extracted ticket state and resulution to story state translation.\n", "proba": 1.0813156592348605e-07} {"commit": "ede521aed4daae1c2746d758fcfee10aef683f3f", "message": "Add missing type\n", "proba": 0.913616955280304} {"commit": "7ac9062851d5c3d4fd37ba55e72177bee5c0d06b", "message": "More error format cleanup\n", "proba": 1.5077277737418626e-07} {"commit": "c47ad40cc36f3751aef0ed5b24000e31f392dfda", "message": "updated grep pattern for finding running celery workers\n", "proba": 3.4955192518282274e-07} {"commit": "7b395ee45b6844959ee27028eb3ebe579d3feef0", "message": "fixed inout for vertical grid info in separate file\n", "proba": 1.5209867854082404e-07} {"commit": "4cf5d4b1e718bfc3c0f55c6a2ca29540b0656d16", "message": "version up\n", "proba": 3.0471426271105884e-07} {"commit": "e2638e583312208361d35395a952e929b64d854c", "message": "update mapping for status_name\n", "proba": 5.54728160295781e-07} {"commit": "aa5bdf29557c613b64162c5362039a8390f736f7", "message": "Short summaries added\n", "proba": 1.3385462693804584e-07} {"commit": "44c4a5b2706c49338abb1efde82d1234db40abcf", "message": "fix base class\n", "proba": 9.462662546866341e-07} {"commit": "3f2b1b925ac343500b2de0e75dd2e6fca4277631", "message": "Add support for `allow_partial_search_results` search request parameter (#821)\n\n", "proba": 1.1602882210581811e-07} {"commit": "d16752277a2b4411371f876b2f6332a700d0a992", "message": "fix fares test\n", "proba": 9.776449587661773e-06} {"commit": "10b34366c01b5656c1afd629df24568fedf38eb3", "message": "test to make sure ci/cd still works in vagrant demo\n", "proba": 1.4557703309492354e-07} {"commit": "2ad50559ceab9198a761d6efc33ac19f9e13faa0", "message": "support optional pickled backoff tagger instead of default tagger\n", "proba": 3.004378754667414e-07} {"commit": "f9f65b7a18563d8a17df915482e308146ac055b9", "message": "Updated the get apis\n", "proba": 3.5035591849919e-07} {"commit": "7ce592bca1fab8eea9d69454bd49c0c7965d0511", "message": "Robustified CSVLogCursor against corrupt csv files\n", "proba": 8.36484787214431e-07} {"commit": "6c9f473eb0e3ed306af39a616312658c52152bad", "message": "Add build_absolute_url\n", "proba": 4.3644695324474014e-06} {"commit": "d43986e751adb20e4179c81a279884c87fbe4525", "message": "give more feedcback to lua for pxrf mfg data file\n", "proba": 1.25801278727522e-07} {"commit": "59912a0a945429070e0aa1133afa9ccd8bc7c578", "message": "Fix test failures\n\nA bunch of tests would occasionally fail because the filter and query\nportions of the Elasticsearch query are generated from dicts which\nget turned into lists and thus we don't know what order they come in.\nThus two equivalent lists could be in different orders, but we consider\nthem \"the same\" because we don't really care about the order. Hence our\nnew compare function: \"eqish_\".\n\nThe other way to solve this is to use ordered dicts which keep things in\nthe order you add them. At some point, it might make sense to change it\nbut for now I'll just deal with this in the tests.\n", "proba": 2.5793384338612668e-05} {"commit": "a518bff3b7891be53c7c55c12968732496bfe8c3", "message": "Added TODO.\n", "proba": 1.2428171203282545e-07} {"commit": "9811a5ce5690a41af872cf8d7634e890dfc5842b", "message": "new get_n_vq\n", "proba": 9.19894409889821e-06} {"commit": "a7fd154467f125097c23f2fb5560319571d09519", "message": "Update cron\n", "proba": 8.614694593234162e-07} {"commit": "caa86245b429aa71bc2de076763979416b07041d", "message": "change tag for \"incomplete series\"\n\nP can be confused with \"Pull request\".\n", "proba": 1.1701392566010327e-07} {"commit": "eb1fab80e446ef5540a3b4b69175e6c2779eeeef", "message": "Added extract_spammy_pattern_features(), modified spam pattern list\n", "proba": 1.8430706916205963e-07} {"commit": "06cff9ac10e9c8480184f837d59221a344033ca8", "message": "logging: fix call with multiple args\n", "proba": 1.8083931081491755e-06} {"commit": "f2cb01e5e1b6afc14f217d887393e24dfcbb5d9e", "message": "Use an enumeration for actor states instead of ints\n", "proba": 8.070152262007468e-07} {"commit": "c21f94e300e896586eacad231517d9e7484be5a6", "message": "Include support for non-TLS users.\n", "proba": 1.213416140899426e-07} {"commit": "f37cc0108e5ef780e5a55e98a18d8d0e8fbe5768", "message": "Force get_level_display to a string as its not guaranteed\n", "proba": 5.047891704634822e-07} {"commit": "9574099fcda01bbe5d000bfbdad428a48e5d207c", "message": "Clean-up the scalp plot method.\n", "proba": 1.343519926422232e-07} {"commit": "1da1a69eda4008f82f9992458f9bd49427c1ddd6", "message": "Switch sign on NLL array.\n", "proba": 1.2420599659890286e-07} {"commit": "e01d5a7d6bd5a5eb56adb8ded93ccea96facca4f", "message": "Only deploy approved translations", "proba": 1.2274151117708243e-07} {"commit": "37ac3d6520fb6e564553ed8a47837fdf1537212b", "message": "Add zlib dependency to libpng\n", "proba": 5.387172450355138e-07} {"commit": "faaaf1c1c12204cf747300b6726d839f69b97796", "message": "Cleaned up formatting.\n", "proba": 4.475409411952569e-07} {"commit": "bfc1dda24d2d81abb61e1edd943abe1b2a55170e", "message": "Modifying response check and docs.\n\nOur ``twilio_view`` decorator now automates the HttpResponse object build\nregardless of whether (or not) the wrapped view returns:\n\n\t- A HttpResponse object.\n\t- A string of twiML.\n\t- A twilio.Verb object.\n", "proba": 2.392961846453545e-07} {"commit": "d31f2104ab36b44066b1818d17ce0039da944326", "message": "cleaned up the code. found another channel for test data. now using tentensystem.channels.keys() for channelnames.\n", "proba": 1.0641819869761093e-07} {"commit": "dd1cd63487053b2c4b533ad4db404f30c8cc6e3f", "message": "Adds a basic dashboard index view\n", "proba": 4.341796682183485e-07} {"commit": "6aaa28781befba6ed0a9d511855a9e2d4215ef4a", "message": "fw/Artifact: Allows adding directories as artifacts\n\nAdds a `is_dir` property to an `Artifact` to indicate that the\nartifact represents a directory rather than an individual file.\n", "proba": 1.0726143528927423e-07} {"commit": "069914b5bc6b84460ad404e79acaab2c871c0281", "message": "manage.py remote shell works, django-non-rel bug\n", "proba": 4.276261051927577e-07} {"commit": "fce67f2369e204045cd0f53af516acdefc98ccb7", "message": "Gotta save json\n", "proba": 1.9834114084460452e-07} {"commit": "fc3a44485b4d6ac9549a4b5fc236bd42f2f77127", "message": "skip errors on conditional if task is include\nfixes #12843\n", "proba": 3.671148363082466e-07} {"commit": "4206aad5a2ef084359a451d3d346aee49ae9d9cd", "message": "number of levels in plot_scalp now adjustable. the head features are now plotted on top of contour. reduced line strength of nose for nose conscious people.\n", "proba": 9.676189449692174e-08} {"commit": "d6b31d058bf99928565ac32e62adc695266790d6", "message": "give DateTime out_format precedence over format\n", "proba": 0.004540825728327036} {"commit": "e21e0e6a37db6ca6bac95c443a392b8ffd009e30", "message": "alternator-test: test sort-key ordering - for both string and binary keys\n\nWe already have a test for *string* sort-key ordering of items returned\nby the Scan operation, and this test adds a similar test for the Query\noperation. We verify that items are retrieved in the desired sorted\norder (sorted by the aptly-named sort key) and not in creation order\nor any other wrong order.\n\nBut beyond just checking that Query works as expected (it should,\ngiven it uses the same machinary as Scan), the nice thing about this\ntest is that it doesn't create a new table - it uses a shared table\nand creates one random partition inside it. This makes this test\nfaster and easier to write (no need for a new fixture), and most\nimportantly - easily allows us to write similar tests for other\nkey types.\n\nSo this patch also tests the correct ordering of *binary* sort keys.\nIt helped exposed bugs in previous versions of the binary key implementation.\n\nSigned-off-by: Nadav Har'El <625169824b719df98706d88646d0aae6f368ae4d@scylladb.com>\n", "proba": 0.006957714445888996} {"commit": "e50c859f2529fc86770f3d5b7719bb4f779c5a26", "message": "Use minutes, not months, in the time display\n", "proba": 7.71313239056326e-07} {"commit": "b411a6890658e5a4a58b896b1f3cc735e1444b16", "message": "Remove Python 2 compatibility\n", "proba": 3.5033328913414152e-06} {"commit": "d51ae872d7c86ececcca62170b60fda93bb056de", "message": "curtains\n", "proba": 6.726887022523442e-06} {"commit": "0109fa921ccc000dfb315c8867e0c1790858a8b3", "message": "Improved logging\n", "proba": 6.70634960897587e-07} {"commit": "4a532fb60ce865eebdbb7c2bd427a7d45023e8c2", "message": "also match on tabs in ini_file (fixes #106) (#4067)\n\nalso match on tabs in ini_file\n", "proba": 4.456193494206673e-07} {"commit": "d8210e445b6cbe74204f8435fdd6a9afb5d01040", "message": "backwards-compatability..\n", "proba": 2.871581273211632e-06} {"commit": "925e473c0e3775db222996dc2e6dd3ada050956f", "message": "fixed paths for new tree\n\n", "proba": 3.8253349998740305e-07} {"commit": "f9edc2f3a4939feaf90df226e5161d725c4c91ba", "message": "Rework xml_to_hex script to write OpenXC JSON.\n", "proba": 1.121024126859993e-07} {"commit": "820395416431cbc4c174ac4b230c2f12e8e85f31", "message": "only location left\n", "proba": 1.7446400590870326e-07} {"commit": "5cb4297597718cac038611be5327d9e0c9ce5176", "message": "ticgt: use taskgen path NOT build path\n", "proba": 4.767491918755695e-05} {"commit": "5b34043be4a21c53d2ce74e62f7e56534e882e93", "message": "added collections\n\nadded collections for stats\n", "proba": 2.0686975688022358e-07} {"commit": "14d177b80958e40cb61b2fa2dc59cf2c70ec4aa2", "message": "added all sub-paths to non-redirected paths (RedirectMiddleware)\n", "proba": 1.3102963691835612e-07} {"commit": "53261412ba42894345707d1573ce516a32475404", "message": "align all fields; add reference stars too\n", "proba": 2.989915799389564e-07} {"commit": "5f053d8b27611e7858da9b8e8153fafe5cfa4141", "message": "ensure that project is owned by that of project\n", "proba": 1.4965895900331816e-07} {"commit": "373bb7118112d692d578373db9e4ed456cbaf470", "message": "Binaural better should be and OR, not an AND.\n\nChange the selection of the better to a logical OR, instead of an AND.\nLater on, when we select the SNRenv's that are above threshold, we\nshould pick the ones where _at least_ one ear was above threshold, not\nwhere _both_ ears were above threshold.\n", "proba": 2.367509523537592e-06} {"commit": "4bbc5c4a0cfe2de36e5248b6b7a3477a61827457", "message": "webwait: remove unnecessary copy of methodname\n", "proba": 5.757850658483221e-07} {"commit": "004be268167952ec5519fb9f77df4a4f285490d6", "message": "BUG: define results of function as list instead of set\n", "proba": 3.002780317729048e-07} {"commit": "988d24099691920eef9beb5fed0e6aea1b31124c", "message": "fix for python3\n", "proba": 2.824705916282255e-06} {"commit": "3904d19ca11017e94c67fb3c6a786cbbe42f3c36", "message": "Filtering ambulance updates by call.\n", "proba": 1.3169899659715156e-07} {"commit": "fb6717737ff2215d9081b7e826934ee2c47c11bc", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "3cc6cfff9f62d6c3a8920056088df6aca9dc0ccf", "message": "Rearranged models in alphabetical order\n", "proba": 0.0005706468364223838} {"commit": "9bfcfa1da3a07000b139da187fc9b8fe95d95ed3", "message": "move button\n", "proba": 2.3645498004043475e-05} {"commit": "0daddd1b74fa1db6dedbf55d142a9c02f78c7d4e", "message": "First incomplete version of binaural mr-sEPSM.\n", "proba": 1.1320425130634248e-07} {"commit": "efbd8d31a11cae5674e5dd8e07b13f3dd3d826e5", "message": "Fixed python binary path for Solaris.\n\n", "proba": 1.2273308414023631e-07} {"commit": "eef3b5b653ae9b3774416de28202a8330ad4888d", "message": "Test with live server\n", "proba": 2.8640059213103086e-07} {"commit": "2864a49fd2cf921582854d55bc00918b5069b172", "message": "minor fixes\n", "proba": 2.1220614598860266e-07} {"commit": "1cb2bd5c4592ee6923922e86da6c753f2da4d6c1", "message": "use DCC lab/award\n", "proba": 1.879619162536983e-07} {"commit": "170c1ed9d2a4b2affae13ef8f64a97d36a63ed7b", "message": "removed commented out code\n", "proba": 1.9896708636224503e-07} {"commit": "6b4ec9829a1954f19f84e1b1cd10dd1b39d2bb89", "message": "Make the horizontal separator in expanded mode a constant length.\n", "proba": 3.066723820666084e-06} {"commit": "08594388a27feb746b05ce9065e7f4f88f362d5f", "message": "remove debug mess\n", "proba": 1.2492308769651572e-06} {"commit": "f888ff39e4beaf587b02395e55729a0f35b363b8", "message": "Remove redundant expressions in response to darikg's comments.\n\nPlease re-test the change just in case.\n", "proba": 1.3331676029793016e-07} {"commit": "55a03bb6bde8edf33a7e1ca5a9456ef0e5e8bb5c", "message": "piv: fix touch policy and pin policy in gen key\n", "proba": 1.3662217668297671e-07} {"commit": "566b4cfa89ecec3e2a26062d20d7a64560dc325e", "message": "Add support for explicitly giving an editor focus.\n", "proba": 1.1543403388714069e-07} {"commit": "b5e73b053e3e5f0ed11b918e953c4abac2a3d9ae", "message": "Update tutorials/mesh_generation/4_tree_mesh.py\n\nCo-Authored-By: Lindsey Heagy <332bad0119bcfc069524c3b857cda668ff5f0059@gmail.com>", "proba": 1.0796505023336067e-07} {"commit": "05bed1fa1799261fe3ebfbe91c3ec7dbdecc3c4c", "message": "using proxy url for wps\n", "proba": 3.468862814770546e-07} {"commit": "7b08dfecccf083fddfeb8c6102306267c296dce8", "message": "Convert test_dom to use TestCase\n", "proba": 0.9999990463256836} {"commit": "dad12ca73c4ec8eaadae56d1363b32e73097bc4a", "message": "Added some additional guard code to the core wx editor.\n", "proba": 1.0444351516980532e-07} {"commit": "0d1ec82b8d949468e8f6fefee451ed78bf2098ae", "message": "'Avoid setting ETSConfig.toolkit if it already has a value.'\n", "proba": 1.2017959249988053e-07} {"commit": "bb4c99ff439591a861dd56bf8b9a487c5c6fc05a", "message": "add time range for avoiding wrong status set of alarm adjust api\n", "proba": 2.1785609760627267e-07} {"commit": "9afaa7ed9f9150eca9e9a6e381b6389a90cb2174", "message": "Add new SAP fields to conversion function\n", "proba": 2.507123610939743e-07} {"commit": "189cb9a601815f204967fd7b927ea381503d9850", "message": "Add international organization for the whole world.\n", "proba": 6.403702627721941e-06} {"commit": "0386579a8d6863ebff5f225a96e6d0edaddc4891", "message": "xenpv: add note about multiple nics\n\n\ngit-svn-id: 878441c64b34cd88450bc17b31293b7f2e075ecd@1294402 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 4.230707588703808e-07} {"commit": "1b7508d22cca475ee6d0554a55948b46cbd6698f", "message": "-- removing unnecessary python module paths\n", "proba": 3.730337141405471e-07} {"commit": "322d74805e31000b14bb7a4bf37b78a06ff98692", "message": "Fixed labels not being set properly in some cases for ldc\n", "proba": 2.0577535053689644e-07} {"commit": "e0135eadc1393c52a31943510ac6491315a56a3e", "message": "Remove setUp\n", "proba": 1.0073788416775642e-06} {"commit": "27cd6912f3c5a17f4f38c8c66020f41a076d8316", "message": "Use bulk insert in import data\n\nto speed up to by one order of magnitude - still slow but better\n", "proba": 1.3802068110635446e-07} {"commit": "b8674cf7047af2c7c631420c1fdd7c9a8c97734f", "message": "Remove redundant default values\n", "proba": 7.783844012010377e-06} {"commit": "a6f84e057000af231ae877286c4248741496e758", "message": "Update link to documentation\n\nFor custom AWS IAM roles and policies", "proba": 1.2335641486060922e-07} {"commit": "e94b2ea86dd9701736a3169d37cf8e327641777b", "message": "fix semicolon in name\n", "proba": 0.9999994039535522} {"commit": "9bdba3118976df1e98001fb340073aa98bdf3131", "message": "DEBUG_PROPAGATE_EXCEPTIONS = False\n", "proba": 0.9994953870773315} {"commit": "68aafbde35232a0d0a1a5504960670e9481f5fea", "message": "Added locking for IO, avoid call collisions on multithreaded applications\n", "proba": 2.0903536324112792e-07} {"commit": "b95afd96a7fabd47ae3a23138452fd8acb9b96f6", "message": "Add daemon wrapper\n", "proba": 1.0117345254911925e-06} {"commit": "d3af2b5062faa7478da11d310735f48b66501ad9", "message": "Update protocol.py", "proba": 1.085296844394179e-06} {"commit": "f2a8a0aee25d856aa790e74605dc143994cd9943", "message": "-- v0.4.1rc\n- Add -s|--savexml option to save API response as XML file;\n- Add extended dynamic generated information to '-g all' output.\n- Move cache.db to /dev/shm/zbx-hpmsa/ by default.\n", "proba": 1.2587628361870884e-07} {"commit": "e3c6653d7a7170125c11b5f32c2740c5d274ecfa", "message": "Remove unnecessary line of code\n", "proba": 0.9996028542518616} {"commit": "c0d64d732e7134a522aa6bb2c44d067848c85f04", "message": "- Expanded docstring for demo()\n\n\nsvn/trunk@1195\n", "proba": 1.22931993473685e-07} {"commit": "6fa116c5223ce3ad4fce7d194f8957fc76855cf6", "message": "Use built-in query optimizer\n", "proba": 6.659924110863358e-05} {"commit": "cacc0a9a6016c0d0e30fb42dd96fedfa82f5f68a", "message": "Reorder plotting backends\n", "proba": 4.231700074797118e-07} {"commit": "463c1e6579f67abcf3d0b3436427cd51f11f7219", "message": "Raise error if user_lookup input is string #629\n", "proba": 0.00012575699656736106} {"commit": "f0bc9a8c4d57243c64200c130b0228fda5f515e8", "message": "print latest pub date\n", "proba": 3.668170393211767e-06} {"commit": "88d808a6694c386d02794997e498b665a113c084", "message": "\u6271\u3044\u3084\u3059\u3044\u3088\u3046\u306b\u3044\u304f\u3064\u304b\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u8ffd\u52a0.\n\ngit-svn-id: 3c7bb21206057e73d8efe613d54762a8e584b8da@36553 d0d07461-0603-4401-acd4-de1884942a52\n", "proba": 3.2008895232138457e-06} {"commit": "77db31212eae704d5cbc1abceceebaee0a3b7007", "message": "Made checking for child nodes more robust\n", "proba": 1.1156403445511387e-07} {"commit": "88486c4e767cb92b0a51d9c41f4e40121c6e3bf1", "message": "linux/hardened/update.py: get versions with nix(1)\n", "proba": 1.8485488340047596e-07} {"commit": "d7aeb574c14cc6dd078fcf6656d0146e1a781181", "message": "Don't call connect twice.", "proba": 2.1226281887720688e-07} {"commit": "ee62a0b65eae7dbe673ee0eb75ef22220e27920b", "message": "Remove mutable default parameter in rubeus\n", "proba": 4.6259455643848924e-07} {"commit": "34f29bb20a889f09d6de04d0e80e5d9c27704eb9", "message": "more adapting\n", "proba": 4.95001131639583e-07} {"commit": "19d8d3b7d8244ff5a1068e3671ff0aa6048384d9", "message": "collect_addon_static must return lists to be JSON-serializable\n", "proba": 0.00012823396536987275} {"commit": "15ade8843f88c9cf1e91dfe0b72b899f5140e0cd", "message": "Make the Spec immutable.\n\nIf we don't do this, the Spec isn't reliably hashable and we'll have\ntrouble adding them to sets.\n", "proba": 1.298466401067344e-07} {"commit": "fc30377b6467cacc7eddd1efecba630e3f236e7a", "message": "Bug fix\n", "proba": 5.465154799821903e-07} {"commit": "b3d50238bd7c05ef12177fc1447853ccf410786a", "message": "debugging build\n", "proba": 2.168953642467386e-06} {"commit": "3fc80fb323d1b7d9017276e09e2bc76bf6eea55e", "message": "fix for unicode issues\n", "proba": 6.571777930730605e-07} {"commit": "b908f6b96315962db41c3027cdc21d99684eb4b6", "message": "added fd_jacobian to performance testing, this file really really needs to be rewritten as it's rather hacked together and very ugly. A project for another day\n", "proba": 1.132981140017364e-07} {"commit": "cbe28b383666f97a621010fda5df561f805ddb4e", "message": "Added quotes around project key in JQL query and changed timeestimate issue attribute to timeoriginalestimate attribute to capture correct JIRA issue estimation time\n", "proba": 1.2287173944969254e-07} {"commit": "78de5fd2509a23c984af8cabb79a6e3e3d7be8d4", "message": "added reason and description arguments\n", "proba": 1.4493826938632992e-07} {"commit": "c70ddd4dd6919e3ca2206203f509c3490566ebfc", "message": "Remove some debug logging.\n", "proba": 2.1381175940859976e-07} {"commit": "b2f04fce8e8bff34f07b615fc42cc5f87c67486a", "message": "Bokeh monitoring\n\nIf bokeh present output URL.\n", "proba": 1.8321073014249123e-07} {"commit": "c67da69736b33fd6556591f2effa23b789863cbd", "message": "Minor\n", "proba": 3.334548864586395e-06} {"commit": "17440d3918f8f5052bf3fc24b40c24679c0c8924", "message": "refactor(update-server): Make regex string raw. (#4670)\n\nThis fixes one of the warnings caught by the test suite. The regex string relied on the deprecated behavior of unrecognized backslash escape sequences expanding to the literal backslash plus the literal character. It's said that these will be syntax errors in the future. Fix it by making the string raw.", "proba": 1.6068823072146188e-07} {"commit": "d6019b5dfb2c1f682c52a1d9e9d57f63859147ac", "message": "New summery for assess_public_clouds.", "proba": 1.3364849849040183e-07} {"commit": "07db88bba040e0bf84382b07e3ec991f8e6878d7", "message": "exec path update\n", "proba": 6.765996545254893e-07} {"commit": "402fdaee91d6cc7153d9296b035361845b250b22", "message": "completing canceling jobs function\n", "proba": 3.5039543035964016e-06} {"commit": "32211bcd4424cd205650373a57e170107b7eee76", "message": "Remove test draw keypoints.\n\n* Draw keypoints called with the wrong args.\n", "proba": 1.0687465135106322e-07} {"commit": "0e06b701f7441313b6939d675490b5285852b416", "message": "pipeline.py: bump version", "proba": 1.427847564627882e-06} {"commit": "073ccbabff4fc3b86950848585a4b16589fe0b03", "message": "increasing wisp memory available\n\ngit-svn-id: 5c5b0dd92016e7ca67cd95892bc6a66dc7a01036@1116 bf801614-116f-4f24-8474-ab90d4dec98d\n", "proba": 1.4658763802799513e-06} {"commit": "5509c782da6d1c1683f90245c148749bdb88db0e", "message": "Last parameters\n", "proba": 1.5251133618221502e-06} {"commit": "7a39b1c03abdd18f4420342664daafde4e46d1f4", "message": "Last parameters\n", "proba": 1.5251133618221502e-06} {"commit": "e6e5efc4c25c5530de430f8d4bdbf51a568c4267", "message": "pipeline.py: bump version", "proba": 1.427847564627882e-06} {"commit": "065f04e9c541cf79b3285a9dc607118a33fa3b50", "message": "pipeline.py: bump version", "proba": 1.427847564627882e-06} {"commit": "74bc68453d9c700428e999e5780250932d14d8a5", "message": "pipeline.py", "proba": 7.949909559101798e-06} {"commit": "2d2f17d0545d073f4d7246390dff729ef063f722", "message": "pipeline.py: remove link", "proba": 3.207944132554985e-07} {"commit": "c649b1ac82e92fe662e398f32390d7274fad5f9b", "message": "pipeline.py: bump version", "proba": 1.427847564627882e-06} {"commit": "09f930cf87c87a16b32699cae7f97538bce2fce8", "message": "pipeline.py: add support for 'myfamily'", "proba": 1.742443629382251e-07} {"commit": "abc15fea8843a5eb389729f8c00103ae1b533b9b", "message": "rename param\n", "proba": 2.9508253646781668e-05} {"commit": "41d856aa0e7d0eb05433c07eddd18943740c7245", "message": "pipeline.py: bump version", "proba": 1.427847564627882e-06} {"commit": "c534a1471e9f29ef1794e58a2a302d7b81baa138", "message": "redirect command error to log\n", "proba": 5.966531944068265e-07} {"commit": "250fa5a7396bdc99aa826a882a0ffe4fbaa3514a", "message": "Protect python executable path against spaces\n", "proba": 4.0590234675619286e-06} {"commit": "6fbc9fffa23baee1f2f35a3b34a671aff71f3c74", "message": "pathlib.Path\n", "proba": 2.764646524155978e-05} {"commit": "d54885cbca6c67c02ba34f87ea5d767c0b0a2bf6", "message": "Fix use of name parameter to pkg_tar (#469)\n\nThe legacy branch of pkg_tar attempts to fetch the name parameter using kwargs. As name is an explicit parameter, this results in a build error. The PR changes this branch to use 'name' instead.", "proba": 1.1891070528236014e-07} {"commit": "0d480128c4289f3be74fface239460b8fa135cae", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "96319ad10aa9fe66a9c2083ce73f11ffdcb85d0f", "message": "Added error monitoring\n", "proba": 1.4451592278419412e-07} {"commit": "76484e2f6090373ba9bc2ef58c9058e314161169", "message": "Added a TODO\n", "proba": 1.8871557472266431e-07} {"commit": "26d23d7e7e4788d7751b979afc3463cb2a58d2a3", "message": "Small cleanup.\n", "proba": 1.9166328968367452e-07} {"commit": "8a575193ffd38f4fb6b3d35ebaae56ff8161d0aa", "message": "Moved vtk specifics in ModuleSpec to subclass\n", "proba": 1.43725344514678e-07} {"commit": "b3f0f431d766f5b4eb14795229f3aeff1969d130", "message": "#21: Test manager for non existing driver.\n", "proba": 1.147884276520017e-07} {"commit": "a4aff3b7ffa41b81c7cad564084d84fd9699c932", "message": "Use a TestCase to remove some duplication across similar tests\n", "proba": 2.795772707031574e-05} {"commit": "51ca7d23fc7a8229ad2f60f39226039294d1da5e", "message": "handles the case when filter and num is True\n", "proba": 0.9999988079071045} {"commit": "aa94a3769f1878c4998e6f5d3d1a14f14c0e3d78", "message": "lcproc_aws: fix user-data bits, prodloop result handling, add ec2_ssh()\n", "proba": 4.120849723676656e-07} {"commit": "afce24ec068ea60f181b85a8addd4191e903a5ae", "message": "Fix complex constructor/representer pair; use correct class for the other representer methods\n", "proba": 2.7121161565446528e-06} {"commit": "d09d522fba52f9b6cc1516459eafc242b519730f", "message": "More debug logging.\n", "proba": 1.3696408984742448e-07} {"commit": "5f0e7069cfd6ae85141f48c644151550af5256be", "message": "Make table / column repr faster for many rows\n", "proba": 2.3597328890900826e-06} {"commit": "9a4f71dd4c043185fdb2eb3ef98c5908f9817f1a", "message": "Oops--fixed format string\n", "proba": 1.854981860560656e-06} {"commit": "8de693c7a17b08d4a5206cb94d38810e599fb147", "message": "Solution for Issue #1646\n\nChanged the metadata that ALMA needs for authentication", "proba": 1.2329032017532882e-07} {"commit": "4506b23e6a3379945f482c4f71cc2469310eabe5", "message": "github: fix created semantics for folder move/copy\n\nThe logic for determining whether a folder that was moved or copied was\nincorrect. Github tree paths do not have trailing slashes, so exists was\nalways being set to false. In addition, the caller expects the second\nreturned arg from this method to be created, which is the negation of\nexists.\n\nFixes: [#OSF-4870]\n", "proba": 1.2300473827053793e-05} {"commit": "f58b041cbd0021bc55559ffd50401472f6aa4317", "message": "First working copy of ogle module\n", "proba": 1.3035322865562193e-07} {"commit": "0b2848cf010966e14a6d94874eedf65894b333b4", "message": "Update client.py", "proba": 6.903821372361563e-07} {"commit": "8155b1a5bf195ff4cf8e346b4b60ed8a672530bc", "message": "Last minute hacking\n", "proba": 3.9806943163966935e-07} {"commit": "9731cdf40ba8d154cc3aa7730f194c28356c0b10", "message": "cleanup redis db after tests\n", "proba": 1.592816545326059e-07} {"commit": "014119486342479ea03fbcfe8ac2e2a470a4203f", "message": "Mark point from which develop will be merged.\n\nIn order to be able to rebase with the changes for cassis pull request.\n", "proba": 1.0074549550154188e-07} {"commit": "c596cc49f017a2f1432c0269d9967e3501c628c3", "message": "Improve train creation time\n", "proba": 8.956403689808212e-07} {"commit": "c23801a4ee8827d12c88766a98cf0e53fd813e0c", "message": "Add method work with drafts for clean old drafts\n", "proba": 1.8072570640015329e-07} {"commit": "9b2cbb894327ca5199cf32ba171191ef9cd3d5e7", "message": "Remove testing code\n", "proba": 1.6284847106362577e-06} {"commit": "22c5636874f216f4c9cabcf02cd9430e6cf896f6", "message": "Update schema: Value for Inserting into DB can be anything.\n", "proba": 1.1972396407600172e-07} {"commit": "c84069aa48d0e5a38e9b50f15ddd20fd4d07f719", "message": "small fix\n", "proba": 5.359547685657162e-07} {"commit": "7c63911e6291ece23a1c6fe84954f404ec327813", "message": "fix failing test\n", "proba": 5.703402166545857e-06} {"commit": "4b6cac5d01cf58f94192b0b733548318c6911965", "message": "Refactor ROIExcluder create_mask test\n\n* Remove use of numpy.testing\n* Add better name\n", "proba": 1.333055763552693e-07} {"commit": "91efc7ec514305485254471609cc99733cb02fb7", "message": "bugfix, might not get a reply with the first line\n", "proba": 2.7303423166813445e-07} {"commit": "fd943d9187812aa3bea2e6a3f6198c268368b3e5", "message": "Add test case for original value and deserialized encoder re: #1715\n", "proba": 1.4964639660774992e-07} {"commit": "baea9d3241fbab1917e3266c16f822468a769eed", "message": "Don't fail on windows\n", "proba": 1.6572071217524353e-06} {"commit": "407757153a76c9168160513838eda26db0aa6fe6", "message": "Refs. #43 - Add more unit tests for freemail, actual coverage 92%\n", "proba": 9.65344213454955e-08} {"commit": "560d86b64ffc053649c003f30e0efd13209d90f1", "message": "Refs #9 - Run test_save_stats_text. No need to call udate_image_count/update_pixel_coverage since the PDF file is pure text, no images.\n", "proba": 1.1905254382327257e-07} {"commit": "918dbf7cb8625f33e1aa8717305c8ed071eb4aa1", "message": "Simple tests on None keys and values\n", "proba": 2.282548479115576e-07} {"commit": "1617ef5bf32fb432265eb4e8aa651313da14482a", "message": "Adding new metric type to compute ci derived metrics\n\nPiperOrigin-RevId: 392719876\n", "proba": 5.411804522736929e-06} {"commit": "d4a7a8f9e4988c8e66bde47a3b758dc7e2611edc", "message": "Add timing information to Kubeflow e2e tests.\n\nPiperOrigin-RevId: 277202469\n", "proba": 1.1543162145244423e-05} {"commit": "e4935a2c2b7ab9aa8f0bebef9c9a1e63d01aea0e", "message": "06Feb2017", "proba": 5.70698716728657e-07} {"commit": "235a01dda900cb686ac7b969afe32aa98a3d8bb4", "message": "Add \"accept\" attribute to School ID form field\n", "proba": 8.812369856059377e-07} {"commit": "3fefd303ac5efcb36f07b6803d8a8600a5c8d2ca", "message": "0022427: EDF GEOM Regression: Issue with geomBuilder\n", "proba": 1.1094271457068317e-07} {"commit": "8cbed451341327e5ff8d01c121c0c601124319b6", "message": "changed variable m_phone to my_phone because i'm petty\n", "proba": 9.092326217796654e-05} {"commit": "1a1c2137d1c0f126b7874dc2c49e08da28a98333", "message": "Minor style improvements (string formatting), docstrings and comments\n", "proba": 1.457535887539052e-07} {"commit": "12b25244a251ffa9ec48badd159481b565157f31", "message": "Extend timeout on nailgun test\n\nSummary:\nThis test likes to fail intermittently on Windows. Less intermittently\nlately, hence this commit.\n\nTest Plan: CI\n\nReviewed By: mzlee\n\nfbshipit-source-id: 4c80436\n", "proba": 1.558565401182932e-07} {"commit": "7859871958601600bb4c861e13c9a5d277dbb159", "message": "Nucleus no longer depends on TensorFlow's pip package.\n\nPiperOrigin-RevId: 238098099\n", "proba": 8.140423233271576e-07} {"commit": "441a24111f15f91c1434ef65b44bd7bbb8c2026e", "message": "Update. ", "proba": 3.493966005407856e-07} {"commit": "b06e4174b9973a80a046f2b2819711ffa643e1df", "message": "We must wrap the listener class in a try, in case dispatcher is not installed.\n", "proba": 1.0666651917290437e-07} {"commit": "d176e445e4fa4d496c43bcef4a1cb023fe40fb50", "message": "allowing monitorplugin to be optional in an ad-hoc temporary solution\n", "proba": 1.9572590304051118e-07} {"commit": "e6b40390c637928e8f5b0601e691090b8940ac8c", "message": "Nuke: fixing viewer locker not to stop if no available viewer\n", "proba": 4.254530665548373e-07} {"commit": "4aee7701db5a3935f5c7269866f10d3ad5e3efec", "message": "caching sessions to avi controller based on tokens and tenants\n", "proba": 1.3462890535720362e-07} {"commit": "bf18cdf27769cc7c9afe5889dc328e23c2df2073", "message": "Apply a patch from Alan Wood that helps benchmark.py run on the Windows\nplatform.\n\nNote: the patch was not completely applied, but inspired this change.\n\n* /tools/dev/benchmarks/suite1/benchmark.py:\n (): import stat to use for chmod later\n (svn): if an OSError occurs when trying to run the command, return None\n for the stdout and stderr. this signals to the caller, that the\n command (probably) could not be found.\n (rmtree_onerror): helper for the shutil.rmtree() call to fix up a\n Windows tree to make files writable, and (thus) deleteable.\n (run): switch any backslashes in the repository (file) URL to forward\n slashes, as any Proper URL Should Be. rather than using 'which' to\n locate svn, just run the --version command (which we want to do\n anyways). The operation of that command will signal whether we can\n successfully invoke svn for the tests. also: use rmtree_onerror.\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1094816 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.00033116716076619923} {"commit": "9bb319ef76e25f67d9793d7d4d6ca71542e27b2e", "message": "Don't count AIs after last \"Still Alive\" line\n\nAvoids problem of there being more AIs possessing a gene than there are AIs in all the pools due to counting partially written pools.\n", "proba": 6.1266332522791345e-06} {"commit": "10eeae0ced412f6319196b80907e9e4785d7d921", "message": "fix retrieval of cell stacks\n", "proba": 3.530270191731688e-07} {"commit": "298bf908faa325b4e769cd4f8f3c2b3b599b1b37", "message": "_analyse_function_features(): Skip empty functions. (#929)\n\nWe used to always mark empty functions as returning, which is an incorrect behavior.", "proba": 1.9099765324881446e-07} {"commit": "a3b1269410bf22173542fef9b27233648c47224b", "message": "[pre-commit.ci] auto fixes from pre-commit.com hooks\n\nfor more information, see https://pre-commit.ci\n", "proba": 1.2907548807561398e-07} {"commit": "1263d32a21458f8ec39891988cb92df609703dbe", "message": "Add some comments to disaggregation class\n", "proba": 1.7909779614910804e-07} {"commit": "ff19108cb49c730efccdd01d317274398b76f7c7", "message": "Add .pop() to state.globals\n", "proba": 9.031299669004511e-06} {"commit": "95d9e8e4d7fe49e752720a452773377e53506ee2", "message": "Document non-working, commented code\n\nIn case somebody tries to optimize copying time series from the original\nnetwork to the partial network, I've not deleted a buggy attempt to do\nso, but documented it instead, so the error that's in the code isn't\nrepeated in the future.\n", "proba": 3.0901082936907187e-07} {"commit": "63d3c74bfd680cc3171e658b6497d1be8c9efd84", "message": "Update crunchyroll.py\n\nFixed crunchyroll download for single episode", "proba": 1.2376814595427277e-07} {"commit": "77a8df0cac29ecee8524e422633744570308efc5", "message": "Changes in admin to reflect new model of charges/contracts\n\nSigned-off-by: Raphael Lullis \n", "proba": 1.097464377153301e-07} {"commit": "5f516215eec6bfd29cbe4361f31003573c84ed08", "message": "Change aliases of ExtendedRoom's desc command to reflect 0.7 hanges'\n", "proba": 1.0457308263767118e-07} {"commit": "f269e80fdca8fcf398b3d35a09ca2ce84a00b708", "message": "Use namedtuples for internal meta info\n", "proba": 1.456481300010637e-07} {"commit": "6117f0456f0d68b5dc7bc213c603637cc88d8333", "message": "fix classes variable in dict\n", "proba": 2.6554953365121037e-06} {"commit": "a994f2b3976497d1553d895702d7557be78348c8", "message": "change the default of the \"action\" flag to \"search\" \n\nFormer-commit-id: 4806aaceb5aba2781dc5b48020e4e971127ec23a", "proba": 3.7521553167607635e-05} {"commit": "e311e58fad9e6d22e0118c0a10ab902f23a3ee42", "message": "plots now shown in case of standard execution\n", "proba": 1.6523891588349215e-07} {"commit": "9b48bfa8e60142accd52c3b5ce2666b14a551233", "message": "removed commented code\n", "proba": 2.7303161687086686e-07} {"commit": "a89f82a70b17cbe6c2053c362197f87487ef9379", "message": "Prepare django model for external scoring\n\nFully untested due to django stupidness .. would need getting some\nsystem with old enough version\n", "proba": 2.5775426593099837e-07} {"commit": "5c782e17697e809a0997100296d4b6a0acd416a7", "message": "removed unused import\n", "proba": 4.2686903611866e-07} {"commit": "90c72c31a55337bef61cdd0cb75f5d128bcc34f9", "message": "Fix of minor typo in the UnmappedInstanceError message\n", "proba": 1.5452292245754506e-06} {"commit": "99a8caa78498f6109f6a87999fbe618090ccb5fa", "message": "Bug 1032689 - Develop second set of semi-auto tests for Telephony API.\nFixed review comments\n", "proba": 1.006494656508039e-07} {"commit": "92602e4777d5afd81cece867af14bff911235170", "message": "Moved constructor closer to the class's fields.\n", "proba": 1.1913977004951448e-07} {"commit": "08a90c8a510e1d5de1ba3ac44a28f83a0d7f278d", "message": "Handle 404 fetch if the channel id doesnt exist\n", "proba": 2.3297219797768776e-07} {"commit": "efcd2d9a83a505ff360fd5cd413b01c5f88c8fd6", "message": "Cleanup db commit more often\n\nMaybe this will fix the issue", "proba": 1.7578692279585084e-07} {"commit": "59e5bca0f048a4c8d8a8751205e298f037ffa48b", "message": "Define a PUBLIC_URL.\n", "proba": 0.0031439459417015314} {"commit": "1c71dbe4dadbfad55803e871f662a347e5518672", "message": "Fix failing unit tests, missing import.\n", "proba": 2.0483516038893868e-07} {"commit": "f543a2cbfcfcd9feac34646bb093fa120dfaa914", "message": "Izbolj\u0161al kaco\n", "proba": 2.6246179913869128e-06} {"commit": "4b2eadf597e540ad1495cd7609088ebf84bdadb4", "message": "Bump version to 9.0.0a5\n", "proba": 3.0751448321097996e-07} {"commit": "a9650426ada716d78c6d5c42df24e9ea2d0437a1", "message": "[BUILD] Cleanup of CheckEnv.py script\n", "proba": 1.7712035571548768e-07} {"commit": "06f0b6164aba8468680705a7542b25d602b9b588", "message": "added some special queries for ease of use\n\n\nFormer-commit-id: 4cc388ceeb2371eaeaa4261cca94432490564bfe", "proba": 2.059936861087408e-07} {"commit": "24bc5523ce588ca4303e3de99d52c29b322db073", "message": "Fix api model - those attributes are now populated on the server.\n", "proba": 1.0084296775403345e-07} {"commit": "aaf26c08529a0cfad2c7774877d68a0e09c6dca8", "message": "clean range - parse infinities\n", "proba": 0.00023659646103624254} {"commit": "db8ebb31e63af9aff2073eb1a276e9a82f2e69a3", "message": "Arch: fixed import error\n", "proba": 5.559764417739643e-07} {"commit": "b928f17d69615c885bb6eb7a05affd5df619ba07", "message": "Add additional asserts.\n", "proba": 1.9184030009000708e-07} {"commit": "9f00b431ee4bf8fa3ec94684510c3538356e3e3a", "message": "refomat with unix line endings and cleanup whitespace, no functional changes\n\ngit-svn-id: 353d90d4d8d13dcb4e0402680a9155a727f61a5a@908724 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 7.011269644863205e-06} {"commit": "fbf544518cfa5e32d69ebab9e12e6129000ca7d8", "message": "adapted to new TreeHerder output\n", "proba": 6.198031883286603e-07} {"commit": "539d790b5bb69188d46f3c0faa9b28f84e63c1e0", "message": "added support for limitting days of history to collect\n", "proba": 1.0743506351218457e-07} {"commit": "9777f55daa057cd7e4e99f8489c0ce29274d9ceb", "message": "Updated version string to 20140929", "proba": 2.69650570317026e-07} {"commit": "7151b4f22dfa6e1135830fbe46061889e1d8b74c", "message": "VDM-106 Modified code to use 'Set' data structure for removing duplicates.\n", "proba": 1.0602959576999638e-07} {"commit": "55f85f23079b7229204e89e29d568ac969931449", "message": "Cache compilers parsed from config files\n\n- Spack ends up constructing compilers frequently from YAML data.\n\n- This caches the result of parsing the compiler config\n\n- The logic in compilers/__init__.py could use a bigger cleanup, but this\n makes concretization much faster for now.\n\n- on macOS, this also ensures that xcrun is called only twice, as opposed\n to every time a new compiler object is constructed.\n", "proba": 2.419189740976435e-06} {"commit": "a1e12ea16f79d8b72420138e8ab53fcf61993698", "message": "an import ! eesh\n", "proba": 0.00014925091818440706} {"commit": "e1c9c54af889952553817f605f31965affaa5923", "message": "took out print statement\n", "proba": 0.0013601306127384305} {"commit": "14fb48219bd543747040cd178b8164cb5f056553", "message": "database bugfix", "proba": 8.087240530585404e-07} {"commit": "5242e2ff8dcddd3b1f22a96f512578a6693c4cc5", "message": "Minor change\n\nCloses #789\n\nSigned-off-by: Tomaz Muraus \n", "proba": 1.1055530535486469e-07} {"commit": "a6cb1965aaa6f9967a0a58c1998dd1beb89dde24", "message": "Fix error\n", "proba": 3.6451685900829034e-06} {"commit": "4b497e684656f125117ef7012455c31f3928622e", "message": "tonybaloney rm parse_error sugg\n", "proba": 4.030328909720993e-06} {"commit": "4fe783d3875b91721b38a0a24846811c2f1c9edd", "message": "[metasploit] Risk re-evaluation for some plugins.\n\nThanks Tedi Heriyanto for the help ;)\n", "proba": 1.0080893275699054e-07} {"commit": "f53c97e174ae15e6af6d64e4dce5f3498b8964c1", "message": "Bugfix int + str in Window.onError\n\ngit-svn-id: 6db40d0534cac73ba019dccfebee869402ecad0c@1956 7a2bd370-bda8-463c-979e-2900ccfb811e\n", "proba": 2.4888520329113817e-06} {"commit": "2373054919a04b522fae2554134a60edb6ea5ee6", "message": "Initial import of code for tenant connector module\n", "proba": 1.595309697677294e-07} {"commit": "d1819db5bdf1465d4347583da839479f833c28b7", "message": "removing SDK from module (#1002)\n\n", "proba": 1.1300653568468988e-07} {"commit": "8135da03a1d7dcb345531c4bd6776d7dc63ce95f", "message": "clearer exception fall\n", "proba": 1.7890129129227716e-06} {"commit": "f6e661e6688fdd717d9de8cca2a72a39fdaf57fa", "message": "Fixed call event class\n", "proba": 3.967531654325285e-07} {"commit": "d5fd5ce92b3deae34c25836110019953f86809fa", "message": "minor descrp. change\n", "proba": 0.9999330043792725} {"commit": "a56f4d3fd8048d2f2fd537a5805edf0ca520dae2", "message": "Correction\n", "proba": 3.6583642213372514e-06} {"commit": "163a6f0598bfca015b89792951b9477766077e4d", "message": "don't allow file_url to be None\n", "proba": 0.9998793601989746} {"commit": "ba1d3f82b16115f475640b3b8b5cab908af6594b", "message": "Forum validation process updated\n", "proba": 1.6860083462688635e-07} {"commit": "b41fed5b3a0d09f6a977a697988ff2f6da1c2d31", "message": "added new exception for the idk metadata class\n", "proba": 2.78619637583688e-07} {"commit": "434043db527047db5bc582bb5d4c0b9ff611baee", "message": "Test simple connection first\n", "proba": 2.5443861773055687e-07} {"commit": "2a4ef8302db500c9300dcc1b9de8c30492789e15", "message": "Ref: moment_helpers.py remove underline from argument names\n", "proba": 1.927541006807587e-06} {"commit": "a092065b441d38fcb0fdf9ee4c54aa9f714abe42", "message": "Remove unused methods\n\nThey are not referenced anywhere in this file\n\nBug: 1046596\nChange-Id: If9a76df7ee83d2d95a3c8185371a01fee71fa283\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2035792\nCommit-Queue: Tim van der Lippe \nReviewed-by: Paul Lewis <8915f5d5c39a08c5a3e8a8d7314756e4580816f9@chromium.org>\n", "proba": 1.6033176507335156e-05} {"commit": "4a1c46d2e13987d4f537109d95b57a826a2015a1", "message": "remove VICMS restrictor", "proba": 6.034952662048454e-07} {"commit": "b5ef3c4f65edf1d027cb0ce281f9ef3f7adb1001", "message": "During generation of readme, Handle external repository (#737)\n\n* during generation of readme, handle external repository\r\n\r\n* updated a comment", "proba": 1.119795385307043e-07} {"commit": "7829de434a061b0252b3b28ce13ba1df50bf06d3", "message": "add: replace with correct directory path\n", "proba": 4.966735104972031e-06} {"commit": "fe0ee9fd2605415e442e2ee45ba60ac364776c58", "message": "Fixed a test issue.\n", "proba": 1.2781124780758546e-07} {"commit": "42ece0ca812e0948ba9cbd80ea2836622c2cbbf2", "message": "remove conftest note on pytest_cmdline_main, the hook is invoked\n", "proba": 1.5032539124604227e-07} {"commit": "73586be08fe33c483ae3c3509a05459969ba2ab9", "message": "terminal: remove unused union arm in WarningReport.fslocation\n", "proba": 1.8931909551156423e-07} {"commit": "b02d087dbdd6f8b0a4233314356b2442da7fc6c5", "message": "cleanup code pre pr\n", "proba": 4.370603221559577e-07} {"commit": "39fb616ee34fa3671d190a3b01bb98c2c8302dc0", "message": "update community code\n", "proba": 1.7695961673780403e-07} {"commit": "4bb5a2f22970d0e969af3a0cb3ad198e6cac9d69", "message": "Correct stats calculation for phases.\n", "proba": 2.2866053939196718e-07} {"commit": "b90d422352de8a1cc563023952753579a25088be", "message": "Fix assorted errors (#7)\n", "proba": 3.066907083848491e-05} {"commit": "430ffb2436ccda0bb117f53ab603836b441542a8", "message": "Fix #108: Incorrect column names for auto-detection of changes\n\n--HG--\nextra : convert_revision : svn%3A69d324d9-c39d-4fdc-8679-7745eae9e2c8/trunk%40187\n", "proba": 2.789987831874896e-07} {"commit": "da1044182778a267918d1a0a60e41e4a692b09ea", "message": "parse rules\n", "proba": 0.0013601784594357014} {"commit": "aaa1ce015f45ab971077ba65bb42d88a7d667934", "message": "Clean up\n", "proba": 1.531641828478314e-06} {"commit": "cce7797a756fff15d7b3753637642482f0884abd", "message": "Another rename for makerst.py\n", "proba": 3.2294803986587794e-07} {"commit": "87a9fbf3c5a4e028931992b6be471a0726333588", "message": "update PM1\n", "proba": 3.142951925383386e-07} {"commit": "ea5a223eace2a58f0f01bb8379e58a447ea8ffcd", "message": "make the spinner slightly better\n", "proba": 1.3236399354354944e-06} {"commit": "335a2b001c6fb9e63a0a591ad593b96fa2be1da4", "message": "Fix a regression in reading skinned meshes\n", "proba": 0.00021031095820944756} {"commit": "5909c0410d3db9507bba3a444410cf339c12e8dc", "message": "Updated to final DR25 version", "proba": 1.388367962817938e-07} {"commit": "91180e7ce82c48d5b3ab69497bac401e7386f48f", "message": "Remove progressbar.\n", "proba": 2.8675918883891427e-07} {"commit": "a613b5a8227fc91cef8b7e6a37a5a5c6c7af3013", "message": "Implement SkinMesh writing and clarify types\n", "proba": 1.6790909285191447e-07} {"commit": "80fd5f26cc30be79bc49fdca8db63dd341af7741", "message": "Implemented generic bar grapher from the plot_mc method\n", "proba": 2.0544867140870338e-07} {"commit": "baca845cd8569e100d655f1ebe10b64514119ec2", "message": "adding new do_elliptical_photometry function\n", "proba": 6.01320778059744e-07} {"commit": "32e1f57203c848dd59c25c266364a1815e3dd3e1", "message": "Improving autoloading performance through --optimize-autoloader argument.\n\nCalling composer update with this argument will make composer dump the classes mapping on an array, making it load a class much more quickly.", "proba": 1.1153679935205218e-07} {"commit": "19ead70c402441909a2efcf6b85cb406349ed9bf", "message": "added index for references and prooperties\n", "proba": 1.2590869857831422e-07} {"commit": "958719a7e429705c80bbbc8d039f08c715eced93", "message": "UPS: reset nqueued before setting new values in set_queue_limits\n", "proba": 5.969019412077614e-07} {"commit": "d2eaaf17cb259ed79bd155cc9204def04502f601", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "0ab4e2b67655c611655b39e27cf712ce7a63fd14", "message": "default model retrieval to none\n", "proba": 3.628191507232259e-07} {"commit": "f9641fc0db2ddee52894059123c48834f70964a7", "message": "UPS: set_queue_limit missing param in varMap\n", "proba": 1.539994855193072e-06} {"commit": "951924b2319cc7a41b2bf9820f972544a9b75b40", "message": "Fix up doc string for plantuml_web().\n", "proba": 5.732327190344222e-05} {"commit": "5aee7c35ef27dbfa590dfd30364000840dd0006a", "message": "Update natural_sort function\n\n* wqflask/wqflask/show_trait/SampleList.py\n(natural_sort): Add new function.\n(SampleList.get_attributes): Use new sort function to do natural_sort.\n", "proba": 1.3284514466249675e-07} {"commit": "e4dcd1e622bc39938435d839bc3047675929885e", "message": "test: better unit testing\n", "proba": 0.002571494085714221} {"commit": "6b4fe6778709448b7d3e70a01b32890ad1247a64", "message": "Support for newer versions", "proba": 1.7147262099115324e-07} {"commit": "d16acd601db705215855a9096717d932f035ac23", "message": "Don't use usernames in paths.\n", "proba": 2.0164831937563577e-07} {"commit": "9001dcd36325810c6f0824b2f40c498fb13e23dc", "message": "More complete message in download function.\n", "proba": 1.1023609403082446e-07} {"commit": "c96174c4a27924825add10edc5652a1b43a74c4f", "message": "[FIX] - partner_slow_payer: Fixed error in date format.\n", "proba": 1.280193657748896e-07} {"commit": "ce0ed9246db8063efd0091cf9226f9f5e162ccfe", "message": "Explicitly order settings objects by ID, needed for some DBs\n", "proba": 1.3606292270651466e-07} {"commit": "cf9a9e2f779a10fbb39856fca7d3f2ab904177b4", "message": "fixed unresolved reference to task\n", "proba": 5.21570427736151e-07} {"commit": "7bda27d834a008d55a4857087037e5f8ca2a6fa6", "message": "Fix python 3.x\n", "proba": 0.9998509883880615} {"commit": "601629d7527a85103e5eeb17390f6dcfd9a2bbcf", "message": "Modify Ians server.py to handle POST requests via a submit form\n", "proba": 1.3997789949371509e-07} {"commit": "69b3e453960d4ab7dddc2c1af5c1d6b789495c9d", "message": "[FIX] partner_vat_unique: constrain on company change\n", "proba": 6.528098310809582e-05} {"commit": "5779166b321922ee10c0589af99177e4deb46b66", "message": "removed size dropdown\n", "proba": 1.1345039183652261e-06} {"commit": "014c3689fdd0a5f9a22182a96b4d9a935342f059", "message": "Update docstring of wheel.wininst2wheel.parse_info...Sphinx didn't like it.\n", "proba": 1.1023335844129178e-07} {"commit": "5f3607b8b007565fbf167bd02ac366a7e4cbdd94", "message": "BUGFIX: Remove length check on ga.send_data\n\nNow that we're using generators we can't easily test whether there are\nany documents without reading into the generator. It also doesn't give\nvery much value.\n\nIt may be useful in the future for the post method on DataSet to return\nthe number of documents that it sent.\n", "proba": 1.1130027388617236e-07} {"commit": "9ff473ba50b6cafc0e81248a69c957585598217c", "message": "more refactoring..\n", "proba": 1.5359950111815124e-07} {"commit": "17d3eb5d10e72f3669d96f8f7ee1b02f73248755", "message": "Report the metadata to stdout as well as to file.\n", "proba": 1.217310625634127e-07} {"commit": "d61eafd4c0780bdae5cc1493875b680833964527", "message": "[twit] Move module to -extras\n\nIt's not worth the effort to account for the API change\n", "proba": 1.7390337347933382e-07} {"commit": "84b03d7af84707cd7723cf4b4d8dec382e9f2821", "message": "Removed a few remarks from the usage message.\n", "proba": 1.1032823010737047e-07} {"commit": "ccfc3fe364460190b607e723093210eb0c4b6b98", "message": "bug fix, rivers working again... time to deal with erosion\n", "proba": 1.2675857874455687e-07} {"commit": "ad9832221d8d8314fc3c67138b1c07c499871fd4", "message": "autocommit == True removed in SQL class.\n", "proba": 1.4354425559304218e-07} {"commit": "c008c7188ec6101eb6b01f74c15dcc03c41f8f0e", "message": "Adding Splitgate to commands", "proba": 4.981161509931553e-07} {"commit": "e66d3874ebafd9a567af6619f10f05b28261a486", "message": "intermediate save of updated SPC PTS parsing", "proba": 1.6433936878001987e-07} {"commit": "afca9cf12f858d34629674bb97e3a42c7fa320e4", "message": "Who knows\n", "proba": 0.0014195801923051476} {"commit": "7b5d01e2fc739784d136248ed5a59f72d9b57ad2", "message": "[core.cache] implement 'clear' for SQLiteRegion\n", "proba": 3.5666420217239647e-07} {"commit": "2ab328e18932d26234bdf9d9ef89028acbbd2ac2", "message": "Add resampling bandwidth constant variables\n", "proba": 3.198786998837022e-06} {"commit": "b85a986c6b14c36f5ab5b94cd58898d62fde8cdb", "message": "+ added random meme builtin\n", "proba": 1.285109760829073e-07} {"commit": "0ac81e95eba28b58ff06e2c8b075573fd56cf434", "message": "minor fix\n", "proba": 3.935496124540805e-07} {"commit": "eb933d911dc1c11a30e7c676a185092e94da0f3d", "message": "handled case for when location does not resolve\n", "proba": 1.1865598708027392e-06} {"commit": "3a6c06756851e714600664dc4b50aab72979bb86", "message": "params.py: enhance IpAddress param handling\n\nPrint IpAddress params in dot notation for readability.\nProperly compare IpAddress objects (by value and not object identity).\nAlso fix up derived param classes (IpNetmask and IpWithPort)\nsimilarly.\n", "proba": 1.1151595202818498e-07} {"commit": "7d648785490197ecb591b0d2d7b236cf4a29760b", "message": "BibDocFile: fixed bug in get_xml_8564\n\n* Fixed a bug in get_xml_8564 which rendered the function completely\n broken (thanks to Glenn for reporting this).\n", "proba": 9.995615357638599e-08} {"commit": "0c9ddcfe41b210f3b4ce11c5b61d73c131665279", "message": "changed padding.\n", "proba": 2.347273238001435e-07} {"commit": "5858dbf2b15672afb4158aa10d61fd43172f8ec5", "message": "refactor: hoist loop to statefull class\n", "proba": 2.1506060875253752e-05} {"commit": "776ea804d331dba56145e432946bf9c17ed298d9", "message": "Remove unnecessary client creation and login\n\nThis happens in the setup above.\n", "proba": 1.0392348315235722e-07} {"commit": "c8fd8a9e1ad3485b8bb1efb6ac51baf4b0db21d2", "message": "Fix crash on duplicate or out of order reactions.\n\nEventual consistency ftw\n", "proba": 6.638377954004682e-07} {"commit": "101631984c148f35b7d0a528b37d4eee2bd5f848", "message": "Change migration file\n", "proba": 5.735249715144164e-07} {"commit": "e6fe11b7e1e1e5afd4bfb92cb0dd08f2a08e0f22", "message": "codestyle changes\n", "proba": 6.919086104062444e-07} {"commit": "408000fb03dc7bd88740294a89058ba48226e2d4", "message": "add TODO for get_tag_articles\n", "proba": 2.3672944848840416e-07} {"commit": "d4f98f075611b762ab6fbec8dabf7b0393cfbedb", "message": "Added other sphere and animation.\n", "proba": 1.056748644145955e-07} {"commit": "d3cd9bc67026e0c8d98d8e67d771fc51110acba3", "message": "mask tool complete (with saving etc)\n", "proba": 1.1863896531849605e-07} {"commit": "06aada56fbd06b3aab549e0852c90368fa61711f", "message": "logging typo\n", "proba": 6.663547537755221e-06} {"commit": "f2c41b10bd71df08c21c5026d95fedf8fa983e55", "message": "Allow 'apionly' to return the same data types as fallback\n", "proba": 7.45244369682041e-06} {"commit": "31491950526967fe8d644d4af73704a0f8348ad5", "message": "dynamic demo fix (#2300)\n\n", "proba": 1.144680226161654e-07} {"commit": "2be4a18ac99ea955cffdb3bdf6ebaad1e4ab56e1", "message": "Use shell_utils.run instead of os.system in do_skps_capture.py\n", "proba": 2.032741804214311e-06} {"commit": "62c7e1bfd1462eee0f97d17df6eab100814a16b2", "message": "optional dynamic oversampling\n", "proba": 3.71222370176838e-07} {"commit": "7f423a79136cd2998b78f486a2f4794fdf7d01a5", "message": "ExclusiveConnectCardConnection: fix PEP8 warnings\n\nExclusiveConnectCardConnection.py:48:5: E125 continuation line with same indent as next logical line\nExclusiveConnectCardConnection.py:54:25: E711 comparison to None should be 'if cond is not None:'\nExclusiveConnectCardConnection.py:59:29: E128 continuation line under-indented for visual indent\nExclusiveConnectCardConnection.py:59:29: W503 line break before binary operator\nExclusiveConnectCardConnection.py:65:73: E502 the backslash is redundant between brackets\n", "proba": 0.0006423429003916681} {"commit": "86825eb44bf47df292fd0a651b674d7f8f728be5", "message": "Created variables for threshold values. Switched to using the normalize function instead of manually normalizing vectors\n", "proba": 4.630213652490056e-07} {"commit": "d987ccf9d0ace577c08a78d18fb731b7efd64df6", "message": "removed a single trailing space\n", "proba": 3.308420491521247e-05} {"commit": "45fa5723e599f5c4b65f9893b57efc255e7b6e18", "message": "Registration/bugfix: \"Edit with Spyder\" was sometimes crashing due to the fact\nthat the environment was not configured as in WinPython installation.\n", "proba": 1.0432326291720528e-07} {"commit": "bcd0f2e9dda0ce1f7ea7c92f3e19b4c210a19a8b", "message": "Remove chains option for dihedral featurizer; I don't need it anymore and it doesn't work with mdtraj\n", "proba": 8.997007512334676e-07} {"commit": "e89eb49ac8b7c89645d71058669583cd92489136", "message": "Removed lsm test code\n", "proba": 2.664831129095546e-07} {"commit": "15db32e2091c2aabcde21cd9ddd97b0d0ffaac58", "message": "add text for limitation\n", "proba": 1.3032458809902892e-05} {"commit": "e436b30f60903b476c4bbe8b609de8bda3c8810e", "message": "ListView needs a model instance\n", "proba": 8.279624239548866e-07} {"commit": "9b1279417e912766f6188359b8e4cf5fad6b32d8", "message": "plac8\n", "proba": 8.253277314906882e-07} {"commit": "ba8c282a1ae9ced160ac473376c39ee8eaca3c6b", "message": "change host\n", "proba": 8.238241662184009e-07} {"commit": "06f3a21dcafda9d9e948f76e64c3baafe343b76a", "message": "v 1.1: Add stochastic preferred domain state to user temporal model\n", "proba": 2.82350015368138e-07} {"commit": "0bc3cd6a39d20b5f60497cd7cad057abe452605e", "message": "Allow multiple calls; decorrelate robots.txt\n", "proba": 6.722859325236641e-06} {"commit": "13a2adb3d9b34b0a93aedbc3f09bfbc7451bda17", "message": "Added get() methods for set() methods in dream.\n", "proba": 1.067666630660824e-07} {"commit": "369d6029971ce057802e8f62d4a154664aa099bb", "message": "doc(delay): Documentation clarification.\n", "proba": 1.2990126663225965e-07} {"commit": "592c85cf64e601155d523b5c4ce2f086dfa46dad", "message": "Removed misguided connect methods, added new connect method", "proba": 1.517882992629893e-07} {"commit": "43cde96d97350f9e2dc7ebeda68ca41fb8e8eacd", "message": "Remove debugging code.\n", "proba": 1.1015345990017522e-05} {"commit": "b3d86500306c58fdefa6ffde7b5dad2a40426fcb", "message": "Filters: Added search filter\n", "proba": 1.6163113514267025e-07} {"commit": "0fb275acd2f409968b77e84cdb3e5ca9c700a90d", "message": "manage error messages entirely in relations\n", "proba": 1.5245215934100997e-07} {"commit": "43af749300107239715f217f92096e7d5d63a9f9", "message": "Fix AddTrackerForeignKeysToBugs to account for (and discard) bug_data.\n", "proba": 1.0103241265824181e-07} {"commit": "9258173b92201179eec68d86272b246c76d3ffb3", "message": "Reenable underflow check\n", "proba": 3.633427070326434e-07} {"commit": "920849d70f67f98677885e1cc1a0dd7f78eabdc6", "message": "Extract a helper function from `_build_bases`\n\nThis reduces the indentation level by a bunch, which should hopefully make the codebeat CI tool happier\n", "proba": 1.2108861255910597e-06} {"commit": "271eda6111036d2cb61c695c24c5c77baeb136ee", "message": "Disable effect check feature\n", "proba": 6.525221465381037e-07} {"commit": "bc4777af18ab61b9297fe176b1a531b471c91148", "message": "Removed \"\\\" from secret key generation, to avoid accidental escapes in key. Based on patch by user cam.turn in Issue 337.\n", "proba": 1.0067384437206783e-07} {"commit": "4f0fd750e378378689f50a2a9d4a7bafd6dc2c3a", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "008e5eeac45d6cf8b3ae51c3ec199996c329e564", "message": "\n * fuxed bug when scrolling canvas.\n * removed old, already commented out, code\n\n\n\n", "proba": 1.238137059544897e-07} {"commit": "b43c2b1d233f903b10fd4e173d1280f7987ddf23", "message": "remove ROOT plotting code\n", "proba": 9.224623909176444e-07} {"commit": "4ccece5643910f66571921e6a3129c409dd96be2", "message": "Add embed_font option for to_svg\n", "proba": 7.24163157883595e-07} {"commit": "3a776233c9d460497dd9563e792834939fcf76b0", "message": "made changes.", "proba": 5.741664608649444e-06} {"commit": "2d0b55218e150412129d230c4aaa7bd193a78d74", "message": "Code review: 10709045: Adding tag support to Sql4n6 output\n", "proba": 1.371648977510631e-06} {"commit": "c7c691441450abeddad1cfa1bf550d984521c524", "message": "Tweak doctest in maxflow\n\n--HG--\nextra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%401757\n", "proba": 7.004472877270018e-07} {"commit": "c11b122dee71a7c32da7760ead1dd3acdde25330", "message": "Let gclient config accept file:// urls.\n\nR=iannucci@chromium.org\n\nReview URL: https://codereview.chromium.org/615443002\n\ngit-svn-id: bd64dd6fa6f3f0ed0c0666d1018379882b742947@292613 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 1.0967170965159312e-05} {"commit": "ad17f9c44a8b9380214306dd410a926ef0803a15", "message": "Make test_l3_agent._prepare_router_data a module function\n\nRemove an unneeded class variable, allowing _prepare_router_data\nto be changed to a module level function. This allows the function\nto be reused by other tests cases.\n\nChange-Id: Ia4de3c535c703fbb2528e6cc9594bcd34f50aca1\n", "proba": 0.0050744772888720036} {"commit": "5b668040f7e629ce2d8c0748d19260374657cdfa", "message": "Improve Spatial context representation\n", "proba": 2.0161720385658555e-05} {"commit": "f509c15ef4c85e8a31227ffb69fcc02cabb28b81", "message": "added cache per content to list, tags and categories\n", "proba": 1.480920843732747e-07} {"commit": "781e733e928aeda420f968a4d5b0d7205ab5b27d", "message": "Increased accuracy in checking convergence of forces\n", "proba": 2.55391114478698e-07} {"commit": "49188b5cc01459cfa849704361c6ee2c9877b983", "message": "create app..\n", "proba": 1.5818385179500183e-07} {"commit": "902e239b508cc4bd80b3497e4e26cb17af870671", "message": "Fix links tests.\n", "proba": 1.2162546170202404e-07} {"commit": "a7633e4707bff9399b434fd2b8e0c2fc9147eb92", "message": "Remove broken `get_label` method from Media admin.\n", "proba": 1.1181072068211506e-07} {"commit": "81dceb9e0489aa74087e3b77792fceed039b80d1", "message": "debug likes hist\n", "proba": 7.402715027637896e-07} {"commit": "5ae4da4e7bd3b5d06f999420cbfba73635c06bfa", "message": "added item pubdate to feed\n", "proba": 1.4034347373126366e-07} {"commit": "634ec0cb13042dcaef9a408bf1fa84630789c326", "message": "some debugging for slice model policy\n", "proba": 2.4549621002734057e-07} {"commit": "7c16c668a16e8a5cbb2e55b934e5a495ce0598bc", "message": "fix trivial bug in segmentation\n", "proba": 4.860290573560633e-06} {"commit": "857381f2a7f9ccdabfa9cbc2864cd60dd18bc9a0", "message": "More concise _format_arg function in camino ProcStreamlines\n", "proba": 4.2470292100915685e-06} {"commit": "34b253cb5f81214a813417f91478b2eea081f18c", "message": "Make feature subparser required\n", "proba": 2.098202855904674e-07} {"commit": "cd0d47ec34f2482ed01c305e05e5a4ce52e22574", "message": "move some functions from experiment_utils to import_utils\n", "proba": 1.985878725463408e-06} {"commit": "b68ec6bfe0905971bc1f78780a6bb12fc8cb9aa1", "message": "Fix omission in Factory\n\nTBR: epoger@\nReview URL: https://codereview.appspot.com/6457095\n\ngit-svn-id: 32fc27f4dcfb6c0385cd9719852b95fe6680452d@5010 2bbb7eff-a529-9590-31e7-b0007b416f81\n", "proba": 0.9998822212219238} {"commit": "0b2a0e280010a4ffeb1e4e54fdac00f81bd3c757", "message": "warning messages in the trackhub report\n", "proba": 1.4423903849092312e-07} {"commit": "7f48ba7183b0b81c81d0d1b85723eb0ddb49993d", "message": "Minor fixes to correct the writing of an rat.\n", "proba": 1.4511945778394875e-07} {"commit": "9ff9b63e4779a8d1c9fc9ac85ff40fe834f123d7", "message": "initial commit of sequence getting code\n", "proba": 3.2579458775217063e-07} {"commit": "5150f0547deed3e3fb916f4ec134a7571f8c858e", "message": "Take care of some warnings\n", "proba": 1.1214812047910527e-06} {"commit": "bd35b09b05c6f33b6a187dd093539bb2cc26792c", "message": "Catch exception when the process is terminated by master\n", "proba": 3.6165357641948503e-07} {"commit": "14a22cadd90f233e4f0faf5919834d023b22b3ed", "message": "Open status.json as read binary mode\n", "proba": 7.72109558511147e-07} {"commit": "c6624856b42b2dea34ec2e9609dff3814be9d70c", "message": "small gettext fixes for validation errors\n", "proba": 1.3407309040758264e-07} {"commit": "09e3374953bba53ae1b0a8300ad52560e1c75a13", "message": "download from subdir only when target is not phony\n", "proba": 1.6166627858638094e-07} {"commit": "2ac71f359e199c50e176856748f8c13ca92b7008", "message": "Test maintenance\n", "proba": 5.097108441987075e-07} {"commit": "62bad0b9b09a34d9f2208cf9069144aa1aec87c3", "message": "Don't call /usr/bin/SetFile with no files.\n\nIt turns out that /usr/bin/SetFile emits error messages if run with no files.\nSo don't do that.\n\nFixes #25.\n", "proba": 1.1378147490859192e-07} {"commit": "4de020102eb5670cc6513745de867ee295059ea3", "message": "BUG: fix missing .shape in sandwich_covariance refactoring\n", "proba": 4.046134108648403e-06} {"commit": "f910eceb3b63e723b9c5b2b81213094cd91a0e46", "message": "ENH: Add components plotting function to results.\n", "proba": 1.1172502212275504e-07} {"commit": "197c8405923414f30521782b58cb9b02b9fa44f2", "message": "FIX: Bug when given 1-dimensional exog dataset.\n", "proba": 1.4782624191411742e-07} {"commit": "1333455ec95ca7de06b4ad0493e3d7481f6a5cf6", "message": "Add protocol v0.2 support to fake_ice\n\nAlso fix small bug in \"oc\" message handling\n", "proba": 2.0525988020381192e-07} {"commit": "5cbf19b83e87df9831f831a95000b055529d7db7", "message": "added tpagb star overplot to sim_and_gal.make_LF\n", "proba": 2.9722417593802675e-07} {"commit": "5c141a4cfc38da62eb226482aed81961476648d8", "message": "Updated copy of GoldFact.py", "proba": 1.4319833496756473e-07} {"commit": "27a7e61a2eedafad61dc0428dede3f7a2b66e2bf", "message": "Added verbose option to AgentType.solve\n\nThe solve method of AgentType now has an optional argument named verbose\n(default False). When True, solve displays progress of the solution\nmethod (timing, convergence progress) after each cycle of periods. Also\neliminated AgentType.isSameThing (now incorporated into solveAgent),\nwhich Alex in particular hated.\n\nNew option is useful for testing infinite horizon models that a) take a\nwhile to solve and/or b) don't necessarily converge because it's still\nin development. I often found myself adding lines like this anyway,\nthen deleting them before a commit; this makes testing easier.\n", "proba": 1.6927021988522029e-06} {"commit": "06509f0614885a515a7cd318443d95584d9c1b17", "message": "unused import\n", "proba": 7.379109661087568e-07} {"commit": "155d640d3d53bcf76daa0ff0ae67ac5dbbe3022a", "message": "Fixed issue where accessIP was added in none detail responses", "proba": 1.6521181578355026e-07} {"commit": "72cc23ef46d4ab83babe30b7806c39217cc8da67", "message": "Fix PyLint warning with \"No exception type(s) specified (bare-except)\"\n", "proba": 1.1106340025435202e-07} {"commit": "b217627256c95bb143bc6bd6c2bdf44cec74fe17", "message": "20110906d\n", "proba": 4.029945728234452e-07} {"commit": "44da9b768a43fb16ecca1f4431b5f19e3fa1ce69", "message": "http://luc.lino-framework.org/blog/2017/1005.html\n", "proba": 1.3121632491674973e-07} {"commit": "0e780404b2db1596bf46507b60c41e4b3b34b4df", "message": "add insert_layout for ServiceReports\n", "proba": 2.1508998315766803e-07} {"commit": "bef99e02f7541e9ca33e69f80114c72da297a01a", "message": "Add a few other options I've used in the past\n\nI've used these options in the past. I'll assume other people\nwill use them too.\n", "proba": 0.00022647475998383015} {"commit": "e019b8ba763b9fe058f1eeecb948efa4a4ecb5fb", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "d67d0668a88e6f9d63d48d67ed2db1283319ba40", "message": "get_pogo_run_timeout replicated in the application wide configuration manager\n", "proba": 2.191601709000679e-07} {"commit": "705af2e8b53cd269b8dab96e9acc56bbdae215dd", "message": "Fix bug in accepts_list_and_has_nargs section.", "proba": 1.1496305774016946e-07} {"commit": "c4675d6ceb22218b542d410a13fcba32d2f744ca", "message": "Cleanups\n", "proba": 2.08481242225389e-06} {"commit": "3bcf10f5d02efea56853ed13af7b6d738c1fe707", "message": "youtube_unofficial/typing/browse_ajax: fix clickTrackingParams type\n", "proba": 3.193591169292631e-07} {"commit": "917cdda0edd1764a6e77f48f424263898ff85bce", "message": "MAINT: Fix linter errors\n", "proba": 2.0558209143928252e-06} {"commit": "0e4f5a54f2359362c4aa01e37a66a1091cc91bde", "message": "ver 1.3.0\n", "proba": 2.492010366950126e-07} {"commit": "200863d5df2b6e2b145e70899858e70a4fa70fef", "message": "lisa.analysis.notebook: Fix mismatching parameter name in docstring\n", "proba": 4.174567948211916e-06} {"commit": "f538cf3f02316474e8e155957d359df07534c020", "message": "Add routine for getting cloud regions\n\nSigned-off-by: Adam Stokes <49c255c1d074742f60d19fdba5e2aa5a34add567@users.noreply.github.com>\n", "proba": 1.3282829058880452e-07} {"commit": "e426fb05c8a06abe5bcf2f8662afb1a1b445dbde", "message": "Adapt paths to new project structure\n", "proba": 6.275181476667058e-06} {"commit": "8928021d53cddf3e8a8ab3ced72052062133dfec", "message": "[experiments...spe10] this works on jaina\n", "proba": 1.1416896938953869e-07} {"commit": "215d70794988acb97e8e7030848435b58e7c2a79", "message": "setuptools usage is attempted first, with fallback to distutils\n\n\ngit-svn-id: c4afb4e777bcbfe9afa898413b708b5abcd43877@1108 7150bf37-e60d-0410-b93f-83e91ef0e581\n", "proba": 5.128771590534598e-06} {"commit": "7d1af2b930e57e4afb409503f1702bab4577714f", "message": "Fix the accept_status code for create_gerrit_branch\n\n- gerrit create branch endpoint returns code 201 instead of 200\n\nBug:\nR=agable\n\nChange-Id: I07697e87e506d5545e9abd501775e0fc30a48f80\nReviewed-on: https://chromium-review.googlesource.com/482522\nReviewed-by: Aaron Gable \nCommit-Queue: Di Mu \n", "proba": 0.003491114592179656} {"commit": "7d838546112d80a4c59a213fe15528a03a52a3d6", "message": "fix reduce import for python3\n", "proba": 2.4053315428318456e-06} {"commit": "4300e20e5703d741340592de250312a22b9c41e4", "message": "Cleanups\n", "proba": 2.08481242225389e-06} {"commit": "85ab5e69ce0c4eaa8cf0a55cc7a7320d42f4574c", "message": "ME: xform id string conversion to lowercase before saving\n", "proba": 4.617202193912817e-06} {"commit": "8be11f329e68c19c1f58c77c10d49d6fd46d8a78", "message": "fix create_node part\n", "proba": 4.396974873088766e-07} {"commit": "2cbf4de7af1f3c46079740c67040ab12b528b1d2", "message": "Made custom-lexer.py executable.\n", "proba": 1.1062069660283669e-07} {"commit": "9f71b87e5f7335b4707fc4ca9a0278a272af453b", "message": "Fix bug copy-profile.py to only modify sanStorage when 'sanStorage' -> 'manageSanStorage' is explicitly True\n", "proba": 0.00027284075622446835} {"commit": "61bb95f35a8d4f2ea3246c8504a1e3880126b90a", "message": "Add some basic doc to TaxBenefitSystem\n", "proba": 1.8814969848790497e-07} {"commit": "c21bcd9ae689da186f2b8ecc6ab6ddc4e770f635", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "421953ddedbf02f5117c27905c8d9371e91e78e3", "message": "Explicit using of script. Related to #239\n", "proba": 1.2612261457434215e-07} {"commit": "58a562176e212ebdb39b71377e12881e9c0c15e5", "message": "fix loading order\n", "proba": 4.6174389467523724e-07} {"commit": "1a0679a8991d54d3be5714633cd475fcd8a83f92", "message": "Remove columns which are all NaNs [skip hazardlib]\n\n\nFormer-commit-id: 8740c4eb86d75c0aa01bc25aa4bd49ac19937af4 [formerly f2c6ccf78bde02c9fed37eeb36176015c05c4fb1]\nFormer-commit-id: 76af44b45e0eee787ad33cd009d0a4cdec0680d8", "proba": 0.0006541851325891912} {"commit": "4ed002ae0b563f9ca03ba9e84d3dd9b8f8ed5ca8", "message": "Removed an unused import\n", "proba": 4.512584439453349e-07} {"commit": "375c4d747344a1de5a7918fa6d1af332885a6e47", "message": "Restore default site_model_distance as it was [skip CI]\n\n\nFormer-commit-id: a3f107a69170cc2670df80421b417c873ecb12b9 [formerly 43f0a48633d3400b7b77b982b8a5d77646138adb]\nFormer-commit-id: 68c74532ca6261f918b0b24fd145b9beae76b8c0", "proba": 3.309552312202868e-06} {"commit": "d54b9cb0dba191b2a61a71dd4c7c1d4e9d588d19", "message": "Generalized spinning_distance and floating_distance\n\n\nFormer-commit-id: a2bb6efd4677d9f30e6bb782e020f01a27143fb5", "proba": 5.08948287460953e-05} {"commit": "0065698550b728584954e7b8eb0bdb811899b68c", "message": "Avoid associating the site model when unnecessary [skip hazardlib]\n\n\nFormer-commit-id: 18f439cf950f1fc46394b9118f5a1539c191de89 [formerly a0e0606605a409c0d733ad2ba72b547e3a0fe1f3]\nFormer-commit-id: def3ae1efbd2e42d1dc6fb52e2747d7667fa1f0f", "proba": 4.280457869754173e-05} {"commit": "c0db9cade77cabba44ae50f4acae4a9def83742d", "message": "Using os.makedirs to create the export_dir [skip hazardlib][demos]\n\n\nFormer-commit-id: 1985bf81ec1fc66ef81c3a007e8dc6a98f4493d4 [formerly 1985bf81ec1fc66ef81c3a007e8dc6a98f4493d4 [formerly f3f517e112db1aaa84edd7d4fa58ae76e49dbf14]]\nFormer-commit-id: a1e65d8f51a9bc11324a64624a7a65d88f9ff126\nFormer-commit-id: 9a9a3f225a946857190fcd013ef676206dd7ab73", "proba": 1.1089168765465729e-05} {"commit": "bfa9e8830e22b50ab164cce051c226820d4325a9", "message": "Update oqvalidation.py\n\nFormer-commit-id: c00d50d19846d20dacc7a9424fbf1fbd5f95b375 [formerly 755a340ea7cf2f9d9c91a11d329c5583de4ad625]\nFormer-commit-id: e36b6eb12fc8f23930a3864c8ecb246f14c23d7f", "proba": 8.231503443312249e-07} {"commit": "1de3adfa1cb7ef0be6ef0af10cfb02a92d6e6aa0", "message": "[skip hazardlib]\n", "proba": 1.3950133848084079e-07} {"commit": "8deacb04ada6b1126213c80c437ddc1663e72583", "message": "Cleanup [skip CI]\n", "proba": 1.362569292950866e-07} {"commit": "8dca87c16da39fa43b124026d9d1b45e50b87879", "message": "Set logging default to --log_to_stderr=google:INFO\n", "proba": 3.9350111364910845e-06} {"commit": "f1ae132162422309d88d0e383d3cfba998a14e83", "message": "Removes get_stddevs\n", "proba": 3.3015282951964764e-07} {"commit": "1e867700415b17c29056fb55069b6a3e2b22cf1b", "message": "Correctly mock keystoneclient.Client.auto_token property with Mox\n\nRecent Mox doesn't stub out class properties any more (check\nhttps://code.google.com/p/pymox/issues/detail?id=11), so we have to do\nthat manually. Avoids the following error:\n\nFAIL: test_get_default_role\n(openstack_dashboard.test.api_tests.keystone_tests.RoleAPITests)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/root/Projects/openstack/horizon/openstack_dashboard/test/api_tests/keystone_tests.py\", line 76, in test_get_default_role\n keystoneclient = self.stub_keystoneclient()\n File \"/root/Projects/openstack/horizon/openstack_dashboard/test/helpers.py\", line 280, in stub_keystoneclient\n self.keystoneclient = self.mox.CreateMock(keystone_client.Client)\n File \"/usr/lib/python2.7/site-packages/mox.py\", line 258, in CreateMock\n new_mock = MockObject(class_to_mock, attrs=attrs)\n File \"/usr/lib/python2.7/site-packages/mox.py\", line 556, in __init__\n attr = getattr(class_to_mock, method)\n File \"/usr/lib/python2.7/site-packages/mox.py\", line 608, in __getattr__\n raise UnknownMethodCallError(name)\nUnknownMethodCallError: Method called is not a member of the object: Method called is not a member of the object: auth_token\n>> raise UnknownMethodCallError('auth_token')\n\nChange-Id: I54fd0de298dc66344470147d9bcec6b62baf8297\n", "proba": 0.9999759197235107} {"commit": "4b6c340d2d06061b7aede575c1475720f7c3f495", "message": "exception handling in remove_user_from_set\n", "proba": 5.087816134619061e-06} {"commit": "619dc50260a9c562cab3e9b8e69a10d96b02acce", "message": "made result show correct 0V at gnd\n\nalso changed syntax to make symbols in functions more explicit\n", "proba": 1.380517460347619e-07} {"commit": "f8a968967a704022e175133d3928a1e13abe06d6", "message": "Add artifact list API\n", "proba": 7.443924232575228e-07} {"commit": "cb0d04b7aa59afa6b774b796383ffcbc3771cc87", "message": "HistogramCtrl bug fixes.\n", "proba": 1.2799641524452454e-07} {"commit": "7109a9f7ecc5a1adebdfbbabec9538a675f24977", "message": "Job patch API updates external status\n", "proba": 2.3386863290397741e-07} {"commit": "6a2331468241fe9b776c96739c8c29089ada3d4d", "message": "Depreciate startmigration\n\n--HG--\nbranch : 0.7\n", "proba": 8.588698960920738e-07} {"commit": "36c21e7a1f932b8dcfd9221602eef04e8650ddc3", "message": "Detect changes to M2M fields correctly.\n", "proba": 1.284419965941197e-07} {"commit": "224fbb06f76f27fe92ce4a31c3a71f9c79ed99ee", "message": "rest toolbox documentation\n", "proba": 2.792948237129167e-07} {"commit": "31cad3549a4c2b7da845b15414f70e2531d525c4", "message": "fix decline follow request\n", "proba": 3.9774917581780755e-07} {"commit": "0d80b2933b88cd08673bec7169697e1f4bcedc82", "message": "default filter for session.search()\n\ngit-svn-id: e2dcd90fe895e0af720f8c7f5030b550814520bf@120861 db7f04ef-aaf3-0310-a811-c281ed44c4ad\n", "proba": 1.6363214854209218e-06} {"commit": "9e25df5b974fe517707e1d7645b1d24b37bf6436", "message": "by_country: Change hover text based on plot type\n\nSigned-off-by: Vivek Rai <6965dcfed9719c822a5fc29f0dbf450e6c3f778e@gmail.com>\n", "proba": 1.4247773094666627e-07} {"commit": "7eaf7792098366ded0a2f3e00c4e23a47647c8e2", "message": "SMI-S Plugin: Add Disk.STATUS_SPARE_DISK and Disk.STATUS_FREE\n\n * Using SNIA SMI-S 1.4 'Disk Sparing' profile to set Disk.STATUS_SPARE_DISK.\n # Works well on EMC VMAX, Fujitsu ETERNUS, LSI MegaRAID.\n # They are only array have spare disks I got access.\n\n * Use vendor specific way to set Disk.STATUS_FREE:\n 1. EMC:\n 'EMCInUse' property of CIM_DiskDrive. False == Free.\n # Tested on EMC VNX.\n\n 2. LSI MegaRAID:\n StoragePool_InstanceID of CIM_StorageExtent,\n if not contain 'Pool' keyword, it could be free disk or spare disk.\n Then filter out spare disk, we got free disks.\n # Tested on LSI MegaRAID.\n\nChanges in V4(No changes in V2, V3):\n\n * Remove LSI MegaRAID free disk code as we have dedicated plugin for\n MegaRAID.\n\nSigned-off-by: Gris Ge \n", "proba": 2.261725740027032e-06} {"commit": "455f356b6b71c504bf293c38a896547c6bbec0b6", "message": "src/bin/core/project.py: indentation\n", "proba": 4.0907565562520176e-05} {"commit": "058070e974e42ba1a5390cf55e160639da67f781", "message": "bin:core:project: fix commit 552c89028924edca6883b4f19a34fbcf11161cdc\n", "proba": 8.88548527200328e-07} {"commit": "097dffe1bce8941ec63df298a0b06559dfc01957", "message": "webdriver: using get_cookie to check if the cookie exists\n", "proba": 1.6791195776022505e-06} {"commit": "fd05acba2cb6d58be7ed4f720fa3925555b5f427", "message": "CO-3418 LSV and DD payments in progress are not closed with sponsorship (#1206)\n\n* CO-3418 LSV and DD payments in progress are not closed with sponsorship\r\n\r\n* CO-3418 Do not remove opened invoices (lsv, dd) when editing record", "proba": 1.252289933972861e-07} {"commit": "a6b3337a286a01991def07436141ce0f1a955261", "message": "Release the pipe using by setting it as non blocking (and repeat the action until the writer releases the lock)", "proba": 1.1173290204169462e-07} {"commit": "025e1aaeb8e564431b3e85dda51d60eb30e5f7a8", "message": "Improves file handling and allows users to add directories.\n", "proba": 1.1853050807530963e-07} {"commit": "8c4d974e4b244270d89148e6c0f22d454bbdd6ef", "message": "make 'use_only' toggleable at serializer level\n", "proba": 3.4852467933887965e-07} {"commit": "bc50faf7bbb93b90ee6f889cd9571ccf558a8f9d", "message": "Add an 'edb gen-errors-json' command\n", "proba": 0.9966791868209839} {"commit": "81d4393e58c7953f874a4e8830eddd88374481ed", "message": "update warn color\n", "proba": 2.80030405974685e-07} {"commit": "2a56ebeced009a63c2c28f3a988540b6c7510cba", "message": "fixed travis\n", "proba": 6.704386237288418e-07} {"commit": "f717467c060ebd04ac8c4917abff6cfd2ab108c5", "message": "Updated check for writing Nginx config\n", "proba": 1.90186085546884e-07} {"commit": "a4a9820dc2f268ec5a5497d814401f19877eeb8f", "message": "Fallback SemLock has no name attribute\n", "proba": 4.1291622210337664e-07} {"commit": "ba019d8e963f489c364d892bdda96f1f8ff394cd", "message": "fix regression in to_json\n", "proba": 1.190698822028935e-05} {"commit": "94aa2a3995a209bca3f8f091576cf3cf4f4d8c10", "message": " * trivial doc typo fix\n", "proba": 1.689220852085782e-07} {"commit": "ecde3e00de3782024f0dfbab7f2d7912ab62342b", "message": "Remove unnecessary objects from root namespace.\n", "proba": 1.6896622412332363e-07} {"commit": "23829366e91aa048425ac8ec3d11eb13d5e5dc28", "message": "escape url parts, tests forthcoming\n", "proba": 1.4701672057526594e-07} {"commit": "47c480be499d97ebac8611be744ea2015bb59f70", "message": "check_scriptpubkey_template_and_dust: support anysegwit. fix #8012\n", "proba": 2.665873353180359e-06} {"commit": "1faf515594c69345ed28fa12db32e2091e8101fa", "message": ":zzz: CLI tool == nanny\n", "proba": 1.3038994666203507e-06} {"commit": "239a20232ad26f683ef60735086355c14aac1aaa", "message": "allow the CachedCommentList should work with 0 comments on an item. the slice will be 0:0, which is valid\n", "proba": 5.6454628065694124e-05} {"commit": "39365da9728b43b85e622a69067560bbfcc4a0b4", "message": "Fixes extracting code from and embedding of Vimeo review URLs.\n\nThese URLs look like https://vimeo.com/exampleusername1234/review/123456789/a1b2c3d4\n", "proba": 0.00017438147915527225} {"commit": "e8b2c7307bd8619f266bc5c67306dbfe92dd6b92", "message": "More work done.", "proba": 1.2746238553518197e-07} {"commit": "20cacfa507f4f9b5b0fc6836c6548bcfa0e5d512", "message": "speedup level graph api a bit\n", "proba": 1.5045662848933716e-07} {"commit": "1299c25f3ba8eb935098d530daf2c61d20c769a1", "message": "make sure csrf token gets set\n", "proba": 3.811617261817446e-07} {"commit": "153aa2548f033978470885883134cf8a2bd329ef", "message": "fixed more index mistakes in calculating Lambda_star\n", "proba": 1.0705842896641116e-06} {"commit": "156ba5c39cb31744287fa57fbc95025fd6be0caa", "message": "Add doc blocks\n", "proba": 4.085358966676722e-07} {"commit": "646dc5f834bec631ea22706d5dc2898d5b148d2d", "message": "Alpha shape generation function added", "proba": 1.80696929419355e-07} {"commit": "424aa65bdbcfb512c46231a3714d7c687d019e00", "message": "Missing max_bytes parameter added to array_pieces call", "proba": 5.971877499177936e-07} {"commit": "51d27e96ee1d796906621b73b9c086dfc9830d28", "message": "Add test no content attachment download\n", "proba": 2.5770387424017827e-07} {"commit": "05678b7e87dc4664faae5728a50516851e1b700e", "message": "Write DS/DNSKEY files with newline (#17)\n\n`ksk-as-dnskey.txt` and `ksk-as-ds.txt` are both written without a trailing newline which seems strange to me:\r\n\r\n```\r\n$ wc ksk*\r\n 0 7 368 ksk-as-dnskey.txt\r\n 0 7 82 ksk-as-ds.txt\r\n 0 14 450 total\r\n```\r\n\r\nThis patch appends a newline to both.", "proba": 1.5830941890726535e-07} {"commit": "e2c4b712cb4473481c45d5671b7568c07ade8366", "message": "Fix use of indent for Python < 3.5", "proba": 0.010596402920782566} {"commit": "018025d314b7cf6a054240477f43c7e7b42b4f69", "message": "Bug fix on day of week.\n", "proba": 2.1120654025708063e-07} {"commit": "e6c41dfcc9629be61cffa6ca678011f68867dd68", "message": "Update api\n", "proba": 3.597114925923961e-07} {"commit": "c9ba42444d2b163402ef2eb00cd75da23a510d41", "message": "hotfix for queryset bug that sent mod DM to multiple mods\n", "proba": 1.2450010444808868e-07} {"commit": "0591a76fd38be6febf9926908ae32f52edb17eb2", "message": "Make code able to build on Windows.\n", "proba": 1.272868530577398e-07} {"commit": "0d6b6fe9435f5f6344952cdc2e4e523672c4bbc7", "message": "Scrub code\n", "proba": 8.138754310493823e-07} {"commit": "6fa78931341fdcd0fbbe9dd69bd2e9f096d0403a", "message": "liberando tamb\u00e9m erro 1 Lote sem est\u00e1gio 63\n", "proba": 1.8528889711433294e-07} {"commit": "829ec431d00ccaa0890c093168efb36705b5b70a", "message": "reset the name of pymadservice script\n", "proba": 1.2551347481348785e-06} {"commit": "f37902922d9a990088688c40cb42b8249b98f93e", "message": "fix Way.__repr__\n", "proba": 5.297220468492014e-06} {"commit": "f18f9fbfd5608ec95b6765525eec6538d50ce0c0", "message": "implemented training, including performance assessment on a held-out validation data set\n", "proba": 1.2390478332235944e-07} {"commit": "90b88ed4b0cf7e3393d9fe3b7a73558f974cc433", "message": "[ADD]crm_claim_rma_custom:fecha recepci\u00f3n por defecto vac\u00eda\n", "proba": 4.156657098519645e-07} {"commit": "f72783e8033d4b1a366da8448265e3898417c173", "message": "[FIX] sale_display_stock: Ahora en las l\u00edneas de un pedido de venta, se muestra el stock disponible sin el stock que hay en cocina\n", "proba": 7.390574978671793e-07} {"commit": "1bd301f2a528d3f9f6829a849d4afe1770724550", "message": "this class is not needed atm\n\n--HG--\nextra : convert_revision : svn%3A79c32731-664e-0410-8185-e51b9e89f9fb/trunk%404208\n", "proba": 5.206902642385103e-07} {"commit": "c3727c8f4f47a19f1d77a11ef2fa4a5083c8f987", "message": "Adds CTK.util.print_exception()\n\ngit-svn-id: d9c6dde0f7e2de8b6df4d8fb80f7fbb81645aad2@5302 5dc97367-97f1-0310-9951-d761b3857238\n", "proba": 3.2898374229262117e-06} {"commit": "2c780f9edde4126b1780c77a06467c53d6a3c15b", "message": "py: Fixing Python 2 incompatibility. Fixes issue 8274\n", "proba": 2.9017119231866673e-05} {"commit": "681894395049e8c7dc0085c89706e7cd495a745e", "message": "Update error tolerance.\n", "proba": 1.897134609407658e-07} {"commit": "b1f26b6fc85746563420bf3669e4c65659a79234", "message": "fix: fix broken import\n", "proba": 0.0003945420030504465} {"commit": "c053e23d728b3c7ce95a5f60871a0dfb6cb75009", "message": "Added Light tests\n", "proba": 1.4406347759177152e-07} {"commit": "71dfc32f1648600b9b57e0503b3d36703765c036", "message": "make InsertSitesTransformation.to_dict JSONable\n\n\nFormer-commit-id: 5fc833ee89c410bfb0ed74febd24e0abf40bce6d [formerly c10061a8bff423cf0f90612e60e024aae2163ae1]\nFormer-commit-id: 906d9e142a03354bb9507770a0d4d0a3e0ba6eb8", "proba": 1.932761733769439e-05} {"commit": "75adb869d097d6b87b42ca979b2679f62a373125", "message": "utils/resourcetracker: fix open prototype in hooks\n\nname is renamed to file to match what's in the documentation\u00b9.\n\n[1]: https://docs.python.org/3/library/functions.html#open\n", "proba": 0.0005545586463995278} {"commit": "45c4fd57722574c3bf0b7e780ff62cff01d37859", "message": "Added a simple select query.\n", "proba": 1.2101109803097643e-07} {"commit": "51f47e1d5b36279702a589cf38a305eaf084089a", "message": "Handle no nameserver replies; return early on empty candidate lists\n", "proba": 5.37912228537607e-07} {"commit": "af6f3c0423f6ffd6c5480eeee5d340a5aad3e487", "message": "use float32 in cond_op\n", "proba": 3.1271229090634733e-06} {"commit": "5df5238eb3fa50d4f133ddc622845ba4eddffbe2", "message": "cc-4105: removed some extensions, not well suported yet\n", "proba": 1.2993558584639686e-07} {"commit": "41b1b357eb8e9fc130a282df2d381d8c9a9fe3b0", "message": "formatted more docstrings\n", "proba": 3.609864620557346e-07} {"commit": "8a43cf58791a665a4fc23bc5d0911af61f7e1fb6", "message": "Add shib auth to similar projects page\n", "proba": 2.0814221102227748e-07} {"commit": "5122811ae49711f1735c2bc0736d2b580b9f7e53", "message": "Minor fix in delete_port\n", "proba": 2.5686253479761945e-07} {"commit": "36d90a94249058ef490b53295cd158f7d3def947", "message": "Remove alias.pk from kwargs\n", "proba": 3.045380935873254e-06} {"commit": "a64e02f150bf58ddffcae371423084f4f10c6de6", "message": "recipe-server: Add a test for filtering the signed recipe endpoint\n", "proba": 6.800223104619363e-07} {"commit": "68da13d0e5064c6d959010298135428c9e91f1e3", "message": "refs #18: added a test showing the incorrect behaviour\n", "proba": 2.700664651911211e-07} {"commit": "a371ce003e1471640fc0927b729b9d7c1c912399", "message": "added default value\n", "proba": 1.428441350981302e-06} {"commit": "0dc8dd26438607ff5e4fc3f19d082d35f9dad5eb", "message": "Add check for empty descriptions\n", "proba": 2.5427098648833635e-07} {"commit": "343000e4b3dbe3fd115408b06c07b8d0f05f2980", "message": "FIX: unnecessary print statements", "proba": 2.357095218030736e-05} {"commit": "4d739c1909e85289fe277303b50e4c5616eb3a2a", "message": "dom0/qvm-backup-restore: fix restore of StandaloneVM/TemplateVM\n", "proba": 6.672372592220199e-07} {"commit": "718c4299c51528f04ed70958aa3347d06cd042c5", "message": "more sniper fixes", "proba": 1.4059116892894963e-07} {"commit": "b5ded21bc9a48bbcc7bffc9c99aaa89897836cff", "message": "remove parameter from post request\n", "proba": 3.2845821351656923e-07} {"commit": "7075bcdb5ceaf0991a3dcccf1bdb9c8b5b1d1014", "message": "Fix building on old git\n\nThere is no `--jobs` in old git versions on centos.\nJust removed hardcoded options for tests.\n", "proba": 1.3398361886629573e-07} {"commit": "9591612f5a0b1ba99829353969f298961be0cb20", "message": "Reset cli config on global config update\n", "proba": 4.3551085582294036e-07} {"commit": "c9b983e4ea7403221fe3a51da58927c5e7946d96", "message": "A node server can now mark a driver as excluded from the manifest.\nThis mechanism is unusual, and is used when a driver's value changes\noften and there is no value to restoring the last driver value upon\nrestart of the node server or polyglot, for example a driver that\nrecords a date/time value. This is desirable in order to reduce\ncompletely unnecessary I/O on SD card systems, in particular.\n", "proba": 1.1215438178169279e-07} {"commit": "fb31dc110143e3f3633684c936420ce2aa88c032", "message": "no _id\n", "proba": 0.999980092048645} {"commit": "d10130ad1eea55485c7d2cf4e19d48f411372d0e", "message": "Remove JsonConcatExprMonad\n", "proba": 8.48880802095664e-07} {"commit": "0ee4f7d319fb0da41d5e825b136a97f6eab34a0b", "message": "Ref #9\nAdded serializer HighlighterMixin\n", "proba": 1.2619095457466756e-07} {"commit": "a9e4b784fd374e1214f7e1cc6d1672ecf2ce7160", "message": "With implicit identifiers separated, need to add new to relationship attribute `_identifiers`\n", "proba": 1.4751348089703242e-06} {"commit": "60e1ccf017340453ca267cd3383958b7e05f0871", "message": "Blank questions in the reapp csv where appropriate and fix APC always yes bug\n", "proba": 1.5843417031646823e-06} {"commit": "bf88580cb1d700bf5b50c644d9c9fc89834e9052", "message": "google-v2: Fix for failing final_logging actions.\n\nPiperOrigin-RevId: 249711106\n", "proba": 4.496621841099113e-06} {"commit": "26f47da8d1a57a88e26239fe9e9b89522727a65c", "message": "[core.bindings] do not expose data on EigenDenseVector\n\nThe resulting numpy array showed scrambled memory.\n", "proba": 1.1274420330664725e-07} {"commit": "e3567b8f4efa790d2fda8a17170cdc7538150274", "message": "updates arguments\n", "proba": 8.047641131270211e-07} {"commit": "553e160cfea8ec002fffe45ed4391ca8009c39fe", "message": "Fix problem with empty estimates\n", "proba": 0.020952586084604263} {"commit": "ad019515e2e6e278cc7405be33776e4e1d74cb05", "message": "Comment.\n", "proba": 2.303915351831165e-07} {"commit": "1cf1b7aea6d4874f6b9b2bb53cdecad8e7d0b398", "message": "testing ingestion of shapefiles\n", "proba": 2.6469317049304664e-07} {"commit": "e38d9510322d8647d519a2ca6e7d256818b1b790", "message": "Removed autocorrelation plotting, as it crashes for very long chains\n\n", "proba": 1.9179896071364055e-07} {"commit": "0fe880988046c2abca5e912c881b368926d703c3", "message": "Made ColorCorrect able to handle multiple bands\n\n", "proba": 1.1535425414876954e-07} {"commit": "5cb79bf1cfbeb71febc89d3019b3370700d69beb", "message": "LnLike now assumes student's t-distribution for flux uncertainties\n\n", "proba": 1.1865401461363945e-07} {"commit": "4a1ee6e7789f7305dad671652f522a75f4fe6c70", "message": "changed away from telepot\n", "proba": 3.727698469901952e-07} {"commit": "8015035f86b0412ed3f0b51221fe3344975cbb0b", "message": "time zone feat\n", "proba": 1.3875516060579685e-06} {"commit": "25fc17352790a76c7ae27f52924a3c0192117fea", "message": "go instead of do\n", "proba": 1.146999238699209e-05} {"commit": "bb30fc0f6ddc005a571d377f9a14ba8e573d28c6", "message": "[msm/estimation] Added utf-8 encoding to deal with some non ascii characters in the new bootstrapping docstrings\n", "proba": 1.3345248817131505e-07} {"commit": "1c587dbac9a8c7ca8b5eef044bef9f2a71e1a042", "message": "Testing for zero length cache argument\n", "proba": 4.17804614016859e-07} {"commit": "648672b98ab1972fef727d45b0c71861477a02c4", "message": "Prevent double CHRS parameter for regions\n", "proba": 9.741667099660845e-07} {"commit": "fcd3413f37dc3262b86e20cff34b9ec4f6229021", "message": "Prevent KeyError when page_template not supplied\n\nWhen `page_template` is not supplied as a kwarg via `.as_View()` a\nKeyError is raised because `.pop()` is used on a dictionary with no\ndefault value specified.\n", "proba": 1.1548281264595062e-07} {"commit": "ae12e9a93e6deaa1564c4029fee7eed68d604028", "message": "Fix influence and bone indices\n", "proba": 1.9693037245360756e-07} {"commit": "4faf0060aed26d8a647fcd2322c5d2f31df99c91", "message": "lint error. Thought I snuck that one through...\n", "proba": 1.0644235004519942e-07} {"commit": "79fcde9fa0b3976a90b9fb95c85cdab5e75159f1", "message": "Fixed use_32bit_workaround which was accidentally reverted by changeset 25270\n\n", "proba": 1.5199152869627142e-07} {"commit": "16932156b9ba63f3f02772909a20be82352ee149", "message": "use live config from web.ctx in primary key check\n", "proba": 2.639137903770461e-07} {"commit": "e3a618394d39d68866e309962d582f379b9c5ad0", "message": "add distutils command \"bdist_esky_patch\"\n", "proba": 2.3226894541039655e-07} {"commit": "9898348a3d61100eab587bcc1be3e4f8d05b204d", "message": "fix whitespace\n", "proba": 0.9999992847442627} {"commit": "7bfa786a8758979632c84c38e60f69d407bc039b", "message": "add test for subdocument serialization\n", "proba": 3.2083784162750817e-07} {"commit": "7daf8db1202d8990e73db5a28d418e891ab305f2", "message": "Whitespace formatting MULTISESSION_MODE comments", "proba": 2.7610832376012695e-07} {"commit": "b1e656ff8f1f845891ae0e6e0d908266dd50a8b6", "message": "format code\n\nSigned-off-by: Frederic <81b8c31bb92bca0d2675d7f34b082022a551a5fc@gmail.com>\n", "proba": 2.082593510976949e-07} {"commit": "3c6211c19c6bc99adbc95ff5edae2874f4b60cda", "message": "finish editable plugin.\n", "proba": 1.3911446217207413e-07} {"commit": "1bcbf561f6195a3c85e3a63a5f5581f76ab912e1", "message": "Typo fix at CompleteitWidget.\n", "proba": 1.293311697736499e-07} {"commit": "06ca0b61d547460862571b48f7f2a9c9cf2546d9", "message": "start support for D1 model\n", "proba": 3.4859516517826705e-07} {"commit": "16ebbdf7948a51fe3d6625d5c181e2c1c5a716b0", "message": "removed pull_list from user to_json() method\n", "proba": 7.466426836799656e-07} {"commit": "f8a49bbaa9714c9326a8a6ab5f8c0ed7bb2373de", "message": "adds get_env_variable to example settings", "proba": 4.985971031601366e-07} {"commit": "c724c332c68c5f30c09ecc5d3c721278d0465fe6", "message": "django-filter rest backend global\n", "proba": 6.772800702492532e-07} {"commit": "d1c11a75d04022be4ac0b03b0848fa00a94ef945", "message": "Some more fixes\n", "proba": 1.2456007425498683e-07} {"commit": "a048f78108f42e83ff6d8b1a011ec164bfeafa9f", "message": "adding float casting to prevent errors\n", "proba": 3.303146911548538e-07} {"commit": "2abf1bd67a7af5c1198f1d781f6f50ca9fe3613f", "message": "added Save document function\n", "proba": 2.9981964644321124e-07} {"commit": "c3314f0f5d8007bf7b013a6be89b4b37600f9ba2", "message": "Only use language model if the path is specified\n", "proba": 2.8544485530801467e-07} {"commit": "a604f2041a1813f44f12054d46f49a2b1b2e17b9", "message": "Do not show a firmware update window if there are no printers connected\n\nContributes to Ultimaker/Uranium#8\n", "proba": 1.2938532734096952e-07} {"commit": "e29702d041913acb06efcb8d5183345fb7377a3a", "message": "image path farm tile\n", "proba": 4.621029177087621e-07} {"commit": "33592145ae9895ccbbcea88d6c3fd22723f4897a", "message": "Also fix VimRenderer.strwidth\n\nFixes #356", "proba": 1.219562477672298e-07} {"commit": "62e43ff0372765caf669be6be1120f6fc59e5458", "message": "continuance of prior commit -- bad dates\n", "proba": 2.1935652227966784e-07} {"commit": "90f6d6db262466e3c9fb2b0cc576d788127ec188", "message": "Adding better cleanup to PiloTransportConnection close.\n", "proba": 1.0808682304741524e-07} {"commit": "3f2ad7df40d02f72251f2e1fd91a5b6e46047c6a", "message": "BUGFIX: Reference to praatPath correctly\n", "proba": 1.3174535240523255e-07} {"commit": "beca130d1908c948d47146b2c63522eaea4c34a2", "message": "Fix ranking error when user navigates back\n", "proba": 2.713288040467887e-06} {"commit": "cf2fd2097bac7cf72f13793f6b02f9a1f9ca7571", "message": "Much saner way of doing this\n", "proba": 4.064629877120751e-07} {"commit": "86823bc4af44b79c64a4f6c537e882a662faf2ff", "message": "Fixed pitch bend-related bug when constructing piano roll\n", "proba": 1.9778524062985525e-07} {"commit": "6ed1d1872d69e2427b13fbcb8ac86b68a91b3661", "message": "Todo.\n", "proba": 1.3150688573659863e-06} {"commit": "ebb12355b2d6b4afb16b4889c5ee81e0fd403c91", "message": "Add User manager properties\n", "proba": 1.145758574239153e-06} {"commit": "46c979f179a467cad4cab573104be7ac5ae332cc", "message": "Cleanup Song\n", "proba": 6.103022656134272e-07} {"commit": "89622d98c38df3ea8b8d59fabcdd2e0ab3dd2ae4", "message": "Revert\n", "proba": 1.63741583492083e-06} {"commit": "b72d8a3b3186fb435e35e54d5925f4c26f823841", "message": "hotfix\n", "proba": 0.6886289119720459} {"commit": "db1251413ed4cdf521e521e3579dc6931ea91c75", "message": "remap\n", "proba": 9.398250995218405e-07} {"commit": "9eed59665ff2f52695dfa95f3a11cbb485f9f566", "message": "added facet history component to creating facets\n", "proba": 1.3293740153130784e-07} {"commit": "afb4006310dc668ba1f14101cceb45bebb054efb", "message": "fix: wrong usage of lstrip in ellipsize_recipes (#737)\n\n", "proba": 1.3933686204836704e-07} {"commit": "a8c3e2af8649916812d0958fa522bb0a14032572", "message": "make sure sendfile uses realpath", "proba": 4.2469258687560796e-07} {"commit": "933cfc30a484e243d5585ade76e78b0a9660a925", "message": "Adds Debian 8 'Jessie' to reprounzip-docker\n", "proba": 3.1687446266914776e-07} {"commit": "45aa6d5acf5e0bc4556f61fa9d4d2b56da79cd6a", "message": "[REM] eliminate data references\n", "proba": 5.4850708693265915e-05} {"commit": "314101a4b61a06c8a2ceecdd378c444249898047", "message": "Better altitude ?\n", "proba": 4.647746436603484e-07} {"commit": "e9896a5bd09f80add61b195dcfc10692be193f52", "message": "reverted back to inital representation creation\n", "proba": 2.582677893769869e-07} {"commit": "d3252449d4735b569541cb8857550196426da439", "message": "Added get_version() function to ISY functions. Starting Testing\n", "proba": 1.281165822319963e-07} {"commit": "ccc7a40f39ee17e912d932f065533e8f8d6d072b", "message": "CFY-7358 fix premium CI\n", "proba": 1.9674997986385279e-07} {"commit": "01cad9173777095b80bb0948c4d1853541ffea75", "message": ":fire: remove redundant iter\n", "proba": 0.0008295785519294441} {"commit": "23565ffd68e34ed0b9fd4b18364041d56bd3b6cb", "message": "[FEATURE] Add delete and put methods for bucketlist\n", "proba": 1.3444851276744885e-07} {"commit": "547a0c60da364c14d427926e8a8e0777d3ff7c92", "message": "loopback_cluster_name: use api_hostname\n", "proba": 5.8636642279452644e-06} {"commit": "78be45f09b81c6622be03de2a9df2f7560e223ee", "message": "lint.\n", "proba": 1.960062490979908e-06} {"commit": "461f86f3e739236e3fc560647dca0348e66fcd34", "message": "remove useless comment\n", "proba": 1.8972595228206046e-07} {"commit": "426f556dcbc3741e7ab39be30781bbd6d141236c", "message": "fix null completion item. https://github.com/autozimu/LanguageClient-neovim/issues/15#issuecomment-283864134\n", "proba": 8.692890673955844e-07} {"commit": "346c04273f3be1aae481b2427ea57ae7f766c3f4", "message": "CO-1175 The wrong module name was used for the differents languages\n", "proba": 2.909196439304651e-07} {"commit": "1e9631fadb8858fca904c0fb12a2034025941918", "message": "CO-3893 Add support language detection support for Letter (#1476)\n\n* CO-3893 Add support language detection support for Letter\r\n\r\nminor fix: ensure that the number of file computation is only for done in certain status\r\n\r\n* fix according to PR", "proba": 1.332737866732714e-07} {"commit": "c640d3e8e3c1c5e1c9d204b875f895d094b60de6", "message": "Added the creation of the __timestamp__ reserved entity\n", "proba": 1.7952494317796663e-06} {"commit": "72b6864be4121e73fdf5be48789ed263eb38170b", "message": "Improve parameter handling of numberOfCluters and add option to pass output folder\n", "proba": 1.5584227242015913e-07} {"commit": "b4e9a23b0d845e55736bb466a993822497894714", "message": "Module docstring\n", "proba": 1.2486341347539565e-06} {"commit": "60468805b725d9af134fd80c6d0b89d64ff91a50", "message": "add tests for summary.\n", "proba": 1.499257962223055e-07} {"commit": "122e838694d9ed97d72a3ce2d43c41a629c70409", "message": "statsite metrics fix tryout\n", "proba": 2.5152706939479685e-07} {"commit": "e3de4a276473b5d0e89298069d4c8d3d82188553", "message": "fixing args removal error\n", "proba": 6.759437383152544e-07} {"commit": "7a906b45d1065b9f41ff03834ab7d4716a842322", "message": "Added a missing import in apps/local_apps/misc/utils.py. Fixes issue 119. Thanks richardbarran for the report.\n\ngit-svn-id: 51ba99f60490c2ee9ba726ccda75a38950f5105d@1214 45601e1e-1555-4799-bd40-45c8c71eef50\n", "proba": 6.737787430211029e-07} {"commit": "1e574befc82b7df53fe62b9c5089772172f99178", "message": "Add id to API reponse for Reaction.\n", "proba": 1.1349558093343148e-07} {"commit": "da3804cbe4382b8027ad70bd483ad61801492ae2", "message": "remove local trace file\n", "proba": 8.696173949829245e-07} {"commit": "53cb19abea6fa515115b5b135f32b3eea22360be", "message": "Test rabbitmq template uploads.\n", "proba": 1.2226637124967965e-07} {"commit": "f0e76e4e98ac5739e221a31c3cd2310f3409d666", "message": "update logic\n", "proba": 6.401081122930918e-07} {"commit": "632ae58a63488e4aef6f9a0ce92de13df2401fd9", "message": "fix test to work even if IERS table already present\n", "proba": 1.530497115709295e-07} {"commit": "58b192d572a55cc5b58ea08f230faef7d6359060", "message": "add a command character registry to asyncirc.plugins.addressed\n", "proba": 3.223643147975963e-07} {"commit": "595368b3111335fc39aa4d065d69511703635b0d", "message": "Including methods on pyIBERT to reset tx and rx\n", "proba": 1.4133323134046805e-07} {"commit": "c95f00b871fc53c0843bd166daaf09059a19ef6d", "message": "- product_variant_multi: renamed a few internal variable; PEP 8 conventions\n - product_variant_multi: now product.product#variants is defined a a field function with store=True + invalidation trigger; it's faster and fixes a bug preventing new products to be created by XML after the module was installed; seems like a framework limitation. Anyway the fix works and is clean.\n - should be really OK for production now\n(../trunk-extra-addons rev 3589.11.2)\n", "proba": 4.021660799935489e-07} {"commit": "64b88e77de1926f5b846b96405851e9c840807fd", "message": "merging from the trunk extra addons\n(../trunk-extra-addons rev 3589.7.33)\n", "proba": 1.1437253988333396e-07} {"commit": "422ea668d864dab266476b2f4f23bc4117a5b5ab", "message": "[fix] import\n", "proba": 2.4050375941442326e-05} {"commit": "900e2e419432d14118e81ab2985eb6bb0b80549d", "message": "replace osv.osv by osv.Model\n", "proba": 2.0738189050462097e-06} {"commit": "54e27a1cde660b48f329308420dbca6ee46c1156", "message": "Update door_lock_server.py", "proba": 1.4887958741383045e-06} {"commit": "d6b7ecf65cc482a6bfcfdad9e8bedfdff10730a6", "message": "ADD samy_dscan for combination of two motors/define spec_path funcs\n", "proba": 2.2627648377238074e-07} {"commit": "1dc37ed39014e3a873cbcbb07bd85d315e84e8fa", "message": "Moved appending of s tables and location records to within the check for unique data inside the measurement loop so as to prevent empty records propogating into the contribution and causing strange behaviour as per #154\n", "proba": 1.308015242784677e-07} {"commit": "ef71f91b7d7b6aa103cb15dc99fcdd2486fd3617", "message": "UserFactory changed\n", "proba": 3.932416063889832e-07} {"commit": "747eae1a3104b536fcc81d7defdd85ea87e4ea8e", "message": "Add unit tests for templates in container templates (it already worked)\n", "proba": 1.0431470798266673e-07} {"commit": "33e45fef73c962e592f69eb982b606309e1280b5", "message": "force default encoding\n\nhad otherwise problems running the script from cron, e.g. \"UnicodeEncodeError: 'ascii' codec can't encode character\"", "proba": 1.4218372257346346e-07} {"commit": "5b6ebb4e3544500620a4bffcb195f9f1f67a66a4", "message": "fix(static_ips): display instance name if ip's name is empty\n\nCurrently we only display the used instance ID, it's difficult to know\nthe purpose of the ip when the ip'name is empty. This patch changed to\ndisplay the instance name additionally.\n\nSigned-off-by: Amos Kong \n", "proba": 4.491537595185946e-07} {"commit": "c931695be133f8dc219b30714457f45aa70c4912", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "ef9cb9916648bd1421836d20eeb951ec18edf471", "message": "now it works on macOS\n", "proba": 1.8818091973571427e-07} {"commit": "69338d4b2d50588f1458f1a9ecf28a81c140ec42", "message": "Move more stuff from Entity to EntityMeta\n\ngit-svn-id: cc65bc9ed7fa717314bc8890b6f123117eea230e@1767 698dff77-f410-0410-8918-cf622e150f36\n", "proba": 1.5834700661798706e-06} {"commit": "7c35d63b1ff1dce60bec5fcc4c3a608df5c29281", "message": "Bug from previous revision was fixed\n\ngit-svn-id: cc65bc9ed7fa717314bc8890b6f123117eea230e@1128 698dff77-f410-0410-8918-cf622e150f36\n", "proba": 5.272215162221983e-07} {"commit": "cd9dfe39d8d17e78386d4f0cd7a03cc6420dbd5b", "message": "add method for retraining softmax layer of net and clean up formatting\n", "proba": 1.3209069038566668e-07} {"commit": "b02ce2d02caa2001d1b54b021351615426222017", "message": "disable locktime until keepkey firmware is updated\n", "proba": 1.9832090458749008e-07} {"commit": "b68ff7fcbbff6319a16e2f0c179acc113d4aaca1", "message": "Fixed bug in conditional clade prior\n", "proba": 1.715944932811908e-07} {"commit": "0647344058b8a3d55864fa0f5a6e05956c2523b7", "message": "refactor any previous time alloted to a task when running and doesnt exist\n", "proba": 2.4202458007493988e-05} {"commit": "3a93958b0320572cc1bf3dd1a2781165df635723", "message": "Minor bug fix causing an error when sublime was in focus without any view\n", "proba": 1.9276387774880277e-07} {"commit": "706540087b19c9d03254a7a332cf694ea4c26481", "message": "chore(GitRepo): Add type annotation to constructor\n", "proba": 2.354757384637196e-07} {"commit": "76e05a6085d692a5ab77b7e3a24d360cb0e0370a", "message": "docs(git): Remove admonitions, fix return types\n", "proba": 1.4486159898297046e-06} {"commit": "8c49602c5b29b793f1edcd6e683d2844ad43b7a3", "message": "improve docadd\n", "proba": 1.70453415648808e-06} {"commit": "b7d440d5a1e608de0dd101b574ecbfde02e31eff", "message": "Delete line_tools.py", "proba": 2.4684175514266826e-05} {"commit": "9c0cbdf2a55e990fa2e63c444a9d06e2c115c32a", "message": "split for multiple delimiters\n", "proba": 0.004742041230201721} {"commit": "ae14b4c50f92147702def233f1507f3dcab31732", "message": "fix float\n", "proba": 1.6816643437778112e-06} {"commit": "08c6a2dee06970a654ed03cdf79a2e14ff946c06", "message": "Format version print\n", "proba": 6.925833417881222e-07} {"commit": "ef2fc4149f22af08f6c7e2aff7598be9dc9f2883", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "d3b2d222ad7f0c1a582362ff3c1d388f85af5066", "message": "Delete 6QuickSort.py", "proba": 1.1153419109177776e-05} {"commit": "a6c4ad7003ced9970da9d6787c856b0a20333324", "message": "mira configuration: use official polyml 5.4.1 on lxbroy10\n", "proba": 1.324438869687583e-07} {"commit": "38d0b01736dc9ee9a73d92013685e94342484432", "message": "fixed E221 multiple spaces before operator\n", "proba": 1.703359515659031e-07} {"commit": "5404854fdcdd6e1ecc743de75ca7f9d8c6e8c813", "message": "Menu Done!\n", "proba": 2.2491012430236879e-07} {"commit": "a0e8cb9f3b27b221a4a27d78e9b8761bbe07c369", "message": "and again\n", "proba": 9.28875749650615e-07} {"commit": "d8249f993bce62366a4a144791b2975624ca5ea0", "message": "cleaning up Hisat statement\n", "proba": 2.629754192184919e-07} {"commit": "bedef7ca432b0a7d5d229b3e7006faccdf58ac09", "message": "[FIX] coding error - sorted lines must not be copied\n", "proba": 2.2309389180463768e-07} {"commit": "5067ea8e4747517964569e694024ee303cab8065", "message": "Return Revenue names in RevenueTotalAPI\n", "proba": 2.5146691768895835e-06} {"commit": "8f253dfd366b0bef41d2cace978363e61e410796", "message": "AMBARI-10575. RU: Oozie upgrade fails when using oracle DB (dlysnichenko)\n", "proba": 1.0376938064382557e-07} {"commit": "c75c978cbc9786f23fb221452b22d5056cf6e1c5", "message": "grouped is very slow -- weird infinities?\n", "proba": 1.5559783150820294e-07} {"commit": "291357764789960cbf27797bdc9c71a1fd9e419a", "message": "Change GCS batch endpoint from /batch to /batch/storage/v1 (#5040)\n\nPer documentation at\r\nhttps://cloud.google.com/storage/docs/json_api/v1/how-tos/batch.", "proba": 1.1672180022515022e-07} {"commit": "3317a6bda614dda40de777ae07a46ea958ba5bb6", "message": "Fixed docstring typo\n", "proba": 8.520186725036183e-07} {"commit": "673e9662cdd132f4e1570951d2a2da206b3268f6", "message": "Updating regex for support of vector types.\n", "proba": 1.1446714864860041e-07} {"commit": "f5d8b282e564c8c7031e24abd7070cf304daba73", "message": "ffmpeg fix\n", "proba": 1.071461724677647e-06} {"commit": "bdc1d9d04a3fd3d434934cd9a322d4abed4c273b", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "2d986a37fce010f55965e8a0689544ffa5db9779", "message": "[instancer.solver] Remove _solveWithoutGain\n\nUse _solveWithGain for it. Fold all into a general _solve.\n", "proba": 4.988022556062788e-05} {"commit": "024d1806e46594fbadcff9b0244784af5bb90015", "message": "Add \"set example\" button only to ipt widget\n", "proba": 3.261135361753986e-07} {"commit": "b121f8e27b05c7950e38f58e47f5826fbcc8cf5b", "message": "adapt to new structure\n", "proba": 6.563859642483294e-05} {"commit": "a63f2118d2c22f993d2839ffb87d64a1d967f4cb", "message": "reformat long lines in simplify\n", "proba": 0.999941349029541} {"commit": "ce3c8df6dff456cdc548f1bc40a47f4b2a09a0a6", "message": "Less aggressive timers\n", "proba": 7.566558792859723e-07} {"commit": "a971fa9d584b35c35b675b65ed86faed77b46cf7", "message": "Use try..finally in contextlib.contextmanager\n", "proba": 6.034693456058449e-07} {"commit": "2255c046220d12856952571959e8225337ff29f5", "message": "Added .ours() shortcut to lists for convenient narrowing to TCM_COMPANY_ID.\n", "proba": 1.0080911749810184e-07} {"commit": "ea1d53a3c674d5560f242ad3b240d34103e3da71", "message": "Only trigger completions when inside class attribute", "proba": 1.8117023614649952e-07} {"commit": "896b385f983ecf939bdc2ea938b9949fdc3fdbb8", "message": "Remove unused color distance function\n", "proba": 4.0749617369328917e-07} {"commit": "5d29c94ac3c1295d6ae257d02727d4d1d11444ae", "message": "stabilizer test clean up\n", "proba": 4.6974943757049914e-07} {"commit": "35b7e8691f16f5765d20ba4850a54d5ebfdec73f", "message": "STYLE scaffoldings removed\n", "proba": 1.4967436356982944e-07} {"commit": "314b525caba48dc7905929d488abb755695c12c2", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "67411f4e5893ea3bbd657e875141f48641612cc2", "message": "TableToTable and FeatureClassToFeatureClass\n\nadditional logic to preserve GlobalIDs part of #61\n", "proba": 1.1208359751435637e-07} {"commit": "854a279590dfbb306469cac9b15c72faddc82383", "message": "semparse pretrain save\n", "proba": 4.0450009919368313e-07} {"commit": "b1b7f11cda8f3501dd1e527704a6add8fada75e5", "message": "maputils bugbugfix\n", "proba": 1.2123142596465186e-06} {"commit": "a829bc528c33d84f0cee6f3134d5ae3a4cd73a5f", "message": "gensample\n", "proba": 5.472602992995235e-07} {"commit": "aa3f26263c904b61e419b538ce28def9dfab5c48", "message": "Fix timeout not accepting timedelta\n", "proba": 0.0008480115793645382} {"commit": "d924f97b5841cdd9dbdbb40787213e0a086dd302", "message": "Fix relative paths when generating documentation\n", "proba": 7.264095074788202e-06} {"commit": "27ff90939d4691b8f3d84296a3a517912bb2ac48", "message": "Exclude tensorflow.io as a wheel dependency on Apple Silicon\n\nThere is no Apple Silicon wheel for it yet.\n\nPiperOrigin-RevId: 475659203\n", "proba": 0.0003607860126066953} {"commit": "19357a7c6c2d71aac48e9cabf9d5df13caa5cd5f", "message": "OWTreeViewer: Fix crash on update selection\n", "proba": 1.5336223668782623e-07} {"commit": "3740400f8adcf0d86baaa581ac081513f9c43e58", "message": "Implemented a remote blast method.\n", "proba": 1.3544060095682653e-07} {"commit": "3fa36a0ccf9a01b9cc6fe5bda0ba45f6f01e53aa", "message": "fix order of tests\n\n\nFormer-commit-id: 45e567d560d5921c7078088094c0e8358dc3bad0", "proba": 0.9998549222946167} {"commit": "0eff2803cc8268d7b72e2ebeb8b9fa9cf5946806", "message": "fix test\n\n\nFormer-commit-id: e3a032a911068bd93ab37b98dbe95d27af90f9aa", "proba": 5.635386969515821e-06} {"commit": "5580b4c483a1afc477ec91c3e7f67d802dea4e25", "message": "remove parameters -addresstype=legacy in rpc_rawtransaction test\n", "proba": 8.859398690219678e-07} {"commit": "fe95f84542f81862e9759503416d9da9f67d191b", "message": "qa: Test .walletlock file is closed\n\nGithub-Pull: #15297\nRebased-From: d3bf3b9\n", "proba": 2.1405863037671224e-07} {"commit": "78e8d6cc6b5020b0236d5f8010880c4c4251fc43", "message": "repair test\n", "proba": 8.206374104702263e-07} {"commit": "afb459f2cbff4d2c9a6bb9010177b61873317bca", "message": "add name test in the solution\n", "proba": 3.2547395676374435e-06} {"commit": "5c1013750a8497d593ef620b07564986b2d3a89a", "message": "Use portable null device.", "proba": 1.6606641395355837e-07} {"commit": "d7b8ff5ec09832a9ddbf8aa59eefbdf11bcf5baa", "message": "skip if zope.component isn't available.", "proba": 1.1104475561296567e-07} {"commit": "83c87e5fdb763f9b68c30c77f286b63258b2b811", "message": "run_javascript_tests.py: Be more flexible about directory layout.\n\nThe top-level directory name isn't part of the repository, and we\ncan't count on it always being \"pdfium\" (though many people will\nchoose to do it this way).\n\nR=jam@chromium.org\n\nReview URL: https://codereview.chromium.org/921043005\n", "proba": 5.013262125430629e-06} {"commit": "04b798273d0a8c238d64850cfe25749febd0b62c", "message": "Fix docs formatting\n", "proba": 1.598673225089442e-05} {"commit": "2f32585e12cf1d2c033c7391de78447542e1ee71", "message": "Add OCA as author of OCA addons\n\nIn order to get visibility on https://www.odoo.com/apps the OCA board has\ndecided to add the OCA as author of all the addons maintained as part of the\nassociation.\n", "proba": 1.1388232223907835e-07} {"commit": "469030009b9c50d9a0c6f4522a93ec7b4e473f70", "message": "minor.\n", "proba": 8.22591630367242e-07} {"commit": "10ceb0467eabed03c2b6bf53bb09aeb981940d0f", "message": "fix ordering to prevent random test failures\n", "proba": 3.6171360306980205e-07} {"commit": "5304f1e09cd60261ac037a878e9916d368070b6a", "message": "check mimetype and issue warnings\n", "proba": 2.1496735769233055e-07} {"commit": "b414d5ba84132522fb1db697a4018f41a8617b6a", "message": "Fixed test\n", "proba": 7.068065883686359e-07} {"commit": "700e639ec621e400a6163bdf82d25a3552aeb15e", "message": "Fix flapping pilight test (#41447)\n\n", "proba": 2.852900138350378e-07} {"commit": "e8eac6a26cbaac7296a63af99adf1ffcd6c58dac", "message": "Delete urbanTwitBot.py", "proba": 5.943225005466957e-06} {"commit": "c8c334491c06dfce60e950aa775a823aae72162c", "message": "fix admin active issue\n", "proba": 3.2728189580666367e-07} {"commit": "5164d84bbe779c62a169c23c1a6d7b7409662d9a", "message": "fix default for module config files\n\nClose MMPP-1785\n", "proba": 1.8340425356200285e-07} {"commit": "89d1f419f0d414cc4e62fc7264e07ab90c3af969", "message": "Update largest-rectangle-in-histogram.py", "proba": 3.814471938312636e-07} {"commit": "a2344ae171c0565cc58cfa68431a678ed0f919d3", "message": "Removes extra space in hyperlink tex.\n", "proba": 1.7203016966504947e-07} {"commit": "cf5169b6d876fe111399613caa4f1e708d481e17", "message": "mai in hiah-tse mih-kiann", "proba": 1.0625391951180063e-05} {"commit": "8004d54833f2086a1dc86cc9105a64a6befc280e", "message": "Builder updates\n\n- Include rainbow.min.js in the dev download\n- Include all themes in the dev download\n", "proba": 1.2766287227350404e-07} {"commit": "6efce6a4e08b2efe66cb692b9edae8c8c2ca96d6", "message": "COMMISCHROM.ENH: Disable SOFB auto correction\n", "proba": 3.242021193727851e-07} {"commit": "d368d5514f2046a5bc25a6e482c3cb6fc79c4908", "message": "convert to string\n", "proba": 0.9999995231628418} {"commit": "0a95bfc4bbf220f81824189ed299cdec21797da5", "message": "Saving an annotation will grab the userid of the session if a creator isn't explicitly passed.\n", "proba": 1.0712731324247216e-07} {"commit": "56d0ec582eac25b794c33abdfe2c4c2baf22807b", "message": "swtiching settings ofproject based on environent variable\n", "proba": 2.0055132665675046e-07} {"commit": "cc0021ab3acb92c94e1c54f709c1e7776c538964", "message": "Updated all docs, and fixed some code EDIT\n", "proba": 1.5210652293262683e-07} {"commit": "a5b5a0083e18ede7141533acde353f87c9529c60", "message": "Refactor the obtaining of files in Decompilation.\n", "proba": 1.4068491793750582e-07} {"commit": "b6afedaf4fcb1f00f19f9872749a6c83dddfa328", "message": "SymmetricAdapter added, Validator now uses that one\n", "proba": 1.1273366595787593e-07} {"commit": "3d1b53ca42c5694a517a1ff71fdfb91b1ea43366", "message": "Some little code cleaning.\n", "proba": 1.2650737346575625e-07} {"commit": "f422654a399d7f5fb9599c11bb4dc4e90b066da7", "message": "[svn r63016] * fix setattr on apimodules\n* higher timeout\n", "proba": 1.2303802066071512e-07} {"commit": "40bc6bffbe9a10b227635daca04a7c46da415163", "message": "removed weather file\n", "proba": 7.706485689595866e-07} {"commit": "cdcbfa2d11439b57c359192035e54443d07f96fd", "message": "Add auth, edit endpoint for access.\n", "proba": 1.2120722203690093e-07} {"commit": "1f470182f52a673c4bc7cddc61207751cc4b440d", "message": "Add --force-beam option to pyse.py\n", "proba": 1.2805907090296387e-06} {"commit": "4bce7548304ad3247a528a936e178ff7c7e3233f", "message": "fix to_datetime to work with most github timestamps (converting them to UTC), don't try to remove dupes via a set (will find another way later)\n", "proba": 1.2991266373774124e-07} {"commit": "bdaba6a92e9bcdbf6b0f4772e65f805ba0346a0e", "message": "to pypi, ill try.\n", "proba": 1.1264801003108005e-07} {"commit": "2f957532efbac57d05b2db9548845524f5e852d3", "message": "Remove _all()\n", "proba": 0.0005063510616309941} {"commit": "0ba275bad0bb1d80d7b766f049860a78e45858eb", "message": "Fix typing in to_stacked_array (#5494)\n\n* str to hashable\r\n\r\n* sample_dims sequence to mapping\r\n\r\n* unions\r\n\r\n* typing corrections in the docstring\r\n\r\n* Use Collection\r\n\r\n* Clarify typing", "proba": 1.598809689085101e-07} {"commit": "769570c2e880ee95baa9f49fa9605643903e62a6", "message": "ENH: add draft of a document buffer\n", "proba": 2.9910424359513854e-07} {"commit": "39f897296d21722cd1268b6262d8c1e6a8250545", "message": "Changed accelerometer parameter wording from 'slot' to 'port'\n", "proba": 2.913438663654233e-07} {"commit": "016a092371b9d526eb3893756de7fd52ef5b2cbf", "message": "Consume the list in order of wrapping\n", "proba": 0.9987646341323853} {"commit": "c2177ab140189e60fea347b067839fa4fba45a15", "message": "unit test showing the behavior of props dicts in Species\n\nthe props attribute should always be a local object attribute,\nnever shared among other instances.\n", "proba": 1.0346640522129746e-07} {"commit": "874bd51718b8b907a747d0f382ceb48066225fe4", "message": "I didn't mean to commit this yet\n", "proba": 1.2101749007342733e-06} {"commit": "2bfe02d6e0d9ad8bf57974cea700631fbdc0c4f7", "message": "Docstring for RasGef\n", "proba": 3.598494515699713e-07} {"commit": "f25f9aac746e6536d961fa0050bf2dafa4ac14bd", "message": "introduced client.ConnectionError to help exception handing.\n", "proba": 1.0958956409012899e-07} {"commit": "9759b7dc3ed10585e4ff7c2fc47cda1489107b07", "message": "Added speed ramp code back in\n", "proba": 1.2089137158000085e-07} {"commit": "18a4ec729a80873bdaa17622b9dc4cbf809ddf8d", "message": "Delete assets.py", "proba": 1.2076362736479496e-06} {"commit": "0c027035b5e142a69848d877e6f26285ce7787f2", "message": "Fixed the multiple selection bug.\n", "proba": 1.1945400046897703e-07} {"commit": "a5ec03d3378d38ad4a63161b7d6b769b124571fa", "message": "Refactoring, consistency and extra_context for all views, thanks Zebuline\n", "proba": 1.1047626458093873e-07} {"commit": "95a718dcef0fa6eef8bd1a2343523bd147971988", "message": "3.0.73\n", "proba": 5.4986112445476465e-06} {"commit": "04a7c5235a52483bff07d05aaab16a20fae3769f", "message": "get style once\n", "proba": 1.8160528725275071e-07} {"commit": "1762c92eaeb47ce0228b4b3f07bad2771e55d2bd", "message": "feat: 'organizer' leaderboard\n", "proba": 0.0026603268925100565} {"commit": "0f04de72d759a5d0d2f161fa27c3028d37c35c34", "message": "Better error on BQ schema parse (#12549)\n\n* Better error on BQ schema parse\r\n\r\n* Better error on BQ schema parse\r\n\r\n* Fixup", "proba": 1.2723867826025526e-07} {"commit": "e06edb77ff151be7a0933693bbfaa492f1b91ff5", "message": "filter out results from irrelevent series", "proba": 4.6302710643431055e-07} {"commit": "6d9619f45db1559f4b535352bc954e06f2e6b581", "message": "added lighting\n", "proba": 2.1273297079460463e-07} {"commit": "3cd11a5ac3a39d1de47016d7371f30ae20543f6c", "message": "DOC: rewrite docstring for nfoldcrossvalidation\n\nDo not compute predictions if unused\n", "proba": 8.781465112406295e-06} {"commit": "f8159d0355c573c2d9da9efac2bc3f75723acd74", "message": "Now gets common animals as well as the first three levels. Tries to get vernacular data if possible (messes with the limit parameter, due to strange bug in GBIF api).\n", "proba": 9.964435321307974e-08} {"commit": "bbb2e88c6216b307416fcb07d5a403078b75ca6f", "message": "Refactoring. Refine StrokeGroup's constructor by parameterize infoPane and statePane.\n", "proba": 1.0405875627839123e-07} {"commit": "84faaa898af831ddc1fef4d2da1556e44446911a", "message": "subtract only auto-detect\n", "proba": 0.00014232895046006888} {"commit": "1ec18af78bcdca2c762feb3d203844809f27fd0f", "message": "lisa.trace: TxtTraceParserBase: rename __time into __timestamp\n\nBREAKING CHANGE\n\nClasses derived from TxtTraceParserBase will have to use \"__timestamp\"\ninstead of \"__time\" as regex group name.\n\nThis is done to ease alignment of different parsers.\n", "proba": 1.2866659915289347e-07} {"commit": "f106351c123f51e09198b012847290092a2d6937", "message": "Changed to find installation directory with get_python_lib found from distutils.\n", "proba": 1.0784362558524663e-07} {"commit": "1c0644d5629008c98f8402b95b797beea1a50bc5", "message": "Add a MAPPING table to remove duplicated loop logic\n", "proba": 3.49668624721744e-07} {"commit": "e1277b866a8a001ba5281684622a58c94270670a", "message": "Update search_maintenance.py\n", "proba": 1.0280089099978795e-06} {"commit": "11b110f67f9c031ab3fe1711178ae61fd0e817ea", "message": "Fixed bug", "proba": 5.356139354262268e-07} {"commit": "765f0400832dd4c12754abf83cfc7db5a2c54a8f", "message": "Support LanguageCode.encode('internal')\n\nAlso added a few more codes to the youtube mapping\n\nSee pculture/amara-enterprise#1119\n", "proba": 1.2116930747652077e-07} {"commit": "f60b70212c6ee848d450caed8ca8590a5fa2be82", "message": "Temporary fix to cleanup htslib-downloaded indexes\n\nDoes not resolve #500\n", "proba": 1.335929340484654e-07} {"commit": "2876bb169b26f7ffaa9d6f50eef72ece9084696b", "message": "switch order in migration\n", "proba": 6.95264873229462e-07} {"commit": "65c817229b234ccacf886053be3ddcff8aa953b3", "message": "DEBUG AND TEST. NEEDS MORE WORK\n", "proba": 1.556956590320624e-07} {"commit": "7751647b717ce314c1a12ffac5801f7323e14913", "message": "Changes in workflow admin\n", "proba": 3.9893515690891945e-07} {"commit": "98ccac4228c9b941ab478aa38f812ce80ace7691", "message": "Fix compatibility check for signing after promotes\n", "proba": 1.313740938257979e-07} {"commit": "feafb1fbe4a52a94f75a09ad7805a65f5cf34c44", "message": "Fixed a bug where f-test selections would not be preserved when moving back and forth between group analysis model builder GUI windows after loading a group analysis model YAML config file.\n", "proba": 1.0409984696480024e-07} {"commit": "bef5acfbbe213cc5087483cdc5f06cd331ebe864", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "fd7d15e03eec98f4fc6aa058be9e8ebbf20e5bef", "message": "lisa.trace: FtraceCollector: add support for alternative tracers\n\nAllow specifying alternative tracers, and automatically enable function_grapher\nwhen funcgraph_entry or funcgraph_exit events are being traced.\n", "proba": 1.068155484063027e-07} {"commit": "9e35bde97bc7dd325d6de6c6e4a51c55bff7051d", "message": "Workaround for easy_install problem with Python 2.6 fixing issue 434 and possibly also issue 236. Big thanks to rdesgroppes for providing a patch.\n", "proba": 9.58182653221229e-08} {"commit": "20aa0c05dfc00c5660cb9b81b646113fc68b541f", "message": "Changed prediction to use profile model function", "proba": 1.8137042445687257e-07} {"commit": "ab0e2aa7ab66b637377078d666e6c7d23cd9381b", "message": "Add photons unit.\n\n--HG--\nbranch : yt-3.0\n", "proba": 0.001301394309848547} {"commit": "9423eb1bf9179ac67458ee9e22a8752ed802ce9a", "message": "Group address does no longer have str() method\n", "proba": 7.964760015966021e-07} {"commit": "53a3cd83d04f1e4cb1c8451bd73155cecaa7717d", "message": "Fix function name in nth prime\n", "proba": 0.9999971389770508} {"commit": "0ee362fdea9e93fa84e014b5d45d278da8b487e6", "message": "secrets\n", "proba": 1.3207624078859226e-06} {"commit": "beaa62faf49b7b25b42431aa96e113a2974d7828", "message": "lisa.utils: Allow PartialInit.__class__ lookup\n\nAllow lookup of __class__ attribute on partially initialized objects, so\nthat isinstance() works.\n", "proba": 1.1016147993814229e-07} {"commit": "1633b64448d11d7a9121a5b2daf68a8fabcfd81e", "message": "Fixing PEP8 issues and adding some units for AstroPy compatibility\n\n--HG--\nbranch : yt-3.0\n", "proba": 1.2613465116828593e-07} {"commit": "0ece47886bde5ccd1dcce4e8bf0daaa8d2843eeb", "message": "[Fix]: fix supplement_mask (#5065)\n\n", "proba": 1.5863587066178297e-07} {"commit": "017f71cd8168138ee61161d51e542af95fb393b9", "message": "broken merge corrected\n", "proba": 9.140616157310433e-07} {"commit": "c93d96d2bc33786ae30c254c617cd74122642158", "message": "In-place testing\n", "proba": 3.931699211534578e-06} {"commit": "dc84a7952801deeb4b863cd501ce7171120b8d31", "message": "Note : capitalize affects only first letter\n", "proba": 5.143554517417215e-06} {"commit": "2f2c19934eeb8284e0007f1c178efd5492dc72b9", "message": "Add the channel settings UI\n", "proba": 7.71024929235864e-07} {"commit": "fd2f6a4eab9a485ebc01beabf42a024988bd4e37", "message": "Updated keyword name.\n", "proba": 2.3646816771361046e-07} {"commit": "ec1bec63f015350aef96f9ef8251ebc980320a4c", "message": "Fix #407: 404 on Dashboard currently\n", "proba": 1.4114789337327238e-07} {"commit": "1ad6262307b784bdbca8d7382e639e2aff90c0d0", "message": "bug fix - correcting the evaluation exploration control parameter logging\n", "proba": 1.3343340299343254e-07} {"commit": "c3800fa0c01e947d8a6694b4bd319c3cb5b4f1a7", "message": "VTN service API\n\nChange-Id: If37de77dbb728c9fd5b23744020e567737a1edee\n", "proba": 5.972356120764744e-07} {"commit": "ba6fbfc530d0edc622d78ddec98d1119900f5c3f", "message": "Reorder high-level algorithms.\n", "proba": 9.09533555386588e-05} {"commit": "a4034493185108834ec30480d21b45d4d250d69b", "message": "Add float custom type\n", "proba": 4.0467529061061214e-07} {"commit": "561cbe3cc7f1d2b51195a7409ec7e533b4372e11", "message": "Fix http config use (#9315)\n\n", "proba": 1.6469253694140207e-07} {"commit": "be0ab7834bbc4e50b46be6657e17083c1ac7c432", "message": "You want side borders, @Xyene?\n", "proba": 1.2476266419980675e-07} {"commit": "9ca2176b41861fb4c840973bc4b6f3ca9dbb9d22", "message": "base classes refactored, needing http resource implementations\n", "proba": 2.3657847236790985e-07} {"commit": "e593aeaf2d86191550b15854e9c010527daee5a4", "message": "Now with JS and no xvfb-run.\n", "proba": 1.0495914182229171e-07} {"commit": "74aaa91ef65e068a101e7bdb02dc4e44446dfea8", "message": "Moves PostgreSQL `get_config` to the search backend.\n", "proba": 1.1250897813397387e-07} {"commit": "59296b19f7358b55d9521e9d393e2be70634cf28", "message": "Subclass checks\n\nMove type checking in the facade back to checking subclass checks.\n", "proba": 1.0672085437590795e-07} {"commit": "2709ca4d23e8522617aac7d87eaf4d3b60b564e6", "message": "Code cleanup.\n", "proba": 2.1081312695514498e-07} {"commit": "808eff629a1018c40e0ef8bab0bbe788bb2de4da", "message": "Snake case and define `__all__` for `pull.py`\n", "proba": 7.785202797094826e-06} {"commit": "e7ed2a0706eadb6fd2280dc7c55c16cc32c97347", "message": "New datastore_rpc.py (configurable batching limits).\n", "proba": 1.111778473728009e-07} {"commit": "41aa0342f8bfa6f2ced61be7a8b0f2cd28fbb671", "message": "Fix pending completion IndexError bug caused by multiple threads (#1372)\n\n", "proba": 1.181571676056592e-07} {"commit": "a6df6c0f618dc0636c3e414c840db6f9ca153859", "message": "enhancement of formatter output\n", "proba": 1.6061825590441003e-05} {"commit": "ea07a2fa33f9d3d268df65950653e9ec57bae4d1", "message": "cleanup print statement\n", "proba": 8.808078746369574e-06} {"commit": "a6c4d96886d6644eb7b93bb3aeecfa2687b4291c", "message": "Fix list_non_selected_visible_type\n", "proba": 2.7312295060255565e-05} {"commit": "8ba4eb96a6bbd79208ae5d8b6c245b937cd12b5d", "message": "pgpdb: Add function to load a single layer\n\nThis function does not cause the loaded image to appear in the list of recent files opened in GIMP (to avoid cluttering it).\n", "proba": 1.1182073933468928e-07} {"commit": "3c8adf391c2ae63b4f898e463f565572fcbac901", "message": "fix indentation\n", "proba": 0.00035826992825604975} {"commit": "d8b90f6a53238f8b2a8484568f7ad3f7b36ed981", "message": "log to stderr\n", "proba": 9.256745556740498e-07} {"commit": "18ae06b0ec0e337ee75bbe7a64c447e8866251b3", "message": "[plugin] [settings] Use ignore tags and name setting groups\n", "proba": 2.7527644874680846e-07} {"commit": "893c74f88903acbb1c974ef2d5e8e8c383ce00ae", "message": "ignore instead exception\n", "proba": 0.00024132366525009274} {"commit": "1e864902828e68bc1846504bd18dc610a31621bc", "message": "settings_plugin: Simplify creation of settings\n", "proba": 1.3439777148960275e-06} {"commit": "f04408bced29a195202ed614422380a4b91221c0", "message": "Critical remark\n", "proba": 7.447275720551261e-07} {"commit": "4d727bd2dff377caeab21ff4e1bf4b26c2397c8a", "message": "Fix expected value for OPT test `test_inference_no_head` (#17395)\n\n* Fix expected value\r\n\r\n* 5e-5\r\n\r\nCo-authored-by: ydshieh ", "proba": 1.3704548962323315e-07} {"commit": "c3fe358b2a2c74d5056f03c9a126565cbca33f2b", "message": "bug with spn/spf\nspb and spl added but not updated\nnot happy with the serilise methods\n", "proba": 1.3841889767718385e-07} {"commit": "63841928e4b6adf459dd09b62b9ef381cac93abe", "message": "Pep commit.\n", "proba": 1.872827084525852e-07} {"commit": "9f4bc0be198aac967d76ebc7b0bc2722a9360acf", "message": "Another test\n", "proba": 3.856863713735947e-06} {"commit": "3da24bb4b46cbe4bb2c4134eb472752b25a6546a", "message": "Added unit tests for form_for_model and form_for_instance.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%405196\n", "proba": 5.759629857493564e-07} {"commit": "222e1898c61e72d7eb89c8aaa6f60f19a5b3bbdc", "message": "Bumped version.\n", "proba": 1.313067059527384e-07} {"commit": "2f32e3e177db6d0fe71d0a77a7d9ca1a0a8d1d74", "message": "Fix `test_task_gets_restarted_due_to_network_split` SI test (#6797)\n\nby properly waiting for the task to restart and be healthy.\r\n\r\nJIRA: DCOS-48075", "proba": 7.662467396585271e-05} {"commit": "e41ba558370ef4c5dea6916de3717bec883e882e", "message": "Add tests that check export of actual explanations\n\nThanks for idea @kmike!\n", "proba": 9.796862343591783e-08} {"commit": "c80943c677e4318b5633087839516bc9095d4d42", "message": "removed TOKENIZE_TWITTER option\n\n\nFormer-commit-id: 00e18b7d4beee9640cb76ffdc47dd6ab283452dd", "proba": 6.3572033468517475e-06} {"commit": "da9e7051929adfdb821ee754d85fdbd754430616", "message": "TST check multilabel linear classifiers\n", "proba": 2.865582473532413e-07} {"commit": "ee53a37c1e71478006bd97dc17a67e1605b842de", "message": "Fixed issue with search on growth tags\n", "proba": 1.7618283720821637e-07} {"commit": "5e5bc120c6d09418ad562bdc9b8110f5e99e4235", "message": "Get rid of obsolete method.\n", "proba": 1.9019968533484644e-07} {"commit": "f778d0a0d7c0df1bf6cb0f2dbafe4201c8cbd2ca", "message": "Small fix\n", "proba": 3.271289870099281e-07} {"commit": "a1b1aab13258faaeaf72f425a12429427a545c61", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "aa7b34db3a87fa5cd7a2fa9e4030777f8ca2f3a3", "message": "Black\n", "proba": 1.3212260455475189e-05} {"commit": "6c6757ea4f6a405e2a6166232ff066c10b7a8b60", "message": "chg: dev: more doc, better doc\n", "proba": 4.978721699444577e-05} {"commit": "bf6801dd63e6974aa9f422e54a27ab6973db2715", "message": "Make the test suite better about choosing between RA-Neon and RA-Serf.\nUpdate the RA type detection functions to reflect that the default is \"serf\",\nso that they work when \"--http-library\" is not specified. Give the test\nsuite's \"--http-library\" option its own default value (\"serf\") so that it no\nlonger depends on svn's compiled-in default value.\n\n* subversion/tests/cmdline/svntest/main.py\n (http_library): Rename this variable to preferred_http_library throughout.\n Clarify its doc string.\n (is_not_serf): Remove this unused function.\n (is_ra_type_dav_neon, is_ra_type_dav_serf): No longer assume the default is\n \"neon\". Add doc strings.\n (is_ra_type_svn, is_ra_type_file): Add doc strings.\n (usage): Mention the default value of --http-library in the help message.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@879790 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.012102768756449223} {"commit": "f718bdca9205f68e384d2f4663b8bcdc7d512a72", "message": "Make benchmark actually work again. Closes #1104.", "proba": 1.1497084528855339e-07} {"commit": "b6f7efc202b851a6fa12c6ecb684e6948e7f3460", "message": "simplify imports\n", "proba": 0.9999479055404663} {"commit": "9d6c855e1afed646c71386cca4f70030bf444a79", "message": "Disable some Pylint errors\n", "proba": 8.374329922844481e-07} {"commit": "2c77d556022dc577d17e315ec8c7eb4f596d800c", "message": "Also allow 2:35 beside 2-35 range style with cmdline tests, because\nit is the format that the svn client uses.\n\n* subversion/tests/cmdline/svntest/main.py\n (usage): Update online help.\n (run_tests): Add `2:35' range style.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@873814 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 4.3746708797698375e-06} {"commit": "eef99f29f0f6c65700abc34dadd5356a4932c761", "message": "add API endpoint for income_graphs_jsons\n", "proba": 5.618658178718761e-07} {"commit": "bb7f5247d3b68b4ad3cc6ac53670533c4ec75844", "message": "according buildout tests\n", "proba": 2.9495700459847285e-07} {"commit": "8537ba89367d121ff7b341182e059e922d3327af", "message": "Revert part of an accidental commit in r25305.\n", "proba": 1.0715756104673346e-07} {"commit": "04199590d2d789f903c443df924b4397efe8d9b7", "message": "TODO raise error when number not present\n", "proba": 8.884146041054919e-07} {"commit": "ccf691d892afa6994f5427862c8dac536532db25", "message": "Handle stream inheritance\n\nIf a vis or flags stream has an `inherit` member in telstate, the\ntelstate view will be constructed to have that stream in the telstate\nview chain. This supports SR-1348 / ska-sa/katsdpdata#126.\n\nview_capture_stream now just does the work of constructing a telstate\nfrom capture_block_id and stream_name, and the \"smart\" version is now\nview_l0_capture_stream (name chosen since it asserts that the type is\nsdp.l0).\n", "proba": 1.7076078506761405e-07} {"commit": "3ea94028b5da2d394258ff6525761876f377ada7", "message": "Don't gratuitously quote harmless command-line arguments.\n\nIf a command-line argument obviously doesn't need to be quoted, then\ndon't quote it. Using a conservative definition of \"safe\" that should\nnevertheless greatly reduce the amount of gratuitous quotation.\n\n* subversion/tests/cmdline/svntest/main.py (_safe_arg_re): New module\n variable.\n\n (_quote_arg): If the argument matches the regular expression in\n _safe_arg_re, then don't quote it at all.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@865603 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.00011812672892119735} {"commit": "525638167cdfc8bc27cc12614f7a7b476e7fed86", "message": "CORD-830 do not query VTN for servicenetwork that will be skipped\n\nChange-Id: Id85b07aff84df90aa6cc342472d58564b611f81e\n", "proba": 5.73167369566363e-07} {"commit": "62715253dd718aeac7c2bbac2743586f6a6ee3ea", "message": "bug fixes\n", "proba": 8.304810990011902e-07} {"commit": "8d28bdccbed543acc91a9b9cce2f69c85ae038d3", "message": "svntest: Tweak --help output.\n\n* subversion/tests/cmdline/svntest/main.py\n (usage): Add --parallel to usage overview.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@867874 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 2.192922011090559e-06} {"commit": "0382437daca87d39de11e2bc415e5b1b51919523", "message": "cancel copy thread if a new copy thread is called\n", "proba": 3.6256042790228094e-07} {"commit": "e210ca65926bd3b86dcd168bebd8dfdbae65d28c", "message": "More logging replacements in the test suite.\n\n* subversion/tests/cmdline/svntest/tree.py:\n s/print/logging.warn/ (using a StringIO object where appropriate)\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1299959 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 6.5045828705478925e-06} {"commit": "fa6dcab8d6d2cb99fa89b3d05a36f37f8aa5105c", "message": "Adxv_eiger: monitor mode: show frame number and make interval time changeable\nSHA 12a6157d\n", "proba": 1.6306294980950042e-07} {"commit": "469b50bad30a4ebe0a5fdc72d42c60c4fb47e39a", "message": "version bump\n", "proba": 7.394332897092681e-07} {"commit": "724450e3072e455be22fcb9b76b9438783d20373", "message": "Follow-up to r24730, explicitly test mergeinfo elision when 'unswitching'.\n\n* subversion/tests/cmdline/switch_tests.py\n (mergeinfo_switch_elision): Test that target of switch elides when\n \"unswitching\" (i.e. switch leaves target in unswitched state).\n", "proba": 1.219357841364399e-07} {"commit": "15ea059aad7a575386a3ad5e03ac1c253ddd56b6", "message": "pep8: Add compliance with rule E261 makemessages.py.\n", "proba": 1.0432226815737522e-07} {"commit": "9f0416aa9640664fcf4498dd74fe19b2a64c86b9", "message": "A little cleanup for flake 8\n", "proba": 1.2990089715003705e-07} {"commit": "15daba74c156f92f68914f0462d8c64f92aaf185", "message": "record stdout as a result file\n", "proba": 7.5947345976601355e-06} {"commit": "06938dde4e1bbfe6c9f3ffcce4f1f71527a364a0", "message": "Update missed unit test\n", "proba": 1.6140839420586417e-07} {"commit": "a7a9ba75b62771bd55913c53d3671cc30552cea2", "message": "Fixing style errors.\n", "proba": 1.9865235856286745e-07} {"commit": "0e647d5b8ff5cade4c51c8b5545ba0f07e35b056", "message": "Fix indentation of invalid_keys deletion (#12)\n\nI noticed in repeated usage that the cleanup command was trying to delete keys more than once and failing on additional attempts, and also that the last key could go un-deleted after execution finished.", "proba": 1.101235170608561e-06} {"commit": "dc94f29ca91ce812e129e71f6ac6d493df51aa70", "message": "Fix issue #206\n\n - Skip test_export_remote__issue_187 if WAN is not accessible\n", "proba": 7.245651545417786e-07} {"commit": "cd20dec3bddfff41833708207dffaaaa804a8e16", "message": "Skip XGBoost autologging test that no longer applies to XGB > 1.4.2 (#4516)\n\n* Skip test\r\n\r\nSigned-off-by: dbczumar <788ee0e05c0d85f4cc00fcea01dd78b80b5c7e71@databricks.com>\r\n\r\n* Remove duplicate import\r\n\r\nSigned-off-by: dbczumar <788ee0e05c0d85f4cc00fcea01dd78b80b5c7e71@databricks.com>", "proba": 1.2531728543763165e-07} {"commit": "02072f723fa6bd0d3936d712d42b67f548c7bedf", "message": "Remove policy parsing exception\n\nThis exception was only used when loading policy, however this\nis now handled by oslo.policy; this exception is unused.\n\nChange-Id: I721458f33e308c825a647db65e6b6af53a488654\n", "proba": 2.800907168420963e-06} {"commit": "8163a9e64a8a6315ed1c68ad0d6c878f45f53f0c", "message": "change the format to get all data\n", "proba": 0.0001221308921230957} {"commit": "8f7b831e658ee73530464548aa4c46f3be788e25", "message": "Changed \"Unit$\" column format.\n\n- Currently passive components bought in thousands costs less than\n 1 cent of USD.\n- They were represented as \"$0.00\", now we have an extra digit in\n this column.\n", "proba": 1.7691540676878503e-07} {"commit": "f831c89adf79cbff69bd99c515c1d5a4c92b99b4", "message": "Also make error handling a class method as it is not bound to the controller instance\n", "proba": 1.8283581937339477e-07} {"commit": "9dc4ccc194050a2ae5e8b34b90f2d1792b9e3314", "message": "Delete wxAnyThread.py", "proba": 4.896616701444145e-06} {"commit": "beea098c46dd5ce065ec495800f984f0f3f39a6f", "message": "Only publish first page on creation\n", "proba": 1.1997323667856108e-07} {"commit": "270e1c904a53c69512eec2d3818718d64efa7649", "message": "Speed up calculating push rules\n", "proba": 1.0247689488096512e-06} {"commit": "83776d6219236f005674322067e79e24ee6a5561", "message": "Make v2_alpha reg follow the AS API specification\n\nThe spec is clear the key should be 'user' not 'username' and this is indeed\nthe case for v1. This is not true for v2_alpha though, which is what this\ncommit is fixing.\n", "proba": 0.00022725907911080867} {"commit": "6f2c5582daf57b83a10a2fffe03672c674832e28", "message": "Make kb_rebuilds nicer to the celery workers.\n", "proba": 1.1152552303883567e-07} {"commit": "75533b781e91d95670916b0ca647c6aa317dafc8", "message": "Created MethodDependency class.\n\nWrote/copied over install, list_all_filepaths, and clean code\nfrom CodeResourceRevision to Method.\n\nModified CodeResourceRevision's remove_helper method to match.\n", "proba": 1.0099773106730936e-07} {"commit": "b4c0c55d41f4498bb0892cbb7a1d5dca6b20ead1", "message": "Updated the PageForm clean() method to reflect changes by @canibanoglu.\n", "proba": 1.0140868766939093e-07} {"commit": "d29f2d8511a0b9c70cf4726a8a62a81ffee266f6", "message": "Allow attribute to be '' to allow gobject.new to work", "proba": 7.160541031225875e-07} {"commit": "d7d7df89ca60731516fa2043eac4cd4d422dbf3d", "message": "Use locale.strcoll to sort string columns", "proba": 9.865349966275971e-06} {"commit": "dcc05cd11fd08be3801debabfebf8d819e8ce448", "message": "Hopefully fixed the convergence problem\n", "proba": 5.837924845764064e-07} {"commit": "81e4a00d29c0f90d52fe2353359c96df1a931447", "message": "cleaning up\n", "proba": 1.0348471732868347e-06} {"commit": "1991f7b8addb657abe41bb633e1d909edade56ce", "message": "Add option for local attention in attention_lm_moe.\n\nPiperOrigin-RevId: 168041046\n", "proba": 0.9999709129333496} {"commit": "9e67385d7edd0b526e0625447edf606f2ff5cd0c", "message": "Add properties to check whether the current version is published/draft\n", "proba": 3.593946757973754e-07} {"commit": "c2395a9ab446d2f997cd92bea28ee890710e3498", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "95df34324fc87547d4cf3cea890cc5fffd8c1bb8", "message": "Modify windows code coverage pattern to dump info once per test and\nconcatenate instead of trying to collect all at once to avoid OOM problems.\n\nReview URL: http://codereview.chromium.org/460095\n\ngit-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@33916 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 3.7473280826816335e-05} {"commit": "b7471ea677b98948dc5c903d4ff7c1153bd6c10c", "message": "Correct mcov execution cwd so it works from either makefiles (target\ncoverage_run) or from buildbot. Kind of a hack but good enough for\nnow.\n\nMake mcov path args into abs paths.\n\nDie with non-zero error code if coverage.info file not generated for\nclearer failure in buildbot.\n\nReview URL: http://codereview.chromium.org/2639005\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@48992 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.4107712331679068e-06} {"commit": "caf464671ae75e13845142a390ced4f4d6edf7b4", "message": "bug fixes to baretest so that it correctly terminates processes\n", "proba": 2.96392812515478e-07} {"commit": "4d37d85892b3939c142f1348b499430da664a45f", "message": "import: overwrite mode, create collections, more conditions\n", "proba": 1.5327698577038973e-07} {"commit": "c4597cfc4b47fed775886f28dc2239cd3359aa3e", "message": "Update RuntimeError in _Read", "proba": 1.3480028826506896e-07} {"commit": "7b1a726ec3ab2d831167d32b9b820bcf14aba6f7", "message": "Ensure there are test samples for imdb dataset, when maxlen is low\n\nWith the current imdb.load_data(), the following results are seen\nfor different values of maxlen.\n\n\tload_data (len(x_train), len(x_test))\n------------------------------------------------------------\nimdb.load_data(maxlen=50) --> (1035, 0)\nimdb.load_data(maxlen=100) --> (5736, 0)\nimdb.load_data(maxlen=200) --> (25000, 3913)\nimdb.load_data() --> (25000, 25000)\n\nAnalysis: We can observe that when maxlen is low, the number\nof test samples can be 0. This is because the train and test data is\nconcatenated, then the samples with length > maxlen are removed, and\nthe first 25,000 are considered as training data.\n\nFix: This can be fixed when data can be filtered first to remove the\nones with length > maxlen, and then concatenate to process further.\nThe following are the results after the fix.\n\n fixed load_data (len(x_train), len(x_test))\n------------------------------------------------------------\nimdb.load_data(maxlen=50) --> (477, 558)\nimdb.load_data(maxlen=100) --> (2773, 2963)\nimdb.load_data(maxlen=200) --> (14244, 14669)\nimdb.load_data() --> (25000, 25000)\n", "proba": 0.9999992847442627} {"commit": "b746adda020498b911cb92f28d4f07b14df996a2", "message": "Updated version number\n", "proba": 1.2571101706271293e-06} {"commit": "ea3063c929c69f738bf65bc99dad1159803e772f", "message": "Fix TensorFlow on Python 3.8 logger issue\n\nThis fix tries to address the issue raised in 33799\nwhere running tensorflow on python 3.8 (Ubuntu 18.04)\nraised the following error:\n```\nTypeError: _logger_find_caller() takes from 0 to 1 positional arguments but 2 were given\n```\n\nThe issue was that findCaller changed in Python 3.8\n\nThis PR fixes the issue.\n\nThis PR fixes 33799\n\nSigned-off-by: Yong Tang <765086fe2e0c1f980161f127fec596800f327f62@outlook.com>\n", "proba": 5.5525608331663534e-05} {"commit": "9534ba0049fba324641400cd93eb420e3aed751e", "message": "[telemetry] Automatically remove test folder on import.\n\nBUG=252808\nTEST=Create a test dir and do from telemetry.core import browser\nR=tonyg@chromium.org\n\nReview URL: https://codereview.chromium.org/17826016\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@208809 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.5188285235344665e-06} {"commit": "3ebeab5689f30fae97336bcf14263ce9ba2c3686", "message": "Changed ProcPool to be turned off by default, while testing.\n", "proba": 1.0346561651886077e-07} {"commit": "7589e3da4518730c2bf6bfc554e0658d8ca5d76b", "message": "sign and verify\n", "proba": 2.0230207553595392e-07} {"commit": "3787d93e4ad70b5bd059b13fbdea46366e8059fe", "message": "Lambda expression whitespace fix\n", "proba": 2.9723498300882056e-05} {"commit": "b37d5e32b75f4f99989f8364594f2383477ebf09", "message": "trying to improve GPGSignatureVerifier", "proba": 1.7914777345140465e-05} {"commit": "1f12789004a0bbd49921c6840d92391520bd6cda", "message": "MOX-133: Never attempt to set the location of a user to be the same as an entity with no location\n", "proba": 6.052214303053916e-07} {"commit": "29056d010aff1989b354dee08b1b18163a643935", "message": "Added a failing test concerning inconsistent variable names in sub-path.\nFixing this is harder than it seemed at first.\n", "proba": 1.2736153109926818e-07} {"commit": "cb9084714a78d3eed4ea9460356c7d5108688b83", "message": "Minor cleanup.\n\nPiperOrigin-RevId: 246867159\n", "proba": 1.577895545779029e-06} {"commit": "a476f9c35db263c75cad066ed04fe056c52e2cb8", "message": "Tweak jats import process to work properly\n", "proba": 1.29906837287308e-07} {"commit": "20b1d6b027df268a535428e8c2244cf735f89732", "message": "don't write un-modified files\n", "proba": 1.3789242530037882e-06} {"commit": "17c89e2ccd2e0fff1925405509328ccf60c02133", "message": "Fix a bug.\n", "proba": 3.1859011073720467e-07} {"commit": "64964b6fe27564a27eb99804b5e655d89ee76a0c", "message": "Fix genome sorting\n", "proba": 0.00012350759061519057} {"commit": "bafa3a7188dadea8edef9f731bec4201be7849b8", "message": "Detector_Function: enable saving detector functions metadata\n", "proba": 1.2772488844348118e-06} {"commit": "fcc379f00c790f245e3eafa9a469594fcee6b169", "message": "numpy typing was causing a lot of slowdown on large chromosomes\n", "proba": 4.674738249832444e-07} {"commit": "3864cf802eca6cdf1a66f40b345ea93ffd1fcb8d", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "bd3cc16ff1e4b4e8da564278cf0c8c157dabef71", "message": "Remove checking for empty abstraction\n", "proba": 5.122592483530752e-06} {"commit": "fedfdf0df2b1bba23f648b9fa84cec1c55e8326b", "message": "better complete_read using glob\n", "proba": 4.969620476913406e-06} {"commit": "b070949bc25cab69d14a9ee2698fa5b81a2580c6", "message": "conflict remaining in algebraic.py\n", "proba": 1.7359446928821853e-06} {"commit": "5c82a50f2a20ccb04d0891d091809d8c2535c380", "message": "district for presidential candidates\n", "proba": 1.7676931065579993e-06} {"commit": "cf1d7cf2c47e316ee1af5a5c98854f8a688bd58c", "message": "added pyvirtualbench copyright to header\n", "proba": 1.36427260599703e-07} {"commit": "418718c09b6f1b817332ca3418c8475d55effe59", "message": "fix to transport information caching key\n", "proba": 3.808771964486368e-07} {"commit": "2dc1f86baf41b10b4d8351c2d3984758c038e027", "message": "code typo fixed\n\ngit-svn-id: 7f37ac75ba399d1a67495563478a051ab387697a@19 46fc6e28-f406-11de-944c-65dca90e649d\n", "proba": 1.5077190482770675e-06} {"commit": "7cb0cc0056a84eda04e6de20c2af91ae98b50a40", "message": "Update website doc for Scala Run and Configurations (#2422)\n\n* update scala run\r\n\r\n* update\r\n\r\n* update\r\n\r\n* update configuration\r\n\r\n* remove\r\n\r\n* fix style\r\n", "proba": 1.2410500005444192e-07} {"commit": "9139a2297f6e4c47eefd6d379c5667e848cf1e4b", "message": "Add keras SpatialDropout1D, SpatialDropout2D, SpatialDropout3D (#1898)\n\n* add comments\r\n\r\n* meet review\r\n\r\n* add python code\r\n\r\n* add documentation\r\n\r\n* add serialzation test\r\n", "proba": 1.2133166649164195e-07} {"commit": "02b2c688da90e861a1237a72b338e251ea5b0eba", "message": "update shared convolution (#1144)\n\nupdate shared convolution with latest SpatialConvolution.\r\nAdd wRegularize, bRegularizer, initWeight, initBias, initGradWeight, initGradBias, withBias", "proba": 2.289629748020161e-07} {"commit": "26bf67c429cef648be39bba94fe59e42b623b5b3", "message": "[Enhancement] Check duplicate layers in the container (#2351)\n\n* check duplicate layers in the container\r\n\r\n* add more unit ttest\r\n\r\n* fix unit test\r\n\r\n* fix test\r\n\r\n* meet code review\r\n", "proba": 1.2736262533508125e-07} {"commit": "a1a1cd3206dfdc88569a299e4140dbe60b28dd04", "message": "move model freeze to AbstractModule (#1647)\n\n* move model freeze to container\r\n\r\n* update\r\n\r\n* update freeze API\r\n\r\n* refactor freeze API\r\n\r\n* meet code review and add unit test\r\n\r\n* fix doc\r\n\r\n* meet code review\r\n", "proba": 1.3275888477437547e-07} {"commit": "9b2d4f1cebe92b3f640d3f23681439a1d521da35", "message": "removed unused import\n", "proba": 4.2686903611866e-07} {"commit": "59710d5bc6e680ba2988b0df89781b118f999078", "message": "Fixed crash extracting mixed binary content if file ends early.\n", "proba": 1.126321151900811e-07} {"commit": "824c66b010a8ae326c71ceafa15017f61e962a5f", "message": "dir supported\n", "proba": 2.9011781066401454e-07} {"commit": "e009551f0f779fbc889a061bd1a380a4084b09ad", "message": "Include Conv2dTranspose in AutoQ\n", "proba": 2.1594995303075848e-07} {"commit": "dea2eb534c6ce7f9f44b364520d1b8ddf0efca55", "message": "oops, forgot a print\n", "proba": 2.0561874407576397e-06} {"commit": "6155e3a0b35da922f43a531aec129c803742d2b8", "message": "Fix test_cli_registry_address_without_deployed_contract\n", "proba": 3.4987766412086785e-05} {"commit": "41c093508b08750e1fbfad3937f5a398b3566884", "message": "WHT: Whitespace cleanup.\n", "proba": 1.2989544018182642e-07} {"commit": "d01d51fbcaea5d7403f0b44d1ade54891d4815a1", "message": "Fix bug: opts are missing for docker cmd execution\n", "proba": 0.00017694309644866735} {"commit": "22ca3a44409c59cb41b5df5aa58696b15ee5d898", "message": "_strict_random_crop_image: fix mask slice", "proba": 2.0567915271385573e-05} {"commit": "2445f9e3c22db810d61996afde883e4ca608f15b", "message": "[FIX] base: remove BCC header from outgoing emails to avoid leaking information\n\nWhen sending emails SMTP server only requires an author, recipients and the\nemail to send. It does not make any modification of what is sent. It is\ntherefore possible that BCC content is sent.\n\nBCC mean 'Blind Carbon Copy', the address in this field should be not send\nin the header of the mail and must be removed, if not the address are visible\nfor all recipients.\n\nCloses #21965 .\n", "proba": 2.4311742663485347e-07} {"commit": "c41d3a65611a9130396e9d5f8faa83f90cdb63a7", "message": "test travis\n", "proba": 2.079919113384676e-06} {"commit": "cfe4dd19cc20254a044d06a2df4042825f0db8f8", "message": "redefining header init method removing protocol version\n", "proba": 5.091462753625819e-07} {"commit": "9a9d7c0115a47ab8c2186652e2704c21376512e6", "message": "Move Tag() definition inside migration\n", "proba": 3.2017700846154185e-07} {"commit": "496a2d7ed5ec659d761760af3a4be2e9edb2c951", "message": "Hide private structs based on the name for now\n", "proba": 1.3262247477996425e-07} {"commit": "58b34f1c2e861975949d3cd76f5d158dabfc8a15", "message": "Add CA and sidechain discretization\n", "proba": 4.4474816718320653e-07} {"commit": "5a5ed8fcd64f0c90f4199f01747405d03537dbcf", "message": "Python API: Improved main sample\n", "proba": 5.857219775862177e-07} {"commit": "fcafe1d8ebe92ee56e907194b214c5c43a76bcc6", "message": "Fixing db router to correctly handle syncdb\n", "proba": 3.6326716212897736e-07} {"commit": "14eb973de498ed31af026c702625897c2f43eb8a", "message": "Saving android package correctly, getting icon files properly too.\n", "proba": 1.054198008887397e-07} {"commit": "22e20cc890395a42e15ab93df7a8f0014af46251", "message": "small changes\n", "proba": 2.5906804239639314e-06} {"commit": "b970d468d1251c51d28b0ec142a12f817cf19925", "message": "whoops", "proba": 8.302949936478399e-07} {"commit": "26b09440fa9d89f01577df229dc5f8de4d121b02", "message": "Added failing unit test for pattern matching (usnig same variable twice)\n", "proba": 1.0373000236540975e-07} {"commit": "1b989af8a3a0b3383bab0d62c91a7642598197de", "message": "thesaurus speedup\n", "proba": 2.1964717689115787e-06} {"commit": "c0065cbf51fe8e8ce080af1e08dbf13d03fd5b5c", "message": "test pop of return value that was removed\n", "proba": 2.954164131097059e-07} {"commit": "a96c56ffdcc7868405fd2eda581accecb8ec6c2d", "message": "refactor test function for remove\n", "proba": 2.26063457375858e-06} {"commit": "07ab00e1f6a40b988ce40261c42b78ce03992a99", "message": "Update Tensorflow.py", "proba": 1.1819158771686489e-06} {"commit": "12349091d9cdfb77e7840f272ed4e0266dcc7035", "message": "LP-3008 Add specializations in course catalog context\n", "proba": 1.1774647390438986e-07} {"commit": "abab3c8b602f9aba41eee37ca8177103842f598f", "message": "tweaks in loading raw results\n", "proba": 2.4525706976419315e-07} {"commit": "5d5f90fab1c6952a83abddfe95f8cefe74247b7b", "message": "[IMP]In sequencea when enter 0 in increment number field, it should raised error", "proba": 2.5185643153236015e-06} {"commit": "b5bb72782f89e765c3484dbd442e97048366a56d", "message": "[FIX]res_config: in _install_modules, result returned by button_immediate_install must be returned, in order to launch the action if there is one. TODO fix,at the moment, if there are missing modules, this return statement prevent their installation\n", "proba": 1.2991753237656667e-06} {"commit": "bb34705e9eca4fbf2bf9ef5062a0bbb6e21599b6", "message": "Handle errors on data bridge\n", "proba": 1.584264623488707e-06} {"commit": "757d142991da7ddf8c54c37ec64924a7c0584219", "message": "fixed url bug\n", "proba": 5.966901994725049e-07} {"commit": "c49c3fbd84ac5f713061a85c185b72eb6972f52b", "message": "align edrpou code to 8 digit, improve error reporintg\n", "proba": 0.9981939196586609} {"commit": "7a9d62fb5456b951f99815b2b947fc8b20674257", "message": "Fixed signature in the reportwriter\n\n\nFormer-commit-id: 4c7ca46c81d20e6dcbd08e68cddb3c708e90785a", "proba": 4.244925548846368e-07} {"commit": "e0405aea1c91322cd4276432d5a4ba8519948553", "message": "Some improvements to reportwriter.count_ruptures [skip CI]\n\n\nFormer-commit-id: 1ebf41b1152102235def2820a880424b560b6101 [formerly 83ed607e90f04abcf5fd3c47d423b57931ba2aba]\nFormer-commit-id: 25a11a5fc87e88a7ab652e079a04f0a2efdb62dd", "proba": 8.032941423152806e-07} {"commit": "daefce190cfc7c1213e330d657a907b7cdfbc790", "message": "minor fix\n\n\nFormer-commit-id: c7ec7b4a03c22a6f593f3079ee391af18db93970 [formerly a18950ae487a1abde7e3f2c167cd38369dba6be5]\nFormer-commit-id: 695ffdda712476f880cb2e696aa098016ae1d25f", "proba": 3.0968751616455847e-06} {"commit": "3b1e088d95a0b339e33ad1d866861db306710cee", "message": "Do not skip writing the `ruptureId` for the first rupture\n\n\nFormer-commit-id: f858a8b6f4e54d1edde4d5cca62033b0e69b6702", "proba": 0.0007578535587526858} {"commit": "3b3403bd3f217b5331952a38e15f4049c3ba1ec2", "message": "Added --relax-path-checks option\n", "proba": 1.3987954616823117e-07} {"commit": "472b9430963239f7d22789b42e8b7c545f10b736", "message": "Add uic_ref transform\n", "proba": 4.334837626629451e-07} {"commit": "f13b50fac46a6604b3fe6cdadda79b510d9574dc", "message": "order number\n", "proba": 0.00583279225975275} {"commit": "5bfe4c811db440be4aa77c90e75a2a3acc3c8c48", "message": "Add queue for Slack events (#1892)\n\n", "proba": 1.286474571315921e-07} {"commit": "2926657b8c12b0a10cb44a13d7c8d113b4b76bf9", "message": "Remove error logging and replace with debug log (#1911)\n\n", "proba": 1.1257036902634354e-07} {"commit": "ed8724b94d9110fee47bc36036991132426ff627", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "89b3766c67781ed1ab07e959d905c79d3a412721", "message": "Revert \"Fix for https://github.com/ipython/ipython/issues/13084\"\n\nThis reverts commit a44718bdb19469bee2674ef8a01353b97554b025.\n", "proba": 1.2800080639863154e-07} {"commit": "7ba340bc8fc8cefeca43dd1633a6dcb62e1d4d12", "message": "Clean-up imports\n", "proba": 4.252226801781944e-07} {"commit": "4a184ff6353942a7f1d937f19bcfab4a32a6e2c9", "message": "Still working on this shit\n", "proba": 1.403203242489326e-07} {"commit": "548fbab95374a838ec7630c82b74b59ac1be623d", "message": "Removed iot.py and added modified version in helper_functions\n", "proba": 1.766497064181749e-07} {"commit": "b165787090e415124a78ec39ff197c7387192f7d", "message": "Only discourage OSG sites from setting env in the JR entries\n", "proba": 1.347535061313465e-07} {"commit": "89380f10de3c6d03d22fd21145a41d2890f1e813", "message": "Refactor the replies waiter code\n\nThis changes improves the way of we wait for replies.\nCurrently, one of the rpc client is reponsible to poll the amqp connection\nused for replies and passed received answers to the correct client.\n\nIn this way, we have some case if no client is waiting for a reply, the\nconnection is not polled and no IO are done on the wire. The direct\neffect of that is we don't detect if the tcp connection is broken,\nfrom the system point of view, the tcp connection stay alive even if someone\nbetween the client and server have closed the connection.\n\nThis change refactors the replies waiter code by creating a background\nthread responsible to poll the connection instead of a random client.\nThe connection lost will be detect as soon as possible even if no rpc\nclient are currently used the connection.\n\nThis is a mandatory change to be able to enable heartbeat on this\nconnection.\n\nRelated-Bug: #1371723\nRelated-Bug: #856764\n\nChange-Id: I82d4029dd897ef13ae8ba3cda84a2fe65c8c91d2\n(cherry picked from commit 16ee9a86830a1740655c097cd4714c67e31129bb)\n", "proba": 3.118391077805427e-06} {"commit": "b2b44b7424338b369be43f3a8d814a789382d0d1", "message": "Fixing a bug in Bucketlistly.\n", "proba": 1.1308167557899651e-07} {"commit": "7f60c056d39f6cc3ccca47b1e75fb96470882959", "message": "print number of units in to merge step\n", "proba": 4.1112366488960106e-07} {"commit": "0016fd3a4bdefa87b237b8c4686c55a1f0fa7e96", "message": "support for python -m you_get\n\nThis makes develop-then-test easier and straghtforward\n", "proba": 2.1410436090718576e-07} {"commit": "3f0ad9139ea6ae6d9d30777e0f8964fabd891bb3", "message": "[enh] Remove empty pending conf directory at regen-conf\n", "proba": 2.0735645023250981e-07} {"commit": "c6e8fb66c876c8cc508c509088eb1cb64b8f2cb5", "message": "Fix missing keywords\n", "proba": 0.9999994039535522} {"commit": "7cbd6ae722944e9cc831972f6441d999bb8b7d4a", "message": "- add the current system datetime in the output\n", "proba": 0.00018650955462362617} {"commit": "9c05f03f34e5d7072e588445cc1ba04dbb0fe5fc", "message": "update unit test after jenkins modification\n", "proba": 1.4227907740860246e-07} {"commit": "2baf1f758598b86e41d8995861676514872e0493", "message": "account_asset_management 13.0.1.0.2\n", "proba": 3.120021347058355e-06} {"commit": "ff50f7b3d4915677f614932eb050c7ffd6eb8645", "message": "account_asset_management 13.0.3.7.0\n", "proba": 3.976876541855745e-06} {"commit": "c7369ce72858377331fdd4008b7b375d1425b211", "message": "Bump account_asset_management version\n", "proba": 5.066807489129133e-07} {"commit": "e174a898595664ff291cbf8ccda0f1c404a73575", "message": "Remove disconnected client from clients list, allow client callbacks to be set in constructor.\n", "proba": 1.1087925599895243e-07} {"commit": "17af0113924d412540ea92b2ce6f471d43bd411b", "message": "[FIX]: improvement for checking some data\n\nbzr revid: mga@tinyerp.com-20100628143541-z3uw068pxoi7n52r", "proba": 1.6898958676847542e-07} {"commit": "25f157efc02aeb82103d55c5f1fa8f35f287cd9a", "message": "[IMP] account: Verify if res_partner_bank exists in set_bank_account.\n\nWhen creating or writing on a account.journal model,\nit is possible to pass a char representing the bank account number\ninto bank_acc_number instead of passing directly a res.partner.bank.\nIn case we pass bank_acc_number the system will try to create automatically\na new res.partner.bank for us, however if a res.partner.bank already exists\nwith the same account number it will result in an error as we have a unicity\nconstraint for that. Therefore it is best to first seach for such an existing\nres.partner.bank before trying to create it. The search is done on the\nsanitized_account_number field as the unicity constraint is on that field.\n\ncloses odoo/odoo#49637\n\nSigned-off-by: Cedric Snauwaert (csn) <0913683871cd6a284d24f0b73c0d0c7b5d961c19@openerp.com>\n", "proba": 1.427183178748237e-06} {"commit": "26ae9e2f0c1bafafd68d9750de7515d7cfa286aa", "message": "[FIX] hr_holidays: error during migration\n\nWithout this patch Email notification of leaved doesnt have the\naction buttons('approve','refuse')\n\nrelated to rev https://github.com/odoo-dev/odoo/commit/46ccb7036fc478e613667777c3cd59b6406aff17\n", "proba": 7.023958801255503e-07} {"commit": "41f549ef77c0e2628de1bd5918c19e5391409689", "message": "[IMP] if action is called with a print multi button, pass active_ids along to report generator.\n\n'auto' flag is meaningless for birt report.\n", "proba": 1.1106297392871056e-07} {"commit": "1a09a703e4e89b64d286b76de89ef309dabb10c8", "message": "[IMP] SEO tags\n\nbzr revid: fp@tinyerp.com-20140421202518-vqa8l0gtaemzoc32", "proba": 2.1798349791879446e-07} {"commit": "5f7fc56b7aa47b9fa6015a05f8d755f1f9670076", "message": "[FIX] website_sale: fix settings for front end group_xxx\n\nDuring refacotring of the new settings, the group='xxx' has been removed.\nWithtout it, the implied_group are only apply to the group Employee.\nIn this case we want that group_portal and group_public have also the group\nto have the option on the website.\n\nopw-740751\n", "proba": 2.9965608518978115e-06} {"commit": "e4d8246c815e6c3abab1f24d6d4a1d7d1b19b35c", "message": "[FIX] website_sale: fix unnecessary permanent update of pricelist on checkout\n", "proba": 2.6101679395651445e-07} {"commit": "04ebe4494798e12b16d1926ab841c3b4bc087829", "message": "Write snapshot brouillon.\n", "proba": 3.635347241015552e-07} {"commit": "b3ef510575b190907760e4e8ccb46635f2834b8c", "message": "Do not use deprecated assertEquals\n", "proba": 1.2527179933385924e-06} {"commit": "1fb4be2d3a55fa922a73cf28cb3a92ec46538e7f", "message": "started adding TL\n", "proba": 3.323737018945394e-07} {"commit": "8b5a0e79739cf9e9df58ff4084ba3c6a4552859e", "message": "fixed bug in characterization function that was preventing chars from happening\n", "proba": 2.4019016109377844e-07} {"commit": "12e96c5fdce57fc544a91d21ba5a18dcb42414bc", "message": "Moves SCDB code forward. Makes the date & docket matcher more aggressive in the face of missing US cites.\n", "proba": 1.0215104140343101e-07} {"commit": "e6d1ba752b01f34d1049ffca9b1eb0ec639b4cfa", "message": "Move flags to common fill module.\n", "proba": 1.1466479321597944e-07} {"commit": "4fcc24db5ca8d49cc18bf7579b4790684455413e", "message": "Fixed support for class path in jar package\n", "proba": 1.9779223237037513e-07} {"commit": "2c09e35c3b32d953c035aeff66fcb1fdbe7e288c", "message": "move tojsonfragment to core\n", "proba": 4.2106060504920606e-07} {"commit": "5220b4f67d9f36444bddfa661459cf59809e7003", "message": "feat(api-server-lib): Fix /server/restart failing in api-server-lib (#2104)\n\nfix(api-server-lib): Fix /server/restart failing in api-server-lib", "proba": 7.22979677902913e-07} {"commit": "5250b46c428dfc3d3a79fe7f40316fabd2eaefd8", "message": "remove debug prints\n", "proba": 1.4093592426434043e-06} {"commit": "91783b66bd56e350873c2c564e5d1f96912653b2", "message": "Faciliate ssh tunnel sharing by announcing ports\n", "proba": 1.3655014186042536e-07} {"commit": "99a418b0999d6efb6c9d4a67b556e92a8cc48b4e", "message": "Add menu_name to the context.", "proba": 1.948648815641718e-07} {"commit": "d8167678a96225e6cd87e4abcc364552c06401a9", "message": "Clean-up of moment errors from signal-id. General moment error functions. Fix spectral offset in centroid\n", "proba": 5.573285761784064e-07} {"commit": "18cefb5d9e928f3f33cdb0e7083e3e9c83caf6b8", "message": "!U update to the already upgraded getConnectedMetaSystemRoot. Added a flag to respect or ignore the mSystemGrp attr on any mNode that's being walked. Also now mTypes will ABRORT the walk upstream if an mNode of the given mType is found during the walk. This seems logical to me, you're asking for a node of type x so abort if you hit one.\n", "proba": 1.2086324829851947e-07} {"commit": "a3d1db4fbf96dd6f0751e764654d0465064caf30", "message": "Change base factory to DjangoModelFactory in core factories\n", "proba": 2.3570446217036078e-07} {"commit": "2ae22638312c2d9db0b3b559075fd8062bac4fe9", "message": "remove contextlib.nested\n", "proba": 2.7380123356124386e-05} {"commit": "973270e7f93b741865fe927dea6f8ad7c1f8db25", "message": "[mtiLib] Assert that glyph name is not empty\n", "proba": 0.9999992847442627} {"commit": "9f38d4de12dd871d1f2e916611bd3c1607757371", "message": "svgPathPen: forgot to replace remaining str() with self._ntos()\n\nH and V commands were not passed through the custom number-formatting callable.\n", "proba": 1.07966904749901e-07} {"commit": "96aa09203f75cb226b44b3922c4630aab9a26889", "message": "[varLib] Merge GDEF table\n\nCurrently, it just makes sure that all masters have the same GDEF.\n", "proba": 1.0249941340134683e-07} {"commit": "3079b87ee9ba98c3c6a2f2b95c29719e51ecf01d", "message": "remove 3.0 conditional\n", "proba": 0.02207344025373459} {"commit": "08f610ba63900a2fd3933c866f36b50da68741b2", "message": "readded pandas options for now\n\n\nFormer-commit-id: 83109eff58ca8d73ee8019b5f351e0b34d04fc41", "proba": 5.862741545570316e-07} {"commit": "0e50f93c4f8d3f2842341b0bfd83ecf20b05262b", "message": "projection value printing works with floats\n", "proba": 1.3959889599846065e-07} {"commit": "959420a3d966001da9e80f15fc38e4fdaadc8f71", "message": "Try to use faster c json library. Fall back to simplejson.\n", "proba": 1.1519308884544444e-07} {"commit": "48e581e5e9bfb40e5869947fb8c43244156a1ddf", "message": "add tests for writing settings to git\n", "proba": 2.304741570924307e-07} {"commit": "b40db107d4a20aa80a7f6f16fa751c07d7a9c8ae", "message": "_log_entry\n", "proba": 2.003233203140553e-05} {"commit": "78f259f61e3f402bd1d99701be6b4c89e9b3932a", "message": "Update chooser error text\n\nChange \"N/A\" -> \"Err\" as per discussion in #282\n", "proba": 1.747010998087717e-07} {"commit": "3de03d18ef8175a31b7b54281e2820feb90a2d5c", "message": "Update parsehtml.py", "proba": 1.6875042092578951e-06} {"commit": "7e0fced77d0ba9a3e4002b3e2a93f8c7ad945b60", "message": "remove commented out dependency\n", "proba": 2.224160056130131e-07} {"commit": "7b78bb63ccb70269d0a5ae6ef8c62431581d7756", "message": "compuite chiqsr for 2 d\n", "proba": 3.906608526449418e-06} {"commit": "1c5b0682bf7a463c903486efcce4a6d10443de85", "message": "model 2d plotted\n", "proba": 2.3445818442269228e-07} {"commit": "54905deac983bd6ed343a09aae47d96d64b380b4", "message": "reversed the last change causing another problem\n", "proba": 1.616271401871927e-05} {"commit": "4211b5fe9d7356b2106180d18f8ef4f340529c00", "message": "Update post_message.py", "proba": 6.614180847464013e-07} {"commit": "39c12d7006477221b2e9baa531441b9b91f1ad4d", "message": "PEP-8\n", "proba": 4.044895831611939e-06} {"commit": "4d277461965e1b0f6d42ff20e56663f5b21b0d30", "message": "TST: Fix AR predict tests for new syntax\n", "proba": 8.52760024372401e-07} {"commit": "fdbe3b8193f58ea84ae0cb0726cc656a9c044d60", "message": "TST: interpolate: test integrating periodic b-splines against ppoly\n", "proba": 2.786159166134894e-05} {"commit": "80e87cc8d125b527daba0bdf98acc06fc63e8ffb", "message": "DOC: differential_evolution, improve docstring for mutation and recombination constants.\n", "proba": 1.1255233545170995e-07} {"commit": "8558fd3ca0a45e9e88c627c63c1ed48b090ef472", "message": "Update metric alert timing from 10min to 15min\n", "proba": 1.2839328746849787e-06} {"commit": "70eafdd869558e32b21fc2d54da5d241c273816a", "message": "12 dec feature\n", "proba": 2.991644123540027e-07} {"commit": "f7f7ef623af5659282249a2fa0adf357769bc768", "message": "logs uploader: used depot_tools gsutil.py wrapper\n\nThe vanilla gsutil hangs when a new version is out, on the prompt asking\nwhether or not to install the new version.\n\nBUG=\n\nReview URL: https://codereview.chromium.org/1659273002\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@298534 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 5.3369141824077815e-05} {"commit": "92773598131ee11a9b9ee239a4ddd1bead810c50", "message": "fix: Allow mix of vlan and no-vlan interfaces\n\nThe data switch configuration parsing code assumed that if any network\nwas assigned a vlan then all other networks would also be assigned\nvlans. A conditional is added to only add a vlan to port or port channel\nif it has been defined.\n\nChange-Id: I37bbd5b49e455c8c542c75e537a8f932e4445601\n", "proba": 1.4874935914122034e-05} {"commit": "44cb42b13466e3c6cd2a82f68d9c896843a93d12", "message": "fix testing plugin\n", "proba": 5.331453394319396e-07} {"commit": "19dec3d0ed45cd3fb2c8a9b7affe0fd619742582", "message": "fix api_classes definition description on flows\n", "proba": 4.742778855870711e-06} {"commit": "9bee6d32b7f2b731cddea35560ed491e6b5ebaf2", "message": "Fix authorisation issue for new functions", "proba": 9.500128726358525e-06} {"commit": "9fde4271377e7e48814180be4df91d817cb1bc4e", "message": "sleep to avoid instant reconnection attempts\n", "proba": 1.864269876250546e-07} {"commit": "bdd70ab0cb5dac5c0da5dacb8b452c6d26739c2f", "message": "[BEAM-8575] Test DoFn context params (#10130)\n\n* [BEAM-8575] Test DoFn context params\r\n\r\n* fixup\r\n", "proba": 1.8695862991080503e-07} {"commit": "91720739af3c7b35e331949cdd64a98023e23799", "message": "Add bbox to parking area view set\n", "proba": 1.5877056114277366e-07} {"commit": "175b0c7c1462fbd691776c6b7fb98731ec3d0095", "message": "Truncate very long titles\n", "proba": 1.5466918057427392e-06} {"commit": "98459e81cc0108d44f060865a0f224ea940228e8", "message": "Correct unit test mocking\n\nThe v1 API unit tests were directly modifying modules, setting functions\nto mocks. This was working because every test in a given class was\nsetting the same function, and no test classes relied on the non-mock\nbehavior. Patch corrects those tests to use mock.patch context managers\nto set expectations, allowing the correct behavior to be reset in\nbetween test functions.\n\nChange-Id: Iee2364599d826675315c4f2eec19f1ebade912bb\n", "proba": 1.001856435323134e-05} {"commit": "448924c5f9c261af76b82506d20bb85cbe8d193c", "message": "implement function to set bin labels\n\n* add some doc strings\n", "proba": 1.8572674775896303e-07} {"commit": "b562e09e8d10c341bc6b4b4c91f2913850234aed", "message": "use os.path.dirname and __file__ to locate files, #216\n", "proba": 1.913536834763363e-06} {"commit": "4356cd51dd6df89ecc0cc7803026f4b1d3c5d32b", "message": "code formatting\n", "proba": 4.671690476243384e-06} {"commit": "5b95703d96a0cc42719a6c004fc9bee2fcde207c", "message": "add decor text options to Formatting.py\n", "proba": 5.086347414362535e-07} {"commit": "593a65f91c180aa6a8da0555eac693500c873e91", "message": "updating pyatoa_nz to match call structure of main module pyatoa\n", "proba": 2.540128605232894e-07} {"commit": "8b6f727668654bae71910cfd62df55f69803a9f5", "message": "Add unique new/old with special parameters for the NonbondedForce\n", "proba": 1.2092503709482116e-07} {"commit": "2ce8c08da8d50fc3737df32cb61c0929b703f7b1", "message": "disable old process handling\n", "proba": 6.309948048510705e-07} {"commit": "ac84701c2df7e2fe7ba26ee6a04ff0f280ec12ef", "message": "Config file has not been specified\n", "proba": 5.345816020962957e-07} {"commit": "209229d3b06094982144c079cbdf00f02a6f675e", "message": "Only set offsets if maintainOffset is set\nAdded untested Orientation constraint code\n", "proba": 1.6454762885587115e-07} {"commit": "a098e18acb902702e77b76d0d0700dcb7a1d6e64", "message": "Change the notification mail subject line to show the program short name than being hard coded as GCI.\n", "proba": 1.7383506190071785e-07} {"commit": "cd8c1f31a8dc18d938ec134cfad1088a8963c15e", "message": "WIP: save\n", "proba": 2.3896186007732467e-07} {"commit": "9c0ca51a07c1e0b53fd6d458305a7428aace816c", "message": "Added more explanation for RawSparseData class", "proba": 1.1768607777185025e-07} {"commit": "40812a0f76f59ffa63f8dbb485bfed645c2fa282", "message": "Added a warning message to alert the user that reviews are not editable.\n\nPatch by: Lennard de Rijk\nReviewed by: to-be-reviewed\n\n--HG--\nextra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%402920\n", "proba": 4.434073446191178e-07} {"commit": "5542005d289afd0b06b3b203f67bdca0adf69e19", "message": "FIX avoid root segfaulting when iterating in reverse order\n", "proba": 3.4751612929539988e-06} {"commit": "e711950da9a544cf81021309dbff9c5fc16d29a1", "message": "Reconnection support for tornado_connection.\n", "proba": 1.2688641959357483e-07} {"commit": "74bab2d2562e808fa59c64e28b2f0050b624b699", "message": "Style changes to test_mcmc_controller\n\nAddresses #1050\n", "proba": 1.506926992078661e-07} {"commit": "5c7f18ee94ab80d6a59fad3409030c2ea88df19f", "message": "Refactor templatetags to reduce duplication.\n", "proba": 1.2315352648784028e-07} {"commit": "aea055d0b169d508b947d0d6a449c60ccae261a3", "message": "EnsemblDataCollector, config manager getter\n", "proba": 2.101611329408115e-07} {"commit": "10cf9d6cdcdd76a62d7b940283c1ae3433aa5590", "message": "added CouponManager.redeem helper: search a valid coupon code and try to redeem\n", "proba": 1.529224817886643e-07} {"commit": "cb03802b80f63a65682d21b66ce419964f61ab52", "message": "add: EnvironmentDictTokenizer to build list of operations to join dicts\n", "proba": 1.3795751385714539e-07} {"commit": "835fff4af6c651677ea5f06a1a53763384bc4c15", "message": "little fix\n", "proba": 3.925809721749829e-07} {"commit": "f647885ecb1836844fd1bc90b14591e43a2acc8e", "message": "Fixed --pagination issue.\n", "proba": 1.4988162888585066e-07} {"commit": "3bc9787a142f7d7b3443690777c6fdcaa90e988c", "message": "server-side python tools: AWS region support\n", "proba": 1.1819925020972732e-06} {"commit": "857f7550f6cb517537b7a659b72e9c443dee4cc3", "message": "add python version in bug reports\n", "proba": 3.6509018741526233e-07} {"commit": "330d20089b69800fbad520736c9176f4513055b1", "message": "remove debugging\n", "proba": 6.531336839543656e-05} {"commit": "dd511cfb6751eae8d1dc945e1df5eb885ff7e2a3", "message": "New ordering of phonology fields for the ASL Signbank #195\n", "proba": 1.2027017248783523e-07} {"commit": "5b77f1bb6357adc3c3dfe90c6a5bcc890eb30929", "message": "Trying to speed things up\n", "proba": 1.3754669453192037e-05} {"commit": "661e29842878aedd666704ebcaa0351cfb105d4b", "message": "Fixing line length for PEP-8\n", "proba": 6.917565042385831e-05} {"commit": "fb0af8b60bbe51d53c27048973993e53d587fe73", "message": "DOC Add None as option for random_state in affinity_propagation (#18306)\n\n", "proba": 1.2121530801323388e-07} {"commit": "20fc780bd5929869fcafe3aad25319b714cfdcae", "message": "added '.*::CrashAtUnhandlableOOM' to prefix signature list\n", "proba": 9.415316162630916e-05} {"commit": "b5c4a193f8cfee483101f1468fe06bdaa25c2f17", "message": "Naming\n", "proba": 0.0001326090277871117} {"commit": "a401a27eca325f311eda570bf30fdba3add39ad3", "message": "additional jar in loader\n", "proba": 2.8801937901334895e-07} {"commit": "a85a8d693c060d0ee8d8886c6bbfd7e9bb4294e5", "message": "Remove unneeded pass\n", "proba": 3.912850388587685e-06} {"commit": "725e0e103418aaeb737b5536bfd6d3c093abf0c7", "message": "fixed class variable name\n", "proba": 1.6705869256838923e-06} {"commit": "da9257869f1a1e6443a0831bb989eabfb65463d1", "message": "Ahhh, string sizes.\n", "proba": 1.607625677024771e-07} {"commit": "195a64de39032570223826f9a48e0df1058aa83f", "message": "Update commands.py", "proba": 1.6085610923255445e-06} {"commit": "8a19c34ecd3c113c8dac31a5252623246754a408", "message": "test that view excerptexport:new offers public excerpts by other users\n", "proba": 1.214397826743152e-07} {"commit": "7abde4c9ee53779c1a24a0318ad2c2de5c52977b", "message": "Update commands.py", "proba": 1.6085610923255445e-06} {"commit": "815b38a7e96c05b6be28fb6d93adc44edebff370", "message": "New commands: !fdeny and !fallow\n", "proba": 0.002893423428758979} {"commit": "f014138c1110e7dedef40ae9887a6589f0a06156", "message": "Fix parser tests\n", "proba": 8.896632789401338e-05} {"commit": "2664d5e1a8b99cc88c134c00fa6512bb6a263904", "message": "remove print\n", "proba": 0.0007934024906717241} {"commit": "9c30fab959b3a07d9f14d9309bf4a736923f28f5", "message": "Switch to using a mixerbin instead of element.\n\n- This allows us to set values like ``alsasink device=hw:1`` etc.\n- Adds an intial volume to our fakemixer.\n- Minor code cleanup for rescale() calls.\n", "proba": 1.1618915607414237e-07} {"commit": "6597e8a4ed398b9f14880fa76de26bc43d230836", "message": "Fix bug that caused incorrect counts\n", "proba": 7.13046176770149e-07} {"commit": "29f3e9267f7387a523ca49b353ef61c8f1df0f11", "message": "utils: iterate doc for axes instead of build_doc\n", "proba": 9.565243317410932e-07} {"commit": "09e8cd09fc48304088812b99f21bf87580498add", "message": "made sure to use r\"\" for regex strings\n", "proba": 2.1184967408771627e-05} {"commit": "04c83c3d365686a150d170ec8a0284acee6d26cc", "message": "Added first version of note parsing\n", "proba": 1.2723745612674975e-07} {"commit": "53ec352c6dc161ab52d53c2229aaa33b167978ee", "message": "add simplification for Ravel._inflate\n\nThis patch adds the ability to simplify an inflation operation on a raveled\naxis, adding to the pre-existing simplification for inflations on any of the\nremaining axes.\n", "proba": 1.1794843146617495e-07} {"commit": "89335be780ea3c7fb37eba8c66ad3853a9479c7b", "message": "s/'Contig Assembly Status'/'SV Calling Status'\n", "proba": 1.2907068480672024e-07} {"commit": "a0141eb8e5b93332c74350e834419430d19c2d22", "message": "Add RegulatorySensitiveAreaShapeParser\n", "proba": 3.335823066663579e-07} {"commit": "136b4f5aa27a5d211dd596076510d840bdfb8050", "message": "adding opendap das under data information tab\n", "proba": 2.102192695474514e-07} {"commit": "53f28713d46894e3511f056a7bf2475a32fbd19e", "message": "Read configuration file from XDG location\n\nGit itself has started using ~/.config/git as of 1.7.12.\n", "proba": 1.0296125196873618e-07} {"commit": "f3549261d30ae22fc86977a2a8661f965d95684f", "message": "Do not add multiple console handlers during tests\n", "proba": 5.218042247179255e-07} {"commit": "356f5f674be197259e917814c7c0aee530254d79", "message": "Add logic for transforming gist repository urls to ssh\n", "proba": 2.110880586769781e-06} {"commit": "d52034eddeb510acc367c87c88e4277994157338", "message": "Create the hook for each repo\n", "proba": 1.9975736904598307e-06} {"commit": "3047a69c6c6f0a53a17613b41f5839c90466bc80", "message": "Refactor storm unittest to reflect our usage of Storm\n", "proba": 1.2079894418093318e-07} {"commit": "7ba21a44aa15381c277dc1114f522d7a724703c6", "message": "unify reorder test logic and add granular retry [fixes #299]\n", "proba": 1.1250318010525007e-07} {"commit": "e52241489f1f52a88c8b5a7f92384f86f2cf2dd3", "message": "Push the error handler\n", "proba": 2.096635853376938e-06} {"commit": "8ba95ccf19d301a031cc463f307a88f9fe7cf3ac", "message": "Docstring typo fix\n\n\nFormer-commit-id: 629f080dbac9945bee6ba479159af8040c33889d [formerly 629f080dbac9945bee6ba479159af8040c33889d [formerly b272cea9882127c0576b8c6e80665c3130923a0d]]\nFormer-commit-id: b3443c5e9a48c8be7873af54793ec338410fdc9d\nFormer-commit-id: ec85c941097b74ccb8bf8464d150a3ed69303ebe", "proba": 0.014500745572149754} {"commit": "6f17f051a57e92030c1cc77a2ab634660be1b945", "message": "removed print call\n", "proba": 1.0738523315012571e-06} {"commit": "abcc443ab3cbf6ba672861f979a7d0eed32258e9", "message": "Feat: created GET single restaurant JSON function\n", "proba": 2.2539441033586627e-06} {"commit": "441e412ccbe414b16a203738827be58fc43a2d23", "message": "Changed operation status_collector and cleanup functions.\n\nThe old status_collector (and cleanup) functions predated contexts.\nChanged status_collector to status_extractor, whose responsibility can\nbe to move values from the status into the context. in the case of spinnaker,\nthis could traverse the complex json data to extract out a couple individual\nfields that might be referenced by a test.\n\nCleanup just takes a context. The run_test_case method adds the verify results\ninto the context so they are still available (and the status was already there).\n\nI also renamed the keys that the run_test_case writes into the context to be\ncamel case to match the type names. I dont think anything was referencing this\nyet.\n", "proba": 1.3602011961211247e-07} {"commit": "eb23fcbb1c35b78e302462333db60ea9ab4aaf2d", "message": "Changed default resultspage to empty to not create dead links\n", "proba": 1.8714844429723598e-07} {"commit": "271ecb6b142dbc1838add2557add1eb0609b779a", "message": "[#937] Handle the case where milestone due_date or description is not defined yet\n", "proba": 2.5468043531873263e-06} {"commit": "6a5dd9f6d8e389774a5e004d6fac1b43b0d7ac17", "message": "[#5673] ticket:299 Show changes from normal ticket edit and bulk edit in a uniform way\n", "proba": 1.0868488686810451e-07} {"commit": "619cd7a7c132f5e0ee78ee8723a200e0ea6bbce6", "message": "[88] show ticket changes and fold successive changes\n\nFormat inspired by lauchpad.net tracker, changed values are show as\n* was -> become\nExcept the description field, it would add too much noise.\n", "proba": 1.003936986876397e-07} {"commit": "5ee3099a37448eb93a5461ce438b0266aa9d878c", "message": "BUG: Correction of the onClose event for MeshStatistic\n", "proba": 1.3604243065401533e-07} {"commit": "5fd2866960bf70be696c1164fdb02b486a7e8db0", "message": "Delete committed member on test_relationship\n", "proba": 3.496876388453529e-07} {"commit": "b30abffc672787db9c8785541ee388ae18e1ea46", "message": "add \"add_cross_domain_link\" and \"ask_dpid\" functions\n", "proba": 1.2248956409166567e-06} {"commit": "0ae6a1bccb4fc4593559acfbbdde52afd3981676", "message": "fixed typo\n", "proba": 2.684115770534845e-06} {"commit": "0c3572cd8be7285724d7f76d38b3a41f3f2466f4", "message": "Minor ease of use changes\n", "proba": 1.5583366064220172e-07} {"commit": "43f8430043802a7ed0ffc938b2180362d26120cf", "message": "serialize dataset instead of just the id\n", "proba": 2.8375301553751342e-05} {"commit": "666faf1dc547824bfcd9c537a01a72c31d444a96", "message": "Change optimizer\n", "proba": 8.492654046676762e-07} {"commit": "943f68941b160840d9bba09eca4d5f3333a2a1dd", "message": "binary up and running. passing most tests\n", "proba": 0.9997866749763489} {"commit": "15e763ae86b1af4b49430b59e20579ae6556ef70", "message": "#update uuid\n", "proba": 6.220112140908896e-07} {"commit": "1a677ddde064fa9abe053f8b3364b74f7ab56c06", "message": "Remove mapping mode states\n", "proba": 3.0037365377211245e-06} {"commit": "51b44c20f62df98e1e6345cff7bf573d9fbb5626", "message": "make seed adjustable\n", "proba": 3.072723302466329e-07} {"commit": "c69a0fbca3f983a17c3da22259a65812b0fa6d23", "message": "Prime server for cooking.\n", "proba": 1.429512366257768e-07} {"commit": "b9d04d1c86c8977151adc635f35d883486b12268", "message": "include zope.browserresource\n", "proba": 6.280668003455503e-07} {"commit": "63208cb38e0a7ed57f8f978ec4b4a088b3250d15", "message": "camera settings message refactor\n", "proba": 1.9865854028466856e-06} {"commit": "3d7c25c2462b0c2b6d08fee7e085741fec796f21", "message": "[m_lutz-learning_py-5_ed][ch_24][06] del unnecessary files\n", "proba": 1.3038745692028897e-06} {"commit": "ff54294219d046513b66b511567280e954a52ca1", "message": "reimplement compiler emulation code\n", "proba": 1.3745153637501062e-06} {"commit": "0233efb3bb43b4e24d7d4b12f4282d8f24c06059", "message": "fixing MagicMock with proper set up\n", "proba": 1.5113339202343923e-07} {"commit": "96b88e68325d21601d0f74d2451582a1ad022c52", "message": "Small performance optimization\n\nas suggested by Petr van Blokland, thanks!\n", "proba": 9.743862960931438e-08} {"commit": "92960421bf4b5a9775b89c78d8b9f2143d8438d7", "message": "Expose ContainerRegistry::_findContainers as public method\n", "proba": 8.635562949166342e-07} {"commit": "9b5da0dc2fbabc4b1fef07cf44ae24934428c19d", "message": "Make sure to not match definitions that do not have the specified property\n\nInstead of accepting them as matches.\n", "proba": 1.1130027388617236e-07} {"commit": "d3ccb656df137da04d91c55095a1ce7462b93f25", "message": "Added opaqueId just like vmware does - but hopefully we should generalize this\n", "proba": 1.2760493461883016e-07} {"commit": "af37fd80ac503d442fbfc45303b9cd1a89f03c65", "message": "Temporarily disable instances in xenenttest\n", "proba": 3.314778780350025e-07} {"commit": "9b26ddbb377e694c41b7802d9c90461e2c4ffb32", "message": "BLD: revert the open calender start date back to 1-3-2015\n", "proba": 0.9999955892562866} {"commit": "06d6aea57fe5936db4b25597e975673751efa9de", "message": "Safer checking of value mismatch in config\n", "proba": 2.8237963078936446e-07} {"commit": "b25226ea949d517b9ffe8a572380451bd9b75e79", "message": "beta timeseries for annealing\n", "proba": 1.7302066623869905e-07} {"commit": "00d6c9532d1bd82b0cff7f8deb6f3ea0e7a0d28c", "message": "for test\n", "proba": 2.8300689791649347e-06} {"commit": "b5341179a42106d606978f2a1b96b52e50d9d153", "message": "Fix to #1324 - check added that get_indexer_sweep() is assigned before accessing get_user_lattice() - this will have been not working for a LONG time. Bad bug.", "proba": 1.03606616619345e-07} {"commit": "b6c6418db93cdde47b8617532573cb00d7464136", "message": "Fix a string formatting bug.\n", "proba": 2.955053560071974e-06} {"commit": "ab7fa7d724ffa079685649c9a3fd6d05842e564e", "message": "correct update cache location condition\n", "proba": 3.543161142260942e-07} {"commit": "d159640a4dab0ae1d4b60f636e6982e00cf25745", "message": "commit of earlier bugfix\n", "proba": 1.7536194718559273e-07} {"commit": "464c82754ed947e7f5f4216027f2eb121ddd2e19", "message": "Bug 1231361 - Fix performance artifact ingestion more robustly\n", "proba": 1.2167267016138794e-07} {"commit": "f01d291839ca1859f46aab95c86d763ad833a28b", "message": "Refactor for better readability\n", "proba": 6.995040280344256e-07} {"commit": "b69c8402c7fcb932e920051536c8163aa5353739", "message": "Delivery approval is not reliable enough\n", "proba": 1.2352310818641854e-07} {"commit": "5ba96d50198f269b4856833ab7821ef04a110d43", "message": "Added tests for the QueueBackend.\n", "proba": 1.0818148865610056e-07} {"commit": "ed4c80aa8e9ee628876c3cc96907ca407ee4ff5d", "message": "Handle non-existent files in the database.\n", "proba": 2.3025324935588287e-06} {"commit": "07751c792e16cc832ff7f2b974022f99e1a8f9f5", "message": "refactored and improved url quoting of accented and special characters.\n", "proba": 1.0616153645059967e-07} {"commit": "2c1c19e909f41ab44ef89405de9d516ad997fa99", "message": "Added condition to urllib2.HTTPError\n", "proba": 4.6329921588039724e-07} {"commit": "ebde7a2850ab7795a4b642d99f26d9dd62540ced", "message": "if song is supplied, only download album info from albums having the song.\n", "proba": 1.0178345632994024e-07} {"commit": "08fb6c40c8cefb91663711f8f73ad7ef54383aeb", "message": "Added overwrite option for upload shapefile function\n", "proba": 3.2739927746661124e-07} {"commit": "e77bdbb9be24fa293cc2c45371ca5dfe4872d58b", "message": "Fix gadget variable json\n", "proba": 0.9991084933280945} {"commit": "9d308bd99a6a7766c769f8aaecbd00fa5a40d64b", "message": "undo screenshot rename\n", "proba": 1.3093024335830705e-06} {"commit": "b43d2507c31944df32eca090075bad34660d39c9", "message": "FilterPointCloud, still slow, but a little better\n", "proba": 1.4059962438750517e-07} {"commit": "a9be05a08e536f57893631dea9e702578b523933", "message": "Add dataset method random fs id\n", "proba": 0.00166427216026932} {"commit": "2348ee8c88b16d95512823ef2407714f44fe81e0", "message": "- remove prefix from bundle label\n", "proba": 4.452557220702147e-07} {"commit": "be2d0ea6c022eff8572cf15dafb731c2d6f62af2", "message": "remove duplicate Pattern var\n", "proba": 0.00012219299969729036} {"commit": "ef47908f0d0a122ad601dcac5e54c871a3e67e57", "message": "Use the correct parameters for HTTPHandler\n", "proba": 6.369592301780358e-05} {"commit": "dd1d61c99864979d664e21a1a7dcf11c826beddb", "message": "Fix bug save Vote, User superclass method save\n", "proba": 2.1479705480942357e-07} {"commit": "98d8e57d495430636bf296046bf3794f6431afd7", "message": "ADD support for start command\n\nTODO: to implement stop command i need to retrive aiohttp instanse by\nport\n", "proba": 1.342127973202878e-07} {"commit": "1d6a8516d9f9f227713907f245f67531cf485a1b", "message": "Warn user on version mismatch but parse config using latest version\n", "proba": 1.9526596872765367e-07} {"commit": "0ec4e54eb028ae04445863970ca85494efd93bba", "message": "Added traits to give more control over tick labels on an axis:\n * can rotate\n * can adjust the margins\n * can adjust the distance from the axis\n\nUnfortunately non 90-degree rotations don't position correctly (possibly a problem with the underlying label object).\n", "proba": 1.2721999098630477e-07} {"commit": "9d68e575f6532c6acaa19e7c4c97e8d99f0a59c3", "message": "Improved the attribute check\n", "proba": 9.542828820485738e-07} {"commit": "52a09e3cdb9976088d39eef97bddab8001208a1c", "message": "BDKD-142: Use find_packages() for library.\n", "proba": 1.097761668233943e-07} {"commit": "1ade3544c12dc7faa7f3b34b205781a9d935bc84", "message": "better handling of poorly constructed set commands\n", "proba": 1.4079718312132172e-05} {"commit": "c3d54c8852f94f06c6f6bcb690bf0d44132cb2e6", "message": "Fix module importing\n", "proba": 5.25350401403557e-07} {"commit": "12a14c91dd7ba79e341469f6f87f6e2f5f4b2506", "message": "environment: Implement mfil-based patch chains\n", "proba": 3.3698316315167176e-07} {"commit": "ac981886f542da8e8d2d1028f3d7d88585a4b3cd", "message": "Return an error response code on failed syncs\n", "proba": 3.444164030952379e-05} {"commit": "4236ffb49535297f3d124487e37dd7d28df65aa3", "message": "fixed first run\n\n", "proba": 3.3875664939841954e-07} {"commit": "f8be986f4233d0ec30d1ea81d04971718ebc0405", "message": "Minor fix to allow you to continue to use the \"Model\" class as a ReferenceProperty\nreference_class.\n\n", "proba": 1.0064562161460344e-07} {"commit": "612d8f603beb9b2b4d8201af99aa40e20776b6b3", "message": "new configuration style\n", "proba": 4.5815144744665304e-07} {"commit": "039ad85499edf87a018fa3d4831c66828e19df8e", "message": "Remove the while loop during the app execution since it is now implemented at the superclass\n", "proba": 2.0524539934285713e-07} {"commit": "c83e4f49fbb65aca0cfca955de65b7064c70448d", "message": "FilenameBear: Don't make diff if changes are same\n\nDon't make `Diff()` if the new name and the old name are same.\n\nCloses https://github.com/coala/coala-bears/issues/2578\n", "proba": 1.3527230748877628e-06} {"commit": "913c7b3e3cae6285da793a92b4993ff76676830e", "message": "Sets all fields_accepted to none\n", "proba": 1.6967848068816238e-06} {"commit": "3e1a57da503029533f1597087af7b22400675da4", "message": "added a reverse_geocode function to tools\n", "proba": 6.081131118662597e-07} {"commit": "2b0dded22d2a61bf129eb548b2e11fd7078f7c2b", "message": "enlarge the fields\n", "proba": 0.00011903401900781319} {"commit": "75464607a9ab54f4d138b560fdc63a1ef003ed2c", "message": "automatic listing of data attributes\n", "proba": 3.8029793358873576e-07} {"commit": "4be228653df9028bef4a288148d392d7e9b0448a", "message": "Make build auth work with API versions < 1.19 too\n", "proba": 1.1299403723796786e-07} {"commit": "0f32b21866b788fd2493088edf73a02d59925866", "message": "Removed debug messages from [algorithms.lru]\n", "proba": 1.3789674824238318e-07} {"commit": "5c663b5e33fdc49c524afe492d27cd681af06fa9", "message": "Fixed cloning support on py3.5.\n", "proba": 1.0732692601322924e-07} {"commit": "0edaf13c544f349bb7640af939477287b07b34ca", "message": "Warn about non-stopping thread when stopping pool", "proba": 1.7955663622615248e-07} {"commit": "a7e462cd6491e84b4777fdfa588193ad23e9abeb", "message": "Fixed bug in how styles are grouped to determine cyclic index\n", "proba": 3.007523616815888e-07} {"commit": "d7105c21df2a0414de2dc997a2e326abb042b335", "message": "Fix some indentation\n", "proba": 0.9999885559082031} {"commit": "6a7feebfbc33844b46bcde1ccc1b15e9be769e2e", "message": "testing the stats\n", "proba": 1.1561498922674218e-06} {"commit": "511a2e61a8b1439f4f9e226df2aa1aebe943238c", "message": "gdb: Ignore unversioned-explicit-obsoletes lint warnings in the srpm as well.\n", "proba": 1.0669297267895672e-07} {"commit": "b3a8d764cfb453e8ca8b3a2e90ec94dba6488565", "message": "account_due_list 13.0.2.0.0\n", "proba": 2.3666382276132936e-06} {"commit": "342973d62808c20d327cb888533bed6a10c475de", "message": "Adding cooper config for #27\n", "proba": 1.5332027203385223e-07} {"commit": "035e0cb34b68ffba9197d68c61c65bf7ce502894", "message": "Cover analysis minor update\n", "proba": 1.9626160963071015e-07} {"commit": "d4abbbf4562e0b57c304d9523d06cc138dd2e67c", "message": "PYCBC-1386: OpenSSL not found on M1 macs\n\nMotivation\n==========\nInstalling the Python SDK on M1 macs via the provided universal2 wheel\nshould be able to find the system's OpenSSL version (assuming it\nexists).\n\nModification\n============\nUtilize Python's ability to find OpenSSL by importing the ssl package\nwhen using the SDK.\n\nResults\n=======\nAll tests pass.\n\nChange-Id: Ie96f89185000422de10797aac0983a6894707dde\nReviewed-on: https://review.couchbase.org/c/couchbase-python-client/+/178241\nTested-by: Build Bot <80754af91bfb6d1073585b046fe0a474ce868509@couchbase.com>\nReviewed-by: David Kelly \n", "proba": 0.00667836656793952} {"commit": "657d74472216a02d049d5af162fe79c15d9ec1c0", "message": "Update imports & formatting changes\n", "proba": 1.9861163025325368e-07} {"commit": "ac178569fb343280a32ca2b9a127a62057fc0bd6", "message": "Fix unused keyword argument\n", "proba": 1.4216017007129267e-05} {"commit": "868ad2486cacc238ae0a00b88cd6a95c7bd781e7", "message": "gdb: Allow shared-lib-calls-exit in /usr/lib64/libinproctrace.so.\n", "proba": 1.187685825243534e-07} {"commit": "822d907834aeaaa00ce31eb7fcfa4d2eb1acfd15", "message": "[FIX] invoice_id is not guaranteed to be in analytic line's columns\n\tas it is added in the non-dependency hr_timesheet_invoice\n\n", "proba": 2.0926535171383875e-07} {"commit": "654ecc7519e08f44d5ad553e93ab0797f0a565c3", "message": "Small fix with long pre-ICL1 helix stretch (unlikely to occur)\n", "proba": 1.0597136679280084e-07} {"commit": "76ccd235c7b657a4856b657649e210373c72b2c2", "message": "Remove useless loop and prefer mass updating\n", "proba": 2.0816722212657623e-07} {"commit": "650843e8886205c453399a86a894d175e35a6933", "message": "implemented dropout, changed default hyper parameters, removed fully connected hidden layer, print out the number of parameters\n", "proba": 1.8263436629695207e-07} {"commit": "eccbafe05317565069a52c9741430af62841c3d0", "message": "Implement to_dict via reflection\n", "proba": 7.4260771043555e-07} {"commit": "1f329e4825cc3cb425d32bd59f7c3836fc56b6ab", "message": "Simplify example. Refs #84\n", "proba": 0.9991803765296936} {"commit": "76d8dbe294b60dd41e72dbb6e2a7c651242671da", "message": "bugfix\n", "proba": 8.478961035507382e-07} {"commit": "473db75af1f5751470baa8b4bdec115f4bc88a10", "message": "ZOOKEEPER-2940 introduces an additional response line for the SRVR command, when the node is LEADER. This results in a parsing error, if not handled.\n", "proba": 9.905691911171743e-08} {"commit": "92a864ec038b398be593b6ae908f1b26df1312ce", "message": "limit max task memory to 15G\n", "proba": 0.9993047714233398} {"commit": "2cd21d059f1ca8ddbdf2b6344ae007ac2bb09f83", "message": "remove 'pathlib' from pathlib helpers\n\nThis code will try to use path lib as much as possible but explicitly adding\nthe string 'pathlib' to the functions make the code more confusing.\n", "proba": 1.9960756958425918e-07} {"commit": "733dca2c41a9d4eafe3d13d61f692fcf1e09c0a0", "message": "decided NOT to have separate panels dir (at least for now)\n", "proba": 1.0505748804234827e-07} {"commit": "d0ea427bceda5a627f2f3902aded1c16d0db9955", "message": "another on_delete\n", "proba": 8.411998351220973e-07} {"commit": "5972d54f1d00c163795331d301c59b9324025f60", "message": "Fix python2 compatibility\n", "proba": 0.00030320690711960196} {"commit": "e53618537771d9358ed551cc11dec1ad2b9b8d39", "message": "Unwrap troveinfo correctly (psycopg support)\n", "proba": 1.2401993387811672e-07} {"commit": "27f832316424206fe8ef4c08637cabd52e4e3961", "message": "Remove wip\n\nConflicts:\n\tapps/bluebottle_utils/bb_makemessages.py\n", "proba": 8.161496793945844e-07} {"commit": "7be565e5171a9d61494b5bb2817e7a2012810a2d", "message": "fix changedobject delete\n", "proba": 1.2796824648830807e-06} {"commit": "4ddf3142263ed5d097d3206f546a734a01afad59", "message": "do enironment variable detection for R.\n\nR relies on variables for package locations, try to use these directly\nprior to our own \"guessing\" approach of building up potential R path\nlocations. Some users customize these variables, and we should respect\nthese settings.\n", "proba": 1.0079643431026852e-07} {"commit": "a414044a901fba80d58d3bbd76748df0c1d255db", "message": "Ing tong-an.\n", "proba": 1.0429088206365122e-06} {"commit": "4f09f2e24e418768844cc29a8ec99e3b8eae7b3f", "message": "Shorter log message format\n", "proba": 1.3970304735266836e-06} {"commit": "278e5eb6587b6a0091a8f68a3dbd2482da21a082", "message": "Added comments which outline errors I realized\n", "proba": 1.1931555832234153e-07} {"commit": "fde7d514e61a6358129d2df344f9c5a6eb2831dd", "message": "add sentence vector fn\n", "proba": 0.9999994039535522} {"commit": "a8c4b1adf477beda6c133d7c4feaeccbca0d4aee", "message": "Fix crash when submission page contains non standard characters\n", "proba": 1.4518094531013048e-06} {"commit": "5ba44efb9fac7f5caefe5721dc3f248d81f1c220", "message": "line_agg visual is working\n", "proba": 2.477593170624459e-07} {"commit": "d8cb87d49a2cbce7c4de2ff138ff9bfa1ceec58b", "message": "Staging need a little more flexibil settings\n", "proba": 2.0726470495446847e-07} {"commit": "d9b14a4f470e80843679fe13932e4efd95f3ecef", "message": "Put back correct name of process_outbound config parameter.\n", "proba": 1.3475865046075342e-07} {"commit": "890bbbc9efdf85b64605658ade5513d3b1b368d9", "message": "costmetic changes\n", "proba": 3.612688885823445e-07} {"commit": "45ddea1c9cd8f014a8656fe427386e5de6a9cdf4", "message": "disable package parallelism on arm build (#38)\n\n* disable package parallelism on arm build\r\n\r\n* send emails to ros2_build_farm mailing list (#29)\r\n\r\n* Install tf2_msgs for ROS 1 bridge (#39)\r\n\r\n* Clarify CI_BRANCH_TO_TEST only impacts repos in .repos file (#41)\r\n\r\n* remove duplicated eigen and tinyxml dependencies (#42)\r\n\r\n* don't retest-until-pass on nightly aarch64\r\n\r\n* disable package parallelism on arm build\r\n\r\n* don't retest-until-pass on nightly aarch64\r\n\r\n* rebase to master and remove retest-until-pass\r\n", "proba": 9.114397698795074e-07} {"commit": "846f5f4976ac8c48caeab0f8f0a9ad2933af91fe", "message": "retira a analise dos arquivos GeoPB\n\nA parte inicial do script analisa todos os arquivos disponiveis para download. Depois inseriram o GeoPB, mas o TCE n\u00e3o informa detalhes sobre o arquivo, como faz com os outros. Isso gera erro na parte inicial do script porque o ele n\u00e3o anotou os detalhes do arquivo mas tenta inserir no dicion\u00e1rio, mas o arquivo n\u00e3o est\u00e1 na lista, gerando um list index error. Como o GeoPB n\u00e3o me interessa, simplesmente quebro a itera\u00e7\u00e3o depois que os demais arquivos foram processados.", "proba": 2.078083070955472e-06} {"commit": "8d0db1b4eb6ec0f8d76297f3ce1f3d29b3800b66", "message": "Remove 'i' where it shouldn't be.\n", "proba": 0.0003044727782253176} {"commit": "96025abd2080ed58ecf4161c04a8ad72b78875e9", "message": "add logging to github provider\n", "proba": 4.872027830060688e-07} {"commit": "fadd3664b321d2c25cb833085a418def90a6cd67", "message": "Add docstrings.\n", "proba": 4.574930301259883e-07} {"commit": "ca0fd0239fddf9227de7e428278f6d6831ea4d63", "message": "Don't edit style when splitting boxes\n\nFix #943.\n", "proba": 1.0287095619787578e-07} {"commit": "0b020d023df03e17424f37a0363e4a5f6387dddf", "message": "Added try catch to avoid problem with deleted entities\n", "proba": 2.1972417130200483e-07} {"commit": "543cdee66fad8b8609329f5ac1b76a7a61e43a98", "message": "Initial attempt at split functionality, commiting so I can rebase and test.\n", "proba": 1.0254830584699448e-07} {"commit": "ab477edc93a79131de87535a03395267727ec09a", "message": "Humanize\n", "proba": 0.00011647678911685944} {"commit": "8fc0cef6111bdcad5964f7213a66fbf232f2baf0", "message": "ARM: Fix one of the timers used in the VExpress EMM platform.\n", "proba": 1.025316791469777e-07} {"commit": "cd8f7977df892cfb5599b36669b514dbec80603a", "message": "added default none to data and pointers\n", "proba": 1.7992569212310627e-07} {"commit": "dad68f72c109b4c1d7f9f3fc86b7307ab842d9b2", "message": "another small fix\n", "proba": 1.9429722897257307e-07} {"commit": "c5ecf272985375005f9f0f422a0bed9b0e938f80", "message": "need to fix slow\n", "proba": 0.0024616741575300694} {"commit": "c00a4c8d495c0e3987ab0c4a170c8a53da725e7a", "message": "Using Face and images in BGD Fitter\n\nUsing Face instead of coefficients\nRequesting images instead of normals\nAdded derivatives helping method\nAdded fitting for light\n", "proba": 1.1623215812051058e-07} {"commit": "26e2d7c38eea7f1058ad489fed96a6232821dc2e", "message": "On branch master\n", "proba": 6.564336558767536e-07} {"commit": "1a0a83c3491991d4513041443fa12a16f674030c", "message": "Fix identation issues in attribute query code\n", "proba": 1.3049671906628646e-05} {"commit": "1201692f56d9615f690f61aa58e6001b60f549e4", "message": "Fixed weird test failure\n\nfails only on my machine. Seems like because of my localy installed packages\n", "proba": 1.1774175590062441e-07} {"commit": "f8a6b60dc01b6dd82917db041d0bf0bed5877b9b", "message": "fixed bugs in query-stats.py\n", "proba": 5.293990739119181e-07} {"commit": "7357348d91dde027ee5fea959f31059b69178596", "message": "jax.masking is being deprecated and will be removed soon\n\nPiperOrigin-RevId: 462278444\n", "proba": 1.2138188765220548e-07} {"commit": "88bc61b7397e056ee888aa80dc48475495a6cde5", "message": "linappleGenerator.py: don't symlink but copy, inform upgrade is ok", "proba": 2.6002570052696683e-07} {"commit": "c8cda426be9d0b3a5d9b7996696fb29330e694fe", "message": "Fix crossed wires between user and usergroup\n\nThe requests were not being routed correctly\n", "proba": 9.518883416603785e-06} {"commit": "178fc4f474355a783766f2be5b12548423565e6c", "message": "small bugfix in verify.py\n", "proba": 2.942214791801234e-07} {"commit": "6ac3171d79fff8fcac5d244edada1b46f728e343", "message": "Add assert_metrics_using_metadata to template (#7081)\n\n", "proba": 1.1869928329133472e-07} {"commit": "6ce86828fe23ad5fdb72115d3bdaeff1d3622a25", "message": "fix coverage I broke\n", "proba": 4.105849029656383e-07} {"commit": "63a7ce866b11b17e764164fbc7a2476dca2d751f", "message": "fix EventIcsView\n", "proba": 3.741299678949872e-07} {"commit": "acaf7d5884bd56e699fadaf52a3589478ca415a6", "message": "Remove debug logging\n", "proba": 2.0590191525116097e-06} {"commit": "18f3b21b3aed4fb572019a3093a6b6b7d49d738e", "message": "Adding tests using phase for folding", "proba": 2.4777918383733777e-07} {"commit": "a96002300328ffa4b9c47fdc15af985da0d46f60", "message": "bump to version 0.0.2\n", "proba": 4.339437111866573e-07} {"commit": "934640e4d6d2b54aa4e07b20fb1f6ed5c9959c69", "message": "version bump\n", "proba": 7.394332897092681e-07} {"commit": "672bf403efd0144c9c730f23d041ae7c86532f61", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "c436b26034218f1f6ff8876b46c05f53fa6bcd38", "message": "remove attribute that is no longer used anywhere\n", "proba": 1.646988181391862e-07} {"commit": "b344f4a174a88e996d466f152a9b4763fde39107", "message": "Allow tags del, strike and s in version description.\n", "proba": 1.0500339442387485e-07} {"commit": "124bb2148dbd76e7e142b6f6d55a5f61f288eea1", "message": "parallelize contiguous regions script\n", "proba": 6.235648015717743e-06} {"commit": "dc887714667e65f50e86099496a0bdb29e5bad6d", "message": "fix a file naming error due to the recent file name change of induced sampling\n", "proba": 4.636934818336158e-07} {"commit": "13740c00ad0aaa53abcb70ae443cd0ac9e0fc9f8", "message": "Reset countdown on interaction\n", "proba": 1.2427880164977978e-06} {"commit": "8c4f7194a8fe569e583b4d6251deb40d09e3d30c", "message": "Add proper PVSCSI controller/disks create() automation (#580)\n\n* With this fix, more than one PVSCSI controller can be created if needed.\r\nIt can also find available disk slots on other PVSCSI controllers (not only\r\nthe first one) if needed.\r\n\r\n* Refactor the code, address the comments from Govindan.\r\n\r\n* Address Govindan's comment to reword the error message.\r\n\r\n* Address comments from Mark and Prashant.\r\n\r\n* Reword the error message.\r\n", "proba": 1.2130504956076038e-07} {"commit": "405516d5304a1dc2d814f5101c55211c4850e2b5", "message": "Cherry-pick EvMenu list_node decorator from olc branch\n", "proba": 2.896069872804219e-07} {"commit": "9d177ce5771b43d3021c49950cc561db34ceaf42", "message": "Prevent overwriting user edited fields with older data from importer\n", "proba": 2.413349875496351e-07} {"commit": "92799cef8c4abfbcdaa912d71cb3a4bcd9ca6eca", "message": "route added to seperate image editing and selecting\n", "proba": 1.4161102512844082e-07} {"commit": "5d9d92813a1bd486d14841bd55a930cfb55d89ed", "message": "djkombu is required\n", "proba": 2.222915463789832e-05} {"commit": "c9e510dc18a04a67c7acd9229a6d181c1f9efdc9", "message": "changed to using the most complete web page download instead of the median time per object\n", "proba": 2.5398793468411895e-07} {"commit": "e84ae800b6a3a815f208fd4f51dfaec13bcd925f", "message": "turn off nat_net when use_vtn is True\n", "proba": 0.9999988079071045} {"commit": "747c5293e97d066c6928b8e9c73ee38aa1256b6f", "message": "Use & not | (or)\n", "proba": 1.3129030662639707e-07} {"commit": "49ace718b8bb8c3886b117cc2201b01398557700", "message": "Fix compatibility with Youtube shorts\n", "proba": 3.8363060639312607e-07} {"commit": "ce414b2a36d1458f2ead4623179860d7ec514f0a", "message": "rename and add comment\n", "proba": 1.9249162619416893e-07} {"commit": "812f5a416be665b0d702a6728082c58bfc940d43", "message": "remove unused import\n", "proba": 7.364135399257066e-07} {"commit": "112ecefbddc5ad5a513846c4053b8776c689fb6b", "message": "Queries to human are now defined as a list of Sentece class. A flag indicates if the human answer should be merged with the previous sentence or not.\n\nNew output for exceptions:\n- [FAILURE, list of sentences]: new info is required. Do no consider previous sentence in dialog.\n- [SUCCESS, list of sentences]: human should provide additional info to be merged with previous dialog.\n", "proba": 5.9105248510604724e-05} {"commit": "171935877cf282a80fcd83029814e4dfca8ee704", "message": "fix more broken test\n", "proba": 1.7297728845733218e-05} {"commit": "431c683343b6e11237c86307cbbeb2f6b5c1963b", "message": "removes obsolete dqn_phi file\n", "proba": 1.2537254860944813e-06} {"commit": "4d3a5b40ceb69ed8138c1771596d7e0ce16383e7", "message": "chmod example usage\n", "proba": 3.279899374319939e-07} {"commit": "e03c9468c1089eee38d246ae363575d908e7d85c", "message": "add if __name__ == '__main__': & renamed function\n", "proba": 0.00031933782156556845} {"commit": "491c7a8f5d901938587ed49a3b8cf5e8e6ddd846", "message": "example to test\n", "proba": 2.0735367911584035e-07} {"commit": "2d7ae11d1b52dd96f46d63bb97acbb3ac1a34431", "message": "make custom type validation a bit more difficult\n", "proba": 2.7348141884431243e-07} {"commit": "7b7d31a0c21c59675395724112dd9c1463d620cf", "message": "Added missing ForeignKey to floor\n", "proba": 1.838092629213861e-07} {"commit": "4a7fa126eb66bce2db4876027f60dca489dddfae", "message": "Add final exitcode\n", "proba": 0.0006261843955144286} {"commit": "d560df70c05c59b94b05af119d639de7b4b34758", "message": "more integration tests\n", "proba": 1.5206212822249654e-07} {"commit": "873e6eee18f904fd8e0199def83473c974c57f8c", "message": "Only save images if desired\n\nSometimes we only want the log files. Only saving the images on demand\nmakes the script run a bit quicker\n", "proba": 1.44416731018282e-07} {"commit": "f837fa87550642e7166e86027ab2fb3e910ab29c", "message": "Make ClientInfo attributes publicly accessible\n", "proba": 2.719401948070299e-07} {"commit": "329eae33e1aed652878b23219328c19164ac7b41", "message": "Update Admin.py", "proba": 6.855074730083288e-07} {"commit": "be6e635b0f98186e5d2424d15c02c827468673cc", "message": "Added holy to appease the Batman", "proba": 1.2106477242923575e-07} {"commit": "21add4a9aef78d7e340ad68d24d30e417ba16e48", "message": "Made minor changes to comment verbiage and cleaned up the OT multiplier console print message.\n", "proba": 9.846279880321163e-08} {"commit": "3e1b1c6769d4570a4aae9b57293d6cff1a2b6ee0", "message": "Release v0.1.22\n", "proba": 2.570492654285772e-07} {"commit": "33ff1a62fc6d287a132cd903d7330e863dfe9405", "message": "Made small correction.\n", "proba": 1.5983097512162203e-07} {"commit": "5babe4c862a543010392543be03d98540f91bc7a", "message": "Fix file name\n", "proba": 3.388807090232149e-05} {"commit": "ae46c7e1b88bdb3faaa6ea031438d4ed362659d7", "message": "Fixed encoding\n", "proba": 2.3624957066203933e-06} {"commit": "8481837a00db1b3c01557740082f91e9e9e3a2dd", "message": "Added vertices field and getter for to make testing make sense\n", "proba": 1.777057576646257e-07} {"commit": "7a600dc2b6cfaa26a8e46e0c2d8434d9e76a98a8", "message": "fcache: log exception on fsync\n", "proba": 8.059876108745812e-07} {"commit": "0b77f4571d227b99d731272e2dd651471594aaab", "message": "fix script\n", "proba": 1.3241209444458946e-06} {"commit": "cfa04ba569b538a76eafa87f66932b23f10790f0", "message": "Fix for translation.\n\nFix: \"Variable has same name as a hierarchical Signal\".\n", "proba": 1.4825431549070345e-07} {"commit": "46851c57e2c449f1313b4007c92ba90044a79c19", "message": "Output symbols of the string in reverse mode through one\n", "proba": 0.019984949380159378} {"commit": "a20bbbbe37238fe67e10655b491760434a109cf7", "message": "Fix stall condition.\n\nStall on Mem read operation, not on write operation.\n", "proba": 1.208630067139893e-07} {"commit": "a2731a3e9e331aa712544bd4c7e1938b8f46bf0d", "message": "Remove redundant float conversions since we use __future__.division now\n", "proba": 7.86670898378361e-06} {"commit": "ea4209668f384a68725dfb0ec1d356d8ec477a7c", "message": "Logging paths\n", "proba": 1.0467001629876904e-06} {"commit": "5728c5ee41c52622ea140e59e2f99e2df9908d01", "message": "for choosing insertion point, iterate over the cards from top to bottom\n\nThis means the cursor collides with frontmost cards first, which is what you'd expect.\n", "proba": 1.2768587964728795e-07} {"commit": "7e31c179d815b81ae784666d44e4f2843fe12b80", "message": "20100510\n", "proba": 1.3049493645667098e-06} {"commit": "b99270aca995cf22b99ffd36c3af0abc833b7a6d", "message": "Fixed an error in calculating positioning values when the destination image is smaller than the watermark (GC #1)\n", "proba": 1.2361479662104102e-07} {"commit": "5561153ab03db2f924ad6391d0a8e4699995606b", "message": "Census tables used in ECD\n", "proba": 1.96059929180592e-07} {"commit": "2752aee443a52ab0caaa7fa92f0aa979ce96fda8", "message": "CLN: clean up tseries/tests/test_plotting.py\n", "proba": 3.4925636782645597e-07} {"commit": "4ef96614d6ee12dff3a6baa61e52ea31dcf16172", "message": "pep8 again\n", "proba": 2.4653746777403285e-07} {"commit": "224808d4819df30c52d5890f12f74cb26f2d4cb3", "message": "wdbc/gui: Add the ability to load a file from the environment rather than directly\n", "proba": 2.431204393360531e-07} {"commit": "9c16ce39a188e24f08b43f71cd94764119e18ea4", "message": "Media: also support description through updatetags\n", "proba": 1.2563187112846208e-07} {"commit": "a1f99b24fb48fe2f8810cfe2b0726a68f13890e3", "message": "Speed up NCMC switching by using loop inside CustomIntegrator\n", "proba": 1.646348977146772e-07} {"commit": "a71065a961b4bfce7171f25a9495a60ead052bb2", "message": "From merge\n", "proba": 1.6625463103991933e-05} {"commit": "5afe1e61fc8b10830dbac78bff34c5fd7c88b6c4", "message": "fix bugs when porting to python 3 from 2\n", "proba": 1.8499682482797652e-05} {"commit": "e230e807da4d58b261437a4c24091e7779e13709", "message": "Treat gnome-shell selection changes like focus changes for script activation\n", "proba": 2.330855295440415e-07} {"commit": "07bc4122b6ed4b67533a22fe274e19216db21f8e", "message": "Updated tracker tags to work with changes to tag api\n", "proba": 1.5686278231896722e-07} {"commit": "0433ea7769199bcf1fa3a38a8bf384e5e13c2c7e", "message": "Warning in code. qtconsole ssh -X\n\nPut warning in code not to remove an action needed when ssh -X.\n\n\"All magics...\" menu should be autopopulated at startup, but is not\nwhen X forwarding, Warn in code that inserting 'update all magic menu'\naction in this same menu is not as useless as it may seem\n", "proba": 3.999036835011793e-06} {"commit": "6c2a0b2de2f7c04324eb7f310326877024937d34", "message": "unicode!\n", "proba": 4.067152985953726e-06} {"commit": "24d102a7e0b94a68dcdc1ae01cede26c07cdb7b5", "message": "command function rename\n", "proba": 3.398697299417108e-05} {"commit": "c52f4b073f156ba4fa3730284d8756db74c3b74e", "message": "Patch toujours incomplet\n", "proba": 3.3936260024347575e-07} {"commit": "d8dc99ef97ae25905500a291e9693abfd46b72a4", "message": "corrected some comments\n", "proba": 5.42680481885327e-07} {"commit": "ac2c8e9351a91f9e0f13d4acdc812d6fef34fb43", "message": "update babel, switch to pip\n", "proba": 2.398481910859118e-07} {"commit": "a165d8f532c3887989a32e6076c07d88fa487780", "message": "add --no-cache-dir when installing pyquickhelper for Python 2\n", "proba": 4.165979134995723e-07} {"commit": "da7631d73f1948f6ecef8072965c0e41e7bc3a16", "message": "Fix UBSAN non-security crash type list (#1854)\n\nThe UBSAN_CRASH_TYPES_NON_SECURITY and UBSAN_CRASH_TYPES_SECURITY\r\nlists of crash_analyzer have overlapping elements. Since during\r\nthe analyzis, crash_type is compared to the security list first,\r\nthe common elements can be removed from the non-security list.\r\n\r\nCo-authored-by: Renata Hodovan <4ccd850a0e54200fd38aeee9e8868ceda939fd89@gmail.com>", "proba": 2.9240958610898815e-05} {"commit": "8fe6e58979f1a0f27862b96129ac145d8eb7cfbf", "message": "Fixed import error on Windows.", "proba": 1.1897967056029302e-07} {"commit": "c396595da2fac4bb8be7dcdbbcd7a4860c42d40c", "message": "Fix missed var name refactor.\n", "proba": 1.2362303891677584e-07} {"commit": "f69d0b74a949b1d9e3f09e797a8b610aac2bd981", "message": "fix renaming scalar in settings table not updating tree\n", "proba": 7.187497317318048e-07} {"commit": "34482b43b87ba8a2e0fa21c3c2b40ed287a80659", "message": "Add loca to opentype.py spec\n", "proba": 7.027054493846663e-07} {"commit": "9aa67bbe126cb090591f9747f7b3c639fc01a9d9", "message": "no on second thought let's not try multiprocessing just yet\n", "proba": 2.3063554976943124e-07} {"commit": "802898ed9bd4d2eabd43ec918c5d217ed9aea2bc", "message": "Fix from SF patch 565085: copy._reduction doesn't __setstate__.\nStraightforward fix. Will backport to 2.2. If there's ever a new 2.1\nrelease, this could be backported there too (since it's an issue with\nanything that's got both a __reduce__ and a __setstate__).\n", "proba": 1.4974146722579462e-07} {"commit": "11180ed47bbf2fcbadafcb2b05cae78165fa0165", "message": "Use __dict__.update(state) instead of for loop over state.items() and\ncall to setattr(). This changes semantics, following the change\nalready implemented in pickle.\n\nAlso reindented a few lines properly.\n", "proba": 1.1953730449931754e-07} {"commit": "dc7bad0c84a807527e849233dc8ca4d1eb1f1d2b", "message": "Assign ist_id to name if name is undefined\n", "proba": 0.0014771950663998723} {"commit": "8d52430d7bc1eab55434b32b92d7367ca018c70a", "message": "- Can now run script without calling python.\n- Initial stub of help for when script is run without parameters\n", "proba": 5.056665486335987e-07} {"commit": "8a96da37f9b2c2dda204d83411e8d1dd70af051d", "message": "added classes card, deck and hand\n", "proba": 1.8067952112232888e-07} {"commit": "17d85bb1a36504c9f32d65670fc76e0d9b096caf", "message": "Seems I've found a way to fix this.\n", "proba": 8.346822255589359e-07} {"commit": "1da63721dde060ade9b951ba6cae7d48e9fe5d6a", "message": "Check for atleast one child component\n", "proba": 1.3885401983770862e-07} {"commit": "4327c9208652a1407902dbb781a8e00d2c4d2c54", "message": "Update PoCFlask.py\n\nArreglo tab", "proba": 2.807427392781392e-07} {"commit": "0af650959b291b0fa20370e191e1f7b15ccbfb4d", "message": "Patch #443899: Check modes on files before performing operations.\nUse IOErrors where file objects use them.\n", "proba": 1.0557634766428237e-07} {"commit": "cd9b13f032a3395cc7db12a4de7b62e0c0f0bcb0", "message": "clients apparently like to disappear from their storage without telling me. added an exception handler to take care of missing clients. I'm probably just doin' it wrong.\n", "proba": 1.260337683106627e-07} {"commit": "e9d3b9f36c5c6949cb7303064fc6c7f10e832e4c", "message": "Add the option to pass an open file object to GzipFile. This obviates\nthe need for the StringIO subclass.\n", "proba": 1.3095093720494333e-07} {"commit": "a8e2dc228a905ab73b64edc59587afe4b1d73a28", "message": "add FORCEJOINBATTLE docstring\n", "proba": 0.9999326467514038} {"commit": "88135ef0a4a6b04d05b9e8524767b2f487a3c493", "message": "duplicate filters check\n", "proba": 4.286497130578937e-07} {"commit": "6b2901b610f5d72d9be86d77f868f85d64b751e7", "message": "maybe working? commented inserttoquad because it was the cause of the recursion problem\n", "proba": 1.3370832903092378e-06} {"commit": "8a157fbae6e75f43b5ae8dee28c99ca861ea26e4", "message": "Added filter for all supported microscopy file formats.\n", "proba": 1.037656218727534e-07} {"commit": "0d598f2789afcd10cb563118408377ee59cfd3b5", "message": "Small PEP8 improvements in PBassign\n", "proba": 1.315072211127699e-07} {"commit": "dd7f706d7649cd9ec0fab2940e14a9e8b0bac9e7", "message": "fix REMOVESCRIPTTAGS (thanks bibim)\n", "proba": 1.175863388880316e-07} {"commit": "654bc8809eed4c708a7b9cbd543776f43b5e865a", "message": "sin errores\n", "proba": 2.6469467684364645e-06} {"commit": "b874152fffb712830056c8f81f2477d2f0d9ab7e", "message": "using filtering prior to starting plotting - function\n", "proba": 1.1856646153773909e-07} {"commit": "5940d05d0573f307e00b3933c377cb2adcfe3d52", "message": "restoring missing scripts\n", "proba": 6.192434739205055e-06} {"commit": "671eb66785274e94d2fd5cda4d90fc6a998edd88", "message": "duplicate filters check\n", "proba": 4.286497130578937e-07} {"commit": "54ff287dfe4fe2e5b385d1fc5559531fa139738d", "message": "changes to fit with new API of FRED2\n", "proba": 1.500687147881763e-07} {"commit": "bd02b24bb58281b9945f687a3b07ee58f53156e4", "message": "Change PWM again\n", "proba": 2.0685121171482024e-07} {"commit": "a3fd2155af5126c862ab08ac654af6e53c0a9b6e", "message": "Remove use of the unsafe preexec_fn and use the recommended start_new_session=True instead\n", "proba": 2.3466979826025636e-07} {"commit": "a1c3a3a81121fcbbc828f3cc386379ad0b94d5c0", "message": "Apply the same change to classes without an __getinitargs__() method\nas in pickle: the new instance is created without calling __init__().\n", "proba": 2.6897737370745745e-06} {"commit": "e9b2784024e865ecd0fcdc4d6f6816f9992c19b0", "message": "Make pack module more robust and easier to use\n", "proba": 2.788796109598479e-07} {"commit": "1bf2f85be2dacf081637fed3a40a534931936332", "message": "fixing version\n", "proba": 4.6226205085986294e-07} {"commit": "09545681d1cbd3fbe017cb70680e9680c4af3b6f", "message": "Add a better regex that can get a series, volume and chapter out in one go\n", "proba": 0.0004641296691261232} {"commit": "8625c517ea0c6ae673ae0eda3e8195cb9b7235f0", "message": "Fixed leastsq jacobian argument name.\n", "proba": 1.6300325000884186e-07} {"commit": "63798c74befc2b84db3586dc461660e37ba39522", "message": "fixes for googlecode_upload task, and for using just .zip files for sdists", "proba": 1.5493093030727323e-07} {"commit": "ce287dc4b792fffc34a319f2e4bf257fa8301893", "message": "Rewrite lines longer than 80 characters\n", "proba": 0.0019435328431427479} {"commit": "118536bc62905856e71bbb431e64a5b82d41cc43", "message": "nop sled length augmentation", "proba": 5.104511728859507e-07} {"commit": "f6fca62923b5df1486047fbac851056a2e1dd1d6", "message": "fixed another bug when removing users from channel\n", "proba": 2.623992259032093e-07} {"commit": "cb048fe3c8be564c02dc32205c6736651629d374", "message": "copying to isolate changes\n", "proba": 3.981582779033488e-07} {"commit": "8876ed45ede95e99a0598d0175aa5af10f44f92d", "message": "Another Identation typo in MoransV1, removed stuff I put in for testing purposes\n", "proba": 1.0285545926080886e-07} {"commit": "e6711b7d95a46b63a70a2aa42d7feb1c4fda8ea0", "message": "new Wikidata properties Math and ExternalID implemented, handling of several same property refs or qualifiers implemented\n", "proba": 1.1388731735451074e-07} {"commit": "c4e677d57f6f6f3591b0563779e06e61c2e41ae7", "message": "add microseconds and context for return\n", "proba": 0.018611324951052666} {"commit": "8db7c79480491591d5d8611fc72ad5c1d5676409", "message": "enabled retrieval of item metadata, cleanup\n", "proba": 1.4448863794314093e-07} {"commit": "b29ff7b2d107d662efed378c924a6053d99ab838", "message": "Pipeline.py - changed default tmp location\n", "proba": 2.0354447372028517e-07} {"commit": "3d19085e9e483b4812269036ac9ca063296056ae", "message": "update dictionary", "proba": 7.439907108164334e-07} {"commit": "184aa66eef5b85328cf077301d0df6dd29414ba2", "message": "Fix MT_label__ missing\n", "proba": 0.9999643564224243} {"commit": "a072c4c4d7542d1b0d1e4745743ea38dce8b3611", "message": "removed redundent code from PBB_Core\n", "proba": 1.891949210630628e-07} {"commit": "9a03cafbe7765a253f71a388960d6fb0f70df0cc", "message": "cleaned up debug()\n", "proba": 4.281018561869132e-07} {"commit": "9137666f5a7da99281c120fa9bc17803488c46e0", "message": "reference creation completed, write function final draft\n", "proba": 1.3297086809416214e-07} {"commit": "204f4d106d4f9779943c77f1eb1a15d9ef52a8b6", "message": "Same stupid mistake elsewhere\n", "proba": 6.339231504171039e-07} {"commit": "71203b540be1fe38802a954cb8be66c86201b1b8", "message": "removed plot generation from pipelign\n", "proba": 3.1520050924882526e-07} {"commit": "09f50523098b7692f1c7bb6af6d7fb653351c1d3", "message": "Updated the values now it works", "proba": 2.232071096841537e-07} {"commit": "7b9294d406ca510c8a574c785128193898bb1d57", "message": "Improve support for keys\n\nKeylogging function is much improved after switching to the official pyhook binaries.", "proba": 1.0426935403984317e-07} {"commit": "bb68fbcc2f0721c5d7550b4956454fcc51be0329", "message": "another sayhooks fix\n", "proba": 1.7003829100303847e-07} {"commit": "db7aa2a0452f035ed2c863a0290dd87baa556441", "message": "Add FixAttribution setting to match MailWrap\n\nThe MailWrap plugin includes a user default to toggle whether the\n'On DATE, at TIME, ' prefix is stripped from attribution lines. Allow\nthe same configuration in MailFlow using:\n\n defaults write com.apple.mail MailFlow -dict-add FixAttribution -bool false\n defaults write com.apple.mail MailFlow -dict-add FixAttribution -bool true\n\nThe default is on.\n\nSigned-off-by: Paul Mather \nSigned-off-by: Chris Webb <711c73f64afdce07b7e38039a96d2224209e9a6c@arachsys.com>\n", "proba": 0.0003924226330127567} {"commit": "bc4cfa76f59be13ad1ae51a3900592ab96a27f2e", "message": "Color order corrected for LedStrip.py\n", "proba": 1.8347738262036728e-07} {"commit": "ff759f41363510a68a7ef627c343bd4e799d3e1e", "message": "Make read() and readlines() conform more to the file object interface:\nthe default arg for read() is -1, not None, and readlines() has an\noptional argument (which for now is ignored).\n", "proba": 1.4806836645675503e-07} {"commit": "86cbc3f139cb29cb75f0e36384cbe6f4362a3dc7", "message": "Relocating file to Lib/lib-old.\n", "proba": 1.2018463735330442e-07} {"commit": "b4ad7ab127892b8cfdcec7589bc16546d7374ae7", "message": "false -> False\n", "proba": 0.9998949766159058} {"commit": "3bb85d351ac08e3f1bdc084ce888b20df3cab1b7", "message": "New additions to the DiseaseOntology Class\n", "proba": 1.2433434903869056e-07} {"commit": "35e2dd224856e749cc125d73452d96a3d96cfd4e", "message": "MoransV1.py - inconsistent naming of min_gid_dict\n", "proba": 1.8193587436599046e-07} {"commit": "f3a947b7151065705c07161689ee1f8b2715c708", "message": "modified date consistency checks\n", "proba": 3.3864972692754236e-07} {"commit": "ed8db60508ade1c75109a15b454dfc794a20ee9e", "message": "updating NX01_psr.py to collect pulsar position even if not fitted for\n", "proba": 1.2076853295184264e-07} {"commit": "d62af92b0a296ad8ce40ee676eadc4e58327b5e8", "message": "Comments\n", "proba": 4.2012280232484045e-07} {"commit": "d6d2db0510de5ceadcaaaa59bde4678ef592ecb3", "message": "fix channel.banUser\n", "proba": 1.3406546486294246e-06} {"commit": "bc34329be6b97c07dd035b0f89a44957b5445ec0", "message": "Adds WMI.py\n", "proba": 1.7111728993768338e-06} {"commit": "83b16509344f56b9b1f0a621a06e3199f689c69f", "message": "Minor text cleanup in PyRamify\n", "proba": 3.1559574154016445e-07} {"commit": "a747ef98c480e87590e84500e8b4bba536f23d1a", "message": "more detail added to error messages", "proba": 1.2788586900569499e-07} {"commit": "28c44888d807eafdfd2ac6dd20c21281414a8262", "message": "Sudoku vrne nepoenostavljeno formulo.\n", "proba": 3.000238564254687e-07} {"commit": "8884b29c48ee4a98bd8df536bd28b2cf18ec0e15", "message": "Attempt to fix #4\n", "proba": 6.296336505329236e-05} {"commit": "d938efa906e7859f299bf1363b3d290b3078062c", "message": "presentation preset\n", "proba": 1.092839283955982e-06} {"commit": "b2065fdd528cf377b6246d5182efa75a978a432d", "message": "fix title bug\n", "proba": 6.185100573929958e-07} {"commit": "96db034c362901f197b1e2e23c4d4f28c48af505", "message": "Options for --maxiterate\n", "proba": 5.700362066818343e-07} {"commit": "8daf135ce1b62fa999c4058600a1454654f78dd8", "message": "changed program to class justices and append to lists\n", "proba": 2.451803595704405e-07} {"commit": "ad0fbdf88b5e12bde6b78371393a93f4e1327012", "message": "better\n", "proba": 2.1567779185716063e-05} {"commit": "e2b2793201a9a8900d1373cc07007208abdfe55b", "message": "Routine and decorator to run an MPI task on a single node and optionally broadcast the return value\n", "proba": 1.7799206375457288e-07} {"commit": "59df9fda0ffe1c3945c8fadb63f50db8e3609b00", "message": "skip arguments for known options (best effort) when searching for commands\n", "proba": 2.806469012739399e-07} {"commit": "ef77fe51b4856205b3cf2780833e119ce5cc13d1", "message": "Register routing in init file\n", "proba": 4.4038824853487313e-07} {"commit": "d7a9e1f476c6270c4dbc47a8a7104070ed825719", "message": "wdbc: Read DBC until there are no rows left, rather than relying on stringblock size. TODO: Check both\n", "proba": 3.1419961032952415e-07} {"commit": "2122c19d669890a87737601d0cd5f92877606f56", "message": "Docstring and comment changes.\n\n\ngit-svn-id: a9b3423f80f97d8686891a9c593c60a3eca95014@107 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 3.698152067954652e-05} {"commit": "c8b9f685e864bd2e12e531fd8235c87c9de1142e", "message": "add path property, need to svg export\n", "proba": 2.408893635674758e-07} {"commit": "80a76bc33406431a56c43d6ae89f3b24e72c155c", "message": "Small change in use of namemappings in copy: Several new keys can now get their values from a single existing key: new1='repeated', new2='repeated'", "proba": 3.279245720477775e-05} {"commit": "c0794a72d2ad466d79314f2fa6549fde14d92890", "message": "Remove extraneous init.\n", "proba": 0.00017058479716069996} {"commit": "158c0ba9958b1cb248fc67b442859e77cbc33f4e", "message": "Element names start in lower case, tab coloring debug\n", "proba": 6.476024736912223e-06} {"commit": "e5e6161772c57484960ab319e0e1132e428d187d", "message": "fixed README heading\n", "proba": 2.1508793679458904e-07} {"commit": "aa564d3ac8edbc1b7cb3c8832f5cc9a09a28f5c8", "message": "Moved around some of the logging.\n", "proba": 1.1814003642030002e-07} {"commit": "11510515a1fc8aca4997218353f4b573a812fb6c", "message": "add comments about chaning the ownership of .retriever directories\n", "proba": 1.3950945287888317e-07} {"commit": "e7cc03bf1da67e855bed7ac89acb895a51bfeb9a", "message": "bump to 2.7.2 final\n", "proba": 6.765733360225568e-06} {"commit": "9ba0a9607023605f790c0214b92bfe1d54edf857", "message": "Updated to use the new Metadata API.\nThe long awaited Metadata API means that a separate bookmarks file is no longer needed. The bookmarks are now saved to the database\n", "proba": 1.5504710404457e-07} {"commit": "4b2a001255107048e4117ac88b0a3d1aa371fd47", "message": "Bumped version to 0.8.1.\n", "proba": 1.2536736448964803e-07} {"commit": "7cfecc9adb1e7605f06b26b40f8cdefc9eec6070", "message": "added data attribute to pyggplot.Plot.add_scatter\n", "proba": 5.977364594400569e-07} {"commit": "fab2086fd5b54d11d5be847e6404055760962d8d", "message": "Remove unused __init__.py\n", "proba": 0.0003525056235957891} {"commit": "04bc6b2aaa97ab741b391aac5493b0ac5fcc5c74", "message": "docstring and images added\n", "proba": 1.3355192152175732e-07} {"commit": "f2e51f696360589bc7e55b5977fd22b08697b914", "message": "First pass of XML parser etc.\n\n", "proba": 1.1138160971313482e-07} {"commit": "82bd675077024706d87ff60975b8202ffdeda0bc", "message": "added search method to program\n", "proba": 2.2960803391924856e-07} {"commit": "33b5c2f05e268ab20308e7e395a719cc04022d21", "message": "added __init_ file\n", "proba": 6.765733360225568e-06} {"commit": "3bf0ef4b84ddd4cc00abe4ce1be58da9c67803af", "message": "try one more time\n", "proba": 4.2526971810730174e-07} {"commit": "d4dbd10b868fd5eb7b5e71ef313701302f55a52d", "message": "Added a feature to uWeb that makes logging optional for apache sites, thereby reomving a lot of disk I/O for sites that don't require the logging, but do require performance\n", "proba": 2.6391026608507673e-07} {"commit": "08acea669d70c3e00e9c5a29535f643d473efa2f", "message": "fixed __init__.py for external use\n", "proba": 2.922442718045204e-06} {"commit": "4d3c7d4256a167eca0ea3cad0ea089e979745c6d", "message": "Added paint hinting property\n", "proba": 1.5188314250735857e-07} {"commit": "878d4e3b0c774a9f5932ddcb82a7ae8e11ec9ba3", "message": "rewrite __init__.py of ATT\n", "proba": 0.005855903960764408} {"commit": "6d4087ff55f072058750ce32f4963f27b22997f0", "message": "Core ImmuneChain functionality is finished\n\nNow I must convert all the scripts and other stuff to perform the correct annotations on the ImmuneChain objects.\n", "proba": 1.0033512154450364e-07} {"commit": "c2e46263c91d392895f5fa43ab6970b670c10db7", "message": "+ added New file functionality\n* fixed file saving to work correctly\n+ added icon to file display in tree\n* changed filename in TreeDisplay init to use NBTFile.name\n", "proba": 1.7704367394344445e-07} {"commit": "e38646ae467ce6dc7e7f1bf6597a0b8c5a5080a3", "message": "Only auth FM users for configured accounts, resolves #1\n", "proba": 1.2324341014391393e-07} {"commit": "edac82ebea142a235d2654aef474434382283cd8", "message": "Print tracebacks on errors", "proba": 9.693827678347589e-07} {"commit": "95c4cf0e6fab1c6b11568dce5bd1332736668690", "message": "SKINSTXTRCOM-4163 | Add split field to barrel\n", "proba": 1.1093572993559064e-07} {"commit": "e7627ee439e2e4f17466bf124629ae353460a68d", "message": "[FIX] Change product types are really dangerous!!!", "proba": 1.112605829689528e-07} {"commit": "cd0a82321beec1b891c521e739f6c70966fb39da", "message": "Logging revisions, reduce noise and add more info\n", "proba": 1.176958406290396e-07} {"commit": "fd8070f8b9ffcc3d3c2e47c011f8c8f62334a79f", "message": "Greater flexibility to file names. Updates to code comments.\n", "proba": 9.922766963654794e-08} {"commit": "ac45726e0c4815cea47d21a547bbc5b6fce64fc3", "message": "More robust regex for finding required input files.\n", "proba": 1.276744399092422e-07} {"commit": "ae5c7db62d8c02c691e3f087dc3135f4083174f7", "message": "in error message, ls is a command, not 2 flags\n", "proba": 0.002427320461720228} {"commit": "96232aae822b4a3d8f12b7e1d70bd8df07acdad2", "message": "Adding in functionality to switch between pixel and equatorial coordinate systems with just keywords. Also using different objects than those defined in Sources.py. Use with caution for now. I haven't rigorously tested.\n", "proba": 1.0438775177590287e-07} {"commit": "5cc0d7197d239f8ed919d90b4bbdbfcb4822c506", "message": "Delete ResetAOI.py", "proba": 8.202493404496636e-07} {"commit": "7d56e03cdc59859880f35a8a557f9a2937f7c349", "message": "presentation preset\n", "proba": 1.092839283955982e-06} {"commit": "212c6d580e78f3e40d9146aabe9ee4bf38e98af5", "message": "docstring\n", "proba": 5.97681209910661e-05} {"commit": "9807c78f45ea018e5b77859577156f6a1a4eca6b", "message": "test commit\n", "proba": 5.337649895409413e-07} {"commit": "3a9824587cdc70f94d73f60a854a4d58e8ea71e9", "message": "Add: Sorry! no entries found\n", "proba": 1.6602112395958102e-07} {"commit": "c79eb90920c2adff790eb0b1d1a350efbf568eaf", "message": "fixed seconds no longer modulo 60\n", "proba": 1.2990553841518704e-05} {"commit": "c73541a149b200aa2e414297894a2fef3c2d07b3", "message": "Updated docstring for __get_email_info\n", "proba": 3.05949379253434e-06} {"commit": "dcba80ffb7e32ff7d8876b973d78e0b4c4908e7a", "message": "file removed\n", "proba": 6.712581921419769e-07} {"commit": "5bdae179a082b12eae3ab2361b6c54e3e881b4a4", "message": "[a3c] Tweak batch size\n", "proba": 3.6501046452031005e-07} {"commit": "a0269dc07071200be560393e8477caffc30189ac", "message": "Update ama.py\n\nTypo old method context\n", "proba": 6.010008632983954e-07} {"commit": "0b6660df36a0db0b32b34fe79d0c23302135e203", "message": "I'm an idiot\n", "proba": 0.01825634203851223} {"commit": "37e67b7bcaae4521e55e46a97bfd5a7d66d8bf81", "message": "Updated the plugin to open a terminal at the first project folder if no view is open\n", "proba": 2.7709174332812836e-07} {"commit": "80556ccb52da0f326f10125b5b1ee5506cfc6ab4", "message": "sanitize only for windows\n", "proba": 2.5222752242370916e-07} {"commit": "3d7f00095c69004e9be7d84eb26dcbfb914924bd", "message": "I changed my mind.\n", "proba": 4.095249551028246e-06} {"commit": "955e2e3f5cc5d3b980e4bd9b5818de099576c70c", "message": "added __version__\n", "proba": 2.813967284964747e-06} {"commit": "a413b1209b0be01ef37ca7a155dd1fb1fb69b791", "message": "cleaned up imports\n", "proba": 2.651026704825199e-07} {"commit": "e43fd1d7b7332632ec0e2f609c35664892fb805d", "message": "First commit\n", "proba": 1.9779638193995197e-07} {"commit": "522eba74eaa6d272ab07cbb81defd6b224066531", "message": "Seems to work. Needs refactor\n", "proba": 5.875435817870311e-07} {"commit": "d67bc405412aa46b6b391f194088dbc5a90af744", "message": "__init__.py: fix for Python 3 compatibility\n", "proba": 0.0008214042172767222} {"commit": "ba4a749d356a9b008e5efa5968939e5626bbefe4", "message": "Data is no longer subclassed from File.\n\nHad to copy most of File.__init__() into Data.__init__().\n\n\ngit-svn-id: f83f72cad00039f4d0c1d1188121771302bbc894@59 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 3.767738598980941e-05} {"commit": "7cdc85c31a71b37febc67e060c774614ce7f15f1", "message": "Build summary from all changesets included in the review\n\nBased on patch submitted by michael.dewildt.\n", "proba": 9.981288684457468e-08} {"commit": "6d830f8639ea4af6055fb8f22e769ad25d8b54f9", "message": "\u652f\u6301\u591a\u7ef4\u6392\u5e8f\n", "proba": 1.7429201761842705e-06} {"commit": "48343f32fa28556d2d229b5a661bfe5e0b4b0634", "message": "Bump version # for final release\n", "proba": 1.4950930449231237e-07} {"commit": "7d3cc710457176d074352d395f9ad84d57215050", "message": "scripttest: add dependency checker\n\n* check the first line of the script:\n\"# scons: \" and a list of dependencies\nThese could be libraries which will configure your environment\nor just build dependencies needed to run the test.\n", "proba": 1.280612451637353e-07} {"commit": "820865462e4234bedb5d7c94a0624e08b3518c00", "message": "add FastSlideTransition, and a main function for standalone run\n", "proba": 1.3984953284307267e-07} {"commit": "601541d641397630a035a45b3a665d31c11661b3", "message": "Make webui configuration available on network\n\nClose #2\n", "proba": 2.1416644813143648e-07} {"commit": "f782a48419322716e39df9515a42c7e68cce760c", "message": "Added __all__.\n\nFixed the typecode selector in grid_function.\n\n", "proba": 1.1106424580020757e-07} {"commit": "e066024be34f746c392bde63d6727eb50c518e62", "message": "\"verbose modes\"\n\n", "proba": 1.5935245301079703e-06} {"commit": "21bbd11fa51c4e249f53f17c48636856b61642e0", "message": "Version change.\n", "proba": 1.4983946527991066e-07} {"commit": "8319afe013f467882c64134fa43d099eb280f21c", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "82b3f3bfce1459a6cbc33c88f02658e0a592b49c", "message": "vulnerability fix (closed blogs were personal blogs)\n", "proba": 1.2032478480250575e-07} {"commit": "57f49cc604d4c118df07e86649f69a7fc0df0333", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "8ac1a618eb25e67677fb943b49dc2162b9a1dee6", "message": "Add route to edit employee data\n", "proba": 6.748674650225439e-07} {"commit": "4478cba4cacd3961b7385ba4d3843e15c3d6ac1a", "message": "[kernel] Move cache and logs directories into app/\n", "proba": 1.2461973142308125e-07} {"commit": "f52ac2dca02e5587289312cb65c791b4a19b8eed", "message": "URLEncode image paths, fixes #22\n", "proba": 2.120465296684415e-07} {"commit": "b7aaac04f273d6757b42a3ffd099742de3990cad", "message": "Made PlotItem.options into a dictionary. Still should move more\nsmarts from derived classes to PlotItem.\n\n\ngit-svn-id: f83f72cad00039f4d0c1d1188121771302bbc894@60 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 5.943372343608644e-06} {"commit": "80593538b57eed5eb23db13d74d71ddecd498446", "message": "main: add support for configuration file\n\nLook for configuration file in local directory or in etc/\ndirectory and read it if found. Bail out if there is no configuration\nfile available.\n\nSigned-off-by: Ilija Hadzic <47a09d4a4430975766160361f65fc72633be50b6@gmail.com>\n", "proba": 1.111316265678397e-07} {"commit": "021c027b2686d630bf74054ad42d0206a2a59600", "message": "adding path arg\n", "proba": 6.322866283881012e-06} {"commit": "4f983dad51b31e13258d105828728d3e41dd07e2", "message": "Fix the unit of flow rate\n", "proba": 0.0016744359163567424} {"commit": "ae70e593f1322e4bac1637b05e5ba4762afa2364", "message": "Ignore errors. Failing videos must be manually cleaned.\n", "proba": 1.1921524389890692e-07} {"commit": "1887b8c6524683944cf98eda2e436f4e18cffb06", "message": "Explicitly name we're catching Exception\n\nIt's a broad exception, but that is justified since this is a call to untrusted code. We're now just saying it explicitly. Causes PyLint to shut up, too.\n", "proba": 1.3512000407445157e-07} {"commit": "735411e5701131a5861068c68b2c31161764f04d", "message": "removed unused import\n", "proba": 4.2686903611866e-07} {"commit": "10fe6c02b38c944e2a877abc50dfe6a72b4f13c8", "message": "added a lot of docstrings\n", "proba": 2.9532372991525335e-07} {"commit": "f1855d1a56252cbf2f470b92a4ccab190ca971b6", "message": "Let flag values override extracted values.\n", "proba": 1.3187784020374238e-07} {"commit": "e685e174957dbbf991756a681889c896d1a9369d", "message": "fix bug with newlines in compat mode\n", "proba": 2.08210096275252e-07} {"commit": "fc9d90c1a318589361c1696d12ecdb4bc7c02ee1", "message": "Changed order of cogs in ``initial_extensions``\n", "proba": 1.583480724320907e-07} {"commit": "06c07c008de0c05ccdb1b3340b807b01422e268c", "message": "working\n", "proba": 1.2916959803987993e-06} {"commit": "74583a684504e8487bb0cb42fb8b049c74ec9441", "message": "v11.0.7\n", "proba": 1.8646536545929848e-06} {"commit": "8f2594e06ef5fa328fce145dac153517a1643efd", "message": "Fix urls\n", "proba": 0.9986621141433716} {"commit": "4526dd5afbc1c898c060ab0399b6882de5fda417", "message": "Delete __init__.py", "proba": 0.0006957629811950028} {"commit": "b275797c083b8b0654e4d9e5cd145567a1500b5f", "message": "Trivial doc change.\n\n\ngit-svn-id: f83f72cad00039f4d0c1d1188121771302bbc894@62 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 0.0003040249284822494} {"commit": "961cd0af8bb57822087677620da2a89aa4b7db68", "message": "Print\n", "proba": 2.7719723220798187e-05} {"commit": "dbb344b4c75daf26750036363496634d9b3531c0", "message": "add functions to save and load variables with pickle\n", "proba": 2.27073741143613e-07} {"commit": "2fba59a24db280e2ad6cdfc60207cf392fa99c0f", "message": "- reordering spatial_dyanmics \n\n", "proba": 2.5853665874819853e-07} {"commit": "c4c3dc317bf0e24b1df43f0646345407b71ce68b", "message": "removed nullhandler to work with python 2.6\n", "proba": 2.942905155123299e-07} {"commit": "5b8db6e49a3df6f93d1485d4f5c3d8c1ccb2ebea", "message": "__init__: update metadata\n", "proba": 0.02153978869318962} {"commit": "382e0dbb4ef8cfb030e045ea6ff7b4d95ddbff94", "message": "Added settle up html and getting query error while adding friends\n", "proba": 1.93928286762457e-07} {"commit": "0a85ddf23cfc8895f5cc6918203b54fc7820108e", "message": "*** empty log message ***\n\n\ngit-svn-id: f83f72cad00039f4d0c1d1188121771302bbc894@10 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 2.220431042587734e-06} {"commit": "f73f2d8c7a7fa23299f48b2c2013dc53663afb41", "message": "Render last warp frame\n\nDrop out of warp before deciding whether to render the frame.\n\nSigned-off-by: Paul Brook \n", "proba": 1.2353395106856624e-07} {"commit": "ba87c408ba512a8959e990dae1976c1d8424a28c", "message": "Spaces?\n", "proba": 4.6513824258909153e-07} {"commit": "30cd7803349db79462df519ca27c024ff51e0cd3", "message": "fixed reraise\n", "proba": 5.581753725891758e-07} {"commit": "d1d7d7d36259da136d5b5532a7c212778324fc8d", "message": "Remove dead file\n", "proba": 1.2028145874865004e-06} {"commit": "a43b0db9fd06ca67962071ee73aecb29d690e15c", "message": "Remove DepreciationWarning\n", "proba": 4.620954427991819e-07} {"commit": "c3f5265e03cd696d068e71ad93577eb3fb2da092", "message": "Fix view of creaed_at\n", "proba": 3.3710850289025984e-07} {"commit": "9fdded0763dc1df962dfe33401541d64623d4344", "message": "fixed datetime bug\n", "proba": 6.201236146807787e-07} {"commit": "2e1c7d294d33d0bfd7b3c680bef11a7918a7af1d", "message": "If there's an error loading a module, catch the error and don't load the module.\n", "proba": 3.37866794097863e-07} {"commit": "712008a784f27018a2dede47c691a24b637f778e", "message": "updated\n", "proba": 4.958747581440548e-07} {"commit": "54af65c686e1b04ce8d83643ff3232c9043ad335", "message": "bump to 3.1.5 final\n", "proba": 1.2793537280231249e-05} {"commit": "da6b9278e8bb8af056d3927b1a460eb07737128d", "message": "initial agent interface class\n", "proba": 3.897102089922555e-07} {"commit": "abea9151ce3f97033038102b4b01e84b66b8b670", "message": "Make the bot reload its secondary modules when you reload the plugin.\n", "proba": 1.0668971839322694e-07} {"commit": "41879ab17505a8bfdc994ee4c34ccda9e2bc7791", "message": "handle float/int compatibility\n", "proba": 6.951216278139327e-07} {"commit": "40f1c31098bd09e98d50727d08becf0d55ca8409", "message": "Add upload file size limit\n", "proba": 6.898983428982319e-07} {"commit": "b9581b66a86de316f12ddc5fa940a1bab82f260d", "message": "added geom_raster\n", "proba": 2.0920448662309354e-07} {"commit": "7edd599380f39427c5b5ce77b776225410c4b23f", "message": "adapt angles on clicks close to borders\n\nwhen menu was open too close to a border, we were missing part of the menus.\nThis patch fixes this by adapting angle to the location of the client:\nif we are too close to one of the parent widget border, we reduce angle.\n\nFor instance if we click next to top border, we only display menu items\non half of a circle, and if we are next to top/left border, we use a\nquarter of a circle.\n", "proba": 1.3452623193188629e-07} {"commit": "0be162df232d5580787775d04597e73f83b984a1", "message": "Added get_int\n", "proba": 2.9711731031056843e-07} {"commit": "2891192e564bf63df77483245934ed4635c364a2", "message": "finished writing docs\n", "proba": 9.941699090632028e-07} {"commit": "e733cf022802387ccbd8e249393da5514b01f266", "message": "Extend comment to AsciiDoc emitter.\n", "proba": 1.1714065095702608e-07} {"commit": "928d39e57dd0195dd0ea27f72df69a9df9954f85", "message": "Set A2X target factory to Entry.\n\nSet the A2X target factory to Entry. This reduces the number of problems that\ncan arise from the fact that A2X can return directories or files.\n", "proba": 1.8156234204980137e-07} {"commit": "0154065d2da3fc26e1dfbb19f6e9a0890e5730cd", "message": "Added a little time benchmark\n", "proba": 1.4354795041526813e-07} {"commit": "21ef71ab40e7a3bb7cbf96b29b40c7aac6120fdd", "message": "Bump version to 1.3.1\n", "proba": 3.7203503211458155e-07} {"commit": "b805af76539b1b413a63a2f678ee49ead950fb8b", "message": "Tests for all the modules.", "proba": 1.1123554344294462e-07} {"commit": "cdb4fe3c1655de0ed13cd14065c1740491cccf29", "message": "don't use array fro fat_chain\n", "proba": 3.5714688237931114e-06} {"commit": "d814a925aa202a50717f75869e24355c23322ef5", "message": "Minor formatting and wording changes in main.\n", "proba": 1.0836115649226485e-07} {"commit": "24067a74d4aa9001a3e31e6f291ccfa965ada20f", "message": "Korjattu kirjoitusvirhe\n", "proba": 7.935540224934812e-07} {"commit": "d37448f58549f19c86c874191cf3dd34a3e7382a", "message": "Update set_levels function call\n\nThe name of the API function was changed.\n", "proba": 2.005360215662222e-07} {"commit": "072b60f388a8a5ed4ee80e5330c6203fa02e7e4e", "message": "Add try except in python script\n", "proba": 1.0099673772856477e-06} {"commit": "d6a1102be245282cd357d51efd386126500c3af6", "message": "Progress now uses hex, because it makes more sense\n\n", "proba": 2.657435800301755e-07} {"commit": "d8d86768c0c0c2ba07f9e5ca19372ba5560b72a2", "message": "Clarified commandline arg options.\n", "proba": 2.1590382459635293e-07} {"commit": "cb8f648f1fbcc21b4ba2d6ad57fd40085e348935", "message": "Using correct content type.\n", "proba": 6.894715056660061e-07} {"commit": "af279585e321865c981b251e0304e913019e80cf", "message": "Changed speed setting back to play value, not development value.\n", "proba": 1.0934736138779044e-07} {"commit": "d1063cfc773bd5b89d17f37aa947023c57390f6b", "message": "datetime solved\n", "proba": 0.0003071196551900357} {"commit": "496ead6b1203d3dab5dc6db041a49952e3472b4d", "message": "add latitude and longitude\n", "proba": 0.9999901056289673} {"commit": "4a05713efd95a0a01b4dcabac551c38cd874a551", "message": "According to pid, we split packets into queues\n", "proba": 1.0809360901475884e-05} {"commit": "e35cff139f55cad341932a508d811b082ab0bf7c", "message": "Added support for custom colors.\n", "proba": 1.0545821282903489e-07} {"commit": "338e0733546dc49466da8f39fe3e144c717a30c8", "message": "Sphinx config links to dreamhosters doxygen output\n\nSigned-off-by: Ian bell <6f1c5b737f3c5cff42a9b8f8dcfce305d97fd07b@gmail.com>\n", "proba": 1.3090573247609427e-07} {"commit": "511bf344680aa1888419a67a87175d3047b6a85c", "message": "removed __init__ from root\n", "proba": 0.0004413490241859108} {"commit": "937ef6b96005ebd5e7ea873d06c9c824d75ff382", "message": "Changed default option to `_unset' to be able to distinguish None from\nunspecified for keyword options.\n\n\ngit-svn-id: f83f72cad00039f4d0c1d1188121771302bbc894@78 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 1.4196805750543717e-05} {"commit": "33304332cdd7b3db0fc98d935328876554dc1231", "message": "Move compression back\n\nCompression must happen before the encryption for 2 reasons:\n\n 1- Compression is inefficient on encrypted data\n 2- Encryption is meant to hide patterns. Compressing after encryption\n reveals some\n\nBad regression. I should not be allowed to code immediately after waking up. :)\n", "proba": 5.192041498958133e-05} {"commit": "fbfe118538941018e7b37e68259631fa487469d8", "message": "Don't create a new module object, dump everything into the existing one.\n", "proba": 1.2808787630547158e-07} {"commit": "c0f1f171c664f72586c8c1345e838c87a58c6e59", "message": "some error handling for extremely large calibration values\n", "proba": 1.4191414265951607e-07} {"commit": "4cf5034d7f5746bf5adf24a756355b58008483a1", "message": "rm'ed __init__.py\n", "proba": 6.444847531383857e-05} {"commit": "b0d7d6b5db0882fa3d5ecc0dea8bebbe4657b577", "message": "*** empty log message ***\n\n\ngit-svn-id: a9b3423f80f97d8686891a9c593c60a3eca95014@13 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 1.0038687605629093e-06} {"commit": "cf892f13cdfcd59f0a65e56b944cdb00d8c50feb", "message": "Added a more functional interface to 3-d plotting, the GridData class.\n\n\ngit-svn-id: f83f72cad00039f4d0c1d1188121771302bbc894@34 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 9.883976417768281e-06} {"commit": "91909dd1a35b5c545c89ebe7f4f075cfb8aa9957", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "649a01570646e313caf20f443ec56becc763e354", "message": "Remove unnecessary __init__.py from root of django project, which will cause\nsome test to fail when run under nosetests, as per: http://django-nose.readthedocs.org/en/latest/upgrading.html\n", "proba": 6.78289916322683e-06} {"commit": "c61d66377363c5b2807979ece4b931ac394e1209", "message": "minor comments\n", "proba": 1.8524559664001572e-07} {"commit": "7e6a5413c5958888a756aa80fe877dff2925a0ae", "message": "needed trees in pymel main space\n\ngit-svn-id: ebd26f0b4afd3fb7c0e0d88f39b62381954d19ac@268 64d93f2f-123f-0410-81d3-998474c5a783\n", "proba": 2.377322562097106e-05} {"commit": "be48533d8ed96e0fe8857e4a2eecae267ac17e79", "message": "Do not raise an exception when FAUST is not found.\n\nI believe this was a bad idea. I think a build system ought to use the exists()\nfunction (or at least check that \"FAUST_FAUST\" is not empty) and handle the\nsituation from there.\n\nThe assertions are there because of a strange error: when the first Popen()\nfails (because faust_faust is None), the second Popen() hangs indefinitely.\n", "proba": 7.893108886491973e-06} {"commit": "8d2dd658b39f1d6a10b74fb9cd4afd60764dc9d6", "message": "Move comment to better place.\n", "proba": 1.2134231042182364e-07} {"commit": "da5805b426fda093924e9f88c1383afd47c893f9", "message": "Delete __init__.py", "proba": 0.0006957629811950028} {"commit": "6b096c26e9e9dddba97c6b2fd6d61764c8d173fa", "message": "Fixed recent scans to go in the right direction\n", "proba": 1.2093784107491956e-07} {"commit": "4431268686a0cb7c678eec532771120d451fb09c", "message": "Added some option-setting routines.\n\nAdded Gnuplot.set() method to set various options via keyword\narguments. The style of a setting is determined by a look-up table,\nGnuplot.optiontypes.\n\nChanged Gnuplot.plot(), Gnuplot.splot(), and Gnuplot.replot() to allow\nkeyword arguments for options to be set. Note that settings made this\nway are permanent.\n\n", "proba": 1.1982858438841504e-07} {"commit": "b1a4986da0c51a18252beaa99af411992adf1d8c", "message": "Remove __init__.py from repo root\n", "proba": 2.329572816961445e-05} {"commit": "5ff25f1944fd99acb996ff5179a6b6b11769e225", "message": "Update version.\n", "proba": 1.3375024821016268e-07} {"commit": "30bd8b9b4d18579cdf9b723f82f35987c1ad9176", "message": "Enable command-line args for configuration\n", "proba": 1.945484427778865e-06} {"commit": "851f89688ab887b323ded70f0b809fe3b7924a8f", "message": "Allow sign in and sign out\n", "proba": 3.9808082874515094e-07} {"commit": "6cb16ed287409be6497bf1ca4e75e2de12176f0d", "message": "clean up imports\n", "proba": 5.274483214634529e-07} {"commit": "3be1f5231fbe1446d41019d0fdf7b6b5c111c9d8", "message": "No review: fixing broken autoinstall.py\n\ngit-svn-id: bf5cd6ccde378db821296732a091cfbcf5285fbd@53888 bbb929c8-8fbe-4397-9dbb-9b2b20218538", "proba": 1.5307088006011327e-06} {"commit": "ca24fe63075d8df966afa907c8bad4f9dec2befb", "message": "use correct variable when determining build directory\n", "proba": 6.506541581074998e-07} {"commit": "a3a25d9da61c18b41ac27fc24f1502272609f651", "message": "fix finding toolchain path in windows\n", "proba": 3.4093825433956226e-06} {"commit": "94371f8efb16cf21bc6bc9a71e6e4c58aee98c7d", "message": "BUG: Add previously removed function __getattr__() in itkTemplate.py\n\nThe function __getattr__() had been removed in commit [1] because it was\ndocumented as being implement for docstring support and was not necessary\nanymore for this purpose. However, it is also important to allow lazy loading\nto work correctly. Part of this function has now been reimplemented to\ncorrect this issue.\n\nWithout this function, types that are defined in a module but do not belong\nin that module are not loaded with the operator '.', but only with the operator\n'['. This is the case for example with images of type NormalBandNode that are\nnot defined in the ITKCommon module, but in the ITKLevelSets module.\n\n[1] d7deda60f7145c89c4df0bdb66627e4b8142b9ce\n\nChange-Id: I97d7930516246005771bdc44bf6dee9c63596e6e\n", "proba": 0.001452821190468967} {"commit": "587c049c95c547bffcb25e94f60b55c5cb5ed8e4", "message": "enable unit tests\n", "proba": 7.155605317166192e-07} {"commit": "d2c30410a83074ab46ed47cad462d0ebf6baa05b", "message": "[FIX] stock: correct import\n", "proba": 7.348867075052112e-05} {"commit": "08ebdcadc0bb74e8f127ee91bfda463fd9043974", "message": "improve election listing performance\n", "proba": 6.522097919514636e-07} {"commit": "a7e895ebf7b7a36bc23a0f014bc849489df603a9", "message": "[a3c] Separate actor and learner\n", "proba": 3.8370416177713196e-07} {"commit": "97d310c1e99d8ed01cbd3bc65477a7a553ea60e3", "message": "truncate file to last free sector\n", "proba": 4.500208524405025e-05} {"commit": "aea3e2555925cd498723e1b74599518b6d6438fe", "message": "Tweak accessor.py according to pylint. No functional change\n", "proba": 2.1633884443872375e-06} {"commit": "ababce3fccd18ae01575a13220288c80682b42d7", "message": "code cleaned up and short description added to device class\n", "proba": 1.3731198578170734e-07} {"commit": "c9a718b98af8744030ab4d7d9509d0a4a6a6e5cb", "message": "[IMP] if bank line has no voucher then create it on reconcile\n\nbzr revid: rgaopenerp-20120822061724-kcudfqtqghpdp97b", "proba": 1.1776240171457175e-05} {"commit": "4ef7faeffabed000a7a8bbc1a813a30f458ec40e", "message": "[FIX] crm_project_issue: archive instead of delete\n\nWhen the user converts the lead into an issue, an error occurs: \"Form\nview couldn't be loaded\". This is because the web layer tries to refresh\nthe data related to a deleted record.\n\nInstead of deleting the lead, we archive it.\n\nopw-670259\n", "proba": 8.128613990265876e-05} {"commit": "b0929a59a28622f2306192e6588ec8628ffa2189", "message": "[FIX] :point_of_sale: fix the probelm of ir_property in pos_return wizard\n\nbzr revid: sbh@tinyerp.com-20100506072437-2qw1unb3bdn3mhre", "proba": 1.0627358278725296e-05} {"commit": "c2f5457d9873202047ed4e0e227bb2a23ab075dd", "message": "[FIX] product: traceback when name_search on template fixed\n", "proba": 4.2900754237962246e-07} {"commit": "ce7090001d104fb43afacfd64e48d182b0ff8761", "message": "[FIX] product: Field display_name in product template form view\n\nSteps to reproduce the bug:\n- Go to Sales app and open the form view of a product P\n- With studio add the field display_name in the view\n- Try to create a new product\n\nBug:\n\nA access error was raised because a read was made on a record in cache\n\nopw:2070074\n\ncloses odoo/odoo#37133\n\nX-original-commit: 90143c18f50ff31ded5aba7d7ba3beb66423ff06\nSigned-off-by: Simon Goffin (sig) \n", "proba": 9.646811668062583e-05} {"commit": "ff4f3922a9dd018fee7c855894fc27f588dd6dcd", "message": "[FIX] purchase: fix reference update at onchange\n\nAdd two PO with references 'XY' and 'Z' to a vendor bill.\nThe reference is computed as 'XY, Z' (with ', ' as separator).\nAdd a PO with reference 'X', the reference becomes 'X' instead of 'XY, Z, X'.\n\nThere are two variables that may not be defined (vendor_ref and self.reference),\nand specifically the case where a reference is the prefix of another one is not\ncorrectly dealt with.\n\nopw 2005825\n\ncloses odoo/odoo#33841\n\nSigned-off-by: Nans Lefebvre (len) ", "proba": 4.975453521183226e-06} {"commit": "efa161e25c452aacb9ee39281f94e36cc696cedc", "message": "[IMP] sms: make template required on preview template\n\nIt makes no sense to make it not required.\n\nTask ID 1963529\nCommunity PR odoo/odoo#32397", "proba": 1.8970295911913126e-07} {"commit": "5074430bfb613b1f18ff6b9252f7b1ac2c39d199", "message": "[FIX] stock_account: valuation zero quantity\n\nDo not attempt to create a valuation layer if the quantity is zero,\notherwise this will crash:\n\nhttps://github.com/odoo/odoo/blob/8777f525ced87890242e1c73cac55c70444de351/addons/stock_account/models/product.py#L291\n\nopw-2115764\n\ncloses odoo/odoo#39526\n\nX-original-commit: 1225d029b6a915280ce83f2ff555e0d8692c3e12\nSigned-off-by: Nicolas Martinelli (nim) <771435c469f83f6aa9c405ac5e1ed06314a94f2d@odoo.com>\n", "proba": 1.9715428152267123e-06} {"commit": "a46a1c76b4a27c976675edeb0a4411a958811b93", "message": "Fix UnboundLocalError exception\n", "proba": 5.354226232157089e-06} {"commit": "1c414f6a1db0647c545db8822dd0d3a50128fb32", "message": "Medium property added by default (GeenStijl)\n", "proba": 1.091088108751137e-07} {"commit": "de150f61331de83d2fa4773cd2b5a35233114964", "message": "Creating aggregated 10km tiles for net flux for model v1.1.2.\n", "proba": 9.92123432297376e-08} {"commit": "72e46657d1c43d8859c1322d9f0517e447a1fb1d", "message": "oppologizer: don't discard stop points\n", "proba": 3.973911589127965e-05} {"commit": "723ca62755ec68b7e6aec557a9f0f18c3c0bbb65", "message": "Now fails in a much better way when a modem is not found\n", "proba": 2.1624589408020256e-07} {"commit": "85352964bad9f65380cd795deee43023be12e5c6", "message": "Add floor image url to location responses\n", "proba": 8.075433015619637e-07} {"commit": "c95044053c06c49476876874dc6b41e05b081dac", "message": "Avoid depencency problems upon clean syncdb + migrate.\n", "proba": 1.1447020398236418e-07} {"commit": "283eee75432080aee760d69cc11bd814b8f6b10f", "message": "Fix bug in FormattedText.join\n", "proba": 2.2852972847431374e-07} {"commit": "36eacb06fbf295316f3c110ec832f231c1917703", "message": "Added code to store X and P predictions in batch filter.\n", "proba": 1.0518099458067809e-07} {"commit": "d392e34574440587e22353cc88f8718cbffd0100", "message": "Fix error when using boxplot\n", "proba": 1.1556974641280249e-05} {"commit": "34ca776257e9a1581a994720108034fac2fe388c", "message": "Minor update to comment.\n", "proba": 1.1213513317898105e-07} {"commit": "4de23824b0c711ece68f9fc007ffac12126710aa", "message": "Setup wallets for interface_bitcoin_cli.py\n", "proba": 2.857037998182932e-06} {"commit": "a6a96eb819cdbd241467a20b526b54ee33445767", "message": "Couple of updates for the Driver object\n", "proba": 1.3549201582918613e-07} {"commit": "fd2ca22e4f3272eec59a071f5038362ec6628240", "message": "CA-146138: don't refresh slaves for local SRs\n\nDon't try to synchronise logical volumes on other slaves for a SR that\nis local to the host, it doesn't make any sense and can cause all sorts\nof problems.\n\nSigned-off-by: Thanos Makatos \nReviewed-by: Mate Lakat \nImported-by: Thanos Makatos \n\n(cherry picked from commit f33332e77cefba55f24afe2a54792f2f83cc8607)\n", "proba": 1.1953849252677173e-06} {"commit": "483e48015bcd795bea493d0d8688f7d5a50d5c56", "message": "Reverted CPU*4 as it caused an issue with max process per user. Will look into moving it into a setting.\n", "proba": 1.0493752711226989e-07} {"commit": "f3059cc2db7fb27254bc9a7a36fa15642120c2fd", "message": "[weak] hold on strongly to floats, characters, and compiled methods, too. not always correct, but may fix issues with debugger\n", "proba": 4.30203272117069e-06} {"commit": "db3fc531e827f9c8bc960b8ffacec8716b7e13c6", "message": "add freetype2 dependency to harfbuzz", "proba": 2.0506227826899703e-07} {"commit": "157d910c52ecd9b1741da3cfbf7f1ceea7e9f232", "message": "handle edge case where raw file only has a message\n", "proba": 2.5691937821648025e-07} {"commit": "a1235b42f8feb68c4becaea015a1513469b7eed6", "message": "add save on top of admin pages\n", "proba": 2.6450138079781027e-07} {"commit": "cf7dc059e63f553b1685d1c82659ae716314276e", "message": "optimize strategy conversion from AllNilStrategy\n", "proba": 2.9950183488836046e-07} {"commit": "24c38600baf424a29534d57c1ec1e5a6fcb96967", "message": "Bitstamp: fix get_withdraw_history method.\n", "proba": 1.3569672319135861e-07} {"commit": "f1b13cd79960aa048834481cf48e19df9034c7d4", "message": "fix registration\n", "proba": 1.9823770003313257e-07} {"commit": "d883c0de5e0dc78bba76f1a9b119fdc4db98441d", "message": "Changed tempfile generation for unittest.\n", "proba": 1.172154071582554e-07} {"commit": "f246b929adeb0ee2ba673b5da637002bf056749b", "message": "Add os.environ settings\n", "proba": 4.381060989544494e-07} {"commit": "db411861df12a72529378898cff810cec1966164", "message": "Document readdir overrides\n", "proba": 5.550022592615278e-07} {"commit": "847ae5b46abf06c4ef7ee02975016ceaf3bfdd65", "message": "refactor tests for clean setup and teardown and testing extract_file\n", "proba": 2.734235238222027e-07} {"commit": "4487cac255d9edfd1a086fce2ddb34f73dd77180", "message": "Fix PERMS error... again\n", "proba": 1.5714037715497398e-07} {"commit": "305d214b2d16836f5b711286578ecd92854c0778", "message": "Style changes\n\nIncluding a comment to ignore flake8 on a few lines as it is stopping me write perfectly fine code due to alignment.\n", "proba": 9.733887651464102e-08} {"commit": "11e51d3677283f6041d5980fa9548da262f61885", "message": "Add tests of UTCOffset __repr__ function.\n", "proba": 1.3164701329060335e-07} {"commit": "f481d661f29c7a9049a6e26730f4ed25bfece85a", "message": "Bug fix: division by zero when computing DC current from DC power and DC voltage.\n\nOccured only when DC voltage = 0V and battery service was set to 'nobattery'.\n", "proba": 2.357867430191618e-07} {"commit": "1c455ee63028def44d1f5683ffd9c7be12eac7fa", "message": "environment: Use a single function to check for ObjC and ObjC++\n\nThese two functions are different only in the classes that they use, a\ncouple of simple in-line ternaries takes care of that and reduces code\nduplication.\n", "proba": 1.347219011904599e-07} {"commit": "84118ed6c9a54bb43ffc9b8bade32107facd088a", "message": "Improve AniList Logging (#3322)\n\nanilist: Improve loglevels, log errors instead of aborting on errors", "proba": 1.370649727050477e-07} {"commit": "b07335f6c47c7057f04e17355c65a256972d5b65", "message": "added created at\n", "proba": 1.2615485900369094e-07} {"commit": "97d2dbe1b351c312f42ea54cab5150e38077f0a2", "message": "Change formatting of command help strings in source code\n\nThe automatic textwrap.dedent makes it impossible to cleanly extract\nparts of the help strings into separate constants.\n", "proba": 1.4037667028787837e-07} {"commit": "431fa9444ed83de029ba8c220ff1d7170fa6f89b", "message": "Write transcript counts and unique sequence CSV files to quantifier scratch directory (rather than wherever the transcripts GTF file is located).\n", "proba": 1.0393636529215655e-07} {"commit": "679b7f4ed6be65d5f4380e46182e98f5d1ca816e", "message": "Added optional message to _generic_error() when raising exception (#976)\n\n", "proba": 1.6679859982104972e-07} {"commit": "6c20a98196f663589c6d2f353a648251b51f27ca", "message": "Toy data functions\n", "proba": 4.880384381067415e-07} {"commit": "df8af95a30d4246b0a1879382ee96a285761b1ac", "message": "Added set auto complete\n\nNow every set option will auto complete\n", "proba": 1.290635509576532e-07} {"commit": "a8caf988c6bd0fb6678b4dedfcc5d7466b137858", "message": "environment: Fix detection of icc on macOS\n\nWhich wouldn't call the function to detect c_args and friends.\n", "proba": 2.156128715569139e-07} {"commit": "8cbeba202e54d4e0eed0df6069089ad405c3cc38", "message": "more fixes to SREQ class\n", "proba": 1.1849287062659641e-07} {"commit": "7e324aafb57ae67590fe1fb2e50310ba6a7f0c05", "message": "Refs #275. Added extra safety check, does this help?\n\ngit-svn-id: ad91b9aa7ba7638d69f912c9f5d012e3326e9f74@762 3942dd89-8c5d-46d7-aeed-044bccf3e60c\n", "proba": 2.9893565169913927e-06} {"commit": "2bbb2152bb9d70be94c48e626490564860693228", "message": "STY one obj per line in containers\n", "proba": 1.35324015104743e-07} {"commit": "c52c4d3cbfb6fce6c9e86d9bf0ddc4ef77f4efc3", "message": "tweak\n", "proba": 1.375922693114262e-06} {"commit": "e204ce6e0ee2df5faa2a886303608733764b1529", "message": "-> GET will ignore filter objects\n", "proba": 1.716062740797497e-07} {"commit": "98a0e12ada2b398e7aaa51abffd4da316b49ea9d", "message": "Bumped version number to 0.11.3\n", "proba": 0.0009673241875134408} {"commit": "d5c8babe96f0a8bbe9b585d971169e0ce532b208", "message": "activate\n", "proba": 3.885307705786545e-06} {"commit": "0bca9a8a82a447dede1a62204d66105ca58f3d06", "message": "Improve Django admin for IdMapping\n", "proba": 3.36893833718932e-07} {"commit": "74c9aa9416bf39db76b26e8922cd40d3523bada6", "message": "fixed github plugin\n", "proba": 6.084124493099807e-07} {"commit": "4855525180d83a9b1dc0c628c2afa9f140f0d492", "message": "boot: Remove special case for pypy load failures\n\nThere was a special case for Pypy in the handling of errors when loading\ncomponents. It looks like in the years since it was written, it may\nhave become unnecessary. Removing it leads to more helpful error\nmessages, so... let's remove it?\n", "proba": 1.31271647774156e-07} {"commit": "728456f1757c485c9577576be8b3b11064748f5f", "message": "fix #389 bug in unplanned consumption\ndid not decrement resource\n", "proba": 2.2877810579302604e-07} {"commit": "3274f951d20de2f6fcfa78e0531f7f70d7d234a8", "message": "Don't fail loading subprojects if subprojects_dir is in a subdirectory\n", "proba": 1.2549743360068533e-06} {"commit": "80efb493c2e53200fe4603735998d5e285397f5e", "message": "Fix msgpack issue with very long Python longs (> 64 bits) used with job ids\n", "proba": 2.392742999290931e-07} {"commit": "994cb41f2577335f5cbdb226c67a8fee11684998", "message": "Try to work around the wordaxe problem, no luck so far, at least for german\n\ngit-svn-id: 305ad3fa995f01f9ce4b4f46c2a806ba00a97020@699 3777fadb-0f44-0410-9e7f-9d8fa6171d72\n", "proba": 0.00011078979150624946} {"commit": "ef9a7dc5987d7734bad3194219f72714fe980b60", "message": "release 2.1", "proba": 2.0121667887451622e-07} {"commit": "79db7b2124bad5080fe5e81c066212bb5d5d3aa3", "message": "automode: fix $ircop exttarget name in setacc examples\n\n(cherry picked from commit 24caf36230849709707c867e6a33c1870bc630aa)\n", "proba": 1.468174843921588e-07} {"commit": "8a50e22788633f6ad83ef477ffb68052820becab", "message": "added in Jake's changes", "proba": 3.3911476293724263e-07} {"commit": "8e2f63297997941196d1ce85ad9e6aaa0d6569ca", "message": "Fixing Excel time calculation\n\nI verified this with our data and a remote date calculator. It still\nrequires a bit more verification to see if I'm getting everything right\nabout the Campbell Scientific date string and the Excel information\n", "proba": 1.8138702273517993e-07} {"commit": "e560075b89668e4d8c12a89424ff5d7fab638475", "message": "[#907] Change functional tests to check for visibility\n", "proba": 1.1558572765579811e-07} {"commit": "ba8688582dc027f58891a5b4fa7dba11e4f1756c", "message": "remove test\n", "proba": 2.550035424064845e-05} {"commit": "49f9de4e4e946f6b04b2b57a69d15516537305e0", "message": "Added pickle test for corrected intensities.", "proba": 1.0956824070262883e-07} {"commit": "eee780aab4cb007cbe1b5df3860b20561571e361", "message": "Add locale setting\n", "proba": 1.553503693685343e-06} {"commit": "8988429f04953f3c7b0c19275f7459a599330e9f", "message": "add more comments to nodemanagerservice\n\n\ngit-svn-id: ea2d8d9bda37c9a377a4b306e7cc9cd65ef89360@1222050 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 2.933529401616397e-07} {"commit": "14755b3182a1d4870a31cc98052ce9f481217c6f", "message": "Supporting new node callbacks\n", "proba": 4.4185898673276824e-07} {"commit": "de98be609305d1d198055961b109587e0efee1da", "message": "use rlock so blocking can be passed in py2\n", "proba": 3.479451606835937e-07} {"commit": "27620711ba0993d42d9a3ca29e685d4a4963ba5e", "message": "added default calibration path and some comment spelling\n", "proba": 1.5274407871856965e-07} {"commit": "77a29c022777b0f96721536e9293de6908205a7d", "message": "replace all references to RemotDockerClient with assertExpectedDeployment\n", "proba": 2.7258309387434565e-07} {"commit": "548af5992ccc67b4778d35f0edbd0463bd00c20a", "message": "Make hyphenation work if you don't have pyhyphen installed.\n\n", "proba": 1.3406784660219273e-07} {"commit": "84a4d8320dbc646f1a1bb11202872025cd3a2fd6", "message": "Update __init__.py\n", "proba": 7.178883242886513e-05} {"commit": "afe633a9c3ea7107e72975bae77ab2e91b6eddca", "message": "remove usage of csrftoken cookie reference in test", "proba": 1.815479748756843e-07} {"commit": "86b02402e37b12ac7a1c498735490d6c4d3431c8", "message": "experiment: only substeps reraise exceptions for now\n\nFormer-commit-id: b07acf6d28efd4172d5eac647065f81e63494e4e\nFormer-commit-id: 20854d3606aa15ff2d705ac4c28ae6ff9d8ac937 [formerly 4b4c85baf17214d6eac7db6099a01cd96d9955c5] [formerly b9bd4af4cc54fe8c3679c427ea28a1ec89fc78b3 [formerly 0c96d4b012d76a92237d82f310117187fa5488d1]]\nFormer-commit-id: 51d9bdaf2ec9016c0363ab22f0f341699888dc2a [formerly 4483023a8ee82de8b58972bfc2cbd17b5e2e3f7f]\nFormer-commit-id: 7c932f5f25a7aa903cd0e1048e12945b8120ff49", "proba": 2.7885993404197507e-05} {"commit": "a4ab980a108f72ca382378edc33138050f6e3c69", "message": "updated 2d-3d copy op tests\n", "proba": 1.361615744599476e-07} {"commit": "ffd7f2d9a2a55f561ec0a202748a802e56e86e7c", "message": "Fix param orders", "proba": 8.79920207808027e-07} {"commit": "da07ffc5e0054cfa9322ed669444970756ffa16d", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "451295af488467a8bd8b8b6bbb7827d6786bdaa3", "message": "make .. contents:: implementation compatible with sphinx (hack)\n", "proba": 1.1614041284246923e-07} {"commit": "6491bd35e893686db831117d57071ab676b34b31", "message": "use lite\n", "proba": 1.1402767086110543e-06} {"commit": "e7e264a133f26253bd0c33afee9b6808197388c5", "message": "When downloading the wfs data from geoserver, use geojson instead of geopkg because geopkg uses Timestamp data type that is not supported by geopkg standard\n", "proba": 2.0441949288851902e-07} {"commit": "fe026c0ad4cb7b914dd7b199ea5c301b91beb8a5", "message": "More deduplication of tests.\n", "proba": 1.2028129958707723e-07} {"commit": "8062ca3f0367029ff974ba4215eaaf79abb5df03", "message": "fix test\n", "proba": 1.6747775362091488e-06} {"commit": "d075efbc2c647a959814ec1422cb089baf6966d1", "message": "reduce soft assert spam from previously fixed bugs\n", "proba": 2.202707207743515e-07} {"commit": "ff3749b4adfd433369f1270aaeb2bf07acdcc831", "message": "fixed static dir\n", "proba": 8.212700777221471e-07} {"commit": "c65a96a13d41a30fc1a644285c667eb2b36aff51", "message": "Removed helper function\n", "proba": 6.657041922153439e-07} {"commit": "94ab25c08af99fc19f81e1085600977e0363964b", "message": "added client_version_tuple in RTorrent for comparison against min_version in Method (not fully implemented)\n", "proba": 1.0279995166229128e-07} {"commit": "73949863ad6f49bfa414682a2b103f552c9916cf", "message": "user server uuid\n", "proba": 4.31310809290153e-06} {"commit": "81538dcb671b34e3ef1a6b7fedbaf7dfc9ada065", "message": "Add rollback on failed session commit\n", "proba": 4.6844849066474126e-07} {"commit": "0a7a17fa51909fa4ee50ebdc7dbc4cb8611b0573", "message": "new error density\n", "proba": 7.386713605228579e-07} {"commit": "88b2644734a9fdf800cc5518f9d645d7148a100f", "message": "Clarify intent of comment\n", "proba": 0.00069797522155568} {"commit": "f6f542c23a998d830c8e64a8d5a7479ffdff5c36", "message": "Enable possibility to filter people by email address\n", "proba": 1.5915364883767324e-06} {"commit": "1788ddbe60bbdf12f9c715c12342483faa4790bc", "message": "[fix] don't delete standard folders\n", "proba": 6.92274284119776e-07} {"commit": "f6738a97d1c010003a575fc81fa6e7e2e523121a", "message": "report manager: change permission check\n", "proba": 3.758898856176529e-06} {"commit": "8049de7e1c9bd7ff6b2baa8d2843267ad53be922", "message": "First connection to FritzBox and prints to console.\n", "proba": 1.0212259837771853e-07} {"commit": "adf9bb0d30f50804ff88bb433cc3159b9f7f7dd7", "message": "Fix lint error\n", "proba": 3.4964185033459216e-05} {"commit": "50c4cd1d09074bb4068c661e84740062ae3b7d94", "message": "Changed register device URL regex to allow uppercase.\n", "proba": 1.4847758222913399e-07} {"commit": "00c0273eebc235a8111547dd2191710e237afb8a", "message": "FieldSquare version 2\n", "proba": 2.905752580772969e-07} {"commit": "407293ad996560ac87b3137b1036dd6c1fd62dd9", "message": "Added possibility to work with multiple users\n\nNow bot saves in RAM working mode for every user individually. It was a one working mode for all users before. So interacting with bot of other user won't interfere (reset working mode) other users like before.", "proba": 1.0714570208847363e-07} {"commit": "0da9911cdc3f671a544d402ab1c390ed93798254", "message": "Delete Stack_dA.py", "proba": 6.358625978464261e-05} {"commit": "688f20e0710a07521312a4f981448f11490ef8b5", "message": "Public Task list now properly renders the mentors and type tags.\n\nFor instance if there was only one mentor one would see + -1 instead of only the name. The mentor column should now properly show the , <2nd name> + if there are more then 2.\n\n--HG--\nextra : rebase_source : 1928b0434f9793bf5c31f218fd2ab9622a528f65\n", "proba": 5.950350168859586e-05} {"commit": "504f7d1ffd83a45430aa7afe28fb5ef8e430b1af", "message": "change header\n", "proba": 6.987559686422173e-07} {"commit": "3ff641e5fa7cf53a12c886153db0aab7a7872821", "message": "bump to v1.4.0\n", "proba": 5.948436410108116e-07} {"commit": "5709a773c09b87501935b5dd188b375db9450b0a", "message": "removed validation set download", "proba": 1.7717492539759405e-07} {"commit": "48dd04a5d4cf3aa44f1f7f82249d9f9ece2b916b", "message": "Added anchored forms for h and v\n", "proba": 1.249746333087387e-07} {"commit": "0b92e49aaec3e04c1efd82ed63cbf1b0e0f877e6", "message": "Store unicode reply for HTTP checks (#607)\n\nDjango would try convert to unicode when saving the\nraw_data TextField. So we save time and potential trouble\nwith non-standard encodings.\n\nDocs:\nhttps://docs.djangoproject.com/en/1.11/ref/unicode/#models\n", "proba": 2.1050907434982946e-06} {"commit": "cbe92deebc58b08be55fdd21f5562ee5b538c64d", "message": "Fixed character length bug on one of the rec_type fields\n", "proba": 2.2269320254508784e-07} {"commit": "8c5e9aa913015b4f317c046537e4cc13c75afc59", "message": "remove unused import\n", "proba": 7.364135399257066e-07} {"commit": "1c589a5357c01ef7db980728357216c145b08375", "message": "Permissions on modules (#17): inform the user when he's redirected.\n", "proba": 1.0224265167835256e-07} {"commit": "7a4fc8637e6e5784f4bb0b76f632547403361b6b", "message": "I think we're getting closer; still trying to make writes work successfully\n", "proba": 4.231216053085518e-07} {"commit": "2fab113ae0da068a4f4dc8d8b0054e796e13adb1", "message": "Do not pass exposure time to sub-exposure processing\n", "proba": 2.0073578355095378e-07} {"commit": "5ac162d4655c1b6ff6ea0d9da2f3fe679207de04", "message": "Python: Make Handlebar implement __eq__ to make unit testing easier.\n", "proba": 6.564987415913492e-07} {"commit": "71ff7e3d7978a2abe0f0baf776dab03193594748", "message": "remove non characters from words\n", "proba": 0.9999994039535522} {"commit": "dbfc9c2479da00c9507218c1981950b58a456762", "message": "add back change for out= I blew away\n", "proba": 1.1224634590689675e-06} {"commit": "a06e2d79e5acc8133cab7ff6472e409ef833e325", "message": "Warehouse unit tests fixed. #140.\n", "proba": 1.1018879320090491e-07} {"commit": "653dce9190d5e96d3602d83a231b125a7352ce94", "message": "PRF: use faster iteration\n", "proba": 6.4825376284716185e-06} {"commit": "5dfba289eb945d6784eed322e6a653442a781d3d", "message": "unit test for test_decode_bytes\n", "proba": 6.427871539926855e-06} {"commit": "bbf5761e26ebaaeb95ea801d50cbd23abc1959f1", "message": "v8.1.2\n", "proba": 3.1559222406940535e-05} {"commit": "a9443cc0d3c04ee6834c3bd7d0218d7c9cb3583d", "message": "bugfix:\u6587\u672c\u7c98\u8d34\u65f6\u7684\u52a8\u4f5c\n", "proba": 1.6427104299054918e-07} {"commit": "3ca6768d51d8a225a14808863efc92c6b5b99055", "message": "remove debug flags\n", "proba": 8.777997209108435e-07} {"commit": "fe2e7fff1796ce690bc25e4a08d5c70737c830b5", "message": "add CachingFileSystem.hash_name() to make hashing customizable\n", "proba": 5.877486728422809e-07} {"commit": "eeb4caa622bb6a991f061bdbf2a7811feccf029d", "message": "import consumer\n", "proba": 1.6594528915447881e-06} {"commit": "0b98b6a838ac72c93db042aaa330be283fddf1ba", "message": "adding input into variables\n", "proba": 1.3281921383168083e-05} {"commit": "5d728278859df24972060d7ac33ee51b114ffbcd", "message": "also copy out the .sqn file from tbl2gbk as this is useful for ncbi submission after a systematic fixing\n", "proba": 1.2214329103699129e-07} {"commit": "8d98ccb2d626453815dc431fbfd81c5ea59f0db4", "message": "Added source projection\n", "proba": 1.7124220619280095e-07} {"commit": "401ccdc82d5a928db86c3c100ed1a9be988897cd", "message": "add_font.py: Implement @rsheeter's review feedback.\n\n- Use gflags instead of argeparse\n- Inherit designer, category and date added values from previous file instead of making a network request\n\nhttps://github.com/google/fonts/pull/951#pullrequestreview-38259628\n", "proba": 7.187812229858537e-07} {"commit": "6ed5287bd24fa1c659c9761c9c8516c93a1d11b5", "message": "New tests added (some error handling checks)\n", "proba": 1.0921979054501207e-07} {"commit": "9e3c70fde024d22e816670f7cd35cb5ea410de24", "message": "Check for None values in j2cl_util.get_or_default.\n\nPiperOrigin-RevId: 112099516\n", "proba": 1.0109068171004765e-05} {"commit": "c25d9ae32e3f2390bad05dc652354ad6cdb4ef4d", "message": "Add test for last element aggregation\n", "proba": 3.5043643720200635e-07} {"commit": "20247aca2d72a3a547d68fe43f5a9ced5f28896a", "message": "erased references to the old methold\n\nfully converted to new method where the data is held in a list of dictionaries", "proba": 1.3636521600801643e-07} {"commit": "41f9430fdca08245c4c535517df2b69a5ab4af2a", "message": "the realization of msg(), a convenience handler for _send_msg()\n", "proba": 5.5192263062053826e-06} {"commit": "4dfd43f3349e5d977c89835fc9cbde6b3460f962", "message": "Remove debug messages from game.py\n", "proba": 9.176120556730893e-07} {"commit": "4760654be2e2da4171624510d1e565134b363359", "message": "More orentation issues\n", "proba": 1.2422766815234354e-07} {"commit": "543a137506610ebdc294589be22bdb11e25301f4", "message": "Fix udev.rules warning under Linux Mint\n", "proba": 5.700949259335175e-07} {"commit": "a036a7a880fb83d122a0159976eb972cb79703e8", "message": "fixed a formatting thing that was bugging me\n", "proba": 2.0698460900803184e-07} {"commit": "a0bcb4d4f08f780544162c9200bf074c839adae1", "message": "Fix PyLint warning about sorting for imports\n", "proba": 1.7301307764228113e-07} {"commit": "4e5066f8f271b9d5f320478f295da0912c3af7e2", "message": "Added support for `Clip` object albums, and added the `filename` and `device` properties\n", "proba": 4.093314771580481e-07} {"commit": "7c2228ea883f487ebd9a7f92b38e2d1a36489aa3", "message": "Fix #14\n", "proba": 5.315461066857097e-07} {"commit": "6a888298e75d5e90714225b9906a6b8b49988f41", "message": "refactoring: now cli paramters are used only by the Settings class\n", "proba": 2.0122415378409642e-07} {"commit": "ed7acbd8b75341b2d225bbe227d088f445d3b6df", "message": "python2.7 compatible version of dicom_import.py\n", "proba": 5.741400741499092e-07} {"commit": "1b64cc8c3ae726050cfb4c6b89d456794cc3b6e9", "message": "Add github commit command\n", "proba": 3.869861757266335e-05} {"commit": "81def99ba607dc0a51e827bfdb4b23c8780ec662", "message": "Cleaned up Main\n", "proba": 8.216923106374452e-07} {"commit": "6a8b45bba391d9cc1e4ca5e529696f5facfe1224", "message": "Updated doc strings.\n", "proba": 1.4080814025874133e-07} {"commit": "432756b0dcf06eacd603e06d8dd8a77e99404afe", "message": "fixed title grabing name\n", "proba": 6.562439693880151e-07} {"commit": "45315a1d76be0de59f163ac9297f3ffe2e44c1ac", "message": "read external connectivities matrix in kBET", "proba": 1.4857333496820502e-07} {"commit": "34081c76bea3b4e3edb7fb14b194124cbe3d3bb7", "message": "make sure we pass patch_size here\n", "proba": 1.2421428152720182e-07} {"commit": "795e9d06c22bee7c5975c6ce3cdf1d39d873cd46", "message": "Use short_path for runfiles paths\n\n_java.path was (incidentally) working, but is now broken. short_path is\nfor paths relative to the runfiles tree.\n\nSee https://github.com/bazelbuild/bazel/issues/1316 for more info.\n", "proba": 1.0989809595685074e-07} {"commit": "49aa282aafd79284ab5ed8b591250c4925066328", "message": "there are 7 branches but the values are not right.\n", "proba": 2.97605083687813e-07} {"commit": "2e1c8affd68e4600d8d92ffa125b02e5041c2bac", "message": "prevent destructive lftp\n", "proba": 1.8266133565703058e-06} {"commit": "fdea9207b6f9924537726ab024fe1368dba08177", "message": "Updated, and minorly tested, working code\n", "proba": 1.2336793986378325e-07} {"commit": "29a4a504495fb5e93c4d1fcd149e51efd2f8dbaf", "message": "Allow credentials from environment vars and more cleanups\n", "proba": 1.2283074113383918e-07} {"commit": "48b37d4c3e83746f8d5c83f57c9c00c8749ceb15", "message": "restored alpha + beta normalization\n", "proba": 1.0467761057952885e-06} {"commit": "d6c01be9e09efc656baae3575910d76383a5a006", "message": "Wrap exceptions that might occur with EDW schema change to alert user\n", "proba": 1.664545692392494e-07} {"commit": "d08fa498cde571179a2636b7ea5733b9af65debc", "message": "new list clear\n", "proba": 1.3386641057877569e-06} {"commit": "a137cafa956e8fef8c023ca0b529bd532efc19cf", "message": "new code\n", "proba": 9.052632776729297e-07} {"commit": "fbbcaebdc2a4bef766e188cf61e7de90a13f85ec", "message": "fixed the flow of two_sided_attack\n", "proba": 0.00012387063179630786} {"commit": "8d524bb92fed76a2cc533ced505e00e8591c382c", "message": "remove unnecessary coord array addition\n", "proba": 1.7995922462432645e-05} {"commit": "9ee0ba57114f9b699dd8103c50c31c52acc5bb05", "message": "Added EtcdObj.json property.\n", "proba": 1.203911210723163e-07} {"commit": "c1d81ba29920b42d574e7cdc8d78a75259c03e09", "message": "Recreate initial migration", "proba": 4.513582894105639e-07} {"commit": "a46c5f02377fbf9c1d9a592e912b0736c4cd72a5", "message": "Restart acceptance test.\n", "proba": 2.2047584025131073e-07} {"commit": "e5b1551495c52c0c243b21cdb097c59e680effa8", "message": "Added test that should fail\n", "proba": 2.338777704835593e-07} {"commit": "3a65f634a486ad3209ace4c7de3d2a4eadfdac14", "message": "bugfix:\u6253\u5f00\u6587\u4ef6\u4e0d\u5b58\u5728\u65f6\uff0c\u8def\u5f84\u5f02\u5e38\u6e05\u7a7a\n", "proba": 2.8075987756892573e-07} {"commit": "f159f04fabd0035ac1bdf12015d24c45e3a12fa1", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "2f21e0026b7bd418dd3f95736caa4a567eb9c1be", "message": "remove socketfile if it already exists\n", "proba": 7.919059044070309e-07} {"commit": "a9ec76a6d929902cd880e574eb38413b823df089", "message": "Remove a few more tests from Travis\n", "proba": 1.9281792162928468e-07} {"commit": "3a7ab2152c988c27ae6f94a8c9aa1a8372f8403d", "message": "add additional colors as click options\n", "proba": 2.7865789320458134e-07} {"commit": "765d65433bc20509c2c8f504aa16889509034610", "message": "Updated gen_cc.py so it doesn't overwrite files that haven't changed.\n", "proba": 1.0690401097690483e-07} {"commit": "ecb48779a10740042754d1905309cf24a55d9944", "message": "Closes #7: Load block loads filename also\n", "proba": 2.172819790757785e-07} {"commit": "b023807956b9b56ae7b29fc6038232bd04e01084", "message": "Working dir fuer gewaehlte datei\n", "proba": 3.241919159790996e-07} {"commit": "a116cb50044a0a0c52d2f70be5a40caf7fdade8a", "message": "Update run_job tests to match new context aware run_jobs.\n", "proba": 1.2096207058220898e-07} {"commit": "0edff7f024ec3201a7db20edd323c09b96923cad", "message": "[catapult_build] Disable telemetry tests on the Android cq bot.\n\nTBR=nednguyen@google.com\n\nReview-Url: https://codereview.chromium.org/2270833004\n", "proba": 2.2271974842169584e-07} {"commit": "16dd016850b2045787b09c9b0e0a76b33e421a54", "message": "change phi-dependent handling\n\n", "proba": 2.693154499411321e-07} {"commit": "de52cad6f4a988b6e7d653fbfc728feba74c20f6", "message": "documentation\n", "proba": 8.078399105215794e-07} {"commit": "34817ae133c636356de6b437d361241e6cc8aa5e", "message": "4e8fc2a0-2e72-11e5-9284-b827eb9e62be", "proba": 5.902212706132559e-06} {"commit": "2ac1b1946232ef4035dbf04c103df97e89d5eabc", "message": "947b3394-2e72-11e5-9284-b827eb9e62be", "proba": 1.1563340649445308e-06} {"commit": "015db5f5a59a7ca9f86ce5e8f161bf525e20dbf6", "message": "fbb78d90-2e73-11e5-9284-b827eb9e62be", "proba": 1.4747887462362996e-06} {"commit": "702f735b7fb747bb832524b8587584b5033beeac", "message": "c6ba7e32-2e72-11e5-9284-b827eb9e62be", "proba": 5.106930075271521e-06} {"commit": "678b418f7ce5c7e3bb2fb398c17344f5cf93ff43", "message": "449f466c-2e72-11e5-9284-b827eb9e62be", "proba": 2.5158756216114853e-06} {"commit": "2410f9b128b5b6ab6259a03c3426aafde4c4db16", "message": "9b2686fe-2e71-11e5-9284-b827eb9e62be", "proba": 2.2764536424801918e-06} {"commit": "510a6b4b82c24505c7d982a87fc1e91b27e97ba0", "message": "d0752732-2e73-11e5-9284-b827eb9e62be", "proba": 2.114902372341021e-06} {"commit": "b55bd245dad2b4620d266c13c52cb40cd4ed298b", "message": "8772d3ce-2e71-11e5-9284-b827eb9e62be", "proba": 2.959732455565245e-06} {"commit": "e271fe19ef8c34b991a2bcf96d2cb9a5a738f00b", "message": "00d4a9c0-2e74-11e5-9284-b827eb9e62be", "proba": 3.978898348577786e-06} {"commit": "c0d90bc5510ceafcbf6a0ebccdd46e47b150b804", "message": "6578cc0a-2e72-11e5-9284-b827eb9e62be", "proba": 1.861297505456605e-06} {"commit": "235da01edde3a080ab9c3a248f0a385ed63aecce", "message": "a44f180c-2e73-11e5-9284-b827eb9e62be", "proba": 1.6081423837022157e-06} {"commit": "ec3e8f379ab12350b4bf804594b405882a9a416c", "message": "40da4f4a-2e72-11e5-9284-b827eb9e62be", "proba": 3.1102831599127967e-06} {"commit": "03f98ffa45444e1756ab1ef2396d634235ee42e8", "message": "89fb661e-2e72-11e5-9284-b827eb9e62be", "proba": 1.3522045492209145e-06} {"commit": "01d464ca4240d5d18e70ea73b424541748a53f0a", "message": "b165487c-2e73-11e5-9284-b827eb9e62be", "proba": 4.1120583773590624e-06} {"commit": "a6a3069057ab8852052f4aaf5f96cd8619b60b3e", "message": "1fec51b0-2e73-11e5-9284-b827eb9e62be", "proba": 1.6268222680082545e-06} {"commit": "028b1dc1d533ede12482ca029f277e3afc86095a", "message": "96559704-2e72-11e5-9284-b827eb9e62be", "proba": 1.8816472220350988e-06} {"commit": "2d3a37727ed3b97f67720880fef75dfaf707a221", "message": "7d29b310-2e71-11e5-9284-b827eb9e62be", "proba": 2.238328306702897e-06} {"commit": "dc17af80d857d97b59db233785471e28647ee604", "message": "872d354c-2e73-11e5-9284-b827eb9e62be", "proba": 4.108957455173368e-06} {"commit": "0819511cf0093f68c624da0e9e20c0674a0c3bd2", "message": "5eb2bad2-2e74-11e5-9284-b827eb9e62be", "proba": 9.955550922313705e-06} {"commit": "25fed6bb01256a5538df0b8fc436f2df4cca72a3", "message": "a8af4ad0-2e72-11e5-9284-b827eb9e62be", "proba": 2.433359895803733e-06} {"commit": "00bd8712765d1191742f389e23bf6eb59d7da7ed", "message": "6da32d04-2e71-11e5-9284-b827eb9e62be", "proba": 1.9692540718097007e-06} {"commit": "884b0fd53ada1e35eafc32de5a21facda4e93b64", "message": "63231080-2e74-11e5-9284-b827eb9e62be", "proba": 2.0031327494507423e-06} {"commit": "fafa8dac3ad6d97e407ba536a0462462a954fa10", "message": "30b01118-2e72-11e5-9284-b827eb9e62be", "proba": 1.4106999515206553e-06} {"commit": "31aba6dc6c033dab22e08818de31a685f3adfa85", "message": "ccb290aa-2e71-11e5-9284-b827eb9e62be", "proba": 7.69227153796237e-06} {"commit": "e02a0de299d9902f34a42d991e371b510781fe4c", "message": "3739d292-2e74-11e5-9284-b827eb9e62be", "proba": 2.05588753487973e-06} {"commit": "8ef5d45aa62a6079b1d048cd98578bcb3dff3ea1", "message": "143d898e-2e72-11e5-9284-b827eb9e62be", "proba": 2.166964804928284e-06} {"commit": "59b524af37149ca9fedd4721f7a3c60aee136fb2", "message": "22ce9218-2e72-11e5-9284-b827eb9e62be", "proba": 2.218081590399379e-06} {"commit": "88346a3f8964ae1dc8b637792b5a6903c1589069", "message": "afad00e2-2e73-11e5-9284-b827eb9e62be", "proba": 1.8403709418635117e-06} {"commit": "ac8719076fda66e7965c05b8080e8c8233ae47ae", "message": "2657cf74-2e74-11e5-9284-b827eb9e62be", "proba": 8.801166018201911e-07} {"commit": "bb9da671d57c6967494751b6141f4e0650a035e0", "message": "7760f51e-2e72-11e5-9284-b827eb9e62be", "proba": 1.7313831222054432e-06} {"commit": "35f42f7cf392528d3b77105d49d560e58aaa4b3e", "message": "01c5dee6-2e72-11e5-9284-b827eb9e62be", "proba": 1.2626658190129092e-06} {"commit": "8b2329e6c9dd8e89003dbb136ad12736c8bc9fee", "message": "38b59f4a-2e72-11e5-9284-b827eb9e62be", "proba": 2.662773340489366e-06} {"commit": "a8d619915eadc406a37cf349bfa19d4465e45143", "message": "d6540300-2e71-11e5-9284-b827eb9e62be", "proba": 1.1964364148298046e-06} {"commit": "bc7cec3749a0e719f5d13665b95105898d395be2", "message": "4ebed6a8-2e72-11e5-9284-b827eb9e62be", "proba": 2.9328291475394508e-06} {"commit": "14f524bf27fc1d64a01096f84b02ea3da8ebace6", "message": "2b2b9b0e-2e72-11e5-9284-b827eb9e62be", "proba": 3.966872554883594e-06} {"commit": "3ed933be45463f7ffa53635fc4f0cd16da639e20", "message": "0bf5df92-2e72-11e5-9284-b827eb9e62be", "proba": 3.2833086152095348e-06} {"commit": "974002b5508cae30b158380d1b2a7f483a31a6d0", "message": "01d77ae8-2e72-11e5-9284-b827eb9e62be", "proba": 6.205892191246676e-07} {"commit": "1ba56b86ac45861dcb25d0167e7492cc64a0616b", "message": "0f185884-2e73-11e5-9284-b827eb9e62be", "proba": 1.216219061461743e-06} {"commit": "2856ed0629030d77ba8cbf8643666aedc9ae168e", "message": "8f4b4d0a-2e72-11e5-9284-b827eb9e62be", "proba": 4.408859240356833e-06} {"commit": "70c8cb80bb1438d69bc7c896b5b0599dad2d8750", "message": "f4b516ae-2e71-11e5-9284-b827eb9e62be", "proba": 8.242420335591305e-06} {"commit": "d83bd6a67428d1dfd95f96d6da6c4221793be6d8", "message": "3fb55590-2e74-11e5-9284-b827eb9e62be", "proba": 1.3881816585126217e-06} {"commit": "5c14bd315afbc6f5b4e96193daf4e27f8042d7d2", "message": "08c24478-2e72-11e5-9284-b827eb9e62be", "proba": 1.512021526650642e-06} {"commit": "6ee8383288766083ec9d4cb0c135c2b4a3ac4bd6", "message": "e68d1458-2e73-11e5-9284-b827eb9e62be", "proba": 1.512523454039183e-06} {"commit": "9dc744dc3106764e0c74e0bfe0ebb0792cde3a58", "message": "f2d4d4a8-2e73-11e5-9284-b827eb9e62be", "proba": 1.5208348486339673e-05} {"commit": "f8724d37a35c1171bca40440a67849f358e3c246", "message": "46583824-2e72-11e5-9284-b827eb9e62be", "proba": 2.044238954113098e-06} {"commit": "fc073d7722599168a8ca3aa7860900be683644a3", "message": "a03615a6-2e71-11e5-9284-b827eb9e62be", "proba": 2.578914745754446e-06} {"commit": "14087bbe689d2d0bd5c0110350d1ded7b7a24aa0", "message": "b5f6513e-2e72-11e5-9284-b827eb9e62be", "proba": 1.6848123323143227e-06} {"commit": "3ff53f3500a484bf32f7803c418f1a213aa54df5", "message": "9a521210-2e72-11e5-9284-b827eb9e62be", "proba": 3.9134624785219785e-06} {"commit": "1f387824c21b91cca9fffac8d9ed32fbabafa5fb", "message": "1f282bae-2e74-11e5-9284-b827eb9e62be", "proba": 1.064534785655269e-06} {"commit": "4c85785984d8a7d7b51ac6ad9893c06d124cc12e", "message": "1a343e22-2e73-11e5-9284-b827eb9e62be", "proba": 3.926958470401587e-06} {"commit": "54a91f623696258f3b97f2d9a899eca0ec414f75", "message": "1c1a789c-2e72-11e5-9284-b827eb9e62be", "proba": 4.578261723509058e-06} {"commit": "fae0ea6c3da632edb312ac3851ad7cef3c7b69eb", "message": "b37badf0-2e72-11e5-9284-b827eb9e62be", "proba": 2.731844915615511e-06} {"commit": "f4ad1305a138c6ae13ba76ba352b253918f2ef46", "message": "b43f4ec8-2e71-11e5-9284-b827eb9e62be", "proba": 2.9816178539476823e-06} {"commit": "9594a10567c6d39e96fd0fec53e2d2aed9c121da", "message": "ee33b876-2e71-11e5-9284-b827eb9e62be", "proba": 1.2667871942539932e-06} {"commit": "0dd80fb0b9b69a81907ccaf3b5954cf5be3949c9", "message": "cdaa9a5a-2e73-11e5-9284-b827eb9e62be", "proba": 4.065869234182173e-06} {"commit": "c2ec8e9b643b610634c49aa0cb0735f4b5c95cd2", "message": "87beffe2-2e71-11e5-9284-b827eb9e62be", "proba": 1.3690954574485659e-06} {"commit": "65e792c2d480a1a8d046f1934453b5f2fc1e9356", "message": "71b7c006-2e73-11e5-9284-b827eb9e62be", "proba": 3.10201539832633e-06} {"commit": "4dd1f0124a939cb19f1c7bf6f2d0be193abcc0a1", "message": "e186e0f2-2e72-11e5-9284-b827eb9e62be", "proba": 5.049426363257226e-06} {"commit": "36ca1028a3bed05ba9a56813bb2e0220d1b835d5", "message": "dbd60f7e-2e73-11e5-9284-b827eb9e62be", "proba": 1.714524842100218e-06} {"commit": "a6884b57136c0ae19a4b5839ab155267d8ecd5b7", "message": "39b0249a-2e74-11e5-9284-b827eb9e62be", "proba": 1.4970763686505961e-06} {"commit": "c148058a5fb7fcf48f4e65662bccac31b7026e1a", "message": "a72ca572-2e72-11e5-9284-b827eb9e62be", "proba": 1.7724280496622669e-06} {"commit": "7b26ea4507223c0303eb41161870481df22c4310", "message": "081bd24e-2e74-11e5-9284-b827eb9e62be", "proba": 1.272021904696885e-06} {"commit": "e9313102c9fba41633341349eb247aa5165e2b98", "message": "097f073c-2e74-11e5-9284-b827eb9e62be", "proba": 1.3610292626253795e-06} {"commit": "ac6fdf2090a5f08bd5f30216bd261e93c5fedcfc", "message": "58833836-2e73-11e5-9284-b827eb9e62be", "proba": 1.7297722934017656e-06} {"commit": "fe8c5f9e184f4d1b48a3890bca7c874ed51c1cef", "message": "55439ac6-2e73-11e5-9284-b827eb9e62be", "proba": 1.7805534753279062e-06} {"commit": "4d715d6e7760c484ccfea1e23b01f515f2621120", "message": "69b9c978-2e71-11e5-9284-b827eb9e62be", "proba": 1.260604790331854e-06} {"commit": "6d3914624851ac8f29b5325f35f8c84a5d983b50", "message": "714b5f88-2e73-11e5-9284-b827eb9e62be", "proba": 1.7987438241107157e-06} {"commit": "3aadb8505746d589ccfb1013925cf391e75d763c", "message": "f2a07e7e-2e73-11e5-9284-b827eb9e62be", "proba": 7.967184501467273e-06} {"commit": "96529f1d4642656950c465987eb08a3ca493a47b", "message": "835d56aa-2e72-11e5-9284-b827eb9e62be", "proba": 4.754934707307257e-06} {"commit": "a804d75036968fc516b0fa5d23c3740fa7123517", "message": "8221bd72-2e71-11e5-9284-b827eb9e62be", "proba": 1.1733937981261988e-06} {"commit": "defa185191111ed2d3a716d3f76b2db36e8bcf21", "message": "78a41c72-2e71-11e5-9284-b827eb9e62be", "proba": 2.833117832778953e-06} {"commit": "5e7a5151235b755239d40b7cea8de44b65c0a281", "message": "77964ddc-2e71-11e5-9284-b827eb9e62be", "proba": 1.2814068668376422e-06} {"commit": "2cb8ee54b9c3c359c4827c285bec68dac2ad32a5", "message": "59d7b0f0-2e72-11e5-9284-b827eb9e62be", "proba": 2.6391153369331732e-06} {"commit": "d8bb180c3a51aea76b84e0765802971fb317ca8d", "message": "289ad22e-2e72-11e5-9284-b827eb9e62be", "proba": 2.5681868009996833e-06} {"commit": "8f0bdefd8c60b3d7e1565a74de97ea1f8443170f", "message": "733f7b36-2e72-11e5-9284-b827eb9e62be", "proba": 1.7354299188809819e-06} {"commit": "5c953f1fdfd497356fb135baafecd2647e2279bd", "message": "2dadbc1c-2e73-11e5-9284-b827eb9e62be", "proba": 8.36472463561222e-06} {"commit": "102b13bef42e82e73904bb7b4e219b7a365888e5", "message": "32ae04d2-2e74-11e5-9284-b827eb9e62be", "proba": 3.609201030485565e-06} {"commit": "959b2c075957381448a6063652cc4f23ae1ac4ae", "message": "adba0f92-2e72-11e5-9284-b827eb9e62be", "proba": 2.3875372789916582e-06} {"commit": "a01f1791a5a1099a97232a908a623bd5325b5c9c", "message": "54f317e0-2e73-11e5-9284-b827eb9e62be", "proba": 1.674779127824877e-06} {"commit": "1d674cfb28a88919d29b025f2956c3d3af183860", "message": "ca55e7c0-2e72-11e5-9284-b827eb9e62be", "proba": 2.353206809857511e-06} {"commit": "62cdec4f099dcf2abe7ec244ab7755cd2c4d8a2c", "message": "7e15d252-2e73-11e5-9284-b827eb9e62be", "proba": 3.7658453493349953e-06} {"commit": "7015d9dc3eee3ae5aab34c52bb151f3c6097eadb", "message": "d869f816-2e71-11e5-9284-b827eb9e62be", "proba": 2.446445932946517e-06} {"commit": "6f446f0952fa8df9afafab88cdabfb128ba5a281", "message": "095c35fe-2e74-11e5-9284-b827eb9e62be", "proba": 1.523432956673787e-06} {"commit": "258bcca24fa47828e134699f94c34f6ab1793742", "message": "b61bc6ee-2e72-11e5-9284-b827eb9e62be", "proba": 3.0238873023336055e-06} {"commit": "326a675e7bf7badbabf1144ead662700214f8c02", "message": "10961aee-2e72-11e5-9284-b827eb9e62be", "proba": 1.8390620653008227e-06} {"commit": "8dec4987ecf088523496e9eb75e130c6a03af525", "message": "47429d1a-2e72-11e5-9284-b827eb9e62be", "proba": 3.4762285849865293e-06} {"commit": "1884865f1a551796067fba6f53c3ac23794a5af0", "message": "4ffc10b2-2e72-11e5-9284-b827eb9e62be", "proba": 3.6169469694868894e-06} {"commit": "a126755c89b52485ac30ae0977bdbda3afd26763", "message": "cf58eac4-2e72-11e5-9284-b827eb9e62be", "proba": 7.289962127288163e-07} {"commit": "9b4ab0911a3f99b486cfceeb0a474ae2143a52cc", "message": "22f6dc04-2e73-11e5-9284-b827eb9e62be", "proba": 1.016828036881634e-06} {"commit": "d0835b6afec284906aadafd33447c4de385130b5", "message": "c96d22ce-2e72-11e5-9284-b827eb9e62be", "proba": 1.7454418639317737e-06} {"commit": "f41c993aab85a717415c9e04019ec3442cebfb47", "message": "a67d3f96-2e73-11e5-9284-b827eb9e62be", "proba": 1.5389847476399154e-06} {"commit": "6955b0da8d298b95494862671d52a5e29c636ece", "message": "e794b17c-2e72-11e5-9284-b827eb9e62be", "proba": 2.6378900201962097e-06} {"commit": "570d0849083c778f1a3adbf796a39e9a545f1a55", "message": "9a3669bc-2e71-11e5-9284-b827eb9e62be", "proba": 4.7708690544823185e-06} {"commit": "c0d395318f72a7fa740553e458e49caf4a7bb2c1", "message": "53c00662-2e73-11e5-9284-b827eb9e62be", "proba": 1.614590246390435e-06} {"commit": "2714a43228e0b240b6e9f32ec4c1e1e637f3e62f", "message": "a7f1284c-2e73-11e5-9284-b827eb9e62be", "proba": 2.3396974029310513e-06} {"commit": "e495f2114a3e33c55ec471a790fafad7ef499586", "message": "696fda68-2e74-11e5-9284-b827eb9e62be", "proba": 1.2665794884014758e-06} {"commit": "0c2db27a2b2e460ed6e937420f0fe6b1f4cd35c6", "message": "1d115c5c-2e72-11e5-9284-b827eb9e62be", "proba": 2.1541752630582778e-06} {"commit": "c88b85cbddfbfe6ab3f7f179c23d9d196b0b96a4", "message": "5a8e7bd2-2e72-11e5-9284-b827eb9e62be", "proba": 5.3588137234328315e-06} {"commit": "468fcddafccf1b65d0ea60a05cdc399b2b7df180", "message": "Fixed some query on paste.py view.\n", "proba": 1.1015538348146947e-07} {"commit": "d0c0d6c73b8f562e351682ddd0a6ddcc5557f0b5", "message": "2925b374-2e74-11e5-9284-b827eb9e62be", "proba": 1.1688258609865443e-06} {"commit": "61845497e9e62ae5ccad04e0b7213c4dd76e2b85", "message": "Much slicker/efficient calculation of xg0, yg0 using Numeric. (Gary Bishop\nsuggestion).\n\nOptional 3rd argument for mypltr to make it suitable for direct use in\nplcont (although this example doesn't use mypltr that way at the moment).\n\nsvn path=/trunk/; revision=3736\n", "proba": 6.549123554577818e-07} {"commit": "0e4ae255177da4a06cfbb6654fc56ebeda0b0577", "message": "ec28b78e-2e71-11e5-9284-b827eb9e62be", "proba": 1.94217545868014e-06} {"commit": "cd6ef8819a4509223d8f54e552f5a4f901efccad", "message": "a8d5d262-2e73-11e5-9284-b827eb9e62be", "proba": 2.1316036509233527e-06} {"commit": "b6d80356f34c1ea3e2e94c074cf3ce02edc9f9fb", "message": "5d0ebaf6-2e73-11e5-9284-b827eb9e62be", "proba": 1.6770839010860072e-06} {"commit": "6b46c96920f6776fd9f0c058c584cd94bcdcafa3", "message": "5aab3dde-2e73-11e5-9284-b827eb9e62be", "proba": 1.2898495924673625e-06} {"commit": "65e181723ec1324b063bbac5fba503bbc1141e7a", "message": "be1c3460-2e71-11e5-9284-b827eb9e62be", "proba": 3.1471199690713547e-06} {"commit": "214ac52c8ed6ae3e7fe5f231fc440e23d3f73a0c", "message": "909e0616-2e72-11e5-9284-b827eb9e62be", "proba": 1.240089773091313e-06} {"commit": "eec7999694bae373d7f53d8bc38cedb26d3f1ab4", "message": "03bdaebc-2e73-11e5-9284-b827eb9e62be", "proba": 1.1829827144538285e-06} {"commit": "b8464c2b648e0d54ac5954656e8aa2f8d79331a2", "message": "55bc8ce2-2e73-11e5-9284-b827eb9e62be", "proba": 9.624789527151734e-06} {"commit": "cb64ae5c3a48df4454667e3a91156c7ce5cd47bd", "message": "23ee83d6-2e74-11e5-9284-b827eb9e62be", "proba": 1.4234858554118546e-06} {"commit": "951118b2b93c994570eead63668c8a49a03f085a", "message": "29601938-2e74-11e5-9284-b827eb9e62be", "proba": 1.1017141332558822e-06} {"commit": "9d30db7c3f74ac8c3563f8b0cd14a46571d7a1e8", "message": "2a12ddca-2e74-11e5-9284-b827eb9e62be", "proba": 4.5958163354953285e-06} {"commit": "9beb09227f80150b618dd3defa069d8214367aea", "message": "correcting check if two uniform meshes are aligned.\n", "proba": 1.273161132075984e-07} {"commit": "d907f7fe3d996593826aba7a5409efabfa22ff63", "message": "cffe943c-2e73-11e5-9284-b827eb9e62be", "proba": 1.3721056575377588e-06} {"commit": "bfed70e6a9f3ac0c5ec356eae39a139fb4f85cfd", "message": "099db2d8-2e72-11e5-9284-b827eb9e62be", "proba": 2.3065147161105415e-06} {"commit": "a69c50f470be354da11a3c21f3bec28f73ae1604", "message": "use str on objects which are not strings\n", "proba": 4.432746209204197e-05} {"commit": "327746a6842e0142a695e4dd8b448e8fb375c5d8", "message": "bf47b6be-2e73-11e5-9284-b827eb9e62be", "proba": 1.1605598047026433e-06} {"commit": "aba72b0f1ed29e7c5d92a9773bb3b62aa066cfad", "message": "v7.0.22\n", "proba": 3.4295946989004733e-06} {"commit": "7ac0cfd5d2e7565e08687437f90f13833eb58374", "message": "846517c2-2e72-11e5-9284-b827eb9e62be", "proba": 4.679448920796858e-06} {"commit": "801a12d7482e3af681d7366eba6d22a286e4179a", "message": "e9886a6a-2e71-11e5-9284-b827eb9e62be", "proba": 1.7034843722285586e-06} {"commit": "590412194d5ac339f1f265d93287cc12baa13cac", "message": "edcbee12-2e71-11e5-9284-b827eb9e62be", "proba": 2.010543312280788e-06} {"commit": "d942eaa98280b8b2d7de0a0e6cbd09fd63e61289", "message": "705cea8e-2e72-11e5-9284-b827eb9e62be", "proba": 1.4296883819042705e-06} {"commit": "0a5895fdf9002e8c8146cfdccdd4ad1a62938aa2", "message": "df22af9e-2e72-11e5-9284-b827eb9e62be", "proba": 2.9494899536075536e-06} {"commit": "da9371f1beaaf4737f0c782f4bec81f68aeefa56", "message": "ad805dd8-2e72-11e5-9284-b827eb9e62be", "proba": 3.2722807645768626e-06} {"commit": "1f52f7af9bbb5f2ffa846bcf02883aca2622a596", "message": "74f89f6a-2e73-11e5-9284-b827eb9e62be", "proba": 1.9009900142918923e-06} {"commit": "1e71e529ec8a5380aea6b0a85693ddc06169f1dd", "message": "f1b92542-2e73-11e5-9284-b827eb9e62be", "proba": 2.8225408641446847e-06} {"commit": "18bcf8cbdb1f92bfdaf559d74a7aff56a81f557a", "message": "4532a790-2e72-11e5-9284-b827eb9e62be", "proba": 2.5311408080597175e-06} {"commit": "5b409bd3c3ecb7204c2cba64abcb4e31c0a446e1", "message": "Add test coverage for broadcast status transition\n\nThis was mentioned in an old pen test report that you could send a\nrequest twice to set a broadcast message as broadcasting which would\ntrigger us to send two alerts.\n\nIt looks like this is now fixed and this test coverage backs that up.\n\nNote, it's unlikely that it would have been an issue anyway as the CBC\nwould likely have rejected the message as it would notice it is a\nduplicate.\n\nNote, this test coverage is not supposed to be exhaustive of all the\npotential transitions but covers the vast majority of ones that we care\nabout.\n\nSee `BroadcastStatusType.ALLOWED_STATUS_TRANSITIONS` for allowed\ntransitions.\n", "proba": 1.9804251394361927e-07} {"commit": "d5c76ecde798560f54463cd6fdf6c2292d40a102", "message": "2ab7bf08-2e73-11e5-9284-b827eb9e62be", "proba": 2.292761791977682e-06} {"commit": "1a67306f4c88b0ddfbec4b947720dd27b0dab123", "message": "40f1c92c-2e72-11e5-9284-b827eb9e62be", "proba": 1.6700739706720924e-06} {"commit": "665d7242a605551174ea650328700f19afdbacc3", "message": "86267a20-2e71-11e5-9284-b827eb9e62be", "proba": 2.8006668344460195e-06} {"commit": "881f5ac50f1c56e2a5aa40140adf194997c1ffa8", "message": "3c60cf14-2e74-11e5-9284-b827eb9e62be", "proba": 1.933356770678074e-06} {"commit": "f9419a6151598e9f796e86c29b9fe8dd55727c0d", "message": "8a70a09c-2e71-11e5-9284-b827eb9e62be", "proba": 2.115888946718769e-06} {"commit": "9b10257205ebca83421cc3c4a3e4314f452bbd38", "message": "3524af7c-2e74-11e5-9284-b827eb9e62be", "proba": 1.9003664419869892e-06} {"commit": "f7307f3bcb81cc7d87da88f02fdaaf7d4547c1bf", "message": "Renamed test case\n", "proba": 1.0930707503575832e-05} {"commit": "c9621d5cb3e0b6cb1498661f6aa2571ed81b5e20", "message": "e2c59468-2e72-11e5-9284-b827eb9e62be", "proba": 7.29722842152114e-06} {"commit": "3909262dfd345d4e3ab01d69189ebef7f1e1524a", "message": "31dbba82-2e73-11e5-9284-b827eb9e62be", "proba": 1.496699496783549e-06} {"commit": "325dc0091faf99a648109bd1064da9158315b9f4", "message": "7d56516c-2e72-11e5-9284-b827eb9e62be", "proba": 4.00572434955393e-06} {"commit": "3f98f3b880374b2408f56c9649c944f161b429c4", "message": "e90465ee-2e71-11e5-9284-b827eb9e62be", "proba": 1.3248030654722243e-06} {"commit": "b42f84a7540b86ca23c39221c11dfff15f2b2e3e", "message": "a6f6353c-2e72-11e5-9284-b827eb9e62be", "proba": 1.7592941503608017e-06} {"commit": "06c73be9b09cf4caace01528fd3e24bd380c6199", "message": "Single quotes instead of double quotes\n", "proba": 3.9328435263996653e-07} {"commit": "09f13a0221ca6490511b0af1c1f0e6ad4f634142", "message": "ac2cf922-2e73-11e5-9284-b827eb9e62be", "proba": 5.4695528888260014e-06} {"commit": "a75b151dfa97388b75ab6a3347901df15f6142ea", "message": "fix flaky test (#22748)\n\n", "proba": 1.787775119055368e-07} {"commit": "49e93ef39668b20c6c62bd371d08611ae68bda3a", "message": "2032a648-2e72-11e5-9284-b827eb9e62be", "proba": 1.8074533727485687e-06} {"commit": "d0655bc3f51b4415212a141ae5f539d53fb29d0b", "message": "8485eb9c-2e71-11e5-9284-b827eb9e62be", "proba": 3.820387519226642e-06} {"commit": "61e07c9c8c307ecf8a9fa705359be737a10eca4f", "message": "a79a1738-2e72-11e5-9284-b827eb9e62be", "proba": 1.628048380553082e-06} {"commit": "e4db71ac5b0d3cf413b647edc59451b15d13d153", "message": "bbc75096-2e71-11e5-9284-b827eb9e62be", "proba": 3.035256440853118e-06} {"commit": "6364f1eba1d32c546b42c5014bf8eaa190d0554f", "message": "68333f94-2e71-11e5-9284-b827eb9e62be", "proba": 1.5668366586396587e-06} {"commit": "a890c4a7f28e5b3a06ab5cf33d9431c23abc3ec0", "message": "e402ac8a-2e72-11e5-9284-b827eb9e62be", "proba": 2.229848632850917e-06} {"commit": "b504284cafd7d3b70ab76acea618ec374470a090", "message": "87daa430-2e72-11e5-9284-b827eb9e62be", "proba": 1.5394750789710088e-06} {"commit": "16e0698dd648a42a33d0b82ae549b72f079fd121", "message": "ae16a8aa-2e73-11e5-9284-b827eb9e62be", "proba": 8.511517989973072e-06} {"commit": "c994f0b44e6796e3a1991d318ce9ee32b67d99d5", "message": "489edd76-2e73-11e5-9284-b827eb9e62be", "proba": 1.3011641613047686e-06} {"commit": "8080bff7c9b90aeff498f0210c24c56a5bc469af", "message": "1b543514-2e73-11e5-9284-b827eb9e62be", "proba": 1.7152019609056879e-06} {"commit": "c714bfa150ff168c5b49913179e39fdce56a3482", "message": "Added get_float to config objects.\n", "proba": 1.1061921867394631e-07} {"commit": "8a0aec34b9d22cd514bcc2404b3cab7242d90a79", "message": "Bump to 3.3b2.\n", "proba": 6.394768206519075e-06} {"commit": "1aaf86662fab81cc2de33bec5629424dea3275ab", "message": "Add SaveAnimations().\n", "proba": 1.2317408959461318e-07} {"commit": "37c8076386a0021713f0d54809b4dcc300fea1cb", "message": "when scaling down, improve the zoom to have a better quality\n", "proba": 2.765441990959516e-07} {"commit": "1c7770ba641f4bbee56e4e4f441f0294521d7be4", "message": "Add Python 2 deprecation warning, dials/dials#1179\n", "proba": 4.80701260130445e-07} {"commit": "85bb3aac26c48a9cc9c47483cc17994946d1cd94", "message": "updated for python 2.6\n", "proba": 3.8615931430285855e-07} {"commit": "30b14e0abf7bc73edcdce441e1a7b4237e3344ed", "message": "*** empty log message ***\n\n", "proba": 5.360483328331611e-07} {"commit": "7f3180aaaa6287d15e8d4930dceda0c494310941", "message": "Implement python3 compatibility\n", "proba": 1.8500864825909957e-05} {"commit": "57bf55364ef7baa89fda835e128c2b5ce01956ca", "message": "Add RouteCollection cache\n", "proba": 3.1397703992297465e-07} {"commit": "2b3c0d7fba2623267253ff8c6ce848e05388c7c1", "message": "[FIX]init.py\n", "proba": 2.602703261800343e-06} {"commit": "70134eb9b3c9ff55fcffceac294b5eddccfd80cd", "message": "Show instruction index in decimal\n", "proba": 0.0015566495712846518} {"commit": "c02dbd93a5afe7aea8e5d929a6e23a17b63b602d", "message": "Delete __init__.py", "proba": 0.0006957629811950028} {"commit": "78aefb1d6bb1b840be6372bae75fee1fe6ab011c", "message": "global: move to new code structure\n\nCo-authored-by: Jiri Kuncar \nCo-authored-by: Esteban J. G. Gabancho \nCo-authored-by: Adrian-Tudor Panescu \n\nNOTE: beware, patch amended by Tibor to use new file names\n", "proba": 2.7279244818601e-07} {"commit": "26742573e0bbdeca667ebc110d644be596fe4131", "message": "Prevent plugin from loading when its version does not match the Cura version.\n", "proba": 1.0663194416338229e-07} {"commit": "05122850379b84fbae29fdb1486f87ceafff0047", "message": "Tried to make change to help Windows NT user.\n\n\ngit-svn-id: f83f72cad00039f4d0c1d1188121771302bbc894@53 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 2.3753327695885673e-05} {"commit": "c12dc60909b8397aa3ab7d05b16ba1bf7c8da09d", "message": "Removed `using' option from Data. It doesn't seem useful.\n\n\ngit-svn-id: a9b3423f80f97d8686891a9c593c60a3eca95014@63 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 0.00011156027903780341} {"commit": "7b751fc1b6b8d7ae1a70fde986ddf5d6db04bf87", "message": "simplify import.", "proba": 1.1598380297073163e-05} {"commit": "c2285adddc9e628aa3bf24640a7813897ae7f9fb", "message": "New version: Python 3\n", "proba": 0.00039525667671114206} {"commit": "3d9c65b44a6452c4bad0572268917f0b093590b6", "message": "[Yaml] Fix re.sub py26 compat\n", "proba": 2.8231445980964054e-07} {"commit": "b90770d5a0d181c195028f24421b7fc68a9f60aa", "message": "Implement own word boundary algorithm. The AT-SPI implementations\nare inconsistent between gedit and gnome-terminal.\n", "proba": 1.9823637842364406e-07} {"commit": "3f88731bec6cefea97ade3516d6a7212c9533a45", "message": "tracking l&b", "proba": 1.3155605529391323e-06} {"commit": "5459dfc62e3a0d5b36b6d9405232382c1f8b663a", "message": "Remove unused imports and sort\n", "proba": 2.1839174735305278e-07} {"commit": "4da5860a9ab57b28235a72696cf9794f18370011", "message": "added legend guiding\n", "proba": 1.2342761124273238e-07} {"commit": "519b30fad06a80fe385b60070875942e85e85289", "message": "Bug fix for clustering VJ combos with only one chain\n", "proba": 1.5282670062788384e-07} {"commit": "eaa7afc595cc3b60aa076ff025aa0e0d58570bf6", "message": "Fix formatting to reduce PEP8 warnings\n", "proba": 1.2822479220631067e-06} {"commit": "3ac394b13987e8bba41e2126ced82200377a2b6e", "message": "Stop confusing OS X and Windows when checking operating system\n\nIn platform.platform() OS X is called 'darwin', so checking for 'win' in\nplatform.platform() returns True leading OS X systems to be interpreted\nas Windows machines using current checks.\n\nFixes #314\n", "proba": 9.340297401649877e-05} {"commit": "05b63f1d8053a970d2485591abbcb66566a3e967", "message": "refactored structure\n", "proba": 1.100406916521024e-05} {"commit": "1e0ae22f7e3d5c9f4f36b3a158355369f0843ed6", "message": "Make the CONFIG optional in routers.\n", "proba": 1.273064071938279e-07} {"commit": "33cc88565391adcc0649dffe5b61966b3abc019c", "message": "Removed buffering\n", "proba": 5.178195578992018e-07} {"commit": "e8d99b27864d32ad149ffc276dfa78bfdff22c56", "message": "Change prompt to a diamond\n", "proba": 1.2732901950585074e-06} {"commit": "bac85f7f130683a18fb884963eb5abf5271d574a", "message": "Fixed some bugs on set_collector_detail from command line.\n", "proba": 1.0396293248504662e-07} {"commit": "1a9d45a2be354755679ebd3350c7f1e2ef28e97e", "message": "Add progress bar\n\n", "proba": 9.850052720139502e-07} {"commit": "7a93d4e7d1cfae444fdafb6bb1b97e407a4b9b40", "message": "Fix comments sentences\n", "proba": 0.9999990463256836} {"commit": "a03dc198d651d441515a5325203f908c473b7f39", "message": "define DATABASES variable before assigning value\n", "proba": 5.061914976067783e-07} {"commit": "cc1e3b62ce1f20d5253dd4f82933593e706a61f9", "message": "add test with a real delay to check that we have the disruption\n", "proba": 1.4559049077433883e-07} {"commit": "7a192dafebc354aada81ef48cc9cd23004755391", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "b95c8c705d21cf44f08c278b8bf3db54d1eace07", "message": "Adds a ready event to BackgroundConsumer to wait on start. (#7499)\n\n* Adds a ready event to BackgroundConsumer to allow waiting for the background thread to start\r\n\r\n", "proba": 1.209617153108411e-07} {"commit": "6af9638d8197a5a8dcafe6ade876f44a2cb5ef93", "message": "job event data marked with _ansible_no_log should be censored\n\nsee: #5691\n", "proba": 3.41666818712838e-05} {"commit": "b60a30cbd4a3b77ad57b6c37833ef78e928a3e7e", "message": "fix a unicode handling bug in inventory source name migration\n\nsee: https://github.com/ansible/ansible-tower/issues/7740\n", "proba": 1.0693985359466751e-06} {"commit": "813fbf1973f28d9b6ce3f8af96a3848c3b692163", "message": "Patch for compatibility with ExaBGP\n", "proba": 2.102385110447358e-07} {"commit": "42a63b48ff68f2b2d11ba2c05fa5f46afb4cf7d5", "message": "Omg httplib2 oauth client support\n", "proba": 1.4314345264665462e-07} {"commit": "ae8678144e8cf7cd170d639c7350f659cc3b2909", "message": "Code format\n", "proba": 6.661450697720284e-06} {"commit": "57d117e4f002836eb9be848af20c68ac9ff571ec", "message": "`u\"\"` cleanup on rendezvous_websocket.py\n", "proba": 1.1845281733258162e-06} {"commit": "9f196449a8e1e833928171614e3f63b3991434ff", "message": "apply normalization to event data too\n", "proba": 1.1828111610157066e-06} {"commit": "faca9e23e549c13377b6e22c6033a1b094cab9f9", "message": "added some comments\n", "proba": 1.3571664680966933e-07} {"commit": "e20c43a359aaf477488e4339562c58e22d4f34fa", "message": "remove unused, legacy cp.linalg.solve() implementation\n", "proba": 5.889966132599511e-07} {"commit": "ca8dec97321fdf2ceee459b95c3d885edebca15b", "message": "Bump DeletionWatcher up to 20 minutes\n\nDoesn't matter for deleting a message, but we can (hopefully) get more deletion stats.", "proba": 1.1067852057067284e-07} {"commit": "f3f72146c345e0c9cbae1ebfe28c9c2dbd62e3a4", "message": "Refactor functions and docstrings for pylint\n", "proba": 1.681691941257668e-07} {"commit": "52784acf5ff7ecea03dd5dfa486f89acba0758a1", "message": "now imports settings\n", "proba": 1.4382132462742447e-07} {"commit": "51406dade97416ea79aa7b489160ae0ebbc782d1", "message": "Reproducing bug\n", "proba": 5.310110964273917e-07} {"commit": "d3572ea61ba54cdc00ca379eab65277d8bff965f", "message": "Completed first phase of lego block technology for list canvas editor.\n", "proba": 1.017698707528325e-07} {"commit": "6f5fb755b1e28d3ef6fd7ae83e76f34742f4ce1e", "message": "better line options/ more options for scale_x_continous\n", "proba": 4.928945145366015e-07} {"commit": "898d794d7eda38397dcaefb160fa833405ace4f9", "message": "set random seed in metal_model\n", "proba": 7.628900675626937e-07} {"commit": "64d1c19c0ec58aff2d89a341997e55fa55725b4c", "message": "Handle per-remote and global key types in enforce_types\n", "proba": 3.6683837834061706e-07} {"commit": "2bcfccb3b4b0d6f79fd62d84e98495392b86795a", "message": "Remove print statements\n", "proba": 0.0015431179199367762} {"commit": "b4ff399d3b11d13259b72ed43b4c32a9d744866d", "message": "util.monitor logging\n", "proba": 1.113399207497423e-06} {"commit": "6b454b6a6950749445b963bbb7b416d1d4064432", "message": "SKINSTXTRCOM-4163 : `Store` class can be inherited properly now.\n", "proba": 9.764141850610031e-08} {"commit": "38c0e0235a4c28a8b6627d1160efe318d95015bf", "message": "Revert \"Simplifiquem la forma de mirar si l'attach es valid\"\n\nThis reverts commit 4d8c1d62603db811ba6fe3ebf0e1d186350e43f5.\n", "proba": 1.4246820967400708e-07} {"commit": "03637d990769f8c1b982abd8b9b9c1bc689ecd7e", "message": "Some improvements\n", "proba": 3.4073892152264307e-07} {"commit": "3fc2ae7bfdd88978b6493185ba056735546796dd", "message": "Changed email field in form to EmailField instead of CharField.\nDoes not require a migration as this field in only a proxy\nin the form for the Django auth one.\n", "proba": 1.03388288152928e-07} {"commit": "ce83ab09b3658a853f9ee1afeeed25cce53c8a89", "message": "swig: update pySwigBinding to detect python3\n\nAdd -py3 to swig if we use python3.x.\n", "proba": 1.2458811227133992e-07} {"commit": "0a41c4051c2f8bb63bce2b11f45cf105200f0daf", "message": "fix: Do not relay email to standard users\n\nCo-authored-by: Ritwik Puri <436c152d8359c6755ce11051be18f4a0550d23ad@gmail.com>\n", "proba": 1.1477617078980984e-07} {"commit": "9e2b1e2621b9e5eb244d01d34bd16664d40debeb", "message": "using HOST from config to run the app.\n", "proba": 1.1595935234254284e-07} {"commit": "04f3de3cd5f18056c425da894192de377d3e2b07", "message": "introduced facet_grid wrapper\n", "proba": 2.4081677452159056e-07} {"commit": "573cae09e4520d75bf8322a9366cf2df5a32e21a", "message": "colors for boxplots\n", "proba": 1.779817040414855e-07} {"commit": "4790a21ec18ca32c86199c00ba0d57fa4f8ee557", "message": "initial required modules were added.\n", "proba": 1.091073542625054e-07} {"commit": "a34e02723d0560cfbdf209e6add1af0ee8f59a49", "message": "remove init\n", "proba": 0.0005923428689129651} {"commit": "16ca562afc34f990088c8d9659b52ab16384ab02", "message": "Copy first image in main run\n", "proba": 2.2855675751998206e-07} {"commit": "1e14f9752e504df0f41d61b47faac4257437397c", "message": "fix shebang\n", "proba": 7.922059012344107e-06} {"commit": "891882840322846025f6ee76b6686312269dcea5", "message": "Added more GUI init stuff for compatability\n", "proba": 1.2711666386167053e-07} {"commit": "682121fe68f92963f0baafe175840093266ea817", "message": "Threads not behaving\n", "proba": 2.3079441291429248e-07} {"commit": "b85b829ac1f6a1c47daea9a9571e362643d939ba", "message": "fixed issue where the CHIMERA=TRUE argument was not properly passed to the executables\n", "proba": 4.160892785876058e-07} {"commit": "1d3525b2ec28aac1ce91dd8dc5a8c638f14bb908", "message": "with import * from ... I pollute the dimensionalquantity namespace with a whole bunch of stuff that I neither want nor need. Hence now I import only the stuff that I explicitly want to give access to.\n", "proba": 1.1010980216497046e-07} {"commit": "cceb88b877b71f5c4659959055a4cd92847f0426", "message": "Tweak startup/shutdown log entries to be more visible and informative\n\nI'm not 100% on how this looks, but I do want the log (file) to be\neasier to parse visually. Just want to have something to use for now,\nin hopes a better idea pops up later.\n", "proba": 1.1270829958220929e-07} {"commit": "343545cdd567926b837756915c1e5066045bf359", "message": "ENH: Implement standard gradient for Dirichlet node\n", "proba": 1.3270268084397685e-07} {"commit": "6735d1373e5dbf7d740a8b724f70058d6bf241b1", "message": "Fixed pd string length\n", "proba": 3.017863491550088e-05} {"commit": "9cef802dbbc1dd2f1cc5887be012d53a46a6fd48", "message": "Adding error handling to retrieving URL\n", "proba": 3.3864552051454666e-07} {"commit": "58f763318ab2bb6aeb64c6fc1d75020be6555677", "message": "Fix eqlx CLI output parsing on bad input\n\nThe eqlx driver would identify CLI command completion\nby looking for the system name prompt at the end of\nthe output (\"ARRAY_NAME>\"). In some cases where there\nis bad input the array will print an error, then\nprepopulate the command again so it can be edited,\nresulting in the output:\n\n\"ARRAY_NAME> [bad command]\"\n\nThe array name prompt only gets printed on command\ncompletion, so the fix is to look for the prompt\nanywhere in the CLI output.\n\nChange-Id: I063a203c9746689ca8a42a97725b059f782e3812\nCloses-Bug: 1378394\n(cherry picked from commit ce8b5a3e6e687148cebfa3b160c779269ab73b8c)\n", "proba": 0.9995834231376648} {"commit": "a492e805fa51940d746a1d251232bc4f13417165", "message": "BUG(1454): fix waftools/man.py to install manpages again.\n\nIt still doesn't work with --destdir.\n", "proba": 9.970937497882915e-08} {"commit": "91f8c4b183bcda298a13c974f63be054e09d8f93", "message": "removed by sandro / wendel\n", "proba": 1.451297038101984e-07} {"commit": "f6648a0206258e911c0fe4c9c8d0b8cd1334d119", "message": "Test also what it returns from the api_translate view\n", "proba": 1.4101482292971923e-07} {"commit": "89c1b58da23cfe16e8e195c61313b818a6d5f890", "message": "Add persist.py\n", "proba": 1.4967894230721868e-06} {"commit": "9997f3ae97723ee641bbca8f0b98e870ac3a0fb3", "message": "remove localization of scanner.get()\n", "proba": 7.792249903104675e-07} {"commit": "d5a325ecc107b86c00f959db253c86b1e001bf1f", "message": "Experimental branch: Refactor ios_rules to account for applications and extensions that might have stub binaries.\n\nRELNOTES: None\nPiperOrigin-RevId: 208721502\n", "proba": 3.634099243754463e-07} {"commit": "10b76987fc45a36aab5c5549dd607e2475c32e73", "message": "[FlaxT5 Example] fix flax t5 example pretraining (#15835)\n\n", "proba": 1.1355989215644513e-07} {"commit": "c7c88679092aa487e36dfdcd9e6ecd0a54dcde44", "message": "Code cleanup\n", "proba": 5.596320988843217e-07} {"commit": "04fd6c71ef66b8b1513fd1d05373b3e17585c1a8", "message": "Minor fix to authors and codestyle\n", "proba": 1.2731526055631548e-07} {"commit": "dd369472eeb5199e19d4aa5bfb0adeb839dcaf97", "message": "move X axis label", "proba": 1.77197182438249e-06} {"commit": "f907ee003c224c1b3b97cc6bc257b2c613a9f149", "message": "migrate_dynamodb_items.py:\n\n* Allow starting midway through the set\n* Delete the old item, not the new one\n* Better tracing\n", "proba": 2.4505879991920665e-07} {"commit": "fa60a25d0afaff534762a1f997605f32541ed036", "message": "fix `IO.fatal`\n", "proba": 4.668719611800043e-06} {"commit": "735a52b8ad4ebf7b6b8bb47e14667cd9004e624b", "message": "add some mappings\n", "proba": 1.0975876648444682e-05} {"commit": "d98ccd70fe3ba738535e690718ef2ffeb114e5af", "message": "Changed use_framebuffer property name to _with_stencilbuffer (made it internal). Added proper docs.", "proba": 1.0315743281807954e-07} {"commit": "14ea01be6ed52ef215e2932607902e6c7fdaf41f", "message": "Remove all blockwiseio code (#7067)\n\nCo-authored-by: James Bourbeau ", "proba": 1.5694935427745804e-05} {"commit": "610e12f573736b80edf12047ae98908d5f2245a6", "message": "Missing test prefixes.\n", "proba": 1.123336346608994e-06} {"commit": "e63a7d5adc6867c39dd713793542b572d4e3fb05", "message": "[nim, dj] Updated test to use PageObject models\n", "proba": 1.3393839992659196e-07} {"commit": "c40f64170f88a5c14cb1e69b3abf729546512ea6", "message": "Cleaned up get_filename()\n", "proba": 2.9274358439579373e-06} {"commit": "afa29e2563721ef9d85f4edcc8e867018ac9d02a", "message": "Regen content slug when it's blank\n", "proba": 9.162452556665812e-07} {"commit": "30c4b569e4f638a6a838387dc3dd9d6fdb2d2d10", "message": "don't set property if there's a method already\n", "proba": 7.720329904259415e-07} {"commit": "f1458b687bc9f0974224243a560e5b4c89b8afe8", "message": "Dont use the ascii encoded string. Keep implementation the same\n", "proba": 1.0046244369732449e-06} {"commit": "0ed812e977281aca28b36a7464846bd68b872e78", "message": "Make Study CSV API streaming\n", "proba": 4.0738657958172553e-07} {"commit": "6bb58e13b657c1546f4f5d1afa70d48a9187f168", "message": "Update server.py", "proba": 7.684967044951918e-07} {"commit": "6e991b6861b3a951f9080a98db9642c7d162a3a2", "message": "adds command line arguments to scheduling_with_stransitions_sat.py\n", "proba": 6.006198418617714e-07} {"commit": "9e5b42fa14b50d91840a67646ed6779d8f5c22ae", "message": "ClangComplexityBear: Make ``cursor_kinds`` private\n", "proba": 4.620831077772891e-07} {"commit": "51135def4a4b48dcb2a50c88b02c396812f68081", "message": "Forgotten properties\n", "proba": 2.4215989924414316e-07} {"commit": "6bc1a33c82d6aed73e9274c7dc517b5c26e7e006", "message": "Remove top level __init__.py\n", "proba": 0.004306056071072817} {"commit": "dcc6dbced6f25377a93028b724a8c5d9ed9d0d88", "message": "fix(studentapp): admin crash when user is deleted\n", "proba": 9.10079620553006e-07} {"commit": "1b3aec97f2b32a371d37c335cd37bf750efbe0fc", "message": "Break inline conditional.\n", "proba": 4.29751196406869e-07} {"commit": "52e6d164c88efec4b0f135b0d701114ba7934a01", "message": "solved warnings, add arc kernel\n", "proba": 3.2869007782210247e-07} {"commit": "22952f57c33070f83c4e9c38b2a96543ed983f4e", "message": "Make ndb_persistence execute Context's complete event\n", "proba": 9.024807695823256e-06} {"commit": "96185cb94b4ee9fd28fdc1f2c4fa94f46e30f4fe", "message": "[fix] clean\n", "proba": 7.759705476928502e-05} {"commit": "eeb006e00bed5185b3c00acff0b7210c51dd1f58", "message": "add sanity check for input data\n", "proba": 1.835818579820625e-06} {"commit": "91db5d6b184a70dcd2627e2608dcf3ef8249be20", "message": "This was supposed to be a dict\n", "proba": 0.0025646849535405636} {"commit": "d428f6df195c0293340089b884b934fa16ef7ff6", "message": "Use local timezone if available. Fixes #3", "proba": 6.597008450626163e-07} {"commit": "6f1f12658675b868342b767f1070edbe100e3a02", "message": "Disable async\n\nSigned-off-by: Brandyn A. White \n", "proba": 1.459582108509494e-07} {"commit": "8675f30ea96c90a3a8836a3e1f4f2b790798cb8c", "message": "No empty XML tags\n", "proba": 3.5435576137388125e-05} {"commit": "fed79c3b9ec7e429fe10cc36160f91ec02794858", "message": "Modified example script according to comments\n", "proba": 2.064164874582275e-07} {"commit": "fcb2be79dfc78d040aeb6bdc5ace2700dbccf87a", "message": "Adding ABV back in\n", "proba": 1.41420355248556e-06} {"commit": "86657062ea78a32fb8d385b858cb3f0289cc86e2", "message": "updated to match samosa updates.\n", "proba": 1.1210283901164075e-07} {"commit": "b53bee8978c6fe407fce7769e16ac4991e36fcda", "message": "Return unknown status if geolocation API is unavailable\n", "proba": 1.9341737242939416e-06} {"commit": "db2d6cd78bedb3ef0f0efd0df38dcbe325c90132", "message": "schroedinger.py: all functionality moved into SchroedingerApp class\n\n- inherits from SimpleApp -> can be parametrized\n- small fixes, clean-up\n- n_electron application option\n", "proba": 2.2215949968540372e-07} {"commit": "85469394e7dfd1f617628bb567db5af684480b26", "message": "ajax app now serialized QuerySets with no mess, nor fuss.\n", "proba": 1.0227776670035382e-07} {"commit": "db48bea5145010199417c3bdc73c426c0f00ac1b", "message": "Check for AWS Path and AWS ID info added\n", "proba": 1.2841921659401123e-07} {"commit": "98e1f5ea03de84351e2b5ac4f62f181a31b298b6", "message": "Make CMR exportable for @dimagi.com users\n", "proba": 1.2578810810737195e-06} {"commit": "8ae92be1b5a1b698d826d9f1b0d03657df9ab227", "message": "groups api stuff\n", "proba": 3.2819582429510774e-07} {"commit": "62e7f5ada7bc7bd605ee639cc3fda9ec2d307e00", "message": "if user comes already in unicode don't crash\n", "proba": 5.423173092822253e-07} {"commit": "c256cf15bd6996b394c36b49fc9b7566abeb55f5", "message": "demo/python/cmd.py: Fix struct.unpack format for Python 3\n\nThe format includes a length - the number of samples read:\n\n\tn = len(data)/2 # 2 bytes per 'H'\n\tformat = repr(n)+'H'\n\tdatastr = datastr + struct.unpakck(format,data)\n\nBut repr(n) is producing a floating point number, resulting in an\ninvalid format. Change the calculation of n to use the integer division\noperatori (//):\n\n\tn = len(data)//2 # 2 bytes per 'H'\n", "proba": 0.9999971389770508} {"commit": "2a331ae574ff343f66a20174c8db07037661ffc1", "message": "eejit\n", "proba": 4.809727215615567e-06} {"commit": "6b29ef9e43a4721c3c6e85ed5ffd7391b7202e31", "message": "Fix(GMP Package): More strict checking\n", "proba": 1.4430796113629185e-07} {"commit": "7568d276dd858ed11011b1753fef09804c8f3a2a", "message": "Fixed issue with uploading using pandas.\n", "proba": 1.0939032790702186e-07} {"commit": "cc75ce5b76675bfdeade53c2809c790381dcb492", "message": "Remove ds_binary_tree.py\n", "proba": 0.004679641220718622} {"commit": "75f42562dd68e89853d4d1bd3231ba0138ea18d3", "message": "Only look for pointers to replace in n-d arrays with type np.object_ for performance\n", "proba": 2.35654553648601e-07} {"commit": "85775847e93b35ac19e09962bc2b10f9be666e33", "message": "Update analysis.py with new finallist.py method\n", "proba": 3.808652309089666e-07} {"commit": "f6f523d1128139c9c3606091cfa55454715b980f", "message": "Correction to last commit\n", "proba": 1.5757467508592526e-07} {"commit": "3b0e88d0780dc43630d12af173474860d2a802cc", "message": "Support reverse sorting using '-' prefix to fields\n", "proba": 1.6874043922143755e-06} {"commit": "5fcab2cab43d60a88bddb785125f7fb8ce2b2214", "message": "Exceptions on failure to compute score\n\nSkip over it and set the score to N/A\n", "proba": 0.0007573547190986574} {"commit": "6a3f0ade1d8fe16eeda6d339220b7ef877b402e5", "message": "Add no-break options\n", "proba": 0.9983761310577393} {"commit": "b8a60c328f2c9989147a364eb3643e21d3961d7e", "message": "[benchmark] Fix billing project (#9671)\n\n", "proba": 1.4870659015286947e-07} {"commit": "4230db8eedfd950e1f841456e015f07849aae3fe", "message": "Agent Logging: Don't log stacktraces for connection errors (#227)\n\n", "proba": 1.1632553054141681e-07} {"commit": "be6b2bf2900e9de13b9dcd46d6f31c78013d451f", "message": "Adding comments to filter_for_reverse_field()\n", "proba": 1.5848918621941266e-07} {"commit": "416b80e7d4742ee9b303f63b26d9e1f9ac7a8c9c", "message": "intermediate stuff\n", "proba": 4.3759581558333593e-07} {"commit": "9572b039a930a90c849217c57b121750b25ad2c7", "message": "modified settings to use correct db and api key\n", "proba": 1.6090336885099532e-07} {"commit": "f9b9870ba83f1218fc2b7268a28257929848a37d", "message": "Updated read_catalogs file paths to the v4.1 release for unicorn and hyperion.\n\ngit-svn-id: b93d21f79df1f7407664ec6e512ac344bf52ef2a@1031 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 4.612140855897451e-06} {"commit": "86ce2ca822d292c58838b3169157cf0754b7d9a2", "message": "Include 'type' attribute on the model so we can distinguish between\ndifferent types inside the client.\n", "proba": 1.0669541694596774e-07} {"commit": "a25c8fab881decff0e61deffe1895f1d99132f9f", "message": "Mask sensitive data when logging action results\n\nWhen passwords or other sensible data is returned by a Action, they can\nbe logged by Mistral. This change uses the password masking\nfunctionality used in mistral-lib and privided by oslo-utils.\n\nThis function uses the standard cut_repr method in mistral-lib, which\nalso means the output is more standardised.\n\nRelated-Bug: #1850843\nChange-Id: I01bf47f7a83102a1a16b15bf0bbb4021707e11fe\n", "proba": 2.098546246998012e-06} {"commit": "f81f08d4c19d1a265c2e89a78bbf956ba23ea392", "message": "enhance tracing for message writing in case of io fail\n", "proba": 5.748238436353859e-07} {"commit": "78977f256147b7aafef597e1f3940dc85585337d", "message": "improve TileCalculator\n\n* add p4pix_to_hirise_pix (general converter)\n* add specialized p4tile_center_to_hirise_pix\n* add several useful class attributes to improve readibility\n** campt_results_path\n** get_xy_tiles (now using np.mgrid)\n** get_campt_input_coords (producing df with all tiles coords\n** temppath property for campt input\n* add more campt output columns to the result file\n* do merging instead of joining. It's more safe in terms of keys used for combining dataframes\n* general improvement on pipeline in calc_tile_coords\n", "proba": 6.160199745863792e-07} {"commit": "70a8853da2cc889efe21f34b184d10d438e65137", "message": "modified according to underlying changes.\n", "proba": 1.131054077063709e-07} {"commit": "d6869272319706aaafce1da525479c0cfd1eef12", "message": "fixed the logging format to only report msecs once\n", "proba": 1.556141597802707e-07} {"commit": "20816dc18836ec43584a6e57872978c394bae3d2", "message": "gah still fixing order of string formatting\n", "proba": 4.926689598505618e-07} {"commit": "a0d792fd1a28ee916f0666016b476f49fc64fa08", "message": "Only prepend root directory when pattern is not absolute\n\nos.path.join conveniently will ignore preceding path parts if the later\npath part is absolute, but instead of relying on that logic (in case it\never changes, which hopefully it wouldn't), we should just check whether\nwe actually need to call os.path.join. We already have the info tracked,\nit is just a matter of checking it.\n", "proba": 1.3367476014991553e-07} {"commit": "68c0c054e5b9874f8a6423c35fb83c9de351b9e0", "message": "fix doc build\n", "proba": 4.372095361304673e-07} {"commit": "981268d31947b09fd051873251b6dad77aa170c5", "message": "New functions in analysis to search for LDO breaks.\n\nAnd LDO break is where a single gene from a co-ortholog cluster is called as\nan ortholog to an outgroup (this is presumably the least derived ortholog),\nwhile the others are split off. This would lead to the others being called\nas younger than they actually are, because the outgroup would not be\nincluded in the orthologous group\n", "proba": 9.596651580068283e-06} {"commit": "59f69abe9a20855bea0868fc23815722e50d700f", "message": "Fix comment.\n", "proba": 1.3302705781370605e-07} {"commit": "ae41edd659b68424b3932409d898e0813dd6163d", "message": "Disable Radarcape UTC decoding until I work out what's going wrong with it.\n", "proba": 1.1695713908466132e-07} {"commit": "de03e830b11679ae42defa3897f9cedb6d93ea82", "message": "makepbcore - removes instatiationGenerations, instantiationPhysical and instantiaionDigital\n", "proba": 1.3979285995446844e-07} {"commit": "c903e2efed71ce52528f207719687b3eda2439a7", "message": "iidentando arquivo\n", "proba": 1.922123828990152e-06} {"commit": "15307ebe2c19c1a3983b0894152ba81fdde34619", "message": "Add comment on dist of first function", "proba": 1.5864145552768605e-07} {"commit": "b6c2d84ceb14c2f69fb80019f1375078542fa97b", "message": "Image handling looks good\n", "proba": 1.25590659649788e-07} {"commit": "b4dbedc0895b402566579807ecfa7442f8fd5102", "message": "pyggplot.scale* now returning self\n", "proba": 1.327571226283908e-07} {"commit": "7ff6a0dc3a4f6f1ed47f999340f25fe3d5546bd4", "message": "tests/ps_schedstatistics: fix command order in shell help test\n", "proba": 1.0734233910625335e-06} {"commit": "e8e15ce8233f1df5d4e29ffd8d5e7f9a69bcaab9", "message": "Add alternance in etablissement database when testing\n", "proba": 2.2295542123629275e-07} {"commit": "306ae29329b1b81a03f2aa6c0f8d5af08c989535", "message": "minor corrections and bug fixes to adjust plots and tested for\nproduction", "proba": 1.1710736202985572e-07} {"commit": "5cfdb6bc08a8ec91e171bc1b523abc109b52d549", "message": "Remove MAKE_BYTES which is a leftover from the mutable byte literal time.\n", "proba": 1.3006290089379036e-07} {"commit": "1ee4c9ec82c374a6a262b55eb01ddd32248e892d", "message": "Cleaning.\n", "proba": 1.114633732868242e-06} {"commit": "52df647962a4c072b3a826e7328eabd21bf9f14d", "message": "DJ's changes\n", "proba": 4.3008574834857427e-07} {"commit": "8e2c5e7c1424a28a827afabd377c3b05cf17f30c", "message": "Fix in centerCols and centerRows for different dtypes ", "proba": 2.1202488653671026e-07} {"commit": "05e17fd083a483c5e5d7aa75357ab133d95bb50c", "message": "v0.2.10\n\nSigned-off-by: quijoT \n", "proba": 1.2719753783585475e-07} {"commit": "8a310a4bec15dea0048b21608ee3266520443f96", "message": "*** empty log message ***\n", "proba": 5.360483328331611e-07} {"commit": "92ea7dd57faaf589cdd99424da8879ecfd427089", "message": "Fix asterisk queries\n", "proba": 0.9992961883544922} {"commit": "105008c970a7fb508b7626b9a7ff4702c6e3dabe", "message": "Two changes:\n\nload_inst(): Implement the security hook that cPickle already had.\nWhen unpickling callables which are not classes, we look to see if the\nobject has an attribute __safe_for_unpickling__. If this exists and\nhas a true value, then we can call it to create the unpickled object.\nOtherwise we raise an UnpicklingError.\n\nfind_class(): We no longer mask ImportError, KeyError, and\nAttributeError by transforming them into SystemError. The latter is\ndefinitely not the right thing to do, so we let the former three\nexceptions simply propagate up if they occur, i.e. we remove the\ntry/except!\n", "proba": 8.280050565190322e-07} {"commit": "323dbf3bfac8cbfefb90d0b94be0eef245d38f4b", "message": "make test short\n", "proba": 0.0004427657404448837} {"commit": "0dbec24d8583af50c4931ea477f74e7ca49d8299", "message": "Make crashlog.py work when a .dSYM is present, but a binary is missing\n\nOften users have a crash log an d a .dSYM bundle, but not the original\napplication binary. It turns out that for crash symbolication, we can\nsafely fall back to using the binary inside the .dSYM bundle.\n\nDifferential Revision: https://reviews.llvm.org/D55607\n\ngit-svn-id: 4c4cc70b1ef44ba2b7963015e681894188cea27e@349366 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 6.638669583480805e-05} {"commit": "8a2ca90cbd4462891f73dfa778a7592b568a3ddb", "message": "Renave Solr search endpoint to /search_v2\n\nSounds much cooler this way", "proba": 1.1677435196588704e-07} {"commit": "09bc7db5ce12e66a72c45d7e0c33bfc5c331c1b0", "message": "Fix PR#3, submitted by Skip Montanaro: if no space appears after the\ncolon, the first character of the value is lost.\n", "proba": 1.0341353373632955e-07} {"commit": "3dfb7974b87a109d1888ce529aae482319630cb4", "message": "\n\ngit-svn-id: https://subversion.assembla.com/svn/threedhst_internal/trunk@349 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 7.161155508583761e-07} {"commit": "fdac4847d13d59c8e1657bc965585f8c07877636", "message": "ask if teamplayer should be launched\n", "proba": 0.000582149950787425} {"commit": "162703ebe1976f0a8ced298679d7790fe6eb37f3", "message": "\u4fee\u6539\u6b63\u5219\u8868\u8fbe\u5f0f\n", "proba": 3.353519559823326e-07} {"commit": "a4bd3f5982b9d70043c5b66a517bf98bb6446d06", "message": "Typo in comment (on Mac, it's the *resource* fork that's not copied,\nthe data fork *is* copied).\n", "proba": 1.1078243744577776e-07} {"commit": "f2805104cd079a937c6efe03414fe9d0dc4ab3d1", "message": "Work around Galaxy inability to handle optional select parameter with dynamic option\n", "proba": 1.270049381218996e-07} {"commit": "9af7c8bfc22a250ce848d50ca26877e177f767c1", "message": "Fix execution on Monday\n", "proba": 4.659599289880134e-05} {"commit": "d3e665929052331711a85f432bf1ee076bbd47d7", "message": "Slightly faster (un)quoting.\n", "proba": 1.7158613729861827e-07} {"commit": "5f9432a6c631dfded08f5244b0ac3c0d6e43fda1", "message": "add test to check for partner organization logo in member endpoint\n", "proba": 1.4895043420892762e-07} {"commit": "8e71b53d6b68f557f67204f9f89001622b85a213", "message": "bug in add_ab_line alpha passing fixed\n", "proba": 3.8099128119029047e-07} {"commit": "e76d53729a6e75870a843dbb8a96a9e6f9964305", "message": "Fix bug if tmpcache is None\n", "proba": 0.9999376535415649} {"commit": "3d0f6d12aab1011cdb5074c901b26d14be56ee71", "message": "Use discovered asciidoc/a2x to get the version.\n\nUse the discovered asciidoc/a2x executables to get their respective version\ninstead of the hardcoded \"asciidoc\" and \"a2x\" names. Catch an AttributeError in\ncase the discovered names are None.\n", "proba": 7.259358244482428e-05} {"commit": "217a777ab4fd42d16c31e2d1c1c8b22df8964672", "message": "change indentation from 8 spaces to 4 spaces\n", "proba": 0.00251889880746603} {"commit": "cf9f8088f7839e7f8e95fe72b83e31eddbe2f0e7", "message": "Updated insertion_sort.\nRemoved comments.\n", "proba": 1.0620750856560335e-07} {"commit": "2836e57ffca1cda308876bfed55de486ef98f901", "message": "add reverse() to LinkedList\n", "proba": 8.316650200868025e-05} {"commit": "9e76205364f59339cf56838facf6a338eac480c5", "message": "Added module directory to resource path so that images load when importing garden.navigationdrawer\n", "proba": 3.179223995175562e-07} {"commit": "c67a32e731037143baf44841bc7e5a8b5e14473c", "message": "Add Reverse Method and Initialize an array from an list\n", "proba": 7.097814318512974e-07} {"commit": "81c082e572733ba0075c27314d164c2a8e50c5f9", "message": "Documentation changes.\n", "proba": 1.3932238118741225e-07} {"commit": "4f3a5b056499004b302f8c08cdad3142707f5806", "message": "remove __init__.py patch in favor of setup using \"pip install -e .\"\n", "proba": 1.2263176074611692e-07} {"commit": "ecd2821a99dee895f3ab7c5dbcc6d86983268560", "message": "Update src url for dev in views\n", "proba": 1.879357540701676e-07} {"commit": "0794b52a177dc4862036ac80373e6d523a8be113", "message": "edit post function\n", "proba": 3.6587928775588807e-07} {"commit": "be0bb9e8dc4deeff2771a2583647cc4125ceb506", "message": "Fix incorrect merge.", "proba": 1.2103803328500362e-06} {"commit": "d9a6c6087549c21a2a7a451095461f9140d7afad", "message": "__init__.py: added 'show_tree' example to ch.demo()\n", "proba": 5.302024419506779e-07} {"commit": "a8997ed8ab4d1f93d82fc6034281a2a91eed26c8", "message": "Also store last up vector in addition to last face normal.\n", "proba": 9.97211628828154e-08} {"commit": "5871e6e246f85d8f780e588a936861edaf73ec48", "message": "Incrementing version to 0.1.2.\n", "proba": 5.781302206742112e-06} {"commit": "3a9056c92672cd4eaf6c773fbeaea11f01e781d5", "message": "put a section about nicer graphics in mod doc.\n", "proba": 1.021136384338206e-07} {"commit": "d85f8e8c6760feba91c06d78299f7f3ccd06cf63", "message": "bumping to 3.0rc1\n", "proba": 2.0064065608949022e-07} {"commit": "49ba0e32d8d27b997f80d5420ff6b05ae1cc4461", "message": "move stuff around in init\n", "proba": 8.053191891121969e-07} {"commit": "40e6e7de156195a1abcfc6b951ad5ceb6e370700", "message": "init fixed\n", "proba": 5.034142418480769e-07} {"commit": "6b576edf1174c60b0f6e0f06ee61f181896bae0e", "message": "removed send_from_dir\n", "proba": 1.0507126262382371e-06} {"commit": "598bb39414825ff8ab561babb470b85f06c58020", "message": "Update __init__.py\n\n.Undid the changes that were mistakingly done.", "proba": 1.7130737717252487e-07} {"commit": "4153cfd051a980b930cbf9a6cf1c5046d4263426", "message": "added NCBIGene to init\n", "proba": 1.6413136449955346e-07} {"commit": "f90a6465fcc3a76b6aae9029fe0e9a322f954b77", "message": "version bump\n", "proba": 7.394332897092681e-07} {"commit": "629be545d526610321c2701f6756d0c550d5b5e7", "message": "Rename load/save_config to load/save_config_dialog\n\nRename `save_config` to `save_config_dialog` and `load_config` to\n`load_config_dialog` to emphasize that these methods include GTK code and\n**MUST** be executed within the main GTK thread.\n", "proba": 1.1026259016944095e-07} {"commit": "3baa998032793f3d476d830ea4ea0925b5922833", "message": "+ added TODO items for Toolbar and MainMenu\n- removed \"Save As...\" from MainMenu\n", "proba": 1.2592911957653996e-07} {"commit": "27c58db069585a5ce1c722b4e0ddaac480e790e5", "message": "trybg another way\n", "proba": 3.89604650763431e-07} {"commit": "757f8f15201fe13d5b0627755fabad589b4acbd9", "message": "even more bug fixing\n", "proba": 1.484959994968449e-07} {"commit": "42a3892b9f0623b0a8ef7ef051a9f8a7a0232286", "message": "Update __main__.py\n\nadds seasons", "proba": 7.084585831762524e-06} {"commit": "e20bbf6a3fab8d4124ae208710cfb45080aa5031", "message": "Updating in preparation for new release. Single command to run simulation and post-processing analysis.\n", "proba": 1.0234391822905309e-07} {"commit": "694388f04391574c57d32257ee99143df24829bf", "message": "Fix #3: implement MDI\n\nWhile there's no way to open up multiple canvases, the infrastructure is\nalready there to do so. This infrastructure will be go hand in hand with\nissue #2 (opening an existing image).\n", "proba": 1.1521121479063368e-07} {"commit": "9f8ac6f24ebfbdd78120765fdc6d0bd4113034d1", "message": "playing with editing lines\n", "proba": 2.722521230680286e-07} {"commit": "34a7c3153b4b619aefe73c72968fd2ff8a583ec4", "message": "Fixed potential errors.\nevent registration now send email.\n", "proba": 1.2120744941057637e-07} {"commit": "65d6834907752966c3e77b22b8193c6410909981", "message": "MainCombined - Added break if no progress with mutations\n", "proba": 1.197804948560588e-07} {"commit": "c396bc7c4b54f556c228aa8d18cbf1fc7eae463e", "message": "Switched to raise for error handling\n", "proba": 3.425543582125101e-07} {"commit": "689fa6ed525c5cb8174b3e4c3d73645acb61879c", "message": "Update code", "proba": 4.2411056710989214e-07} {"commit": "c06a61f9d6c73e40fc8209b7b473fc2e9743757b", "message": "Updating CFL viewer for new data files.\n", "proba": 1.1499880514520555e-07} {"commit": "d4a1f3fd270001b2fb0684dc981340391df8fb64", "message": "scons: do not include headers from the sources lists\n\nThe SCons documentation is not explicit on the topic yet building mesa\nwith SCons and MSVC is known to have problems when headers are listed.\nSo be safe just drop them for now.\n\nBugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=82534\nTested-by: Vinson Lee <25a259f709b0f1b620605d2518271a846d8826e5@freedesktop.org>\nAcked-by: Emil Velikov <4c996f2f093ddd0585a556460b4cc3ba555546ef@gmail.com>\n", "proba": 3.1407366805069614e-06} {"commit": "4db43db6bb9969978650d7720640e42d59876745", "message": "subparser should print help\n", "proba": 1.672003600106109e-05} {"commit": "7fb2fde13f20414a1cb9116015aec34201127177", "message": "minor comment change\n", "proba": 2.6595554913910746e-07} {"commit": "fc308013fda59c7b48a4b94855a67aff019bb116", "message": "more sanity checks and all that jazz...\n", "proba": 1.0709993603086332e-07} {"commit": "7875c6b4848e7c30a6d5a53c2b3c01d7aba5fa65", "message": "improve voting results test\n", "proba": 2.7032563139073318e-06} {"commit": "020eda5774e4b07f29cf761eba9e016dd6a871df", "message": "init refactors\n", "proba": 3.542641252352041e-06} {"commit": "85490a98ea5e36e42a5bb0eca39b021fcd3d261e", "message": "fees are reduced 10x to 1K per Kb) (#58)\n\n", "proba": 1.3156794409496797e-07} {"commit": "32408875e4bf2427697c87227f65bef1f1e267f3", "message": "minor change in _get_verification_details\n", "proba": 2.67989065605434e-07} {"commit": "373470af1b698fd67636bf76e5370542873829a1", "message": "Making changes for the zi to contain only the html file\n", "proba": 2.0934739097810962e-07} {"commit": "b8d0344f0ca5c906e43d4071bc27a8d2acf114d1", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "270d8070e67d0d6b6402d849aae66e87d734808a", "message": "eliminate dead code that came over from Rubinius\n", "proba": 3.743430625036126e-06} {"commit": "6b4b5ac9ffade9a57be02bc38f8b594db76c3ece", "message": "Added filter form to userlist context\n", "proba": 2.3454025210867258e-07} {"commit": "d5b54b052f051722875e095c32c27305888a0232", "message": "Add output arguments to 3d plot\n", "proba": 0.00012369215255603194} {"commit": "d165e3c74cb49a047e487d1342e1fb7054c02b73", "message": "[sagecell.py] Delete empty github dir\n\nsagecell/sagecell.py: delete empty ~/sc_build/github directory\n", "proba": 1.943985807884019e-06} {"commit": "74175ef622710e19c952c846766536708bdcf462", "message": "Fix bad function call in salt-key env_verify\n", "proba": 0.0001344615448033437} {"commit": "b60e6a37a721975fc385f699114e6185245e919e", "message": "Lintfix: E7801, C0321\n", "proba": 1.3243255807537935e-06} {"commit": "2f12e05b5983c65acec13aa912da6ec1c7cc8085", "message": "Handle error when None is passed\n", "proba": 5.5107111620600335e-06} {"commit": "132dd431afb35bf995181e36b88e1ed53d7f1846", "message": "Added versionadded to new args to file.replace\n\nRefs #12571\n", "proba": 2.4066983428383537e-07} {"commit": "af4aee8a6bbf48dd31c27b33614ff8b33f179e34", "message": "Add s3 to protocols for remote source_hash\n", "proba": 6.117310817899124e-07} {"commit": "ead0abbe854c278fb318619e36e97ac88c6ddcd1", "message": "opkg module: Add 'version', 'reinstall', and 'only_upgrade' to install (#37008)\n\nAdd support for the options `version`, `reinstall`, and `only_upgrade`\r\nto the `install()` function of the `opkg` module. These options reflect\r\nthe behavior of the same options in the `aptpkg` module.\r\n\r\nThis also adds support to using a format for the `pkgs` option that looks\r\nlike:\r\n\r\n```\r\npkgs='[\"foo\", {\"bar\": \"1.2.3-0ubuntu0\"}]'\r\n```\r\n\r\nSigned-off-by: Sergey Kizunov ", "proba": 4.696420091931941e-06} {"commit": "0b740177a83d6764ca0638a36ccf18b0c8832260", "message": "Readd Cluster Plan\n", "proba": 2.393356908214628e-07} {"commit": "c9855d547459ca7dd5e972e9b3277fcbbf9fd3ba", "message": "Fixing https://jenkins.saltstack.com/job/PR/job/salt-pr-lint-n/22808/violations/file/salt/modules/virt.py/\n", "proba": 3.588070001114829e-07} {"commit": "357e84de1ffdcd475d5393c338ff781a6d0ccc52", "message": "Add xml parsing and fix up dom lookups\n", "proba": 2.020523766077531e-07} {"commit": "fe5e430d51eeff7c9fae2769b3a0e83e2ea32ec1", "message": "fix pylint error\n", "proba": 2.1321689018805046e-06} {"commit": "fb35a8c01daf7d43d15c346975bdd0e9290ac183", "message": "fix: cloud.absent thow error when vm doesn't exist\n", "proba": 4.206377980153775e-06} {"commit": "aa645b5d98370bc975fda2f33456a537d04626ed", "message": "Dumb pylint error\n", "proba": 5.810663310512609e-07} {"commit": "70fd189039ccbb2c3259f483ed866229a926f875", "message": "Added utils.vmware exception fixes\n", "proba": 1.8757405939595628e-07} {"commit": "9acf7857167bb87438c7c0bebca1a7eda93ac23b", "message": "Make saml2idp compatible with Django 1.9\n", "proba": 4.3199722199460666e-07} {"commit": "5651b24c56670b68dc89d7df428efc73f29662c3", "message": "complain about unknown switches\n\n--HG--\nextra : convert_revision : svn%3Ac6dcca6c-c432-0410-a79e-3fbb6554aff1/trunk%40174\n", "proba": 3.395309136067226e-07} {"commit": "9b23b2d49eb9d74e62f2debc0ebb42d9b7f71947", "message": "removed pdb\n", "proba": 1.1740419267880498e-06} {"commit": "509439b09b7ce8fb5889b2e173a7237a47a7de67", "message": "Redact the word 'error' from messages shown in grit's output.\n\nThis avoids issues with some build environments considering the tool\nto have failed if it prints this text.\n\nPatch by grt@chromium.org\nReview URL: https://chromiumcodereview.appspot.com/10035030", "proba": 0.9997007846832275} {"commit": "e7ac0bfd6c1ce2ea0ee4c720fa563458296728a3", "message": "more flexible GIAA PM propagation\n", "proba": 1.4114466750925203e-07} {"commit": "e7d7960c7f5e02622e91dfccf039c212c56799d3", "message": "Fix kwargs handling in GTFSArrivalQueryable.where\n", "proba": 3.489661139610689e-06} {"commit": "4b335fbd082c34f631f903574bedb355f330fa63", "message": "Update gamess.py for python 2.6 format", "proba": 6.822165801168012e-07} {"commit": "b8cd1b6869651cd0cbe2cbeebc59c641f13e0e5b", "message": "Add todo for scopes permissions\n", "proba": 3.5171075296602794e-07} {"commit": "ebacfc3ffe1cd1c9c58908c1f9dd78fe9eca9acd", "message": "fix for lambton not needed\n", "proba": 1.8117006561624294e-07} {"commit": "67fbe4dc7d87d6ffe02b9271c9fbd546a074a4a1", "message": "Added into AWS template X-Ray support\n", "proba": 1.990593290202014e-07} {"commit": "bce46c441673e4e4ae59a5c8b6df494fab54cbdb", "message": "Skip supervisord ETCD config when ETCD_HOST/DISCOVERY_DOMAIN are defined\n\nFixes https://github.com/zalando/spilo/issues/190", "proba": 2.553353226630861e-07} {"commit": "51ba459cd5e670c078558c45dd03e952696a0bbc", "message": "Clean file finding, pep8\n", "proba": 2.434468626688613e-07} {"commit": "df0a5c347a2cdd08ce865ba96d71df5dbdf15fc8", "message": " Url to github.\n", "proba": 1.2492137102526613e-07} {"commit": "08aedd764d8b253ff29899f3033aa5b304f1f0fb", "message": "Export the new decorators\n", "proba": 3.563677068996185e-07} {"commit": "d2ac17ad1e06b910ec06e99546e8f49f85c4fa92", "message": "makelightcurve moved to lightcurve class\nminor changes in plots", "proba": 1.2949629990544054e-07} {"commit": "09b85628bee0056ea73af069b31b3385eb6fe5bd", "message": "Added cd function (keep rewriting it anyway)\n", "proba": 1.0790246562919492e-07} {"commit": "17ab133a7dbc5cd89df71d86e49aa9c8683a3aef", "message": "refactor\n", "proba": 0.9999991655349731} {"commit": "0eac8e8adebbfc56a6512342846cd0c17fd889f1", "message": "\n\ngit-svn-id: https://subversion.assembla.com/svn/threedhst_internal/trunk@565 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 6.686660753985052e-07} {"commit": "3ef04b40ba7af3ee29d2c3b85d2c33a929bee4c9", "message": "keep_constant param in control\n\nThe keep_constant param is now defined for the network and not individually for functions.\n", "proba": 1.1146661904604116e-07} {"commit": "1819a143d4e738f9f2a6becea8e4cd271800621f", "message": "Default to a flat black banner background.\n", "proba": 1.0910506631489625e-07} {"commit": "fa6a767d3da5b09a1218eb43291c018db9722f18", "message": "Fixed #6326 -- Made the test for translations of filter arguments test something that has a chance of failure. Thanks akaihola.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@7060 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 4.847283889830578e-07} {"commit": "c712582bc9a6ea651db1d199419f54a138955e7e", "message": "Improve sentence splitting around parentheses and other bracket characters.\n", "proba": 0.00014472279872279614} {"commit": "ed2248c430e6b3baf21e0ab6e752ffe3cf6b3732", "message": "add basic requests tests\n", "proba": 4.5496688017010456e-07} {"commit": "a6157fbd1e8c0dbeec936b4b9f7451f004756aa5", "message": "Added copyright header", "proba": 1.267496259060863e-07} {"commit": "f3b6633a3fb2a36c07856f65167e516ccb9903df", "message": "fix a bug\n", "proba": 1.6163130567292683e-05} {"commit": "91cbfc15840333132fadc5e2c3bbf8f4f2d7c2da", "message": "test_prepare.py: Fix path syntax for Windows\n", "proba": 1.8693968740990385e-05} {"commit": "4fabfd30e22d978bcacb8ebf243171a974681d58", "message": "don't close the autocomplete list before showing our completions\n\nApparently unnecessary.\n", "proba": 1.3281764665862283e-07} {"commit": "a6d7b418dec429bd6d4830ce65ad2b40df6a25e6", "message": "Made the template tests error output a bit more pretty.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@10191 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 0.999350368976593} {"commit": "700095e45ccd35bd74dcfd6ad06712fc9959c8f4", "message": "Improve ukeire2 a little bit more\n", "proba": 1.214241507341285e-07} {"commit": "4a3c7ac0f6371b07b88f650732ffadb58a157252", "message": "Added zero misprediction to NNDB stats\n", "proba": 1.6720009909931832e-07} {"commit": "5d8d7c024e555ae35e1647008bfea8b55ff534aa", "message": "Fixed __init__.py", "proba": 7.673772051930428e-05} {"commit": "b557caee7a6fa6923dbd5bbba8dd7d85a2d24652", "message": "Adding TLSA Record type\n", "proba": 2.582443983101257e-07} {"commit": "fb311c64640a50e57ccded47dec586f4c4c29228", "message": "Added script imports\n", "proba": 4.2148968759647687e-07} {"commit": "00ffbd7d1c59aa2104216dc23d6ef0a94371b578", "message": "Add support to delete all described in\nhttps://help.dyn.com/delete-a-records-api/\n", "proba": 1.9356170355422364e-07} {"commit": "0b23eb2042e50ad655fdbc356f6cf0fb3cf6226a", "message": "reverted _transformParts\n", "proba": 5.930797328801418e-07} {"commit": "a8d701c75e4e0b880a7d3fedb6464aa875958f70", "message": "Version 0.99.3\n", "proba": 3.466941222995956e-07} {"commit": "bd8c10a0d1c1c54cdc1970c73f50749c6b69dbad", "message": "Add checks that verify backend/format validity.\n", "proba": 1.2429403284386353e-07} {"commit": "3cb8ce4fedf80831cf91091f794da5076b5a99d1", "message": "added ciocheck\n", "proba": 1.9245932492140128e-07} {"commit": "c202a3a945453a4955f0acbf369227f8c9cee148", "message": "Rename link in init\n", "proba": 2.689827738322492e-07} {"commit": "906ad382f2f2d3db5b96a88fe7835d981a46c8f0", "message": "DavidBurns removing unused init\n\nr10530\n", "proba": 3.7997094182173896e-07} {"commit": "be0e510ebb56ff48c1a0ed2db8c92142d565123d", "message": "[AIRFLOW-5179] Remove top level __init__.py (#5818)\n\nThe recent commit 3724c2aa to master introduced a __init__.py file in\r\nthe project root folder, which basically breaks all imports in local\r\ndevelopment (`pip install -e .`) as it turns the project root into a\r\npackage.\r\n\r\n[ci skip]\n\n(cherry picked from commit 4e03d2390fc77e6a911fb97d8585fad482c589a6)\n", "proba": 8.020816153475607e-07} {"commit": "70ebdac7792619207a7afec32d530459f1c27ba0", "message": "keeping going back and forth on the diff > 0 thing\n", "proba": 1.2323600628860731e-07} {"commit": "6cca2890fb785191f475f66506546a172d9dc93e", "message": "*** empty log message ***\n\n\ngit-svn-id: a9b3423f80f97d8686891a9c593c60a3eca95014@10 67c13c2a-ce2d-4362-9fbd-a73952e22801\n", "proba": 1.0832557109097252e-06} {"commit": "4a4731eda22170a77bb24dd3c7fc8ff4cafecf9d", "message": "bump version to 2.7b1\n", "proba": 2.997898889134376e-07} {"commit": "22d5d93c6842a7422adf8751f8ca62e2bd7498b0", "message": "Better check for clashing quaternion type; closes #6\n", "proba": 1.363112573926628e-07} {"commit": "3742825867d81c12a5cc2a7af686a4dadd867779", "message": "remove dead code in yaml component\n", "proba": 1.2737394854411832e-06} {"commit": "7c339bb5a66ef5eb8437a19470b7308bb3765c00", "message": "Remove unused file.\n", "proba": 2.4738133674873097e-07} {"commit": "77c89d6d2d9a81b2f44a68f83a23b0400efac885", "message": "wdbc: Add DBRow._field(), rename some DBRow attributes\n", "proba": 1.6367007447115611e-06} {"commit": "f608774860dd0313b79747472a4c105cbfacf19c", "message": "config validation added\n", "proba": 5.15004501266958e-07} {"commit": "8f104bdef090cce282f4dd789f3fed83baffa24e", "message": "Fills out script information.\n", "proba": 2.422042371108546e-07} {"commit": "756478626c8e415603db017219c4e88f0ac8c264", "message": "updated version string\n", "proba": 9.84162056738569e-07} {"commit": "bb8be21ab286bf388527e46c611779c9299c54de", "message": "selection\n", "proba": 1.930845201059128e-06} {"commit": "ab585d6d3c580f035bd7e651b2e392a5734e69c4", "message": "Register Shop before Sale\n", "proba": 1.4913122470261442e-07} {"commit": "1ae0b75fb909b3fa1bd42702d4ab2a943a8f7155", "message": "Version bump for 3.5.0b1.\n", "proba": 1.1788096543341453e-07} {"commit": "188d1a368e9e31e59301e97a6a61430dcfaeb0a7", "message": "wdbc: If a substring is not found when reading a wdb or dbc file, try to fall back and keep reading\n", "proba": 1.8379924995315378e-06} {"commit": "dd73a8b1868ed9bd8ef896137b85d0872dec3e03", "message": "Fixing Bunnies\n", "proba": 7.010989406808221e-07} {"commit": "7f9c14c1c89cfa3d3d748113170631784324ac30", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "1196bd70e29814dd96162ce0e7dc19f7ca6107e8", "message": "[NB] Use `get_hub_uri` to look up the hub URI\n\nUse `get_hub_uri` to look up the hub URI (instead of explicitly setting\nthe hub URI through an app option).\n", "proba": 1.1579381009596545e-07} {"commit": "e93731510a22ec4d0fbd0e4db8ea5820506b76f5", "message": "no idea\n", "proba": 0.0002797870256472379} {"commit": "4b14578da4d56abaf36026a69aa097a2653c84f0", "message": "dont need __init__ in flat repos\n", "proba": 2.8390568331815302e-05} {"commit": "6c56184ad90aa8614860a15db7e42434d13dcffa", "message": "support for more elaborate dataframe column names\n", "proba": 4.235963899645867e-07} {"commit": "e04dc0160231e02bb0c59759f9a1a62f8a0e81ed", "message": "expose netcdftime.__version__ (issue #504)\n", "proba": 2.286744944512975e-07} {"commit": "bc43827ee733af9c37ca3b97b471ec1d2cde294b", "message": "Add unsubcribed handler to server.\n", "proba": 1.3005248433728411e-07} {"commit": "bfd75779edc9e686fba6e8fc720a77dc0e89e8f4", "message": "MultiMethods and 'fromData'\n", "proba": 2.07833565468718e-07} {"commit": "9fa1e562f66c723defad45be56023f4912ace72d", "message": "Fixed -d option\n", "proba": 3.353551676354982e-07} {"commit": "145f50de7b4c396d7ef593beb8562753eef46588", "message": "Adding line breaks to some error messages\n", "proba": 6.65622906126373e-07} {"commit": "e96292f3dba057e40ac8f7dffdd8b3fa99b5707e", "message": "added hotkey args\n", "proba": 1.8177993297285866e-06} {"commit": "9940212f5d0cf4860d0dc092dc55031218de490b", "message": "Fix test return type\n", "proba": 3.219638529117219e-05} {"commit": "d3899d41f24073cc1aa4e26a68ad4f4d2b3c265d", "message": "history fix\n", "proba": 8.326096008204331e-07} {"commit": "efea225166a74404927e81b06a253f3d21ad2c0e", "message": "TST: fix tests with matplotlib master (#1817)\n\n* TST: fix tests with matplotlib master\r\n\r\n* also fix legend height test + more robust method to get specific axes object\r\n\r\n* fix robust helper method for old matplotlib\r\n\r\n* typo", "proba": 1.3509706775494124e-07} {"commit": "54e8c5ee238bd869078dd7da3bf6397ed37be586", "message": "fix(Horizon): SSE module compatible with Python2\n", "proba": 6.211606091710564e-07} {"commit": "9d1317231a1c5d62fddf130c78e3942a08651d42", "message": "Fix for numpy linspace but where count must be an integer", "proba": 1.9331322619109415e-05} {"commit": "720b87fa7b84c5c45057116b2708ac13fc89ee1f", "message": "Fixed broken parser import in microformats tests\n\ngit-svn-id: 4df7ec159d6f34d4a1fbec6b67bab684fedd02d9@38 535ce8a4-231d-0410-ac7f-15f3cd728b52\n", "proba": 2.4089948055916466e-05} {"commit": "a6a012709345990b991bf6afa9b8ecdeb8069a90", "message": "added context processor for the google key\n", "proba": 1.7765815130132978e-07} {"commit": "86eb16da4a6c3579eb514fa5ca73def7be8afd84", "message": "[#2755] Add noqa codestyle\n", "proba": 1.8323589756619185e-07} {"commit": "77ee5076e60320476bbd5ba7c23611f2d4706041", "message": "\n\ngit-svn-id: https://subversion.assembla.com/svn/threedhst_internal/trunk@120 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 6.829079097769863e-07} {"commit": "0a908288630f504ba34eb667d00da60a0d35516f", "message": "revert [1348]", "proba": 1.5645730400137836e-07} {"commit": "0f72ba5b7347355a7266d51251b8295c489f7917", "message": "Fix failing system tests (#5837)\n\n* test should use service account of current user. KMS cannot be run without setup or CI account\r\n\r\n* add kms setup for storage system tests\r\n\r\n* fix name of kms keyring\r\n", "proba": 1.3310054214343836e-07} {"commit": "a9a691243b282b345017676363bf8039a606ac99", "message": "gfauto: change Amber comment (#1037)\n\n\"found by GraphicsFuzz.\" -> \"found by the GraphicsFuzz project.\"", "proba": 1.0707174880053572e-07} {"commit": "9d72ae353dae75575334ac23929bbec4a662732d", "message": "Use python3's print in python2. Import other utility packages.\n", "proba": 9.876861213342636e-07} {"commit": "1cb1a345e2b353e5791aa4ea39f032b1e879c669", "message": "Better GetDetailedOverview text\n", "proba": 1.4205414800017024e-07} {"commit": "ad73ef8e4433645cd72bc92439c4d07c5d1f6455", "message": "Add test for radian ticks\n", "proba": 2.3267998017217906e-07} {"commit": "195c5694093c79a1198b0a752fed86b7c60eb3c7", "message": "doesn't work yet, but made it an object and made it parallel-friendly.\n", "proba": 1.2509626401424612e-07} {"commit": "b8e3d050939b00d6aacb620cc73b43134fdfe9ef", "message": "Add remove_torrent capability.\n", "proba": 2.074090588166655e-07} {"commit": "30baad1c058a3e929c88b7e10799031e0a0b4bf6", "message": "Fix a typo in rebaseeditor comment\n", "proba": 0.008334659039974213} {"commit": "659d28849aa1e368826640a0bedf833b62d32c98", "message": "Assorted fixes\n", "proba": 2.8742832114403427e-07} {"commit": "1928e5a8bf1f96b23ce74e0edd21850512d2d429", "message": "Update inventory.py\n", "proba": 5.722246783079754e-07} {"commit": "dded8beb4a075dfc44938d5355727cc4058ba80b", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "27bd10ffb26bdb8062add0d649edc00d227469ce", "message": "Implement code-tests for the following checks:\n\n* com.google.fonts/check/081\n* com.google.fonts/check/083\n* com.google.fonts/check/084\n", "proba": 0.9999994039535522} {"commit": "3474a9afce8d0b4f12c6d5d37754f18fbcc9342d", "message": "uniformed InternalTip to #38, ready for #46\n", "proba": 1.111481680027282e-07} {"commit": "073ffd1bffb71a3896b4e6b8d54dd84e62f04e69", "message": "Default to tab active, this is damn racy\n", "proba": 1.162877083515923e-07} {"commit": "d841788d995b62792c7dbaf4d890ae1bfad0137f", "message": "SMB_URL.py; Added more doctests.\n", "proba": 1.0989893439727894e-07} {"commit": "957f3428dca7c96a0c5273804300fee1db04d0a5", "message": "ability to logout\n\ngit-svn-id: 28eb60533e633b69bbc2035b64c54cbcaec13509@1033 1860ccae-0748-11de-bc6d-132d5dcf21d4\n", "proba": 6.490799933089875e-07} {"commit": "3683e802486f575e061c8ddc4ca25d6f24f7e3f0", "message": "fix authorization_paramater error parsing\n", "proba": 2.37710901274113e-06} {"commit": "56257160dbd846ac7039d0a7a2dc8eaec224f60f", "message": "FIX: Fix incorrect output for annotation to JSON\n", "proba": 8.006494454093627e-07} {"commit": "539593d3911ed8e9ab3192bc1353a71eaa3ccf42", "message": "typo in comment\n", "proba": 4.043458261548949e-07} {"commit": "ad66532633940d45bb2e335a2977a6c01acb304c", "message": "fix the abspath(None) is getcwd() bug for when modelfile is None\n\n* I had already fixed it, but then I reintroduced it without thinking.\n* add another reminder about moving import layer mod into loop and combining with other attributes for custom layers not in carousel\n", "proba": 4.146501453305973e-07} {"commit": "edc8761296ad65330e51e98a6cc602dc2e9033b6", "message": "[enh] def __unicode__ for Document\n", "proba": 0.9999984502792358} {"commit": "2f79e7f6d476fd412cd7ff0ff30eea9738e6d2ed", "message": "Updated docstring\n", "proba": 9.301629120272992e-07} {"commit": "3eda872d23d5d19eb1e78d772357fba4c4fa0fa5", "message": "Fix test case for response\n", "proba": 0.0005463618435896933} {"commit": "828afde45e1c24968dea4df1b22452d8f404bdb5", "message": "Build DummyComponent skeleton\n", "proba": 1.105305955206859e-06} {"commit": "d740e8b71b1a6b315aa950c9202f3a7a42de5656", "message": "only delete newly-compiled macro files if they exist\n", "proba": 2.1694654606108088e-07} {"commit": "a2efe12a4764d74c7f24988c4b5969180cd8de65", "message": "Descriptive\n", "proba": 6.645511348324362e-06} {"commit": "67d1169674c2101627d624be35fcea9ad278c6c5", "message": "fix code handling if module_vars is None\n", "proba": 0.9999988079071045} {"commit": "c344ac9f7adff2de486fbab42c5f9643b0bd5866", "message": "Fixed wrong 24h stat\n", "proba": 3.8220022702262213e-07} {"commit": "a835c7e45017b80ef29aeb7511f87766d2ecd7b9", "message": "missing comma in loggers settings", "proba": 6.3196171140589286e-06} {"commit": "7fb4e4213bcb56c1b6c094b2f48c4889cc100ae1", "message": "Format.\n", "proba": 6.705537316520349e-07} {"commit": "25d5deb35771238e1dda781d57386a22cdcdfa41", "message": "no debug log msges\n", "proba": 6.389583973032131e-07} {"commit": "e94e7ae0f52ca0f566127ac824a7471751f16924", "message": "version 0.5.3.1\n", "proba": 2.6735931442090077e-06} {"commit": "12fbc0e1c01a5c77e73842f8b813bf45c5eb99bd", "message": "fixed gender\n", "proba": 9.848335139395203e-06} {"commit": "5c7a6fdd8fe5ac3c078329e4717ba54a6a5a23c3", "message": "Added recalculation after Z flip\n\nThis was added to prevent the choice of BG vs SG channel being made on\ndata from the wrong surface if sample is Z flipped.\n", "proba": 1.0120773197286326e-07} {"commit": "c99a58d5b4ab071f05745d404d27fd2a62dfdc3d", "message": "save in-values also on insert\n", "proba": 1.9749290913750883e-07} {"commit": "d6d70ed4e27b0e43536ea0e55321189a19bd146f", "message": "add graphene debug middleware\n", "proba": 1.8973929627463804e-06} {"commit": "0f59a193169be32632722f0716abd8cc226ee65e", "message": "TST: check for exception in f_test with zero'ed params\n", "proba": 3.0882580404067994e-07} {"commit": "b17164cfe881924cd64b5bedaca4e2a8ded768d0", "message": "More darwin_sysctl tests\n", "proba": 1.4208124810011213e-07} {"commit": "8927334dd7f4a13a770e85298d407b95d9417d3b", "message": "common/utils: Fix VariableDoesNotExist for some templates in debug mode\n", "proba": 1.9310832044538984e-07} {"commit": "76f59a0be5fd8321d71fe5a7deb223daac2a5181", "message": "version 0.5.17\n", "proba": 9.186741749545035e-07} {"commit": "2e47d18c76f640927ba4b1d6d77422c05d9d6f73", "message": "Not looking for fork's branches\n", "proba": 1.3082402574582375e-06} {"commit": "13a1d5a1a34e7076b2abeb28f9809cbc804e9f4e", "message": "Add daily GMAU on redundancies re \"mutual\"\n", "proba": 7.664692702746834e-07} {"commit": "035785635aed55346d1b3646601afe21ea3719ac", "message": "routeTableManager: warning, not exception, on a duplicate advertisement\n", "proba": 5.305585659698409e-07} {"commit": "dedf8d4b6d4dd81881052369fe6cb22b6b1ce8cd", "message": "BUG: loglike memory conserve w/ concentrated scale", "proba": 1.4406512605091848e-07} {"commit": "a962f1e0aced277e673eddc6b70e316bba482f24", "message": "mail: fix typo\n", "proba": 0.9989388585090637} {"commit": "e40126f298cf7816411294d18059ebf9a58ddaea", "message": "and account for py2 stupidity about weakrefs\n", "proba": 2.267417897883206e-07} {"commit": "f9a1da6e60bfbd9c9e5be769f1223d628cec6481", "message": "[FIX] base_external_referentials: set the module version\n\n", "proba": 4.1689716567816504e-07} {"commit": "6eeb2b4f79c2f735552cf7c061b48425d3299e51", "message": "Use argparse.\n", "proba": 6.34783987152332e-07} {"commit": "72fd62dca8e87e67833698dd7e38b879c54d6e27", "message": "mailing: use env. variable for sender\n", "proba": 0.9999817609786987} {"commit": "a08726fc4262c6d8e9c69db3df322317cb87f6c2", "message": "Add is_blocked to worker store\n", "proba": 1.2041080026392592e-06} {"commit": "cea085633dd67f708b8571315a4dcf48e3d8a26b", "message": "Add commentsg\n", "proba": 1.9096304981758294e-07} {"commit": "d1abdd8f0271c711e3c9e772e78dfac69860b86a", "message": "don't deliver if hidden or 3 reports+\n", "proba": 1.2566901830268762e-07} {"commit": "fbdf31dcc5794065cf31b2d8701a97e280b40883", "message": "Remove extra superseded techMD from reingested pointer file\n\n", "proba": 1.2988267883429216e-07} {"commit": "3de4e87af5502feb1186cb1a11b56df018ae6e19", "message": "PySafetyBear.py: Fix comment typo\n\nThis fixes the typo and changes it from parseable --> parsable\n\nFixes https://github.com/coala/coala-bears/issues/2629\n", "proba": 2.2767156337977212e-07} {"commit": "47752edf6a324b394490f3dc3fae26f582c04b42", "message": "dirty fix maybe\n", "proba": 3.4415887739669415e-07} {"commit": "6e60c984694020bb40610928c00158b0f1a19ebd", "message": "Stripped unused imports\n", "proba": 4.6340215931195416e-07} {"commit": "807a23b3e55d2470d2ee892c0f01f7b361bbc752", "message": "Fixed issues with reingestion of uncompressed AIPs.\n", "proba": 1.0189067722876644e-07} {"commit": "ac75419a560fd5d43f7227300e1e1bd052ebb248", "message": "Removed unneeded experiment\n\n\nFormer-commit-id: dce635bb73d8c4b40723fb7d5647ce6190766f6d\nFormer-commit-id: 8bf4f3bc39890524e0862c8153e9f6f919141e3d [formerly 5e6f8b643ad89b6ca32313b7fcd79fa0a543ca6f] [formerly f6995617477c8c89d3cb62e868a29ab69ade27e2 [formerly 8e03e91bb97fdfd32f540fe1b12b3749dfab7315]]\nFormer-commit-id: 413753777da110a00237357856a80e7f8d0eb53d [formerly 5a769559402365356f408b155023f3bbd1d704e6]\nFormer-commit-id: 44e4c77dbf9d76755cd26c9454d3d8adb531f1b1", "proba": 3.3397491279174574e-06} {"commit": "5ecd20d86a0fe2586cbac4daadd34bb13443f94d", "message": "set central prototype executable\n", "proba": 5.693407842954912e-07} {"commit": "e2fad4dc4f69224da303cb91d7093978b04c0798", "message": "fix to when to show free space row for a device\n", "proba": 3.7134523722670565e-07} {"commit": "ef88c4a778d022c8548bc941a4240c6031843ac5", "message": "renaming default func to calamari in calamari.py\n\nSigned-off-by: Alfredo Deza <3ae498813ac9b6992b3bb72690656738fc9b4e19@inktank.com>\n", "proba": 1.8606429819101322e-07} {"commit": "b6acf22e8c822049f0b79ca8c69cf556af5a1190", "message": "json calls updated\n", "proba": 7.235025236695947e-07} {"commit": "8481e5b2d251fcbac75f0465cb80a0f8e7f42c0c", "message": "auto-detection of existing scans will now overwrite latest scan\n", "proba": 1.2212618116791418e-07} {"commit": "208c635a7d064fafc14dab97172c98cd5d8e6fc6", "message": "Don't leak RPC connections on timeouts or other exceptions\n\nFixes bug 968843\n\nChange-Id: I9e0f1e306cab203bf4c865050b7a45f96127062e\n", "proba": 7.305795861611841e-07} {"commit": "928f4e5a7ac12bd52b8ffcc37b5a6145c84bab83", "message": "fix transform types in sample.subset\n", "proba": 1.7461944707974908e-06} {"commit": "ce6a1adcd6bfbcc6f393c830a2a6e4e61fb427b5", "message": "make prepare state and add as argument of __init__\n", "proba": 8.706712719686038e-07} {"commit": "e6cb1617e588d6b276fe01c401f2c1b34cf88d5f", "message": "fix stuff\n", "proba": 2.152017259504646e-06} {"commit": "8bc5769f312a62e80401f2cea36e8887fd84abb0", "message": "Add comments\n", "proba": 1.6416548476172466e-07} {"commit": "f34ee49954a75c26ab85ddc5521141eb30b98e8d", "message": "provide only excerpt of html response\n", "proba": 2.1453697627293877e-06} {"commit": "008296a7a1e5be3abe8d397ed6a8a773b19063d6", "message": "Improve the documentation of as_grad_stopped\n", "proba": 0.00021271203877404332} {"commit": "62744ef767398126ba59d1cf53d0602e1b5b0002", "message": "fixed error\n", "proba": 1.1343307733113761e-06} {"commit": "980b06d11e10d9b24c94d795fd5bb3f7a4abfb71", "message": "Space in URL\n", "proba": 1.7413618479622528e-05} {"commit": "1d65e7616e80904a8196fd943fed711a251bf748", "message": "update root api docs\n", "proba": 3.460222615103703e-07} {"commit": "4782408821e3bab9f7873e910b02b1549bc42aad", "message": "Hadn't credited Jeff Bryner for the code to use lxml!\n", "proba": 9.936346145877906e-08} {"commit": "05462845985a464cda10903d2490765a75473bee", "message": "Especifica TextInput\n", "proba": 1.1901252037205268e-06} {"commit": "ef1ea9c3531a8647726d968937ff58f34f00f802", "message": "night was short\n", "proba": 0.001436328049749136} {"commit": "5e69753aae867f5e9cfea69640706642a59f73c1", "message": "Get rid of print()\n", "proba": 3.4008866123258485e-07} {"commit": "29420d41435865345cacd3595e745be6cf4ada18", "message": "Fixed syntax error.\n", "proba": 2.0155603408511524e-07} {"commit": "2a158d81f8c60d0e19d9cdd31a3a5d47321ee5bd", "message": "Fix test method missing a requests patch\n", "proba": 2.454185278111254e-06} {"commit": "7879f957e8c41090f58487a2a366f0202039d573", "message": "Skip all PDF-info tests for now.\n", "proba": 1.0398276373280169e-07} {"commit": "e1725bd069532084686cf671c69bec62af42a0dd", "message": "Tests updated\n", "proba": 3.304211873000895e-07} {"commit": "41a35d86c75e378f9a18f76bb3ec2f9c46247c79", "message": "Fix `tensorflow/serving` version to `2.8.2` temporarily.\n\nPiperOrigin-RevId: 472350308\n", "proba": 1.8978211301146075e-05} {"commit": "6619bb36227dd6c352b08cb6e3ab71e88291eb32", "message": "*** empty log message ***\n", "proba": 5.360483328331611e-07} {"commit": "ae7b583cab8d38b04ce57571f50221b4a2e429f6", "message": "Update base.py", "proba": 8.152527470883797e-07} {"commit": "46b860e93d8a9e8dda3499b7306e30ebcd0e0174", "message": "handle session stopped\n", "proba": 2.1250910720027605e-07} {"commit": "e363291e93c578c7c4009a86bbca893346213931", "message": "Added directory syncer to sync a local directory with ONCs AD content\n", "proba": 1.600173362703572e-07} {"commit": "5344220edcf1f22391a3ba0452e92d79f55a85a7", "message": "add method wait() to block until every backends answered\n", "proba": 3.842688443000952e-07} {"commit": "869be40427fbc7d448386b89581b200037a91734", "message": "omit redundant variable\n", "proba": 0.032565534114837646} {"commit": "e38fa3f55b0e60a1d6c7fa0cf194e6f3bd4b899d", "message": "add histogram util\n", "proba": 0.0007857475429773331} {"commit": "b198234b4399aee241f79ba20525f656185d951e", "message": "changed image display in yellow_tool.py for consistency\n", "proba": 3.5573714285419555e-07} {"commit": "1834cf3d559dc6d5c91b8bdb7178aef753699bae", "message": "raiseError argument added\n", "proba": 5.706584715881036e-07} {"commit": "6e7690e615de0226d378d90e84fa15418647d034", "message": "Fix `bgp_group` label in forms;\n", "proba": 3.2477942113473546e-06} {"commit": "8252c0e044588b0eeb93c4cd4dfe8d8953d8763c", "message": "* subversion/tests/cmdline/svntest/sandbox.py:\n (Sandbox.simple_commit): rename param since the target can be any file\n or directory.\n", "proba": 1.0543829631615154e-07} {"commit": "6e3fb7a227f550e92bff730df1614435424df445", "message": "Update broken URL for publisher ranges\n\nThe URL in a code comment is now a broken link.\nReplaced:\n http://www.isbn-international.org/converter/ranges.htm\nwith:\n https://web.archive.org/web/20090823122028/http://www.isbn-international.org/converter/ranges.htm\n\nChange-Id: I8674419457247b054ebc68a420a8e5e6aa2d96d5\n", "proba": 0.00025390912196598947} {"commit": "ba7708d9d7c7f4da55d08766ebb31bd48d3fc8a3", "message": "fixed utf8 filter to stringify first\n", "proba": 1.3722992662223987e-06} {"commit": "63141a9b56cb0917cef4f7fcd1b6a9911f9dab8d", "message": "Fixed not calling method\n", "proba": 7.998175988177536e-07} {"commit": "dc6b61adf32c2a761d63f4a9f09be76b74e37293", "message": "lint: fix recommendations via templating\n\ncloses #189\n", "proba": 1.2909838176256017e-07} {"commit": "35bafc7b0dc049055983386642f35d0e79a58dc6", "message": "Removed unuseful and slightly complicated output image size-limiting code.\n", "proba": 1.3090598827147915e-07} {"commit": "0a1adb99e09486981070dc65ca8aebb823ec1dc3", "message": "lint: cleanup handling of nursery rules further\n", "proba": 1.2000882065876795e-07} {"commit": "38290f309a8c961a35d73f3490dbf8a5d47c0cc4", "message": "Turn obsolete check into assertion\n", "proba": 0.00022049386461731046} {"commit": "7d70f3780cf217f95462ed164495cc821c3cffe9", "message": "Several attempts to download change files\n", "proba": 2.6504605443733453e-07} {"commit": "8216a9b07838be053e2443a8f049b55e1ae22db0", "message": "Use --svm to create a libsvm file, which can then be used by weka.\n", "proba": 1.0430217400880792e-07} {"commit": "3643f0ce1b7ea7982e8081ae29e726c73471cc4b", "message": "update description\n", "proba": 8.540638987142302e-07} {"commit": "42561d709a2ecfee71103dfbb55116cec1128b71", "message": "fix redirect after upload\n", "proba": 2.755086256911454e-07} {"commit": "c9a915692b30458717ead2f83fce77ce295e5ed9", "message": "pylint: add recipe_folder member (#10527)\n\nit is created dynamically in conans/client/loader.py#L71", "proba": 2.171216522128816e-07} {"commit": "746f9bd42143ae329ab6f59b4eb97e228d77fcc6", "message": "Updated Code with new version of sympy - Fixes Issue No 10388\n", "proba": 1.5470827463559544e-07} {"commit": "4b5ae262bab0bc0c83555d39400049f20aaca9cd", "message": "Add CONVERSATION_LABEL_MAX_LENGTH constant\n", "proba": 0.9999740123748779} {"commit": "aeeadcea21d17ed2470b508003b3b794346744cf", "message": "allow tmpDir to end in / in a config file.\n", "proba": 1.0758721913362024e-07} {"commit": "d5cc75de382dc4cecedca2af8bdb63113c578fa8", "message": "post method\n", "proba": 1.7681904864730313e-06} {"commit": "0a0f637bae3b2bc27c2b12b99a41952f3f658de5", "message": "[#690] simpler theta computation for cylindrical case in _get_ptsvect()\n", "proba": 1.99574196813046e-06} {"commit": "ce20c91ae5f774914b24d0f22fc1fd564a613eab", "message": "FIX: use specs_from_url to parse requirements\n", "proba": 3.154895011903136e-07} {"commit": "8c8563f86ee581d19865c7849daf3212ab171c7e", "message": "Removed unnecesary comment #\n", "proba": 1.6525309831649793e-07} {"commit": "3d024b28895716f9dba29c1409bf58276c7c1add", "message": "More fancy\n", "proba": 2.319316081411671e-07} {"commit": "7a1e57fa5c6d2c6330a73e8fab95c5ef6fa0ea35", "message": "Fix indentation\n", "proba": 0.0172440055757761} {"commit": "4b9c2cd8444b2421e4c5ea51977fe9ab5681b78f", "message": "add post-link warnings\n", "proba": 2.337805540264526e-07} {"commit": "3f4dcebe6fdc4bf9c0119c907e0b4d69d3b135a7", "message": "CallbackWrapper now just using partial\n", "proba": 1.208699274002356e-07} {"commit": "6bc89afaae7ccdc3f3f7cdd0640b7a91b0e7da74", "message": " spaces around == and %\n", "proba": 4.390428148326464e-05} {"commit": "9025511f32acdccf7fbd829bf52b78e23cf48a66", "message": "\u6dfb\u52a0check_login_sig, \u7528\u6765\u83b7\u53d6 login_sig \u53c2\u6570\n", "proba": 3.038671820831951e-07} {"commit": "b5d400514ac8e0380cbb55c0fff8e29a08c55542", "message": "Fix update\n\nSigned-off-by: Chris Harris \n", "proba": 1.0953710471994782e-07} {"commit": "2cb4d7ad094de599be768b52dc8b156d3ba8fbbf", "message": "almost done with it\n", "proba": 1.9084835400917655e-07} {"commit": "f982b62cdf2c42130b69f99e5f7c8e7f88386f2d", "message": "Support keyword-only arguments in dispatchers. Fixes #1077.\n", "proba": 1.0059975608101013e-07} {"commit": "0f105a0c660d1a894c1679a1da1924a6d49accf3", "message": "Refactoring to remove need for constant process on submit node\n", "proba": 1.5951728471463866e-07} {"commit": "9371e36d0876f9fc565fb9c77d92ab5c3caa84e8", "message": "Fix type-hinting\n", "proba": 0.0013726420002058148} {"commit": "c558bb3951af03210950dc56e12ce91d4b275b43", "message": "Better docstring for cherrypy.dispatch.VirtualHost.\n\n--HG--\nextra : convert_revision : svn%3Ae1d34091-3ce9-0310-8e96-997e60db3bd5/trunk%401655\n", "proba": 8.734048719816201e-07} {"commit": "ea6acd62ee58abbbcff73933b35e2be1014bbea9", "message": "Network helpers for upstream links and for creating GeoDataFrames\n", "proba": 1.2625523027054442e-07} {"commit": "e6a1d81b6c6008cf7d933c156309f560b9383e25", "message": "Add helper for running async functions\n", "proba": 8.770064710006409e-07} {"commit": "389ad0b8c6da5f07c2d2973b40fe4150fca3282c", "message": "Delete global_settings.py", "proba": 2.2550773337570718e-06} {"commit": "a0653807f0e1f085181edf681af266ab0a58776a", "message": "removing colors\n", "proba": 1.2554005479614716e-06} {"commit": "825ebcd0fcc2a45e73f76baff6eaee1f0bdd3115", "message": "bug - verifica\u00e7\u00e3o - titulo do relat\u00f3rio de patrim\u00f4nio com proced\u00eancia vazia estava como \"Patrimonios sem equipamento\"\n\ngit-svn-id: 7e173122c027d0f21e6e87a6c2ee4015326e90ed@1539 9a56ff49-6fb5-480c-b637-73e6884d323a\n", "proba": 1.9451449588814285e-06} {"commit": "82ba352de8489b589f964e8820be33ddd5fc28f4", "message": "packaging: Updated upgrade flow to rename DB before its upgrade.\n\nUpdated the upgrade flow so that restore operation will check\nwhether DB was already renamed, and if so, it will restore it\nto the original according to backup file.\n\nChange-Id: I686b033d15f7d8d91de52171ac06b6b8c836abef\nSigned-off-by: Alex Lourie <9b6bd04ec8ec26165955e5c2df3f157a49c49dc0@redhat.com>\n", "proba": 1.4966923345127725e-07} {"commit": "11df99e6fd5a385e26a27b0741e805c7fc47096f", "message": "Simplify config stuff, now pass a map/dict of names -> classes for tasks, rather than meta-magic\n", "proba": 1.283388968431609e-07} {"commit": "4f686cafc5c3c86701555e0598c7be5bd7d0b153", "message": "Relaxed required prec for convergence\n", "proba": 2.0815689083519828e-07} {"commit": "11b688bfb777836cf115187f6dad275b9b1b6768", "message": "Debugging...\n", "proba": 1.7838324595231825e-07} {"commit": "0f4fd9018bfeb641c6c2e45c9cd15aa826206874", "message": "Small fixes\n", "proba": 2.0434912073596934e-07} {"commit": "461412cd80b6c92e9e67b0abc90433ae4ed006a1", "message": "Fix instructin printer in checker\n", "proba": 4.811057578990585e-07} {"commit": "ebedb7c5089f957d6873c84bd89281651be47ed3", "message": "Stream rosbag video\n", "proba": 1.4275219939463568e-07} {"commit": "eab94d57777aca862f1aaa2bcd102903d005c441", "message": "Fix: Don't initialize instance variables as static ones", "proba": 3.6179887956677703e-06} {"commit": "3d285c492aa267d2c27fad32a25546fc3db0c04d", "message": "Update protocol.py", "proba": 1.085296844394179e-06} {"commit": "3e2abae1f49b2f492c1d8de07091c0cb42ca4b69", "message": "ascii secret key named DJANGO_*\n", "proba": 9.038364510161045e-07} {"commit": "e504ef393f9f11d243fed88b2e4acc1566ea912c", "message": "Delete unread messages\n", "proba": 1.4917810403858311e-05} {"commit": "46e2997cb51e45dc58f5a97cea6642ba64d03188", "message": "Fix 9.0 version", "proba": 4.054358839766792e-07} {"commit": "c7cfcd256f2b3b197ad3c0934b349cc4f2d2783a", "message": "Make unit-tests work with Python 3.5\n", "proba": 0.0009748004958964884} {"commit": "29eb1ae378433950c6a723eed3aef21cb648b3b7", "message": "Added time window to example.\n", "proba": 1.0999204391737294e-07} {"commit": "d1f440dfddf605d6614d438a378f7202dcf43cb9", "message": "Replace tempest_lib imports with tempest.lib\n\nChange-Id: I6a2ec30f7aecf9c7ba82eb60e87087a837f5c686\n", "proba": 0.001585697871632874} {"commit": "586745aff7a8ff2f5848989d14469b6885e491ec", "message": "cleanup proc_tilenight.py\n", "proba": 1.3606711490865564e-06} {"commit": "caeac70f3f2f7b9fda4bbb7e4ce2ea307806dfea", "message": "Removed google maps for time being\n", "proba": 1.2541327976123284e-07} {"commit": "05bfbd0dbe50866a2c26a4018d4a2786af9b06fe", "message": "Fix decoding when the object is a bytestring.\n", "proba": 0.00030433956999331713} {"commit": "35ed2dae541e7a0f3624c063f738f1617f502af0", "message": "[py] Correct service usage in IE Binding. Fixes #7749\n", "proba": 1.654694727903916e-07} {"commit": "f00c6a3ab8e771d4a1eb317400a815ca51d6c76f", "message": "Perturbations debugged.\n", "proba": 4.732166019039141e-07} {"commit": "5aca45a68a229f43a25dd97d2c680716c9baabf5", "message": "add travis env to sgen\n", "proba": 4.34105146496222e-07} {"commit": "9b59990a107a453140c2cea684d23cf95496a79c", "message": "refactor: generate inter-show triplets\n", "proba": 0.9998006224632263} {"commit": "62184bf35db9fe4bf397211d46f1dee43096f9fb", "message": "Clarify method with a docstring\n", "proba": 6.576014129677787e-05} {"commit": "46184fa15a8849305677178a75f00f4be3344aac", "message": "macrosession script\n", "proba": 5.184016345083364e-07} {"commit": "24cebbd351875103067162733cf682320df29cf6", "message": "Update VMfileconvert_V2.py\n\nadding hack to get stfio working on new computer. 2.7 anancoda env + stfio directory from installer", "proba": 1.753606113652495e-07} {"commit": "c541e9d2e5b58295dac814afc2d3c4536c06208f", "message": "Added threshold to show measurement time, if measurement time older than threshold. Shows measurement time in UTC.\n\ngit-svn-id: 056f9092885898c4775d98c479d2d33d00273e45@366 dda364a1-ef19-0410-af65-756c83048fb2\n", "proba": 1.0521375770622399e-06} {"commit": "b72442341025b5415a5810b09b0acafaddd6eb07", "message": "rename sub -> other\n", "proba": 9.839500307862181e-07} {"commit": "52cbd272ec08a382b4f16dca1579a3ef72365069", "message": "use numpy mean\n", "proba": 0.0002252880804007873} {"commit": "84494cf330b396f379eaf9dfffbc115cc79ac924", "message": "Remove debug cruft from alsa.\n\n\n\ngit-svn-id: d4fdfcd4de20a449196f78acc655f735742cd30d@1330 14d46d22-621c-0410-bb3d-6f67920f7d95\n", "proba": 0.00017383960948791355} {"commit": "76683a8c4efceddce03e98134d0371fd86f6dd6b", "message": "Streamline structure fitter code and doc.\n\n\nFormer-commit-id: 905d6b607f2591d2683b3a42ae9695854fbc6cbc [formerly 70e8fffd3089cb9675638f0c4b365ca793b8c6d9]\nFormer-commit-id: ad774e6015e78b0cbff006737657eef28f15dca5", "proba": 0.0031068501994013786} {"commit": "f897a5c625d3836b0c014099406b548c8ee6b543", "message": "Adding frequency_ext parser. Needs fixing.\n", "proba": 1.3712119084630103e-07} {"commit": "f25edefc3aa32ebc0f73d333558def7075f0a7ff", "message": "Use scipy's PiecewisePoly interpolation, which amounts to the same thing.\n\n\nFormer-commit-id: acfb505f6cf73728404ce08c368f4b0d982e6a4d [formerly cbb66752a40a0d284d93823066efd0b98e4a1c0e]\nFormer-commit-id: b73246cdb292ebdd95c9805370ce75398945c458", "proba": 0.9993921518325806} {"commit": "5b5f9f0cb64b985c21a5fe65fb141f6346cd7d50", "message": "py2compat for cube\n", "proba": 2.4936084628279787e-06} {"commit": "98f574ab919441cb834139b32d0e7ba2594db4cf", "message": "polish up a bit and add some methods to compute effective masses and band gap in the BandStructure class\n", "proba": 1.2814395233817777e-07} {"commit": "168ce7c55c885dba4cd86165597fe5497faae433", "message": "try stuff\n", "proba": 4.2002267264251714e-07} {"commit": "92a5058e992386ccb908b32294d77f2ff008e9cc", "message": "pickle fix\n", "proba": 2.00301610675524e-06} {"commit": "5fad66759372a4259ce5ed11f001c0138b9256d8", "message": "fixed merge\n", "proba": 9.797176971915178e-07} {"commit": "0d982d341001328903d257b7c8982214e6662b30", "message": "text fixes\n", "proba": 2.3812885956431273e-06} {"commit": "a49ddd64758b23565870439bda36fafd5e1dac39", "message": "Put survey back otherwise\n", "proba": 1.947487646702939e-07} {"commit": "0183b9e2abe164411a7c9a7fd910142ba118bd01", "message": "Fix some broken ReST\n", "proba": 1.729997165966779e-05} {"commit": "6ff1e88d5ff88227da172da55c6c817f0bfb0780", "message": "rename Functions to Function\n", "proba": 0.9999805688858032} {"commit": "d47a440132330858cf678efddc040a54a8d596ef", "message": "added some parameter default settings that need\\n\nto be explicit in L3.\n", "proba": 1.076471534133816e-07} {"commit": "65fff14f81d17a18c1709262da39c298c7a2d475", "message": "Add doc at Response and InformationalResponse for new defined field reason\n", "proba": 1.1520956633148671e-07} {"commit": "393bde7e7f3902f734e8c01f265b216f2d3eef26", "message": "Constants: remove leftover\n", "proba": 1.6826857972773723e-05} {"commit": "0c63b9163e8036cfe503f4101df296648f4044d2", "message": "Line culling out of viewport.\n", "proba": 1.2402951199419476e-07} {"commit": "5a72d8735e54c7e761ab84b48f6efd8b45aabc9f", "message": "fix merging mishap\n", "proba": 1.2209535498186597e-06} {"commit": "f9a99102a7053e444021926d08750f04a662fd9f", "message": "remove unnecessary print statements\n", "proba": 0.9999821186065674} {"commit": "6634ceec94ddfc24b33e5599c12863e591defeb9", "message": "Cache search results for five minutes\n\nRelated to #153\n", "proba": 1.1080864226187259e-07} {"commit": "ba370231fe80280dec806c7c2515061e8607b360", "message": "Add SCA into mbio\n", "proba": 0.9992899894714355} {"commit": "d190d299379b927a8f89b33fef1cb3cdea16cc0a", "message": "catch division by zero\n", "proba": 0.001547806547023356} {"commit": "c5ee3daf687a0b3091cef80edb099fc846ea5dee", "message": "Add a simple caret.\n\n--HG--\nextra : convert_revision : svn%3A14d46d22-621c-0410-bb3d-6f67920f7d95/trunk%401467\n", "proba": 5.5979970056796446e-05} {"commit": "76dee5d1983002e2026a3fa15157fe811661f79d", "message": "Add a separate argument for the type of the field to plot\n", "proba": 3.1096751627046615e-06} {"commit": "f7877726a5d9404bc75c5c48f1fd9c43657595dd", "message": "Fix comment: OperatorPDCholesky -> LinearOperatorTriL\n\nPiperOrigin-RevId: 162544918\n", "proba": 4.736911591862736e-07} {"commit": "aaaa525f7a61bbce915795dafc1a969fe301f467", "message": "declared variables better\n", "proba": 3.041175887119607e-06} {"commit": "2ae7f79baa6c47a62ff2d6ce9b3eb72f66442c02", "message": "ziafazal/api-cohort-average-bug: skip discussion-forum\n\n, discussion-course and group-work from calculations\n", "proba": 1.2251463488155423e-07} {"commit": "1416a87341dba2131ecff8c3030af05ab2d15298", "message": "Option to dump data with shuffle.\n\nPiperOrigin-RevId: 352495592\n", "proba": 4.54832979812636e-06} {"commit": "bb30fdee54c91d2ceca4ec1ffc1aecd0ec479474", "message": "try solve the zero gradient issue\n", "proba": 2.831826577676111e-06} {"commit": "ae4be7f2f2b9ec155ee6f73f04255e672795b70a", "message": "fix noreturn regex serialization issue\n", "proba": 6.988638688198989e-06} {"commit": "0d0857b8d7106de91d8cb26f3d8e61d454837171", "message": "Continued the development of tests.\n", "proba": 1.2866647125520103e-07} {"commit": "2bac81268aa1e429743b6a3179fbd1395e7833cb", "message": "Test CCE 2010 FY\n", "proba": 1.4564521677584708e-07} {"commit": "840511ac95282b3a080bbb951b94259fc3ec6951", "message": "Fix logdet documentation error\n\nExample incorrectly refers to tf.logdet rather than tf.linalg.logdet", "proba": 9.571905366101419e-07} {"commit": "6641db79a33ca4011f2d0a5889887525e49aea44", "message": "Removing dead code\n", "proba": 7.931536674732342e-05} {"commit": "2277c82efdc456e5873987eabac88810b2cece5b", "message": "Fix pep8 whitespace violation.\n", "proba": 3.2915415886236588e-06} {"commit": "5dcdc2c6abc800e6052d43503a88799690658743", "message": "Fixed bug with interpolation and started class for minutely data\n", "proba": 1.305565149323229e-07} {"commit": "54b0feebb18816a936f4a7f323a77808f9973eb2", "message": "Update testes.py", "proba": 4.983703547623008e-07} {"commit": "af9d2e7cc96359c1069544504882117f8f848591", "message": "quick fix for __getattr__ until we have a better solution\n", "proba": 5.866942046850454e-06} {"commit": "ea69046bf697898b3fe1375446b8c46ba91bee52", "message": "Use 'fork' method on macOS and python 3.9\n\n(refs #18355)\n", "proba": 1.3746868887665187e-07} {"commit": "582cc4ebe6f8177c407ce0ef1f5b9e1b23226b80", "message": "Version 0.2: support for python3\n", "proba": 2.8021279376844177e-06} {"commit": "73ceff96b2f065517a7d67cb0b25361f5bd61388", "message": "Delete fixture after running tests\n", "proba": 3.597043018999102e-07} {"commit": "7d5d84ac42cb9b52550723084164bf70f6f50ddb", "message": "removed unused import of ComprehensionTransform (which doesn't work anyway)\n", "proba": 1.102773126149259e-07} {"commit": "922c1b7b5c3f12e29bd64d7a2420e2a8d0d71562", "message": "Support gradient clipping (#2001)\n\nsupport constant clip and l2norm clipping", "proba": 1.1353552764603592e-07} {"commit": "0d18c2702c841b79122b605f93d3467fde31ec9c", "message": "adding db write functions\n", "proba": 1.1353752142895246e-06} {"commit": "6c2850b5608fc832c775a989e83a8bce1c7f9ccf", "message": "addon man: change code to require CudaLint/CudaFmt\n", "proba": 2.1382359705057752e-07} {"commit": "a9877a6dd429c226ce2c9a84f1f2994b74d62ad2", "message": "Force zstandard example to use Python 3 by default\n", "proba": 3.149811504954414e-07} {"commit": "6d1b58746fb426b7f36ff097b7d61d13e7df483b", "message": "Bugfixes and performance improvements.\n", "proba": 1.1824553780570568e-07} {"commit": "7012cb43354c929ded21d94d5db21dac426e860f", "message": "Show recursive calls count.\n", "proba": 1.6916938250233216e-07} {"commit": "3f368ffc23a8505c970e81ce3179e9364216dd5e", "message": "add note to look into\n\nis /etc/hadoop/conf/health_check HDP only?", "proba": 1.0820790663501612e-07} {"commit": "5ac4abf6c7c2d73fe2646f92ab13e4c8b1c28bcf", "message": "removes comment\n", "proba": 3.892741062827554e-07} {"commit": "f949f2fe0e0c66b850700ae56925598ced8fc260", "message": "Disable Sentry logging\n", "proba": 4.514771205776924e-07} {"commit": "5baf17843a2d92fec3078719a8a7f6476a800f99", "message": "totally redone for new overloading scheme\n", "proba": 1.2804792959286715e-07} {"commit": "64d01b77addacb93408fa72859c788e3d19a257f", "message": "Misc update\n", "proba": 3.0924786642572144e-07} {"commit": "6d2524dfc3f3054dc575da1ed87f48718af44db4", "message": "Max upload file size increased to 5GB\n", "proba": 1.0385447239968926e-06} {"commit": "bd8caf6ab48bb1fbefdced7f33edabbdf017894a", "message": "Change of names\n", "proba": 0.001372733386233449} {"commit": "7a4cca3a040cd3c8e5a9e5dfb91d0dd2ae797800", "message": "Updated nsc_instcal_combine_cluster.py to only write data to IDSTR database periodically to save time.\n", "proba": 1.0505488035050803e-07} {"commit": "79307c7f636877ca1671036bb44b3decbe898958", "message": "Updated from Brython Server: 1/28/2016 2:24:16 PM", "proba": 1.114445069561043e-07} {"commit": "8a5e86c6c4b2c0c64f8585ce7d25c771011b9efe", "message": "Removed bad merge\n", "proba": 4.233690162891435e-07} {"commit": "41bd2c431f0a6d5352169474ac9ee0d3674bcc11", "message": "tests: fix\n", "proba": 0.9995574355125427} {"commit": "09e66ae16ff354605e0415189b75c517583ae778", "message": "pywinauto\\controls\\common_controls.py:1522: DeprecationWarning: Method .Next() is deprecated, use .next_item() instead.\n\nGetting spammed with \"DeprecationWarning\" messages upon \"get_child\" with the following command: win32.GetTree('name').get_item(['branch']).get_child('entry')\n", "proba": 2.8366481274133548e-05} {"commit": "666505f6300488c3b0e739e06c53ac21bbf84e83", "message": "Added Program and Org specific menu entries to the GSoC module.\n", "proba": 1.0178501241853155e-07} {"commit": "75acc086e00773a93e73810a2785c53f59068429", "message": "qa_tests/hazard/disagg/case_1/test:\n\nFixed a comment typo\n\n\nFormer-commit-id: 265d7812ecff9fc280f151d6915efae2186b49f9", "proba": 7.679296345486364e-07} {"commit": "1953ec1548aebedf3548fb02329ca6d4d0668872", "message": "Fixed EventBasedBCRCase1TestCase\n\n\nFormer-commit-id: 52767daf03c745e31c1f36b0bfe2b6db94089ef4", "proba": 7.63549508064898e-07} {"commit": "ef08f120adce7a130756d3c0505125d3acf9b8ad", "message": "Test pulse clipping fix Osx #1. (#3144)\n\n", "proba": 1.8259778755691514e-07} {"commit": "fd418d09d7a8571a83f6960114ae5eb1f8547d18", "message": "some tweaks - verbose_name and can_disable flag in base class.\n", "proba": 1.0236773562155577e-07} {"commit": "862dbf52ca09e022cb2914651b364e1fbdd6c9ef", "message": "fix #255\n", "proba": 1.0382041182310786e-06} {"commit": "89502d8b8b5e81ba57a16d71c895e0192eae6182", "message": "Update for pandas 17\n", "proba": 1.3061854531315475e-07} {"commit": "73dec1edd294a1cacda69fdd00a0cae256ab8b29", "message": "error: show more info on CommandError's __str__\n\nSometimes stderr doesn't contain anything which makes the current\n__str__ useless. We now return a tuple of (exit code, output, error).\n", "proba": 8.210163287003525e-07} {"commit": "c640c8e0e3320c799afa32d46345e6668475150e", "message": "fixes #1\n", "proba": 2.0394708144522156e-07} {"commit": "fe926d9b44c7771a42968778a101d99d02b29400", "message": "Adding documentation to metric classes\n", "proba": 3.8869430341037514e-07} {"commit": "5502d38efc7ac4a92224d01694d7e6675875961a", "message": "fix image exists check\n", "proba": 4.230489594192477e-07} {"commit": "4ffc6c6d361f16feed9673373bd768323dc888bf", "message": "Add gpu_snapshot object\n", "proba": 1.6654362298140768e-06} {"commit": "d731a04b604fb39ffeb4ba05d42664a15de8508c", "message": "xapi-tools: fixes cache cleaner script\n\nFixes cache cleaner script by removing import of\ndriver and using session directly to call vm_utils.\n\nThere is no test included for this. Since this is out of nova\ntree, adding tests is tracked in 1481705\n\nCloses-Bug: #1481693\n\nChange-Id: I25ee22777baecaf64de63a39d19e8f8f514f70b3\n", "proba": 5.647603984471061e-07} {"commit": "49839733a7f26070e8d666d91fae177711154e1d", "message": "Change histogram_proto to use a custom logger.\n\nlogging.warn() written in a import statement causes the default logging\nin the program to get initialized. Once the logging is initialized there\nis no way to change the logging level. The CL updates this to use a\ncustom logger to the files importing this module can still change the\ndefault logging level.\nThe log message or the usage of the module does not change.\n\nBug: chromium:1239750\nChange-Id: I55a4628ea5c1eea72142ecbe43c15ed0dce314c7\nReviewed-on: https://chromium-review.googlesource.com/c/catapult/+/3296627\nReviewed-by: Deep Roy <196de8ecef43ff77ba1a773ccd52374e3849c302@chromium.org>\nCommit-Queue: ssid <5cd4c27a3fce3491cd65f5ba040b8b631f008320@chromium.org>\n", "proba": 1.4505154695143574e-06} {"commit": "7706910a4f80371f997b836bc72dbef16173ed61", "message": "Removed Chart Angular Installation because of issues with dependencies\n", "proba": 1.703980245792991e-07} {"commit": "2b5baf83b52a32c2424d043f987c0ad70bc564d1", "message": "add a log\n", "proba": 2.2747892671759473e-06} {"commit": "78fa12dfc20b7876518792678ba59ae43fc9e7ec", "message": "[FIX] Remove HTML stuff; it's only in django dev, which we don't run ATM\n", "proba": 2.0670725575655524e-07} {"commit": "ffc157181569fb1bee3d9484e276a72f6d0e70c1", "message": "Filtrando en el json por aquellas categor\u00edas que est\u00e1n ocultas\n", "proba": 3.656710418908915e-07} {"commit": "fd86a626b3544a281f787012637346be6110863c", "message": "python: Adding some version checking.\n", "proba": 1.1874480065898751e-07} {"commit": "3f2474b0a6db95c48eece653fc396cea034b8d8e", "message": "Add received after option to list method\n", "proba": 1.8926583322809165e-07} {"commit": "cddb572907d1bcb5b3372f56c0f98bc1e56abb25", "message": "Fix path issue in Linux\n\nAlso Mac, and fine with Win.\r\nhttps://github.com/jamalsenouci/sublimetext-syntaxfold/issues/5", "proba": 5.929010171712434e-07} {"commit": "68a2c7a0db2224bc778c15ebbfcd81793fe4fb9a", "message": "sparse trajectories for linear generators fully working\n", "proba": 1.3783336783035338e-07} {"commit": "2822ab2dfafb01d4c15b9f41deccecad9eb87f1a", "message": "Replace lambda with functools.\n", "proba": 0.00045836795470677316} {"commit": "ed45058149d919d059ff4080a83f613f18269935", "message": "Disable sqlite loader if sqlite3 isn't available for some reason.\n", "proba": 1.2070681520981452e-07} {"commit": "c719c856d6e35c408c71c73346456cdb76f5d3ff", "message": "Easier setup.\n", "proba": 1.4121884817086539e-07} {"commit": "6efcab30fae1f0c7ad5d678ef185d18843f0bc1d", "message": "Better check.\n", "proba": 2.897290869441349e-07} {"commit": "48b67157ba529e4f7a06986aa6c6c39fad4f1cde", "message": "Fix inappropriate widget display when value is null\n\nI think this has to do with the way values are allocated in Kivy\nproperties? Like, they go into an array or something that's shared\nin common between the instances of an object, in this case CalendarLabel\n", "proba": 2.6707981305662543e-05} {"commit": "527ceabcdbded592c02ee2dce18a19ffce0248c2", "message": "Remove unnecesary comment\n", "proba": 4.1288117813564895e-07} {"commit": "b18cd506874ca62b6e221489d16e24626b3178cc", "message": "Removing a redundant folder creation in the csv_fix util\n", "proba": 3.626022646585625e-07} {"commit": "24f2455d85fd440d0ddfbd569d6282e0dee58c38", "message": "Prevent the database client tests from actually creating temp folders\n", "proba": 3.3098004337261955e-07} {"commit": "a522528ecff586b93b1267915e83f1a5ec31b453", "message": "Fix loss of alpha channel by converting cropped images to RGBA not RGB\n\nFixes #478\n", "proba": 5.203715431889577e-07} {"commit": "170ea15ff4b540f1bc6ab75236da156731271d58", "message": "Added options argument\n", "proba": 3.007199325111287e-07} {"commit": "f019ad54668502888176ec69cb5246c8a059dcb4", "message": "fixed small bug with admin search\n\ngit-svn-id: c74d769ecf1bfbf057d3f10521a721e84271ea06@933 ef98d105-df06-0410-9ba4-9cf3429d62c9\n", "proba": 6.213003871380351e-07} {"commit": "06372025867300d86c48b1f7e03f5738f97a8ac9", "message": "Fix indentation\n", "proba": 0.0172440055757761} {"commit": "ed0d5bf4a8453735ec490d4980b527ddf1053218", "message": "add - basic structure of default sync, push from local, pull on target.\n\nChange-Id: If09bcef4f98b73af2a4c4f7cd45060838f227843\n", "proba": 9.260382967113401e-07} {"commit": "d04c836c7c1fa58376c7b73433a76c9dc6acfc7c", "message": "Fix. Missing after 3rd element in .\n\nChange-Id: I1dcef83ebb1a763ea743d126f62ca55a88b71e69\n", "proba": 0.0017862814711406827} {"commit": "dac5de12f9e775d50bb1e441016ae9625052e149", "message": "expand ALLOWED_HOSTS\n", "proba": 0.0008364146342501044} {"commit": "fcbb83f5acc5c589ae352a405c0a79faf7e7dcc2", "message": "Spec2000 Workload: Spelling Corrected\n", "proba": 2.5820153837230464e-07} {"commit": "bf6754250d21e3025b99b999fee193114b1b4961", "message": "Mailing list EmailProperty should be StringProperty instead, so that it is\npossible, for example, to supply a Google Group URL for sign-up purposes.\n\nPatch by: Todd Larsen\nReview by: to-be-reviewed\n\n--HG--\nextra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%401358\n", "proba": 1.1197862477274612e-06} {"commit": "c474a2f143201dd8bb7cfe4cad6cbf8d8d600fd6", "message": "Use conda build API for making skeletons and ensure no eggs are made\n\nCloses #22\nCloses #21\n", "proba": 1.226586618940928e-07} {"commit": "61d032385fd0fd72c6dfab2515a383ac31ba56cd", "message": "add pkg to install\n", "proba": 3.2107720926433103e-07} {"commit": "2d5c60d6d26fc22f2102af534c0b487884606678", "message": "We have a dict of category : number of post by people active for the category\n", "proba": 9.337545066046005e-07} {"commit": "9371b1484e7843e479c5c54997d339d46cf4aedd", "message": "add logging\n", "proba": 1.2036430234729778e-06} {"commit": "9f98ecb361bd749877ebb65ede126c61e3e46aea", "message": "added support for gzipped input files\n", "proba": 2.2439485292125028e-07} {"commit": "ec733a9377cf68a4326b44b14d66dbbff831071a", "message": "add sigmatot_from_einstein fnc to ohcalcs\n", "proba": 0.0001648615871090442} {"commit": "279bebc53c2f589db943c91f31240a38ad059d72", "message": "optimize username loginfield for mobile devices\n\n* specifify autocomplete helper\n* disable autocorrect, autocapitalize and spellcheck\n", "proba": 1.591188976135527e-07} {"commit": "e230c58a86fffde3697ec903d5e2ef729ec0306a", "message": "Bugfix to fedmsg-collectd.\n", "proba": 1.1475887617962144e-07} {"commit": "b48630d7cf97010d69c9166943add7d7047f021d", "message": "untabify process_irmng.py\n", "proba": 0.006160867400467396} {"commit": "3889aa1083e26ff969d96f8e9100f63334db62eb", "message": "added age and height fields to fighters model for db migration\n", "proba": 1.2549847383525048e-07} {"commit": "54537ae2a15f4e802d114305284431e8bded6a34", "message": "issue #204 - fixup last commit - fix single-account view\n", "proba": 1.9878615376001108e-07} {"commit": "2756934a4b88faa70b137a983eaa7ab3754ae12f", "message": "Spacing\n", "proba": 2.2790518414694816e-06} {"commit": "64804965e031f365937ef8fe70dc749c4532053d", "message": "fix abstract scraper, can't use lxml's url parsing because we need a custom user agent\n", "proba": 5.882230880160932e-07} {"commit": "ac1b2acf95575508a315d4c1eaf5ab31c126f4bd", "message": "fix again\n", "proba": 3.3815109645729535e-07} {"commit": "ecd5acb32f0b424e2d54bde5f33b89bd5abe6ff3", "message": "removed exceptions for GRAPH patterns\n", "proba": 2.5806320991250686e-07} {"commit": "4690417077a7374c99ed980430f44b829296ed26", "message": "fixed rs auth (pycurl doesn't like unicode)\n", "proba": 1.2699803164650803e-07} {"commit": "5ddb0a818fecfedde00aa8d0d1581fda6985a0af", "message": "RDR-530 Feedback 140715 Item 4 - Demographic Form - Change Migration date format to DD-MM-YYYY\n", "proba": 1.3646099432662595e-06} {"commit": "7eb525f774799b6f34b3d9bba90c9924180bd5a8", "message": "Deleted: duplicate settings\n", "proba": 2.219922862423118e-06} {"commit": "2574ca4af87320d7f6e2692feb2ba083901439e3", "message": "small bug fix\n", "proba": 3.1036645964377385e-07} {"commit": "77b7d0840d8a91df762c4d2b03b4636255e791b7", "message": "fkrp #472 Parent can edit child's data regardless of working group\n", "proba": 1.5237540651469317e-07} {"commit": "8034be61267e9b9913c5e24dcfa170a45c9b2d11", "message": "modified self.max_entries to be available from all the MAP types\n\nThis commit introduces the self.max_entries attribute both into Queue/Stack maps and to all those whwqo extend TableBase\n\nSigned-off-by: Simone Magnani <28a588671cca3e381000e92d9de464830e769752@gmail.com>\n", "proba": 1.1049796455608885e-07} {"commit": "624577c1a783ce7f06019ec6d96774f5c1b76432", "message": "fix anonymous bug\n", "proba": 2.0476809368119575e-06} {"commit": "e8fb8c1d7dda19c82f45d6b8c3883d5d4314a5ad", "message": "Fix encoding issue with Office Module\n", "proba": 4.461245168840833e-07} {"commit": "dd963988a90ee8f8608686b9a3dad83328fa9d30", "message": "libsharp grid getter\n", "proba": 3.9866284851086675e-07} {"commit": "c2144e462ba509d0ea555d9a3923e7b2f72d28b1", "message": "changed arch...\n", "proba": 1.4142477766654338e-07} {"commit": "dda1b706c7b6c9ba6544efc03fd4a794df278285", "message": "Alias module replace aliases only in PRIVMSG\n", "proba": 2.8132862439633755e-07} {"commit": "db3f71f537a85396d777ba28d3ad6c8156137c24", "message": "Change pg key\n", "proba": 1.0274227406625869e-06} {"commit": "8c95dd43b6ef3f86558a95fee7cbee9b16dc5733", "message": "Provide a backward-compatible solution to the pmUnits python init problem\n", "proba": 4.6258405745902564e-06} {"commit": "29fb1f19292517237faa37bf52f0c62a5fef5390", "message": "problem 27 solved\n", "proba": 8.645123671158217e-06} {"commit": "6a6c484db29756e6d5826c84edac4753f858d37b", "message": "Add: Sync project settings between refreshes\n", "proba": 2.381789840910642e-07} {"commit": "2e4f31d003ee7325fd344b7fb0f104a5c36e304f", "message": "PEP8 adjustments\n", "proba": 1.427766989081647e-07} {"commit": "b6390228fe20cc4a5fddc8c67844f1cf2756a1c3", "message": "Fixed rankedftw_graph_url property for ClanMember model.\n", "proba": 1.0136768935353757e-07} {"commit": "ace28630d4a7deb1c00a9f13680e6d85698f9a75", "message": "Adds a guess for 5v5 replay attributes.\n\nI'm not sure how to figure out exactly which attribute id maps to which team\nsetup. Still, candidates for 5v5 and probably 6v6 among other rarer custom\nteams must be accounted for to parse those respective replays.\n", "proba": 1.0757039348163744e-07} {"commit": "dc9d33215377a2feb26464a253819a4460b1577b", "message": "Updated from Brython Server: 5/30/2017 2:16:50 PM", "proba": 1.0961631602413036e-07} {"commit": "8c959354b59fb25f63ca73ecdcbd0f59197cabc9", "message": "Add --random option.\n", "proba": 5.423178208729951e-07} {"commit": "e166c35d01e7852cb45770946099a61871f200eb", "message": "Updated from Brython Server: 6/13/2017 12:34:29 PM", "proba": 1.0895139013200605e-07} {"commit": "aa4c4ad46518572a2225aac9679fb73e6ca3d771", "message": "Argument handeling with argparse\n", "proba": 2.794285762774962e-07} {"commit": "a66fd665dbd6835858b472a0cc21ab97fb5d426e", "message": "Correcting spelling mistake\n", "proba": 0.03156149759888649} {"commit": "3045fca4f198a9afff6abfe7f6a98c89b1be1ce6", "message": "check if settings exist\n", "proba": 1.4222591744328383e-06} {"commit": "6c8fcc5d39b691f200583c3d40500bacc7e54fa7", "message": "Make the at() function easier to read\n", "proba": 0.0008135983953252435} {"commit": "637e05c3db81688f7278bd15c42184a915e9e98e", "message": "Totoro: a few more changes to make _initNoMaNGA work with addCartOrder", "proba": 1.7438101451716648e-07} {"commit": "aae900ec87068fe753e04288986f27a62d106924", "message": "Minor fixes: srv address and query of active jobs/\n", "proba": 1.0846019904420245e-07} {"commit": "6a7e32d44d9fa3a4531a53995504efd03483ad62", "message": "Another cleanup, including comments\n", "proba": 1.1468699767647195e-07} {"commit": "e625b44977915a8bf193f5fc974fba86758b7926", "message": "Made PDFTemplateView a little more extensible, and added orientation.\n", "proba": 9.79428378400371e-08} {"commit": "4ef8803231dd4c6ff18771649244b044ec1e8f2a", "message": "Delete ex01.py", "proba": 3.992136498709442e-06} {"commit": "39f1c58a2f71af31713f57f7e576635bf439d57a", "message": "Cartesian fixed up\n", "proba": 5.029381782151177e-07} {"commit": "1f7c53b3dda99a9a7536cce14a1a4b41ac7108b9", "message": "updated word_frequency docstring\n\n\nFormer-commit-id: 4304a400f78af6bd44508fb25ae9e4af5502e5a4", "proba": 0.00014426895359065384} {"commit": "3834eb791c72ffa9ae170e0df051147a3730e464", "message": "fix(Clean job): Make more robust\n\nCloses #1023\n", "proba": 1.928000529005658e-06} {"commit": "64e60f23bb9048e338e0bdba274f08810a4b5af7", "message": "Fixed two more typos\n", "proba": 9.251042683899868e-06} {"commit": "88a8a1f4e4d7a0e8f7f89365cf967499e7a495fc", "message": "Remove inconsistency between rel & master\n", "proba": 4.99970446981024e-05} {"commit": "abce4c9958d55e9d46e06c81b670a3fcc56f47ab", "message": "Rename render to wptexturize, delegate render to wptexturize.\nWe will add wpautop soon.\n", "proba": 1.0030029784502403e-07} {"commit": "3d7092850d94a2ae0dff8c81aa1453135677e09e", "message": "Use the same attributes for trigger_initial_build\n", "proba": 4.38026881965925e-06} {"commit": "3999e9812a766066dcccf6a4d07174144cb9f72d", "message": "Add Minecraft Wiki link to version item\n", "proba": 2.3232099977121834e-07} {"commit": "0abebc9e8547f2dc7cb9dc59e5f06498997c503a", "message": "Exclude duplicate responses\n", "proba": 0.00028698646929115057} {"commit": "fdbfc679cba4c26bf3523f5ca5e0cd05ef19160e", "message": "Bugfix in build_common\n", "proba": 3.2400060945292353e-07} {"commit": "bc22e589c977526d52f2f80d952c4cc78f4ba607", "message": "slightly simplify code\n", "proba": 1.1535415069374721e-05} {"commit": "47d88731411489888093eeddf83e3b40ea979032", "message": "ordena gr\u00e1ficos de UFs do maior para menor #120\n", "proba": 1.369207325296884e-07} {"commit": "2342d60a73218b6df9ddaccabdf6b4987e7cf2b9", "message": "Avoid using $ when defining a value\n", "proba": 9.875161049421877e-05} {"commit": "08aba3feeea1b642fa5c0bbcfbf964a8b0222dea", "message": "use globals\n", "proba": 3.947512595914304e-06} {"commit": "4b2627ea786031ea7b1e622fc5cb665a017b3f63", "message": "fix InlineFieldList for WTForms v3\n", "proba": 1.80847422370789e-07} {"commit": "8d13414db9bc2552c91ea2f19f7fbf314ff53e41", "message": "logging", "proba": 1.1690622159221675e-06} {"commit": "2c26b3fa4a17f78090e1ce65e5e92bfa32b5e758", "message": "Added notes on how the progam should work\n", "proba": 1.2584952457928011e-07} {"commit": "8157e240b6fe08b2b45d679c45377f696b966da4", "message": "changed response from attribute to returned value. Added history stack to request object\n", "proba": 1.5720213752956624e-07} {"commit": "f254c963fa13de52be7e57d590a4be70bd305f9e", "message": "Make `roles` in user model query optimization \"optional\".\n", "proba": 2.4804733129712986e-06} {"commit": "0fbdce64f29442bad13ab03edef35b5480e67348", "message": "bug fix: nproc was never respected if mode=serial", "proba": 4.174806690571131e-06} {"commit": "462fb1ae7ed71d76f5a02ee3ce9e6f615ba0bf21", "message": "Convenience method for finding or creating a role\n\n`datastore. find_or_create_role(\"admin\")` will now always return a role\nwith the name admin; useful for initialisation,\n", "proba": 1.3171042212434259e-07} {"commit": "3f1e4d1d1e8e9d7adf0896a22ffeec2256ee4d46", "message": "command line replacements for pipeline options\n", "proba": 5.275444436847465e-07} {"commit": "efae5f023b3293357ee2cf9d0051f2ef0acea79f", "message": "Refactored db_transaction\n", "proba": 6.015949338689097e-07} {"commit": "eb97762538126cb4a451ed23a025490360d01bf1", "message": "resolve_obj_path: fixed on supress_exc=True\n", "proba": 0.9985960125923157} {"commit": "434f57f9670eed75113765504f64272a1d2b3c6a", "message": "[fix] TMDB Lookup - Hopefully fixed query from search filter, relates #940\n", "proba": 1.0277290130034089e-07} {"commit": "d792201bc311a15e5df48259008331b771c59aca", "message": "Fix CSS problem when Flexx is enbedded in page-app\n", "proba": 5.86350288358517e-05} {"commit": "87a6a02b4129eeb5a60ca07a901b4920921c18f4", "message": "Relic Density warning added\n", "proba": 1.4747253374025604e-07} {"commit": "3d13bfb3a8bef021e26b09de0b43bde8d56beab7", "message": "Small fix and cleanup for exit/quit command filtering.\n", "proba": 1.0992471999315967e-07} {"commit": "3ed2d8ddc498833a89ab4981474d4887251afbb5", "message": "Comment out accidentally left over 'raise'.\n\nThis function promises NEVER to raise an exception, I was propagating it out\nwhile debugging some odd behavior with __builtins__ and left it accidentally\nin place.\n", "proba": 2.2914690589459497e-07} {"commit": "97bd1ea3260774ffe438a5f850c7873e903e6e3f", "message": "release 5.0.0b2\n", "proba": 5.77106618493417e-07} {"commit": "0e6b27d4bdf04a772eab4a81db02c29a70c7ae48", "message": "Fix minor error that I saw in some odd cases, not sure how to test for it.\n\nUnfortunately I don't have a reliable test case for this, it's deep in\ntraceback handling. But I did see a few times ultratb itself crash.\n", "proba": 1.5767086836149247e-07} {"commit": "b595f3b73243e1c3cd0ae0eec36990fba360ffaf", "message": "Normalize quantity field when exporting BOM\n", "proba": 4.927098302687227e-07} {"commit": "a9cfdf8fdb6853f175cdc31abc2dec91ec6dcf3a", "message": "fix import\n", "proba": 1.1673153039737372e-06} {"commit": "e06397adc1da181e3ad281958a4df8411dab503e", "message": "refactor\n", "proba": 0.9999991655349731} {"commit": "df1ee7a5f8f2eeba2422f73be47ae3a68f01e532", "message": "pextant now gets dems from data directory\n", "proba": 1.5765222372010612e-07} {"commit": "26a21a9f5da718852c193420a0132ad822139ec0", "message": "Remove PHPBB crap\n", "proba": 4.781873599313258e-07} {"commit": "221bb56dc01d3587299d7889a411940c628acf7e", "message": "style\n", "proba": 2.627134790600394e-06} {"commit": "ef69751e8b856d7463340ede5d244545904f0fd4", "message": "Fix ala - process import bug (#70)\n\nfix #69 ", "proba": 1.5130240171856713e-07} {"commit": "415414db7399e8f333689f1bbc8f1eff112edc17", "message": "removed commented out code. removed unused build_agent call in platform wrapper\n", "proba": 7.698847184656188e-06} {"commit": "5c9452a125bd3d2bbeb15224db0a7effa94e5330", "message": "Correct showVisible value.\n", "proba": 3.9917719618642877e-07} {"commit": "1598f5d95d287d5ec80432c4d24fae31d74c387b", "message": "Tests for manager setup with and without publisher and channel.\n", "proba": 1.0173901188181844e-07} {"commit": "243f7eb02ad1f44560df1a24d357f97277f39531", "message": "Refactor get_content_types_pks to use ContentType.objects.get_for_models (which implements its own TransactionTestCase-compatible caching)\n", "proba": 1.1229244734067834e-07} {"commit": "1fb1d9249ab749c5910f759e65ea18c50aa75553", "message": "Implemented Google default authentication in apps_script_api_execute region tag of apps_script API. (#310)\n\nCo-authored-by: himanshupr2627 <70528fdd54318f668907117fce824ee8a7ce4213@google.com>", "proba": 1.321925111597011e-07} {"commit": "c494340c9d3a15575c967bad806fcfddb923375e", "message": "changed header type to OrderedDict\n", "proba": 2.996309831360122e-07} {"commit": "ee551bf41d0159ff5de6da7b8e3eacc7556acbaf", "message": "Added count of deleted jobs in delete_job()\n", "proba": 1.7360676451971813e-07} {"commit": "d5e001b53d5741b8244893a6b388b3de0d58f609", "message": "Turn off leak checking in Valgrind. LSAN's working and faster.\n\nE.g. DM runs in 9 minutes instead of 4 hours.\n\nBUG=skia:\nR=caryclark@google.com, mtklein@google.com\n\nAuthor: mtklein@chromium.org\n\nReview URL: https://codereview.chromium.org/575623003\n", "proba": 2.55945082017206e-07} {"commit": "74383b22d8a3331c1be3dfd256537eef56c56788", "message": "Fixes --run on py26\n", "proba": 1.2877363531060837e-07} {"commit": "c916ca9a3f8f74a887d084decc5b5e978f633d9f", "message": "Remove isinstance check that data is not list.\n\nThe above code renders it superfluous, as a list must be the return\nvalue of the next function.\n", "proba": 3.267461181621911e-07} {"commit": "2bf43e3ba86cc248e752175ffb82f4eab1803119", "message": "delete question module had bug previously\n", "proba": 4.835906679545587e-07} {"commit": "e7cdd808cc583d40b11b844188f9e5e9438b45ac", "message": "Fix #1491.\nPut InlineBoxes directly in BlockBox instead of replacing them.\n", "proba": 1.047611419835448e-07} {"commit": "46adbfb7b2c9e51e5261cf004327a1c95ad14f44", "message": "removed print statement\n", "proba": 0.0006049564108252525} {"commit": "abd576af3cd716112e4a6f8fcb9bf10f3a2a41b3", "message": "deleted if statement...for not yet implemented feature...\n\nr28428\n", "proba": 1.215905456319888e-07} {"commit": "fe3bd4ae2fbcd31454f6f1b5f322837633a34517", "message": "fix instruction schema field\n", "proba": 3.930877937818877e-06} {"commit": "fb73a3414eae1f84624f505abc995ae658cd0e54", "message": "fix regression with PROCEDURE_COUNT lable\n", "proba": 7.827351851119602e-07} {"commit": "e21e2ff9b8258be5533261f7834438c80b0082cc", "message": "Use iter(...) instead of .iter()\n", "proba": 4.2212873267999385e-06} {"commit": "ee8b122979844e054637ff36f17a7858cc07029e", "message": "Cosmetics\n", "proba": 1.7208266172019648e-06} {"commit": "493c7025f5aa7c95418f4e46141a5c33dedd6ca6", "message": "fix(`get_value`): make `as_dict` work for list-style filters\n", "proba": 6.370287792378804e-06} {"commit": "a3bb326511f95c8b89108a330d7c9e685716272b", "message": "Bug 1032689 - Develop second set of semi-auto tests for Telephony API.\nFixed pep8 isues\n", "proba": 1.0799429617236456e-07} {"commit": "686771181b8676e18b99ce63011b935589e655a5", "message": "First half of connections done.\n", "proba": 1.0614007805997971e-07} {"commit": "02585d62f39f28ebac42d8b9627fd59c21bdeead", "message": "Update comment on test method\n", "proba": 2.2483119721528055e-07} {"commit": "e6624e0185f3b1779b152a7ae4ce3e2013c5c87b", "message": "hotfix if the membr has a role that does not exist somehow\n", "proba": 2.435225781027839e-07} {"commit": "94f0543d52ba850c3e83505ee6c51e89fdab7cbe", "message": "Unzip files using external gzip (#157)\n", "proba": 1.1945195410589804e-07} {"commit": "348501e1b788c1644c430bedac89dcba8e18a55c", "message": "Only allow current user API endpoint with OAuth", "proba": 1.569685821323219e-07} {"commit": "71973c27041045e431e8845e279450e7e2a0a73f", "message": "Remove non original requests from list view", "proba": 2.757483628101909e-07} {"commit": "1a2f9c91fb5c4134af98378f305ecb5d3f6d429f", "message": "Working on refactpring of roles.\n", "proba": 1.1057512949719239e-07} {"commit": "e3f853dcc9994086253cdf1f83496bed29751cd7", "message": "Limiting display of projects pages to local projects only.\n", "proba": 1.0688382445778188e-07} {"commit": "1c28cd6c3dec54afdbf8a8f7fa546a01cda06716", "message": "Small fixes to automute\n", "proba": 1.2958129502749216e-07} {"commit": "6d3ab262a7b726bb5b0d43a934b271d3bc9b8424", "message": "Use os.path.join() properly\n", "proba": 6.11792927429633e-07} {"commit": "475a8bc3ba50fb6be6b3bac934e9baa085177a59", "message": "don't use relpath when generating diffs for inline-diff view\n", "proba": 2.3376627211746381e-07} {"commit": "b09bb93b0f637431eb27b76f0f77f3fc2b4a93a0", "message": "excluding entity field from feeds admin as it causes \"poor\" performances\n", "proba": 3.1307615699915914e-07} {"commit": "ea4a2c8feb2ae9bf381000ac23f2947fd778306e", "message": "one last fix\n", "proba": 6.160105954222672e-07} {"commit": "686ca2ec00ee5e380bcec6e40889a7d2bd7a0ca1", "message": "The guesses do not help much here, unfortunately\n", "proba": 0.00010354005644330755} {"commit": "8784821b117a3e4bb52dc7d2ccb243f1b756ecab", "message": "Added the DIO-specific codeword preamble method here.\n", "proba": 1.128761013546864e-07} {"commit": "d68f0a3b329e7f3a7e7993f3a127ec87273a22ff", "message": "util: tol.endswith\n", "proba": 4.537250504199619e-07} {"commit": "9e2f9b040d0dde3237daca1c483c8b2bf0170663", "message": "Update Arch package to 2.7\n", "proba": 1.8156598002860846e-07} {"commit": "724cdac4ff479c8a8680a09aa4b9f6de5b9f260a", "message": "Inherit api tests from tempest base test class\n\nFunctional api tests based on tempest and would be right\nto inherit from tempest base test class\n\nChange-Id: Idbf89867968c4846fc9947bd27f3f714384ec47b\nCloses-bug: #1342026\n", "proba": 4.9712144800651e-07} {"commit": "98e4452e07256aa3285906bba60e16ce4dfd1dc3", "message": "Replace do_add_subscription() in add_users_to_streams.\n", "proba": 4.2335125272074947e-07} {"commit": "6b304cfbee228a84d2f4999f343e253558c940f8", "message": "using config value instead\n\n", "proba": 3.94125009961499e-07} {"commit": "2c50558b2ea8566fd0a9edf0155a24b4f39a4d43", "message": "Ignore new flake8 warnings\n", "proba": 2.9137055435057846e-07} {"commit": "80e474ba1c95e491387c83369ac220b6d31873de", "message": "WIP - Additional log\n", "proba": 1.1708145564170991e-07} {"commit": "a17a00f8f95195838e1d7360426454c8ed0570ea", "message": "Add typing to some interval functions (#6862)\n\n", "proba": 3.0628754643657885e-07} {"commit": "e2f259a5603eba2663e283b68d10e60b6556b3ca", "message": "Do not add languages to list that we do not know.\n", "proba": 1.1610309513798711e-07} {"commit": "b0e4c2b4246a39f2091200f6a265da8513d82f2a", "message": "Added PingOnly Option\n\nAdded PingOnly option for programming use, allowing a script to use the PingOnly option will determine if the Xbox One is on and it can then determine an action including turning it on. Also works with the Forever option which will only ping until the Xbox One is found.", "proba": 1.0545519302240791e-07} {"commit": "0d5bc24d0c5644f977088c1ea2bfa2d2835f6cdf", "message": "minor change to progressbar formatting\n", "proba": 2.585292406820372e-07} {"commit": "981d59c02b0f434bc003b4a37a0fa62941d7bbc2", "message": "added progressbar code\n(actually removed it)\n", "proba": 1.1244375741625845e-07} {"commit": "7ba8a0601941e5f274150ffe0b93fc41122f6dca", "message": "Use _open_kwargs for save_backup\n\nMinor simplification but there is no reason why save_backup would need\nits own private variable.\n", "proba": 1.3036616053341277e-07} {"commit": "2fac586d80d0cdc6dbca95e4d265fbc0e226eb10", "message": "Fixed steer angle plot.\n", "proba": 1.309047377162642e-07} {"commit": "cbab73361724ab4c1e84a93e07551254636bec27", "message": "Raise KeyError instead of TypeError for invalid key in hdulist\n", "proba": 2.2857965120692825e-07} {"commit": "6bad99294e5497406e8ade6175d4f2b35484433e", "message": "Updated link status and data mode control messages.\n", "proba": 1.1488086215649673e-07} {"commit": "e99ce67c508842fe8e0d582b3ea312ab5c07d942", "message": "bug fixing in getposition with heading\n", "proba": 1.3663220954640565e-07} {"commit": "ecd33e00eb5eb8ff58358e01a6d618262e8381a6", "message": "Update upstream version of vo\n", "proba": 1.6404936786784674e-07} {"commit": "317600c723aa52371e3665774de5fa1eac28eb1e", "message": "Quantity output for one streamgapdf function\n", "proba": 8.190149856091011e-06} {"commit": "fbbd4164a6bce84551860bdfdf6709b9507dc540", "message": "Rcuio #1378, additional fixes\n", "proba": 1.1461450100114234e-07} {"commit": "09e1e532fd3f11b6061cec6251f7e9beeaeff03a", "message": "Before adding output doc\n", "proba": 5.315326234267559e-06} {"commit": "4197a70adc0b1a54b7de824c71e3ce05883d0ba5", "message": "Fixed typo in python script\n", "proba": 3.903730600995914e-07} {"commit": "611a795717c59af273c55b624fa02fc12b215ced", "message": "Rename P_check to P_hat\n", "proba": 0.9989845156669617} {"commit": "a75390fc0179873796109571941a942862d21e78", "message": "Refactor Image and add HighPerformanceImage\n", "proba": 1.7185537615205249e-07} {"commit": "d7afc9cd1783b0bc0238d6d190c40dc6598e1f06", "message": "specify memorycache size in K\n", "proba": 3.215914148313459e-07} {"commit": "d2410c2ff6c0a06a3e2212b2eaa68c5e0eb662d9", "message": "Added links \n\nAdded links to get, delete and update functions", "proba": 1.3862960202004615e-07} {"commit": "016ca76e918ed36888c0fa8e287028ea367ef3d9", "message": "make decompiling charstrings work again\n\n\ngit-svn-id: 05b73559aeb8bace4cf49b5ea964569f1305eff8@242 4cde692c-a291-49d1-8350-778aa11640f8\n", "proba": 9.000483260024339e-06} {"commit": "a9e58c1fbb1957d6d320e6ca34f30d912a151ff3", "message": "fixed import issue\n", "proba": 4.0883909946387575e-07} {"commit": "79b495316bf4fa862d9a6f29273d1f5bcb27bfee", "message": "Bug 1169661: log when return_code changes; r=armenzg\n\n--HG--\nextra : rebase_source : 291c934a8a1abd17d32eeacd48f9977ef10d2429\n", "proba": 2.4576072519266745e-06} {"commit": "d0b816085d9bb60bc7c43df9ce2ae6d595b923c8", "message": "Made logging classes new-style and added name property to handlers.\n", "proba": 1.0179724085901398e-07} {"commit": "c90b7d077ddf2e94f8f908143381f5f8356a8605", "message": "add structured logging option\n", "proba": 1.0415163842480979e-06} {"commit": "267380be76fe114674587790935ddb0a5a837b8a", "message": "Fix setting unicodes\n", "proba": 1.8242097212350927e-05} {"commit": "f5de24bec6e2528fcd45273559c650c1cf8f750d", "message": "remove print\n\nbzr revid: patelamit2003@gmail.com-20081023105525-kywym1k4gn6de04o", "proba": 0.9999773502349854} {"commit": "f1e6ad4ee4949c9fe440990f8c726610362bd185", "message": "Conditionalize test cleanup code to eliminate traceback, which will\nhopefully reveal the real problem.\n", "proba": 1.1339550809452703e-07} {"commit": "8ef699bcb80d9db384b8a09f2850884c8b0cc9da", "message": "packaging\n", "proba": 1.7934321476786863e-06} {"commit": "348835bc04ddd7f5cf31991327b786848d9b745e", "message": "Changed default dateactive field to have midnight for the time to help prevent further confusion.\n", "proba": 1.0697499419620726e-07} {"commit": "feb7aeec48a2bacbba9fdd9c5e6789d37afc66b3", "message": "polish up some spacings\n", "proba": 3.948145149479387e-06} {"commit": "dc7ac28109609e2a90856dbaf01ae8bbb2fd6985", "message": "Repair the test (adding a docstring to the module type changed the\ndocstring for an uninitialized module object).\n", "proba": 1.1596233662203304e-07} {"commit": "f44a16cf3574b563bae95cbbbc81642004cdd40b", "message": "get headers now green\n", "proba": 1.3950067057066917e-07} {"commit": "65f581a2996d46ba99cf41c6bfe738e1305d1779", "message": "Simplify DataArrayGroupBy._iter_grouped_shortcut\n", "proba": 0.0024887733161449432} {"commit": "5abac5e7cdc1d67ec6ed0996a5b132fae20af530", "message": "Use the URLs input in the UI boxes\n\nParse JSON from two separate URL input boxes, instead of using one input\nbox and parsing one long string containing both URLs.\n", "proba": 1.5149386456414504e-07} {"commit": "8c57992d3bc891e3fda7fa3d36f8f3dad57cd085", "message": "writing tests\n", "proba": 2.7395726647228003e-06} {"commit": "4b8dbc9516a667c944107a9ef4039d0d88ca1e84", "message": "Fix location of TTF font for watermarks\n", "proba": 6.541458219544438e-07} {"commit": "16d8435274c6ae69870a2e5c00c6388a9595f557", "message": "cleanup global config players\n", "proba": 4.916082048112003e-07} {"commit": "20733f3774a82e4a1d7e5fe3192a17acaa5fd821", "message": "Repair Unix-specific assumptions that caused this to fail on Windows.\n", "proba": 1.1135781363691422e-07} {"commit": "cca50bf46dbace0c6506f7b69eea2a166b6433e1", "message": "Python API: Improved SNAPdb connection documentation\n", "proba": 2.1995479926317785e-07} {"commit": "26fd61a917cb590396c88718e1edd328c826f784", "message": "reoganazing the project\n", "proba": 1.5110687456854066e-07} {"commit": "ba6531aaf676f5ead6ac3ff3914068208bab5dff", "message": "Sphinx doc updates in mpi_array.distribution.\n", "proba": 1.133542042452973e-07} {"commit": "9901cdc91bf6486ed056db1c4a2beb3022defbf9", "message": "Explicitly pass socket type and family for getaddrinfo,\nto make test work on Solaris.\nDisable gethostbyaddr IDNA test for now as there is no\nreverse DNS entry for the IPv6 address of the test name.\n", "proba": 1.0131047645245417e-07} {"commit": "632e444874da6a623957c6ae596c75379deed20a", "message": "Code cleanup in evaluation\n", "proba": 1.8174303306750517e-07} {"commit": "830613a7394915c131f828e639b88b466aad1c61", "message": "Added more log entries to the UI loader to track listener status.\n", "proba": 1.0608947320633888e-07} {"commit": "1d291df4548a1d6251f6d96d817668b303a49dd6", "message": "Getting started.\n", "proba": 2.686771836124535e-07} {"commit": "40ffc64c2f417790bc22ab60873e3ea5954f8abe", "message": "fix issue reference\n", "proba": 3.759981836992665e-07} {"commit": "115502b3a17eb8504469771ff1c57110a94111d9", "message": "Add comment\n", "proba": 1.5774051576045167e-07} {"commit": "5b4bf734764d1d6a3f53e9359a0a6314a50b368e", "message": "Support undocumented args\n", "proba": 3.204953600288718e-07} {"commit": "f3a4ae2bcbd2af00b40bde8d46939277ff1954be", "message": "Maptiler: accept `language` as list too\n", "proba": 8.260994377451425e-07} {"commit": "134b1eba8abcfeda63fc2770d1a91d06edf5adf3", "message": "silence the test when it is skipped on some platforms. should fix a\nbuildbot.\n", "proba": 2.0720067084312177e-07} {"commit": "f81c36d4fe31815ed6692b573ad660067151d215", "message": "Drop use of 'oslo' namespace package\n\nThe Oslo libraries have moved all of their code out of the 'oslo'\nnamespace package into per-library packages. The namespace package was\nretained during kilo for backwards compatibility, but will be removed by\nthe liberty-2 milestone. This change removes the use of the namespace\npackage, replacing it with the new package names.\n\nThe patches in the libraries will be put on hold until application\npatches have landed, or L2, whichever comes first. At that point, new\nversions of the libraries without namespace packages will be released as\na major version update.\n\nPlease merge this patch, or an equivalent, before L2 to avoid problems\nwith those library releases.\n\nBlueprint: remove-namespace-packages\nhttps://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages\n\nChange-Id: Id54b2381f00d9905c4bb07821f54c5aaaa48d970\n", "proba": 0.9981080293655396} {"commit": "393f6a636e7f6aa8f0c6ea0029dbcca45af89d6b", "message": "TestNpInterval class and test multyplying by float\n", "proba": 2.415258677501697e-07} {"commit": "08bdd2e4d0508c8147c6bd5fccc38b1e86b9344e", "message": "fixing minor\n", "proba": 5.374958504944516e-07} {"commit": "e485cfa7db50090587aac01452f79daede8d82d1", "message": "Indent projects under topics\n\nWhen using project topics, indent the projects within each topic\nfor better visual differentiation.\n\nChange-Id: I73fc9bfd16fc6ccb4a818580bf0dda60a82466d8\n", "proba": 0.9999936819076538} {"commit": "d516f52857fe1cb2001dc5467c524a2d721e9296", "message": "Fix test to be skipped on windows.\n", "proba": 1.2356764500509598e-07} {"commit": "3013b6f73c6b0eda6ff4714632c48f852c91d068", "message": "Fix comments\n\n(feature/STI-692_tickets_from_head)\n", "proba": 3.0028320452402113e-07} {"commit": "915f905b64c0a55bebf2a88419d5bd03eb0c6c07", "message": "Fixed a broken local file viewer\n", "proba": 5.451495894703839e-07} {"commit": "2959d12b0131311faeb427f9022a0e1bbe8e7120", "message": "allow string keys in size legend\n\n=> __main__ test doesn't crash anymore\n", "proba": 1.1954627552768216e-05} {"commit": "d641cd7cf8d44d76e34076ed6df3c04154976bf4", "message": "Work on TD algorithms\n\n- removed almost everywhere _next_q\n- tests OK\n", "proba": 9.459268039790913e-05} {"commit": "de44f08772dfeca31635167019f051ca16392dd5", "message": "Fix typo and send proper dbtime to statsd\n\n(imported from commit 87e982de71e005ed110200b2f9afeec488dcfc51)\n", "proba": 1.2518171388364863e-07} {"commit": "3afa5c13f2be956505428c5b01f6ce507845131a", "message": "Complete ServiceInfo request as soon as all questions are answered (#380)\n\n- Closes a small race condition where there were no questions\r\n to ask because the cache was populated in between checks", "proba": 1.239216800286158e-07} {"commit": "5a4c1e46510956276de117d86bee9d2ccb602802", "message": "Fix empty answers being added in ServiceInfo.request (#367)\n\n", "proba": 2.032504227145182e-07} {"commit": "962114f65db5de4a0e58ebec93ec8f06147ae790", "message": "add RAMONVolume#data\n", "proba": 3.205454675025976e-07} {"commit": "c827f9fdc4c58433143ea8815029c3387b500ff5", "message": "Improve type hint coverage\n", "proba": 2.8621221304092614e-07} {"commit": "300049fc42806f79f7b6c1b42d356b7e08f94a46", "message": "Added Sergio's compass update\n", "proba": 1.5593177238315548e-07} {"commit": "a9f42e6266fb50bce72b1096f59a60d62f428668", "message": "Remove force_text() from sanitize_name().\n", "proba": 8.203704965126235e-06} {"commit": "4f5a5a854713ca6bbfb1b6b201490591af5ec05b", "message": "auth: Extract add_dev_login_context.\n\nThis simple refactor cleans up the code for the dev_auth_enabled code\npath to be a bit less deeply in the login_page() logic.\n", "proba": 1.235840301205826e-07} {"commit": "815c20f43b8d6181792f550cfb9aa14e36eee3d5", "message": "[163] input file parsing fixing\n", "proba": 1.4587095620299806e-07} {"commit": "1cba70e91b6592253a74d2c030e9c57faf0a1485", "message": "add header to backend.py", "proba": 7.584909553770558e-07} {"commit": "fb6cc4cb6511e7166bab701ebf2491aba1a77ba3", "message": "secrets: Make it a bit easier to do GitHub auth in development.\n", "proba": 1.2255483738954354e-07} {"commit": "878a3248b78f1a3e4660842ca91acee71ff89d11", "message": "update colors\n\nMade vertical lines thicker\r\nSwitched the third curve color to be lighter to align with the color-coded trend: darker have more storage at the same elevation", "proba": 2.1969484009787266e-07} {"commit": "9738f2fa1753d9ffbe79c493b348355a041fdfec", "message": "Send feedback to prod\n\n(imported from commit 52c76dfb6f8b8e49d1a9e799852a1683e85673c6)\n", "proba": 1.2711156216482777e-07} {"commit": "2dd5b989baa5330c643e386144ef7e7bd472f064", "message": "\tmodified: zunzun.py\n", "proba": 2.5412433046767546e-07} {"commit": "606b545bc9542310bf38334b0041f49eaa91fa1f", "message": "\tmodified: zunzun.py\n", "proba": 2.5412433046767546e-07} {"commit": "4c53acf1ed2c8e5d85030ee887d1286603d875ba", "message": "Add NestlyProcess to track run stats\n\nAdded --summary-file option, keeping some run information in\nNestlyProcesses.\n", "proba": 1.0232029978851642e-07} {"commit": "5f3bdb6a0bbb1c90bc3cb5d1f4bd1085bade8900", "message": "import cookiejar library for python 3 instead of cookielib\nkeep cookielib for python 2.7\n", "proba": 1.9620242710516322e-06} {"commit": "71c84a6383ea239fa97947eb7b0bf457758ca6e0", "message": "convert scheduler to use websocket\n", "proba": 5.457969564304221e-06} {"commit": "065abc0bcea296c685b554894f37d0cccdfe117b", "message": "removed duplicate strategy from strategies/init\n", "proba": 5.024089659855235e-07} {"commit": "19fb8b8872a713fbe376f303a98541868ee0f19e", "message": "Fixing typo\n", "proba": 1.0679608749342151e-05} {"commit": "ec7aaa2e0b17c05d99686e0719ef900c420ea76b", "message": "Added test for torques along the principal axis.\n", "proba": 1.1389731469080289e-07} {"commit": "9c3b67048ae2f9e1b059b3a3b2716aae28fa46c4", "message": "Post-release version bump\n", "proba": 1.4319738284029881e-07} {"commit": "372e9335b16c74266e581c8802c6c8b1fec6f320", "message": "Post-release version bump\n", "proba": 1.4319738284029881e-07} {"commit": "ee2d0b963d8dc985e7371316a00ab95a744467b6", "message": "Release v1.9.0-r1\n", "proba": 2.827978846653423e-07} {"commit": "60287a576a137e28fd7afd3727918825fbd6d66e", "message": "Updated to production settings\n", "proba": 3.1669077316109906e-07} {"commit": "3b2ee6e272dbbb58c1a7d5931e7dc1a590126078", "message": "changes to \"coincidence\" routine\n", "proba": 0.00016175203199964017} {"commit": "6e4d1a04cad53f9545c391490af25420959c6748", "message": "reorg\n", "proba": 1.0087439932249254e-06} {"commit": "c52f64ad7706479fb7653d75c3f6228b136c446a", "message": "* Better management of outputs between stdout and stderr: all errors/warnings are directed to stderr, information output are directed to stdout. No information are provided if stdout is the authz destination file.\n* New parameter to be verbose only for errors. It would help to integrate the script into cron jobs to receive messages only on errors.\n* Exit with error code 1 when no group is found (this is considered as an abnormal situation).\n* Script version incremented to 1.2.0 .\n", "proba": 1.647872664989336e-07} {"commit": "398c190bd96c2e398cdb6cafff526efcc27f9f77", "message": "Improve SpatialContext comparison\n", "proba": 9.752579899213742e-07} {"commit": "9d3d06e760cb4210405a3b720eb67c5da0478f72", "message": "remove succes_message variable\n", "proba": 0.0007735238177701831} {"commit": "c691c256682bec5f9a242ab71ab42d296bbf88a9", "message": "Add `Post`, `Tag` models to Admin\n", "proba": 5.521808930097905e-07} {"commit": "06b6ce7087d8f30b37c4cc4c03b963b7f99f6934", "message": "add has_files False\n", "proba": 0.9990955591201782} {"commit": "e4c5ba858abf0dde5739788c0174417d21fb4c41", "message": "A bugfix for #969\n", "proba": 1.3655014186042536e-07} {"commit": "070f5c0d1f06d3e15ec5aa841b96fa2a1fdb7bf4", "message": "Rmv test file\n", "proba": 4.204073889013671e-07} {"commit": "54e53c283f74d97e6c4e798876ef624dc293c75d", "message": "fix: update to text_type\n", "proba": 1.6839544514368754e-06} {"commit": "ce1f4af00537b41597cfc6a8ecafddfa1f6bb96c", "message": "docs: fix a typo in the usage string\n", "proba": 0.001121759181842208} {"commit": "0915a9d0ec055ebb0115f631baa78d8d15563918", "message": "Use logger\n", "proba": 3.99091459257761e-06} {"commit": "0d98375ddc65c9e38f00bac1478537931ff4fe89", "message": "base class reorganization\n\ngit-svn-id: 24f545668198cdd163a527378499f2123e59bf9f@1300 ead46cd0-7350-4e37-8683-fc4c6f79bf00\n", "proba": 1.54248186845507e-06} {"commit": "25c83e0ff1f8684e57b52aebb216259cfb7b2fcc", "message": "make sure the window is correctly refreshed\n", "proba": 2.106617102981545e-06} {"commit": "b228647d9f50c8143f2041e5739abc8c393f32fb", "message": "Now exports config_megam()\n\nsvn/trunk@5989\n", "proba": 1.9617608870703407e-07} {"commit": "37c044084d72de7995392430e4753589c9eb483e", "message": "fix warning\n", "proba": 4.131894002057379e-06} {"commit": "b60ff44438d884b200d70de9c45fec5a15f2c0fa", "message": "Updated docs\n", "proba": 4.153740462697897e-07} {"commit": "41b111cfed3f3c679f8325ac0f7cd5a482f45d7f", "message": "Added corpus readme() method, as suggested by Joel Nothman in issue 217 (also see issue 291)\n\n\nsvn/trunk@7616\n", "proba": 1.278378221059029e-07} {"commit": "cf2a538d08d527425aece68f40b72fd808b01c99", "message": "Avoid fetching a submission ID when unnecessary\n\nWhen constructing a `TransferData` or `DeleteData` instance, if the\ncaller supplies us with a `submission_id` that they already obtained, do\nnot fetch another one.\n\nAdditionally, allow callers to pass `submission_id=None` explicitly to\nsignal that they need a submission ID.\n\nCloses #80.\n", "proba": 1.690113577978991e-07} {"commit": "9a8da0b768e02f828bcbd7edb83ed73f8665a989", "message": "Fix up tests\n", "proba": 0.00031891799881123006} {"commit": "c7c56017b9d568f1fc73e4be226feb530fab0882", "message": "terminal compatibility with IPython v0.12, v0.13. Closes #81\n", "proba": 7.152105467866932e-07} {"commit": "b5c7a83e2fc5715d9ffae7f363c9a7ad52db92f4", "message": "Remove miscommited file (#5727)\n\n", "proba": 1.1983944148141745e-07} {"commit": "3e0593e8459db1a96f746ecde8ad2e5000cf57ce", "message": "Renamed variable output_buffer to output.\n", "proba": 3.5604261938715354e-07} {"commit": "ae51b9f03d04dfa48a3e93b8296c5ca540db49cb", "message": "GOLD-639: /accounts/logout unit tests are done.\n", "proba": 1.0530685301546328e-07} {"commit": "06121d2c6c133ca965b88c052eb79a82d88258eb", "message": "Buggy spacing removed. Currently Python 3+ ONLY\n", "proba": 1.273697876058577e-07} {"commit": "d5d596ea075bcd7c837b5cddce0b353485b8d0f1", "message": "Prettier\n", "proba": 2.590149279058096e-06} {"commit": "92a6611925458917023ef708e39ed883ebd0ff22", "message": "removed qtools2\n", "proba": 1.0735410569395754e-06} {"commit": "e3226faeabc7e424442484355e27ed2861adcc59", "message": "Fix setmeta test because tab width changed.\n", "proba": 1.1668652177831973e-07} {"commit": "b7411e4d98458ac1f96c78d34347ad9414ad3220", "message": "fixes for review of r85f40c63c30d\n", "proba": 1.988608602232489e-07} {"commit": "46b7b6392575c645a0d34739605d9165f4358d8a", "message": "handles empty dhcp_domain with hostname in metadata\n\nFixes bug 1064713.\n\nCurrently hostname in metadata is created by concatenating the\ninstance hostname with the dhcp_domain. When dhcp_domain is empty,\nit results in a hostname with a trailing dot.\n\nChange-Id: I52a50ff7f62c0a0dc900ddf707cc3dddce62bcb3\n", "proba": 2.7163352569914423e-05} {"commit": "116d1b4c4e29a528c14b60da1a2e0c30e3b7e243", "message": "[IRC] self.nickname should always be current\n", "proba": 4.930213253828697e-05} {"commit": "19db369868b2f4a200624cb67d72740eabaab699", "message": "Include date in action query", "proba": 2.1553900296567008e-05} {"commit": "8a2d7efa542e168fda81f703fa8e8c19467bf800", "message": "Fix clause comparing id to internal_id", "proba": 2.300028199897497e-06} {"commit": "1b9413e11ba1b4b49b50965e3f812e636f2319d5", "message": "stubbed out reset networkin xenapi VM tests to solve domid problem", "proba": 1.7623106884911977e-07} {"commit": "5f313c23a9d7a741a17677f5aacdde4bf043e40b", "message": "removing objectstore and image_service flag checking", "proba": 2.5704238737489504e-07} {"commit": "7a373e1be33879c39fae88fa6020e417abb55847", "message": "Add error message to failed block device transform\n\nIt's nice for debugging to know what the source and destination\ntypes are here, otherwise the error message is quite opaque.\n\nChange-Id: Iedf74e02c2609c98217a232a9ed59377234cebaa\n", "proba": 1.3727050145462272e-06} {"commit": "223dc444d6107cb2c28ab94d560b2781ab20d283", "message": "fix max and min on IndexValue to always make nan greatest and smallest respectively and break value ties using index.\n", "proba": 1.0743158185277935e-07} {"commit": "02d3008180fe9ccbeb787088fc7dde0aed433908", "message": "Adding extra info for stats\n", "proba": 1.2498178136866045e-07} {"commit": "0c93ffb83fbf12b26e3814383504dbc1e24668c0", "message": "Do not mutate array for median3 computation\n\nSigned-off-by: Harsh Gupta \n", "proba": 8.311395731652738e-07} {"commit": "8548d39050a82be7813ba0c1348e5f89afe657ce", "message": "Fixed stupid ActivitiyStatistic.update mistake that overwrote data instead of updating it.\n", "proba": 1.1524715404220842e-07} {"commit": "95e36e9db9e28b808601df9c82ede19ea3486d7c", "message": "Add checks for lingering listeners\n", "proba": 1.5725460400517477e-07} {"commit": "8193bfe1f93d6121722c5967322183d903013ae2", "message": "WIP: make coupled motor + detector object\n\ndetector value is Gaussian of position\n\nWorks with run engine mockup\n", "proba": 1.465184311655321e-07} {"commit": "044dfe3847719864412386386df46e9e51548008", "message": "Updating broken link (#240)\n\n* Updating broken link\r\n\r\nThe link to \"Making new Layers & Models via subclassing\" os broken\r\n\r\n* Changing to full link\r\n\r\ncustom_layers_and_models link is changed to The link here should be to https://keras.io/guides/making_new_layers_and_models_via_subclassing/", "proba": 6.088842201279476e-05} {"commit": "e01764f9b38b81d234d3a9817630d2ff575297de", "message": "fixed matplotlib in web applicationservers\n", "proba": 2.3194709797280666e-07} {"commit": "0e960b985843ff99db06f89eadaa9f387b5a65f8", "message": "BUG: Fix the implementation of numpy.array_api.vecdot (#21928)\n\n* Fix the implementation of numpy.array_api.vecdot\r\n\r\nSee https://data-apis.org/array-api/latest/API_specification/generated/signatures.linear_algebra_functions.vecdot.html\r\n\r\n* Use moveaxis + matmul instead of einsum in vecdot", "proba": 4.6046994839343824e-07} {"commit": "d71f239e41e6df4af113dcd44afae539770ddc40", "message": "Guard against non-string labels when filtering runs\n\nRef: #183\n", "proba": 2.890407699851494e-07} {"commit": "afea4f0732e68f5cbb38f5a8ac194698aec8e520", "message": "Allow any of the previous tasks to satisfy requirements.\n\nInstead of just checking the previous task, allow any of the\nprevious tasks to provide the requirement for a new task.\n", "proba": 0.001181765808723867} {"commit": "1fa6d58e8d56c02fee4a76d5804549f670ae9c78", "message": "documentation for transport_equation.py\n", "proba": 2.3821782235700084e-07} {"commit": "d128d9f1fd29a5a7341cc0a3cdf3324175af80a3", "message": "fix rmsd bugs\n", "proba": 5.11639427713817e-07} {"commit": "820301099a575d3f92a22f32a71c47c2e3a56432", "message": "test ci\n", "proba": 1.9186111330782296e-06} {"commit": "4ef0bfb3812c53f526b1947b23e04408cc4b7df3", "message": "Trying to get hudson testing nc_mlpa\n", "proba": 4.542173144272965e-07} {"commit": "d859b03b946ce164638a8b8de5821477bd98a9dc", "message": "STY: fixed PEP8 violations\n\nFixed PEP8 violations by removing extra whitespace and making a line shorter.\n", "proba": 1.605376525048996e-07} {"commit": "e77380401d04feb1ff283add4dca9f6bad57f330", "message": "Rewrite order/tests/MemberViewTests.\n", "proba": 2.0217477469941514e-07} {"commit": "6f5f73186e4a365fd6449ceeb683e14693ca09a7", "message": "Update block-device mappings in ASG launch configs to latest boto\n\nWe used to work-around some boto brokenness, but they have caught up to\nus and offered different brokenness. On the up side, this is progressing\nin a good direction, where the same types are expected for\nec2:RunInstances and autoscaling:CreateLaunchConfiguration.\n\nThe last remaining snag is that the CreateLaunchConfiguration wrapper\nnow expects the mapping inside an array.\n\nI might go ahead and submit a pull request to boto to fix that and\nbreak things for us... Again.\n", "proba": 1.1029203506041085e-07} {"commit": "2e7cc2a65d6a35b35a45bf1850628fce943ea925", "message": "ENH: Add name and name scopes to tf space\n", "proba": 2.0159717450951575e-07} {"commit": "b7e6b4fd08e390ee7c0d5855261b8599db0aa6bd", "message": "Fix validation of instance attribute 'shutdown-behavior'\n\nAccepts string values 'stop' and 'terminate'.\n", "proba": 3.367754061400774e-06} {"commit": "1f14413e1ada4f63d96d26045d502dfbb65c20de", "message": "Fix failing test due to base image updates\n", "proba": 3.5795665098703466e-07} {"commit": "f7d13e6716005185db96d56c3250d49c9592be5d", "message": "dump switch/case statements\n", "proba": 1.8661426111066248e-06} {"commit": "cc089f5c1257115992d9c049d231472f636a2fab", "message": "minor changes\n", "proba": 3.7436623756548215e-07} {"commit": "1a24843a39723fd3f21bcafaa504b3a7943de37e", "message": "PLD: group datetime objects in agg function #118\n", "proba": 2.7868128427144256e-07} {"commit": "891b1b9604339a5b3b5d78898e14215228dbce5a", "message": "generate signal name only\n", "proba": 0.00034780107671394944} {"commit": "bf74bf57936e4707b54a5fc7a3bc7b012e1338b5", "message": "UK: pep8 cleanup\n", "proba": 3.6909619893776835e-07} {"commit": "556392605ac8e79377d6d1db574a5614e6ca197b", "message": "Make repair the default\n\nSee #164\r\n\r\nStill need tests", "proba": 2.552868636485073e-07} {"commit": "9d61639c0f2783c37bb1037d55d7670bc43e7d01", "message": "Should be break; not continue\n", "proba": 0.9982550740242004} {"commit": "6a8d04d9dd42894298524767640f588f4b04fed4", "message": "add better description for DSL, and capability for describing all other args\n", "proba": 9.633481568016578e-07} {"commit": "a7c7b9cc564473f44f83a861c417064a208d191d", "message": "Add comment to explicit return type\n", "proba": 2.2496824669815396e-07} {"commit": "108abe1c2c295b0e7a6d6b076a4f4610bcec3342", "message": "Trace scales as well as parameters\n", "proba": 2.3035725860154344e-07} {"commit": "6b775d85255b5e1c0583a7ef3badde14ff7cbb41", "message": "Improved comment [skip CI]\n", "proba": 1.1398902444170744e-07} {"commit": "7aa461a5e7f1fbaf466495db539c41177f92266c", "message": "[demos]\n\n\nFormer-commit-id: 4a0b5f658fea86147e6c35c6c361bb5fd29f5e8a [formerly e23c60111e6e26e135113a13d44f9ed5a8475a55] [formerly e23c60111e6e26e135113a13d44f9ed5a8475a55 [formerly 41aae2579988d23bb73ac443f70cd1718e7b3a77]]\nFormer-commit-id: 95aa5aae8df6cd0898fec3ed1e74ceb556001b99\nFormer-commit-id: cb49580ddafdbbe41343233a27f1c1d548bb76ca", "proba": 2.174657538489555e-06} {"commit": "4623e5609e6a17fc3e1fe626724f41bac03f5cbb", "message": "Minor improvements\n\n\nFormer-commit-id: f9b1c7e59dd0ccc78d7916cf64303f2bbae95ff4", "proba": 1.5869684375502402e-06} {"commit": "4926fa3411e010ab04eea5cd9a70454bc1dc51f3", "message": "Added an essential comment\n\n\nFormer-commit-id: 38744a9525453044cc7061d23872ca485482e0c8", "proba": 1.6102218580726912e-07} {"commit": "90eee86e2ff1db597ed7d7eccf237f9158e01018", "message": "Clean up (docstrings, etc.)\n\n\nFormer-commit-id: a70ee2813f9d091eb46dbdbb6d59e4446a20e502 [formerly a70ee2813f9d091eb46dbdbb6d59e4446a20e502 [formerly d0efb6acaca0b1f64448cd95838dc2cdb0124d25]]\nFormer-commit-id: d11d71b596cd1fc0593974cc0b694c3b510ac157\nFormer-commit-id: 9625c5639afed82f27a32b808a11b0ab71fc1cf6", "proba": 0.9986659288406372} {"commit": "6857009007bab26a1222a279f23781586d5f9807", "message": "FIxed fresh installation\n", "proba": 1.3949535571100569e-07} {"commit": "a5314fa2eddaed967f4428dcae1bc0f5ad04a4da", "message": "Improved dbapi.Table\n\n\nFormer-commit-id: a6550afdda451c5a0d0eca29ce70057cd705ae23 [formerly 5f35c91dcd2087f5aa1dda7e40b283e240013514] [formerly 5f35c91dcd2087f5aa1dda7e40b283e240013514 [formerly 52ef45c716f41720125115247838cd90a2456d1d]]\nFormer-commit-id: 2a8aa60aaf958fdbd889c6060687df1d75c2b4aa\nFormer-commit-id: 2c209a1c785c1c0719f16a319cad9c9e9b8354b5", "proba": 4.968066150468076e-06} {"commit": "6779fc45301f6ecd7254f2c5431955004b76f357", "message": "[CAR-93] Removed duplicate dbentities.save\n", "proba": 1.3489803052380012e-07} {"commit": "718049a991470b6fa95d8db65a6482735219fc57", "message": "Fix get_acl_on\n\n\nFormer-commit-id: 28490cfdcff58d909754a9c72e7f25d67a8b68bd", "proba": 8.931719435167906e-07} {"commit": "766b3b70f4303af8193b3e241017897dbbf96262", "message": "Fixed get_forts query\n\nSo I upgraded to MySQL 5.7 (from 5.6) and it stopped working. It somehow\ngot the oldest result instead of the newest. It turns out that database\ncan arbitrally decide which rows to return when grouping by a field.\n", "proba": 1.2070036348177382e-07} {"commit": "a96dc919b344d7915ee98d9b1c5ec57f2fcd809f", "message": "Removed unneeded code [skip CI]\n\n\nFormer-commit-id: 8f1715ea92dcdd5f8aece4943d1d9136fcf5c3ac [formerly a81a5bfe8438de68f118d2783736a12c97d97636]\nFormer-commit-id: d0827431125179afa1415d6b6f773447a486bd66", "proba": 9.604696060705464e-07} {"commit": "3ec94c66c0ffd8892a026e03a6917589f1f6b951", "message": "changed position status and claculation_mode [skip CI]\n\n\nFormer-commit-id: 306cd8b86d770dc7c93c858da917458b30da7d36 [formerly 306cd8b86d770dc7c93c858da917458b30da7d36 [formerly e6dc89bc5ad9db11f652bc6a24b822fe616be86b]]\nFormer-commit-id: e0e7be034982a1686e6d095d9a94757313bfa655\nFormer-commit-id: 02599ef5249aa460a94237efaea060267baf43b2", "proba": 2.2380147584044607e-06} {"commit": "65f56955a66b2f7720faf60d8b38565f65cb83e8", "message": "Implemented streaming of the datastore file\n\n\nFormer-commit-id: 4f0a323f19e7042b320e8a0e46172a42cea7faac [formerly 83a720d45d36901b1639d94880bb7737faff0523]\nFormer-commit-id: 4ea7b79f7fd5897c93c5267bed17cc503aecb048", "proba": 2.2364321921486408e-05} {"commit": "438d6f7f9c5854bc4852e1e2e82870b2e9a1cfc8", "message": "Optimization: do not recompute the list of images.\n", "proba": 3.389234962014598e-06} {"commit": "0abbe043bd02804e784928f6d7c25fd413102dfe", "message": "Convert id to str when bundling with GPS\n", "proba": 0.0023746262304484844} {"commit": "baab186ec77492044f79f995e2bed8c42920b4e2", "message": "Fixed removal of many variables (>350) which would desynchronize the order of the variables in the model and the glpk instance\n", "proba": 1.316073365842385e-07} {"commit": "5df033f581d37971a76004c8750d81f1a1d16a1b", "message": "drafting the extra api for processing subscription batches\n", "proba": 1.278209964539201e-07} {"commit": "82e7ee29403fdf0be4ea05a82f99d183c12d5150", "message": "remove absolute path warning, per mat (SOFTWARE-3568)\n", "proba": 1.3136457255313871e-07} {"commit": "0c1196723202655fcce5ae93db9f93997abf1b94", "message": "Remove unused .shaes attribute from CdnDecrypter\n", "proba": 3.588836534618167e-07} {"commit": "0e6d319d607227a87f193ef418a398a772fa80d9", "message": "sms text mode bugfix\n\nEunike would not switch target to TEXT mode if it was in PDU mode.\n", "proba": 1.0921354487436474e-07} {"commit": "cbe15924e9a10c7c762a19c5eb53411e8d62f214", "message": "Implemented stubs for actions, see #33\n", "proba": 1.1960253232246032e-07} {"commit": "e762d6c4e65a4d3dd483b503f5d42dbf405a57f6", "message": "added a /content/ route to return content or znode from fe\n", "proba": 1.941625669132918e-07} {"commit": "f075ffdf8394fc7016420cae034426ce8db851b8", "message": "its working??\n", "proba": 3.908267558472289e-07} {"commit": "6b16dffb636549ad8a1e2142d84ca2b65c6c1b7c", "message": "connected_ats is not a split saver\n", "proba": 2.509372279746458e-06} {"commit": "8fcac12a78c5c8e61107c386cbca3df69664d8c4", "message": "Some looking at things\n", "proba": 8.539824420950026e-07} {"commit": "bcde3651e90cfc632d5bc71d67afbd70cc443ece", "message": "'GIT_COMMIT_COUNT' - change to 50\n", "proba": 0.9998422861099243} {"commit": "5f3ee6986a90a21b6888346621c11d6cca5bec00", "message": "added proxy support to the library\n", "proba": 2.4013428401303827e-07} {"commit": "6944511bc53ee90f382aff624709e8ec4c36ed9c", "message": "Change evaluation\n", "proba": 5.070901920589677e-07} {"commit": "b7cf1166c7aaf94e1671c0698647e107bd8af241", "message": "fix #16: use startswidth instead\n", "proba": 5.170113013264199e-07} {"commit": "fa57ab13dc9ec26611fbb740551d536e5eab00b0", "message": "improve add project function\n", "proba": 9.198137377097737e-06} {"commit": "132e700af6cffb7e4ac3ea02851de303890f1a9d", "message": "Less ambiguous, more consistent energy selection\n", "proba": 2.9763376005575992e-05} {"commit": "c5cefd8d56747801f7885380a3d348c1e2ff9739", "message": "Add margins with a wrapper group\n", "proba": 8.173195737981587e-07} {"commit": "b21d947f04bae997b7739f182e0f103a18e7ced8", "message": "Use the dictionary from the header parsing only rather than assigning the whole class to the header attribute.\n\nWhat I originally indended was that self.header would be an object whose attributes were the various pieces of information gleaned from the input files, but evidently I forgot that along the way.\n", "proba": 1.6220943166445068e-07} {"commit": "8fae408e6790d36f4805beb7cac10c0125092278", "message": "Fix the compatibilty version because the old version uses different keywords compared with the new version.\n", "proba": 0.0012445065658539534} {"commit": "c45c284ae06da68c43fa9009f5a64918c494ebba", "message": "Add support for LSM9DS1 in Python.\n", "proba": 1.1937736132949794e-07} {"commit": "9db5fa05e0291deccff1adff85948e4ebbeb7196", "message": "Warn if existing object\n\ninstead of error\n", "proba": 1.0828064205270493e-06} {"commit": "4f2b4b07131c462873b87b869e8df1de41af5848", "message": "Add some test code\n", "proba": 3.6950004869140685e-05} {"commit": "9b85e014d9bcbbe0a97aa32c6c97e57432e49f60", "message": "version bump 1.12.1\n", "proba": 3.9186730305118544e-07} {"commit": "fb8bb2f217e753d4be79eb7f3806173c61f18f18", "message": "Handle cases where exit code is 0 but process is marked as having timed out\n", "proba": 8.814017178337963e-07} {"commit": "c41807ed391b82da88848b3d638d5389e5195857", "message": "simplify get_rc_exc, since this logic is already performed\n", "proba": 3.0052235615585232e-06} {"commit": "762f30d1bf11f46f8541735cd522bf0fae07ba42", "message": "add new sc to current window\n", "proba": 3.3176061720041616e-07} {"commit": "4a5d619ad1e49eaad91d623cb841963b434567ec", "message": "Do not fail miserably if not able to parse nginx conf\n", "proba": 4.507835740241717e-07} {"commit": "869a76dd3fdbc04b839c5e7121ad37a693038e69", "message": "[project @ florian@planet-tiax.de-20070928111829-247hrt7d7bfwqknc]\ncreate navigation", "proba": 1.2640438740163518e-07} {"commit": "89d4fdcf5a2d8bdd246d4171a46c4419add2e43c", "message": "rename src_cell to srccell\n", "proba": 0.9999886751174927} {"commit": "8375202e13e2a12da5976947ec1736d5c8b3b159", "message": "Make ui() plot conductance rather than current\n", "proba": 0.0005252627888694406} {"commit": "58a61775b42c6132e4d7d15f90db3afb4530f9c7", "message": "hide the record widgets when fullscreen\n\ngit-svn-id: 0e23b8bd5d8ca6867fdf91341bbf5e44bdd92346@672 574bc980-5f2d-0410-acbc-c8f9f0eb14e0\n", "proba": 1.1946593076572753e-05} {"commit": "4e770388a2695738f5f374052378785af999fecf", "message": "Fix up ui bugs a bit\n", "proba": 1.1659046776912874e-06} {"commit": "95e2d54bb82be093aa9d96c0217eeb79068885a5", "message": "show renamed to list\n", "proba": 3.3333108717670257e-07} {"commit": "a47674663dbd0b7f06375b820101316a3afba106", "message": "Dedents code\n", "proba": 8.043029993132222e-07} {"commit": "951c0dbcfeb016dbde6e1a7a3f0eacc506c9211e", "message": "Rename sockjs router prefix to /ws/api/ ", "proba": 1.8162050992032164e-06} {"commit": "47ddddb56a7d3c0bc33b116e70b5faa8ccc43025", "message": "core: Fix get_var_references().\n\nFix get_var_references() for cases where variable references are not\nsurrounded by spaces.\n", "proba": 1.0880809497848531e-07} {"commit": "8a134e1f45d05e21194e8fbb5763d5645b36088f", "message": "update area.py (#3862)\n\nadd method \"area_ellipse\"\r\n- Calculate the area of a ellipse\r\n\r\nCo-authored-by: 201502029 ", "proba": 7.743830110484851e-07} {"commit": "a98107225a2a1925913b3e330dfb46d2f31d2801", "message": "Use argparse choices option to validate --tabular\n", "proba": 6.605210955967777e-07} {"commit": "fd92d4835e44e8faa0e1cc9a856f65b24f3b8ad9", "message": "made maya override a 'default' root log handler\n", "proba": 2.9595051387332205e-07} {"commit": "6fe2d61e3adfeb16508fa6f4d4690fdca46b1469", "message": "handler duplicate warning typo\n", "proba": 2.1109690351295285e-06} {"commit": "4834bf8b0926e52d7ab0815cc3089827c68ef844", "message": "bumps version number to 0.4.1-dev\n", "proba": 6.859142445136968e-07} {"commit": "4fe8a1c1b294f0d75a901d4e8e80f47f5583e44e", "message": "Fix for test failure introduced by basic auth changes\n", "proba": 1.5789296980983636e-07} {"commit": "70271985105fb1abec7180d0c60fcf2a4247fe99", "message": "Copy QtGui to QtPrintSupport in membership.py\n", "proba": 1.7278239283768926e-07} {"commit": "82ca3aaab9e36eac6bde32998e9580d447af1cbf", "message": "fixing upload\n", "proba": 3.7589313706121175e-07} {"commit": "79b45a1526867667c032985c23a1fe2defcc71fc", "message": "Optimisation for protocols such as HTTP in which channels only modify their own events from within their _handle_events() method.\n", "proba": 1.1539782462932635e-07} {"commit": "8d4140e66c4d6c768f2efada22d76891ca1d89f5", "message": "campana pure\n", "proba": 2.8574195312103257e-06} {"commit": "c48477aa2f12ea14e05aa9a81a3dd64e5f680760", "message": "#750: added hotfix comment\n", "proba": 2.0032118186463777e-07} {"commit": "75a3a73c4377f8bd70620b5e0867620979cbe6b9", "message": "api: add activity scores to the party resource\n\nSigned-off-by: Imre Deak \n", "proba": 1.574502874746031e-07} {"commit": "51e2f7223ecc2e1a4060bc4523d952d6038c0efe", "message": "add rename function\n", "proba": 3.1547706385026686e-06} {"commit": "5be7b24b2bbde43a925d68fce5edad29aa6169a4", "message": "create playlist listing json output files\n", "proba": 1.187557245430071e-06} {"commit": "4d942291734641bbdd6a71e16167fefca37a68e7", "message": "Fix default config file path on auto creation\n", "proba": 7.647475968042272e-07} {"commit": "2559fa50a80ac90f36c3aed251bf397f1af83dd2", "message": "bump version to 0.1b2\n", "proba": 7.802280492796854e-07} {"commit": "943d0d3ab8c40f7f85c8455f6482a18c7d631743", "message": "Do not require public notebooks to be in a special folder\n\nEVERYTHING IS PUBLIC BY DEFAULT YEAAAH!\n", "proba": 1.0966567032255625e-07} {"commit": "96a23b3523cc7df373c9e32a2c2445742667ab54", "message": "fix (yet another) bug from refactoring eval_lib. sorry!\n\nPiperOrigin-RevId: 459374595\n", "proba": 1.5750916304568818e-07} {"commit": "e86bc5fe1f0df3d353809c1ad2c758ff2a47d21d", "message": "Unify decode() / process_decode_out() API.\n\nPiperOrigin-RevId: 481246725\n", "proba": 0.24304935336112976} {"commit": "9fd7172f7b6a9820006411a60d314789d29e7a2a", "message": "Cleanup utils.py\n", "proba": 8.185364777091308e-07} {"commit": "cf716e0d35df2a76c57c0b08a027c092ff60fd47", "message": "Refactor `.open(...)` for clarity\n\nNo change to behavior.\n", "proba": 1.2109583735764318e-07} {"commit": "3ac6d1e9c13472b891d7bd86b2e4f2b0292e7ce3", "message": "Closes Issue #6 - Map pe sections (incl. entropy, hashes)\n", "proba": 1.0397523197980263e-07} {"commit": "bd209f4557d8d54843593dafd0f43adeb40137da", "message": "t doesn't live on the grid, it is part of the data\n", "proba": 2.1649081816121907e-07} {"commit": "8a227d27d0294a0b3ac934caf39cd000ebd43403", "message": "Fixing a bug in StringIO declaration\n", "proba": 1.039278004100197e-06} {"commit": "74d8ec6dbb0257b8e3b1f1ea3024544116cb3bd1", "message": "Let user keep a .config/pep8 file for per-repo configuration.\n", "proba": 1.1086423512551846e-07} {"commit": "038c5fe1de0cc4754f9109e353c56eaef2a10e62", "message": "proper tile checks\n", "proba": 9.54916572482034e-07} {"commit": "a3e1a374f762aee12cd7145cb8993a8210cdc1cd", "message": "CSV format corrected.\n", "proba": 5.806209628644865e-07} {"commit": "a9808c822e598fd17148b8fc4063ea11f0a270e9", "message": "Add bawler specific exception\n", "proba": 1.4576514786313055e-06} {"commit": "e6ba0fce47e768293fae0e9598bd44f0d7b33686", "message": "Fixed bug with indexing into output times when steady state is caught at the final time\n", "proba": 2.2472080729585286e-07} {"commit": "b92164e1d729e83ee255d1e898ed87983d68bc90", "message": "Fix pg.preview_layerset()\n", "proba": 9.50615117289999e-07} {"commit": "64505aca0e6c3cdcb0316041559340746e16dc7c", "message": "Adding loop to find the first suitable sufix for image version\n", "proba": 1.6230738708600256e-07} {"commit": "40e83279257ad8fce2c0424693f59ba6dfa1e2c0", "message": "codestyle changes / black commit\n", "proba": 2.882298417716811e-07} {"commit": "a94e67c77340c39e2de466792bf0084094b2ca99", "message": "new version\n", "proba": 2.9264151635288727e-07} {"commit": "1407ab38f3124c60f5ff563e7720823dbf99376d", "message": "write statistics\n", "proba": 8.410624286625534e-05} {"commit": "d350c180606060e9539c12d7d49eed4d6802ac8b", "message": "Bump to 1.1.5\n", "proba": 0.0002048613241640851} {"commit": "c8cc5d55a1527035326b9e2a58c0f969879704b7", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "347b22cd4eb74146008ec93c5b6f99259a504a97", "message": "Fix initialisation bug and logging bug\n\nself.trace_report was being used before being bound to the instance.\nlogging.getLogger was being called with multiple args.\n", "proba": 1.1229823115854742e-07} {"commit": "e86307d8b1b3c89a97d3b058d3eaf55ffe654d03", "message": "0.9a2.dev3\n", "proba": 5.814586256747134e-05} {"commit": "c8dfd71fec4caa705c056fe56ae3e72352eeac5c", "message": "removed use of local api for gravatar serving\n", "proba": 1.3439775159440615e-07} {"commit": "defccda62946afc7cd756c3f7d0ef924b2c54a2c", "message": "busydir locks in thread not filesystem\n", "proba": 2.126475919794757e-05} {"commit": "0b088b21030ddc66706c3771ef13803230ceeb37", "message": "overwrite AC_path in project file\n", "proba": 3.879725056776806e-07} {"commit": "36edd8d13a7252e0e4ce5fd965b870f5932f029d", "message": "fix uninstall error\n", "proba": 1.3540446843762766e-06} {"commit": "5d2190a5369de7e883f223f235baa3c263f8df0b", "message": "Tidied up GUI a bit and add a rate submenu.\n", "proba": 1.0384560766851791e-07} {"commit": "1477e93b59abed779bdaf83ebb8d1526b3c68528", "message": "Fixed a mistake in previous fix of _onClose().\n", "proba": 1.3289252365211723e-07} {"commit": "34a1b08c64eb929449b10c3c84e4064a379d06d4", "message": "Fix issue for sf/k0 retrieval when several calib were performed\n", "proba": 1.7528670070987573e-07} {"commit": "f9e95472201be1b82ce86ff89961d9bb9517c16f", "message": "Added hot-reloading for python\n", "proba": 1.3952222843727213e-07} {"commit": "28e0b699f81b0f59da3df9c286cb750eb365a00f", "message": "Add a function to correct lines along pathes.\n", "proba": 6.081959327275399e-06} {"commit": "b69e86254dee0ea551c0e6c5b2e97a10af631773", "message": "Add the ability to cut a simple array\n", "proba": 0.00019420891476329416} {"commit": "672ad453d42986b84f171aa39ef56729a04439c0", "message": "one last try for ssh passphrase then i'm gonna go do something more important\n", "proba": 2.438067667753785e-07} {"commit": "76655f97ec7f4c6dd936f5b287f25de5a291f907", "message": "made name a required field and reorganized logging\n", "proba": 2.9445558880070166e-07} {"commit": "b1bd2acbe756922a4cfa2b3a307d60b7e89734c2", "message": "Update command.py", "proba": 1.9182380128768273e-06} {"commit": "b711588dc8005323cf96e0e078175f1ba0d2f6df", "message": "add support for lcm() on lists\n", "proba": 2.6348953952037846e-07} {"commit": "d8d7e9386a14dae81a1827f94744fd5ab89ffbad", "message": "Minor navigation improvements\n", "proba": 2.1407333861134248e-07} {"commit": "8e829691e4999dfbe6b64acadce34fb8ac441e6b", "message": "bug fixin\n", "proba": 4.4183283876009227e-07} {"commit": "cfd06b763ad9329dccc5ef7f1f8f86a310997c6e", "message": "Break the loop immediately after lives are lost\n", "proba": 7.919844620118965e-07} {"commit": "e8e9310415a4a589fe495f9a74e94b7b11c27ca9", "message": "formatting changes\n", "proba": 2.4723938167880988e-06} {"commit": "5975f9e86951a751f2661a2571ee73a8fd94d142", "message": "make all file output using codecs(removes Ascii hack)\n", "proba": 1.2601392995748029e-07} {"commit": "91167b7595b8a6c62b6aba3f7089e0ca87c0c6f5", "message": "Allow adding new reports dynamically.\n", "proba": 1.238042699469588e-07} {"commit": "3b3307f7e0626998f9de5ee3450ff603218cfc5c", "message": "Created query function for client\n\nCreated a query function for the client, and changed the timeline to\nuse that instead of the server\u2019s.\n", "proba": 1.029704819188737e-07} {"commit": "423f11d3c21bd7c621adb5fce6784ac2804ea5a0", "message": "update to allow adding shares if none exist", "proba": 2.602092763481778e-07} {"commit": "28f2bf10d46ff20474ecd6d9d628d8a6ebf598d1", "message": "marshall dot macro return types to lisp types if possible\n", "proba": 5.62234617973445e-07} {"commit": "02466a69b96cdc3caa194be293fb82f4c7023da0", "message": "v2.2.0\n", "proba": 3.651327278930694e-05} {"commit": "d8094154f37a2067eb04fff139b65ae09d9e8dae", "message": "removed code calculating unused portions of hodge rank\n", "proba": 2.815718005422241e-07} {"commit": "65e11fe9d78861c5a3f6730b07b0b1b4f19c5a63", "message": "fix api host\n", "proba": 8.035715381993214e-07} {"commit": "2c878cd0111537022b070308d8da502ace24784e", "message": "Try to work around stale urllib that doesn't have ssl. This can happen when other plugins have loaded urllib before us.\n", "proba": 1.042158714881225e-07} {"commit": "03f078ec04abf05d3997bb6f47d40268ee516b20", "message": "No size restriction\n", "proba": 1.75230502463819e-06} {"commit": "bb7fd5f190fc0a1735e4a7ef693ab9ae5a8052aa", "message": "better handling special chars in input\n", "proba": 3.522649478782114e-07} {"commit": "27ce1d3cc7298c8a870c61ba46efe4ce197d547f", "message": "Fixed an uncaught exception in configure.\n", "proba": 1.1591357917950518e-07} {"commit": "3ce78ad88d8c963dfb819b323b40b2415d8624b2", "message": "Style: Split create user feature into two functions\n\nAllow the docstring to be simple for Google explorer but allow for more\ndetailed documention in the code in the second funciton.\n", "proba": 1.3488028116626083e-07} {"commit": "c4bb5a69497f6b00a522578775c047d9915c2f6e", "message": "Add id validation for non-ugc items\n", "proba": 2.228990894082017e-07} {"commit": "ce8ba26877505481795edd024c3859b14c548ffd", "message": "Refactor comics.py\n", "proba": 7.069448315633053e-07} {"commit": "bcf35731316c327090a8513a4c4094e32e301e3f", "message": "api.py: List Custom Fields of Board.\n\nThanks to xet7 !\n", "proba": 9.747989793140732e-08} {"commit": "1e23dbfafac3b8241051815d55a72673938535fc", "message": "Comment update\n", "proba": 2.3253912218024198e-07} {"commit": "958529fe750a80de1f04eed6ca35ec320ee43ad8", "message": "Race free etcd usage\n", "proba": 1.8943504187518556e-07} {"commit": "a3fa841ebb719c8d3872fef5af638d42ca108e20", "message": "adding status flag values to linode_list documentation\n\nvia IRC:\n11:dbd590339194ec344e624be1aab3aab7c8137fee@caker \"Boot Failed,Being Created,Brand New,Running,Powered Off,Shutting Down,Saved to Disk\";\n11:dbd590339194ec344e624be1aab3aab7c8137fee@caker \"Brand New\" is 0\n11:55 HoopyCat -2,-1,0,1,2,3,4 ?\n11:dbd590339194ec344e624be1aab3aab7c8137fee@caker yup\n11:32a390b7347dac8c458cd7bb3edf03c9d6f55678@caker -2, 3, 4 aren't used currently\n", "proba": 6.603567044294323e-07} {"commit": "05531d19b1f891774bff8946b4acf2718712a677", "message": "Add resizing and better highlight method\n", "proba": 5.883094900127617e-07} {"commit": "8ed46d7916b8317873382c5c5ff6a2d93783983e", "message": "Fix for case when there's no subdomain.\n", "proba": 3.024424586328678e-07} {"commit": "6e506c03be8cdbfe443301d007ab91fd20716395", "message": "API - can handle negative coordinates now and tabs have been changed to spaces.\n", "proba": 1.0573111808298563e-07} {"commit": "e23c263a178f2c57bd1a42fda20c3a41bb11d487", "message": "Fixed typo in vibrator proxy comment\n", "proba": 1.4950944660085952e-07} {"commit": "318e6b5fd2382766c065574f6b202fd09e68cf6e", "message": "increment version #", "proba": 1.2038943850711803e-06} {"commit": "d15c5cca20133a0c04e78fca429f186f0eb96127", "message": "post api\n", "proba": 1.6457305207495665e-07} {"commit": "571085148997f73d6660c7094777b5eaab3fb33c", "message": "Suppression host: v\u00e9rification de l'existence du host forc\u00e9e pour attaquer directement le DNS local, plut\u00f4t que le DNS renseign\u00e9 dans l'OS.\n", "proba": 1.4585872065708827e-07} {"commit": "546b5167f61af1dbce8d70c7672f284f23a361d9", "message": "Use a platform-independent struct and big-endian for better MongoDB compatibility\n", "proba": 3.7289643728399824e-07} {"commit": "31ac02d233f4907c1bf233f0cd8cb4e848475bad", "message": "Add comments in AST\n", "proba": 3.102045980085677e-07} {"commit": "0b662dcc69b5caf4496d9cd821c15d7c2a5275b5", "message": "getFollowers added\n", "proba": 1.552364778945048e-07} {"commit": "c64cd08c7c04665d43d027263bdeb46222a31888", "message": "added import for django versions lower than 1.9\n", "proba": 2.606448958886176e-07} {"commit": "dfd326611c99c3c517746f0a6f6eee5680afaefa", "message": "Add subversion status as number of changed files in cwd\n", "proba": 4.0796626876726805e-07} {"commit": "e093b2f81223b8cb904f83bec49165cbc33b7efe", "message": "Handle sigterm properly\n", "proba": 1.842840333665663e-06} {"commit": "43fe485d8466921f5ccc479db33d78fbddee6ab3", "message": "settings: remove unsupported methods of CPU detection.\n", "proba": 1.3794094400054746e-07} {"commit": "51d50f37d35a52bc3686568bf681e91911f073ca", "message": "don't use db_exp's name\n", "proba": 7.651599844393786e-06} {"commit": "e4a9330d89215e064dc81857bf59e107f7175c2b", "message": "filter templates by type\n", "proba": 2.484772494426579e-07} {"commit": "4557816d09ea6a3543d7e709fe03be748bebdfad", "message": "Added product type to product model.\n", "proba": 1.0878132883362923e-07} {"commit": "37e27bc79c09787ff317e0013bf9c3ccefd3e4e9", "message": "Uses environment-variable provided addresses for mongo and elastic if provided.\n", "proba": 1.1340750916133402e-07} {"commit": "ffa74a57049322b8a0797d1421ebc49d4edcb464", "message": "release 0.2.17a\n", "proba": 3.0217807989174617e-07} {"commit": "d5e9c3e4357f10c97b85b793713a54359f50d585", "message": "Pop all session keys when logging out.\n", "proba": 1.1355371754007137e-07} {"commit": "8fb6036eade515b2fc6c29bb1c3c7518bf349dd3", "message": "Cleanup USB connection upon server termination.\n", "proba": 1.1189477788775548e-07} {"commit": "7150413cccbf8f812b3fd4a1fc2b82a4020aed9f", "message": "fix heroku postgresql path to allow sqlalchemy upgrade\n", "proba": 1.7545762887039018e-07} {"commit": "f3cee2a3dc0186cbb3ae0d24d100b1cfa7f3d274", "message": "correcion de los metodos\n", "proba": 1.2936737221025396e-05} {"commit": "74a7e8a9072d49b31b0a32da0781818a0dbbfb01", "message": "Trying to make plots work correctly...\n", "proba": 1.2858465936460561e-07} {"commit": "fccc967fea672cbf11fa27bcf6d8db21935198cb", "message": "Feat: Integreted create_room functionality to app\n", "proba": 1.1334695670939254e-07} {"commit": "23beb444fee8cf00d05a6bf77cd6b8c01300728a", "message": "starting on ch 2. Call--> resp.say(hello)\n", "proba": 0.00037676049396395683} {"commit": "9c8f9bec47ebccca95b226c300709be219e4edf2", "message": "Bump version.\n", "proba": 1.5077837645094405e-07} {"commit": "f79f10afd80e34a874819d4d5f54884985e0db7e", "message": "Fix bugs\n", "proba": 3.6897583868267247e-06} {"commit": "f593a4f34e901aa52362ab04a8bf3eb1f3f1674a", "message": "Fixing error log\n", "proba": 5.172815917831031e-07} {"commit": "b8bf769d55a61f9d29b15c4b657d9df293045304", "message": "convert to int\n", "proba": 0.9999995231628418} {"commit": "1daaa629e7ae7c9283dc9a5d1ad87aa29639448a", "message": "Adds validation of \"required\" address parts\n", "proba": 3.11199897851111e-07} {"commit": "0a3fd9d1a14e009215e2f1cfb76fe3989f00c30a", "message": "add route for events/\n", "proba": 1.4336080766952364e-07} {"commit": "dbc20428cdbdb6036262f8a0b295e1275aa9c00b", "message": "Implementing cache functionality\n", "proba": 7.535248869317002e-07} {"commit": "1be531282cce148064de5eb641ac9549a8ad43f7", "message": "remove double comment\n", "proba": 1.9225532810196455e-07} {"commit": "51ffe8df0acefdd41c73739491fbc682a72b9fdb", "message": "get started button\n", "proba": 8.937956863519503e-07} {"commit": "915443bec78de2d0d9169addd8fc8b2310679185", "message": "POST only\n", "proba": 1.492840482342217e-07} {"commit": "02758be302cba3059187509295125755ee942ca0", "message": "Use correct rederict when login out\n", "proba": 6.32071078143781e-07} {"commit": "6f31a346d7985e74ec9b8538d5da4bc87cf8e3f3", "message": "new paged_results doesn't use count, limit, offset\n", "proba": 3.5937753750658885e-07} {"commit": "98f02510a56efba298f12de05356744fae270d3a", "message": "removed test points import\n", "proba": 4.34014481243139e-07} {"commit": "40580d8fe00d17cb0efe71ed008850042d71528e", "message": "Bug fix: users were able to login but not save an empty gist without forking. The\nbutton caused a 404 on the server side. Now button press will check if\nit needs to fork a new gist and save from there.\n", "proba": 1.0983166731648453e-07} {"commit": "8bb5e601599569358b5833de40a70edf09700be3", "message": "ordered the names\n", "proba": 0.9999985694885254} {"commit": "ae54dd79ad66fa1f20ed2caedadef02159810440", "message": "testing\n", "proba": 1.6199514902837109e-06} {"commit": "1857561439b9577673c590246860029f05c7fd4c", "message": "[fix] Properly reload SSOwat at first install\n", "proba": 1.4341399889872264e-07} {"commit": "dd1948d9d9d057093fafc633b72fea73c92b3adc", "message": "Remove srcset filter for updating image links\n\nlxml doesn't always parse properly and misses a number of img tags with\nsrcsets. Images then don't show up.\n\nThis change makes parsing slower but means all images will be checked\nand will show up\n", "proba": 1.4723279662121058e-07} {"commit": "0c47fff8e26beded8f62383268cefd12aa4b63ba", "message": "Returning actual response from github when a new project is submitted\n", "proba": 1.9678412854773342e-07} {"commit": "4bb23a02ca63a490a5c9d89d0591b486236a42a5", "message": "more debugging\n", "proba": 1.4271489590100828e-07} {"commit": "8b53816a144727a24a85cb3d69129641700563de", "message": "Get last statistics row\n", "proba": 1.7848059030711738e-07} {"commit": "e701fe8011c85fa02112f6432259d720aef3e65d", "message": "Adding more Brigade info to table.\n", "proba": 1.0575592312989102e-07} {"commit": "33d4ac4e47f3ca66995c9bc6a6e302d050855a1f", "message": "Fix success parameters\n", "proba": 6.292914349614875e-06} {"commit": "41c925e623125387df059d6f45a522c76a2b29e9", "message": "Added API links to upcoming and past organization events (issue #56)\n", "proba": 9.876619344595383e-08} {"commit": "a4de54ae4553c7b8d5fab33f3ac24169664fa07c", "message": "Updating network sweep values.\n", "proba": 1.4284384519669402e-07} {"commit": "c9910d9317b33758223c14095518aef88b9904ca", "message": "try to reduce push content length\n", "proba": 8.90822377641598e-07} {"commit": "a7ab7229e6f5156be194e916f697e91088bcfb4b", "message": "weather: need to return None if date_period is out of YahooWeather data range\n", "proba": 0.9999994039535522} {"commit": "a4b29b000315fb8a820b0abe2ea5cc31ba64d8cc", "message": "preserve close_date\n", "proba": 0.00018295651534572244} {"commit": "a1cee70883dc5449c244d57495d4f653eb26391e", "message": "ignore \"http\" in slugs\n\nurls with \"http\" as part of blog title were getting stripped.\n\nOnly really want to strip tracking redirect urls\n", "proba": 1.334569361688409e-07} {"commit": "31d34cbb4abf4ceecdd2c7a36edff316f934fe85", "message": "changing translate url\n", "proba": 0.00013453414430841804} {"commit": "912ab50622812f01845bc971e06679bf6848120e", "message": "add test logging\n", "proba": 6.360674547067902e-07} {"commit": "8a61933f57cf71fd2422fb46f1cecee1d2251f16", "message": "registration from invitation\n", "proba": 1.4521305047310307e-07} {"commit": "970a0ac79e607346b5fd4c3667c3d34e427f6360", "message": "Don't crash when no description is available.\n", "proba": 1.137212635171636e-07} {"commit": "0262e7fb791e8b60a2aab4543901a0052293e945", "message": "Adding /v1/monitors and /v1/posts/ endpoints\n", "proba": 3.672990658287745e-07} {"commit": "fb76127cdbcb59836b32e84ae24b3826eab10040", "message": "first commit\n", "proba": 2.536962142585253e-07} {"commit": "3fd0ee1016f2a90bd027e30459dc8fdd8c876e9c", "message": "Refix the fix.\n", "proba": 4.051224493650807e-07} {"commit": "72d3083581a8b6560a513ed87294d8a04c489755", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "4e216458095b7fccfd2888d0e38df6157c3fe503", "message": "sort sites\n\nSigned-off-by: Chris \u201cKwpolska\u201d Warrick \n", "proba": 1.0145434714559087e-07} {"commit": "043eb1b46b8bfae6208f2a6e775198a073bf0774", "message": "device endpoints initial\n", "proba": 9.50615117289999e-07} {"commit": "5876b3eee5f8e6731723bd5d394e5da6b0d8fc48", "message": "Added clear intent.\n", "proba": 1.221608840751287e-07} {"commit": "a8f46a743bccd075caddcef824f73060b5f78a32", "message": "support proxying graphite render requests\n", "proba": 2.1621454493470083e-07} {"commit": "20433e5a24ecdb33781baa260dbba0d02e681a53", "message": "Minor addition to debugging output\n", "proba": 2.6968632482748944e-07} {"commit": "c432ae2dc25b2af77b3f57d610b111a24919d987", "message": "Add collision detection on paste creation\n", "proba": 3.889909692134097e-07} {"commit": "3786d74b86dcde49243dfe9f85559fbcf49cbb85", "message": "Fix bug in game init method\n", "proba": 5.903811484131438e-07} {"commit": "baa848bd35a2fca2ed88b68b9dd1a50d58c71b56", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "0c7ee10ec82788968b0936f886847deedc737c3e", "message": "explanation code added\n", "proba": 2.5771200284907536e-07} {"commit": "28dd1428527542cfe2a6160bbc603887e0a8f68d", "message": "Working but with hardcoded env\n", "proba": 1.7569485635249293e-06} {"commit": "3ae07fed8433111edbeb53c83710133e29bdb36c", "message": "print user_quadkey\n", "proba": 0.9988442659378052} {"commit": "062eb2855db56fb1cf99faaada606eafc69c6ba2", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "9254f982c6f03b5c7ac26d0005a259a6ce80b7df", "message": "heroku local boots fine...\n", "proba": 1.1146980938292472e-07} {"commit": "255323557cdb7957cbe591016629eec15a4f81a3", "message": "Added endpoints for all the various layers\n", "proba": 1.9548490115539607e-07} {"commit": "b54857b022bc28ca25d1b5e03a458917456d8209", "message": "Refactor UserInfoForm instance creation\n", "proba": 2.7562214199861046e-07} {"commit": "0d19e6f02fbb131889fd8c4a36f561510f8a7ca8", "message": "adding speech\n", "proba": 0.0004042791260872036} {"commit": "3d4467fec98c918dea7b9dac37c51c2e69175180", "message": "fixed typo\n", "proba": 2.684115770534845e-06} {"commit": "6dd7812be3b275963a01a9c511a1a03557c0ff4c", "message": "Check if already favorited/unfavorited.\n", "proba": 1.172182066966343e-07} {"commit": "866229add18b01021bf4550501a2dc8ce00843be", "message": "Updated from Brython Server: December 15, 2015 5:38:57 PM EST", "proba": 1.0871266908907273e-07} {"commit": "6742b9a0eebf5f875fd09a79b3dcb8743d8fe4e1", "message": "Run server on 0.0.0.0\n", "proba": 6.17770808730711e-07} {"commit": "dc9633f5de241fed0c2abf0085b86f03c30117d7", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "24094eaaa7a72110851cb235d5789b4bb76f3fa5", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "86f098054fb88dcffc3cb112b38a4aa88ab3d346", "message": "sdfsdf\n", "proba": 7.849233043089043e-06} {"commit": "1f63e8f7d49637ba6d4e08bde9957cebdd486199", "message": "Fixing an error where debug logging for member results could crash on diacritics.\n\n\nFormer-commit-id: c84543b2bb9cbdf1dca47df4cd2c2c5610771e80", "proba": 4.120312223676592e-05} {"commit": "3d29df2cc25fd01ebf79e3c714aeb6c07ef82f3e", "message": "release\n", "proba": 3.947916127344797e-07} {"commit": "23b85ee6bde943fdeabff0952df6bf9eaadafacf", "message": "made app.py reference questions instead of answers\n", "proba": 4.2382873743918026e-07} {"commit": "dae5e2b23a7de1c537861d05345e43af4b6d1a8d", "message": "Reached Chapter 3 in Twilio Quest\n", "proba": 1.692800992714183e-07} {"commit": "ecb6b7c5b6bcc2d33a6af5288daad81ee04bfebd", "message": "last restaurant\n", "proba": 2.47524144469935e-06} {"commit": "d9598bc9c8e4144bf43fd7854ab22acac505671b", "message": "Adding more arguments.\n", "proba": 1.5012123810720368e-07} {"commit": "1861e5d5e509ce5fad2caa64a84b9b98f2d842d1", "message": "app: using another database\n\n\"test\" is already reserved by MongoDB. We can create and destroy it as\nwe want.\n", "proba": 1.0937218064555054e-07} {"commit": "4688e4795a4fd77ed67596092002b6882dd11b40", "message": "blarp\n", "proba": 4.398087639856385e-06} {"commit": "dfc3711395de8e49425baabae0014d1dc99e44b6", "message": "Fixed the thing where I was making the response too soon when there wasn't a callback provided\n", "proba": 3.2537076322114444e-07} {"commit": "743455efb15b7cbd0856906d09c8dab349c479c9", "message": "The highlights page now shows 10 highlights instead of 5\n", "proba": 9.453336247133848e-07} {"commit": "f52f3d56743b323aa6cd1be82d0b22210512de5a", "message": "Should fix lambda/macro name binding\n", "proba": 0.0067483894526958466} {"commit": "2eb377ab7bf263aa8bfebd3bd932427bd7b01537", "message": "Update make_dt\n", "proba": 8.750348001740349e-07} {"commit": "f4f05a7d940a2c2b60a620c24642158a9c43d44e", "message": "Force unpaged json output from aws commands\n", "proba": 5.852351137036749e-07} {"commit": "061a721201d1166b229e7a20ce0c6adeb5d0e47b", "message": "updated ascii art to fit on Windows default cmd windows size\n", "proba": 1.7983134625865205e-07} {"commit": "8677f7a02c33961399831b285bc1107af556c56e", "message": "cleanup: moved import to top\n", "proba": 2.679957162854407e-07} {"commit": "58a0e82909fc2483ba9c2e213d2f10f3793285c9", "message": "Trying to import the locale.", "proba": 2.717188181122765e-07} {"commit": "721f5001603c7a26fdd65f73617a8183be85c6f6", "message": "Check env variables before text files for setup\n", "proba": 2.9557844527516863e-07} {"commit": "e3eaf0321ef36324da4fe1a8b211646906027b1c", "message": "Actualizado repo\n", "proba": 7.85320708018844e-07} {"commit": "038196b5bc478ff561b6f8031ecbcb37a765ba3e", "message": "Change to be more pep8 compliant.\n\nMove imports on one line, add two lines of empty space. General improvements.", "proba": 1.0412050244212878e-07} {"commit": "f67807b0f2064e1c6374fe4c10ed87c7a9222426", "message": "mark all events after processing it\n\nsince we are logging failed events\nwe can clear the notification in diaspora\n", "proba": 1.4168342943321477e-07} {"commit": "a685e58255343758613697e4ed7d5002d8d26e12", "message": "Search for random image on no input\n", "proba": 6.886431947350502e-05} {"commit": "d97f6dd005f5f3560ca062cd2ea4040c65f1eac2", "message": "Remove !king\n", "proba": 2.1480475425050827e-06} {"commit": "e9dc78a1b052ba421fef24cf0ef284dc2a85aabe", "message": "Migliorato /ciaoruozi\n", "proba": 3.1718164450467157e-07} {"commit": "4827e37f93219a36ca166b44144d03df3ba9ebcd", "message": "Basic PyCatBot using irclib\n", "proba": 4.854088615502405e-07} {"commit": "c6d9551395d97ca9ff4d6ea03294612ebc6705a5", "message": "robin can't code", "proba": 4.264510789653286e-05} {"commit": "f0598cbaa514aa4a263a5c44d1b32ec0cb9f0fd9", "message": "Now catching exceptions in the log loop more widely.\n", "proba": 1.0338158062950242e-07} {"commit": "4d2e2fbfabfa9facc18e55d173543a525398c8f8", "message": "Ignore several bugs\n", "proba": 1.085145754586847e-06} {"commit": "52f035a9f39d99477be0d962ef729fa59f8e905f", "message": "dont put \\n between mentions and haiku because that confuses many clients\n", "proba": 1.475721376209549e-07} {"commit": "56672b1f2abfe5dde2c75373798a497c4a09d520", "message": "Percent encode special characters\n", "proba": 0.0003426872135605663} {"commit": "d3409629c120e366c9c7500bc111f61b13e74dc8", "message": "Change port.\n", "proba": 2.0950756152160466e-07} {"commit": "a39169a9da15764fdb1affe444f664233e4265ee", "message": "I'm restarting the giveaway section.\n", "proba": 1.2627546652765886e-07} {"commit": "aa9d068095365dbc65fb3b8439df4fe59a8824c5", "message": "Remove extraneous code", "proba": 0.999998927116394} {"commit": "ef3a871a955bb0486aa7a21331164db6001fbfbe", "message": "Started with json-ordereddict problem\n", "proba": 1.6712262151941104e-07} {"commit": "fcc97e136c646c9e3f008269c081c8fb5a663848", "message": "Fixed issue with key pricing\n\nPATCHING", "proba": 1.2896954615371214e-07} {"commit": "fb3fbc641c85086471d8460e9188918bbd7c3293", "message": "Putting sanitation back temporarily\n", "proba": 3.271445905284054e-07} {"commit": "a512ded5f0f62faf82e778666c5da91ac9308b72", "message": "Adding logging\n", "proba": 1.083107918020687e-06} {"commit": "a1045740bf1bd7d93dc90fec9d54f9bc66b73212", "message": "Ignore CommandNotFound errors.\n", "proba": 2.614949039525527e-07} {"commit": "ec1f87b4348b6900815366856a6c1dad27b16b0f", "message": "Changed roulette to gamble original point value, not 2x\n", "proba": 3.227643674108549e-06} {"commit": "b15fc4ac62f4c7ec5e0f620a51be45ea5dc04629", "message": "Fixed info import\n", "proba": 1.4537017989368906e-07} {"commit": "92dedb59e89c8e590bee831ea79fb682baa736a2", "message": "Clean up\n", "proba": 1.531641828478314e-06} {"commit": "12a0d1cf2cb99a0caa28292878a68f01d4371654", "message": "Rename job directories to prepare for bot.py supporting both domfuzz and jsfunfuzz.\n", "proba": 1.10476051418118e-07} {"commit": "9ab748de8ca86b2f62bda30c5f2f3f0b2bde7047", "message": "Handle TimeoutException and improve code structure\n", "proba": 3.055217234759766e-07} {"commit": "66608ba03a48ea035fe3da3abedfe75df5c12c9d", "message": "Added reply keyboard\n", "proba": 1.4700775352594064e-07} {"commit": "37896b0139fe4d804c0581d318889161b1a10271", "message": "Reduced response rate for profanity filter and exempted #serious_business\n", "proba": 8.585144541939371e-07} {"commit": "9c77261d639168e9381449d026e4d1d697fcba07", "message": "Fix broken on_nicknameinuse code\n", "proba": 3.62767650585738e-06} {"commit": "28c86d461aee8c4a9c998f50f54690c41782bd77", "message": "Restore !help feature as standard command hook\n", "proba": 2.7921493028770783e-07} {"commit": "bc67635e586e9aed3dd10d03f7b3f93bddc2f9c0", "message": "Created a Basic tutorial web scraping class", "proba": 1.6596096941157157e-07} {"commit": "c76801d7aa7c0f4932c9382537c5e7416b0549dd", "message": "Don't talk all the time.\n", "proba": 8.216288733819965e-07} {"commit": "96c3fc19b5c9580363cfd62a7ba227c47b46d9a5", "message": "Removing error persistence to db due to Heroku 10k row limit\n", "proba": 1.7337346491785866e-07} {"commit": "b367ff9e032d01f15aaaedc7e93446e9dda2649a", "message": "Fix outputing\n", "proba": 0.9999858140945435} {"commit": "fae0989a5dc6886b11896f6ba5c6484cd1c1f735", "message": "Fix error on unknown command and blank game name\n", "proba": 1.1191616067662835e-05} {"commit": "90606ffa7d3cbd3ff956d11411ed2a39111b64ba", "message": "Sistemato random.sample\n", "proba": 6.204957117006416e-07} {"commit": "fdeba84fc8a8b3bb8485f4c36acf4ee9c8943df8", "message": "Mana Symbols\n\nFirst attempt at adding mana symbols. Some rare ones that are\nrepersented by double or quadruple emoji are not covered here. (These\nbeing very rare)\n", "proba": 1.0548979645363943e-07} {"commit": "ee83996e0169a076a93d6ac686b2ff650761f424", "message": "Added reset command\n", "proba": 5.448507636174327e-07} {"commit": "fb889e3d7e97646bdbedcaeb423fe3ef7c143951", "message": "deleted some api token\n", "proba": 4.5706914875154325e-07} {"commit": "0958e4760264fcf232e655c47d88a03bf38896b0", "message": "Renamed subreddit command to reddit", "proba": 0.9999849796295166} {"commit": "d3f9a69d62334b680fd8f03cbc8fdfa05a27cc15", "message": "Made bot self post compatible\n", "proba": 1.3105101004384778e-07} {"commit": "af7af25ed5a13a4ce45f358ec5548c2f9e6a492e", "message": "remove wiki from DNL\n", "proba": 1.6949316261616332e-07} {"commit": "475d525c75a055b15e6a7c8937dba9a8da7eb984", "message": "added bounding box intersection func, to find the intersecting region of two boxes\n", "proba": 6.016373959027987e-07} {"commit": "ad8dc99e71d17e4d0136aeac281db45f52ba12fe", "message": "Correction\n", "proba": 3.6583642213372514e-06} {"commit": "0175d2750ef741caef35b069ceeed7fbceaeccbb", "message": "added a top 5 calcualtor\n", "proba": 1.859535956327818e-07} {"commit": "9ffb2ba364917bb143f3cbde85794e7300ae61a8", "message": "iterative min and max for bst\n", "proba": 3.134528583359497e-07} {"commit": "60f0f978c1f87de7a79e3b1469875c810292cae0", "message": "fixed changes\n", "proba": 1.2191501355118817e-06} {"commit": "46fb0305240da82663679edf71ecff52e5f13824", "message": "Refixed fps to 30, added contrast and brightness settings/defaults\n", "proba": 1.3667586529209075e-07} {"commit": "3684b6eebefa041c00c2316631919da32cb637a4", "message": "Docstring\n", "proba": 9.033978130901232e-06} {"commit": "1dc0763ebc53facaa282f2b8f851b953e299b5b2", "message": "Modified cam.py\n", "proba": 8.300788749693311e-07} {"commit": "519cb63b489e3760ddb1fce45d35244798987f1a", "message": "fix: Import servo\n", "proba": 2.3222785330290208e-06} {"commit": "bf702beaa7e194f1dedac119907fcb5d11bd3b2f", "message": "Allow more matches\n", "proba": 1.887641758457903e-07} {"commit": "515875707cd37b0ed6980e53970da0941e5a7052", "message": "Some debugging support and a bug fix in CFG.\n", "proba": 1.0906366298968351e-07} {"commit": "99fdfac861be342998f54f158a6601ef102734d0", "message": "Completed course suggestion write to studyplan.txt; Updated i/o file variables\n", "proba": 1.369354976077375e-07} {"commit": "f7e5b3558411ef0ae35f9004fb604344ceb13190", "message": "Improve parser generation:\n * improve configuration checks,\n * rewrite '_add_parser'method,\nImprove argument parsing:\n * move exec function at the module level\n * get and execute post processing function according to the configuration\nUse 'format' method for formatting messages\nAllow custom types.\nAdd docstrings.\n", "proba": 1.2606143400262226e-06} {"commit": "7f1901754a453232b47b85201fd967f473b7656f", "message": "fixed up the cli module\n\nadded license text to the beginning\nadded some documentation\nremoved some dead code\n", "proba": 3.305466407255153e-07} {"commit": "ec33d872d05ccde8577a5f51aaaf9fb2c445e6d0", "message": "refactor do_superblock in cli\n", "proba": 3.5191176266380353e-06} {"commit": "b8fb30a06ff15000a2d7542e7089b6c8ac1074e5", "message": "Add --allow-drilled flag to cli.py, and increase recursion limit\n", "proba": 5.380805419008539e-07} {"commit": "a9a0186a20015f64a6475b98e6fb42d6efc74628", "message": "Cli.py now works with multiple targets.\n", "proba": 1.0275329742626127e-07} {"commit": "2f4b813241b57b4449071f72a3d18a585f770b33", "message": "[FIX]added slugify for article category and default_active\n", "proba": 2.1934397409495432e-07} {"commit": "ad72e23d73ae40e7dbebc0e56de63c8363916edb", "message": "Fix a crash on startup.\n", "proba": 5.734921160183148e-07} {"commit": "2352ce413cebb9f0fd7b1f26bb33bd0325abedfd", "message": "make more pylint friendly\n\ngit-svn-id: 96ec19519756d6256e3201f6113dd23bfeddceae@346 f6d6ccb1-4906-4145-b9cb-3503ec0a5639\n", "proba": 2.448443865432637e-06} {"commit": "8faba4d0c07ebf046739aafe93fe563de779b964", "message": "Added another coping strategy for failed geometry optimization.\n", "proba": 1.0258097660198473e-07} {"commit": "589279c019a59ead5b23dd88841aaa602cba6204", "message": "Update logging for computeing travel_impedance_measures 3\n", "proba": 2.9086191943861195e-07} {"commit": "12c7d473e2a270d46722b936a8fe9b62eb7548f1", "message": "Add test for issue 203\n", "proba": 1.8382854705123464e-07} {"commit": "92a994dd5ff84d12e7277307aa016cbe5b605aea", "message": "Fix attribute name in docstring\n", "proba": 1.032964610203635e-05} {"commit": "d72e6cc3069e280756c59d42406a070529ee8498", "message": "Switch to using non-deprecated method\n\nThis uses ElementTree.iter() instead of ElementTree.getiterator() for\ngoing over all the child elements in the tree because the latter is\ndeprecated.\n", "proba": 1.3315462865648442e-07} {"commit": "c958c3007cb855ba746dd5db6f031571086cbf76", "message": "fixing typecheck (#7659)\n\n", "proba": 1.413952475104452e-07} {"commit": "8c87da20876c6b633988063eac81ff2b0f602dbb", "message": "ptscrape: Fix url encoding\n", "proba": 0.99871826171875} {"commit": "ea129004b981a804faae293b99fd8eb5fde015e5", "message": "Minor fix for #547\n\nThis is a minor fix for issue #547.\r\nIt only fixes the issue when @mentions are the same :\r\n`@username @username @username`\r\nnot if they are different but trigger the same user:\r\n`@user @username @name`", "proba": 2.8248944090591976e-06} {"commit": "51f46c57e209e35063f67055e45ff6e26f8aa552", "message": "Format error on urlfetch.get fail\n\nThe error messages for fetch failures of nested stacks have too much\ndetail. This change formats fetch fail errors in the same way\nthat TemplateResource does.\n\nChange-Id: Ib8afa281a53f895086ce8890c828fe4a8bb469ae\nCloses-Bug: #1214227\n", "proba": 2.1870700948056765e-06} {"commit": "7c72be0ed8883a35a8de03ab0573ac57e0891855", "message": "Update py client\n", "proba": 3.611221188748459e-07} {"commit": "813737edae164a603263c6a365cae65c0ddbcf61", "message": "fixed test error\n", "proba": 6.98994597314595e-07} {"commit": "22aead72594e5aa7047858c04beb3018e93c59fe", "message": "Revert \"started 0.2.x\"\n\nThis reverts commit 092fb220be60ff59912795aae7f13eccd4e31b0e.\n", "proba": 1.3261931997021748e-07} {"commit": "492005db9a7c34b2648de8b7335bdbdd18ffb13b", "message": "Update setup.py with release version.\n\nPiperOrigin-RevId: 325038649\n", "proba": 1.6696729687737388e-07} {"commit": "4df1331ecb5686dfb59be5642ee3edb9e7ceb05e", "message": "Use 402 error when user does not exist\n", "proba": 3.528957392973098e-07} {"commit": "1cd7a695f52b413ea22599c654bea05736f12077", "message": "Added check in sa.py for an all zero coarsest level operator", "proba": 1.4242854717849696e-07} {"commit": "ef701aeeddfed8fa5415fe4a9f2d45af141bb532", "message": "create a main function to reduce the amount of globals used\n", "proba": 1.6657793366903206e-06} {"commit": "df9c8454d0f012bf3110790809be1beb2237c613", "message": "DROP SUPPORT FOR PYTHON 2; Fix issues with Python3\n", "proba": 1.3060733294878446e-07} {"commit": "c022170cc3e920c56d0c6e0dc712f9780e9b8370", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "d0b202bd03872587901b609e952ef31a7db26b3f", "message": "Add alternative encoding option to import/export from CSV\n\npypsa.io simply passes the encoding option to pandas.read_csv/to_csv.\n", "proba": 1.3023716860516288e-07} {"commit": "8e28c99f8c966d2ddbccfbe6bddb3e8182c0d45a", "message": "documentation on oauth2 with formhub api\n", "proba": 1.299307541557937e-07} {"commit": "6f2bc6144cf573c790f86e802bc89f840136161c", "message": "tweaks to yt function\n", "proba": 2.3427288908806077e-07} {"commit": "6fa82127952e24557c2e84f8adc0b6106469a88f", "message": "Fixed wsgi handler.\n", "proba": 1.2289260098441446e-07} {"commit": "6b6ea73416b0d5fbd8a5b0bc76fcd3d32d649b26", "message": "use more explicit sympy constructors rather than relying on sympify\n\n(this fixed an issued where a parameter name like 'deg' would be interpreted\nas a special function or the like, rather than a symbol)\n", "proba": 1.1115685794038654e-07} {"commit": "4bbb068002e4e54be56fb8e9f8266d60c201663b", "message": "Change imports from place\n", "proba": 1.6916617084916652e-07} {"commit": "b3af2f77405c1de1a7968e9adf02a4dca110e8ef", "message": "Pass content from README.md to README.rst\n", "proba": 2.8056180667590525e-07} {"commit": "08693bc641d0a83002402bc823196cc34177301f", "message": "Delete pyspider.py", "proba": 0.0005665195058099926} {"commit": "2c6591a5d3797cb03392fd65fc2d95dd2f2487cb", "message": "binary data support for excange() / cmd2bytes()\n\nSmall mod for correctly setting the header and avoiding re-encoding data that's already binary", "proba": 1.3432138246116665e-07} {"commit": "0e7b5216d870136c040a4b6431471a0ddda9bcbe", "message": "added file listener for proxy list and made proxy list a unique set\n", "proba": 1.540454661608237e-07} {"commit": "1f910b21bd8308b6ba5aca88ae17f18a10902b72", "message": "fixed error\n", "proba": 1.1343307733113761e-06} {"commit": "b169b6025cded800af28bd53671827a74dc84c6b", "message": "better pep8 fix\n", "proba": 3.784390401051496e-07} {"commit": "cba3070cb1e62e1f501d88da7ce6d0eac479774e", "message": "changing redis stuff to pipelined\n", "proba": 2.9488893460438703e-07} {"commit": "eefa937f40b278d7b8a864397b8bcbc695daface", "message": "Deal with non-string keys (eg: tuples) for dicts in the displayhook\n", "proba": 1.7637913742873934e-06} {"commit": "f682a75453f05211bb52f5fb22b181204f08d151", "message": "1. do not change workdir to tmp/ any more, add store_dir when save file;2. when first load, find the max_page_number first(unload_page_num); 3.only download new pages(this.time.totalpage-last.time.totalpage, totalpage from totalpage.ini); 4. after load all new pages, stop load(sub) thread.\n", "proba": 1.336171493449001e-07} {"commit": "d6a1bd557db8da80add82523436162103d708a86", "message": "fixed typos\n", "proba": 5.799032805953175e-06} {"commit": "31fc2949deff9af411cbdf5144362052d08fc276", "message": "add comments to qrscreen.py\n", "proba": 2.770314893041359e-07} {"commit": "24b2504fd67073611661fa1615d465cf81b7abf4", "message": "Fix raveler import and support cropping.\n\nremove_merged_boundaries only works when there are only merged\nboundaries, and not big blobs of zero-labeled voxels.\n", "proba": 1.0243336134863057e-07} {"commit": "d7c2bd5360e52207352292d3eb0ccbc0860deafc", "message": "The refraction function has into account the polarization vector\n", "proba": 0.0001545084232930094} {"commit": "0603a207eb73eeeeb0546b4be3b427358abf5053", "message": "Prevent duplicate wallpapers.\n", "proba": 3.7956783671688754e-07} {"commit": "b596117e1c715367af7cb7f9776c362f56e3084c", "message": "Minor Update\n\nAdded Warning message if escaped quotes are found in script files", "proba": 1.5642447692698624e-07} {"commit": "e50f40758a34949e3b697af1a4289fdb7f8da966", "message": "refactor code to: present devices->define devices->define type of wipe->number of wipes\n", "proba": 0.9999994039535522} {"commit": "d4f5d84769187b07822044f7f425b1a71a5c7539", "message": "Fixed SvgCircle positioning bug.\n", "proba": 1.1731349047749973e-07} {"commit": "862d61569a4e7bc06acd4a676072fed79a1905e8", "message": "Switch to checking upvotes/downvotes.\n", "proba": 1.3287123579175386e-07} {"commit": "aa0baf2bc0de0bf40c725256f0c96ff5d511930b", "message": "Changed warn distribution\n", "proba": 2.666819227670203e-07} {"commit": "86cfa2a9fae837a0e36dfcc6bd9daf5ad02f1db1", "message": "Updated from Brython Server: December 23, 2015 1:39:02 PM EST", "proba": 1.0745330314421153e-07} {"commit": "87d4f23dad9e2a0d36be4c5e743840161665b746", "message": "Implemented text and border drawing for Box class\n\nQuick and dirty implementation of some Box functionality. Final implementation will be different, will depend on how I decide to implement the Display class.", "proba": 1.003936986876397e-07} {"commit": "d612e4938a09b94aee61353a52b4c5abee388f52", "message": "Retry fetching patch from rietveld on a 404\n\nAlso added a tiny bit of exponential backoff.\n\nBUG=375479\n\nReview URL: https://codereview.chromium.org/350433003\n\ngit-svn-id: fd409f4bdeea2bb50a5d34bb4d4bfc2046a5a3dd@291682 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.6626780734441127e-06} {"commit": "71b93971486ac4bf80284de43962d4704642a890", "message": "add missing _ on line 37\n", "proba": 0.9999816417694092} {"commit": "22e7a27c297e437aebb589eed636628403cbbe21", "message": "roll-dep: Add command used to make the roll in the CL description.\n\nThat's marketing 101. :)\n\nR=002a79d3522c3eaf360691f06af29425bafc4480@chromium.org\nBUG=\n\nChange-Id: Ibbc1cd18650b7b601c27662fcb40ea7b15b40fc7\nReviewed-on: https://chromium-review.googlesource.com/439006\nReviewed-by: Sergey Berezin <002a79d3522c3eaf360691f06af29425bafc4480@chromium.org>\nCommit-Queue: Sergey Berezin <002a79d3522c3eaf360691f06af29425bafc4480@chromium.org>\n", "proba": 2.224428271802026e-06} {"commit": "6a80cb2000c880aad5f6a5a955207d0be1a91b77", "message": "fixed sign in \"average\"\n", "proba": 6.915444714650221e-07} {"commit": "6d51dde881c2c3186cfa9603dc7b80ee75630a79", "message": "A bit of error handling.\n", "proba": 1.3930086595337343e-07} {"commit": "2ed28a83239de0881de5e7fe6a26d5836bdf4aeb", "message": "Improve regex\n", "proba": 0.9735217094421387} {"commit": "a6c01ec43f5bc45132c56ebf1dadf127e3990be1", "message": "add fit_flag switch on and off fit_hydro funciton\n", "proba": 7.175148653004726e-07} {"commit": "d31d767ec4c4452e8a1d5f9dd896ade19e4ac645", "message": "Fix tests\n", "proba": 2.8394715627655387e-06} {"commit": "38a086d2c5ebf73f7ad0108def2304262a2e0452", "message": "Add trailing comma\n", "proba": 0.9999436140060425} {"commit": "8a08c4f7f566b24686b7f5618ec3644ab8fba97f", "message": "When running a single test for multiple language levels, make sure they end up in different directories to prevent overwriting each other.\n", "proba": 2.1712082798330812e-07} {"commit": "631e8b33a8ac11351e251aec69a354675d5a80c1", "message": "test runner output fixes\n", "proba": 8.672446369928366e-07} {"commit": "d0314d8dc39aee9feb4553feae7d1dfd144f47cf", "message": "update standlando py.test in runtests.py\n", "proba": 2.7489971898830845e-07} {"commit": "3cc083e08a586e61a8e89a549ba63c6bc5ede2bb", "message": "Add :mod:`firmant.writers.staticrst` to tests\n", "proba": 1.813596952615626e-07} {"commit": "f9159069b97e367b3d7d149e0a07c89be48d1e7d", "message": "Avoid old-style classes in test runner under Py2.\n", "proba": 1.5063379521507159e-07} {"commit": "98109c41048bb8330348cd0ab51a175328b056d6", "message": "make runtests executable\n", "proba": 3.3221188004972646e-06} {"commit": "1f2f6352210deea5c773fc4ba6d1c78a35473a4e", "message": "chmod +x runtests.py\n", "proba": 1.1367988008714747e-06} {"commit": "8830fece0992a6e1360440b51956c6ae6a4b034a", "message": "Add `SECRET_KEY` to django config\n", "proba": 9.3080525402911e-06} {"commit": "e6063e1a515ded0ae1fe5db4a0bfb519059da562", "message": "Test IPermissionGroupProvider with username_prefix\n", "proba": 5.556154860641982e-07} {"commit": "615282f770f7b7866650ef2a854c1d43b96e0cb8", "message": "test runner: enable cygdb support for --debug option\n", "proba": 5.79177537929354e-07} {"commit": "d7079121ceaa9eda5f4b16c81225cab1eb5cb11d", "message": "minor fixes\n", "proba": 2.1220614598860266e-07} {"commit": "9185baa276614ec8b65d6c8082bf389c3d35aba1", "message": "generate coverage report from 'runtests.py -C' (requires coverage.py)\n", "proba": 0.0002398615179117769} {"commit": "63bb17d2bf193f1779174033e420faa0030e0d8b", "message": "less strict testing\n", "proba": 1.3909550489188405e-06} {"commit": "221485ca91d49ffc8e29fcd53ec24557abb68c26", "message": "added missing return statement\n", "proba": 2.689481698325835e-05} {"commit": "3a392d963b441e8c8613eefb13c5f3d45668d572", "message": "Successfully parses all historic items bar one extraneous one.\n", "proba": 1.1950778855407407e-07} {"commit": "edb950fa3e78b2534b32c781ec6f1f95558c61f9", "message": "Delay loading of client in key cli\n\nNo need to load this early and doing so actually makes testing a little harder.\n", "proba": 1.0461756971835712e-07} {"commit": "b2913e22d64b1a08e532e6f95720296c24797461", "message": "Bugfix with non-strict mode\n", "proba": 6.507224270535517e-07} {"commit": "06b5b42d509147fd38618cae986d50a64c83285d", "message": "fix bug where hub-and-spoke plot would not automatically float contrast\n", "proba": 3.083643491663679e-07} {"commit": "d9caaf949e9fe59a656c5986180038b9b3dc34fe", "message": "remove league alias\n", "proba": 0.0003949277161154896} {"commit": "09ef708e2d16a84a3067e799b8decdd7c5db35ed", "message": "Fixed tab errors\n", "proba": 4.845509238293744e-07} {"commit": "36268de01dde676f89ff824dac9e7c9b80561943", "message": "Cleaned up the code to make python-lint a bit happier\n", "proba": 1.9832878024317324e-06} {"commit": "96f8d165c3000effabae492e0b9a73bcaa7099a2", "message": "suppress errors in `fbcode/opensource` - batch 1\n\nDifferential Revision: D36119836\n\nfbshipit-source-id: 3328102e950e87e1058c60e5f06a8f0bbdb6d331\n", "proba": 9.15389318834059e-06} {"commit": "5927ce7e81d6e62ae7db6dd68fac85bda5a0baff", "message": "prefetch projects in the background\n\nSummary:\nThere's no reason to block a getdeps build on prefetching its sources,\nso issue all prefetches in the background.\n\nReviewed By: genevievehelsel\n\nDifferential Revision: D33855396\n\nfbshipit-source-id: 1ba01b0587e9bc0e74e6bba5b8571af76bf2516d\n", "proba": 6.310856974778289e-07} {"commit": "cc626bef4bb9ad4888362476a3ce9f92154f7d53", "message": "Resolve #74 -- Use result.get instastad of ready\n\nUse celery API for result polling over own implementaiton.\n", "proba": 9.700951864033414e-08} {"commit": "6c5935172b3a861381828fc6af3b8bc7f09da4ea", "message": "intentions only count in certain timeframe\n", "proba": 1.3455103271553526e-06} {"commit": "b6130ccccf386e542dbe167214ea92fd31b48920", "message": "Version up\n\n", "proba": 2.3687670136496308e-07} {"commit": "35128e7e614524fc8be4c3767b4ceda04326f821", "message": "trainText() for CioFP models\n", "proba": 3.406024688956677e-07} {"commit": "5688c3c0ee6987d3042a1d88a0b7146fef1bb054", "message": "fix for md5 calc wrapper\n", "proba": 3.3934512089217606e-07} {"commit": "ac6302f506299ed881ad4971ec30367e083c9433", "message": "remove unneeded lower() call on repo name in require.rpm.repo(), as we're doing it early in the method\n", "proba": 2.7112864131595416e-07} {"commit": "6128f029bfd479bbf21ff77f066aff4d25487565", "message": "fix FakeAuthentication\n", "proba": 6.931945972610265e-05} {"commit": "5034e49d612f763a42728c8c291de1c599097259", "message": "add api-v2 changes from other branches\n", "proba": 2.3335509524713416e-07} {"commit": "cf683c6d2e91457dd9dd030db90a459021e15f15", "message": "Optimization on Ballot Item save and update from batch system.\n", "proba": 1.0460739474638103e-07} {"commit": "396947128c0217dddaa839faff00c36a31309c5d", "message": "fixed tests\n", "proba": 7.448433620993455e-07} {"commit": "8295c59deae9ddf103f843f93a04dd0f800702df", "message": "set default protocol specific data\n", "proba": 6.489351562777301e-07} {"commit": "4c14b2f381e097b1955f5e0a9950cd5a8f27746e", "message": "Swallow broken pipe errors if we don't want to write anything really anyhow.\n", "proba": 1.240613300979021e-07} {"commit": "0409dd1e3ebd0c31f89b769272e5258d409c20ad", "message": "Clean up the stopping of the factory a bit more - re-send the SIGTERM if the first one was not caugth properly - merge from branch_v2_4plus_igor_ucsd1\n", "proba": 5.125829716234875e-07} {"commit": "9c09a1cab7112db0deb9858bda82226728c38fd2", "message": "Fixed menuconfig\n", "proba": 6.220290629244118e-07} {"commit": "18f8c9887d51277706aaef3f4f26595b193a7ef8", "message": "re-add accidental deleted temperature line\n", "proba": 9.86667487268278e-07} {"commit": "f641c4be6e88aac1e1968ca8f07c5294d4dfe6fa", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "91fa34a289d79f3b869d3041f22d4eb285d73902", "message": "Removing underscores from API urls\n", "proba": 1.5055020412546583e-06} {"commit": "bf9bc37c0139ad9662b4c2bf7b432eb0161333c5", "message": "Reduce the maximum value of start timestamps\n\nThis fixes running the tests on systems on which CPython does not support\nrepresentations of timestamps larger than the maximum value of a 32 bit signed\ninteger.\n", "proba": 1.3845902913089958e-07} {"commit": "357c9364d5a5fd92cc9a67135597f88269fe39ec", "message": "Additional ImplicitSurfaceFunctionCache tests\n\n", "proba": 1.3380012831021304e-07} {"commit": "3b3a2450a9461404cf46f646edfddea2147e0226", "message": "Version branch.version2 0.112 - April 2015\n\n1. Improved error handling when some tools fail to compile.\n", "proba": 1.0107230963285474e-07} {"commit": "1134ea84109ba03e8ea1550155b732aa880b6557", "message": "default to CachedPWA\n", "proba": 9.930205351338373e-07} {"commit": "10469b98be09c87784e1809b107dbf6352be31a4", "message": "Refactor\n", "proba": 5.142872396390885e-06} {"commit": "e6d302435df3e20fcbca4124e23e56d34af8b526", "message": "#31: using abstract classes\n", "proba": 3.3991104828601237e-06} {"commit": "99931107f369f6651a54ca2cdabc41695f9867c2", "message": "more work on verify.py\n", "proba": 1.2382599834381836e-07} {"commit": "32f06d1225eb578d3aaee52c8ece4b9bde6a23d7", "message": "Version 0.0.7\n", "proba": 7.616520747433242e-07} {"commit": "ad049de25caddbfefdaecd0c0c85e35abb8ae6d5", "message": "refactoring and cleaning up old code continued", "proba": 1.3565609435772785e-07} {"commit": "5a0c201fab34f18e4ea8a65c8d47a1d5309b55be", "message": "Copy initial buildserver CPU/memory configuration to final box Vagrantfile\n", "proba": 2.2021842482899956e-07} {"commit": "bd5b1c6506c7cf7d38eae31d4250300e1953ae26", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "1e3199618f55be86fa5e4259d1c6e4a7074e57ca", "message": "Update environment.py", "proba": 9.218494483320683e-07} {"commit": "88d7a910957ee3719ecad67f4e384ac50f3e7435", "message": "Make this log obj available at the module level for monkey patching.\n", "proba": 1.0651546489270913e-07} {"commit": "44a41555d4f2ec3eed090711f34b233085e1aebf", "message": "add missing config entries\n", "proba": 1.5304926819226239e-06} {"commit": "3e290452831539476759ed445575914f6457a275", "message": "removed superfluous imoport\n", "proba": 0.0005772974691353738} {"commit": "14e02d8e1f2755ef2b815cbaca1778df49874f57", "message": "accept ALLOWED_HOSTS from env\n", "proba": 1.289500232815044e-06} {"commit": "72d0c7b9640cedbb2167ca9072014411c5b74893", "message": "Added some SED plotting functions\n", "proba": 1.438290126998254e-07} {"commit": "416214e4bcc2efcdd51fd608f145dd256643abdb", "message": "Resolves Issue 18", "proba": 1.1338664052118475e-07} {"commit": "576ea74646935c00e051a46244b8f56165710df0", "message": "Add multicast send\n", "proba": 9.085472925107752e-07} {"commit": "8c68031928f54d38c92308504bc93bf61ead57f5", "message": "Update clashcallerbot_reply.py\nadded get list of messages older than current datetime, updated outline\n", "proba": 1.4436329820455285e-07} {"commit": "a3cb285befa02ec4babf889925afb48f2f213df7", "message": "fixes some tinymce issue;\n\n", "proba": 1.171948440514825e-07} {"commit": "a11ab3a901c7a93f0c8afdf64bf4dc2ca3f623e0", "message": "fixed issue calculating bearing to cache\n", "proba": 1.4034026207809802e-07} {"commit": "f7f16611754181c28b1c8c6a3e5942731f851c46", "message": "add some docstring\n", "proba": 4.0533108403906226e-05} {"commit": "dd35552b0e6679f5a6bfb852ba308c2f6833bd3f", "message": "Switch to polling\n", "proba": 1.6102692370623117e-06} {"commit": "469b83487def349741b5f062c9a5afff315fbf5d", "message": "delete node bug fix\n\n", "proba": 5.54173993805307e-07} {"commit": "687139a9cfbeb51f3442d9c95b7878021d77622d", "message": "comment re. kind of stupid way of associating racks w/ an order\n", "proba": 1.6236094779742416e-07} {"commit": "42923355855a53cd7d6df23f666c2c74a07c7068", "message": "fix healpix_helper to take of nans\n", "proba": 1.5792791430158104e-07} {"commit": "2cbae4650422f7982ef50e564e9e27e7fd294be8", "message": "Add ability to nix product to admin\n\nThere are a number of responses that aren't related to product feedback.\nThis allows me to unset the product field in the db for those responses\nso we have better data.\n", "proba": 1.196908527845153e-07} {"commit": "9ed764738e1c06cbd1404fd1c9b9efa558f68440", "message": "Add some statsd calls for my health dashboard\n", "proba": 1.936837605853725e-07} {"commit": "43ea095de56ec944aed6f3d0d1b5dfbdce8c9e25", "message": "Remove a snow leapord (10.6) fix that is no longer needed (fixed in upstream babel - https://github.com/python-babel/babel/blob/master/tests/test_core.py#L52)\n", "proba": 4.391804850456538e-06} {"commit": "45e8eea17309d5b9368e1b8240b5790fc6accbfb", "message": "Fix docs typo: delete_memozied -> delete_memoized", "proba": 0.0048211077228188515} {"commit": "08c2a121365f6d78a50117957db5dde2076e6263", "message": "update description\n", "proba": 8.540638987142302e-07} {"commit": "6b46285e850f8bc8155a93adf13920752537e55d", "message": "[comedycentral] new shortcut :theopposition for \"The Opposition\" show\n", "proba": 9.217966976393654e-07} {"commit": "90df50b045472ceb7d4827bc38e5186ae61b509f", "message": "packaging/os/portage: Handle noreplace in check mode\n\nThe `--noreplace` argument to `emerge` is generally coupled with\n`--newuse` or `--changed-use`, and can be used instruct Portage to\nrebuild a package only if necessary. Simply checking to see if the\npackage is already installed using `equery` is not sufficient to\ndetermine if any changes would be made, so that step is skipped when\nthe `noreplace` module argument is specified. The module then falls back\nto parsing the output from `emerge` to determine if anything changed. In\ncheck mode, `emerge` is called with `--pretend`, so it produces\ndifferent output, and the parsing fails to correctly infer that a change\nwould be made.\n\nThis commit adds another regular expression to check when running in\ncheck mode that matches the pretend output from `emerge`.\n\nSigned-off-by: Dustin C. Hatch <1c08efb9b3965701be9d700d9a6f481f1ffec3ea@hatch.name>\n", "proba": 3.185360401403159e-05} {"commit": "8775df3bec21d6ceb7b92938565124d024f992b6", "message": "Pass feed object rather than interface\n", "proba": 6.145882025521132e-07} {"commit": "2c2e82c2da0c8d37ae6e29f254b22ac28a79b78d", "message": "Getting only published pages to show up on front-end.\n", "proba": 1.0033837583023342e-07} {"commit": "5764d9ea06116b884f9185bd798551c9c6295612", "message": "Set bitpix when saving\n", "proba": 1.705900416482109e-07} {"commit": "1c009630c6dbab623776bb2761ba6a91895bbfb0", "message": "Configured monogdb\n", "proba": 7.112884645721351e-07} {"commit": "43218491c78e97305c89d22587be44f39f5c5894", "message": "output GRIMM format without # lines, some softs use it\n", "proba": 2.11963424590067e-07} {"commit": "0af01110be1e8290af370daf6b9c8bf10b693322", "message": "select() debugging\n", "proba": 1.460566750211001e-06} {"commit": "53d26896f9bd65a791d2b1967535e107254c269e", "message": "Use built-in HTML parser for django-compressor.", "proba": 1.2603868526639417e-07} {"commit": "9640f019e3aa134e188d70a54a87ebfbaf3a9735", "message": "bokern\n", "proba": 1.09790153146605e-06} {"commit": "e19e2d69baabac3adedfae4e7a8c6ef5bb3d6f53", "message": "Fix alembic script\n", "proba": 3.336734516778961e-05} {"commit": "df5cc6e2ed5fd951748966055c679206894f0642", "message": "And more merge problems.\n", "proba": 1.2658075831950555e-07} {"commit": "09bce4d9fe7df29e5369004bdbca4198a7bd1c47", "message": "Some clean up of mnw2. This package still has problems.\n", "proba": 1.0587984888843494e-07} {"commit": "10f8deb343d17e73185bef916396a80c73b718ed", "message": "linter: Add link to migration guide (#10821)\n\n", "proba": 1.0289254248618818e-07} {"commit": "0ef48613cb0bbd323b7a40cb2ea991987686c78a", "message": "Added windows menu_key binding for test automation purposes.\n", "proba": 1.0768535219085607e-07} {"commit": "fe428e5ba0237b36d5fad789a850d18e020b3b9c", "message": "docstring\n", "proba": 5.97681209910661e-05} {"commit": "1d0850439b308ba2000645066571a29b6668bcdb", "message": "avoid a traceback if an object has no docstring\n", "proba": 5.528124893316999e-05} {"commit": "c10e3ab7f27dbdb8cb6423842b58cb7f577eef7a", "message": "#262 fix typo in parameter\n", "proba": 4.635316770418285e-07} {"commit": "6fb6fdee06410d1d051134f0b9dcb47ad2ac1885", "message": "Simplify code around re-raising an error.\n\n\"By using raise with no arguments, you will re-raise the last exception.\"\n- https://wiki.python.org/moin/HandlingExceptions\n\nre: https://github.com/SUSE/azurectl/pull/52#discussion_r40293596\n", "proba": 0.9999978542327881} {"commit": "f71da97394985e31f47cc9f818c0aec1a1348297", "message": "more extensive use of in place operators\n", "proba": 1.9593919375893165e-07} {"commit": "7158dd707c3a09c9a176804a589485ebd5585715", "message": "Automatically get new recommendation for user\n", "proba": 1.7408838459687104e-07} {"commit": "931cf1c40c0e7f5a59fb5fef0497cfa527c1e14a", "message": "Updated hindustani test\n", "proba": 2.383114434678646e-07} {"commit": "e12f0d753817c4774af9e59aff81a6fa6b98b119", "message": "Version devel\n", "proba": 4.930214458909177e-07} {"commit": "ddba19a15d7d8b8b6dd04f66d49b954369bd0ea3", "message": "add inverse_compensate docstring\n", "proba": 0.014864089898765087} {"commit": "c8468f42e81717a9bf42c230e9103415867927bd", "message": "Counting retries in the proxy case too (CNY-3429)\n", "proba": 1.2585636000039813e-07} {"commit": "cb99e19908f389c7af751b499d7875998b7a3e88", "message": "cleanup in tests\n", "proba": 2.940189745004318e-07} {"commit": "03cae330bcad76fc01ea591e527790bc35139490", "message": "Fix itypes param typo\n", "proba": 0.0008948684553615749} {"commit": "1e9dc79522feada0350ddb60976d448bded91e0c", "message": "Allowed passing single spec to Dimensioned.map\n", "proba": 2.2938917254577973e-07} {"commit": "648d94cc473f56d1016331eeefd79904fbfd9656", "message": "3.0.0\n", "proba": 7.526425179094076e-06} {"commit": "cf041d583245eacb0c5a21baf0cfcee7e5bafe31", "message": "minor update to fix issue with kvstore data in profiles not properly being staged\n", "proba": 1.3283880662129377e-07} {"commit": "c72a3a296ba013a1345c8dc0ae1ca10be9c6b1e0", "message": "remove Caops table reference\n", "proba": 4.7353668719551933e-07} {"commit": "161d7da2a34564597de580582eb582694105889b", "message": "Fixed outdated docstring in ndmapping\n", "proba": 2.534176530843979e-07} {"commit": "c6a785fd8244df15a8460a07709586859b409596", "message": "Update __init__.py", "proba": 7.178883242886513e-05} {"commit": "c89d4bd741e00f3511cda41dbfe9ddd64c3580d6", "message": "Fix replacing real test class name to test method name in ``HttpTestCaseMetaclass``.\n", "proba": 1.7486145509337803e-07} {"commit": "912d1305c419cd079eef3b37a4c4907214f74cab", "message": "VendorID: Improve logging strings\n", "proba": 8.547964398530894e-07} {"commit": "6a2f9bd351baca6337e99f612e602687bdb22023", "message": "Fix API regression added in e115f1112a547d312b5f64734453e79d56ce65e1\n", "proba": 6.3647134993516374e-06} {"commit": "6022442c6ef3ab12e27759a80e3b0776d70b8cf5", "message": "Disabled caching of Renderer parameters on output magic\n", "proba": 1.984425495038522e-07} {"commit": "ba10ccfc07d3e82a5b93f1a2ad8b8d777bfdfd81", "message": "regression on pages.py (#16)\n", "proba": 1.287733937260782e-07} {"commit": "5def88372c55c48dec5bec1b57f3e8965af90377", "message": "Determine uses and shares for projects (for samples)\n", "proba": 2.028387342534188e-07} {"commit": "74d08366a1c2c209d0c9e5b21f899a3bbd31b151", "message": "Generalized the backend option of the output magic\n", "proba": 0.999984622001648} {"commit": "9bc0fcae967ae06a3b9e6fb39edaeb86e30d7c7e", "message": "Fixed a bug in symbolic data dependency graph generation.\n", "proba": 1.1169007763101035e-07} {"commit": "03e6615b36c2cab3c0b0ae46387fa1db15ea008c", "message": "Added a hyperparameter beta in swish activation function.\n\nAs described in (https://arxiv.org/abs/1710.05941) swish consists of a beta hyperparamter that is inputted in the sigmoid activation function. Implemented to paramter beta with default value of 1.0 in order to replicate the same behavior as current if no value is provided.\n", "proba": 1.1517518316850328e-07} {"commit": "8d40fb8ca37bbff0dc2109d437df11538bded79f", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "857fb94e91784e1cb329b84bc151e21430b015ee", "message": "Test zbl force and energy\n", "proba": 7.535766144428635e-07} {"commit": "b42013b288055eabf1ba64608a1b7023e67cd5a1", "message": "Replacing the private RaggedTensor constructor with public factory method without validation/extra tensors.\n\nPiperOrigin-RevId: 293838637\n", "proba": 1.3282816269111208e-07} {"commit": "e642a82c4ed1e146fe64f97e3694355310abbcf7", "message": "Add load and save methods\n", "proba": 3.6044019680048223e-07} {"commit": "2959d38d0f97b2ff1f784f0c0bbf7ea1ce72c25c", "message": "Improvements to plot_climate_index.py\n", "proba": 7.355684488175029e-07} {"commit": "47e15ef8c5bf90b49d63f7cd15cd5c34d0997a40", "message": "Remove default flag as arg.\n", "proba": 1.4291838112967525e-07} {"commit": "a51c61c29ed12ef8cd9b5fb66ebfdadbe3f71183", "message": "fix spelling\n", "proba": 0.9999994039535522} {"commit": "179beb3dfeda7153925ecd6c0472f0fae26fcda6", "message": "Fixed bug in autocorr.py that returned 5xACL.\n", "proba": 1.0846227382899087e-07} {"commit": "4adab9db82f0ff0cf57cda20fb2b41a43141fa44", "message": "Delete dev.py", "proba": 1.2618412483789143e-06} {"commit": "7525123252e833ff17b584cbaf2798ac2d335690", "message": "MAINT: PEP8\n", "proba": 9.451133337279316e-06} {"commit": "61608341334ce0bfc666b89e4595082d160da413", "message": "ENH: better test coverage\n", "proba": 3.576645610792184e-07} {"commit": "12dc0226a5a0f3300f5d1bf2896ba306e664b05b", "message": "test sort parallel non-str\n", "proba": 0.0010553504107519984} {"commit": "aff4babc0af0c3b402a42142b18f0a99563d3f25", "message": "[#1573] metadata long text word wrapping fixed\n", "proba": 1.0886514019148308e-06} {"commit": "b2678b7512f686040de1f0a947391ece11bb2658", "message": "Update SDK SHA to fix clang-tidy warning.\n\nSigned-off-by: John Plevyak <21e8c5cc24c747cac934fcbef39d1b757b61996c@gmail.com>\n", "proba": 1.1297075985794436e-07} {"commit": "eacf5f29c714f8ec2feb8c8a8b2b4f8f7f3cf90f", "message": "FIXED, nbconvert sphinx preprocessor date format string for Windows\n", "proba": 2.1031952712746715e-07} {"commit": "218cb0695a6fc1a4a076a60fdf9b2ee72ec37bea", "message": "Adding note about pinning and authorship.\n", "proba": 1.0469801736689988e-07} {"commit": "f307e710fd9f28a48cd9059ec124313277142c52", "message": "Revert \"deps: Bump `rules_python` -> 0.12.0 (#23010)\" (#23068)\n\nThis reverts commit 4884250a2db3ee5c11a6d20a5364bc37e66d78d3.\r\n\r\nSigned-off-by: Ryan Northey ", "proba": 2.9289924441400217e-07} {"commit": "202cec13f135988e5e73764790f1d10427d6f139", "message": "fix import path for InstagramException, been causing exceptions when running examples\n", "proba": 3.045620360353496e-07} {"commit": "8b927f90c7416cfe1ba50ac1ad073e859206410d", "message": "increase max number length from 9 to 12\n", "proba": 0.9998736381530762} {"commit": "8fe8b41b07761ed2a76d5cb1efffac97abc711fb", "message": "GATK4: work around for ApplyBQSR failures\n\nAvoids GKL deflater issues (broadinstitute/gatk#3605)\n", "proba": 1.0198166933150787e-07} {"commit": "a2dfc9b18b164c00e0bf2b35e38f588064487716", "message": "interpreting exit code WIP\n", "proba": 0.000140640142490156} {"commit": "61170a0966c813e9843a4b6d778bfb10cebcede1", "message": "[client] removed some debug output\n", "proba": 7.174622282946075e-07} {"commit": "01ac35a015843dfc44ebca3a44081bf5fc95f618", "message": "just do connections/parsing.. no grpah", "proba": 0.9996002316474915} {"commit": "32f9ed6e74a47dcb7f2a67166c080fffce2c2f76", "message": "Remove color code that does not work on Windows.\n", "proba": 1.307474093437122e-07} {"commit": "45e67b2695852c94d5da3f9b82f2b567cbbd2cc3", "message": "test: invalid -i2psam will raise an init error\n", "proba": 8.97618338058237e-06} {"commit": "c906188b7826e8018b5ef31b32007cab3f874685", "message": "incorporate some review comments to simplify ease-of-use.\n", "proba": 1.0819965012842658e-07} {"commit": "2f71f45d4b261841d7d31307138da92895952268", "message": "Moving default config values to constants. And adding config file to\nerror message\n", "proba": 2.2935373067412002e-07} {"commit": "8ad262d660ebb56dc377cd97b18ff1255606e0d4", "message": "update sparse data analysis script\n", "proba": 4.338725432262436e-07} {"commit": "25e2e91702ceea79a7e65d8a51fad78c047569d3", "message": "refactor\n", "proba": 0.9999991655349731} {"commit": "7a01258948c45a0830fce5dcf2fadd3e0bfa0db8", "message": "adding in ocd namer bits\n", "proba": 3.685190108626557e-07} {"commit": "7d3e22e0c595dca82097c2eb159b3eb6839ff9fb", "message": "Added doc-strings.\n", "proba": 1.2676800054123305e-07} {"commit": "84aa78f80d351b6b187945440ad9b156eab9f949", "message": "Homepage articles the simple (not nice) way\n", "proba": 1.4261911474022781e-07} {"commit": "6dd457fb9e97ef8c02ba0d86656b488e395bf303", "message": "When updating files for download and commit: if project path not found, don't download/commit entire project instead, but do nothing instead and display error message.\n", "proba": 1.0790184745701481e-07} {"commit": "d090ff154fab6dc198b4584af4e221e4c32f751c", "message": "Do not break if Resource doesn't exist\n", "proba": 5.761750685451261e-07} {"commit": "84d132aecd59d187e2b8bfd30400902aeab96b3d", "message": "If reviewed translation doesn't exist, take latest unreviewed translation\n", "proba": 2.2975281410708703e-07} {"commit": "1b6146837a517bdbf8a9ecceae8ea565873d6210", "message": "Implement back-end for non-admin provider org limitations.\n\nSee https://www.pivotaltracker.com/n/projects/1225464/stories/133286317\nNow raising a ValueError if this condition is invalidated.\n\n(Front end should probably be updated to prevent the call).\n", "proba": 1.0790287774398166e-07} {"commit": "dcabe6397821a387fe292e912ea0b574b3369337", "message": "bumb version number\n", "proba": 3.7582788081635954e-06} {"commit": "bd98a1b1119b34a5435855478d733ca582ebcf0c", "message": "Update version to dev\n", "proba": 2.0222375951561844e-07} {"commit": "55f3bd933644a7c9d5950864c491661d35a004d6", "message": "of_01: Fix typo/exception in PortCollection\n", "proba": 1.1597034017540864e-06} {"commit": "9814f3565690f11d0d40c5470c1afdbe05037499", "message": "Use `type(self)` as a constructor\n", "proba": 5.759406485594809e-05} {"commit": "524b21dd55330940022d572e4daac856289805b3", "message": "mod esn\n", "proba": 6.008770583321166e-07} {"commit": "8ccb2f7d44091ffed6cf67a2815ee24d8bcf97aa", "message": "Reply only seq2seq dataset.\n", "proba": 1.7164587973184098e-07} {"commit": "4498f3e471810b39395829128fdabca70e389f20", "message": "added shebang and drill additions\n", "proba": 1.4138689152787265e-07} {"commit": "52dbc11a68c629beb3636f8b893c2dce8d60c56c", "message": "Whitespace\n", "proba": 8.480420547130052e-06} {"commit": "c917e007f41d643e85a8a49053e009906abfa42a", "message": "Updating ex4.py per Exercise 4 Study Drills.\n", "proba": 1.1228858909362316e-07} {"commit": "0a56e05500911e487a27ec034b7f7f75cba708ab", "message": "Overrides stringify methods to address #43\n", "proba": 9.226813745044637e-06} {"commit": "dba321c03d03b8a527ed8eb2b36755c926fd2e94", "message": "Fixed a typo.\n\nSigned-off-by: Maciej Kurc <572803cc6e8d7bb35033942e4b03254951a2e0d6@antmicro.com>\n", "proba": 1.9990838495687058e-07} {"commit": "49cf5af6c62bb23c8fce660f4b649bb0775ecdbc", "message": "494. Target Sum\n", "proba": 0.9999994039535522} {"commit": "3add83f3fd64a872eb841c08fa1ce09dd7da7582", "message": "Print package info if verbose logging enabled\n\nReviewed By: lebentle\n\nfbshipit-source-id: b48f81994670774b61249ec4ddcb15285c3bcd2b\n", "proba": 9.556271152177942e-07} {"commit": "4154743a17fee9a9db3879f0712059c3b9244c8a", "message": "Fixed #349, where upper level statistic state was being improperly propogated when switching specimens in Demag GUI which was due to a improperly placed line and a improper type check in update_mean_fit_box\n", "proba": 1.266343616634913e-07} {"commit": "389ea8558df7047d58988f5b7e04e1e006413749", "message": "Fix gcl.py to handle new command line argument format of upload.py. gcl.py\nconverts -m and --message to -t.\n\nBUG=None\nTEST=When uploading a patch to rietveld, make sure no new message is added to\nthe CL.\n\nReview URL: https://chromiumcodereview.appspot.com/10384131\n\ngit-svn-id: bd64dd6fa6f3f0ed0c0666d1018379882b742947@136861 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 2.278097963426262e-05} {"commit": "38b530578931ed79e6a839f792b223081828081d", "message": "made demag GUI more robust by having it guess measurement type in the absence of method codes or measurement numbers and improved interpretation read in so it is more general and works with some of the stranger datasets\n", "proba": 1.1188581083843019e-07} {"commit": "4ea66bcaab14841966b49de95911faa712f71beb", "message": "Struct of tcache chunks has changed after glibc2.30\n", "proba": 2.3157046769028966e-07} {"commit": "669baa1edba7111bca115cbc9226a8512c9db321", "message": "[issue #549] general improvement\n* new gdb subcommands (edit/list/show) for pcustom\n* fixed the issue reported by @xmikasax for the recursive dereference of known structures\n", "proba": 1.2746384925321763e-07} {"commit": "d3eaed23c2b45e0d0f34f55bf63163418f02c164", "message": "Issue #457: initial deletion on all Python2 code, tests pass, no optimization yet\n", "proba": 1.207459661145549e-07} {"commit": "33fe4361f8f8f524002b4079d8317a26b32af3a1", "message": "print warning messages when using `target remote` with gef (#899)\n\n", "proba": 1.7538336294364854e-07} {"commit": "5573e8c72676018bbeef13f0c01ad11e661493f1", "message": "issues #124 and #114: created a minimalist stub when using gdb over qemu-user\n", "proba": 2.0277994394746202e-07} {"commit": "1d5cffd459bc25e0b02657d0300cb51609b8df6c", "message": "[highlight ls] fixed formating\n", "proba": 4.0571049453319574e-07} {"commit": "ea8ade27709e1cd0b9c8aeca710c7970692a2925", "message": "alonge le temps de recherche dans follow\n", "proba": 1.657180348502152e-07} {"commit": "591cb7fb9381c02463185bd90f8511d63d42c934", "message": "ChangePermissionCommand: fixed mips stub\n", "proba": 2.268294565510587e-06} {"commit": "d2f335d39076c3c5c924895cfd0a1a3072fb7631", "message": "Revert \"Revert \"add owasp zsc api\"\"\n\nThis reverts commit 3882f8ecab80255b483eea71ce3b9df84d715dab.\n", "proba": 1.4535298475948366e-07} {"commit": "bb7a0e66bbae06e25e04bcab9a853e9e165a7624", "message": "ChangePermissionCommand: fixed typo in var name\n", "proba": 2.6627949409885332e-05} {"commit": "67df573699860ebf0730e4fe8fcefd3f2619acf1", "message": "`libc_args_definitions` --> `gef.session.libc_args_definitions`\n", "proba": 1.3297328393946373e-07} {"commit": "850d66d263ea6730727487cb218509fbf45d3fc7", "message": "Make colorify do the string conversion\n", "proba": 0.9994611144065857} {"commit": "87a5cbd1b6455a279541516d940a5374ca69a6c3", "message": "updated readme\n", "proba": 2.1365093516578781e-07} {"commit": "f3f833b3a2337c6e035d11332eda0519b125b484", "message": "Finish v0.1\n", "proba": 3.847451353067299e-06} {"commit": "4087337bf02fa77d24f3f4337730fd32cb959924", "message": "Correction label code OVSF vide\n", "proba": 7.592800102429464e-05} {"commit": "8571ffe08857ab69e1258fc5b89e2d9cef7f4c88", "message": "modify gui display explanation only rather than command + explanation\n", "proba": 2.50602852247539e-07} {"commit": "c13bc675352bdd3dec0b878d01b64aededeb11b8", "message": "more debugging\n", "proba": 1.4271489590100828e-07} {"commit": "91a6c4baccfde38dbfd7fc643c56bee0cf7f7eff", "message": "Removed ball from axis display\n", "proba": 2.9946357926746714e-07} {"commit": "f644c9e57ff41f4d5f68be62aa95d6ee38ce49a4", "message": "cycles through images\n", "proba": 2.5835868200374534e-07} {"commit": "26b00612305c53b4b63104bc8f34cd95b9517ad4", "message": "Minor tweaks, and made the value checker pick up format string issues as well\n", "proba": 1.1216657469503843e-07} {"commit": "c5463de101f55313e4ca0251889258df7eb92b29", "message": "Simplified dot product\n", "proba": 9.860543286777101e-06} {"commit": "1fec2a539ae79fe4f133c5c8c2f81e0ecd429386", "message": "fixed HMF_test function\n", "proba": 3.1382197107632237e-07} {"commit": "546f816e2cd31409da4fe48dc56d324df302646c", "message": "Added the forward probability computation method with scaling\n", "proba": 5.59499255814444e-07} {"commit": "cc6f14902dfeffde5c761cf9494a39f144dc5f0d", "message": "legend pos\n", "proba": 3.544043693182175e-06} {"commit": "4d8a1faa39a5c4d9c84f52372076ecac3ae2b083", "message": "fixed some of the formatting\n", "proba": 6.329447205644101e-05} {"commit": "f35cca5ff94f470869f891ca4a7580fb20afd28e", "message": "add console logs\n", "proba": 1.4283623386290856e-06} {"commit": "6da626bf1a999101af188d3d20710a6dddc8dbae", "message": "shell=True\n", "proba": 0.9999892711639404} {"commit": "7c7d23b9d12aa17dbab1f350fe7d8e881ac1cb06", "message": "maybe make input work?\n", "proba": 1.2144109859946184e-06} {"commit": "c3aba2619bbf6ff289c877195d113badc359daa8", "message": "[core] Fixed issue #106\n\nThis seems to was caused by an error I made when writing commit af8da0498a327153d6416dda97dc215c32ae39ca\n", "proba": 1.6837202565511689e-07} {"commit": "ddd69a27edfc33b5ace61369b7b35dcff79fd611", "message": "avoid file:// URI\n", "proba": 1.2667763940044097e-06} {"commit": "f431f1aef7997ca030690876cf0e5ce0bf70f839", "message": "Print boss\n", "proba": 2.3785287339705974e-05} {"commit": "b44575c49627a66eef7e8168f523e3ba0f7c093a", "message": "initial interface classes\n", "proba": 7.218395126074029e-07} {"commit": "2dace268fb7480ec3a1634743df7ad51416767cb", "message": "Fix --aria2 bug\n", "proba": 3.811948090515216e-07} {"commit": "cb77004c2b0bef852dea01bc7c9ab4396e2a4912", "message": "correction on HS algorithm", "proba": 8.762523862060334e-07} {"commit": "771bfa1ea1ccb1b12c0c49f4c1583edf8d34fefa", "message": "Delete lab.py\n", "proba": 0.000739278388209641} {"commit": "5d094826dce428a1349fcc16c9deb7c1328504e8", "message": "Explicit class for sorting in greedy\n", "proba": 3.3318869441245624e-07} {"commit": "ea423c35565a9a748642c0860595172d153b5211", "message": "Refactor database connection functios\n", "proba": 7.08133768512198e-07} {"commit": "d0767c6b043bc737893d8899973dace662024816", "message": "Delay import of webbrowser module to prevent performance issues on launch on Windows (fixes #26)\n", "proba": 1.030237228860642e-07} {"commit": "d4837ed3f6ce80a5f18812d12f98f5c9f6dc7ff9", "message": "Add more explicit logging of events, save book state history.\n", "proba": 1.156170341687357e-07} {"commit": "7f0b9bc6b359ebab7849b1416ead50663b2051ec", "message": "New clear function. Changed filename.\n", "proba": 1.3352874361771683e-07} {"commit": "ae7ffdaf67e156922b3af3fd21f82c41a7aca764", "message": "fix data\n", "proba": 0.00017596122052054852} {"commit": "17313bcaeed12f21e119afd26b3b881d65fdcc3f", "message": "Log receives a list of arguments for its methods\n", "proba": 4.3321759335412935e-07} {"commit": "7e5b88c75e7ec4936dbd09e16bfdb64fb536df1a", "message": "Added dumpSigns command to save sign locations and text to a text file.\n", "proba": 1.0551273277314976e-07} {"commit": "8c503d7ab5e2e648633501163a7106f0206393a6", "message": "Exit with an error code on failure\n", "proba": 8.318000936924363e-07} {"commit": "ec7e2737c92211ce9ac8c89d9230ce798a7026bd", "message": "little manager fix\n", "proba": 2.4791341957097757e-07} {"commit": "b024ee6886f01ddad3c9aabc4b11696a4130c403", "message": "should be using ExperimentError exception handler\n", "proba": 2.807434975693468e-05} {"commit": "ff99addf5ac6589b4ee2c53ef1debf4e9c07b47d", "message": "Bump version 0.2 Stable\n", "proba": 5.967795573269541e-07} {"commit": "e0ffd259e41aee39665f2fa2c3f3823aca64a4d2", "message": "autostart inet fix\n", "proba": 3.6523539392874227e-07} {"commit": "e6254f6f519d1a136eb1b770b0cc4c06a85f4560", "message": "Made MaximumLikelihood class more general\n", "proba": 1.2952816064171202e-07} {"commit": "038c39b5d741cbbed750352a17ea5b31a6091b7e", "message": "Fix for Issue 19 by greatred\n\n\n", "proba": 1.1013773359991319e-07} {"commit": "7476e3390ab2d2104fdc2ef702f780a77c5e18b0", "message": "Includes functions to create initial MPS states\n", "proba": 1.2345692823600984e-07} {"commit": "f74f0a31916fd3ada56cf6dfdc680a8b046f4fc7", "message": "Removed a bunch of asserts and added some doc\n\nNow leaving command parameter value checking to libmpv.\n", "proba": 1.0020182372727504e-07} {"commit": "d826e54996bc504d245286b50f7ab5671f1999ae", "message": "Update solution.py", "proba": 6.518242798847496e-07} {"commit": "59037527ac675490e2c65ad3b8b5c174a42282b8", "message": "added tax, money\n", "proba": 1.5825251011847286e-06} {"commit": "34df7640059249455fa30fcac8109cdd2d68abb1", "message": "fix neo.py import\n", "proba": 2.93863831757335e-06} {"commit": "1fe7a69eb4d40684ef4100a578620593727470c5", "message": "fix one error\nadd split large ip range function\nchange output\n", "proba": 2.7067624159826664e-06} {"commit": "94329abd020a2a47fdcf6d256c6c76677c868b02", "message": "modifed format for raw material report in prod plan\n", "proba": 1.2262941595508892e-07} {"commit": "762cb23d64336fa66f40c491ad1f9be73a64af04", "message": "Removed dos line endings\n", "proba": 1.4702277439937461e-06} {"commit": "ee3001df4233ace91eba315c9f8f574f1db6aa5b", "message": "truncate add_metaclass docstring; narrative docs will be in the main documentation\n", "proba": 3.6679918480331253e-07} {"commit": "7ceaec12381e8bc7f597b1cc32d50655d30d9843", "message": "Nox: use inplace installs (#5865)\n\n", "proba": 2.3586861175317608e-07} {"commit": "6fcb27ef82c673e17012e95a079fe77757db62ea", "message": "Add python_2_unicode_comaptible from Django\n", "proba": 0.0004192632040940225} {"commit": "f4e0e6953d2f8ea4dc8f29b2f2e292502aafef61", "message": "corrected for length gauge\n", "proba": 2.5526596800773405e-06} {"commit": "8972062c08c4f3838ff20bc3922e80caa2ee2891", "message": "[Tests] Use LIBC_FATAL_STDERR_=1 in tests\n\nBy default, libc will print fatal errors to /dev/tty instead of stderr.\nAdding the LIBC_FATAL_STDERR_ to the environment variables allows\nus to catch libc errors in stderr and test for them.\n", "proba": 3.31737822989453e-07} {"commit": "7c527f486e2e129861915f73e0625ec00388e15e", "message": "Fix failing MPI tests\n", "proba": 1.2803569916286506e-05} {"commit": "2b454f99dd3bbc03221812a8a783924843f400f0", "message": "updated 040_init_test for profile postgres to work with new --adapter option of dbt init\n", "proba": 1.3013213617796282e-07} {"commit": "8e89a7502831cc64f454e61351abbd645b60d83c", "message": "Debugging.\n", "proba": 5.191868126530608e-07} {"commit": "67351bb6cf56d8ccf4e78e809ec9f2a6fc67146a", "message": "Fix sanitization test to fit new exit codes\n", "proba": 1.2905927633255487e-06} {"commit": "20c774d04ff0dd80873984307e58de48935db884", "message": "pychecker\n", "proba": 1.867656010290375e-06} {"commit": "988ed4be9152632b2844e962e225adac63d869db", "message": "Fix crash on windows\n\nadded optional second argument allowing changing of download location (it's a bit squirrely atm)", "proba": 1.0643240244689878e-07} {"commit": "f6a8077cbf48945df628506db01a13e7d4ede547", "message": "Removed unused and broken imports from humfrey.linkeddata.tests. Tests now pass.\n", "proba": 9.922104737825066e-08} {"commit": "f144cdf8adcb233a0a56e3bc0fe0ad6d9bdc1286", "message": "q should return to the watching menu\n", "proba": 8.927087264964939e-07} {"commit": "84bc5a7aa5abee9d293e4866a711979de59ae3c7", "message": "support redis type and 'client' section for redis\n", "proba": 1.776156324240219e-07} {"commit": "6e263baff614220321007854d8d20e37668e60fd", "message": "must use np, no way around it\n", "proba": 3.839395048998995e-06} {"commit": "d3c09445b8e971562c02648abd6da225e65f2396", "message": "small changes\n", "proba": 2.5906804239639314e-06} {"commit": "1e8094a187284961a380bea94bbc806aa4430a3d", "message": "fix to t2m.py\n", "proba": 0.9999955892562866} {"commit": "05652ce5cdd0a529d8b2ef4b81a1055ae7b43cab", "message": "strikethrough instead of braces\n", "proba": 1.7056789829439367e-06} {"commit": "83829314e61a01f190bbcd5e5fa0c346cf6e340e", "message": "added rudimentary date search support\n", "proba": 1.720085123224635e-07} {"commit": "7318d2612510b8f68d51dde1ba581f507ffc2c00", "message": "Improve MOT parsing in efa for trains\n", "proba": 4.648304923193791e-07} {"commit": "524779bf5621c79c25b599baf879056da607218d", "message": "#3: Added styles & whatnot.\n", "proba": 1.031491621006353e-07} {"commit": "a00acfdc5ce1a85cf74dd752a1bf19fec3bba684", "message": "Degrade gracefully by returning the data we have even if refreshing it using the stored procedure failed for some reason.\n", "proba": 1.1709161640283128e-07} {"commit": "4557568d940aff86d269f7418b3519b5cd9ae322", "message": "Fix f\u00f6r Importfel: Deadline exceeded while waiting for HTTP response #58\n", "proba": 1.2898946977202286e-07} {"commit": "4a5a20835e75a0096287064487ab4885e7c03d9f", "message": "amount_to_text: fix overlapping name, cmdline test\n", "proba": 0.0006026527262292802} {"commit": "96f93e39ad12d893d8672dd2bb2abea4e6020799", "message": "update the file name in the send file to uri\n", "proba": 5.866382366548351e-07} {"commit": "f2a5e5f213d4ee47d8c04d269504670b6f8df220", "message": "adding support for PMO\n", "proba": 2.7840502525577904e-07} {"commit": "aa8def4980c3a1aa927b6f66406f99439af7b81f", "message": "Bug Fixes\n", "proba": 6.039679760760919e-07} {"commit": "a48bca6126ad293a5fb6dfeb6c4255c80514d79b", "message": "Added IDs to every node instance. Added filename to every node instance. Ignored target attribute in __deepcopy__ as it lead to recursion errors.\n", "proba": 1.1202375560515065e-07} {"commit": "06222b38be6dcae863fd4dc4b6e0e79c2c0f3b21", "message": "added seqrun attribute table\n", "proba": 3.658350067325955e-07} {"commit": "02ac90378fac7ec441db2498aa39ebfa522b08b7", "message": "don't get color profile if drawn region width or height is zero\n", "proba": 7.496757348235406e-07} {"commit": "d48b48c9b03d5f54a9df1e20fac6b9a52d183419", "message": "Report empty candidates\n", "proba": 1.727288349684386e-06} {"commit": "96181a60c8fee9b120982131d34526df2197cde0", "message": "Delete oov.py", "proba": 1.9172512111254036e-05} {"commit": "af24c72d9340e16d43a06b78ec9bd9067131ab55", "message": "Fix satellites example path.\n", "proba": 3.0953850682635675e-07} {"commit": "3eccbfebad8123a872139c4128f955f283740ded", "message": "Display help message when no cli options are specified.\n", "proba": 1.183702167395495e-07} {"commit": "6ae49552679cbb636ffd3036bb54f25f7ae87204", "message": "pytz is not needed for freshdesk import script\n", "proba": 1.7124970952409058e-07} {"commit": "fefaab2f0e634da47944269de3b81995923812ee", "message": "utils.lang.import: Don't remove \"__sx_moduleclass__\" attribute\n", "proba": 3.577915322239278e-06} {"commit": "0d4c041d239e7d7ed234f359ae483523b05e367b", "message": "Trival: correct the 'View Credentials' icon\n\nTrival: correct the 'View Credentials' icon\nplus -> eye\n\nChange-Id: If8c97903209e75f3b917fad47c43dd66cd7d97ce\n", "proba": 2.8812919481424615e-06} {"commit": "9ba42ccda2b84e9056f72a95c05d594d696b3a9f", "message": "fixed check if there are only private subnets\n", "proba": 4.936876507599663e-07} {"commit": "b917e688379f8b7c74bfab40ac23e99dab925828", "message": "Removed unnecessary interpolation since it's a known string\n", "proba": 2.1052553620393155e-06} {"commit": "ac9afbbfd24e4fe5222bf14c3fb76f05467b9134", "message": "Un-XFail TestThreadStates.test_process_interrupt\n\nThis test is passing now on linux. The same test is claimed to be flaky\non darwin, so it's possible that's true on linux too. If that's the case\nwe'll have to skip it here too (or fix it).\n\nI mark the test as not-debug-info-dependent as a drive-by.\n\ngit-svn-id: 4c4cc70b1ef44ba2b7963015e681894188cea27e@349482 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 0.0001452671131119132} {"commit": "c2d70ab648d9b3130be3405ce80ca5a1d1e1c23b", "message": "Added action append.\n\n\nFormer-commit-id: 7c2813f9ce4acc94cdfed07ad52fe0fea941ea0c\nFormer-commit-id: 2dbf6c18aeb6f6703aeecdf2275225e75f22a8bc", "proba": 4.096096381545067e-05} {"commit": "17cbde5950963672277c94d41962e4b9f7775a5e", "message": "Removed redundant lines in SetTextStyle()\n", "proba": 1.857183860920486e-06} {"commit": "3d8b1ad4aefeba280bd2e4c37a303bb064641ecc", "message": "fix config write\n", "proba": 6.8117387854726985e-06} {"commit": "e766b7804001b3b11c65f7dbdfd6c40a5e5e8ab3", "message": "linkgrammar.py: \"and clg\" is not needed\n\nThere is import with \"as clg\" at the start, and clg is used in the\n__init__ of the functions in which \"and clg\" is found, so it cannot\nhappen that it is false unless someone has deleted it meanwhile (and\nthere is no need to check that).\n", "proba": 2.8050990863448533e-07} {"commit": "6b66375329befc6f153fd6367e87979a8c50d315", "message": "Start 0.3.0 cycle\n", "proba": 8.352420195478771e-07} {"commit": "99917e552467d81d0161ff8fc6d7dd8c28737bd0", "message": "fixed path issues\n", "proba": 7.176647613960085e-07} {"commit": "64ecb0c4ec039e096b6fc7072ce6abcfc2ad6e31", "message": "New location for downloads, outside of the build directory.\n", "proba": 1.0343838852122644e-07} {"commit": "402e9515419f0db7f449eac9f810389a4608b878", "message": "Comment out venue for now, since we don't have one yet\n", "proba": 1.1626142537579653e-07} {"commit": "c989f7ad17e9758e35d07c073fa3daac491c7c80", "message": "Boosting free users in queue.\n", "proba": 1.2170551144663477e-07} {"commit": "a72762116e9296cd3443e4a75e87947be16337d5", "message": "installed django-schedule app and request templ. context proc.\n", "proba": 1.6491524945649871e-07} {"commit": "619f31d693916441e06f6ff5eaaebf0d2d4e20cd", "message": "move raven app from localsettings to settings\n", "proba": 6.305268129835895e-07} {"commit": "03f2b2a16176a0cc256f24a47a5d4a2c716c3232", "message": "Committing a local settings template. Rearranging the main settings file.\n", "proba": 1.2122433190597803e-07} {"commit": "e282b64198a89764263a7bb6387a0352b0babb19", "message": "disabling internationalization\n", "proba": 1.906305669763242e-06} {"commit": "3a7900e69c48a840865944f0adf8787999ea79d7", "message": "added src as whitelisted attribute\n", "proba": 5.389968009694712e-07} {"commit": "69044931594158aae86f5e97f8a0018d5711b58d", "message": "Delete settings.py", "proba": 1.2616957292266306e-06} {"commit": "39586322784382e9dfd4a961bda4253bb27bca5f", "message": "Add support for the django debug toolbar\n", "proba": 3.2241780445474433e-07} {"commit": "0a019a6d23b88a49dce081c743cfb46fe568ba6d", "message": "Remove brute force protection\n", "proba": 5.4429430747404695e-05} {"commit": "6f0ef9c701c87355a47e0b26e1eee140de91f6ff", "message": "HTTPS\n", "proba": 1.1177185115229804e-05} {"commit": "145c31a283bb458bdce72169ea16f07040236ee5", "message": "add comment about settings.py\n", "proba": 2.2143355238313234e-07} {"commit": "1d3649ffdc938986a0da0da846125859c223753d", "message": "remove obsolete APPS_TO_EXCLUDE_FROM_TESTS\n", "proba": 0.9994884729385376} {"commit": "54c0a5247fae733647ea6ab44e34061632970805", "message": "Add support for ed25519 keys\n", "proba": 1.8294919357231265e-07} {"commit": "e2f8175fd53893b4af47f40e02a3f721b1882cd1", "message": "Fix bug in calling function\n", "proba": 3.653786052382202e-06} {"commit": "ba15f34c06af6397f8a80a90e1f6bd08245680f3", "message": "added Esperanto to language choice, http://bugzilla.pculture.org/show_bug.cgi?id=14693\n", "proba": 3.847826519631781e-05} {"commit": "1613b3217028c3f3b76c14ca33d3c65fd9e96ec0", "message": "Address a test failure due to Unicode nonsense.\n", "proba": 6.939479249012948e-07} {"commit": "d683d04590a9fcd6ce98cf862ac0b407ea828c97", "message": "a bit more code style housekeeping\n", "proba": 1.7929363593793823e-07} {"commit": "235e0a6cf5b33aeccb9665c5253662199ed5fca3", "message": "Default for GIS server is now empty (otherwise default installations were using the hydroscope GIS server)\n", "proba": 1.0527552518624361e-07} {"commit": "dfd51b996a6a82a6936c2649c33026843017a791", "message": "Fix initial_system dump in test\n", "proba": 2.993396037709317e-06} {"commit": "60a00be94dc4e250e94b17f814bffff09ead4702", "message": "pop Gaia coordinates after matching as they aren't in the imaging data model\n", "proba": 1.2711072372439958e-07} {"commit": "ba23a7bffdc027e78e69570008fcfe13f4f117a8", "message": "changing name of rreport for pact", "proba": 3.118094866749743e-07} {"commit": "4a3aa9e539d1ebad025f3d5978f6b8185c37a7ae", "message": "Use built-in assertions\n", "proba": 0.9993056058883667} {"commit": "1d0c5d1a0922391cbb6bff70d6d678c975c86a4d", "message": "desitarget fix to MWS_STAR colors\n", "proba": 2.0391830446442327e-07} {"commit": "b99dcabca557ba611f8a386ac0fa8f98497dc1b4", "message": "Load settings files asynchronously\n", "proba": 1.0369286655986798e-06} {"commit": "417ab5241c852cdcd072143bc2444f20f2117623", "message": "Update capture profiler to new spec of providing board instead of string.\n", "proba": 1.0525022986485055e-07} {"commit": "b3f74622ba1ba19cb489a8953ec24ea6f6cb5af2", "message": "setup\n", "proba": 2.1792541247123154e-06} {"commit": "9c49fab9548e14fe95831d3a84d6bdc33df84ca0", "message": "File resource new methods (copyto, moveto)\n", "proba": 1.53717621742544e-07} {"commit": "5829afb4345d09a04fca61e51624f580a95c408d", "message": "remove None.appspot.com from settings.PLAYGROUND_HOSTS\n", "proba": 5.052793312643189e-06} {"commit": "193c2ad51852e35a56437faa5d315d9338e44724", "message": "Proposal review form does not show scoring option if it is disabled.\n", "proba": 1.0604941991232408e-07} {"commit": "20c5c9735aeb68185e3080d7bbc5a1061a7d26a8", "message": "Integration tests: wait_for_event - query by execution id (#1905)\n\n", "proba": 1.2513920921719546e-07} {"commit": "08edcd99f379962cbd761c743a727e86095b7a48", "message": "Convert to list in case it is not\n", "proba": 0.9999995231628418} {"commit": "13d212850ae05bde802e5cf5516154f1c34a1252", "message": "Comment out cntk tests due to lib issues\n", "proba": 1.215209977090126e-07} {"commit": "a12d61e9a9b85c436d5b21b39862497b7e3ed903", "message": "update tpp.py for gen3", "proba": 1.6407689429343009e-07} {"commit": "44610f12bd3fbd39f49035d959833ff9c8f49170", "message": "Make is_successful a property, gm/use now return boolean responses\n", "proba": 0.0005287076928652823} {"commit": "1615dc8261366a8fb895a76b041d6fb9c21e0200", "message": "Optional required on select rate is not working\n", "proba": 1.5059988811572111e-07} {"commit": "c81eb510c72511c1f692f02f7bb63ef4caa51d27", "message": "Add management functions for migration\n", "proba": 4.943250928590714e-07} {"commit": "6a39a514ae82f412c107dd87944cdb17b6a9d036", "message": "remove isinstance assert in test_remove_site_packages_64bit\n", "proba": 6.556073913088767e-06} {"commit": "ba4b14799df7c670a76047e4baadbf2101fd8e19", "message": "Use create default package for package creation\n", "proba": 5.10366476191848e-07} {"commit": "df998e9ff346cc71de4024233ee5b0729028ca87", "message": "fix handling of selah...\n", "proba": 1.2286565720387443e-07} {"commit": "ae17638a68e914e026e70fb86a493ed7f650929b", "message": "TESTING: code for making psf images with a larger pad_factor\n(#51)\n", "proba": 1.0644986758734376e-07} {"commit": "33be0f1f7612bb55e9880354ffe5faea2087ff55", "message": "Added PUT method for products in shopping cart\n", "proba": 1.1384713616280351e-07} {"commit": "e2d6e028dab4416f76c48dc0ec1826acb9c34241", "message": "Revert \"temp: don't enqueue green pages automatically\"\n\nThis reverts commit 36e71c685ebc8056f828bc306b543bc388bfd8c1.\n", "proba": 1.31018765614499e-07} {"commit": "cdb63d8925b22972c4a956cf719bb10393d468e0", "message": "Make sure is_blacksquare is always called with a character\n", "proba": 9.460831051910645e-07} {"commit": "2cdbc30f0fbec9d5e4029f1580f6cc76d66a3b3f", "message": "collecting data to plot\nand fix a lot of bugs like keep track of numbers of children spand\n", "proba": 2.0597444461145642e-07} {"commit": "c0cacff0c567d1e944c9a8bda4c283469de62239", "message": "fixed reading of pickles\nMerge branch 'master' of github.com:marcoviero/simstack\n", "proba": 2.1935129268513265e-07} {"commit": "7d47ab3aed3fb1c591966fe1a84e7c5f8d4ce909", "message": "Print usage if only an optional option sent\n\nDoesn't call args.func if doesn't exist\n", "proba": 5.252399205346592e-06} {"commit": "cfdd8c11fceb854c4d4ce4dc1da01ea6a7313162", "message": "let's say ALL results", "proba": 2.9866274417145178e-05} {"commit": "9eb8203c9b7e8f0041f6d5d5d876206e802c48fe", "message": "reduce the !stats, !votes rate limit to 15 seconds\n", "proba": 0.000736792862880975} {"commit": "7547b7a76b4a90e87183418097d59c220e089d9f", "message": "Added --IDR\n\nAllows exporting QPFile with I frames instead of K\r\n\r\nAdded changes from amjadnury(?)", "proba": 1.0352444235195435e-07} {"commit": "c7bc9ff47db3e0a8d89e8e3fed2813b2e670284b", "message": "Now supports arguments (easier for testing)\n\n--HG--\nbranch : fc_object_hierarchy\n", "proba": 2.5022600880220125e-07} {"commit": "e42af2ac5809e45e0d7b81666ca3d0500360baf9", "message": "New statement to try to get around N.any statement.\n", "proba": 2.6462222990630835e-07} {"commit": "9de93d0764c2509b21bea5a35bd788b249d19edb", "message": "better debugging of output\n", "proba": 9.079461960936897e-06} {"commit": "bb9ce6e2566471b9fb8c6e04102cc8379b14d379", "message": "rom: fixed morph ball eye for nothing items\n", "proba": 1.5083533355664258e-07} {"commit": "0d3eb68955fe29cbb37c29271f4650f7a3354b21", "message": "Fix indentation\n", "proba": 0.0172440055757761} {"commit": "6fc065dc2f88c0c59037f5a6efa89738d963977e", "message": "Support XML-RPC marshalling of mx.DateTime.\n", "proba": 1.1759733098415381e-07} {"commit": "c372845e527c518e77d92042bdb97f5e2699c0cc", "message": "Add ability to choose suit to draw from, and link to a page on meaning\n", "proba": 1.3115402452967828e-07} {"commit": "d72171899b75eaf4675e5fd3d8586aa300b04583", "message": "ID.BUG: Fix APU object construction with id_name\n", "proba": 1.087063083105022e-06} {"commit": "396c97872abaf3c67ea599036711fd4551619006", "message": "your late call\n", "proba": 6.53703068564937e-07} {"commit": "fc427b3625e149382201753bac5e1670d938777d", "message": "novo run fazendo compara\u00e7\u00e3o entre algoritmos\n", "proba": 3.6272712122809025e-07} {"commit": "54e411815b1266528d7c0d5f4507f6088a2b2256", "message": "Fixed MiniK returning incorrect accuracies\nAdded accuracy and f1 validation to run.py as well\n", "proba": 1.1023988122360606e-07} {"commit": "61c5a9185ad5043c6459c8a2271e6969952be1f2", "message": "use handles and pagination\n", "proba": 3.924312466097035e-07} {"commit": "2a42e83bd9a8943b781a771fe4cfd77d88f673cd", "message": "Clear the terminal on each heading, making the demo's look more readable\n", "proba": 4.1428373265262053e-07} {"commit": "79ef0fe21b136b80889a8e6e06339074ac73a1f1", "message": "Comment out section\n", "proba": 1.6193230578664952e-07} {"commit": "1e1a713f50ac2cd6e64b596a10671388d5b349ae", "message": "How did that get there?\n", "proba": 1.2613969374797307e-05} {"commit": "c26582e8e4b6587fce0a363cd9dc694eef95a129", "message": "added code to open web browser from run.py\n", "proba": 4.213104318750993e-07} {"commit": "7fc0eebbaa8d449d542452ad6938a137cc45b119", "message": "Better path\n", "proba": 1.0895737432292663e-06} {"commit": "3f5f20546682aece086836ec7a40a9e049fa9cd7", "message": "disable webui debug by default\n", "proba": 3.2313042197529285e-07} {"commit": "2f4602cb3dd165591414e93e37a8052e3224929c", "message": "Fixed a crash that would happen if we tie an existing brush to an existing entity.\n", "proba": 1.1851332715195895e-07} {"commit": "49ec30d40c76760d3085898c8eeffe1e1e008d84", "message": "cleaned up code and added more packages\n", "proba": 1.1492118545675112e-07} {"commit": "7160f7bc8b2f6d99564680cf7511a8c60317cf44", "message": "Corrected chain delete link\n", "proba": 7.842900799914787e-07} {"commit": "76efef6e8673b596b2bf29883490fc33fef108a0", "message": "Re-enable tiamat-pip on windows\n\nSigned-off-by: Pedro Algarvio <09cbe6caca393bd5bff64d4c1f1ad660b906a807@vmware.com>\n", "proba": 1.1376616981806364e-07} {"commit": "d94957b79f9413cb5925c81a7861a3e1a04891e1", "message": "Fixed unit test.\n", "proba": 1.6228757715452957e-07} {"commit": "5cf921e61f22bb131146ac64f9867a06046eddfd", "message": "Add -s (stub out) option to sel_ldr when running X86-64 glibc static.\nThis is currently necessary, since X86-64 glibc static code doesn't\ncompletely validate yet.\nReview URL: http://codereview.chromium.org/6992038\n\ngit-svn-id: 721b910a23eff8a86f00c8fd261a7587cddf18f8@5422 fcba33aa-ac0c-11dd-b9e7-8d5594d729c2\n", "proba": 6.5386038841097616e-06} {"commit": "3195854a07800e69d7115832130a1bf587340e7b", "message": "scans to average + better learning rate for adam\n", "proba": 1.3721563618673827e-07} {"commit": "ac7909114e029d81fa80ac1681ab9db5dfef6178", "message": "\u53bb\u6389mask\u8bd5\u8bd5\u770b\n", "proba": 9.734108061820734e-07} {"commit": "b9b8d9910e54637cd6a160fd2405f19106f73ed1", "message": "Dans le run.py on regarde si on passe l'argument --force au programme. Si oui on ne check pas si root\n", "proba": 3.757103570478648e-07} {"commit": "26c70131a2bf05232c68db77b5b9fa0728db66d0", "message": "add lower to only and except options so they are not case sensitive\n", "proba": 6.377322279149666e-05} {"commit": "35028b84d4757e1343a97da653670db049ac5e8d", "message": "web: replace default handler with static handler\n\nThere is no need to reinvent the wheel. Just use Tornado's\nbuilt-in static handler.\n\nSigned-off-by: Ilija Hadzic <47a09d4a4430975766160361f65fc72633be50b6@gmail.com>\n", "proba": 2.841737227754493e-07} {"commit": "d3f03d6e2cf48929f8233e52720b07242ccd64da", "message": "Put tweets back\n", "proba": 3.9115639083320275e-07} {"commit": "a9560f9551f405873ab5e109cf032e1a42e259cb", "message": "Fix conflict in web.py\n", "proba": 0.004096957389265299} {"commit": "df202466eae8f8cd587c294742ec18db0c390b97", "message": "Wire up Joey's backend\n", "proba": 2.4615972051833523e-06} {"commit": "686c01757c80dbca3181b74fa49c9c22fb5040e5", "message": "fix cache\n", "proba": 4.298079602449434e-06} {"commit": "b5f0542f44eb8f56df0f226cc510c56f59077ba2", "message": "redirect to slack\n", "proba": 3.016333209870936e-07} {"commit": "cd4f2825e773e2252aca2b4dde113145d433c70b", "message": "Ensure methods are properly decorated.\n", "proba": 1.3303835544320464e-07} {"commit": "8b8507607e4dd37886d8ab7a916f9fb62bccd74e", "message": "next/prev buttons, show channel type\n\nalso turn off axes sharing (messes with xlim/ylim)\n", "proba": 1.0346442991249205e-07} {"commit": "df8543cc2f628ef52a374e6127f59c1e4aba522c", "message": "More flexibility in input\n\n", "proba": 2.765141573490837e-07} {"commit": "94972204662c04eca2f09d2fd478a353074e7c4a", "message": "Moved backup_playlists() call to main()\n\nInstead of calling backup_playslists() from within setup_request(), it\nis now called from main(). setup_request() returns the request, and\nbackup_playlists() accepts the request as an argument. This further\ndistinguishes the roles of both functions and results in a clearer\nfunction call order.\n\nIn order to achieve this, it was necessary to make the youtube API\nresource object global so that it can be accessed from both functions.\n", "proba": 2.3503464774421445e-07} {"commit": "b1503028d2e4444a16207a7e31f19f4db69977c0", "message": "Implement more of Z80.\n", "proba": 2.0990916027585627e-07} {"commit": "1f067539e3a823e823a08ab62a2b6f45885b587a", "message": "automatically applied PEP8 to code in s2p.py\n", "proba": 4.3519739278963243e-07} {"commit": "6e63a5a4f10c0f75cb4445eca054d1c4916f23ba", "message": "print full information about exception when a tile fails\n", "proba": 1.9776630324486177e-06} {"commit": "22392153139515cc4daa7d7068b425dda6d549c1", "message": "Fixed wrong argument placement.\n\nTEST=none\nBUG=none\nTBR=bradnelson\n\nReview URL: http://codereview.chromium.org/519073\n\ngit-svn-id: bd64dd6fa6f3f0ed0c0666d1018379882b742947@35688 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 1.0546516932663508e-05} {"commit": "a22fe5e0baa47492edbce1f02da599dbb3be1ca7", "message": "some inline documentation\n", "proba": 2.7552070491765335e-07} {"commit": "c75a2bbd3d6418d0ad739dc8225a965d0af58111", "message": "adjust to fit the terminal width\n", "proba": 1.2968777127753128e-06} {"commit": "6c724efdfae5a9ac0fd004fb00098b54328410d1", "message": "Update incident_generator_class.py\n\nadded ability to output range of dates into by month json files", "proba": 3.4053556419166853e-07} {"commit": "f4cbc9005b04b70dd3b92b59e875fed78174d79b", "message": "Update incident_generator_class.py\n\nfixed json output", "proba": 1.5997568425518693e-06} {"commit": "27b3adedeb831424b5528391285c97e77d77230c", "message": "Updated WSGI gateway to reflect current api\n\ngit-svn-id: 671718e8d881bd9b68ade944b18d3bfa884ea866@298 2dde4cc4-cf3c-0410-b1a3-a9b8ff274da5\n", "proba": 4.917057481179654e-07} {"commit": "314fa59aff405f67bfb2354e6c2ebf0a31c9eaf3", "message": "Changed importing default values to use import_module.\n", "proba": 1.1562188717562094e-07} {"commit": "61b71d5f9bce44bb2c8ec48eb5eafb317dd6701d", "message": "drone.navdata is missing\n", "proba": 2.209626018156996e-06} {"commit": "b1ffe062f7a6dedad7c3bd3ff9569f190591f2eb", "message": "Lowercase single keys longer than 1 character", "proba": 3.5990426113130525e-05} {"commit": "efcd80a09e84538fcb7b1856a471c8af7493f5af", "message": "Adding countdown() and sleep() functions.\n", "proba": 5.681366701537627e-07} {"commit": "9b1e9d53bba6c90836053911b5687b4488850b7e", "message": "Removed print\n", "proba": 1.558147801006271e-06} {"commit": "ad4f63cdaa9ecbafecc001b69848a586116bd679", "message": "First commit.\n\nThis is the first running version of the dashboard.\n", "proba": 1.1820078071878015e-07} {"commit": "c772951ffbe06be23ff56d0281b78d7b9eac456b", "message": "Add option to generate executable name from the current branch\n", "proba": 8.894760412658798e-07} {"commit": "96a61255bb813544c496a5ee2c3bc645cd97567c", "message": "Make note of inefficiency\n", "proba": 5.1492865168256685e-05} {"commit": "5d4f8c428f07a3cd5dd926f0afd70528c78d0a82", "message": "More rename and don't allow participants on incomplete activities\n", "proba": 1.1786949727365936e-07} {"commit": "69e4c74e5aac24cd9431e4cea5c943d7dcf1c30f", "message": "to-sexp for if\n", "proba": 1.2104773077226127e-06} {"commit": "c5a3c6a0987d91295bae2eba46c2ad9bd713462c", "message": "TST: minor fix\n", "proba": 2.783744548651157e-06} {"commit": "deff13156b41b0590e570012b2452e0dfc8f1fa1", "message": "Correction d'options de print\n", "proba": 3.8629816117463633e-05} {"commit": "cd310aa4300575208615cd2f897b8ee9ae2d8f74", "message": "Get user by login with one()\n", "proba": 1.8544922397722985e-07} {"commit": "bbdece5723009461f1de49e0d04b9f935ec7bdcc", "message": "Removed trimming dataset to intersection of timeseries and modified to_bmorph and map_var_to_segs accordingly through an xarray merge and additional parameter for the latter function\n", "proba": 1.862531888718877e-07} {"commit": "8ab9e930caa905c390217f9d23d00506817aa2d5", "message": "Agrego avisos cuando no se encuentra un dataset por ID y titulo, y me aseguro que la rutina continue.\n", "proba": 1.639667885910967e-07} {"commit": "32d6f8d9f3863349b06e7649b30db690551b5419", "message": "Add picture size\n", "proba": 8.368773478650837e-07} {"commit": "f3de99975349f00ad0201c72b51a2d4ec060e105", "message": "bokeh/tests/test_properties.py: Add some `numpy` based tests for `Int`.\n", "proba": 1.2233645918513503e-07} {"commit": "48336d2f9c76a39b5f81a3a669fea7999bdace01", "message": "Fix a typo in a docstring.", "proba": 0.0005914867506362498} {"commit": "571b01200f3d699bb0278c2b4725de225e1c271b", "message": "Add prime256v1 curve.\n", "proba": 1.3627138741867384e-06} {"commit": "423af3c8fbd7e1614ec24dcd8ef842ae9dfcc5d0", "message": "version bump for ensembl85\n", "proba": 2.8420649300642253e-07} {"commit": "b62aedebd3c2c6d838335f08f703d3ba8ded4c0c", "message": "Import and use _WorkState for comparisons\n", "proba": 1.1583114201130229e-07} {"commit": "b0c8877d95c75ba9651ce12ada9602549c502768", "message": "adding missing frame column\n", "proba": 3.4332467748754425e-06} {"commit": "6f9b5b4930468319e154956382287a7fdc8b8490", "message": "Issue 116: ignore extra garbage in Mesa GLX version strings.\n", "proba": 1.0097326708091714e-07} {"commit": "de26e8f0a5a74bc8c0aa373c080c5b64967d4216", "message": "Harmless changes to avbin trying to isolate PPC/avbin/silent problem. Added\nlock over all avbin calls (may remove later), and a proper buffer copy where\nit looks like there should be one.\n", "proba": 1.0426040120137259e-07} {"commit": "c504a680c18e823d5ede2fff0d6fb97c7aae1449", "message": "Fix glitch in self-generation of unistring.py\n", "proba": 1.3350075278140139e-05} {"commit": "fd68bffb74fb91df50dc024972d5de8e83921283", "message": "Allowed extra keyword arguments to constructor.\n", "proba": 1.2301197216402215e-07} {"commit": "be4386a4f0f78ae1c5d03bc108969bcaac608c0c", "message": "removed blank space at end of file\n", "proba": 1.33984303829493e-06} {"commit": "5cc23d11bcb9930ef4cce6240c48205637bdb636", "message": "fixed wrong warning (\"keyword argument ..._lr will be ignored because no\nparameter was found with name ...\" in\nSGDOptimizer.learning_rates_setup()\n", "proba": 1.8969284099057404e-07} {"commit": "46aefcda06838f8d3b18c450f31556bec5975a35", "message": "[svn] Additional xmlrpc fixups, added doc strings.\n", "proba": 9.892965380231544e-08} {"commit": "ee2a2e586b65eb4d675ddddfbdc3a78922405a77", "message": "Speed up vasprun parsing considerably by segregating electronicstructure\nparsing from ionic step parsing.\n\n\nFormer-commit-id: 83c6d6a8d2cf4a44a64c9dd89c7e6f3891f35fe9 [formerly 78ae4feb85f0952bf16932d69cbfd5b629a15cf6]\nFormer-commit-id: 31768381af00de4f9f4c02e5761af41a2fae9085", "proba": 0.0001787726068869233} {"commit": "d420844e7c2176259c460bb3af86f7eba070b50c", "message": "Improved bandstructure importing. Increased the total number of imported bands\n", "proba": 2.4860457870090613e-06} {"commit": "b5431978c51107ba9e6475fc489fbd6dc7110332", "message": "clean up camera class\n", "proba": 3.699920512190147e-07} {"commit": "52d80ddc39b9710a7a57bd56becde23e3ec79c4d", "message": "core.general: namespace - root option should be False (for backward compatibility)\n", "proba": 2.1817370452481555e-06} {"commit": "c47bee3cd338a9f0619f232945d12e229a29a2f1", "message": "uitypes: Radio/ToolCollections don't have parents\n", "proba": 2.5071904019569047e-07} {"commit": "17fe4613518def551e637764e644c5d58b1665d9", "message": "PM-97: Add BodeAnalyser instrument to instrument table\n", "proba": 1.1009068856537851e-07} {"commit": "5a506ff7005f09b14faa4d6036563e0125ca00f4", "message": "Fix indent\n", "proba": 0.0008542837458662689} {"commit": "057650f9378c5795a18a8665f7c0d574ff16f3e9", "message": "minizinc: add output_dir option to minizinc function\n", "proba": 9.309889719588682e-06} {"commit": "e1b8cc0c20cc2a1f41002f4f1c058faf90e53e21", "message": "minizinc: bugfix, move output_vars processing out of preprocess_model\n", "proba": 2.88928617919737e-07} {"commit": "1e4a260524389d706d4b1ca4a7435c0218374227", "message": "Try login v1 before v2\n", "proba": 6.680218120891368e-06} {"commit": "0ab14e795bc93077b0a33443adc02f430aa01a97", "message": "Bug fix in node.get_valueindex\n", "proba": 7.386136076092953e-07} {"commit": "c034282423d47a6530ed0bb77c54e133de72115b", "message": "add more verbose output to PushwooshClient when debut=True\n", "proba": 0.0031641919631510973} {"commit": "c1e9ad4fe002faa2d57b2b144112a48adb03edc8", "message": "OutputHandlers now do inplace updates\n", "proba": 1.7565653820383886e-07} {"commit": "f47db60d42a28d403671f6b38791c663e2b14d0e", "message": "[gamma.util.pixel_area_wrap] renamed argument 'master' to 'image'\n", "proba": 4.5915925284134573e-07} {"commit": "3c50ceeaa3def3cf3655f1a448b17592d49339b1", "message": "[gamma.util] new function pixel_area_wrap\n", "proba": 1.3370832903092378e-06} {"commit": "184d5c661890df9c6000661bc1d056127b899fe5", "message": "[gamma.geocode] new error for specific parametrization combination\n\nnormalization_method == 2 and func_interp != 2\n", "proba": 1.5526328525083954e-06} {"commit": "b7ed71cc0b620f460a0d24eeef7891e9770fc39e", "message": "Modify & Access time in pyls.\n", "proba": 1.0599967481539352e-07} {"commit": "fad8733c9e2d3eb874e9df6d758c2937bea4ed0d", "message": "Ignore re-use of \"_\" for singly-dispatched methods\n\nWorkaround for python/mypy#2904\n", "proba": 6.850121394563757e-07} {"commit": "41b83acae0db37eb1b073450f917e6db26154a1d", "message": "Extract data from QVariant\n", "proba": 0.9999972581863403} {"commit": "3e5669eaf72028a7a05357f2b4a31850d1c3d3f8", "message": "Remove some commented-out code\n", "proba": 4.858849820266187e-07} {"commit": "535369f51e94bceca8ecf21583164b8a95236f5f", "message": "Avoid possible _format_value() recursion\n", "proba": 0.012103453278541565} {"commit": "c9319c2618660c00a919eec944dfbaad3a03e4ea", "message": "For fallback of zh-hans and zh-hant in moment-with-locales.min.js\n", "proba": 1.957710793476508e-07} {"commit": "257ecd1548c63cecdf7dd421b9bd02742934173c", "message": "Add buyer and assignee details. (#264)\n\n* Add buyer and assignee details.\r\n\r\n* Add comment.\r\n", "proba": 1.01305644761851e-07} {"commit": "95621a252b280f9639e1d9894493330c96eaebde", "message": "stdin line editing working\n\n--HG--\nbranch : scroll-frontend\n", "proba": 3.4506135193623777e-07} {"commit": "5a6691ce829aa7e61dab9582e621ebf037621a07", "message": "properely check for nulls - use 'is None' instead of '=='\n", "proba": 5.832966053276323e-06} {"commit": "933e3193bbd1ceb45d33a9b2dc37f3bb80b5bc7b", "message": "fix in broadcasting code\n", "proba": 0.00014000591181684285} {"commit": "bc6a67b15929e1767add628e74936ba5200958d9", "message": "changed wsgi\n", "proba": 1.98903467207856e-06} {"commit": "fda17a416790a04bd265946a5554cf5d0639d442", "message": "Add identifiers URL for refseq\n", "proba": 1.3575396451415145e-06} {"commit": "b2d016d1a1eb7bf36d94b57af99cd627a065c173", "message": "use getattr_static to avoid executing code", "proba": 5.367090807339991e-07} {"commit": "8aa79fbf1a87d8d8c568da0e9667343e62d56dc5", "message": "Documentation fixes in chart.py\n", "proba": 3.235078338548192e-07} {"commit": "f4e546df734591681e1be01ba0d21fcce67413b8", "message": "Make script executable\n", "proba": 1.5401064956677146e-05} {"commit": "ce5b651284a1d9b6cf0f4b0872a640c1ac464219", "message": "Handle workflows that haven't been submitted\n", "proba": 1.3859551017958438e-07} {"commit": "8c23359593a9427cb8bdf65d85f07ecba038a008", "message": "Add test of evidence bound.\n", "proba": 2.5602318487472076e-07} {"commit": "a8a750a56ad53e1dad01e3c5985b4353396f6ad5", "message": "Eliminate redundant options for cylindrical/disc flames\n", "proba": 0.9998397827148438} {"commit": "640a3f83eb0b4d0657b02f12b3fa724de2591899", "message": "Wait for ETL events table to be ACTIVE\n\nAs opposed to stumbling over table being in CREATING (or UPDATING) state\n", "proba": 8.231142487602483e-07} {"commit": "637da83c6ea14d1a53b9f9a8b0dcf45d1991a626", "message": "Fixed typo in lightList serial numbers\n", "proba": 2.466625801389455e-07} {"commit": "6416a3a8d691a5b758e739848d6bb4878424dfc4", "message": "updated fix for divide by zero as Tim suggested, to be more informative when no updates are happening\n", "proba": 3.4743752053145727e-07} {"commit": "d210022e96804e59e42ab902e53637e50884a9ab", "message": "[SPARK-2797] [SQL] SchemaRDDs don't support unpersist()\n\nThe cause is explained in https://issues.apache.org/jira/browse/SPARK-2797.\n\nAuthor: Yin Huai \n\nCloses #1745 from yhuai/SPARK-2797 and squashes the following commits:\n\n7b1627d [Yin Huai] The unpersist method of the Scala RDD cannot be called without the input parameter (blocking) from PySpark.\n", "proba": 4.862859555032628e-07} {"commit": "270dba9b030f6a34dc33bd1305e552b5d83290c5", "message": "[#408] Comment\n", "proba": 1.2379246072669048e-07} {"commit": "fc9182e63c0ef433829f1db4edcbc94aa0934e5e", "message": "Fixes autoscaling monitor when environment has set http_proxy or https_proxy (#14351)\n\n", "proba": 1.177316519829219e-07} {"commit": "25d41f2a5eed8e7082e06c9833c70eac39c4f0db", "message": "Drop underscore from '_decode' and '_encode'\n", "proba": 3.0152023100527003e-06} {"commit": "8d66fde3c6a03e8c0509661cdaee5f0f55869f3d", "message": "Ensure plugins are loaded before attempting to build type libs\n", "proba": 1.499641228974724e-07} {"commit": "5485756b2306049f8b36f047ae6f49eb1abdd8cf", "message": "Add parameter allow_address_duplication", "proba": 9.746055184223223e-06} {"commit": "f7a23e8eaaca1ff8a8529a451f745c0e190b1c9e", "message": "Nicer default title\n", "proba": 4.843998340220423e-07} {"commit": "1801e8e338fb6179509d939ad55717873c5cf1e0", "message": "fixed extra comma error in plot_empirical_probability_by_level() function.\n", "proba": 1.839393775071585e-07} {"commit": "eaadbb4d86fcfec156079928722f82fef732ddb6", "message": "Fix create_vapp\n\nAdd deploy and poweron settings to\nthe method arguments. Set default\nvalue for deploy to false.\n", "proba": 1.0934672900475562e-07} {"commit": "243ee8c0ce443bf16c51747055dcd611bbcc3de2", "message": "Compatibility with latest prompt toolkit refactorings.\n", "proba": 1.0720048493340073e-07} {"commit": "9feff3c41f8bc1f674c150d51bf1dba3c785ccff", "message": "Improves Session API\n", "proba": 8.248123322118772e-07} {"commit": "96a2cb84a730beb8fbb59725bc6908606b418312", "message": "Revert \"[bugfix] T113120 is solved for Python 3.5+\"\n\nThis reverts change I20a42ca67ab9d9692b6bcb22e33ab740a76f03cc\n\nBug: T113120\nBug: T228841\nChange-Id: I1c15b9e84d9a7b71a082bb6e59acdca1bf95c60c\n", "proba": 6.432053396565607e-06} {"commit": "f2c2f59babbef61161c708c8ba3c6935bd46210f", "message": "resolve docstring conflicts\n", "proba": 1.694701950327726e-06} {"commit": "a331329e4fdf258ecc7e77e1e9892bde453e8444", "message": "Pullonce example against xqueue-sandbox\n", "proba": 1.7811059649375238e-07} {"commit": "8d9e22c44b6d6dd71845bd35738bae1d42e8be80", "message": "Added INSTALL back to list of documentation files\n", "proba": 1.4195542519246374e-07} {"commit": "9fd3970fe650756321288309a70a989eb7ee40f4", "message": "Quote database name correctly when creating a new MySQL table.\n", "proba": 1.1892295503912464e-07} {"commit": "421f492de71a6479eb1d5b036099fb45b20a4528", "message": "Glue fixed\n", "proba": 6.657016911049141e-07} {"commit": "ddedc349b5b847af194a4dfee4b2719e590c11f0", "message": "Update program header\n", "proba": 4.620416689249396e-07} {"commit": "36eb6429e3a8221f9b5b7088aa8c6f48376e4518", "message": "Make the game work with 2 players.\n", "proba": 1.3831969454258797e-06} {"commit": "d83713132434338512752f985c8b4ce0e76d610d", "message": "Adding additional wall colors\n", "proba": 3.23628796650155e-07} {"commit": "d5245c08e96b374d67bf35c319c8076c41c2feb1", "message": "Reset auth\n", "proba": 1.0937423212453723e-05} {"commit": "f56cc7acae3c3b295febafec384bcfdf3b2dcee0", "message": "koda za python\n\n\u0161tevila spremenjena ( 1 xxxxx = 1) , da/ne spremenjen v True false", "proba": 0.9999992847442627} {"commit": "c9ed673e87efd5882267cc5e35cb5a9d731c1bc9", "message": "if abs(t) or abs(u) > 0 change return\n\nthis means that the bounding boxes over lapped but the lines did not.\n", "proba": 3.521262215144816e-07} {"commit": "1d0c85700cd5fc82059b25580e1ac677d1f990ba", "message": "handle bulk create for older djangos\n", "proba": 1.520609771432646e-07} {"commit": "c0a1405efca50bf7590c4467f1819aa866d78ab2", "message": "script runs from terminal\n", "proba": 8.211791850953887e-07} {"commit": "44199f94505f2d50ed086194c0797491c68a7533", "message": "PipelineThrottle now delegates to QueueItem.execute instead of overwriting. This is in accordance with the slight modification to QueueItem.execute's behavior, which only moves Tasks to self.completedTasks if task.hasExpired() returns True after the call to task.execute.\n", "proba": 1.2046761810324824e-07} {"commit": "461c68c8d8591b958c2b85cae4b5f83fb4e20015", "message": "create flow to check source hashes\n", "proba": 4.168757072875451e-07} {"commit": "21651e794ce3e209e67b10b6591f5d8b98b507fd", "message": "Autocompletion list: Return focus to qpart\n", "proba": 2.264898739667842e-06} {"commit": "0235a813d045357d25d7477070e93cd5fb123c97", "message": "Do not hardcode text background in the completer\n", "proba": 3.856363491649972e-06} {"commit": "ae7d5519575a5902180b5fbd6fbbc0695efaa9a2", "message": "Aboutbox now checks internet for newer version of toolbox\n", "proba": 1.239814935161121e-07} {"commit": "0d727ebe3ae63557f6f55b4ecc053e0c0b5a0e9f", "message": "Aggregate argument needed to be converted from a Var to an UnnamedAttributeRef\n", "proba": 1.1090331781815621e-06} {"commit": "9dab28c6820c3fae297cd0bfd1558d38acfae998", "message": "Move stateful function resolution to a helper function\n", "proba": 1.2486448213167023e-06} {"commit": "ac2f32bc48a1763cf8f7b57094990329da621a59", "message": "Fix long line of code in Main.py\n", "proba": 0.9990647435188293} {"commit": "c00cf3bb9e350feec19c635bd8c38ca7fa4f965e", "message": "Added adadelta and rmsprop optimizer\n\nTraining parameters now optional\n", "proba": 1.2659077697207977e-07} {"commit": "4ea6f64883220c43ef8d5646f7f903d9cc2306a5", "message": "export AST related classes\n\ngit-svn-id: cbd43b993b8847642b395a4e4b7fde2237f7a493@221 3b770cb8-f9e6-11dd-ac5b-dfceb64ead24\n", "proba": 4.333727702032775e-06} {"commit": "aa6a42d9a891fa43a4cdc37a810b67c29742fb2f", "message": "faster. better\n", "proba": 0.9999992847442627} {"commit": "4b7f826e9c09584e6d7adf4a4379d7e9c172734c", "message": "Revert \"Fix the following issues:\"\n\nThis reverts commit dd50d30a709d761e5da551a31db9a5177adf4ceb.\n", "proba": 5.464808054966852e-06} {"commit": "f503d49a2753d3a92a480a2923c6b955d7f45348", "message": "Include rendered (instead of raw) body in tourney match comments JSON\n", "proba": 2.515493804366997e-07} {"commit": "b2e652d798d4f984fa0b7f827eafba2c9c87807e", "message": "Make bulk insert of field player stats every 500 records, speedup attempt\n", "proba": 1.2062764653819613e-07} {"commit": "5e9c3410362b3d9b03d03d96a3bc8ee76529597a", "message": "Reimplemented EVERYTHING\n", "proba": 8.140027603076305e-07} {"commit": "f073a9a5e92978efefe71758f6d0613fa1509719", "message": "Add robustness for failing to get a valid IP, fix release address\n", "proba": 3.6724370033880405e-07} {"commit": "2bbda2837f4323de8df778a561f27cb0416359b0", "message": "Replace multiplication with bitshift\n", "proba": 0.9999758005142212} {"commit": "01cac99fb65a2d1b5df970242bac8b0508a51157", "message": "cluster: Install scylla-gdb before getting the traces\n\nSigned-off-by: Beno\u00eet Canet \n", "proba": 1.3790042885375442e-07} {"commit": "8566aeefdf8c8f9f1bd41165674a5b48ca2831e3", "message": "Fix Loadbalancer filter on get_images\n\nChange-Id: I35a75aebb3394df327966e42bcdaf8d256725e8c\n", "proba": 1.0490786053196643e-06} {"commit": "ebe2c56930664572a39852bca3c1eba45fb22f46", "message": "sgd_finetune allow_input_downcast=True (Fix #1)\n\nThis problem arises when Theano's floatX is float64 because\nthe lr is specifically set to fscalar.\n", "proba": 1.1860932147556014e-07} {"commit": "43786355c0b4b0358b9ab939f34aea405a96845a", "message": "BaseNode: introduce pkg_install\n\nUse this function to install packages for multiple distros.\n\nSigned-off-by: Amos Kong \n", "proba": 1.5762020666443277e-07} {"commit": "23119004d6106e4594af4fa6ee8afd05d6ef9c6c", "message": "mpi: Accept explicit (str) MPI modes\n", "proba": 5.734363526244124e-07} {"commit": "26e42fde38b687049d07c0e53876b500e3688931", "message": "Make `circrad` config parameter.\n", "proba": 1.2560863638100273e-07} {"commit": "2b1ec34c9e03c7cba9a7aa77ab3f9a500b7b43cf", "message": "PC TTL test works for command \"spiketag bmi\"\n", "proba": 1.2654767544972856e-07} {"commit": "111796cfeb401707814f28478e1b2c375accae60", "message": "Verify no stderr printouts after any tests\n", "proba": 3.1386926480081456e-07} {"commit": "39696c4430ea81db9749cd6462f74275157c6f14", "message": "Replace m2crypto with openssl rsautl for decrypting instance password data\n", "proba": 4.334926416049711e-06} {"commit": "dd526ef40d3eb13681dca602b82390d66363783f", "message": "Draft: fix FlipDimension for LinearDimension\n\nDuring the re-organization of the `Dimension` classes,\na new class `LinearDimension` was created. So this `FlipDimension`\nis updated to handle it.\n", "proba": 1.0476353651256431e-07} {"commit": "d93289148f38a03523ed07e38fc793744eb07460", "message": "BaseNode: checking if termination_event is set before stopping task threads or nemesis (#619)\n\n", "proba": 1.2681201155828603e-07} {"commit": "d682e2468751b43d73c1ad03be92574db98a1191", "message": "compiler: Fix jit-backdoor\n", "proba": 2.408578984613996e-05} {"commit": "31c44ee9fe6106e004d833d01eff26c6310010e9", "message": "Fix list of gaia columns to overwrite with EDR3\n", "proba": 3.570024489363277e-07} {"commit": "160280af3612756061c8f7cd47c3868d7b990ace", "message": "fixed further issues with fix_cdata()\n", "proba": 1.248321694902188e-07} {"commit": "f7e96dd3f6291305c743825337573db3930334c0", "message": "Refactored wait code to avoid duplicate code (more general now)\n\nThis is also done in preparation for adding some better error\nhandling so we can correctly react to errors at some point.\n", "proba": 1.0085816626315136e-07} {"commit": "c3802c77e3e6dc5171fc31152314e804967986ee", "message": "Document response JSON for login\n", "proba": 3.309276621621393e-07} {"commit": "0bfa3c0af4eb94dbc30524651b0c7ed917834e34", "message": "Implementa\u00e7\u00e3o da fun\u00e7\u00e3o request_parse.\n", "proba": 2.3825462847071321e-07} {"commit": "13467e8b3d8f4b3a1133310a3ec16aeed1584d41", "message": "Changed field lengths of 200 to 500\n", "proba": 0.0009470906225033104} {"commit": "bc434ca82e135fa2d2a6307116be7c42862145c5", "message": "Refactoring to remove need for constant process on submit node\n", "proba": 1.5951728471463866e-07} {"commit": "5f94cdd59569ad6a99b5c42908c602bbee31f58d", "message": "Fix the list of non-seed nodes in _update_db_binary\n", "proba": 0.9999979734420776} {"commit": "8e333a67d443b3fff8edad8b07e82cdbb920abd0", "message": "Fix number of iterations reported in moreinfo dictionary (off by -1).\n", "proba": 1.3313024282979313e-07} {"commit": "411fb5dd9f6f73ffb5ea7fb69c9ae719547ddf4b", "message": "function: Fix indices/shape setup\n", "proba": 6.510833918582648e-05} {"commit": "e45da7c664618b57c830db05fa5bbb4055eb4ee3", "message": "set OBSCONDITIONS bits for duplicate secondary targets\n", "proba": 3.235442136428901e-07} {"commit": "3b41b94b4ad7b249a2ff1040d6bf2d4759d48b14", "message": "revise task error handling (exceptions bubble up now)\n", "proba": 1.565974656614344e-07} {"commit": "17474a74a8c382c1cc5923c0e2128e4a4e776553", "message": "Add method I am yet to use\n", "proba": 3.5513548368726333e-07} {"commit": "5c4527cdfa26ac8192dbe57d2713553d045ff5cf", "message": "remove useless __cmp__()\n", "proba": 0.0004202323325444013} {"commit": "4acaf51d7cd847538bd2ccced3f21899b9674959", "message": "Refactoring to remove need for constant process on submit node\n", "proba": 1.5951728471463866e-07} {"commit": "b1c420e3552327a74331e3c3fccae981bf8a5422", "message": "Fixed length check\n", "proba": 5.614319888991304e-07} {"commit": "942ebf989c55a53aa44fa04db876e8e0e5ce0bae", "message": "fixed typo\n", "proba": 2.684115770534845e-06} {"commit": "ad7b65da577443545a9b1d97793eea0bc1436b0c", "message": "sdcm.cluster: Fix Node.wait_for_init\n\nSigned-off-by: Lucas Meneghel Rodrigues <8ad3460456640ab580599f5440c5a8d925a620b9@scylladb.com>\n", "proba": 1.8210008079222462e-07} {"commit": "02fc80d4924e62792220e8a0ec126562a74ecce3", "message": "visitors: Add Transformer\n", "proba": 1.7894549841912522e-07} {"commit": "6889d54e70b9ac79ce87e98febee9fcb4f4d4796", "message": "Allow RankMatrices to be created from already existing matrices.\n", "proba": 1.0170932540631838e-07} {"commit": "57773e149ae2c7634e262b103a10cc35f6e138b2", "message": "Ids are strings.\n", "proba": 0.9999444484710693} {"commit": "43aaa44c1b5569664b4e148cea5f5a7d0750962a", "message": "fix bug\n", "proba": 6.400653660421085e-07} {"commit": "d9237eadb423eb46b93ee81ab6bde3ba9c3f3011", "message": "update heatmap\n", "proba": 7.988387551449705e-07} {"commit": "0002428e98c3739f7be391a59b2aa070a720748c", "message": "Refactoring to remove need for constant process on submit node\n", "proba": 1.5951728471463866e-07} {"commit": "e26846a7f1aa5ed1d25deaad7bb9c13aad6f5927", "message": "Add cCDF operation\n", "proba": 0.00018052941595669836} {"commit": "364137e02a7f096b05fb0039285987d1fadfb16c", "message": "Updated from Brython Server: 12/24/2015 10:34:59 AM", "proba": 1.1030466140482531e-07} {"commit": "a21b047e9080f7bc7825886f93eecbd792e6388b", "message": "fix(sdcm/cluseter): fix retrying logic\n", "proba": 1.1268137996012229e-06} {"commit": "7c25a8f5677c68ec354dbc4aaa89053c2c70c34b", "message": "add max pooling test cases\n", "proba": 4.886503575107781e-07} {"commit": "39406e5f72cf4605b5140d5d051968f6661c69c1", "message": "feat: Converting Pandas DataFrames to Datatables in Python JSON output\n", "proba": 1.5754477544760448e-06} {"commit": "114d7edc5dab67cc91565960a6e8bbc040563901", "message": "thumbnails in blog api\n", "proba": 2.4388282326981425e-07} {"commit": "2e5deb4aff42ade68d55b04c39b33dd65c6064ad", "message": "Added support for Sequence blocks\n", "proba": 1.586310247603251e-07} {"commit": "b8537f92d06adac5a1d859f243f377c5982c7b20", "message": "add nn searches\n", "proba": 6.966360501792224e-07} {"commit": "fb2cfe4759fb98de644932af17a247428b2cc0f5", "message": "Fix Auth API key check causing error 500s\n", "proba": 3.7965580190757464e-07} {"commit": "7d72553adbc7289936d02c373d6207e9bd5d642b", "message": "MISC: lda: Y -> y\n", "proba": 0.00021319366351235658} {"commit": "73eb3c0074b370a73ecaf559add83a4c192d7395", "message": "Ne met en cache les templates qu'en dehors du mode DEBUG.\n", "proba": 1.1047330872315797e-07} {"commit": "1d67f755ea0f638c3cabef9e9359665d5b50ff86", "message": "Clean up BeamConstellation\n", "proba": 4.1250576032325625e-05} {"commit": "948dadbd4aa262c86e561c56e7cd7748cdefa18b", "message": "Extend teacher column for institute courses\n", "proba": 2.4815849997139594e-07} {"commit": "217fc2a487395853e53bae5fc0ba5ea2452c98aa", "message": "Clean up _render_quoted_form\n", "proba": 0.004682506900280714} {"commit": "ccf7667fc860164f234c71960325a955ca8d69e0", "message": "CFY-7081 When setting verbosity, don't lose the value (#622)\n\nset_cli_except_hook expects the verbosity value, it needs to be\r\npassed down from set_verbosity_level via main.\r\nOtherwise it's just lost.", "proba": 1.2082475109309598e-07} {"commit": "cf9f99e587c944020987eee9e1bd32e591f16453", "message": "Added new method that retrievs and parses nodetools status command. Also check_nodes_up_and_normal method added\n", "proba": 1.9946752161104087e-07} {"commit": "1e3ea59bb631bb78dd0525dcf92a96a6a39053d8", "message": "fix hooks may not been assignment #148\n", "proba": 1.3267218434975803e-07} {"commit": "01430ea4258a6d0cf309e24f3c0f16f68c0002cb", "message": "needed to call delay()\n", "proba": 1.7649188066570787e-06} {"commit": "5bf0a31c51e1aacff432c0d4a3d7ccc76448102d", "message": "catch 413 error and don't trigger on file line numbers\n\nfixes spurious proxy auth required msg\n", "proba": 1.499368096347098e-07} {"commit": "deeaef352721b06f0d0b504c8dea02f454878773", "message": "Fix bug in simple_mask\n", "proba": 1.3971331327411463e-06} {"commit": "84908ca8ba503350cafb0bd84687ce7f116e2026", "message": "reverse map for single ip\n", "proba": 1.0986943834723206e-06} {"commit": "df54c39f476daf3a44c49386c895ed17f819a92e", "message": "Remove weight_label keyword from SVR.\n\nThanks to Nicolas Della Penna for reporting this.\n", "proba": 9.975464365652442e-08} {"commit": "183a7f83836fae90affc28d6eb2676014b3077e9", "message": "document that launch(wait) only works for blocking programs\n", "proba": 3.021832526428625e-07} {"commit": "89aa3cbc62a947b3623380f7d1fe631bdf070b98", "message": "influxdb: fix the need of admin to run\n\nUse select statment to show if db exits instead of\n'SHOW DATABASES' which cant be run by a non admin user.\nSee https://github.com/influxdata/influxdb/issues/4785 for more info.\n\nAlso influxdb dont like empty writes('') so ignore state changes of that kind,\nthis happens on startup of home assistant.\n\nSigned-off-by: Robert Marklund \n", "proba": 1.914059168939275e-07} {"commit": "58cd32f45583822ea6e19e4cc9b51e922b6ae3af", "message": "renamed \"dm\" to \"man\" for consistency with console module\n", "proba": 1.7923532595887082e-06} {"commit": "19d80774ca807b319d2f754b3583f12ada1850e3", "message": "Removed console debugging cruft.\n", "proba": 1.2549536165806785e-07} {"commit": "1ad9a92b5b724d5ceafbd568e1d0e654f3824cc1", "message": "Converted the DATC 6.G tests to use the string parsing helpers.\n", "proba": 1.0624337676290452e-07} {"commit": "19161f3259237bb70904c7fb469e1831dd424fa6", "message": "Update test_Vulnerability.py", "proba": 4.1116246052297356e-07} {"commit": "ac9826753160492caba39df7c3d5ff0e1a598f03", "message": "Rearrange user prompt handling in delete\n", "proba": 1.323188030255551e-06} {"commit": "c4f672c821be7f693608b13fc27e5612f73649b9", "message": "Small fix for logging call.\n", "proba": 1.1570936209182037e-07} {"commit": "f0243e8ab8897d218bcf45af91a7cd03a3f83c5e", "message": "Add section comments.\n", "proba": 1.247027086037633e-07} {"commit": "374b2d220c94706a7f625e35ec3faff452d31fa7", "message": "APMAT-1 ensured correct adj def is updated on import\n", "proba": 2.407373358437326e-07} {"commit": "9cb41421ca33a6522ef4c2ff2debe86003801baf", "message": "sdcm.nemesis: Log time elapsed for each disruption function\n\nLog the time that each disruption function took, so that\nwe can better adjust timeouts.\n\nSigned-off-by: Lucas Meneghel Rodrigues <8ad3460456640ab580599f5440c5a8d925a620b9@scylladb.com>\n", "proba": 3.249499798130273e-07} {"commit": "5f5ddad6a77286d2864be70f967f933a33f844fd", "message": "clock module: handle timezone changes, thx to @sTiKyt fix #1962\n", "proba": 1.6424206705778488e-07} {"commit": "cd0bcffde027c4e870e48d5bd8fd6fad4500d660", "message": "Implement predicates needed for 1.12\n\nThere also was a mistake with declared_in, which has been corrected.\n", "proba": 2.095856189043843e-06} {"commit": "9274ec308974b0d6702e7f98a0b8a2c3be1cbe11", "message": "FIX #170 Throw Python34 compatible exception\n", "proba": 1.3770973339433112e-07} {"commit": "e3c699dfb7f89cafacf17669fe0cf8394847317a", "message": "website: fix caching of process_stories\n\nThe \"_id\" key maps to an object that is not JSON serializable. The processor\nthen fails to cache the `process_stories` output because of a JSON encode error.\n", "proba": 4.274197920040024e-07} {"commit": "f009102be1f251a42eee2bae5fd9be38e6fbdb52", "message": "Add extra test.\n", "proba": 9.399353189110116e-07} {"commit": "ac2c7c9011865d8e0adeadcc3e149487722de119", "message": "Fix \"permission denied\" message when owner edits published (immutable) resource.\n", "proba": 1.4665738490293734e-07} {"commit": "88aa83abb7d3ba9f580113b8667cbac134c6d957", "message": "Minor code cleanup to make premissions grant/revoke work again\n", "proba": 1.0800356875506623e-07} {"commit": "1180a573196c65b2e38603e886037c0e3720b1af", "message": "ENH: refined optional_import to allow global imports.\n\nfunction now always returns an object (the actual module on success,\na stub object on failure), so that imports may also be done globally\nwithout breaking the code on a failed import. The lazy import will be\nrevealed as soon as any attribute is requested from the stub object.\n\nThis way failed optional imports won't clutter your command window with\nwarnings but will give you a clear error message, once you try to access\nthe contents of the missing module.\n", "proba": 1.2627161538603104e-07} {"commit": "0245ae66572d96fc2286360bf7f54ad8f8f6a2bc", "message": "DOC: fix skew docstring [ci skip]", "proba": 1.5045345946873567e-07} {"commit": "96de83094e118fd18dfe375bb12a2ec92eccad07", "message": "Handle exceptions as JSON\n", "proba": 0.00047925912076607347} {"commit": "9ef5534dab31daa2ecd499a4759b30483d1021bd", "message": "added a timestamp to delta id, added old_data to delta and the uuid of the job\n", "proba": 3.713338969646429e-07} {"commit": "223bddae65d5535b1e2b0a7c86f05deb932946bc", "message": "fix travis on right place\n", "proba": 6.176777560540359e-07} {"commit": "3b5997165668e735ae343843f146e4994c15126e", "message": "update heading loading logic\n", "proba": 2.8599993129319046e-07} {"commit": "33d19ccd8588f1417420433bd2ef2048fa4506e5", "message": "Actually use South. Also remember to commit things.\n", "proba": 1.0216974288823621e-07} {"commit": "92e1b6e07e3b4a13cf29ac326c6eea5d200d58e9", "message": "SERVER_EMAIL defined twice in settings\n", "proba": 2.2666135635063256e-07} {"commit": "15c438944368bde26474a7029811ca47b3f40d40", "message": "Revert \"better message\"\n\nThis reverts commit de723aba62f87bb744aca7410725745290d33ae7.\n", "proba": 1.697061833283442e-07} {"commit": "6e98b5ef157aa15f42cafa489d106b5eddd5f0b8", "message": "Create directories when installing config files if they don't exist\n", "proba": 5.793609716420178e-07} {"commit": "69223afd0c1f3ab34a4f2aa65524ef3e29af2834", "message": "Fix spelling\n", "proba": 0.9999994039535522} {"commit": "08888cce2c5cac71951e8fe061b04de3d20bbafb", "message": "MWW: small updates to testing script. Runs correctly on 5 model test\nbench.\n", "proba": 9.863948946531309e-08} {"commit": "05d7b84482cdec8b10494ac2c246f0745f7f3538", "message": "HOLIDAYS list bug fixed\n", "proba": 2.939679291102948e-07} {"commit": "bd48c20637905a4f1170780ed0805a7558ed6215", "message": "ImageRenderer: style issue\n", "proba": 6.487024961643328e-07} {"commit": "22c0f96725efe7997b2f806f466527b459318b90", "message": "Skip snap tests until Jetstream is fixed.\n\nxref #60\n", "proba": 1.9892458169579186e-07} {"commit": "c06800d2bd70c2cde6fb40de925450342f9c6d91", "message": "Update comment about timeout (no effect on SFTP/functions)\n", "proba": 1.121674344517487e-07} {"commit": "5c0e940d52f9b0502d83977acb20ca9b44f2cec1", "message": "add a doc saying that behavior is the same as OpenCV\n", "proba": 5.811864321003668e-05} {"commit": "dcff271fef4b8e4a5bbaa63fee3086031ecd4163", "message": "backend/models/Picture: re-add original to the api response\n", "proba": 3.336421343647089e-07} {"commit": "74b3b5217bc3585d8990ec752ad9ed63200eb19e", "message": "Include digits and dashes properties in JSON response.\n", "proba": 1.3372627449825814e-07} {"commit": "71cca7a79a7c5d58fc3c6d947e4f56627a64581f", "message": "Fix issue 20\n", "proba": 1.7165784527151118e-07} {"commit": "9ed02b94022e9bfdf84278f732aa65264646ff37", "message": "copying converted move to hdd\n", "proba": 5.225830932431563e-07} {"commit": "20569df5aa0550ee8d2218ed76eb5255ad54d666", "message": "username and password args to get_opener should be optional.\n", "proba": 1.2288006701055565e-07} {"commit": "07e767f9c19ece3c41e33cca24dd2b0317244292", "message": "Update the latest version\n", "proba": 1.654704107068028e-07} {"commit": "6b94ca046af0c1901f75af68d09f7dc47a87440b", "message": "fix bug in get_non_det_strategy\n", "proba": 1.142576820711838e-06} {"commit": "32f8911cea5ab319650dc25bd27755cd261d3ad0", "message": "DOC: clean up old-style docstring.\n", "proba": 1.7496371640390862e-07} {"commit": "7965ce3036f98a9b880f19f688e7e282644e63cf", "message": "remove server_name\n", "proba": 7.798436854500324e-06} {"commit": "8b6daea77356631d657feee438da41379a8f5f90", "message": "Version 0.46.0\n", "proba": 4.441657495135587e-07} {"commit": "3ebaad757c6b6c07a528cebd497469150f64cd4b", "message": "[dataviz] trivially migrate one more script\n", "proba": 2.4221347416641947e-07} {"commit": "59859556b3027b1952f8a2e8a3c78d97a19e58e8", "message": "Fixed linked selection with index_cols (#4498)\n\n", "proba": 1.0759214319477906e-07} {"commit": "feea9ec5770d2fffc2610197ae78928852564da5", "message": "uploader finally no longer updates daos unless there are new ones\n", "proba": 1.3430177148165967e-07} {"commit": "34a9a44ad0aa835aa503fd89cbac50775894dbc5", "message": "Fix box too small error in test_analyze_log.py\n", "proba": 4.7001394705148414e-05} {"commit": "952267800f7060834ce8732c434d876dd05e526b", "message": "Remove obsolete test_datasets_transforms.py (#3867)\n\n", "proba": 1.285078269575024e-06} {"commit": "a1d9312e1ac6f66aaf558652d890ac2a6bd67e40", "message": "Add parent so we can track versions.\n", "proba": 1.0951433893069407e-07} {"commit": "424b50960e7ca42c61ccc98864f9876e9688dcd4", "message": "remove empty elements\n", "proba": 0.31906354427337646} {"commit": "c26b42dab2d346d69e56f644c7ef474c97e1a74d", "message": "http://stackoverflow.com/questions/1265190/django-annotate-multiple-times-causes-wrong-answers\n", "proba": 4.484151759243105e-06} {"commit": "b7e8440c61ff3e9c9a6a827b15562ad7006ac3c6", "message": "Cleaning up unused code\n", "proba": 2.525852551116259e-06} {"commit": "d3405eed3faaad6f25a37455cbae33faa7821b42", "message": "aurcheck.py - do not offer to download tarballs if wget is not present\n", "proba": 1.24013183722127e-07} {"commit": "9db5fb8d5ec1e86080a41ce705bf5e8e5cc74cdc", "message": "display error message\n", "proba": 1.6936808151513105e-06} {"commit": "bcc7692e14b7b695f08dfb39aaccf3dbfa67d857", "message": "Add safeGetInt to BMConfigParser\n", "proba": 7.991496886461391e-07} {"commit": "34995a4c61e8292d576cd64a218db8ab6a119c07", "message": "Add Rule init tests with incorrect type\n", "proba": 2.619132146719494e-07} {"commit": "a7254ebf94a471361b00f3b5ec8c9800b566af7b", "message": "Tests passing (finished test_ReactionDiffusion__3_reactions_4_species_5_bins_k_factor)\n", "proba": 3.352995179284335e-07} {"commit": "1c18c178dc9e31e32061c36b617e555971bb76cf", "message": "ENH: use partition for faster trim_mean\n\npartition available in numpy 1.8 partially sorts array around the cut\npositions. Scales linear instead of the linearithmic scaling of sort.\n", "proba": 1.0432366082113731e-07} {"commit": "5bcf1d765edeffe6b8274672e3705d7a007aa06e", "message": "\ubcc4 \ubc18\uac1c\uc9dc\ub9ac \ucd94\uac00\n", "proba": 4.788262231159024e-07} {"commit": "fb437e1bdad37770d21d099343a3bea57f35bfa0", "message": "OAuth-Authorization\n", "proba": 2.7562122340896167e-05} {"commit": "34ed44ad41305fe079e62329e81e3be7b139f359", "message": "Reordered operations in element into more logical order\n", "proba": 1.1614385584834963e-05} {"commit": "250da10f43ce6778be9e1caf0218d659b9e0c048", "message": "feat: import Video with *\n", "proba": 1.046002111593225e-07} {"commit": "311459eef0178b5c3e337ff16c15a26d56f36471", "message": "Allow reverse proxy to set https\n", "proba": 5.765433002125064e-07} {"commit": "67d6d122a14e16c85b58425fe077b6d0f81e5fc5", "message": "travis, this is totally going to work\n", "proba": 1.0760528112996326e-07} {"commit": "5bce4bb123a086dd116abbd0932d34fa170a83cd", "message": "Update view to point to corrected template path\n", "proba": 1.674902421200386e-07} {"commit": "ddc84cb931b5e5587f7cebc410a737efdbd63361", "message": "[FIX]\n", "proba": 4.2055495441672974e-07} {"commit": "f46c1088dc7b356c22682b0ba025556c5d67cd48", "message": "Fix permissions\n", "proba": 8.699276463630667e-07} {"commit": "81ceaad0a3ce36d63aeea8561f68996255e5eb4e", "message": "Prevent invalid data in monthly_income to break ICP update\n", "proba": 2.3046832211548463e-06} {"commit": "cb3357d49b85b3178caaf0e7a7baa1c9e073267e", "message": "Made play consistent with descriptions.\n", "proba": 1.0842193631788177e-07} {"commit": "a02c4d68e8a7e2ccec957063af463a1052290a04", "message": "scipy.stats.warn raise a DeprecationWarning.\n", "proba": 2.6861260948862764e-07} {"commit": "29d9d600350aef8e1cd86dc46c23fca34816f64d", "message": "Fixed bug contours operation\n\nDidn't respect Path MOVETO commands resulting in\nmalformed output\n", "proba": 3.065394196255511e-07} {"commit": "f9087a4d11db748586227829f44b5bb26994a67e", "message": "Ajuste do nome da classe de acordo com python3\n", "proba": 4.0293926417689363e-07} {"commit": "ce78edd6d4095415473425aadd67549b0207d40c", "message": "flake fix\n", "proba": 5.454501774693199e-07} {"commit": "e9345c4deb934f96681db20aaa31cab66ac0275c", "message": "IvoAuth fix\n", "proba": 6.604826694456278e-07} {"commit": "d77777c2a011e77b284748d1dfbd3cd31e6c8565", "message": "make verifier regexing more robust\n", "proba": 4.1589905777073e-06} {"commit": "d6d185fd27b8a3335eafb5488bc9e23a54f45ba4", "message": "change SpoolOnEvict. fix line endings\n", "proba": 0.9999992847442627} {"commit": "064354f91c0d8001bd117d49947641de8b7dd753", "message": "version bump\n", "proba": 7.394332897092681e-07} {"commit": "525d9ef4b54a1feb220fa77743aec1c39d287195", "message": "Add new blockface fields to data dictionary mapping.\n\nFixes the dump_db command, which was failing on the data dictionary step.\n", "proba": 1.1442065073197227e-07} {"commit": "e82c27dada2e90076b7b7007ed9e643a581ba408", "message": "Possible fix for backticks in file names issue\n", "proba": 9.450992592974217e-07} {"commit": "8cfb91f6aa10425689f1587afd20e9dd1b096b51", "message": "Add negative nodes to the permissions handler\n\n#32 - Make PermissionsHandler care about source/protocol\n", "proba": 1.8900699672030896e-07} {"commit": "cf5773667f0116e8c4abf68748a33bea5eb2746c", "message": "restart process if it had died\n", "proba": 6.065520665288204e-06} {"commit": "d9f54a5615bbb91cbb1c55ef946785011b116414", "message": "Vertical scrollbar works again.", "proba": 1.1850948311575848e-07} {"commit": "d2455539141f5749c522700177809458887db21a", "message": "changes\n", "proba": 8.874663762981072e-06} {"commit": "ef5cbdd36228555b138b2ee72d52abbec1411b35", "message": "The bot now doesn't fuck up the silent_review greeting.\n", "proba": 1.2087592438092543e-07} {"commit": "82641a936b2215480e29896cdafed3872c2928c6", "message": "Remove xfails for newly passing tests in test_recipe_integration.py\n", "proba": 3.5072439459327143e-06} {"commit": "4be67b6f46c5f4a7f8a2b89199cff2373dcc7a43", "message": "ca_qc_trois_rivieres: Fix casing\n", "proba": 5.591788067249581e-06} {"commit": "726a4e4dcabc0d96ac6f13aef16b7ae98fb8af8f", "message": "[enh] ordering categories\n", "proba": 1.1998140507785138e-06} {"commit": "b3b63e0c685bd552f62dcade80fcf19fb64bc777", "message": "hopefully improve time scheduling for condor\n", "proba": 2.844543587343651e-07} {"commit": "c8ebfcd8293588d2a3bce4889b1e673c27bd710d", "message": "Added a softmax function which require a special case cost function\n", "proba": 1.522288499700153e-07} {"commit": "99707dfdbaa4d1a98c826f0261b8e9f4b04749cc", "message": "campaign model methods alpha order, docstrings\n", "proba": 2.97374157298691e-07} {"commit": "4f377ec5fe3ad26991b1ee119ce087de64bba637", "message": "Fix indentation\n", "proba": 0.0172440055757761} {"commit": "7657544d7497b6ba5edcdbcbd932667cf5d52695", "message": "\ud83d\udc1b backup: open unknown plugin file in text mode\n\nCloses #3722\n", "proba": 1.3357306727357354e-07} {"commit": "f74125dc9e66a8553c9b2ec837399e17ec74b79b", "message": "Change url of auto emails\n", "proba": 3.0453113595285686e-06} {"commit": "a3ebb7ce01f3532d7d12885f749f5a9154d2b991", "message": "changed dev paths to official debian icinga2 paths\n", "proba": 2.8989131806156365e-07} {"commit": "f95195573d66dc1b2b9346ccfd15a3f3f88e7010", "message": "don't include time and null channels in normalized data sets\n", "proba": 3.558559171779052e-07} {"commit": "b4fdd55b7f0dda429d962c4ffae915750a5f4c1f", "message": "Renamed a lot of variables in the timeline layout.", "proba": 1.085456773353144e-07} {"commit": "6a6bc82ad38cc23e9b424e326509d114c6bdbcf0", "message": "added email settings\n", "proba": 7.771454875182826e-07} {"commit": "a7a16b938f39d0cb25a09b4519795ed1d700f744", "message": "silly annoying bug. how could I not notice. I don't even\n", "proba": 4.2095758544746786e-05} {"commit": "631592796ac12634f9b1cf9bb8ca0320278273b8", "message": "Improved legend\n", "proba": 6.22705670139112e-07} {"commit": "5ae4c6341ccee978fa8b2eb324e885d63f467920", "message": "fixup\n", "proba": 2.5732690573931905e-06} {"commit": "86a17ded3cdc6b0af280f4c29b7cb446662de588", "message": "attempt to fix the immediate removal of pilots on a grid\n", "proba": 1.5669054675981897e-07} {"commit": "7471d1bcfc80864ee4e9ca9ad3b8ad10868a3cdc", "message": "tempest: use tempest img\n\nglance_image_create() must be called to upload the scenario-img to\nglance. Since we upload it ourself, just use this one.\n\nChange-Id: I030315796e68a9851f7a94b01a1e2cc8ac0a87ef\n", "proba": 1.2956666068930645e-05} {"commit": "61d347f66c1d9e262f6fe3c42c7e3ed45165640e", "message": "No regression testing on source code hash\n", "proba": 1.2290355471122894e-06} {"commit": "ef040ef3b53ecb3c88efdf1cb9d74dae07ba09e3", "message": "Avoid crash\n", "proba": 0.00021121649479027838} {"commit": "9e2a6f7cc6bb954b8dbebfd4b9692ab31ebb0fe3", "message": "System / Routes / Status: remove entries directly connected to an interface, rework last commit for https://github.com/opnsense/core/issues/4721\n", "proba": 1.7174953370613366e-07} {"commit": "439d6f5549c88dd33fd89bb9afe75fae42f16fcf", "message": "Streamline code for getting or elements.\n", "proba": 1.0915606196704175e-07} {"commit": "23f4cfd571caeac5a1745c45fc9131d02ad7e7d1", "message": "Move to log-based scoring.\n", "proba": 1.558754263442097e-07} {"commit": "3f785b3c0b7bb0cda4da34346e945ae93fbbdce8", "message": "Updated home URLs\n", "proba": 4.199097247692407e-07} {"commit": "931921f71736cc42245eff9a8398f401c9f7a7d5", "message": "test for removing is_deleted edges\n\nChange-Id: Id97689c9c470bd9287efa56adf03054372b64425\n", "proba": 5.053183122072369e-05} {"commit": "ce5105f9ef4114dd3f6162bfe6ba7d650e592075", "message": "better regex in postgres, thanks Paolo\n", "proba": 1.8819868330410827e-07} {"commit": "0222c7da7ad3fa7d42feaac35b5526b0485985e6", "message": "greenlit ensure item removed\n", "proba": 1.4099195766448247e-07} {"commit": "91dda98e56a29e82154506eee510e8dc1c932a35", "message": "Allow Play button after rewind after song ends\n", "proba": 4.5160456352277834e-07} {"commit": "7cb7b87afc19f722115edb6dc4df6c0a45487d7b", "message": "Check 'URI' in addition to 'DocURL' when getting URL of document\n", "proba": 3.897109479567007e-07} {"commit": "823b3bec355bb2492a9faa532cc2dcb23889dfe1", "message": "[Scripts] Improve coroutines.Lock error message\n", "proba": 2.2455755299688462e-07} {"commit": "4e3cb1a0d6045141d77f67e62cd30faaff011d56", "message": "Replace hardcoded mode behaviours.", "proba": 2.123254944308428e-06} {"commit": "5ecab61cd66b821d70e73006f60d8f7908bfb403", "message": "Remove comment\n", "proba": 1.7397370299931936e-07} {"commit": "adabe7cc68ec94cf41b57326b47c55e9d95b540b", "message": "Added support for eddystone Flags Data value=0x1a (#19)\n\n", "proba": 1.0742604672486777e-07} {"commit": "46959b233f9672eb6278dfa6a80dc014f9dd5251", "message": "Extract method to merge the rules in ConfigDialogBuilder\n", "proba": 3.1142315037868684e-07} {"commit": "d6ac8255212406c23515eb9d2bf7bfe0ed387174", "message": "VPC\u306b\u5bfe\u5fdc\u3001JSON\u3067\u306e\u51fa\u529b\u306b\u5bfe\u5fdc\n", "proba": 8.459850846520567e-07} {"commit": "070b0bcb225ff6e34996b25cd32e27fda147b07a", "message": "Fall back on AtspiComponent to get the accessible at point for web content\n", "proba": 1.2114712433231034e-07} {"commit": "0f254fc42ecfa499189b33bc9f1460a5d43f35ac", "message": "adicionados campos para gerar 0200 a partir do fo2\n", "proba": 2.1819731443883938e-07} {"commit": "ae060269b889af17bc402aeebecd045763cc3594", "message": "Clear out redis before testing to avoid issues with testing against real redis.\n", "proba": 1.1932910126688512e-07} {"commit": "fabbd35e0720bb951c527a0acab158ae74b68325", "message": "fix: use len(data) to price gas_tx_data\n", "proba": 0.000355360476532951} {"commit": "d840c7f93c9ef4471a29439745f2fb2504d49e13", "message": "barcode: remove unwanted attributes?\n", "proba": 2.672287791938288e-06} {"commit": "8b29dd1e3b343d2e7f6e20c88bf6d09bb65f5c5e", "message": "raise AttributeError instead of asserting\n", "proba": 4.855954784943606e-07} {"commit": "718623864e421d1b3c5ac403906ceb654e6de042", "message": "Filter out extraneous presentation of \"space\" when navigating by word\n\nWhen navigating by word in contenteditable content with embedded objects,\nthe space at the end of the word is technically in a separate object. As\na result, we were saying the object followed by \"space\" when navigating.\n", "proba": 0.012657767161726952} {"commit": "673ae5e4c7e97ba2797d7519642e7e0a1591fb7f", "message": "recebe par\u00e2metro do tipo de sa\u00edda do script\n", "proba": 3.009643876339396e-07} {"commit": "b374f1b0c4ef4c71917b2e074908954bb1b1093c", "message": "fixed import\n", "proba": 6.131749614723958e-07} {"commit": "16ad28e2da474e79148237b77963053f3bb004d5", "message": "not needing @inlineCallbacks for _deliver_sm\n", "proba": 7.636958798684645e-07} {"commit": "46069c5e68ff4f8086b285f036eca7400777ff5a", "message": "rm: unused method\n", "proba": 6.044191422915901e-07} {"commit": "2ad0dd234b2bd34c5308bc4306fd0702e0071485", "message": "bagpipe-bgp: fix race in import RTs update\n\nWe need to update self.import_rts before we\nupdate subsription or we may receive routes\nbefore VRF._imported can properly filter them.\n\nChange-Id: Ia69e63d5e60ab539c40a2de373b5ffe4b46548f8\nCloses-Bug: 1719822\n", "proba": 1.8933606327209418e-07} {"commit": "b8c3ad8c9eb4cdf2618839b425b8413181a443ff", "message": "Fix bug in writePrecisePathToSnapshot not bactracking prperly to the initial structure\n", "proba": 4.6974943757049914e-07} {"commit": "332a456dd70f2b52757e8304fab8888d7b6ae0ad", "message": "updated admin call rebill view\n", "proba": 1.335697561444249e-07} {"commit": "f5f8c6027f3fd42e3120d56104f7e17b97b8f6af", "message": "Ported object inspector\n", "proba": 5.25378993643244e-07} {"commit": "4f2923d41c18bcb099add6a2cca7461dbc715c04", "message": "StubbedTruteqService (thanks @jerith)\n", "proba": 1.1482959649811164e-07} {"commit": "0d0293498080272933de0cee8bc338ae7cb7d408", "message": "Raise Error when pagination/groupby is missing\n\nRaise NotImplementedError if db2 storage backend doesn't\nsupport the pagination or the groupby API.\n\nThis change is needs by the blueprint db-tests-with-scenarios\n\nChange-Id: I7dfeab96e30ae6640f969bb76da9a41045922a64\n", "proba": 2.389696874161018e-06} {"commit": "ba308fa29df3b265dd018c641105b1448abd9efd", "message": "WorkerThread: fix name collisions with python 3\n", "proba": 0.999051034450531} {"commit": "d5196874181ce55585770bbb72f6d8b8ef1df5a3", "message": "Add tests for joins and wildcard tables\n", "proba": 1.6853074669143098e-07} {"commit": "8f4bac326a83bd0e0c4d6100cd95d124a27b152f", "message": "Follow the `is_admin` flag from oauth server\n", "proba": 6.3458401200477965e-06} {"commit": "72d7bb402eb24653d637deb353ccec0335681025", "message": "fix stats, ability to log vars\n", "proba": 1.4585815222289966e-07} {"commit": "5bf799104150ada8795f4240a46370e866dc88a3", "message": "Reorder imports\n", "proba": 2.888605763473606e-07} {"commit": "cdb519c6524566ad221ca6c323d4e213a8b61062", "message": "log on stop of test too\n\nSigned-off-by: Brian J. Murrell <2a8f564cbb80211e19c0a14fed38a451599c042f@intel.com>\nChange-Id: I3b5fe3bfc79545937e49ccd20cf1aef08474d40b\n", "proba": 5.225382437856751e-07} {"commit": "6ea90db4774287f2e5dc2fcb8c4bdf7969e46363", "message": "removed debug prints\n", "proba": 1.0646647297107847e-06} {"commit": "ee98aa7d11925b7e1c9cf952d6366a9e61a8ec93", "message": "Got rid of PEP8 complaint and removed KB_WORKSPACE_ID requirement from environment\n", "proba": 1.1333539617908173e-07} {"commit": "aee016ffdeac6da28a8e76a44192a14756c8ab01", "message": "Refactor SlurmTime to use attr\n", "proba": 2.227452284842002e-07} {"commit": "8b078c5770ea2514c4a6ab2dac139f014ab0fd34", "message": "PIL image encoding.\n", "proba": 2.9032264592387946e-07} {"commit": "c072f88df49dada1c664c0f4d71e8084c3690449", "message": "Make the message optional in /ping.\n", "proba": 2.1508622012333944e-06} {"commit": "bae170ac822ac1777f1e2bd7c3a81025fc500edb", "message": "add informative error for migration mistake compute/compare\n\n", "proba": 3.483960995254165e-07} {"commit": "6e3eb7f463738cfcf55a5c2071f4943a5d4b89ba", "message": "Error in HOSTNAME logging info for nmon_processing\n", "proba": 2.1140181161172222e-07} {"commit": "314efb1163c022c5bae8f419c179cd66c01e6df3", "message": "changes to fol-ask\n", "proba": 0.00011394666216801852} {"commit": "851fdc4e43417c7c7529cdf1b032a73a73dadfaf", "message": "Add PROM option to runfba\n", "proba": 1.764346507115988e-06} {"commit": "f168d47b6c8edca339dbb438d3e4dc64405ab3f0", "message": "Fixed comment\n", "proba": 1.3289785272263543e-07} {"commit": "1549510fd9371818cff6644984896a5a9060cb36", "message": "Fix print statements with python3 syntax.\n", "proba": 3.843751983367838e-05} {"commit": "63bd0d8905ea9392e56f501381c054ba3a4ed1a7", "message": "Update __init__.py", "proba": 7.178883242886513e-05} {"commit": "7ede98c952cce02c9af3f91b27e0b31d0bf08108", "message": "Suppress astropy.io.fits warnings\n\nThese were mostly warnings about HIERARCH keywords; the user has no choice about their use anyway, so suppress the warnings.\n", "proba": 1.8903277521076234e-07} {"commit": "e68d7b1bc5c423328cd2ac89d8939cb800bff98c", "message": "Missed an update for the selenium config changes.\n\nChange-Id: I3484e79bd890bab0627eb1203abc2740351e5196\n", "proba": 5.293311915011145e-06} {"commit": "f77b48036968ce49ad1094c9913b06d977b2d6e0", "message": "add year() type checker\n", "proba": 1.7882418887893436e-06} {"commit": "ca9c51f47744d29b4a1906b4358afa75de2c6d7b", "message": "Rework newline handling in image formatter (#380)\n\n--HG--\nbranch : trunk\n", "proba": 1.373947640104234e-07} {"commit": "7a7661bd03c947212ee46ca598cae5cd316757c1", "message": "Fix flake8\n", "proba": 4.508962092586444e-07} {"commit": "b27398e4dd246d542c0a82ecc35da60911edc9fd", "message": "revert to dev version\n", "proba": 2.986928961945523e-07} {"commit": "b670cf7bfa0364f140a2440fad19649d84d79162", "message": "RTF Formatter: removed unnecessary floor function.\n", "proba": 1.3153456279724196e-07} {"commit": "b318ced455f13477743a6d2d81b3556695b27374", "message": "Make to_factorized_noisy support args\n", "proba": 9.977630952562322e-07} {"commit": "73118b8f1cb5ff5cdb927722b3cdff6cf3c3ab0d", "message": "Do the form-class test a bit differently to make other forms tests easier.\n", "proba": 1.363262072118232e-07} {"commit": "9eaa93e659fe03a13266cbce5d619edf3e836405", "message": "Basic support for eXist's dialect of XQuery Update Facility\n", "proba": 1.3486047123478784e-07} {"commit": "74ec202359c0b0f2e8e16875f6d53a05c1b179b4", "message": "Little bit of cleanup in the views.\n", "proba": 1.0233473801690707e-07} {"commit": "e9ee309aaa0a93f1348c70994bf915b2821c8d52", "message": "thread based concurrency uses futures\n", "proba": 4.922213747704518e-07} {"commit": "f62d340c85da68a0d03eeb1f3f6700c2ee5ec557", "message": "test connectedness\n", "proba": 2.242631808258011e-06} {"commit": "106148053a439ac2ba43e019b12950fc03f4b686", "message": "Use name from the .cryproject file as the export directory.\nRead asset directory as the first listed in the .cryproject file.\n", "proba": 1.0606175493421688e-07} {"commit": "2accf0b4228526c0f408d10aefe850a30f0db023", "message": "need the full python string to ensure subprocess works correctly\n", "proba": 1.0276940884068608e-05} {"commit": "af9006169d6f537d26f58926873334312bd6ed99", "message": "Add simple bounded cache decorator\n", "proba": 3.32570920136277e-07} {"commit": "79eaf1439b2e1b30857c3c88315fc4b1a5f968b2", "message": "Added check for modication time to local cache\n", "proba": 1.399008908720134e-07} {"commit": "ba1e71aad5db40bf499efbadd79e2e9745696e27", "message": "Add remoting_linux_symbols target.\n\nAdd GYP target for building Breakpad symbols for Remoting Host plugin on Linux.\n\n\nBUG=87632\nTEST=Manual: \"build/gyp_chromium --check\", and build new target.\n\n\nReview URL: http://codereview.chromium.org/8390015\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@107252 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 8.421390020885156e-07} {"commit": "ccd9d2579680398d401812848d5b3ffd1bee44c9", "message": "doc and training fold restriction for STL-10\n", "proba": 1.1472123162548087e-07} {"commit": "c23169b4b6557ebf83a20888bb5f9408d5e4d34b", "message": "Remove ipdb in single_request\n", "proba": 1.3670222642758745e-06} {"commit": "1fd876e82bc856d044f30903b74f19e2047009d9", "message": "improve certs error\n", "proba": 1.5956740753608756e-05} {"commit": "a5da284b70e3e04a919679475e9cf2e276430077", "message": "Fix \"--attribution\" option (doesn't need an argument)\n", "proba": 0.0014605395263060927} {"commit": "dc623ebbc17657d4b53730ba1c5054fb1def1702", "message": "Changed the interpolation so that no NAN interpolation is attempted when there are no NAN values in an array.\n", "proba": 1.2838638951961912e-07} {"commit": "8a18ba7ca58cc4cc1e771b59632084ad4ef615ec", "message": "Heavily vectorize the EwaldSummation reciprocal space code, which led to yet\nanother 30-40% improvement. Now Ewald sums should take 1/3 or less the time it\ntook before.\n\n\nFormer-commit-id: 2b482488b6c70cd3abf9bb673fdc5530227cc708 [formerly 1a9181a94d4f602b3c4d5d8e16fe4b6d5c2d18e6]\nFormer-commit-id: 15e9c5a3f19f64d9701c748f8cd9ac8cfd73d41f", "proba": 0.0002634421980474144} {"commit": "a36b3a13ccb5e0c6b1a51eac1d45989a9867bb23", "message": "Minor cleanup.\n", "proba": 1.4735500997176132e-07} {"commit": "613aa6b01dc1f71c816b71235f91e4da91a0ed87", "message": "spotify: BulkConditionChecker: raise exceptions if wait operations time out.\n", "proba": 4.343362149938912e-07} {"commit": "629d8a699e0ab944d4775bd6a31709546d4ca839", "message": "add doc string\n", "proba": 2.490516408215626e-06} {"commit": "fac2ffd9728a8eaf8a80b3d3fed326b665dff0e6", "message": "fix bug\n", "proba": 6.400653660421085e-07} {"commit": "9e6a58c4ee8a918333fdea63d83d954c06e77b28", "message": "better error logging in engine\n", "proba": 5.96814288655878e-07} {"commit": "c849ad94592cb2eaf99978863bbe8eb659754a1e", "message": "Modifications to improve pylint\n", "proba": 1.9464998501916853e-07} {"commit": "8f9003463d1ff3942261dd5f641eb9277fcd8f8e", "message": "improves exception handling 503\n", "proba": 3.8691203485541337e-07} {"commit": "df8fa135bbbb15c296ff3b0019c7b94ddf578db1", "message": "Don't send request.FILES if the form is not bound\n", "proba": 2.4311694346579316e-07} {"commit": "135252934be411f94235d9ffc89228373e7b7b7d", "message": "API calls.\n", "proba": 4.6751796389798983e-07} {"commit": "38cfda8b8364665b1031a91ef75a4462c7effdf2", "message": "Modify tolerance to use reciprocal lattice vectors\n\n\nFormer-commit-id: 07df532c22b98a4fc5d78a4606a3c85087b884d6 [formerly b160f0777788b7782dc6415cba362cc4012a57e0]\nFormer-commit-id: 5a617038361d3ba120dc8ecda13296cd9e32a25d", "proba": 2.415873677819036e-05} {"commit": "20cbe465c1f18d0f79d339ff87f2c5a0064ef919", "message": "fix-for-issue-52\n", "proba": 3.8457606024167035e-06} {"commit": "6535755cfdc914efc5e1efc6a89ed9dca7c78b87", "message": "Correct docstrings of result_suite/sample.py\n", "proba": 1.673492306508706e-06} {"commit": "a658bf09360dc83e765c313d082faa5d36b2f708", "message": "modify index_metadata interface to conform to api\n", "proba": 3.44911995853181e-07} {"commit": "ce186aadd6e0ecfe0dfc7445237d08d39ed36595", "message": "Simplify\n", "proba": 0.9999992847442627} {"commit": "1c88a828ee2df37148b9744500f700d20b512095", "message": "Fix for issue #1; devnull\n", "proba": 1.7824957865286706e-07} {"commit": "6e926f1b1be8df9dd7cfb18e8bcdf9cb51895d06", "message": "Use the stable pika egg in the server's integration test\n", "proba": 1.9096832204468228e-07} {"commit": "573f1f6f7c8a73dc430bc08967b12c335e1309fc", "message": "fix CI TypeError: tuple indices must not be not str\n", "proba": 0.9988456964492798} {"commit": "85ab88bbe9ac7e7135eeba21b472e177d0d186f1", "message": "restore\n", "proba": 2.1085627395223128e-06} {"commit": "280efcbea60af213e627da08463da986849cb077", "message": "TEST: Odd test failure, possibly due to old pytest. Fix it anyway.\n", "proba": 2.956779781015939e-07} {"commit": "905f78643684295bddad186b69c35c4f8245031f", "message": "Handle KeyboardInterrupt\n", "proba": 4.3392237785155885e-06} {"commit": "422427e035244fca913f6af3d224ee72d70e26c3", "message": "Added another test to the ptypes.dynamic library module for verifying that union fields have their sizes calculated correctly.\n", "proba": 1.0364416880292993e-07} {"commit": "e098a28e4955a6046d047b9346fc17693983e46a", "message": "[fix] Variable test\n", "proba": 9.001058742796886e-07} {"commit": "a57ce3724b652e7ca91bca91cc2923370918ace7", "message": "Only add the SDK to sys.path if it is not already importable\n", "proba": 2.0121686361562752e-07} {"commit": "1def74f2ffaa88bac37a4ef9ae71569475050308", "message": "get_family now supports 4 indices for hexagonal symmetry\n", "proba": 1.6250145051799336e-07} {"commit": "326a0abb281d2127b664dba1928e94e1fd3e82a2", "message": "if no TSD exists, report that instead of printing a blank entry in its own tab column.\n", "proba": 1.0542925110712531e-07} {"commit": "f655e1e7705f5062186543e0e15658cfded2c4b2", "message": "Fix bug classifiche for uncomplete yrs\n", "proba": 5.43067244507256e-07} {"commit": "c5625e960fd20c8bf31c0b50818b6a0aed8688cf", "message": "cleanup and typo fix\n", "proba": 7.015323149062169e-07} {"commit": "996a84bdfb4edeff10da262ddb9d664a2a65ec2b", "message": "Fix indentation\n", "proba": 0.0172440055757761} {"commit": "0df292fbb34a66ee66fce919ea63b68a5f9eff1a", "message": "Set up data structures for parsing projects\n", "proba": 2.775955863398849e-06} {"commit": "63b4a66f0c549c29968358419bd56f35445d0661", "message": "Fixed django.VERSION after NFA merge.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%407968\n", "proba": 2.912621084760758e-06} {"commit": "764ed8e2892c493a8bf612a99e89b82e1c6133ba", "message": "added new get method to retreive the orientation list\n", "proba": 2.7959782755715423e-07} {"commit": "9280490ab2a29d447e093004cb001b179d424796", "message": "PEP8fy codebase: eliminated F401 flake8 error\n", "proba": 0.000151795320562087} {"commit": "6a3c4485e6b767a4d58c7ccfb409c0f16796198d", "message": "minor update (removing extra ())\n", "proba": 3.06737121036349e-07} {"commit": "2c253cda8dc44f88f8693e4345cdab889fc124bf", "message": "Simplify default option\n", "proba": 1.3111731277604122e-05} {"commit": "9239ef60e310f77f68f125eb0c60a2de859e02df", "message": "Trunk is now 1.2.1 pre-alpha.\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@13286 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 6.884602953505237e-06} {"commit": "6e26e8ad9a9b03e5dc7b8664cd63fef347941ae7", "message": "Fix test_article_image_galley\n", "proba": 7.411220576614141e-05} {"commit": "3aaa40eb800a5ebef01eb49deb657ca3fa123a2c", "message": "Update doc test\n\naddress issue #175\n\nUpdate doc test\n", "proba": 1.7899056103942712e-07} {"commit": "75a93ae0e55e240a5f8595c0d58d15b1d846948a", "message": "Add support for spectate after starting the game\n", "proba": 1.4796658831528475e-07} {"commit": "877853edfda6cf9ff8b1fc13ccd3b614235ac4ec", "message": "[FIX] Typo obect -> object\n", "proba": 8.046497441682732e-07} {"commit": "da5ecbf7cb6af7efa0cc338920f912aa9d3a4095", "message": "Format\n", "proba": 7.663883479835931e-06} {"commit": "1e6b555c92fd39c9e11b5a27600a87ac964eb2bb", "message": "[3.2.x] Post-release version bump.\n", "proba": 1.0005037864857513e-07} {"commit": "550c2ccdb8a597cb9310d09ee9c24e93467ee8a8", "message": "Added @staticmethod decorator to the _parse_binary() method\n", "proba": 2.0330431027559825e-07} {"commit": "ea26b6aab39dabcff63f0de3a328165248a01f34", "message": "Fix bootstrap of /system_configuration\n", "proba": 8.646806236356497e-06} {"commit": "f4d4b5d6d39555151714062b26a60bcf4e8d766b", "message": "Reorganize to share more code\n", "proba": 1.1773299490869249e-07} {"commit": "b5d95199ccbaf609ad059c365e8eb49ebf97721c", "message": "Fixed django.VERSION after NFA merge.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@7968 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 0.00013929881970398128} {"commit": "c8e2834dc547d4b0b92d24d2419e5b46fcff01d9", "message": "Add stopping condition in simplex_downhill\n", "proba": 3.88228872907348e-05} {"commit": "5c12dd231db138aa4834c6fc4caeb8f3b4152ead", "message": "[IMP] modify update translation defination now it will check iso code for file name (Translation)", "proba": 1.0036114872491453e-07} {"commit": "e172c22805ab0a91f3080dbbdebc30c5fe56540a", "message": "Added missing import os for direct invocation\n", "proba": 1.5912102924175997e-07} {"commit": "b9d16b8645b1e379a4b3d119b41ad732b179bb0e", "message": "Improve efficiency\n", "proba": 0.00017502548871561885} {"commit": "b149028fb8de44b85ddc957b619ae5529e5dc545", "message": "Separate option to build cocoapod zip package\n", "proba": 1.7414002684290608e-07} {"commit": "86a19a9621293f471759eb07824ac1e484170630", "message": "Renamed enclosure_url, enclosure_length and enclosure_mime_type to give them an 'item_' prefix, in the new RSS framework\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@1141 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : 046eb22ad02429c30cc9bb74065857ef2b5d09fa\n", "proba": 0.0002974192029796541} {"commit": "0bc71dec4336c2fbba4cad9326a475c887a39cb0", "message": "_extract_letter_mods returns Modifications instead of generator\n", "proba": 1.3398391729424475e-06} {"commit": "acdcf53ce59d0dcc0aa2c6ce6f025676951d496d", "message": "[FIX] remove duplicate and buggy method\n", "proba": 6.532630436595355e-07} {"commit": "b8d783fdcd8a36daa90a1f2816eaf06a4f49e883", "message": "Fix encoding errors in log messages\n", "proba": 0.00034584090462885797} {"commit": "f48f91463e44c5a405677bc545114cfb5d53587d", "message": "Fixed #12693 -- Improved error handling when there is an error setting up the database router chain. Thanks to dhageman for the report and fix.\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@12305 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 6.804543772886973e-07} {"commit": "680ccd52f8e6f965bd79855cb4fbd926e5615d20", "message": "networkclustering: Aggregate max_hours in proportion to p_nom and enable customization of strategies\n", "proba": 4.5748430466119316e-07} {"commit": "67d6eaa18bb7b60bdbc88338cfaf9931a8811fc4", "message": "python: env vars\n", "proba": 0.0008218257571570575} {"commit": "14cae3b965041e74e706c11095032bcd6726c7b0", "message": "updated documentation, see issue #44\n", "proba": 1.1432128843580358e-07} {"commit": "10b4471fc8d61c6c06f8308af45e80bec9403476", "message": "Coolisf REST API - 0.1\n", "proba": 1.6748927578191797e-07} {"commit": "6854cdd2d540c5848d53b5d939995f56f3014f5e", "message": "Frequency width bug fix and help messages fixes.\n", "proba": 1.100568880474384e-07} {"commit": "6418fe46defc0f6686b439321428cfc7080bebec", "message": "change _load_link_args to _set_link to avoid confusion\n", "proba": 4.261672074790113e-06} {"commit": "edb23a817fc46d6253d1cfc1af69ee78daa859bd", "message": "refactored main function and saving aps corrected ifgs\n", "proba": 2.5519560153952625e-07} {"commit": "fd8b4a95d454fc3ad9c295cab62be3e1a1482ae5", "message": ":package: update sgid-index\n", "proba": 5.073417241874267e-07} {"commit": "b1cc4a27968f8e8f4d908f85c9bdd1c0651d3f2d", "message": "pep8-ing\n", "proba": 3.3878086469485424e-07} {"commit": "880ed36c5014b1d59d51d128cac4b429db82f108", "message": "version 0.1.8\n", "proba": 1.4337039146994357e-06} {"commit": "1110a361c9f17c47fb9bbc14a5ef5682234341d8", "message": "ipdb: do not run `set` on interface kind\n\nThe interface kind can not be update w/o the interface re-creation.\nSo skip interface kind updates.\n", "proba": 1.289662208137088e-07} {"commit": "0f598361651d19401d261cc6294bdfc7d6d240bb", "message": "Update (in place) when constraint annotations change.\n", "proba": 1.1188282655894e-07} {"commit": "5e40c9f481d481a22d7443231a8afdc39542957d", "message": "ipdb: `wait_ip()` -- ignore_link_local\n\ndefault `False`\n", "proba": 3.470580054454331e-07} {"commit": "222c8e2ca55f1b4c1104512cfc57769697f09b9d", "message": "Fix typo that printed garbage", "proba": 0.9999759197235107} {"commit": "dc694bfdecec4e0f96efc660eaa736192aa09abd", "message": "Add list abundances and edges to namespace/name iterator\n", "proba": 3.270354227424832e-07} {"commit": "c9b79a0c868eeb87731e5fccf69d9003aff79760", "message": "STY: spelling\n", "proba": 0.00017944854334928095} {"commit": "92c458bbfb0a63d81d1cdecb833bdc015978fc2e", "message": "updated VERSION for 2.2.0-RC1\n", "proba": 3.0304499887279235e-07} {"commit": "502db23150c604d672be0e89145ea0a46c58c4de", "message": "Daily work autocommit\n\ngit-svn-id: 285608342ca21a36fbe1c940a1767f009072314d@10911 9cc54934-f9f6-0310-8a8d-e8e977684441\n", "proba": 4.4256663045416644e-07} {"commit": "71b81632c8bb55521c2be81b95f75727c1c41976", "message": "retrieve a change for Sphinx 1.5.6\n", "proba": 1.3962326192995533e-06} {"commit": "b9a5abbf76218e55421264b01d2cd83b933816f0", "message": "Filled in more of instructions.py\n", "proba": 6.22663310423377e-06} {"commit": "3bf26c2c2b2c2048925a5bc883503ab8c56d0a2c", "message": "Remove confusing default arg.\n\nAll \"unlocked\" Lock objects are equivalent, so there was\nno correctness issue, but this is clearer.\n\nAuditors: pl\n\n(sapling split of 1e0740575afb2b29e08f04535690997e440827ac)", "proba": 5.486032250701101e-07} {"commit": "672d029e1d2bff6ab2fbab9b77f453a624c989fe", "message": "- Python <= 2.5 compatibility\n- start tracking RFC2217 flow control (no action yet)\n", "proba": 1.0946651229915005e-07} {"commit": "ca6531fe7784544747543811818ed022e2315423", "message": "menu test upd\n", "proba": 7.136203521440621e-07} {"commit": "9866912972b3939023fc9e94fd934a5adfb3fef9", "message": "[#5650] ticket:323 Fix ordering in paginated results\n", "proba": 5.349054390535457e-07} {"commit": "5d861229e2a872ff96d0d226f25663445e75cfe1", "message": "Define the variable 'data' as a 64 bit integer that will be able to hold the complete value.\n", "proba": 0.0003482215979602188} {"commit": "912b1e33eff873a07ca089c69fef51bf05e79051", "message": "Add User and Group to admin custom site\n", "proba": 1.512449898655177e-07} {"commit": "521e32db633de205f6a213ca8c44e3107a7b4093", "message": "More mods for 'view_language_wordlist' in views.py, to deal with empty HTML forms.\n", "proba": 9.766041131342718e-08} {"commit": "16bc1a1934e516ec1a74d9eb2b12e63384ea79f5", "message": "Also allow jinja2 templates\n", "proba": 1.3760759998149297e-07} {"commit": "60613a8729122012c3f6739550de981d01087326", "message": "add game name param\n\n", "proba": 9.260515412279346e-07} {"commit": "f94476df338379312fa6ba64cbe9a12c709637fc", "message": "Fixed package naming, laid groundwork to separate our two flavours of viewers.\n", "proba": 9.672056222598258e-08} {"commit": "c0fc14f3f9f33e20650113803f8a0a81dd49f3ec", "message": "generate result.json\n", "proba": 0.9985793828964233} {"commit": "676412e46574bdad82532ff79013a885893fa0e6", "message": "pep8 ctci_coin_change\n", "proba": 7.025237664493034e-06} {"commit": "bd236939b81d51ee9ccbc7b7fd300512d666609e", "message": "removing unneeded code\n", "proba": 2.038895217992831e-05} {"commit": "4eb1519a4558eb45db5a38a8ea1b4d6510ba46f1", "message": "Fixed an incompatibility for Python2/3 with WebConsole app\n", "proba": 6.423603622351948e-07} {"commit": "a6e312d129b04aa21c9b380351d100aa007457c8", "message": "Avoid looking up non-protein UniProt IDs\n", "proba": 2.1125735656823963e-05} {"commit": "1883b1ad07fe3d983fae73dcefb6bef04663287a", "message": "Fixed issue #38\n", "proba": 1.4714464668941218e-07} {"commit": "7f50875955bd6d65b379327e9384149f5beeec80", "message": "adding results to init api queryview\n", "proba": 2.3070462873420183e-07} {"commit": "80503950d6fe394426c9b43545604cf5239e76c5", "message": "Ajuste de fechas y campos a formatos de CKAN\n", "proba": 2.1685966089535214e-07} {"commit": "917c0c58a0aaa62639d9b98d4aad88b3b8d55d2a", "message": "mark as skip\n", "proba": 0.999995231628418} {"commit": "1131ae505127ad1c023ffacfcb400319cc7ab54a", "message": "solution test for linearized nonlinear system still fails\n", "proba": 1.6245573419837456e-07} {"commit": "44434a9e7b56f4931e19823784b3321c150d30be", "message": "python: conform to flake8\n\nmostly\n", "proba": 2.8215879865456372e-05} {"commit": "8848e0559cd6cc05fbc74c80042b192724c3be44", "message": "examples/hello.py: Greatly simplified and documented\n", "proba": 1.3886686645037116e-07} {"commit": "116a041e5d0ea64e31fd091b50184dfdb0a96661", "message": "make addresses unsigned\n", "proba": 0.9994346499443054} {"commit": "4a09d25a90016a42f669f8e3f49d521c2fe24b12", "message": "One last little thing, I swear\n\n\n\ngit-svn-id: 4561c0a8f080806b19201efb9525134c00b76d40@5423 348d0f76-0448-11de-a6fe-93d51630548a\n", "proba": 3.3467827051936183e-06} {"commit": "ab980a5a0ea1b08bb05b1b32804e2010d0c7ca5b", "message": "Refactored message assertation\n", "proba": 4.938844995194813e-07} {"commit": "547e729d1f17a159198fca67341101c8ee2820a1", "message": "fix bug in thermostat documentation\n", "proba": 2.6866385383073066e-07} {"commit": "e51857660cee7521f65820d8f6f48ed730e01a74", "message": "add guess_column_types\n", "proba": 7.934046880109236e-05} {"commit": "e0f8da0c49d507683fa850495b9ab8c81fdf0a39", "message": "Undo comments", "proba": 6.123947855485312e-07} {"commit": "cbaf43d4616c6be43b09789e1979d592e36b6b25", "message": "Minor fix the vivado project from core.\n", "proba": 1.1542005751152828e-07} {"commit": "43df955943a914e93ec9050352e72d01bf2af0e3", "message": "made file for testing\n", "proba": 1.389387875860848e-07} {"commit": "09ec79ffc3428d69f1cd4373b4050029788f17f4", "message": "Fix merge\n", "proba": 2.2104543404566357e-06} {"commit": "db8016729e14f1a9761a2b2d640490903a81aec1", "message": "improved DOB distribution\n", "proba": 9.841377277552965e-07} {"commit": "6888f264abbcd9a20772e99c52e37ab5eb65b09e", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "5efe24880fd6b3cd796c309c91569af53ac1386b", "message": "version 0.0.24\n", "proba": 1.297951712331269e-06} {"commit": "d87596c19951f8ee1925ce1d70b379ccc1ff16d5", "message": "Correction @ line findCleavagesSites:292\n", "proba": 1.623721033183756e-07} {"commit": "52f5a6be42650e101a396075a5a3d5f6ba1c9c75", "message": "Added basic validation\n", "proba": 1.1986917058948166e-07} {"commit": "89629a378f0f36da7ba629f812782bd058fd9e33", "message": "Fixed import from nhmstats module\n", "proba": 1.981193946676285e-07} {"commit": "1a8f1cbe973094c06d8f618e998e606eecab617f", "message": "return actual primitives for booleans, instead of ASTs\n", "proba": 2.240078174509108e-05} {"commit": "730d0c2d97982bd5b37b72585de532d1bb554ce1", "message": "added TODO for improved index definitions API\n", "proba": 1.781652940735512e-07} {"commit": "283f051be5398cab96569d5726f11ae2b5fd497f", "message": "in_parser_section --> current_parser\n", "proba": 4.410973417634523e-07} {"commit": "d9c838a38e61a98f30088f4df31a1277546113a9", "message": "velib_python is now added to sys.path in the code, no more export=PYTHONPATH etc.\n", "proba": 1.0523115889782275e-07} {"commit": "72113f9cf3738b9fd349551dfabda479a0893a76", "message": "Refactoring\n", "proba": 6.64367371427943e-06} {"commit": "1173161d77766a75c38acb37103f08be8c89caa3", "message": "Removed commented out code.\n", "proba": 1.1227809437741598e-07} {"commit": "1db8627731a2e23693cd9fe38a455956b783c0cd", "message": "Update NoticiasTecnologicas.py", "proba": 1.976568313466487e-07} {"commit": "638043f9ba75a3fb2a7e4574a9bde7b38d5faf5e", "message": "Removed unnecessary no-cover pragma.\n", "proba": 2.6161038135796844e-07} {"commit": "afc5b784dbb165d0ec17cd0978c0e28dbeaec3d0", "message": "New basis-generation code (half-width, any basis width, more efficient).\nNow using (n, sigma) instead of (n, nbf), determining nbf automatically.\n", "proba": 1.3981126301132463e-07} {"commit": "9052b74c54429076e33b30b7ada04587d5c39e29", "message": "Style: better comment placement.\n", "proba": 1.1556588219718833e-07} {"commit": "5066efaec3fbd192e73e0223e0a6b2a48801aed6", "message": "Split the welcome message if necessary\n", "proba": 0.9999994039535522} {"commit": "65b769b78b3fa99d0effa54619adbd720d8ef1e3", "message": "Remove unused leftover variables\n", "proba": 2.0378545286803273e-06} {"commit": "d7e087132ba5bf0c5c731f0c7ca2fedf8564a99c", "message": "Added new dev setup instructions to dev_setup.py (#9095)\n\n* Added new dev setup instructions to dev_setup.py\r\n\r\nFixes #9073\r\n\r\n* print at start/end/error\r\n\r\n* Use logger.warning and restore rest of script\r\n", "proba": 1.7928680051682022e-07} {"commit": "7531ff87135555b241f38431093d079e4f8aee5c", "message": "unittest -> bipy.util.unit_test\n", "proba": 1.0998633115377743e-06} {"commit": "58e73922a9f199e44176c18c999a448cc66f5fac", "message": "issue #125 - fix py27 failure\n", "proba": 1.3457781733450247e-07} {"commit": "916b7ae59b4a9e47f33c9b700680b67411913c37", "message": "added tests\n", "proba": 1.7831912657584326e-07} {"commit": "55a59bf71745cf6a24295f087905319df830c16b", "message": "fixed issue with pub_date in feeds\n", "proba": 2.1538228622830502e-07} {"commit": "d31f28511433304ddcb83bf1a551390231047b5d", "message": "Include pandoc. Refs #579\n", "proba": 1.158427380687499e-07} {"commit": "d217917b68ad15a02d51f3e5dd5569264fcb66e2", "message": "rm audioout.py. obsolete my ffmpeg.player\n", "proba": 0.9996606111526489} {"commit": "f68a10fec5d4dbc743c5d84f8b26d122e81b26e4", "message": "Use standard urlencode() for encoding URLs\n", "proba": 5.7867018767865375e-06} {"commit": "8188008cf1bd41c1cbe0452ff635dd0319dfecd9", "message": "Add trailing slash to url\n", "proba": 4.358708338259021e-06} {"commit": "e4fd46079286160898cd989f88721697b25e1fc0", "message": "py3 fix\n", "proba": 4.453236783774628e-07} {"commit": "91c2fb4537deb10698f3833874d61c5625984c1b", "message": "for gate added road that belongs to in comment\n", "proba": 1.3180957125769055e-07} {"commit": "7128b6c1da6715689279fa9887dc9faa61eae05e", "message": "#7 read .env + fixed admin url\n", "proba": 2.0591276950199244e-07} {"commit": "826731abbb7dd24bad52281abb002dafc25aa5be", "message": "Not global\n", "proba": 0.001271887682378292} {"commit": "bd1ee9704e33d00628572f640edf03ff322fd837", "message": "Feature: only close the commit view if still open\n", "proba": 3.24746110891283e-07} {"commit": "351c9b0d8f7152867ba0af6ec8b9953db76ecd8a", "message": "adds some debugging output\n", "proba": 3.056935838685604e-06} {"commit": "fb9683cdca6f696137cbca6ac62eed25c46523c0", "message": "load pretrained_model when it is not None\n", "proba": 0.999974250793457} {"commit": "b7b9209ff9c57288b5a3a050bab74ed75b96eac6", "message": "Don't rely on automation too much...!\n", "proba": 1.2928899195685517e-07} {"commit": "60b2d812b71fd6e9ab0b464ee9b3f42a2ef16ed2", "message": "orcsome: fix imports\n", "proba": 1.5203185284917708e-05} {"commit": "4637e07734473b16cec63df5f7b55941312babb5", "message": "#mesondefine supports strings.\n", "proba": 1.2952989436598727e-07} {"commit": "66568b681307835aa36da291581eea7e29d22d54", "message": "Fix BUG in backfill\n\nExtra argument for isBuildSuccessful\n", "proba": 7.332298264373094e-05} {"commit": "b0e081b188fbafad4ba923b7d4e758b1f0786ce8", "message": "Fix worldwide result\n", "proba": 5.00227470183745e-05} {"commit": "2dad282604de67c3f2436e15f03ed854d7111d15", "message": "Throttle project emails\n\nOnly send email's about failures a maximum of once every 24 hours per\nproject.\n\nChange-Id: I71f42474f7cc8b1cfd3356569cbf09e264fcd9e5\n", "proba": 2.2633937533100834e-06} {"commit": "76e73fd9502dbd6f179dcea2fb4fd4d3ef6c913c", "message": "make fabfile working correctly\n", "proba": 8.00791440269677e-07} {"commit": "c4ea3ce306d4464ac0bc80286a60689972c7bc63", "message": "Test isolation.\n", "proba": 4.030253251130489e-07} {"commit": "828c67695d85519e4435c556c43ed1b00985df05", "message": "Workaround for Windows 10 console bug. See #2709.\n", "proba": 9.970823100502457e-08} {"commit": "4d4b497dcc6afeffcc9455ac6013a35c824bc876", "message": "Update docstring for new host argument\n", "proba": 2.5494770738987427e-07} {"commit": "977ea51f864b001da90641b9351205ad218e5852", "message": "Quieten flake8\n", "proba": 1.8753327424292365e-07} {"commit": "444b137975b3053db8d1d7c175cc7a0550c46a8f", "message": "Renamed deprecated 'chat' to 'channel'.\n", "proba": 2.802978542604251e-07} {"commit": "288d476e20e40ae14809917602cff313bafd86aa", "message": "yield from traced function only if response is a coroutine\n", "proba": 2.107436785081518e-06} {"commit": "672f622dfd7d5613688b171687eabbefdc5af806", "message": "dont restart as often\n", "proba": 1.8455155270657997e-07} {"commit": "cd99166e5faa37135ad398ce9a42982f19ebe3cd", "message": "`Task.recover`\n", "proba": 6.685100288450485e-06} {"commit": "21509044b25501d0400ac4c6672839baf55daad3", "message": "Fix DeprecationWarning\n", "proba": 9.67720211519918e-07} {"commit": "4c38e9745fade6fde1cc2a5255bd939c3564f1b6", "message": "reformat example/mgpcg.py (#584)\n\n", "proba": 4.121661277167732e-06} {"commit": "3bb76a5be590a40451ead6c926d19ea2d705ad03", "message": "Don\u2019t rely on unstable 'const fn's in rust-mozjs, so we can remove them.\n", "proba": 1.0112938753081835e-07} {"commit": "5c64181db94200158e727d976b4ed0e0d056e390", "message": "mise \u00e0 jour\n", "proba": 4.650735263567185e-06} {"commit": "746fa844b6085dedc72b43a9c77b1d8e2b8f2b87", "message": "logs transferring as well\n", "proba": 1.81822429112799e-07} {"commit": "bc6c5a87bbb85368da9facd7970d354799b63e22", "message": "Can load from csv into barstock now!\n", "proba": 1.0756505730569188e-07} {"commit": "ab5984675088d2258c638fa76f685019a2c1e18a", "message": "Add distinct to ResearcherDetailView queryset\n", "proba": 4.515231921686791e-07} {"commit": "063acb18283becdd917607ccbb06109310e18dbd", "message": "Code comments", "proba": 3.125293517314276e-07} {"commit": "021296652484143c21ac99db70b27e79ce65d2a1", "message": "fixed some bugs and added the initial steps for .phasespaceplots\n", "proba": 1.4750938248653256e-07} {"commit": "9a62a3ad8e9e3724f56740e51b0884a57d92f6cf", "message": "Update examples for printEvents\n", "proba": 1.893432823862895e-07} {"commit": "04fdeaf347010cffe6c4877bd9462b2c28f56d67", "message": "parse_config takes ConfigParser instance as well as a file location\n", "proba": 2.841910600182018e-07} {"commit": "f6bbce3eecb72814192e9b220cfb6b5cc3e62048", "message": "Fix for when field.choices is an itertools.tee (which can't be passed to random.choice)\n", "proba": 2.745617564414715e-07} {"commit": "6eeeea2cca01f739ec8ec52decbcc4c39ad92db9", "message": "UPDATE: add distance representatives to pdb table\n", "proba": 1.4250409208216297e-07} {"commit": "459dc1110b8336922ae320b696765baeb5fbc33f", "message": "FIXED randrange mock\n", "proba": 3.4368756018920976e-07} {"commit": "e523352ba6630e320fea4e79ed9394c6a14daa7c", "message": "Add ability to give actual types to override simprocedure resolution\n", "proba": 1.8367188658885425e-07} {"commit": "902dcb4bc19059f77b8b62035ae63406b5aaf5b3", "message": "Remove some NotImplementedErrors and document the remaining\n", "proba": 2.0134508815772278e-07} {"commit": "9838ae3e17f3edf320722d0dfe53fdff1b461d33", "message": "tagger now previews track index changes as well as title changes\n", "proba": 1.2566063389840565e-07} {"commit": "12d67d769658f5c0a072ad5eb979b04eebcceed9", "message": "fix code style\n", "proba": 2.166880040022079e-05} {"commit": "9816862c987912fa3b760f4c4c32f597fee37178", "message": "import sys for the exception copying\n", "proba": 2.2694686663271568e-07} {"commit": "587b048d64ac0da41adf5ce3c7ac3571e0cc19a9", "message": "clean for meta name as well (for lesswrong)\n", "proba": 1.1963824420035962e-07} {"commit": "1553a21b81b26862de82270e162373fda3cfe8d5", "message": "Switched get_numpy to resliced_array function\n", "proba": 6.407212822523434e-07} {"commit": "f2e866ea822f69b41ae1c93cb948ab17dfdf0938", "message": "added keyerror exceptions for unimplemented lammps types but we need to handle this in a nicer way - see #159\n", "proba": 1.2033270024858211e-07} {"commit": "5516c002e77b071bb052677405b29f15b89961d1", "message": "And mention what changed.\n", "proba": 1.639023707866727e-07} {"commit": "11aec5660c52ad914f94e6f90015950fbd2011b6", "message": "Format\n", "proba": 7.663883479835931e-06} {"commit": "6c89f71a110a5a11f6051d4ef09273991513aa75", "message": "Delete annotations.py", "proba": 1.4074976206757128e-06} {"commit": "58e6617fa78b18c31460962511ab83af430cc326", "message": "Fixed an issue with setting VALID and SAME paddings for convolutional layers\n", "proba": 1.6251927092980623e-07} {"commit": "711a36ff0d485523659caab8ec03d37b58aa4559", "message": "Set metavar for \"--jobs\"\n", "proba": 1.5186562052349473e-07} {"commit": "fcbdc75e9b14697504983f735e1600a73a01d78e", "message": "pep8 fixes.\n", "proba": 1.2504186486239632e-07} {"commit": "99352c5e7094bdef2fbd830dd7fba3f6a379e2b3", "message": "fix(back): properly return osm id\n", "proba": 0.0003763520217034966} {"commit": "1710e2e8e6a8cb265525012cb062cbcf88ccee8f", "message": "simplejson.dumps() creates a list of all the results of iterencode() and then joins it into one long string, which we then print. That's a waste of effort. Instead, call dump() and pass sys.stdout. This will use the iterator and print out each section instead of making one giant thing up-front and printing that. More memory efficient.\n\n\n\n", "proba": 1.2505093138770462e-07} {"commit": "ea89be5f4a2ef52c70533d1c3fbde756063fd2ff", "message": "make sure we encode data as utf8 before checksumming\n", "proba": 9.49049820064829e-07} {"commit": "6aaffb62cff372eb9b37dcdc2be7a5e98d4a366f", "message": "version up\n", "proba": 3.0471426271105884e-07} {"commit": "d7142932973c8a5c0b93bc535c331f73037036bc", "message": "Fix incorrect handling of unicode IDs when building URIs.\n", "proba": 3.103548920080357e-07} {"commit": "8a92d8940c3e9cc89d5b4b1309d7cfdb4659912a", "message": "arty: reduce to minimal (using litex EthernetSoC)\n", "proba": 3.373934873707185e-07} {"commit": "00cd6d1ef0e33e16ca4b9c5f03fdb75a4a2d148e", "message": "ver++\n", "proba": 4.95534623041749e-05} {"commit": "42f5bbc095f373abfc006c78bf7c62d404b7ecb2", "message": "refactoring to make it a class\n", "proba": 6.649936494795838e-06} {"commit": "30ab118d0448cf2a6e499298eec2eebe29e720f9", "message": "remove trailing whitespaces\n", "proba": 0.9999616146087646} {"commit": "8c7fb82afb4f1262adf0f292104378e5a20c7e50", "message": "Codegen: user lower-case letters for C# class directories (fixed code-generation bug on Linux)\n", "proba": 1.699312974778877e-07} {"commit": "fbe41fcebf88968699dd46d0b06d73163e3df077", "message": "Update main.py", "proba": 7.280797831299424e-07} {"commit": "c7bee2e5c976a5b7ad2258c4f7439f1b95dbe32e", "message": "Simpler way to get correct parser.\n", "proba": 1.4018108629443304e-07} {"commit": "eb21f238cf2ab3efe5b0aa1cce4ba6500e71cfe4", "message": "Updated Sphinx documentation URLs in the Sphinx configuration file.\n", "proba": 1.1173183622759097e-07} {"commit": "79bf8c8e0170f8bcfb7d9278e4b994356030ff27", "message": "`multiproduct.batch` was not defined as an entry point for the `bloodhound_multiproduct` plugin, so it was being discovered as a single-file plugin. Refs #596.\n\nThis is similar to the issue resolved in #582.\n\ngit-svn-id: 5633281caa5e9404329cce92d0b6acb034caef48@1513214 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 7.347733799178968e-07} {"commit": "1ed893e1db0b0b09cbf0248911e3f9619777ec7d", "message": "checkpoint: percentiles/median nearly back in.\n", "proba": 1.320991316333675e-07} {"commit": "d72dab2a07a381fc9fc23f27dfa3c3bf4db06470", "message": "added additional parsing (and merging) of Blu-ray MPLS file\n", "proba": 2.2260358889525378e-07} {"commit": "55ad9cb063f064ce3a756ec8f031357fe0c385ab", "message": "bugifx: expanded nets with reordered and dropped codes.\n", "proba": 1.0136479033917567e-07} {"commit": "c085f6f5eb51473de87a57b372f61b7cc24d0b14", "message": "Explicitly order the commits in the CommitListField\n\nThe `CommitListField` previously retrieved the `DiffCommit` objects in\nan unspecified order, which resulted in them sometimes being listed out\nof order, specifically when a MySQL database was used. We now\n*explicitly* order the query by the ID so that the commits will be\nlisted in creation order.\n\nReviewed at https://reviews.reviewboard.org/r/10447/\n", "proba": 4.815386205336836e-07} {"commit": "b8a8b7bc5d17e99fc9179fb4012d28a3ccf5d1ed", "message": "removed old code\n", "proba": 0.00010876605665544048} {"commit": "9876465c0639af71dfd356f4b0d0929fa1ee7f58", "message": "bugfix ( A COLON (!!!!) WAS MISSING IN A PANDAS INDEXER) and some error handling.\n", "proba": 1.0313696918728965e-07} {"commit": "d603879978349719b0758936b7e657bf27461639", "message": "updated to use custom dataset for testing heterogeneous graphs\n", "proba": 1.4693486605210637e-07} {"commit": "ac084c574b58771bd240af3fa4b4a000fc742229", "message": "slowlog_long: update to handle different kinds of files\n", "proba": 4.430404487720807e-07} {"commit": "5dd73ca95ff06a7b53309def5fea3a4ec9692b3f", "message": "[IMP] \u6dfb\u52a0 company \u90ae\u7bb1\u9a8c\u8bc1\u6d4b\u8bd5\u6570\u636e\n", "proba": 1.2886810907275503e-07} {"commit": "47854856322cc16bbfeb96a581208d41e6c4466e", "message": "return from dumps\n", "proba": 3.3652389674898586e-07} {"commit": "d26f6395e6e8adb22c21195b5dfd78c7aa0f040c", "message": "Use content width when only left/right or top/bottom is given for a Float.\n", "proba": 1.1067240279771795e-07} {"commit": "4c5ec09343cb046bec3be282c7036aac7ed8a004", "message": "fixing condition check for fixing dict props, test\n", "proba": 1.266111837594508e-07} {"commit": "d87ac000b3ec902eadfc1d0dbb1e0bc7946b8171", "message": "Mod ansitester\n", "proba": 3.413464924051368e-07} {"commit": "1162f05a805a0a5f554dffb6fbdc8e14992e358a", "message": "cleaning up lint errors\n", "proba": 1.6739008970034774e-06} {"commit": "c206936120519912762f30eb269f1733b5593bf8", "message": "fix window edges\n", "proba": 8.118412893054483e-07} {"commit": "265b880ca373e5915d594d04d013b6beb18f1e2c", "message": "debugging csrf forbidden error \"ValueError: Current request matches no route\"\n", "proba": 1.1388883791596527e-07} {"commit": "da91897373423c48b86a51e4eebf365fc2f992e0", "message": "some nicer printing, int formatting\n", "proba": 1.5637033357052132e-07} {"commit": "360b1ed49af082038225793b19657e6dd37bdc7d", "message": "ref(controller): move response into try block\n", "proba": 1.5343802033385145e-06} {"commit": "949f346fbfaddf33efab28f25d41741548a91245", "message": "var name typo: n_gramming\n", "proba": 0.9995321035385132} {"commit": "03d32ea8e4c9197a3155227ad33d44f200fe655c", "message": "disable critical updates until we support them in rTIS\n", "proba": 1.4337994969082501e-07} {"commit": "51e91994721034c24ceab1919f5ebf7e0ced056c", "message": "fixed inconsitent treatment of root in govrole\n\n\nFormer-commit-id: 758af96fbd9556e12d6066a7e2c28010eb9a48af [formerly bd94375b30e7376f8ccb584a35f25d5ee89984ab] [formerly 758af96fbd9556e12d6066a7e2c28010eb9a48af [formerly bd94375b30e7376f8ccb584a35f25d5ee89984ab] [formerly bd94375b30e7376f8ccb584a35f25d5ee89984ab [formerly ee9da2aeeac2b44d97582a917d2e602e65932747]]]\nFormer-commit-id: 2926cbacde988f7622cdd673192daa1c8dac96a7\nFormer-commit-id: 79b9c4de46219eb7558f37cdf406f5a4f69b026f [formerly a4d54ee5a613c0cabc14683093f7b76192d9c368]\nFormer-commit-id: 4ce9b842cb68d11583071b3cd5712c9935e82e2a", "proba": 8.993035862658871e-07} {"commit": "1ed96f190db4016f74c2a33df0a0492d44c51d7e", "message": "adding new phase function inputs\n", "proba": 1.1433321560616605e-06} {"commit": "ad8d93f67f2f3359e76fe49d6e7608aa6b9cddd7", "message": "removing some needless efforts to prevent object passing in plotting utilities\n", "proba": 2.15962302263506e-07} {"commit": "a7c3e1a4011d9ca2fa488a79983fcc5bc72fefdb", "message": "added movie attribute to rgb types\n", "proba": 3.2427294627268566e-07} {"commit": "11edbb3b51fb5b1fe0ac9266d496b76644f1b8d7", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "3c7bb6b5332ac7c7e3d1f9ce1a6a2bb24cd2422c", "message": "removed extraneous file\n", "proba": 7.0851060627319384e-06} {"commit": "bbe12d0fe9e7a407f7c4b237124470de66ab9fa5", "message": "save index html - initial commit\n", "proba": 1.800534050744318e-07} {"commit": "b77cb1ac7524e76fd1f29ee6c8e214d12d04226f", "message": "Improve variable names.\n\n\nFormer-commit-id: 95da6985d466276aad850926188fa0f6b05a3d1f", "proba": 0.9999991655349731} {"commit": "0d44fd6ae6f8a7d51cbb6933c9fddda1b2f61f8b", "message": "Remove debug statement\n", "proba": 2.1338662918424234e-05} {"commit": "f5e9e9da113daed24d2a970a7e8a31322d1e6f8c", "message": "git colab\n", "proba": 3.631230640621652e-07} {"commit": "4af2ea4fe4e90588b13c4b551d0138123a743650", "message": "IMPALA-4438: Serialize test_failpoints.py to reduce memory pressure\n\nOn EC2 c3.4xlarge instances, with 8cores and 30GB RAM, this test could\ntrigger the Linux OOM killer by running tests in parallel. This patch\nswitches to serial execution, which makes the test take four minutes,\nrather than one to two minutes.\n\nChange-Id: Iea4a588e1228d38f90387a077cbe530257636b7d\nReviewed-on: http://gerrit.cloudera.org:8080/4999\nReviewed-by: Jim Apple <9e3620e7251463d214b5f536438d2c9ea899162d@cloudera.com>\nTested-by: Internal Jenkins\n", "proba": 1.763138925525709e-06} {"commit": "b9c7ea4613773d7414acca2e066b174447b0d75a", "message": "Fix conf_name handling in fabd.conf\n", "proba": 0.00027983615291304886} {"commit": "31a26474c1a5765c31596598ff81a5b206b0573e", "message": "Use imperative for fab-generated commit messages\n", "proba": 3.1227907015818346e-07} {"commit": "25959eada217eb905bd271d87d67c74d1c494ced", "message": "registry setter (#115)\n\n* registry setter\r\n\r\n* use __dict__ to store registry values\r\n", "proba": 2.9878003715566592e-06} {"commit": "960618782d81035dd9671c973ad6d95c55ff6534", "message": "Use the firefox capabilities if wires exist\n", "proba": 9.794019888431649e-07} {"commit": "5ff27451b55cdd03fa7913aee9e0762297341e29", "message": "make image printer thingy iterable, and optimize output data\n", "proba": 1.3521284927264787e-06} {"commit": "179ddfd937748f017b2c1d4ce9f481627e896a91", "message": "[AIRFLOW-6409] BigQuery hook - add tests for run_query method (#6971)\n\n", "proba": 1.0474195732967928e-07} {"commit": "6e93da89340fae17d75aa12e227d2ec1b3b0fa1b", "message": "views.py change tab to space\n", "proba": 2.497930324807385e-07} {"commit": "6c2ed17de0257d6dd08d69c4db008f758633e08e", "message": "Relax test conditions.\n", "proba": 2.0979507553420262e-07} {"commit": "00f1ca39574cccb7fdacb7077336d4a5e5d9a96e", "message": "this test needs the old streamline constraints\n", "proba": 4.082584200659767e-05} {"commit": "439b977b14b12d42ee886a432f3a4af555d8de10", "message": "add storage stuctures\n", "proba": 2.8229641202415223e-07} {"commit": "5a94a41305c35a912d9b747eb019212296bec420", "message": "file.absent tests\n", "proba": 2.700656659726519e-05} {"commit": "b8474dad003cae635fd3a166fbe24cb5eaa8939b", "message": "added getUserlevelForProjectMember\n", "proba": 3.233209042718954e-07} {"commit": "e9b1f6b090aad79a425a3a649bb8f329d3da8a8b", "message": "serializers: addition of ``tags``\n\nSigned-off-by: Harris Tzovanakis \n", "proba": 1.366426261029119e-07} {"commit": "8f03ae86466dca8025fd6e54aa8ce3426de01ee3", "message": "fixed commands help update (Tried linux)\n", "proba": 1.1473174055254276e-07} {"commit": "b169bcce3688dba7c53a5566f58b94f6f2e51d7e", "message": "join expects string\n", "proba": 0.0011749201221391559} {"commit": "5e88e9ac510d4e34a6b72f5852c05f67c7bc0bc1", "message": "Actual dry_run task lol\n", "proba": 2.4496339392499067e-05} {"commit": "f630a3157a4e4ad66d1fb8a36a8489402312d85d", "message": "Fix failing tests - fixed #128\n", "proba": 1.6946617620305915e-07} {"commit": "bcc1c43cec4d2280ebf3f223fc097ed43fb816a4", "message": "Delete Pendulo.py", "proba": 1.6510422256033053e-06} {"commit": "f67f4d7cb9f9b8801c2f2702f0d7b3e572c00623", "message": "Fixes tile model test to reflect changes in provisional edit data type. re #3385\n", "proba": 1.1610829631081288e-07} {"commit": "d7a1fa7b693f96e287c6d7f35148be9e8e9683da", "message": ":rainbow: pre-commit: ir_attachment_s3 cleanup\n\nSigned-off-by: Vildan Safin <77a76c08dd345634985e342f3c351258a394f3ea@it-projects.info>\n", "proba": 1.1133530364304534e-07} {"commit": "017f6c8d82651d7a34278702c8144c0763453a9e", "message": "Check errors properly\n", "proba": 2.50277565783108e-07} {"commit": "642cd34041a579fa37ea3790143d79842c7141f3", "message": "add implementation for all makers\n", "proba": 1.3653698260895908e-07} {"commit": "47833e5d431cc1068361900b70eaf7c792440342", "message": "Fix sharded perf test host forwarder sharing\n\nThis code is subtle. Since killing the host forwarder is a global operation, it\nkeeps a temp file with the shared pid and process start time so that it knows\nwhether the forwarder is the correct one that should be shared or a stray one\nthat should be killed.\n\nThis failed because not all of the sharded perf test processes had the same\nparent pid. This caused the sharded tests to stomp on the global forwarder.\n\nWe didn't notice this previously because we only had narrow sharding, and 3\nretries so the flake was papered over. When we added 8-way sharding on\nchromium.perf, the flake rose to the level where it appeared every run.\n\nThis patch fixes it by using the process group instead of using the parent\nprocess ID as a proxy.\n\nBUG=163503\n\nReview URL: https://codereview.chromium.org/391383005\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@283683 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.3250531992525794e-05} {"commit": "72067069138ce9568c06140d23bd07cc6741a30e", "message": "Test case can't throw away windows, it needs shared context space to continue.\nXXX fix this in pyglet, ideally.\n\n--HG--\nextra : convert_revision : svn%3A14d46d22-621c-0410-bb3d-6f67920f7d95/trunk%401619\n", "proba": 6.835477392996836e-07} {"commit": "55c2d05b80482495a02e54d841e6139e3f4e902a", "message": "regression test for osffile added\n", "proba": 1.6303651761973015e-07} {"commit": "cc8497123e40fa45c1c9539ace02a85a4de6feab", "message": "has double added", "proba": 2.189894843240836e-07} {"commit": "f1eb1099888d387df6d9c443f69719b8bb3dca1e", "message": "ModelResource reformat\n", "proba": 4.884039412900165e-07} {"commit": "841610f5e8f4c6e7c614c489b395bdb60b408e4f", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "5dbbff750b6d1659bddcf9065473fea472138fdf", "message": "Issue #51: Sort Theta Tau positions and jobs by year (descending) on the\nbrother profile page", "proba": 1.1287018253369752e-07} {"commit": "5bde1c3b2d89080ab84a2676c1fb7ea5bde7e286", "message": "fixed some little bugs reported through bitbucket\n", "proba": 1.3412105204224645e-07} {"commit": "1563378b79a0527b43afe86d0cbbae5eca48837f", "message": "Upgrade\n", "proba": 9.618876219974482e-07} {"commit": "a80e063a4afb65018a8b137f1909956839f42767", "message": "Test default search context\n", "proba": 5.088909347250592e-07} {"commit": "60754a11783a7b07c37ee4f6060eb26811d18c0e", "message": "Expand tests\n", "proba": 0.017727162688970566} {"commit": "0ed8e902e900cce5ffc3aad246ee28eb26504250", "message": "Adiciona teste para identificar fig-group com alternatives\n", "proba": 1.636828983464511e-07} {"commit": "c83932bb7a18a1ca443205a4338aaf6d20ec4c39", "message": "PR feedback\n", "proba": 1.9742587653581722e-07} {"commit": "a5a7ad45c841206fb5e6da537a563c817961fe42", "message": "Slightly better debug output on failure\n", "proba": 3.0670756245854136e-07} {"commit": "d832dae9a2cd2c86afa48f1676a2219270147073", "message": "Change version to 3.7.0 final\n", "proba": 1.6003489236027235e-06} {"commit": "59ba038f117744ca0c5fe8c24b97b64830f8e7ec", "message": "Put bulk data into db\n", "proba": 4.139367774769198e-06} {"commit": "727ff9a4a90aaed97f433c634575afff9ec5286c", "message": "using /tmp to generate tar in tests (for travis to pass)\n", "proba": 1.1184356196736189e-07} {"commit": "74b24cbf3e4c81e02ff0015d52c83a52ccae43ed", "message": "Put detail_persistent attr logic in method\n", "proba": 1.3728123349210364e-06} {"commit": "a43cac9efd5b25743b98b17177a5a2cd0737313c", "message": "convert hostnames to .lower(), platforms such as OS X can haves issues without this\n", "proba": 0.00015457399422302842} {"commit": "82e1a47ef6ad7f8f59a25a6735713bc499a974ba", "message": "removed unused method from last checkin\n\n\ngit-svn-id: 655ff90ec95d1eeadb1ee4bb9db742a3c015d499@3234 8cd8332f-0806-0410-a4b6-96f4b9520244\n", "proba": 6.849559213151224e-07} {"commit": "c8f606b0080a7dd343515c7c2ae830dfeecdf341", "message": "Sanitise generated filenames\n\n* wqflask/wqflask/correlation/pre_computes.py: Sanitise the generated\n filenames to get rid of characters that have special meanings in a\n file path, and other characters that are just a nuisance.\n", "proba": 1.1161000657011755e-07} {"commit": "6e61156b00759a05321d65c50bb223cfa46b97bc", "message": "tests: add fuzzing test for ZstdCompressor.compressobj()\n\nIt feeds in chunks of varying sizes.", "proba": 1.0856761889499467e-07} {"commit": "cf06abdb2bdc1d4b0ce84e3f70becbcf97e9918e", "message": "chmod wakatime-cli after copying\n", "proba": 2.2729581417024747e-07} {"commit": "c7129897eb870be22fa56be156ce34e40b6e40db", "message": "Added packet error rate request and response for FSP2xx devices.\n", "proba": 1.0448974308019388e-07} {"commit": "d6cd1e457e059eb7aa2b0a93b481e643fab2cfd6", "message": "use csv to parse files\n", "proba": 7.907995041023241e-07} {"commit": "3b9fbcf59ee5051c719c617f89c2f16c5d2f581c", "message": "add randomized tests for curve arithmetic\n", "proba": 6.055366839063936e-07} {"commit": "9d5b3529a22c545840c1f1eca1298eb25a5c1d26", "message": "TST multi-class crammer singer tests. fails for previous bug.\n", "proba": 1.079098765899289e-07} {"commit": "fa6cecee83ce90b95b35dd96ebd9dced71189578", "message": "Simplify block and debug log true pid\n", "proba": 0.0005209083901718259} {"commit": "8c0dc68c41137cd809d4403045834ab4f876294c", "message": "Add small test for parsing the Var datashape\n", "proba": 1.1522280374265392e-06} {"commit": "55bff70c3dabe5251ed23720c9f2491cc8bd1ed1", "message": "Add support for django 1.8+\n\nAdd support for django 1.8+", "proba": 6.805777957197279e-06} {"commit": "19068afb30ba4ecb0adc9d699a36465eef09e3c2", "message": "[ CLASS ] serialI2C __init__ fix\n", "proba": 9.464746108278632e-05} {"commit": "03beaeb4aeee66082f57b3dbd62486cb2e1cfc0c", "message": "updating test_connections\n", "proba": 8.104040603029716e-07} {"commit": "e3a9db58f03eb73635a94ed6249e3c2a308f4ad0", "message": "Fix some typos found in staging.\n", "proba": 4.254837222106289e-06} {"commit": "5aebc2e06057247f110e689e49ce84cb5ca975a0", "message": "Fixed test for resolving a multiple link in a falcon app\n", "proba": 1.5972081257586979e-07} {"commit": "80f401ad260ea39d7dfe548a158a89f42c08cc05", "message": "pycodestyle + added test for dictionary with blank line\n", "proba": 1.9401208817271254e-07} {"commit": "a2475c22f15e565f1a64022fa6b7a1ba791b8ced", "message": "Test the empty case\n", "proba": 0.9999995231628418} {"commit": "d5e418e24990c2b7294f3fd6fd8ef94819ddfe66", "message": "Allow regular users to view any feedback issue that is public.\n", "proba": 1.0777761616509451e-07} {"commit": "1bb7d6fc101dc411f9a1f7393e2261fb631aa05b", "message": "fix: corrected since/until filtering for descending ordering\n", "proba": 7.372131562988216e-07} {"commit": "a1ba1ef00c3551e8eac6cca2e2403a57af69940e", "message": "filter by PostMark\n", "proba": 1.565244502899077e-07} {"commit": "7e09d9c821d9dbd72cf60c19708f91a3248d3b95", "message": "This certainly works\n", "proba": 2.7501144472807937e-07} {"commit": "d6342967598ae7fa822592b42e0f85de2beaf916", "message": "test-self-alias.py: use constants\n", "proba": 9.964688615582418e-06} {"commit": "0fd505395fb6acd20f86ecea80479bedb29a46f0", "message": "Updated upload UI steps.\n", "proba": 1.2238687929766456e-07} {"commit": "16abb3720d9c41b130ea83a4b678ec99521567eb", "message": "Fix Grid unit test\n", "proba": 4.364746644114348e-07} {"commit": "4519345791bcfb9c91b4e0f11f46484e04c71206", "message": "add in tests for _construct_test_command\n", "proba": 2.9544335120590404e-06} {"commit": "6297448377820ac9c24e806d84ccb8773b5040eb", "message": "Remove matcher tests\n\nThese all assert directly against mock objects. They're pointless.\n", "proba": 1.1129199606330076e-07} {"commit": "95d41f09b78e064dac1fef1c2a1e4683905866b0", "message": "global: missing testsuites\n\n* Adds a warning for when a testsuite file does not define a\n TEST_SUITE variable and thus not included in Travis test runs.\n\n* Adds TEST_SUITE variable missing in tests for celery, oauth2server,\n oauthclient, pidstore, webhooks and utils modules.\n\n* Fixes broken test cases.\n\nSigned-off-by: Lars Holm Nielsen <7eaffca9f7cd98839b5821d0d23e09ff764b82cd@cern.ch>\n", "proba": 1.4313307872271253e-07} {"commit": "3fb53189d05669a010e81540d2398cb32d54949b", "message": "agent name should also contain port number\n\notherwise multiple agents per machines will have the same id\n\nSigned-off-by: Yehuda Sadeh <48638f9c2a62c4fd20be28d0bdad68f5cd041402@inktank.com>\n", "proba": 2.607903581974824e-07} {"commit": "2877e2722ba99aaa5ee41f9f063629efbfc75bf5", "message": "radosgw-agent: store radosgw_agent server/port\n\nPersist the hostname and port number used\nby the radosgw-agent http server.\n\nSigned-off-by: Joe Buck \nReviewed-by: Josh Durgin <51652c783f70f5b272ebd02f1fd20d3af7a2449f@inktank.com>\n", "proba": 2.9681643809453817e-06} {"commit": "0f998b1b4707318e66f53176fff641982a629ae0", "message": "Introduced numerical differentiation for covariance matrix calculation\n", "proba": 1.8103759202858782e-07} {"commit": "42599f84c68821695b2d378f7261e4c74095272f", "message": "Should be logger.debug\n", "proba": 0.9994864463806152} {"commit": "48a53cc35dbeefce8d53c61bd90491c94a862060", "message": "tweaking manager methods for fetching the next item in a sequence\n", "proba": 4.938873416904244e-07} {"commit": "21d81625f5ebbcd7a53737e5b817fad8816e6735", "message": "bogus return of terms as list of dicts rather than names was already removed, stop testing for it here\n", "proba": 1.1595570015288104e-07} {"commit": "00a24de6c8fa01ba4caba201b22d34ebd32b0426", "message": "Updated morph eval script to handle repeat morphemes of a token, even when they are not sequential\n", "proba": 1.9627246672371257e-07} {"commit": "ae896f3c8eaa7fa9863a862f0679065348a7b971", "message": "Remove obsolete argument from workflow cli\n", "proba": 2.5880874545691768e-06} {"commit": "f5924f0f23b0bce95747feb6e7d06a5d55399bb5", "message": "added frame padding to obj output in M objects\n", "proba": 4.0621108610139345e-07} {"commit": "9405e0ac18fe37a310b4cf7bea5f9676b261bd95", "message": "Dump graphs from the correct filenames when xg indexing fails\n", "proba": 5.669956522069697e-07} {"commit": "3d2f2a16001f3faf410c16818b91f9161d03532a", "message": "BUG: trying to check for Bus error (issue #461)\n", "proba": 1.0856803811520876e-07} {"commit": "8fa141934cb7cda8d1391494ea833c16efebbd15", "message": "scripts/mupdfwrap.py: improved class-method wrappers for fz_paint_shade().\n\nCope with fz_paint_shade()'s new 'fz_shade_color_cache **cache' arg:\n\n The auto-generated class method that wraps fz_paint_shade() is\n mupdf::Shade::paint_shade(), which now takes new arg 'ShadeColorCache&\n cache'. The auto-generated implementation passes &cache.m_internal to\n fz_paint_shade(), which does the right thing, e.g. setting cache.m_internal\n if it is NULL.\n\n But have added new custom wrapper method\n mupdf::Shade::paint_shade_no_cache() that omits the arg and\n passes cache=NULL to fz_paint_shade(); this gives C++ access to the full\n functionality of the underlying C API.\n\n Have also added default constructor to fz_shade_color_cache wrapper\n ShadeColorCache which sets m_internal to NULL, to simplify usage with\n mupdf::Shade::paint_shade().\n\nOther:\n Reduced various diagnostics when generating C++ code.\n\n With the -b arg, added optional '-d
'; we show extra details when\n wrapping fns whose name contain
.\n\n Improved some comments.\n", "proba": 9.983713425754104e-06} {"commit": "6f9f695cb2490d2b257efd772a07a2d35b973aa4", "message": "discord.py v1.0 migration", "proba": 3.632540028775111e-07} {"commit": "f9ae2f9c1e774d26c6c450029e2782d5bc49d89d", "message": "pyutil: this makes smc_compute fit for running a cc-in-cc dev proj in ubuntu 20.04\n", "proba": 6.102871452640102e-07} {"commit": "b086176740c6b9d316ac661b06ec0af3291c6ecd", "message": "updating version number\n", "proba": 2.0783427316928282e-06} {"commit": "88e809d56ced74ce6f4f25c4aac7d10a2eba1504", "message": "fix and add test cases for syncing correct location fixture format", "proba": 1.5005268494405755e-07} {"commit": "ba6f4e9bf7db4f4fe191829b4921183caf77ea14", "message": "openstack: --upload defaults to teuthology-logs.public.ceph.com\n\nInstead of a non-ceph domain.\n\nSigned-off-by: Loic Dachary \n", "proba": 1.4442912288359366e-07} {"commit": "b5aeb12314f9073c325a88f79edfedfa3eb9f844", "message": "commit guided mode testing changes\n", "proba": 1.4595917718907003e-07} {"commit": "76d43ed4c98c4e5ad23dd342ecf3ed83b35fdcd7", "message": "python: Don't use deprecated clear_value field.\n", "proba": 1.248452576874115e-07} {"commit": "a9beaf1687ec3e979fd6593ce54fc21b043b6cec", "message": "# move check winding of ppa contour\n\n# make azimuth required in dump\n", "proba": 1.2919790037813073e-07} {"commit": "e5d1762628c861da2149c82ddfd72e7788d8920d", "message": "Update WINNF_FT_S_FPR_testcase.py", "proba": 3.1054025839694077e-07} {"commit": "5c07507296250389d8641df646e30c6964df50ed", "message": "Update WINNF_FT_S_MCP_testcase.py", "proba": 3.2071488931251224e-07} {"commit": "82921fb53db2b6e7fdd731f23addd413a6f87673", "message": "Add function to sign SSH key\n\nThis will enable the known_hosts\nto work.\n\nshosts.equiv and sshd and ssh client\nconfig will be handled elsewhere.\nshosts.equiv will just be everything.\n", "proba": 1.2440278851499897e-07} {"commit": "f46adf176953f7a413b3f1a0c9894f94ea59cace", "message": "Add CBSD-SAS relinquishment test 10.13.4.1.2\n", "proba": 4.990384695702232e-06} {"commit": "4b6a0d9a8e48562cdf59cc4a165814a954376957", "message": "Sorted htmlrenamer.\n\nReview URL: https://codereview.chromium.org//11734024\n\ngit-svn-id: c93d8a2297af3b929165606efe145742a534bc71@16616 260f80e4-7a28-3924-810f-c04153c831b5\n", "proba": 8.572365572945273e-07} {"commit": "55a826d3b1b0db4031111e3b03caa5aaf7bccf36", "message": "Properly separate JSON elements\n\nWildly inelegant. Fixes #37.\n", "proba": 2.3935007220643456e-07} {"commit": "c59300469e8bab00d3f8a9cfe733de9fd3c1bfd9", "message": "add lat lon to info (#16)\n\n", "proba": 1.1007893618852904e-07} {"commit": "0a57bcc2faca88d0527bb1f14dae2b0b9b5168f2", "message": "bump filer version to 0.9pbs.54\n", "proba": 2.762402857570123e-07} {"commit": "ab9431954c76c21d41f5701394068f41444ecd74", "message": "check xformdoc.user_id as well\n", "proba": 1.969211638197521e-07} {"commit": "006cbb88f2a06cd1411f88126ccf4a43121aa858", "message": "Update app startup process with new servicemanager and websocket communication.\n", "proba": 1.1978391967204516e-07} {"commit": "121970c5cb4b6c2fd568fabb05ebbf3b2a1587b8", "message": "[ci skip] pep8\n", "proba": 1.4958947076593176e-06} {"commit": "06262721e58f0edba4dbdf94fc10451862327f7e", "message": "changed the cache times back to 600, undoing a change made before mercurial\n", "proba": 4.851899575442076e-07} {"commit": "b22bf9654d33c9c89339e3e12c3e10df478ed423", "message": "change tests flow -> read all tests and match to replaced queries, then execute async\n\nChange-Id: Id59630136f40bb7f0ea20157947d957b2c9e1ba6\n", "proba": 8.357854426321865e-07} {"commit": "33d9dde42c7cfbd41b12a62863a8b6f2055bfc95", "message": "count digrams done\n", "proba": 2.248339296784252e-05} {"commit": "da796ccec7135d0f240df795d2afe520805589ad", "message": "exception for not existent user\n\nSigned-off-by: Lucas Severo <7fb56e1ca9644ad97b36a948e4db99e82ea93aca@gmail.com>\n", "proba": 1.1462915239235372e-07} {"commit": "7202f65e2a59f913b70a09e5b8352f91a68e98c2", "message": "add pandas\n", "proba": 0.9996891021728516} {"commit": "a44284c29f5609556e59c94aea7c691de29378ad", "message": "no mean if one ens\n", "proba": 2.731982931436505e-06} {"commit": "cbd4e47fe9b89b4bf7e46acd2a17dcdfe0b8e4ed", "message": "Slice, then add units\n", "proba": 2.5758225774552557e-07} {"commit": "1c98f453b19f5bbdd8474bf9999a02caafe42923", "message": "Cleaned up the labels a touch\n", "proba": 8.284197292596218e-07} {"commit": "19dbb6c960d299acf813e96a102a4e14ef7b3ef8", "message": "make N/A case references just blank [skip ci]", "proba": 6.630924076489464e-07} {"commit": "b4eb7e5ee2e1c2862dd0141b3923eaa6480d5688", "message": "Code clean-up.\n", "proba": 1.7064324708826462e-07} {"commit": "4c4679b9db5da295069d0d063c82a93fa6bc56b2", "message": "Adding simple exception handling to logs\n", "proba": 3.4743189303299005e-07} {"commit": "d7a5ee714c2c32542328ea57933091f59de25051", "message": "Changed style of writing BBL file entries to insert spaces between each entry. This is required for compatibility with some bibliography tools that work with BBL files.\n", "proba": 9.966849034981351e-08} {"commit": "273452727a99e60416502ecbe9b8a5bca7fecb45", "message": "Removed some test prints", "proba": 3.5343632021067606e-07} {"commit": "6bcfb9e3bc169e8e89201331d0aa15a0938eabc1", "message": "fixes #1133", "proba": 2.04516794610754e-07} {"commit": "e5fb544c01d292640f546dcfad879ac2c34b17cc", "message": "Added computation time for MOSEK. (#598)\n\n* Added solution time for MOSEK.\r\n\r\n* Fix MOSEK time\r\n", "proba": 1.6534043822957756e-07} {"commit": "65cdec2e28c6e5c316c1a5a6938e55b2719acdbe", "message": "TOTP/HOTP cust script using lookAheadWindow=1 always #706", "proba": 1.5963308896971284e-07} {"commit": "ab18fad79c399da56297bddc1b298c8b36fc4258", "message": "Mudan\u00e7as na api\n", "proba": 7.677392659388715e-07} {"commit": "c2b65ff3af0225eccbfe968247adc67ee076c4f7", "message": "finish the function get_cur_essay_page_information_list's half.\n", "proba": 5.088963735033758e-05} {"commit": "a0d99584b70ce0705925dc640c7de35d43e18452", "message": "Tracking models docstrings for #1474\n", "proba": 1.2511725344666047e-07} {"commit": "3806be21b168d84f4bb540a07d26321c3ca80fec", "message": "list index bug fix\n", "proba": 6.771373932679126e-07} {"commit": "433148bde3503ec45bca79d9aad3f33c799d5e94", "message": "fixed oscillator strength workflow test\n", "proba": 2.4594285719103937e-07} {"commit": "e23df6b70bbfcc6a7766f999359ffc273122302f", "message": "Fix comment\n\n\ngit-svn-id: 81e381228600e5752b80483efd2b45b26c451ea2@8625 e27351fd-9f3e-4f54-a53b-843176b1656c\n", "proba": 5.209718665355467e-07} {"commit": "9e752892e3c31ef37665e95b1adc2905dbb884e5", "message": "Use prefix kwarg in add_ratio_constraint\n", "proba": 3.0560815503122285e-05} {"commit": "51442e0fd246badc487622870014a32c06cbc923", "message": "autdoc mock c-extensions\n", "proba": 4.2297554614378896e-07} {"commit": "a1787e97c5dd7a2571eb4d3cbfbd71e244647f8b", "message": "updated doc\n", "proba": 1.7850271660790895e-07} {"commit": "b5122a6f3addeee60b19eca4b8e58b9f70ae3c84", "message": "Remove Tempest reference in conf.py\n\nTrivalFix\n\nChange-Id: Ic9d4e33e85cf9873ee2b95e3686ea03c13e7dd2e\n", "proba": 1.6010709487090935e-06} {"commit": "e3cebd0eec36f17e2b1d6826c2a16e709fd2990d", "message": "Modified Sphinx configuration.", "proba": 1.400306359755632e-07} {"commit": "c881fdea7a7ef7c518b7898cfd53b2880af06778", "message": "Latex reduce left margins (#8657)\n\nDOC: fix LaTeX package expdlist bug causing blank lines in PDF\r\n\r\nThe way the line is broken in case of a long item label is buggy and\r\nthis shows in case of nested description lists.\r\n\r\nWe fix this, but the we then need a hack around Sphinx automatically\r\ninserted ``\\leavevmode`` which would again cause an extra blank line\r\nafter the long term label.", "proba": 2.4056434995145537e-06} {"commit": "ee065885c611dacd497a90707805f15144650e52", "message": "Added data_download_tool to bin\n", "proba": 1.7800819307467464e-07} {"commit": "1465fda09a98b904c691a5a965648e5197174c76", "message": "mocking modules for rdt\n", "proba": 2.451471630138258e-07} {"commit": "d67765acf7bf530502dc77ad84b3eec4ce769b29", "message": "Doc version bump.", "proba": 1.2316668573930656e-07} {"commit": "7f971b9f5b76dea44d2641fdcffb43a3d71cb8ac", "message": "doc: revert to haiku theme\n", "proba": 3.853698160583008e-07} {"commit": "c6fb49c57004d5ff0279f1f112e8ddc2ed3dccda", "message": "Fix error in conf.py.\n", "proba": 2.422058571482921e-07} {"commit": "140ec21493e99bc5197d602a7e718a30c88827b6", "message": "Add machine settings links to Sphinx config\n", "proba": 2.0828736069233855e-07} {"commit": "24e4cfac5bfbf99f6ab567547c3182c588188d81", "message": "Updated doc version\n\nChange-Id: I592e7cd5d71f7ed6336ea7f144191dc082bb3118\n", "proba": 3.723161512425577e-07} {"commit": "61e89e47e2357de63e38a76fc385b048a546e77a", "message": "extended npsphinx timeout for multiline example\n", "proba": 1.818068255943217e-07} {"commit": "b5e91cd2a87d5379208b4ad22fb072641ef52506", "message": "trying something... because RTD does not work anymore\n", "proba": 4.388236334307294e-07} {"commit": "fdce9e52602cee91382b4414a62c24d0d4d7f394", "message": "Fix html_last_updated_fmt for Python3\n\nhtml_last_updated_fmt option is interpreted as a\nbyte string in python3, causing Sphinx build to break.\nThis patch makes it utf-8 string.\n\nChanging Popen to .check_output because of 3 reasons:\n1. check_output() will raise CalledProcessError if\nthe called process returns a non-zero return code.\n2. For consistency with keystone [1] and cinder [2]\n3. It makes the code look much better.\n\n[1] https://review.openstack.org/#/c/457142/\n[2] https://review.openstack.org/#/c/433081\n\nChange-Id: I3aca02fffee6a77a51285da82047840b1a9d1d1d\n", "proba": 0.0005729298572987318} {"commit": "018730f9c3a29b409c9c8bbd2d03c57285d759f2", "message": "updating conf to include READTHEDOCS env\n", "proba": 1.502286579579959e-07} {"commit": "0d6c053fbeae9f2bbbe4d5504d5d29d3379bbfe1", "message": "Pick up version from numpy instead of hardcoding them in conf.py/\n\ngit-svn-id: 77a43f9646713b91fea7788fad5dfbf67e151ece@6745 94b884b6-d6fd-0310-90d3-974f1d3f35e1\n", "proba": 8.918614912545308e-05} {"commit": "4e2f757066b9644c3eea9b9fd4a117775d63e1eb", "message": "More name changes in Sphinx.\n", "proba": 1.1378288178320872e-07} {"commit": "cbcc75a495851c1c8bacdeaf0ade5952fc19c3f3", "message": "docs: enhance reference title\n", "proba": 3.2740553024268593e-07} {"commit": "bae26c6c6e5dafb25d4544079c014d835965854e", "message": "The URLField's verify_exists parameter was removed in 1.4 due to security concerns. In 1.3 and below, it need to be set to false, as the default value is True.\n", "proba": 5.296828931022901e-07} {"commit": "8d8dec3dba4db223fc0254d11d3a81d9c079a9d1", "message": "Change request var name\n", "proba": 1.7314524711764534e-06} {"commit": "501ff4313b425bf5fc43339a6b5226b94cce2d8f", "message": "Make html report friendlier towards special characters\n", "proba": 9.361026968690567e-06} {"commit": "9c924ed59e8e2f6749df4522fa1a17ed4f1f292f", "message": "Fix plotting error when not doing sigtest\n", "proba": 3.5046025459450902e-06} {"commit": "0f8ba84c76334b1d652e222152170c4df1c14076", "message": "sets\n\n", "proba": 3.187729362252867e-06} {"commit": "dbada1ac275b285431611375785786913c0568dc", "message": "base: __init__ enhancements\n\n- Only run sanity on base settings.\n- Expand some settings from keywords.\n- Strip .py from config file names.\n", "proba": 1.2225972056967294e-07} {"commit": "548a954e744dca05654229b0fded0e7605d6aaeb", "message": "taking out print statements\n", "proba": 0.0019568807911127806} {"commit": "a0a92e237ca91dc8f0318a27dfeec9b9c8e95de5", "message": "Add utility to guess livelock file for an owner\n\nAs livelock files are constructed in a systematic manner,\nwe can guess what the livelock file for a given owner is.\nWhile this will not necessarily work perfectly, it will be\nuseful to simplify direct debugging of WConfD.\n\nSigned-off-by: Klaus Aehlig <4ce51de36d9068cd7db2eec1151e0f3f95419008@google.com>\nReviewed-by: Petr Pudlak <9d19625f8ee825a2c398462ed335cbcf98f79c32@google.com>\n", "proba": 0.00011599851859500632} {"commit": "4fe0f01907a464935bd2f854773fa0de38410ff0", "message": "sct_maths: Convert usage of convert_list_str to use list_type (#2901)\n\nUses argparse's `type=` instead of a postprocessing function. Also, this PR clarifies argument descriptions.", "proba": 1.2070934474195383e-07} {"commit": "d874cb7145d6cbee0f3be5124f3be8caf768c9f2", "message": "REF: test\n", "proba": 1.39192179631209e-05} {"commit": "2b29d4ea895f0994e9f48142e19deaebe5efb69b", "message": "DOC: utils: bcolors and shell_colours were duplicated. So I removed shell_colours.\n\nFormer-commit-id: b520f6972bf3158bfde470c7b9eb609e894d0494 [formerly 227aae73de310b68ac958be116c8533da36510c2]\nFormer-commit-id: b46b86c779311d9d2357bb4ace17a83e757fb21a\nFormer-commit-id: 2cc88e9037b5053d060296f5b8475506c7cf6945", "proba": 0.001426223199814558} {"commit": "f1c887641b2542fdd77a7d6fc919fc7d19465be7", "message": "sct_utils: Display SCT version on CLI call\n\n\nFormer-commit-id: d97b2bbee8c34bc266d8894356d33728440e7c24", "proba": 9.411776318302145e-07} {"commit": "4198d7029646da47e4edf746b91657388093131f", "message": "BUG: fixed issue in generate_output_file(), if path_in and path_out are the same\n\nFormer-commit-id: d0fc8d3e187a482b4681d81cdff99fd9dbfeab29\nFormer-commit-id: c42d6bee19cca212ebe149c102f650e5654b1753", "proba": 0.00037782496656291187} {"commit": "27b0b1cf34ea21b48cb2ae3669ee3d6c44b73bf6", "message": "Allow smoketest.py to load a different test list\n", "proba": 6.703459121126798e-07} {"commit": "db8df7b2e438fde4830de98035059802d71f6d76", "message": "tests for quota stats (itacloud-2745)\n", "proba": 1.1313345282815135e-07} {"commit": "76a0b49a41cfcd1afccc63bc91275e5801b2ddc3", "message": "Import unicode_literals in a spot I missed\n", "proba": 1.7065315205400111e-06} {"commit": "1b45d90207662d12ca30b7d14257b0dac7d2c74b", "message": "CLN: D204 1 blank line required after class docstring (#31892)\n\n", "proba": 1.227506345458096e-07} {"commit": "fb2d788f44ac9957e9be81e76daf65cf56c3564f", "message": "fitting with tau, but the time constant is not well fitted. A lot of error\n", "proba": 1.0430978818476433e-06} {"commit": "01fdc0f7b52bb4a597cf4a145602660fc5393ca7", "message": "made baseline experiment fully concurrent\n", "proba": 1.794701773860652e-07} {"commit": "01c85b5f808f0f58da7690fc684b73732bb7e814", "message": "Added mongo hostname\n", "proba": 2.78008087661874e-07} {"commit": "ea97edc9937119c4a3c00123b0cd54e2cdb33fb6", "message": "Update document\n", "proba": 3.097348724168114e-07} {"commit": "f2bbc94006a356a94ca1652d933764fecc633ecc", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "f431f2408ca1e1a38479a9ac1224bd608df1c0d4", "message": "Test build.source rather than legacy attributes\n", "proba": 4.940748112858273e-07} {"commit": "8cf7ea1d5925f48a7c70b514f2defd83824a363e", "message": "Fixing init subclass\n", "proba": 1.0678434136934811e-06} {"commit": "6ee55c53c41c5557971533df47b697694eb09db9", "message": "Considering Ca dynamics\n", "proba": 5.044811928200943e-07} {"commit": "a16654f90e7208d162cce4957ef5559ca6365891", "message": "logs transferring as well\n", "proba": 1.81822429112799e-07} {"commit": "91ee5efe16f3f29fc5c4762b77d819412e2d7171", "message": " + ipaddr_test referred to old ipaddr.IP function.\n\ngit-svn-id: 47ea1648b537354ea000dbdc81f6c548b4e87acd@190 09200d28-7f98-11dd-ad27-0f66e57d2035\n", "proba": 8.692030860402156e-06} {"commit": "825949812fc8a28211da5562333f163548827e6f", "message": "\u53ea\u6709\u6210\u529f\u624d\u8bb0\u5f55\u65e5\u5fd7\n", "proba": 5.250378762866603e-07} {"commit": "11db4527f0f2ac124786f9499877e2d064d0c5e7", "message": "Extend the method _process_batch_request by adding notification messages in case there problems with the requests\n", "proba": 1.1451236787252128e-05} {"commit": "9d602548278abf15ff014f1736210495066d9b0f", "message": "Add vary header to TG response.\n", "proba": 1.1010497047436729e-07} {"commit": "dd6fac7aeb59b4c28d5e42da01a13a003b6312c5", "message": "update dealnodeal description", "proba": 1.9048322030812415e-07} {"commit": "3a8ac948d7e0aba72bde9052606fa8430842ea40", "message": "Fixed small typo in fix-gpt-ubuntu.py\n", "proba": 3.524998533066537e-07} {"commit": "6cae2b3d01e0b8f22a33799885a753f87cb1f820", "message": "Surfaces redirects from URI-Ms. Closes #451\n", "proba": 1.6916293077429145e-07} {"commit": "8acca670c5acb61ceb16adc98c02289ccf4faba1", "message": "ENH: ndop/model/eval.py: interpolation: move y and z to lower and upper trajectory bound\n", "proba": 1.8328972828385304e-07} {"commit": "1bc98a6f8a2f4a77a465147fd0b9cf3c6ef9edba", "message": "call_on_each_message: Remove dead 'first' parameter.\n\n(imported from commit 06885bf8049238184226d9fc7b64345e6848931a)\n", "proba": 3.6206975551067444e-07} {"commit": "a281fd3c49b86012fd370ae82df19525af89ff1c", "message": "Disable swift test\n", "proba": 3.607053713494679e-06} {"commit": "41356bc47c89cc28985df0a9739d71e751ab5181", "message": "Parse 'route6' entries from RADB ASN network lookups\n", "proba": 6.653017976532283e-07} {"commit": "b7d9f435916b5bb028d91afbce7b3afb9bd68978", "message": "sync sale_order_id in case of direct_sale_line_id", "proba": 3.94795688407612e-06} {"commit": "c971554af857224fa948754b83ada5519d66f76b", "message": "Add account name in more output, and minor reformatting\n", "proba": 7.662558800802799e-07} {"commit": "e9980d7498c0889ecd795a4d2977c1893e0ad7e3", "message": "comment on md5 usage\n", "proba": 2.5096545641645207e-07} {"commit": "1d443973e8db6265268dd2afe6b6ad7748526335", "message": "Add _read_test_file() function.\n", "proba": 1.3601845694211079e-06} {"commit": "69ef67e38279c669efe6f255ea37494af4c4b88f", "message": "accidently dropped function name", "proba": 9.967502592189703e-07} {"commit": "1b745b183fe2f8c6302e4dca5bac42459df5bae4", "message": "Explicitely remove XmlResults.\n", "proba": 1.2759568335241056e-07} {"commit": "d6d1a13bba16549266676009a190c17b2b855ca7", "message": "Whitespace cleanup.\n", "proba": 1.821737356522135e-07} {"commit": "ebf9f9f512de455fc74b17b2b0784ebc40ad6d1b", "message": "[classes] New method to delete all instances of NamedInstanceClass\n", "proba": 1.5705107614394365e-07} {"commit": "95ad2c65fb1b4aacea668c8d9474183b4f107d56", "message": "sh: Test with multi args\n", "proba": 2.8357999326544814e-07} {"commit": "b36860b1c1c8239288ab039db448021369703577", "message": "less debug print\n", "proba": 1.4249621926865075e-06} {"commit": "0076a7e3dbd21b2689a69cf7b19e01200b0f2e11", "message": "python3 : chmod to int, 8)\n", "proba": 3.685495926220028e-07} {"commit": "253222930b4ccee9467766e863c8067ade4f2b76", "message": "Fixed bin fields", "proba": 3.570218609638687e-07} {"commit": "a66374e212e1802caac1993c1c2e1805116d8b02", "message": "One line fix - closes issue #49 (Exceeded event list for record)\n", "proba": 1.0125889815526534e-07} {"commit": "a79db09fb62d2086c20a8463fd3a4bd9adf43adb", "message": "Revert \"Translate: use cm field of TeamChat packet to see if we should skip doing work on\"\n\nThis reverts commit c79997f40bbadde62948d29f9fbec39265df5dd3.\n", "proba": 1.2920172309804911e-07} {"commit": "8cefb88d9cf0296d1d883978adde8e3ed8ee34f9", "message": "[svn r57445] retain the behaviour of printing if we insert to sys.path\n\n--HG--\nbranch : trunk\n", "proba": 1.704303684846309e-07} {"commit": "8c7dbc8b8d648b4ca32c8be27850507134c54a72", "message": "Update various docstrings.", "proba": 1.2508505164987582e-07} {"commit": "c181efcbd720dd508d3ebe2b539b2831f75a775f", "message": "Fix coverage upload step (#27304)\n\nA simple typo was preventing coverage uploads from happening, and this\r\nfixes it.", "proba": 1.127044271242994e-07} {"commit": "547a1b947621f61e81cff9938f205903aa301d2c", "message": "LineEdits will now sanitize strings before accepting them. Currently only trailing linebreaks/carriage returns are fixed.\n Fixes #11\n", "proba": 1.2078396594006335e-07} {"commit": "d329787dc6f862e749ca6f490a155186b48553a7", "message": "Fix one more bug; interpreter still broken\n", "proba": 3.756566115953319e-07} {"commit": "cd4af4f79d72a7c3eb412a9eeec292cc3e0c4157", "message": "Implemented missing (TODO) code:\n\n* prover_get_entities_from_ledger: Added code to create revocation states\n\n* verifier_get_entities_from_ledger: Added code to get revocation definitions and revocation registries\n\nSigned-off-by: fabienpe <41c39b07d0d307f440b04d204c129cd23d08695a@users.noreply.github.com>\n", "proba": 1.7272489571951155e-07} {"commit": "0c9b54ddb5f663b4907f913c43ad980280ef8575", "message": "Fixed __version__ in init\n", "proba": 6.843409209977835e-05} {"commit": "47cf1fd8990d6b791d0a6847500abcf14ab46064", "message": "email: Fix on_new_event\n\nSigned-off-by: Fam Zheng \n", "proba": 1.9196292555534455e-07} {"commit": "0d651b7568c015113a9609fc01f6ac8ac4f64e4b", "message": "- fixed buggy method call\n- removed default values when opening sockets\n", "proba": 4.802737407771929e-07} {"commit": "fe785a6c7f9ea5232cfda964fa155c1ccdee3af0", "message": "remove unused import\n\nSigned-off-by: Kevin Chen <7ce5b103de40e8e4c5b4c5af64503958f0765d76@nvidia.com>\n", "proba": 1.1109009534493453e-07} {"commit": "7048bb1e378df0458b0a721ed056428d8688f067", "message": "add requirement and decoding\n", "proba": 4.7302575012508896e-07} {"commit": "c37a7157b9015e918a2e099b9b6514393856f3be", "message": "OPT.ENH: Generalize get_beam_size method for cases with vertical dispersion.\n", "proba": 1.0302274233708886e-07} {"commit": "2d3c0f8072a90b9531d581ddf1b8c980310dd08c", "message": "Connect to s3 on every request.\n\nThis will mitigate a lock up that we've seen with module-level connects\nelsewhere.\n", "proba": 9.940744405412261e-08} {"commit": "01438c216f9576efd8726e8bb2d3abb936efb39a", "message": "added error handling to rande621\n\nShould keep it from crashing, but nothing special\n", "proba": 5.636530318042787e-07} {"commit": "5db81465d1213d67df8bd5b93a16f0931ce240e4", "message": "futurize blackbox\n", "proba": 1.3173119441489689e-05} {"commit": "a06f4b0a493b9eab3db72d6a608241ac1417869b", "message": "some tweaking of the numbers\n", "proba": 3.5741979900194565e-06} {"commit": "5e86b09467c5a965d5031074f16ecc83d4682be5", "message": "Adding complete moonlander class\n", "proba": 4.4224302087059186e-07} {"commit": "489a91df6a39a7be4d3f006063d74f4f6c2d0fff", "message": "__init__.py: bumped version number\u0018\u0018\n__init__.py: bumped version number\n", "proba": 0.001438070903532207} {"commit": "7b206bc4305aacca37160c4795362d7c527f8b15", "message": "added no_argument for class Clause\n", "proba": 6.965862553443003e-07} {"commit": "4cd44a177147569767a8f53aed67cbee0f759667", "message": "bump verion to 3.0.0-alpha\n", "proba": 1.318104864367342e-06} {"commit": "3327ad20901b93b7d680f9818c5591033141952f", "message": "BUG: kA is skew_symmetric, then eigs is required (eigsh not valid)\n", "proba": 1.1833613200451509e-07} {"commit": "486669d2bf8052eb5c16c349b3e2d353c1da617f", "message": "added subq func and removed the riskful subquery detecting feature\n", "proba": 1.5949171938700601e-07} {"commit": "0d7638eabf558a7c636a61581590ea8483ac581c", "message": "fixes\n", "proba": 4.844783347834891e-07} {"commit": "4afba084557048b7344a48467f886a447afcb886", "message": "added default q\n", "proba": 9.492046046943869e-07} {"commit": "a176d3609e0b7f0523320322ce364544b64f8721", "message": "Update contribution team (#13472)\n\n* Update handle_external_pr.py\r\n\r\n* Update handle_external_pr.py", "proba": 4.1229409930565453e-07} {"commit": "35ab3d0e5a4a608339cd908ee4db1c9aefe3c5f4", "message": "Add find me service", "proba": 2.7908656647923635e-06} {"commit": "31be0c9ab0f8091ecee9ad463c42ccde4e33fc44", "message": "added urllib2 exception handling - script still runs even if url is unreachable\n", "proba": 1.58323757659673e-07} {"commit": "68fdd3bd95127354465a41612e9cec1ef454892b", "message": "[fix] Do not mock incoming messages as query\n", "proba": 9.159919045487186e-07} {"commit": "c907dad7cff5a78ea5720ee8f9f3b32d3d8941c7", "message": "Revert \"fix importlib bug for python3.7\"\n\nThis reverts commit 2ec10e99512726049694606bfea7b15f407dc954.\n", "proba": 1.18271593407826e-07} {"commit": "79c8639831fc42c36607bf92e3d14376d17f8eeb", "message": "more tests for the dashboard\n", "proba": 1.1863568261105684e-07} {"commit": "e28fdde25e2cb23ec9bc81e52073cef192051bd0", "message": "Increase boottime to 120 seconds\n", "proba": 0.0003625434183049947} {"commit": "cb9a709688c3b4d7bcd4589c4bd3d4e44a738a91", "message": "spell function write\n", "proba": 6.265627598622814e-05} {"commit": "3fda8faef7dccaefc29bb9c4a84fce4819141118", "message": "[inotify] update some comments and names for readability\n", "proba": 1.6944484571013163e-07} {"commit": "68f68c3e71b875459a2bbfdc5933e2717845dc5b", "message": "remove redundant else clause\n", "proba": 0.9998146891593933} {"commit": "6a9ef494fa9b3a25a19e698a41c52d034fd20aad", "message": "- add missing compiler version check for Intel (#6734)\n\nSigned-off-by: SSE4 <96590f2cd2f24822a7d8bd20596928fbcb06105f@gmail.com>", "proba": 1.2029116192024958e-07} {"commit": "f5e4472db1ac4918e5220003da5509cebadc5ec6", "message": "add docstring\n", "proba": 4.840926521865185e-06} {"commit": "9f33860c05b980785b1d37171ea5a04d1c466018", "message": "do basic impl of type checks, still need to populate w/data\n", "proba": 1.5079390891514777e-07} {"commit": "d53210674cb07d4723300364bbdbd11c58ed89ae", "message": "x86-64: fix Python 3 incompatibility\n", "proba": 0.9998399019241333} {"commit": "7c75a3844341209a65575dfd25c505c3a5472c6f", "message": "minor change\n\nremoved space to conform to PEP8\n", "proba": 1.5928985419577657e-07} {"commit": "95a7e5751c9c3ece5f5435b13d9b81588d5e33df", "message": "one more stray use of type_checks in gene\n", "proba": 2.515496362320846e-07} {"commit": "2d72ecc17faa7208c26d38ff4d77ed4d7099a2e7", "message": "Properties methods are now injected in the class\n\nA None value is now injected where services controllers and properties\ngetters and setters will be at runtime.\n", "proba": 1.0489370083632821e-07} {"commit": "50c8bf50f8a2e4d279922a3958b4752f35445243", "message": "tmp redirect to public complaints instead of admin\n", "proba": 1.295165503734097e-07} {"commit": "f257aa683e9d7a1d9881434c03c6571391ef34af", "message": "fix a bug where django versions prior to 1.4 couldn't show headers\n", "proba": 2.755632806383801e-07} {"commit": "1c769c258a9aaba1fe5a7220454edb77927ee746", "message": "Fix bug 203: bad formatting when tabs exist in import lines\n", "proba": 6.040773996573989e-07} {"commit": "929005c17a792b5e992176630c6487cb8bec8f55", "message": "Acknowledgements\n", "proba": 3.7567596677945403e-07} {"commit": "5a39d00e14ee9fdc655c2e8bea5e83d8308dec8e", "message": "Do not provide a default project\n", "proba": 7.241465596052876e-07} {"commit": "e89812120c078b400314d7b861b1b5f1da5b58d1", "message": "minor fix\n", "proba": 3.935496124540805e-07} {"commit": "f52bec382965e166b86821938da07c9dbc80c9de", "message": "Switch to Roster implementation with DB backend\n", "proba": 2.4079565719148377e-07} {"commit": "98709b8aa02ef13ba8b9277ef231f5303586e62e", "message": "Allow not having build dependencies\n", "proba": 4.438473411028099e-07} {"commit": "84837eb06cacf238c3d919666061e62e484afd5a", "message": "Refactor\n", "proba": 5.142872396390885e-06} {"commit": "52a49bc39f1c33822a040d5eb2f762bd37e8c63d", "message": "judgment is now required for rating rows\n", "proba": 1.30301032186253e-07} {"commit": "f95963d4a58183ddc64364d5cce30246c6357246", "message": "Bug: explicitly pass commit message when using `commit_on_close`\n\nattempts to fix #293\n", "proba": 3.521450366861245e-07} {"commit": "deb99a1776791d66d88ff8f720ab7de7737563fd", "message": "Call LiveServerTestCase constructor directly\n", "proba": 1.625992638309981e-07} {"commit": "04ac8856b474b1c7ab11fff15f19a4301f44a2cf", "message": "[svn] Test commit to see if DAV works with includes again.\n", "proba": 9.75555991544752e-08} {"commit": "d2cc1d1ec31bef1f31f5e01216dfa0ac17d06f22", "message": "set proper dbytes.pos when reading Level.settings\n", "proba": 6.663215685875912e-07} {"commit": "a2a149946bb28bf06dd9bb062a7ef9e98dc88a4c", "message": "test_connect: skip integration test when Noise is unavailable\n", "proba": 3.257616754126502e-07} {"commit": "d0fc1cba08d4b82e3a4bcc67cca79bbb3c7748d5", "message": "added shadowClass support. Must pickle itself as the original class...\n", "proba": 9.95865931940898e-08} {"commit": "3066837091621720be0b0338d12ed66fd24a86b1", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "7e41ab10d169b1a8e6533b3287d95d9b4c6c7203", "message": "Handle None in convert_tstamp()\n", "proba": 1.908539388750796e-06} {"commit": "c2d675fcb5af16c94b9bac9288ea873edc3199ea", "message": "Tweaked bindings.gyp\n", "proba": 5.031133127886278e-07} {"commit": "76c8096b3aed79391614b32608ab446613c42034", "message": "Add LOG_LEVEL global set by DEBUG=True in environment\n", "proba": 6.359013787005097e-05} {"commit": "42ea9fef4203d5acd73e732dbe0e4d8672e81d17", "message": "bump version for pypi\n", "proba": 2.2905207686108042e-07} {"commit": "cfc0c746d5bc1a14b171bc32832a526f17c25854", "message": "first step in getting django-compressor working on heroku again\n", "proba": 1.2951296923802147e-07} {"commit": "bcc8164f2e6ed4401dc5ecb74a28ebe8554f7b82", "message": "Add Windows support.\n", "proba": 1.43419470077788e-07} {"commit": "c5da75e3acb4ba4c69204ff1ad3e7e89d6710001", "message": "Add whitespace in tests\n", "proba": 0.9990289211273193} {"commit": "059a904532f10e89d04c2c717929c3d5a7a260dd", "message": "Fixing Service kind name\n", "proba": 3.333972244945471e-07} {"commit": "50dcdcbbc3a525aa7dd5b7a3421351ee686d3ee4", "message": "udpates\n", "proba": 2.9929221909696935e-06} {"commit": "fb69c0de2143f04e48709347429127932549c081", "message": "Improvements to Settings dynamic menu\n", "proba": 3.641023340605898e-07} {"commit": "c552dc428b78fae168d59d3ff5af1818cf56f0e2", "message": "[gyp] use DNSServiceGetAddrInfo(\u2026) on Mac OS", "proba": 1.2618157541055552e-07} {"commit": "305b0ab84ecce8c10b7b6a616c0218633a1f10c3", "message": "btrup: cleanup properly\n", "proba": 7.646245649084449e-06} {"commit": "4c09d25373c275854389969bea2c974259b6b012", "message": "ZON-2930: Update test, we have one more message config now, for campus (belongs to commit:c19c710)\n", "proba": 9.798954891948597e-08} {"commit": "058a00fbacf54049d098e2814ecc1710953b85f7", "message": "PacketEngine handles all but empty packets\n", "proba": 1.3942740224592853e-06} {"commit": "cfdebca77a3f65def63048207e1471d62d07d7d0", "message": "PEP-8\n", "proba": 4.044895831611939e-06} {"commit": "fc2333ee932878d443be3b4ed39f06bc7e8846ae", "message": "add logger clone class\n\nSigned-off-by: Hagen Paul Pfeifer <4d5bb2d32024e62584022f82eb016d5f4634880b@jauu.net>\n", "proba": 1.1729458293530115e-07} {"commit": "cb76fb3ac54b7f132f12f85fc4cce33969b9c988", "message": "Added timer\n", "proba": 4.994680580239219e-07} {"commit": "c7764ac8c1363701b4e7fab1d8ae0e3197853b48", "message": "Update __init__.py", "proba": 7.178883242886513e-05} {"commit": "4ef3a796c8cce521b7c0b5049272b0fc74135fd4", "message": "Add new test for RBAC syncer.\n", "proba": 1.1597151683417906e-07} {"commit": "055c15b5883e97c5ea3b67fb1c570b8274e6c05f", "message": "Fix path error\n", "proba": 1.4489707609754987e-05} {"commit": "a96e18c5d5793b4e0d3931126c9b15d0c9f29d21", "message": "Optionally print counts of unseen bigrams.\n", "proba": 1.3074466664875217e-07} {"commit": "5e913ae3e08ed59937b7f0d6f46ab205644cfe19", "message": "Trickle down merge of branch 'larping-loon'\n", "proba": 3.2532329896639567e-07} {"commit": "cbabe75d925036d5ee01d81cc9ea2e8b1fbdae84", "message": "fixed the dnstool exp\n", "proba": 4.5602854470416787e-07} {"commit": "f310c8124ae3e491b91048c49e5c3d56c4ec7f53", "message": "New test for naive hub calls\n", "proba": 1.5534088504409738e-07} {"commit": "dbeacf9914af1ca201f5aefc1034012972ecd83f", "message": "Updated from Brython Server: 9/27/2016 8:38:05 PM", "proba": 1.0970897790230083e-07} {"commit": "8eae324c0030221a93b202a419db3f7301ad486c", "message": "pymzn: read config only if file exists\n", "proba": 8.973263447842328e-07} {"commit": "45141fe7f34e0522b2270047af796644406213dc", "message": "Add user help text to error output of do_fish_indent\n", "proba": 9.034073627844919e-06} {"commit": "23fd211989218db404d051286103271d4c831ee5", "message": "Sort runs in reverse chronological order\n", "proba": 7.163632835727185e-05} {"commit": "eaa17491581cbb52242fbe543dd09929f537a8bc", "message": "Add option to ignore static.\n", "proba": 1.5898753247256536e-07} {"commit": "9a40bd0d82c5215a8978a7d1c95f2910ee8f7f09", "message": "add UserToken model\n", "proba": 4.955442705067981e-07} {"commit": "44242e8c539c79793f4fe3a6ce716d3edbe79782", "message": "Fix follow board\n", "proba": 0.00019081226491834968} {"commit": "e9050eab07c55f22d40474bf18b2fc36f9dadd81", "message": "removed unnecessary code\n\ncommented out the handle message function. was not using it any longer.", "proba": 1.7895096959819057e-07} {"commit": "3e9a936c866ec8e912223327457f63cb5fcf95e1", "message": "Updated from Brython Server: September 28, 2015 4:43:07 PM EDT", "proba": 1.0674956030243266e-07} {"commit": "47f62b4d00ca12b5aadf049dddd7d378527c611b", "message": "Add additional asserts.\n", "proba": 1.9184030009000708e-07} {"commit": "e109aaf14f4b6b3a6cc43fc70f284154f3c82cb0", "message": "Fixing typo\n", "proba": 1.0679608749342151e-05} {"commit": "379068d31623662c0b349f26d1cd610612963b82", "message": "add re module to be more reliable\n", "proba": 1.3208955351728946e-07} {"commit": "85d5712fa1dde952783cbc8d78f904e08cfc9b50", "message": "[Server] Remove duplicated dependency\n", "proba": 3.9667938267484715e-07} {"commit": "0b67ebc5e0b360438dbff3689dd490d1a161cd9d", "message": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438 \u0434\u043b\u044f \u043c\u043e\u0434\u0435\u043b\u0435\u0439 api\n", "proba": 2.266492487024152e-07} {"commit": "ba43de958266a2906f3ee4cad23b20361db2637a", "message": "Add arguments to job\n", "proba": 7.971982267918065e-05} {"commit": "17f428f020945bbffca78a0bf28313948dbe727c", "message": " - propergate port failures imidiately\n", "proba": 2.3993831632651563e-07} {"commit": "5ff3c8743e98236411f2c66854bd2878cfadd319", "message": "Updated from Brython Server: 9/17/2015 2:22:19 PM", "proba": 1.0902206781793211e-07} {"commit": "4f66373d5d7f380646ef6dcfca31b0285bcbdbd5", "message": "Update to latest version of shrec\n", "proba": 1.4703256567827339e-07} {"commit": "3bfaf8c30a163ba35cfb60e2aeddad88a93e918c", "message": "Only need pip in those tests, don't need wheel and setuptools.\n\nThis reduces the test run time.\n", "proba": 1.0441025466434439e-07} {"commit": "8d56a45d0b01dff3e8cd041e7ba09c882d7cbb30", "message": "add logging to file and stdout\n", "proba": 4.467473786462506e-07} {"commit": "c90dbc5007b5627b264493c2d16af79cff9c2af0", "message": "Add better custom has_permission check.\n", "proba": 1.2630292189896863e-07} {"commit": "f9a827b41ed925e22bf1e873e5989bdd327fabbf", "message": "Add RefugeeCamp name formatting\n", "proba": 1.3801214890918345e-06} {"commit": "f486403c64a96bc440b3a9b8b9ca6497f15e9572", "message": "Fixed some parsing issues in ck2cti.py\n\ngit-svn-id: e76dbe14710aecee1ad27675521492cea2578c83@1357 02a645c2-efd0-11dd-984d-ab748d24aa7e\n", "proba": 2.2747892671759473e-06} {"commit": "c2d6670039d607e742a2b0dcc6bd947c2a6fadde", "message": "Fixing a potential bug when users configured path.txt by hand.\n", "proba": 1.1279345812909014e-07} {"commit": "7c40af9e33e1fc61ec2463d5ce420bef320d1e36", "message": "fixed pyrec bug in plr\n", "proba": 2.727370258526207e-07} {"commit": "f6738cc75020cf2fcfd03fb1383c152383aa9455", "message": "rewrote get_lldp() method\n", "proba": 5.76811771679786e-06} {"commit": "65335e04d4d058f027474371b76633eb09a31778", "message": "Use remote connection so that you can define the details\n", "proba": 2.429213452614931e-07} {"commit": "690b77bf0da161e48af19708d5759d899f642d5a", "message": "Wire in issue handler\n", "proba": 3.8385678635677323e-07} {"commit": "c720f9c385a785b8905991465fb74c75fca42220", "message": "fix bug\n", "proba": 6.400653660421085e-07} {"commit": "297d42bf076e5275cd189646de3b8e53976fe1f4", "message": "check namespace on threads, start removing `all` reference\n", "proba": 3.4665873727135477e-07} {"commit": "6568056095a2408d8ef1fed00c2ec818abea2e08", "message": "V.86: Add non-interact, change API domain, fix #2\n", "proba": 2.0151836110926524e-07} {"commit": "23809058c53909000bf6ab569133efa56834e9f9", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "692b8fad0d445a8dd2cb33279301bacc224221a0", "message": "upstream tgcli update\n", "proba": 3.7513643746933667e-07} {"commit": "5b8d2cfb168253c2fe3f8a0f1a33f28a1f18ac92", "message": "changed controller to wishbone_model\n\nThis is really a model front end even through it feels like a controller\n\nTheoretcially this could be used for both the Axi and Wishbone but Axi\nhas a lot more caveats so I probably need to make a new version of it\nfor Axi\n", "proba": 9.626299970477703e-07} {"commit": "1cf7a1d8251ed5247dcbb81641cbea0929a5a87b", "message": "Remove unneeded kwparam. This parameter name was changed in Python\n2.7, but is the only (optional) argument to StreamHandler, so pass it\nas a positional argument.\n", "proba": 1.1538934785448873e-07} {"commit": "651b0cceb9e4f607e0c320fe98bf077ebe6273cf", "message": "Enable parallel evaluation of block locals in the ReferenceResolvingExecutor\n\nPiperOrigin-RevId: 324031348\n", "proba": 1.329237164782171e-07} {"commit": "697be3d0df0646f87e30de7a25f3cd3927487580", "message": "api.py: decode_build: Handle empty line\n", "proba": 0.00010195180948358029} {"commit": "ca95fd5c878977fc532f000b3c1a4709ef5f27ea", "message": "change get_lldp_neighbors method to return full interface names\n", "proba": 2.8622147851820046e-07} {"commit": "bf1bbfde6a636d897692ffc36814f44918fef0f3", "message": "PyCharm :-/\n", "proba": 1.6167984995263396e-07} {"commit": "95f4a03777ec2ad82a94a3e2890192a93ad83509", "message": "[qa] Test getblocktemplate default_witness_commitment\n", "proba": 4.161877029673633e-07} {"commit": "e94031c99f4ce0a07a2da86423839d963e70c224", "message": "Fix off-by-one typo\n", "proba": 0.9999994039535522} {"commit": "869855a01f0a858b98a5b265a877a40647908149", "message": "adding projects\n", "proba": 3.9334736356977373e-07} {"commit": "a4afb81d18a64a9baee2318172251c1cfd7eb906", "message": "Replace `optparse` with `argparse`\n", "proba": 0.999376118183136} {"commit": "121dfbfb970fac362b7bf26fe523b9119019d513", "message": "Use SQL-Alchemy for data_select\n", "proba": 3.3748486316653725e-07} {"commit": "eca8dd7ac6891ccec5563e5f78680a30d7c44448", "message": "Optimize Danmaku2ASS parameters and exception handling\n", "proba": 2.3787752922999061e-07} {"commit": "b41f20929be888174bbd754cfe48d045e1923f7e", "message": "issue #2622_2\n", "proba": 1.7132028062860627e-07} {"commit": "90c7a27bc615c50ac605547b51fcf5974dd3b386", "message": "Edited for PEP 8 compatibility.\nRemaining defects include missing docstrings, unused variables.\nLine 219 redefines built-in 'id'.\nPylint score: 2.92 --> 7.75. \n", "proba": 1.0301822328528942e-07} {"commit": "9bb0d68a909dfc067747183f041b78a1f6700a2c", "message": "fixed the path to the vasp binary", "proba": 9.310219866165426e-07} {"commit": "5758c881b74ad8791b54670173697b7eab8b921d", "message": "zlib.decompress can handle zlib and gzip-compressed objects, methinks\n", "proba": 1.3501218631972733e-07} {"commit": "94098c4a0740b031b256fb265a0cd5d3729d8a98", "message": "TST: summary_col with MixedLM\n", "proba": 1.83758072580531e-06} {"commit": "cf0ce3b08696bfd19133ead534d2f7548948b7cb", "message": "Fixed update_patches.py to now delete old patch files that have no working src relation\n", "proba": 1.2727848286431254e-07} {"commit": "064fbebe8eeeda86c636b591ad3f4f7a03ac8824", "message": "Add --tiles-file arg to surveyinit\n", "proba": 7.25837082882208e-07} {"commit": "d42a0b6c2011d61db433c898ef9d11a7e84495d3", "message": "Dont test ideep\n", "proba": 4.297856150969892e-07} {"commit": "ed73979351014357661d8c41071ac217cc36e273", "message": "Fixing test for PreprocessedData\n", "proba": 2.3734138210329547e-07} {"commit": "ee1f958cb3611ecc3af0329deda7fde5d5281c32", "message": "remove obsolete model creation\n", "proba": 3.1113422664930113e-06} {"commit": "4c51846f5acd89b71b2a277d5f1349cc975b8cc2", "message": "Vectorized rietbrock_edwards\n", "proba": 4.6688035126862815e-07} {"commit": "2f41b33f375da805489212ecc872e4926166e3df", "message": "fix(bf): fixed beamforming toolbox to follow axis=-1 convention for multiple signals\n", "proba": 4.1614364931774617e-07} {"commit": "6e17556192274ea64635be61af0ea363e0ba898e", "message": "Allow running as non-root, with a warning.\n\nIt's OK to run this a non-root for looking at specific processes or\ngetting a view of a system. But as non-root likely won't be able to\nread all of /proc, some processes will be missing.\n", "proba": 1.4357122779529163e-07} {"commit": "3f5fc855369f61e39674c052a872fec4828bebf0", "message": "fix: [Mails] typo\n", "proba": 0.9998838901519775} {"commit": "d473f1f30a0fd419c5b033db47e2e2382a3876dd", "message": "Fix DFHF class hooks\n", "proba": 7.585256867059798e-07} {"commit": "289c60aa92b1b5d09197d22f7ec0e0d005207951", "message": "scripts: Remove enum/struct_validate_helper funcs\n\nFrom vk_helper.py. These were not used in the codebase.\n\nChange-Id: I3cc80e34eb831122ce8c54dbc004a003e02a47fe\n", "proba": 4.175328649580479e-05} {"commit": "ad2c06ffeb173c15b2967692f6114c709a0b6895", "message": "[io] add acess to local_solver in parameters\n", "proba": 4.5450892116605246e-07} {"commit": "09013d7b7baff68fb4f2b91bef82bceeb71e06d1", "message": "fix: replace unicode errors\n", "proba": 0.001645688433200121} {"commit": "1aef9d490b932fa5143fdb64f1f20160e8441f8e", "message": "Avoid negative values when ismulating light curves for in rms spectrum tests\n", "proba": 7.299256594706094e-07} {"commit": "bcccccb07a373d8fa48aa6d7bc9340296f12ce42", "message": "Make uwsgi loading module within a virtualenv\n", "proba": 2.767468458841904e-07} {"commit": "97ce8dd082f3bb7e7a5146d9262db2a7491e8fd6", "message": "graphwiz use default splines\n\n* orthogonal do not work reliably", "proba": 1.2157397577539086e-07} {"commit": "1c3e8def9f46ee0f21d1172287af0b4fadf67884", "message": "Add some more backwards compatibility: also add intent to outcome\n", "proba": 3.2144302508640976e-07} {"commit": "df5ad15f005e8a059ef504fe2e9bad71accd856f", "message": "Fix bug: If sensorParams['sensorAutoReset'] is true, CLAModel dies on assert (issue #609)\n", "proba": 1.6963950599802047e-07} {"commit": "007bbe3c379a3728c08adf4ca33ef70ad1e3ea2a", "message": "Subclasses subprocess.Popen to prevent pickling of member _handle\n", "proba": 2.413059974060161e-07} {"commit": "bb06cc41c99c37c194fb5262775d78577589783b", "message": "Collect all of the series.\n", "proba": 1.0546524720211892e-07} {"commit": "da4eb6d336e79e7d074bf29ecd8134077d482188", "message": "Added deploy_error as a 'build' task, so that it is not counted as 'active' time.\n", "proba": 1.2664813198171032e-07} {"commit": "f3c4562bb91051eeb878d67ea74f546d41186a21", "message": "Fix authentication test, missing CATMAID_URL\n\nThis adds settings.CATMAID_URL to the expected URL. Otherwise, the\ntest will fail in an environment where CATMAID is accesssible via a\nsubdirectory (and not \"/\").\n", "proba": 1.202635218078285e-07} {"commit": "4c9ec22f8f131a33043c5ad60337bc3408548768", "message": "passing barcode check value for the attribute table", "proba": 3.5251264307589736e-07} {"commit": "bf983c8b11daeaac28999ca15d3a6623c9aed7bf", "message": "Imports...\n", "proba": 1.527921682509259e-07} {"commit": "831a67cb5e164f41797d45936848ebb54663f389", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "c970a04f404da23a366aa88fba718db7f470ae38", "message": "Add warning about password length (#37)\n\n", "proba": 7.520072244915355e-07} {"commit": "7aa3f1e0cb3d0fd40f72d8e64b3f0f8d76392a24", "message": "round occasionally long, longs from rabbit queue api\n", "proba": 1.3268484622130927e-07} {"commit": "c68138bc5ed1651059941bdb8a30c46ccf096ac0", "message": "update script\n", "proba": 8.673347906551498e-07} {"commit": "1b2f0be67a8372a652b786c8b183cd5edf1807cd", "message": "Swap back to Fuzzer, no monkey patching\n", "proba": 2.4316796043422073e-07} {"commit": "db77b16cd0f5514e56f1359f961da1ee50d088ba", "message": "Skip already remapped vertices while scanning the following LODs.\nNote: a geometry and its LODs must use only one vertex buffer.\n", "proba": 1.0234059288904973e-07} {"commit": "c835bd4f76abbbeb0c05a5e806c3e4b418582f06", "message": "[tf.data] better benchmarking code in tests for measuring improvements to csv parsing\n\nPiperOrigin-RevId: 198457501\n", "proba": 1.2887880984635558e-07} {"commit": "f92a57e042c689929424364b018b4244f32ad886", "message": "in ParamSpec constructor, check that min and max bounds are set if required by generator or mutator functions\n", "proba": 1.433131018302447e-07} {"commit": "b388284022ebb325b171789fda640623e4fc51a3", "message": "addded verbose_name for Site\n", "proba": 2.833788812495186e-07} {"commit": "3e6fb9e643aa674b5116833107f9f35fd89c9e1f", "message": "update leapfrog integration tests\n", "proba": 3.5525945918379875e-07} {"commit": "5bf66857f13cf61e768b0ee9a69096bf819fe46d", "message": "tests for integer\n", "proba": 0.00018932348757516593} {"commit": "55c2bba4c3211be7b3e15f49608cfbbaae8ae9c7", "message": "help link in sitemap must be absolute\n", "proba": 9.16075732675381e-05} {"commit": "97b8b17004605f854d020c3114d2c6be2efb0376", "message": "Update decorators.py\n\nRemove unnecessary import.", "proba": 1.1309882808063776e-07} {"commit": "55eb8f49a08561dd5892f97722ecd9bef6487156", "message": "version", "proba": 1.0191783985646907e-06} {"commit": "40373657443f6d38820bf4efca270fa1b08a315d", "message": "added urlencode in unsubscribe link of bulk email\n", "proba": 1.2871716137397016e-07} {"commit": "1174a12cced0306e76a3bbcf8cba279dcee39b7e", "message": "fixed typo in Simulation\n", "proba": 6.730440418323269e-07} {"commit": "ffd14af829bd3f7bf52cb0af5306550b51ab8712", "message": "Remove mox from tests/unit/compute/test_compute_xen.py\n\nThis patch replaces mox with mock in\ntests/unit/compute/test_compute_xen.py.\n\nPart of blueprint remove-mox-newton\n\nChange-Id: Ia373e05ca9c82137924e443bfceaecb9f20a9c76\n", "proba": 2.343069127164199e-06} {"commit": "ba03dc23a11ae9ab06754d7aa996e8c8bbd1b098", "message": "Clarify the scan pattern error message.\n", "proba": 5.9664525906555355e-05} {"commit": "858b1bccddb8f7aeb9e6b71e48a46994cfd7c0d7", "message": "add modified dict\n", "proba": 3.947291418171517e-07} {"commit": "3dc25bd22972507df0794e201adc7db54f2d884a", "message": "added methods for retrieving icicle\n\nSigned-off-by: Steve Loranz <749f95e2748aaf836ea2a030a8b369f33fe35144@redhat.com>\n", "proba": 1.1494310570014932e-07} {"commit": "13390a3dd78306b92f0b32ca42c30ffc322459d7", "message": "restart sampro\n", "proba": 7.219452982099028e-06} {"commit": "e5dcd003087f23195714d524b6092d388065feca", "message": "setting urls to the new es xform api", "proba": 2.534920895413961e-07} {"commit": "a1fdd3520c8af0285982434239f35bec586b374e", "message": "fixed some documentation\n", "proba": 1.8375844490492454e-07} {"commit": "80fdc90e3852eb2253948d6140bb03464cc85ed0", "message": "Export webdriver as kwarg to export_png and export_svgs (#6749)\n\n", "proba": 1.0555137919254776e-07} {"commit": "e07e70a414e83f0b15d3f7f94b9134bd86d4a1c7", "message": "Add asserts for LinearOperatorBlockDiag.\n\nAll asserts are only dependent on the constituent operators due to properties of the direct sum.\n\nPiperOrigin-RevId: 190156830\n", "proba": 4.6908911599530256e-07} {"commit": "c545c938d4f087c5ca3a3fa9a68a9860875d58a2", "message": "New dev version\n", "proba": 1.7831929710609984e-07} {"commit": "6eeadf2246c5aa09bbec6fd5b6bb0d9fde25d348", "message": "Remove dots from rendered maze\n", "proba": 1.997253775698482e-06} {"commit": "eeccb36f95152d8b175b770c1ed348d49ceac324", "message": "fixed py3 bug in map loading\n", "proba": 2.3403619309192436e-07} {"commit": "4534bff12b9fa76fbf7230ff2fc51a7d37bc98d8", "message": "Python 3 correction\n", "proba": 2.2627571070188424e-06} {"commit": "f9b534b0a3d51bc6c3784a2f8293b21c95db82e6", "message": "plotting 3d umap on a copy of adata\n", "proba": 1.636693269801981e-07} {"commit": "08ec096f1698e20828cda41439217d8e658c77be", "message": "changed datetime class back to using properties,\nuse case in JulianDayFromDate to seperate between python datetime and netcdftime.datetime objects\n", "proba": 1.7945238539596176e-07} {"commit": "d0ca9aa6cf39c4743e398f65e4c7f5bbc3c03d78", "message": "Clarify API sample\n", "proba": 3.252245051044156e-06} {"commit": "91b09ae6d7efa41ce4b693981fa340b58a75d26d", "message": "Letzten Comboboxen im input_all widget auf dynamische gr\u00f6\u00dfen gesetzt\n\nSigned-off-by: WinMic <1b5143c09d7c00cf066af0ac7fa31b66a5e2fab5@gmx.de>\n", "proba": 1.2336276711266692e-07} {"commit": "20beb3009a710e546b7b2e70034a76c4d073ab3b", "message": "Ask for first n solutions with new nb_solutions argument to problem.solutions().\n", "proba": 3.5278907262181747e-07} {"commit": "a0e67ae4342a0647f8862cc30e3a97c7cd5d1e67", "message": "fix institutional login url redirection\n", "proba": 2.9030704808974406e-06} {"commit": "d9006204ec808ea3210debc34928dba650c68bfb", "message": "Added cori to pipeline\n", "proba": 1.528172219877888e-07} {"commit": "a5f8b1347cf5ef8022be8cc64bc323af48aa1fdd", "message": "Exact optical depth.\n", "proba": 1.3841599866282195e-07} {"commit": "6f2f26e08c6e0d476593c82ad31d13847f30cbf4", "message": "BUG: Fix test_ccompiler_opt when path contains dots\n\nFix test_ccompiler_opt not to be confused by dots occurring on the path\nto the temporary directory, by using only the source file's basename\nwhen grabbing options. Otherwise, the test can fail with mismatches\nsuch as:\n\n E AssertionError: 'sources_status' returns different targets than the compiled targets\n E ['AVX512F', 'AVX2'] != ['(20 2/TEMP/TMPB0YHSCAI/TEST_TARGETS AVX512F)', '(20 2/TEMP/TMPB0YHSCAI/TEST_TARGETS AVX2)']\n\nThis is because our TMPDIR value includes numpy version, i.e. 1.20.2.\nThe splitting happens on the first dot that is part of the directory\npath rather than test filename.\n", "proba": 0.00030430214246734977} {"commit": "c95741202ddd873f1b51a9ca1da89241390deb2a", "message": "Change derivative call in ConsMarkov\n", "proba": 1.49284332451316e-07} {"commit": "2fa0015c61830a821fd2b9ca6cebd0a738af6a99", "message": "Pass an inc param instead of process(), renaming\n", "proba": 1.2714760941889836e-06} {"commit": "22feb7ac3e8a5d4ef7c0e371752cae24974445a8", "message": "fix dj21: removed CommandParser argument cmd\n", "proba": 0.00017411033331882209} {"commit": "aace4c7449f964109e422e38a669f72ec62c7767", "message": "Make sure filter arguments evaluates to True before setting\n", "proba": 0.0006082403124310076} {"commit": "4ffe901fda2ad96b3db8cf9709ab1941eb1aa7b5", "message": "TODO when call_taxon_search returns more than one JSON obj\n", "proba": 1.986129518627422e-07} {"commit": "24a4255e609e461b073e817d0d79f20b4d0625bf", "message": "Reenable skipped test.\n\nPiperOrigin-RevId: 489308280\n", "proba": 4.701936120454775e-07} {"commit": "1d8d1aba6edca7787957ac38a28eb2cd40abc448", "message": "update pfs for flash; bug 957357", "proba": 1.38569731689131e-07} {"commit": "e7dac5b5cc02f1692a00c39a82eeb62b620aeac4", "message": "normalize all paths (remove .., .)\n", "proba": 0.00022260495461523533} {"commit": "c0a121d240f922961d850d3bdd2a707bbc5a6ac7", "message": "Downloading queuedata\n", "proba": 4.887636464445677e-07} {"commit": "25264fb2fc2db6bd246ba8bce4b630043999ac66", "message": "fixed imports\n", "proba": 6.682893172182958e-07} {"commit": "2fce7760de80b66cf3f3a52675d7374dcb9e06cc", "message": "* subversion/tests/cmdline/getopt_tests.py (process_lines):\n Keep the \"System information\" trigger line in the output.\n", "proba": 1.1067704264178246e-07} {"commit": "81438447571c4a449e707a84bc655ff124bea56f", "message": "changed description", "proba": 4.9045629566535354e-05} {"commit": "55698a843e25255488399f9c8a6aee2f707ec2c8", "message": "fix bugs of not updating spec when update meta of normal app\n", "proba": 2.259069162846572e-07} {"commit": "ec49e4ee72d85f8b6f4f7baa1462c6411dbafe63", "message": "shortcut dep types\n", "proba": 7.109758257684007e-07} {"commit": "4ca8c46eaf35c726604c6da93c7503d5b24416a1", "message": "fix race condition in getting floating ip (flake8)\n", "proba": 1.2061130405527365e-07} {"commit": "5fef02a25accb87d30d0c2673a6281150c0e75c6", "message": "Closed more plots\n", "proba": 1.325799843243658e-07} {"commit": "00203eb1d84bccca4c6e3d57e6c4b3538d662a96", "message": "Avoid adapting the loader in 'no reader fallback' as it won't be adapted in CPython. Ref #214.\n", "proba": 1.0817550588626546e-07} {"commit": "0e2548637d9726dc549b13abc3a6b38c51e300bd", "message": "vcfparser: not count , and . values in allele count\n", "proba": 0.9999866485595703} {"commit": "70d170b26d0525b8dd9aad0ba1970b839b04ecee", "message": "Get course from environment variable\n", "proba": 2.588534186998004e-07} {"commit": "ac738a096c90bce5ea3ffd7723b8979817093704", "message": "NXDRIVE-622: Cache result even if we can't get user fullname\n", "proba": 1.2479669919684966e-07} {"commit": "c248f06173f9bdcf54a922a2d5590693baca2972", "message": "fixed broken path to spystats\n", "proba": 2.915345476139919e-07} {"commit": "077119989abb6b176c6b77ae8f4e1003769152b2", "message": "Fix #2 - wrong exception handling\n", "proba": 8.707410756869649e-07} {"commit": "4afac22a1bad42a165ac379580d438f55fa7b0c3", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "2bbe89aee6a2a916ab1b8f008b732cf2b0724267", "message": "Minors\n", "proba": 1.654016159591265e-06} {"commit": "e9a6fbee384c0b8d78ad95fdaac066994d28e34f", "message": "BUGFIX: linear_gaussian_ssm's special casing of covariance referenced the wrong\nattribute of MVNDiagPlusLowRankCovariance.\n\nPiperOrigin-RevId: 383465788\n", "proba": 2.721020848639455e-07} {"commit": "7e4f5d2221d14c486dd75c523cc842bd3116b300", "message": "commit with a makefile\n", "proba": 3.9103329640965967e-07} {"commit": "ae615b67f11745ae018a67fce2920947a42089c9", "message": "Refactoring PingCmdMaker\n", "proba": 9.99883468466578e-07} {"commit": "5280ed6f64d239880660149b05be0e9b04d43af4", "message": "* subversion/tests/cmdline/revert_tests.py\n (revert_with_unversioned_targets): Expect a 'Skipped' notification.\n\nSuggested by: Noorul Islam K M \n", "proba": 1.0750229506584219e-07} {"commit": "a5001fa94be7d51dc3223c6663e3df032b81b8c0", "message": "More pythonic approach to config default\n", "proba": 1.2227289403199393e-07} {"commit": "dd14303cf3a14e429e20b331d150290427652a8a", "message": "improved MultplicativeGaussian doc\n", "proba": 1.9807839635177515e-07} {"commit": "8cdd0bfbc8915f41595150b210cdb489265d299d", "message": "Remove unused imports\n", "proba": 8.691937409821548e-07} {"commit": "bf747bd410b20668b2dc11a4eb0f45bff8ceb38b", "message": "Hashes only the modified files or directories and hence reduces cpu load.\n", "proba": 1.0231717340047908e-07} {"commit": "7f70ff0598206cd064c7f33b28b13f40fb45005f", "message": "Fixed Total Price\n", "proba": 5.036404218117241e-07} {"commit": "b442396ea4ad37c894a38abdbbfef00bbf26e406", "message": "PYCBC-540: More corrections to collections\n\nWrap results from couchbase_core.bucket in a ResultPrecursor\nto be converted into a MutationResult.\n\nChange-Id: Ie799b7fd3a2a0b38c9e2dc6b4d3d965d73128da6\nReviewed-on: http://review.couchbase.org/110548\nTested-by: Build Bot <80754af91bfb6d1073585b046fe0a474ce868509@couchbase.com>\nTested-by: Ellis Breen <9d8041ac7ead8d3e1f3217c04c7ed5e3098c2381@couchbase.com>\nReviewed-by: Sergey Avseyev <87f6d5e4fd3644c3c20800cde7fd3ad1569370b3@gmail.com>\n", "proba": 2.6922145934804576e-07} {"commit": "b408f17557e0cf765d106cdb4ac1dd91bd09f97b", "message": "py bindings -- shrink camera pipe realize size\n", "proba": 1.2380520786337001e-07} {"commit": "08238c7e9c00e775c62a1a0b48c96d778c000335", "message": "cleaning up new user initialization.\n\nnow it adds a version file to prevent having to check for updates on the\nnext start, and also removes double-confirming that setup is complete\n", "proba": 1.168304990528668e-07} {"commit": "36f3ae1562f891941966f1bb441fcd93b8a5229d", "message": "[fix] check if user exists while setting last active date\n", "proba": 7.979190286278026e-07} {"commit": "154c996d6dade89fa1012261191bafb99a4d84cf", "message": "Resolves #16: Merging fix/16-verify-warning into master\n\ncommit 828ef21ba3a0fab3d7d23c159158bc58fcda49b8\nAuthor: Samuel Jackson \nDate: Wed Dec 3 10:57:57 2014 +0000\n\n Refs #16 Squash warning for urllib3\n", "proba": 1.5985688150976785e-07} {"commit": "f2cb50d85a5b41ea0b96d19ee5821d5f7cb17ecb", "message": "scroll position and coloring\n", "proba": 2.54002202382253e-07} {"commit": "bbe1ad1f482703c94c645dbe1315bbefa5ba42ee", "message": "NXDRIVE-671: Check if an icon is found\n", "proba": 1.332946339971386e-07} {"commit": "443e1fab3c79ccf6a40bf01393fe4dad399926d2", "message": "add tags to local item\n", "proba": 3.178987526553101e-07} {"commit": "e8b070183ac3ff82c4149b523daff94432fb3c72", "message": "don't use in threads inproc://monitor", "proba": 2.964951590911369e-07} {"commit": "9e8c4306045a4b8c8af673ec72d67334348cd3b1", "message": "Fix tf.where consistency test for the JAX backend.\n\nPiperOrigin-RevId: 399481067\n", "proba": 3.252880196669139e-05} {"commit": "77d3d1caf28d90902552a6f4f0e65dde38c90f84", "message": "Fix error message wording\n", "proba": 4.814578278455883e-05} {"commit": "555db2e8d4a716e457744c8180e06fc55596a10a", "message": "A follow-up to r19149, improving the code execution path and inline\ncommentary.\n\n* subversion/tests/cmdline/svntest/main.py\n (create_repos): Gate iteration over stderr in length check, and add\n comments.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@859225 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 1.7996222823057906e-06} {"commit": "8101b14451345fcfe292040335fb3c03492884c1", "message": "Add polling location ID to HTTP response\n", "proba": 7.315361472137738e-07} {"commit": "483ae7e7f270d6bf1d89b1395d8a1167c60036ef", "message": "versions\n", "proba": 1.4197439668350853e-06} {"commit": "764d098318ba9620411fc63cd6e94c0793df8ede", "message": "fixed peewee errors\n", "proba": 3.1675631362304557e-07} {"commit": "73e49b55447b066f0a8ea985b6b0fbdde8c0f789", "message": "Show 10 news items instead of 5.\n", "proba": 1.3185029956730432e-07} {"commit": "b47143d38027a7bafc73376de01bd2fa2196ac60", "message": "Add test for file interface in put_attachment\n\ngit-svn-id: 1a6133524cf556115cafdd509b8ccdbd83ff0695@101 7a298fb0-333a-0410-83e7-658617cd9cf3\n", "proba": 1.307677734985191e-06} {"commit": "2dcfccd75c49a4f375d49a52bff5d33cd971e8b6", "message": "Update install.py", "proba": 7.286354843927256e-07} {"commit": "bfba3fba85a2d4890cafe665c65c63dd5f7484d9", "message": "another fix in UCS encoding table - capital omega with psili", "proba": 1.4680236404274183e-07} {"commit": "1c3adf5ed62792bdaf8c5262edda1f1178a1f83d", "message": "track pithy phrases in highbrow plugin\n", "proba": 5.942477514508937e-07} {"commit": "372a7bf05ec38d53655072698053a5baef71d605", "message": "2.7.13\n", "proba": 2.063198053292581e-06} {"commit": "e37b1b01b0ca6f17f7607f0bb42587697c500733", "message": "enables admin controllers\n", "proba": 3.1005049550003605e-07} {"commit": "43f67a09d0e194ef3012bad97e0cb45db7c34d35", "message": "test travis\n", "proba": 2.079919113384676e-06} {"commit": "888aa26b0b46b3bdb7589192d553210556682299", "message": "A bit more logging goodness.\n\n* subversion/tests/cmdline/svntest/main.py\n (wrap_ex, copy_repos): Use the logger to record error conditions.\n", "proba": 1.0319639898170863e-07} {"commit": "b35386aae24e82b1596c95f4120edd224c0ec50f", "message": "revert extra changes\n", "proba": 2.5441048023822077e-07} {"commit": "dbe3440673843a346471e105035684102b2bc2b8", "message": "another attempt at fixes the decorator tests (Py2)\n", "proba": 1.1546134004447595e-07} {"commit": "06afa6ff4ed408a4d9ac1ea13caf794008a21f2e", "message": "Also check default hub assignment\n", "proba": 1.6134437430537218e-07} {"commit": "34ca4a5920d73c07c30c309747edd5526cbc37bc", "message": "Sending message error to user instead of just writing to logs", "proba": 3.586729064863903e-07} {"commit": "64105b4696c2fe1c80af5221670de1b3617356bb", "message": "fix: add missing bracket\n", "proba": 6.653893797192723e-05} {"commit": "e87d22b244ffb524ef3315b8759e0b6e40ed7685", "message": "perf: strain html before passing to bs4 (#13785)\n\n", "proba": 1.125059725382016e-07} {"commit": "70e53ce8f369136c7bd3e6f972e20350c90c7ad1", "message": "Refix output_xfm in NlpFit.\n", "proba": 1.3864944037322857e-07} {"commit": "4d0d8862b6741e6a34eb28eeb8d4f6e8861903e8", "message": "Print sensible message if trying to load lattice without cothread.\n", "proba": 1.4519352475872438e-07} {"commit": "e86c6b23c4ecbb42470ceba6a6588c45d93b6b91", "message": "Make run-scheduled jobs to run every minute\n", "proba": 1.4298547284852248e-05} {"commit": "ff9822c7776cdef1e14e80a2cc56700bbc4f24f2", "message": "Fix Mac OS build warnings on old node versions\n", "proba": 3.374079540208186e-07} {"commit": "1c27f2dac0e34e3c5fc279a8204c388a39f16471", "message": "Make an update test a bit clearer.\n\n* subversion/tests/cmdline/update_tests.py\n (forced_update_failures): Rework how the test works to make it a bit\n clearer. Dump some thoughts related to issue #3209 into the comment.\n", "proba": 1.0738138911392525e-07} {"commit": "909f77f3076abe4874b728c29972026e6a19870a", "message": "tests for progress setters\n", "proba": 2.206110849556353e-07} {"commit": "21c4f0b14ec179ae4a42acd5ba0742dbfc88ed52", "message": "test fixes\n", "proba": 6.421356033570191e-07} {"commit": "e7c0c47c360d2ad0dc3ad13215132a4a5c4d0a76", "message": "Added logOH script\n", "proba": 2.233037719179265e-07} {"commit": "31c09d1f2d0d348bc3904586a2f2fa7be74e6383", "message": "tgrep: string literals to unicode\n", "proba": 0.9990161657333374} {"commit": "47efb8efbfc0644fdca7864bcc3cd959ab8cfa94", "message": "empty message\n", "proba": 0.0019680685363709927} {"commit": "19d6e96a7039f6959cc9f47ba75c2972136893a5", "message": "Update config for email handling\n", "proba": 8.287634614134731e-07} {"commit": "6169f4cdf645200ed7490aaa329fffe3b3550cb6", "message": "Linux library link for uuid\n", "proba": 3.037982310161169e-07} {"commit": "961e595cdbed8dc88c14ae55dc4671c0b7c23031", "message": "debug print\n", "proba": 2.783322315735859e-06} {"commit": "a57e38233679bf6d95dad533d87ce1c69c00cc26", "message": "Include process name\n", "proba": 1.8361879483563825e-06} {"commit": "b334cd5ff976fbcb21938428bf52d7ce469771cc", "message": "Brain: Adding tests coverage for locations form and location_type form\n", "proba": 1.2779004521235038e-07} {"commit": "8dc22ecff2b39a09aef3171a554cbc22500055d8", "message": "parts -> names for consistency\n", "proba": 1.613896216667854e-07} {"commit": "118fd3d3c18e37d18bc40c8495ac2cb328c8d022", "message": "Log the exit code of the container\n", "proba": 1.1652015018626116e-05} {"commit": "004853e8556d825e97c27fd5e270279cf102268e", "message": "fixed nnet arg names\n", "proba": 4.5974331897014054e-07} {"commit": "c4bd35f695445461f93bccce0e187f10fa7730d8", "message": "binding.gyp: always build using c++11\n\nSigned-off-by: Michael Ira Krufky <00524723a60798c74a43fcc620c25dd7b9ece078@gmail.com>\n", "proba": 1.1716165460029515e-07} {"commit": "54eb568a0c2f13a7b6372f8257b31827ca248cb6", "message": "remove old code\n", "proba": 0.999864935874939} {"commit": "8161d7e3d0a2d92181478457ec0aa2759e5046a0", "message": "Catch problem with missing data when creating the database.\n", "proba": 7.334249971790996e-07} {"commit": "6ad4f19ec100d5b264eb5fd02939562532fffda3", "message": "all appeditor service requests now should go to /appeditor/services\n\ngit-svn-id: 1dc8261ca909f20fce6cfd8a2ef29e7db7f5be91@254 5914aa95-5b3a-0410-a3b5-7b719e7fe9b2\n", "proba": 6.030539907442289e-07} {"commit": "56930f94d6c8955684f0a2928d01f5af5c166a32", "message": "a_tools: correct a merge conflict in latest_data()\n", "proba": 1.3028006833337713e-06} {"commit": "80ea012fd40e383e7c91d40519086b734bab29f2", "message": "Updated\n", "proba": 4.837594929085753e-07} {"commit": "69eac9efe58c9038a5b3dcccc612c6eab973eddb", "message": "Ported set_initial_state and set_attractor_state from C++ to Python\n", "proba": 6.909795615683834e-07} {"commit": "57b707b7f7e7076f8c1f84e57ba3a3db45135340", "message": "Fix compilations for macos mountain lion\n", "proba": 5.796384357381612e-06} {"commit": "644fbef7030f0685be7dd056606ab23daaefdc72", "message": "Fix typo in error message variable\n", "proba": 0.00017785381351131946} {"commit": "f220858389356840e51c061aebe0c60b4df5293e", "message": "cosmetics\n", "proba": 1.643785367377859e-06} {"commit": "893b9947ef8d884ff67c84a60ea2c251b408a6d0", "message": "update build_db.py script\n", "proba": 7.536556836384989e-07} {"commit": "cc6a0c96e17ee9381eee136142c3bda29e7d8bad", "message": "Refactored dunder functions to be more open\nHelps especially when reusing static functions\n", "proba": 1.2453597264538985e-07} {"commit": "7f01aa6deaa9a13ca388fb4c84849bce53d34d5f", "message": "Make sure C++11 is used under Mac OS\n\nSee: http://skitr.com/2014/05/11/node-js-addons-and-c11/", "proba": 1.2869567456164077e-07} {"commit": "fe3b88575530bb82f6fcf4d1121b901246b93b77", "message": "[FIX] Fix doc_string of reducer (#292)\n\n", "proba": 1.2034452367970516e-07} {"commit": "c369f85388d3c22ff01eff4b45828c19d5e5f12f", "message": "get secret key from envvar\n", "proba": 5.124509812048927e-07} {"commit": "6b6948b4dcf7400eefcfb2a499c0180d03052550", "message": "Remove unnecessary string formatting\n", "proba": 0.0050985380075871944} {"commit": "c49a55b98aefa2e426a187f08a77f052f2493806", "message": "Indentation error in tempfile.py\n", "proba": 3.268065711381496e-07} {"commit": "c20a9b9029d83615a7a96c3a537787e3a2a4e099", "message": "created a admin_filter in indexview\n", "proba": 2.6464243774171337e-07} {"commit": "a6dff532d75d0a63c59db0cbf800587845d587a1", "message": "add compiler flag\n", "proba": 1.5030418580863625e-06} {"commit": "90db64baa274229f352cf256cbab483aee540d11", "message": "BE ODF now does not get triggered if it is a G-line experiment\n", "proba": 1.225831169904268e-07} {"commit": "055a88a141b8d77583d3ee7948ca2cdb53f82771", "message": "Fix parenting\n", "proba": 2.4660146209498635e-06} {"commit": "5e2ef9885a65d61edcdffaef9e4f8a960bef567e", "message": "Refactor CAS tests.\n", "proba": 1.5463510294466687e-07} {"commit": "e195a22784a6c305c6067c732132d40d9c353590", "message": "Trying to revert vcsimdata to original version\n", "proba": 1.6979295480723522e-07} {"commit": "83c71a5161fed13a76b125fa4257bc670d0a249a", "message": "Start work on ARC, fix LRU.\n", "proba": 1.110839491502702e-07} {"commit": "7fe7a4bde1353e910ab5fe990bc0751bdb5c0f8b", "message": "fix link errors after syncing m-c\n", "proba": 4.408656195664662e-07} {"commit": "167101baa4d57d22bc6a40d7ff8afd3688e23580", "message": "fix ControlText focusout bug\n", "proba": 2.387773463397025e-07} {"commit": "3314101f33af386e0a668e822049bfc9321b783d", "message": "Pass date\n", "proba": 3.166820897604339e-05} {"commit": "2ff0b9cc166869a4e55f947dafc84a16de3e3e9d", "message": "Pop request from kwargs", "proba": 1.9340468782047537e-07} {"commit": "44c44f6b1234bda44d9c8dfeeed1522e3271a31f", "message": "models.py: password encrypt\n", "proba": 1.0577368811937049e-05} {"commit": "f52a5dbecbb53f9ed5c6b43ed8b49266037a533e", "message": "constant name in capitals\n", "proba": 0.0002194953995058313} {"commit": "22cf663731bc556ef625695ab3213e87432ed4f9", "message": "fix docs link\n", "proba": 3.0036912335162924e-07} {"commit": "3fe67d25e40e491e7ac57ddb965c59d2d1990ad6", "message": "fix constantsimp tests\n", "proba": 8.276884386759775e-07} {"commit": "d9a034e74bf03a5a9837201d2e358d51e759f112", "message": "add dc_aware_policy\n", "proba": 3.9311231375904754e-05} {"commit": "2bd8de819f4c1904db2eb452085bc1ed8747b17e", "message": "client: Further datapoint retrieval work.\n\n- Only perform a refresh on points that are due for refresh.\n- Store a reference to the point class so that other client\n implementations can supply their own compatible HaystackPoint\n subclass.\n", "proba": 1.1174228120580665e-07} {"commit": "33cb45b08a434d68a9c4a0e1cd0618b225a19e08", "message": "VMware image clone strategy settings and overrides\n\nThe VMwareAPI driver code currently spawns all virtual machines\ncopying the disks using a linked-clone strategy by default.\nThe VMwareAPI also offers a \"full clone\" strategy. This patch\nmakes the following changes and improvements.\n\n* allow images to specify if they are \"linked_clone\" or not.\n\nFor technical discussion on the clone strategies and their trade-offs\nsee: https://www.vmware.com/support/ws5/doc/ws_clone_typeofclone.html\n\nDocImpact: vmware_linked_clone metadata controls image-clone-strategy\nChange-Id: I7a7ad57708202c8e8af5551b92a1e734185125f4\nBlueprint: vmware-image-clone-strategy\n", "proba": 4.24067911808379e-06} {"commit": "6ca98f1c1cdca42aab9be3491e1b5f2a23d8a29d", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "3297bb3e230c867b4a1caac6fc4f6ce223a0ed84", "message": "Factored out drawing logic from GLUT window\n", "proba": 3.444563958510116e-07} {"commit": "2f67e85d6b4f7beca32e8f10810795cfac2cf599", "message": "Adding search fields describing how we found the results.\nAdding Pfam search functions.\n\nNote: There is now some code duplication between the functions so this could be cleaned up.\n", "proba": 1.135872977897634e-07} {"commit": "bca8d68fabf2d3c6d46f56ac47f68065298cc55e", "message": "pymatgen/analysis/interfaces/zsl.py\n", "proba": 3.697895749610325e-07} {"commit": "5a74f7bd85d078c146b43fc4461a05c093748e0c", "message": "Minor changes to the output filename\n", "proba": 5.106644493935164e-07} {"commit": "b322397afc6531641b89eb65156d60301a5e4f8a", "message": "Fix bug that thinks you are logged in with a different account in go links", "proba": 1.689997475295968e-07} {"commit": "1f30631bc854f8b0f0906ae2015ae2d450046857", "message": "more trunks", "proba": 2.2354859652296e-07} {"commit": "c325e797ef88558da7b6af8754ca3ca1d9325042", "message": "Release 1.1.3\n", "proba": 2.8052113520971034e-07} {"commit": "a5c11291277d644a4fa59f9a352f550f029a118c", "message": "Added hdf tests for Spectrum class\n", "proba": 1.3719824210056686e-07} {"commit": "573c2fd4c1779420f28f308330bb289e9f1dc34a", "message": "Removing older results which are missing the chain identifier.\n", "proba": 2.18495074477687e-07} {"commit": "2b8cab2ea30551e75b361f0db307fd45afd81632", "message": "More code cleanup.\n\n\nFormer-commit-id: 960185ca9397c746215e0f30385259c95395c111 [formerly cfcef39c8da4c78970310b6df9e6f02034583b82]\nFormer-commit-id: 0dba05c8c9e761d9855071f11acd034c3d36ae7a", "proba": 1.518637304798176e-06} {"commit": "6717db65a84e26a85aaa0819b9233065d2f55161", "message": "Complete rewrite\n", "proba": 2.311497155460529e-05} {"commit": "fb53f764a82dd8e6d1992c4c254e90c185fd9c53", "message": "Change socket type in nova.utils.get_my_ip() to SOCK_DGRAM. This way, we don't actually have to set up a connection.\nAlso, change the destination host to an IP (chose one of Google's DNS's at random) rather than a hostname, so we avoid doing a DNS lookup.\n", "proba": 1.3226249961917347e-07} {"commit": "e9075eb12f7bfe34698679b1139c5d5aaa9e62fa", "message": "Updated models\n", "proba": 3.010045759310742e-07} {"commit": "9587854303e66cba93738dac026e438cd3318673", "message": "general: Start work on a proper api.\n", "proba": 1.226953969535316e-07} {"commit": "cd199852d6107fa0c5eb380504f4e96ca11da516", "message": "Updated from Brython Server: 2/7/2017 2:55:32 PM", "proba": 1.120412775890145e-07} {"commit": "c68d7cafe4bf575fd55d51cf701d57b9c54621cd", "message": "unittests: fixed python2 compatibility\n\nIn Python2: the test of `DetectedTime + 3600` fails.\nThis was \"fixed\" earlier in 8a2094c8 but later reverted by 3f88fca3.\n", "proba": 2.2528428189616534e-07} {"commit": "9aec73ed91728e705990c1ce3bdb99185b559f93", "message": "Set a fixed block size and improved download speed\n", "proba": 1.4780763990529522e-07} {"commit": "24d9a9c766d9ec38465fd3d74a31d84c54f850b3", "message": "PEP-8 fixes", "proba": 4.4366112206262187e-07} {"commit": "0ad5d46a4c1573ab0aba0b81b0790fc5d932a4dd", "message": "escape special chars when creating group filter.\n\nThe LDAP search filter used for group queries needs to be escaped so that group names with special characters will not break the search filter in queries.", "proba": 1.1531751198390339e-07} {"commit": "94b4799d2aeb57f9335c6031f16742e056f42962", "message": "improve error messages\n", "proba": 6.942471372894943e-06} {"commit": "adfc1c604fc2cf75bf28bf3bedd39a6be7a9231f", "message": "Updated from Brython Server: 2/15/2017 1:36:00 PM", "proba": 1.0822792972930984e-07} {"commit": "020b5877ce2629f1ef47671e61783dd83ce1e87f", "message": "update from trunk r9186\n", "proba": 2.146338573538742e-07} {"commit": "4ae0503af6854558714d07cf28077d261ec32d78", "message": "Ugh, many-many.\n", "proba": 3.565662609616993e-07} {"commit": "d00c4fb64c5d262cba1a43eb9f7d3f620d9b27b9", "message": "allow view_count and favorite_count fields for videos\n", "proba": 1.984493707141155e-07} {"commit": "de9d53cc544e30d66bdd56c2a8d41a3916db7f05", "message": "Rm dbg msg\n", "proba": 0.0003109838580712676} {"commit": "d6d4b554467d4724174b665c352ada9669d5a4e3", "message": "Updated from Brython Server: 9/17/2015 2:27:09 PM", "proba": 1.088319621089795e-07} {"commit": "6bfaad410fc59462397e90bff64306fb8fd1ce50", "message": "[IMPR] Simplify invalid title parsing\n\nThis is an alternate implementation of\nhttps://gerrit.wikimedia.org/r/#/c/403957/\n\nChange-Id: Ia2456e721472f9bb0386ab15ab1859aa54e63915\n", "proba": 0.9985589385032654} {"commit": "0cd518273536ce2421f89663bb7dfbf2f5702f27", "message": "add SB2 features\n", "proba": 1.874381467814601e-07} {"commit": "eda372fa5744b71b6b43c810ac0f4f0e88e2d3c6", "message": "get_build_version() is needed even where sys.platform != \"win32\".\nTry to fix buildbot error in other way.\n", "proba": 1.2188009179681103e-07} {"commit": "df45b7fd0f9065688f898912ad5c49a7eda41c20", "message": "filter some parameters we get from the API\n", "proba": 1.5526150320965826e-07} {"commit": "f02669509f140e50859446f2a793874e5393a652", "message": "Updated from Brython Server: 10/5/2016 1:13:13 PM", "proba": 1.1031139024453296e-07} {"commit": "d486d364ab50a8c45efdbc39d96ba60a36645b44", "message": "Removed unused code.\n", "proba": 2.1399168304014893e-07} {"commit": "73b66a32763b7efe36612db7f3a3b4566d8e44a2", "message": "set uid=197610(OIdiot) gid=197610 groups=197610 as primary_key instead of\n", "proba": 1.2774462447850965e-06} {"commit": "40f91b4faafa60342f33d8c862d293e659a3f4d8", "message": "[bugfix] fix cache attribute Page._depth\n\ncurrently the depth isn't cached\n\nChange-Id: I192c791d626a25a3c3384653c8d9f6c51e3ba51b\n", "proba": 9.643280236559804e-07} {"commit": "68170652d104873ea4fa210daaedb05ba9bf3b44", "message": "Wrong syntax\n", "proba": 0.9309829473495483} {"commit": "5bb15d63b772df2afd0a75d5e112803abd40e2d6", "message": "updated readFile()\n\nadded a 'csv' case and fixed typos in both 'txt' and 'csv' cases. Both should work now.", "proba": 1.392998001392698e-07} {"commit": "aed15b1cd4df7b8ac508904bb44b0d441ad1f563", "message": "upgrading the tests for MultiDataset\n", "proba": 1.338275694706681e-07} {"commit": "c908db488f3e1d7aab0993780b38baaf4c995eb1", "message": "[datastructures.source] add docstrings\n\n", "proba": 2.930369760179019e-07} {"commit": "265c7e543aee89b5fa9442a3daa6521cdb90a901", "message": "[Python SDK] Add method to query the raw contents of a message\n\nSummary: Finally it's here, after a lot of head-scratching! Nothing much to say about this diff apart that the metaprogramming parts of the original code really need to be refactored out.\n\nTest Plan: Tested manually.\n\nReviewers: jennie, spang, emfree\n\nReviewed By: emfree\n\nProjects: #python-sdk\n\nDifferential Revision: https://review.inboxapp.com/D1053\n", "proba": 0.00041902094380930066} {"commit": "ffa383c97c8b3f9682af76f9f98bbea5256bab61", "message": "Updated from Brython Server: 9/24/2015 2:24:06 PM", "proba": 1.0887307411167058e-07} {"commit": "a45e52cd0a66cec9ee4d1be355d1c59f73dd814d", "message": "[FIX]'customer_area': arreglado return del onchange area_id\n", "proba": 0.0002273132704431191} {"commit": "72e3a82e9ecb13033de2f8448f744e411cd4dd55", "message": "Change reverse domain creation order\n\nWith refactoring the get_reverse_domain_name\nfunction, we change the reverse domain checking to\na reverse order. In this way we check the lowest class\n(more specific) reverse zone first. When an existing domain found we use it to create the reverse PTR records. If no one existing can be find, The most specific address will be used.", "proba": 2.5626772526265995e-07} {"commit": "a3df01231092cc2e8eeb608a41b7bfc26bf00888", "message": "Use render_error() instead of WPErrorWSGI().getHTML()\n", "proba": 6.181471690069884e-06} {"commit": "6238d90a9a760ef253b3ea03ba3d101ff3422d2d", "message": "fix pango markup for python3\n", "proba": 3.9603601180715486e-05} {"commit": "decbdb176121830dbaffe5db0596b0567be57a76", "message": "Make char parser public and document module better\n", "proba": 3.2979218644868524e-07} {"commit": "16b938f6182fe3d7a2d44c8b401c3a5410b541c8", "message": "Implement support for \"colour.colorimetry\" sub-package API changes.\n", "proba": 1.1927005516554345e-07} {"commit": "56a12fa645c3ac082e5be2e696eea1d93013f19c", "message": "Fixes URL split\n", "proba": 5.764399588770175e-07} {"commit": "c75520422d11bb2a9c68de4fea6327f024698d64", "message": "add traceback2\n", "proba": 5.095168944535544e-07} {"commit": "a0c18345d6629baf476bbf900fc8e8295f5040c0", "message": "Add 2 spaces before inline comments\n", "proba": 1.6331181029727304e-07} {"commit": "27bcccf9537642854efa72df9c045cc7ba2ac07a", "message": "[PEP8] pep8 changes\n\nChange-Id: I1454e6d701844d72570fd3e57e90b8e4b76a07c6\n", "proba": 1.834217300711316e-06} {"commit": "fb3e3d88c31abe02cf5132b08c4147efcadb781c", "message": "Explain Vehicle validity checks.\n", "proba": 1.4174790408105764e-07} {"commit": "fa79e1fd86392fbb7f1de11e13ed17de4dcbc496", "message": "Added hyperbolic trigonometric functions and ugly hack for parsing ! subscripts for now.\n", "proba": 1.0478332512775523e-07} {"commit": "6081eb70a20b2176386973720bbf6fd5d9846644", "message": "Read metadata as utf-8; Fixes failure when LC_ALL=C\n", "proba": 5.749796400777996e-06} {"commit": "3359c5b76d53b76259930d18c849b306a9b4efcd", "message": "Updated from Brython Server: 9/24/2015 2:47:30 PM", "proba": 1.0845358389133253e-07} {"commit": "ccc4f06234455588acb11ef2aa44780ccc881980", "message": "update thing convergence experiment\n", "proba": 1.9897885294994921e-07} {"commit": "3a4b3033cd6d185445daf1bc8d74a1a122fbb85a", "message": "Added framework name and status to response JSON for a service.\n", "proba": 1.0281407014645083e-07} {"commit": "0e913b3fc20e69a6ff77bafcc144e00175f8ed83", "message": "Put new classes to submodule level import\n", "proba": 6.344965299831529e-07} {"commit": "ae58788400a603596b344f47fbdf316b42e26058", "message": "Encode the font family as bytes to parse to C\n", "proba": 6.0205100453458726e-05} {"commit": "4eb596446d6070780bb6b59d6f64ec88a7413f37", "message": "Resolve conflict with master\n", "proba": 1.8206570473466854e-07} {"commit": "48165a82ce020fce1bcc8e36b318a3e3dd8ceaf3", "message": "Fixed up unmanaged and license delete\n", "proba": 2.2729103932306316e-07} {"commit": "71086f062b2afeaffa8eb1ba428ac83532bd6798", "message": "Command line completion and dispatcher name setting are mutually exclusive. Sorry.\n", "proba": 1.476887092621837e-07} {"commit": "8a4e0b84c5347ffb00a8855ddf8933f01657ceee", "message": "changing Turn class to dataclass\n", "proba": 1.8315009810976335e-06} {"commit": "933fa0d4e945eed130cd299a94b19afc05f24375", "message": "Convert the tf.Variable log message in custom_gradients to vlog.\n\nSo it won't cause log spam. An alternative is to only log the first n messages.\n\nPiperOrigin-RevId: 434820967\n", "proba": 0.00010784738697111607} {"commit": "f6f3073322684beaf49b6fd88f766502b98ee889", "message": "reduce unused imports\n", "proba": 2.0866400518571027e-06} {"commit": "80af21f3f42552e822bf72f9001a78ba747c87c6", "message": "Fix an extra whitespace.\n\n * svnmerge.py (launchsvn): Remove extra whitespace.\n", "proba": 0.00015306448040064424} {"commit": "4bd97efe363668ee0daf34b66a9c8c6976c30f1c", "message": "setting _name correctly\n", "proba": 0.00022600321972277015} {"commit": "916fa7aa8a2c2f1c6911cab75e295b51734d787e", "message": "Fit to 1st order for uvcontsub on HI SPW\n", "proba": 1.1817395773050521e-07} {"commit": "6566ef14ff19640c238ba935ff21643d554b4654", "message": "Fix breakage when celery is running\n", "proba": 0.00017221977759618312} {"commit": "36f99d7f25a2808a91cbf8a5ab156eff4814a92c", "message": "Adjust PyPI URL to new home of PyPI\n\nThis patch is important, as without it, the find_tar_gz() function\ncrashes with:\n\n File \"/usr/lib/python2.7/xmlrpclib.py\", line 1312, in single_request\n response.msg,\nxmlrpclib.ProtocolError: \n\nThis addresses the problem by using the canonical URL of PyPI.\n", "proba": 1.7826387477271055e-07} {"commit": "bb4d8a3b4e26a17a014a92e28f728947a4117263", "message": "runDispatcher() won't take any arg; use start/stopDispatcher() instead\n", "proba": 2.2146777212128654e-07} {"commit": "9d9976a520e95f02f64c9871b7aeff2667d42021", "message": "ajout affichage de l'avancement\n\n", "proba": 4.743656347727665e-07} {"commit": "58c02d28c216d4195429b220d14ba7326e93a62b", "message": "insert(replace=False) should really be a no-op if path is found\n\nthat includes removing duplicates.", "proba": 1.3815092358981929e-07} {"commit": "281c855b79eaf428c24e242c65dafeda798c91b8", "message": "Updated from Brython Server: 3/2/2017 2:41:49 PM", "proba": 1.1090696006021972e-07} {"commit": "a8e3a0b7896403d5d9de9edf147693befc90493d", "message": "Use SSL.\n", "proba": 2.678084456420038e-07} {"commit": "bda3395a16ab727e0ba742c58c561cec130c4dd1", "message": "Some fixes in Figaro assembler\n", "proba": 2.439563218104013e-07} {"commit": "d9cc118b1a76d08c68fcc152ec53cc67c2bc34e6", "message": "update the doc\n", "proba": 1.6041583705828089e-07} {"commit": "ddcac9f4b6462353e220d31122be6894d5977b8d", "message": "misspelled qgl2.qgl1; error not detected\n\nWe don't complain enough about missing imports...\n", "proba": 1.1407928468543105e-07} {"commit": "9b6cda547bf8918059428355f46e01e1226b2e72", "message": "MAINT: typos\n", "proba": 0.017952995374798775} {"commit": "292625a7c53d188e91645518a7222bc075f2124c", "message": "Allow elevation ranges in the elevation tooltips\n", "proba": 4.057635294429929e-07} {"commit": "41fe9b97b90dd67479ac57fda94ce5ee862df960", "message": "Internal Change.\n\nPiperOrigin-RevId: 188540659\n", "proba": 1.3248017012301716e-06} {"commit": "96d5979c119b88a6c6435e96308d99058cf6da7e", "message": "ENH: expose statsmodels.version.version as statsmodels.__version__.\nCloses #233.\n\n__version__ is conventionally present in nearly all python modules\n(e.g. numpy, scipy, pandas, ...)\n", "proba": 2.0931744870722468e-07} {"commit": "36608c6bd0035e4a78da2cd30d9fcca2c660ec3a", "message": "Add prepare in rpc client\n", "proba": 2.328349211211389e-07} {"commit": "9bf820eddc7d4e7588859271adafde4fa1d50032", "message": "eliminate 350k 'free standing' bnodes\n", "proba": 7.153979822760448e-05} {"commit": "8b0e337e1b2a44c7bca6801bc395fd2ba647e409", "message": "* tools/hook-scripts/log-police.py\n (fix_txn, fix_rev): Don't set a new log message if there's no change.\n\nSuggested by: philip\n", "proba": 1.9128876260765537e-07} {"commit": "652388bdce75e5a7b8e66e16b005fc73a786be38", "message": "fixes TEMPLATE_CONTEXT_PROCESSOR settings\n", "proba": 1.6816387642393238e-06} {"commit": "bead9f9051ca1ca9b1823547732e847dd86e1ea1", "message": "Add verbose\n", "proba": 0.9999994039535522} {"commit": "31cdca12db81b6902836f8b6bb5970fcabb2145d", "message": "fixed docstring for util.tiny\n\nfixed docstring for util.tiny\n", "proba": 1.2887724096799502e-06} {"commit": "874936ee72561a86eca7604bfad7dc6ace09659c", "message": "support for selflink_fieldname\n", "proba": 2.3564422235722304e-07} {"commit": "bf8b12f713bfbc983587c6cb5520becda3056817", "message": "Update docstrings to new structure\n", "proba": 1.9760783231959067e-07} {"commit": "bb7c7ee94f2ab1c4126566df0d2e5b0294343146", "message": "myrialang: trivial cleanup\n", "proba": 1.2983998658455675e-06} {"commit": "ae02dc7ac7ed5e26e551694b72475ead26960e13", "message": "feat: pprint 'auto_output' attribute\n", "proba": 2.3359598344541155e-05} {"commit": "9bbdf94da8be9976725fb131bfb5c9f5523b25ac", "message": "Fix inference with feedinput\n", "proba": 8.223246550187469e-05} {"commit": "34a811429e2025f396f8997aeb628253487537fb", "message": "Change Sparser call pattern along with actual exec\n", "proba": 1.187939560054474e-07} {"commit": "4ea9d3af34797f769bb6121aa68eec753e694678", "message": "automata\n", "proba": 3.7574118323391303e-05} {"commit": "3141940b39847c90ed3139090fabdcd565a79fd0", "message": "Fixed bug that didn't lowercase VOs before checking noproduction list in fife config file for JSR\n", "proba": 6.09256062489294e-07} {"commit": "345d72b927eff009262ae7fd4247f755a3b990c3", "message": "pylint refactor\n", "proba": 1.6862139773365925e-06} {"commit": "62c959c939525fc47e5ff0061bef1576110a4ffa", "message": "code formatting\n", "proba": 4.671690476243384e-06} {"commit": "349b31d68b616262b9fc1bd3a58e92a7c963ef16", "message": "Fixed method instances not evaluating to a useful value, and implemented method call evaluation\n", "proba": 1.9878937962403143e-07} {"commit": "42f25bfa0e093efc05a0c3b8f604a2a9e81289bc", "message": "wrong return from lspool\n\nwrong return from lspool\n", "proba": 1.2913737919006962e-05} {"commit": "3bb1bf8d43d9c03d7cf02d9b3aaee20b4731ee89", "message": "fix: [Mail module] remove debug\n", "proba": 3.350249642153358e-07} {"commit": "d75a29e29b5b83add5c369f103d05302734fb2f4", "message": "fix conftest related documentation\n", "proba": 1.8532900014633924e-07} {"commit": "bb89376a5c419e735000fd7de6d9988bbb062445", "message": "rename arg 'name' to 'tagname'\n", "proba": 0.0027141813188791275} {"commit": "7fc0895df39bc3341e93e6749ffcf73d9fb3d05f", "message": "Removed unnecessary collapsible section in Group UI.\n", "proba": 1.1108712527629905e-07} {"commit": "595add0477762e6711bde9eed5ce5817a0b3b022", "message": "added index_to_slice\n", "proba": 5.661318482452771e-06} {"commit": "f0460bc2e332f05f6abe358c86e9f023e06a2a50", "message": "Handle processing of a node with PFAM ID\n", "proba": 1.8147353841868608e-07} {"commit": "9271eea8191a5be0fd74d9b3be72acf1f3d6a213", "message": "Store challenge, signature as str/unicode for JSON serialization\n", "proba": 2.023530072392532e-07} {"commit": "3ee458fbe81cdc5f5a9117c8ec3e4a302e7989dd", "message": "Test crossproduct via bag compreshension\n", "proba": 1.238737041830973e-07} {"commit": "6005ba47f4532eb66b3b00f2f8b2fe9dfd493940", "message": "[pymtl.tool.sim] add test for global Bits constants\n", "proba": 2.3920355829432083e-07} {"commit": "39aab2372de9cf57a17b09020154321fe2cd224b", "message": "Fix deployment of iampolicies and iamusertogroupadditions.\n", "proba": 1.2413376282438549e-07} {"commit": "d4261248bf72febc0841d720f871b0ffa993390d", "message": "Simplify tracking of previous hashes\n", "proba": 2.281424167449586e-05} {"commit": "92a4570f339b4385f656d8ecc4d54d0ffc181a80", "message": "Refactoring horizon still in progress\n", "proba": 2.2467065718956292e-07} {"commit": "e25fa17d0c106cac37a23c9a08eb926190d97ca1", "message": "fix selene/core/match.py:467:5: E125 continuation line with same indent as next logical line\n", "proba": 2.4806053033898934e-07} {"commit": "a9365aa4a32fbe358a6f74b5730a7a3a0a8b3cda", "message": "Convert journal to pickled extra\n", "proba": 0.9999994039535522} {"commit": "1587068d6bf21cc416b0ec881a5bea85dbc35b28", "message": "refactor(stop_compaction): collect subtest results\n", "proba": 2.123498006767477e-06} {"commit": "4e2aa32fe6fb7c5df0009ec435ba1b1972548fb6", "message": "fix handling of positional arguments and keyword arguments\n", "proba": 4.777579647452512e-07} {"commit": "ce6e67890b5860d89e9c3ea6628a7a94ad9e10b3", "message": "Update Default_Settings.py", "proba": 6.0766501519538e-07} {"commit": "6ddbfbf4f4ccd0350e6066ef30967489f1e504d0", "message": "Allow for to be present in markdown\n", "proba": 2.894271801778814e-06} {"commit": "95ee3e65f10bf7c1b2a34d976d7babd4479800a2", "message": "Escape newlines in string code generation.\n", "proba": 1.0782557637867285e-06} {"commit": "43c0d3f1beb40dc0eeae51e8d7da63463aefd62d", "message": "silly typo\n", "proba": 2.25515086640371e-05} {"commit": "5acb90b4e8067c9cf9003faccd2a26fe2d39029a", "message": "removing scope and email from jwt (#198)\n\n", "proba": 1.0825043261775136e-07} {"commit": "2ca0fc8ea82c88689e895ec7db6f4a2fc7a6054b", "message": "Test bagcomp nested in SQL\n", "proba": 2.738494231380173e-07} {"commit": "64bd44d4338d57a68ff07527d1d2c3b37960c63b", "message": "[AC-6761] call parent filter, cleanup\n", "proba": 1.1459002280389541e-07} {"commit": "09e15f6d2ab82c0e897ca8390efe095709f7293d", "message": "Fix Upgrade for 3.0.0b1\n", "proba": 3.8635860732938454e-07} {"commit": "744ff863a297eac49b4ee6d098b457d02bb6d7de", "message": "fix\n\nSigned-off-by: chenweijing \n", "proba": 1.3644512364408001e-06} {"commit": "f0508e618738a28d5eebfbddf81f13b05de6a18a", "message": "this space is not used\n", "proba": 5.547524892790534e-07} {"commit": "e3b4af059fce174412befed0f78c85513fe5912c", "message": "libs/utils/filters: keep track of platform big and LITTLE cpus\n\nSigned-off-by: Patrick Bellasi <431c86f368affbc3148c4669fbd465131f7e82cb@arm.com>\n", "proba": 1.162239584573399e-07} {"commit": "35da0ca844679c8165132ad5f886363578b47a14", "message": "Use get_item that has exists\n", "proba": 2.955845502583543e-06} {"commit": "0cf71c590341c215bc90444b031cf2444675c6ba", "message": "MNT: Updated bin_1d method\n", "proba": 4.262527397713711e-07} {"commit": "330e30b595b0b9ba06fbf7027cb03ccc6c5da1ed", "message": "some cleanup\n", "proba": 3.653879900866741e-07} {"commit": "eee0d5191f88739d35b82d6f32d3b6aaf5777cd0", "message": "Set a default calling format since it's unnecessary to specify it proejct settings.\n", "proba": 1.1065150573585925e-07} {"commit": "cf345822df33d735405591bcb60ddd547505a74b", "message": "fix assert\n\n\nFormer-commit-id: e56b70dd41db033918bff21668c4a6ef72378f1b", "proba": 3.968836608692072e-05} {"commit": "28c93265fa73a0340ae73bc4bbcc8038c8108680", "message": "added simple dependency check that would warn a user if numpy or scipy versions are too old\n", "proba": 2.9965926273689547e-07} {"commit": "b9bf4aee292374dfb987f86046903e988dcaecba", "message": "Flatten package import hierarchy\n\nCan now import pretty much everything directly from streamparse if you\nwant.\n", "proba": 1.0367857328219543e-07} {"commit": "a23525e4b9fbb0c46835f6e57d606c9373fd139e", "message": "packaging\n", "proba": 1.7934321476786863e-06} {"commit": "5f99245973ef40db4190f7e5b53c487ba0861043", "message": "Don't count TEXT_NORM namespace as grounded\n", "proba": 2.722977797020576e-06} {"commit": "30e2ab7568dc00b9a8617c87269310691c19ed95", "message": "variable-length fields are initialized with a width of None\n", "proba": 0.9982524514198303} {"commit": "6a19de22327c7845c666887e46ec1aa35ea991a5", "message": "Remove redundant parameter 'cmd'\n\n- Remove redundant parameter 'cmd' from _run_command_on_instance\n\nChange-Id: Iabeeb3b1837f2a0af97e0b8c19c86a54f0b71096\nCloses-Bug: #1474730\n", "proba": 1.170470113720512e-06} {"commit": "d50b47cfe7df1a0c526189521b39625466615fcc", "message": "Add log indexes\n", "proba": 2.0457484879443655e-06} {"commit": "669a89fcf5184bac3da7fc405c2f2c3bb7d027d9", "message": "Added parse_timedelta\n", "proba": 3.198175306806661e-07} {"commit": "e5058ed1f14b8fe16be8055bb819e0a101cf2ade", "message": "Add unit test for with_scale and with_bias\n", "proba": 4.740567760563863e-07} {"commit": "155fea77dcff6b467f77c221ebd5d51571cdc803", "message": "inlude opennsl for wasm\n", "proba": 2.6363431970821694e-07} {"commit": "351a42332b7749b1aa97545b59cb28d857f7226c", "message": "fix degrade to case of --select=W --ignore=W503\n", "proba": 0.00018658532644622028} {"commit": "8f5f2c223693b4b422799ed850cbd637d75d86ac", "message": "Add missing paren\n", "proba": 0.9999216794967651} {"commit": "abb00ac993154071776488b5dcaef32cc2982f4c", "message": "Fix broken functional tests on windows\n\nSomething must have changed on the Appveyor side since this code\nhasn't been touched recently. The issue was that a functional test\nwas referring to \"/tmp\" which is not valid on Windows. I'm surprised\nthis worked on Windows in the first place.\n", "proba": 1.6873560753083439e-06} {"commit": "79eaea8e9a14b7bed48e2500dfc69a5514235f83", "message": "optimize_model_parameters.py now running correctly and accepting sequence + PDB as input\n", "proba": 2.1155346985324286e-07} {"commit": "be640c45cc996f2dfdd4710fa794435078bb2f69", "message": "Add change_stats_period action before sb_active_scalability_cbench_run()", "proba": 8.105176902972744e-07} {"commit": "fefc61c94040c710b069e7b99a05147a66681585", "message": "packaging\n\ngit-svn-id: eb1f1cc1c85a2360c7c4a73c360b88a184bcc8ce@1315 afeded8d-2dbf-ebe2-555a-a28d15d75c70\n", "proba": 2.0885354388155974e-06} {"commit": "428b48b18ea75debdadf7d4fcbd0698f36da3932", "message": "Fix previous commit breaking proxy caching\n", "proba": 5.078824756310496e-07} {"commit": "b90d9ce7745aeef2d8d562d19a8cd6836b40eaa6", "message": "Fix handling partof closure in expand families\n", "proba": 2.708056285882776e-07} {"commit": "b53f52472f7e8f29fcbad03fd44d9fd5bd720c0a", "message": "Add ping to console_tools\n", "proba": 1.5472435279662022e-06} {"commit": "0351332d818a320191d54fb05456836084b9f60b", "message": "serialutil: Improve Timeout class to handle clock adjustments\n\nonly applies to older Python versions where time.monotonic\nis not available, see also #155\n", "proba": 1.2302065499625314e-07} {"commit": "14284111c8da575e59cea60eb990133cd844b735", "message": "Minor: Added word \"debug\" into debug output\n", "proba": 3.9496667341154534e-06} {"commit": "bd918128644fad27570aafb885da02c9480e4dbf", "message": "[stable/6.1]Fix find_host for non-vcenter deployment\n\nAfter adding support of vcenter,\nfor tests where we check connectivity\nby floating ip we start to ssh on compute if nova network is used. So this change start return controllers\nip in case if use_vcenter is false\n\nChange-Id: I8952ee78e8b2b94a1998f57a59ae7fa33ddbf629\nCloses-Bug: #1443893\n", "proba": 6.15448152530007e-05} {"commit": "3a64bc58b7c9fb3d1ff5496dd7df01e4f7b53fb3", "message": "Reimplement fix without connecting/disconnecting events repeatedly\n", "proba": 2.094468385394066e-07} {"commit": "b44b0add0161cd8e7c0b1f61d3b4929b15410da8", "message": "RosRobotInterface now on ROS clock\n", "proba": 1.563490030775938e-07} {"commit": "bde7322df85371c67fefe7169c2b6efb5e7717f6", "message": "Update rasa/cli/arguments/test.py\n\nCo-Authored-By: Ella Rohm-Ensing ", "proba": 1.2420326811479754e-07} {"commit": "932c4cd753d0e0539c9cd52215708b7592a17be5", "message": "Revert relative imports.\n", "proba": 2.0636532838125277e-07} {"commit": "c46e35db595a14ad949b9ecd1f033109a05fac27", "message": "Patch from Frederik. This should resolve ticket #45.\n", "proba": 1.0344272993734194e-07} {"commit": "cf8d9ebef9b7aec9fc47ee3484fa6394d129bf56", "message": "handle_note_corrected\n", "proba": 8.499855903210118e-05} {"commit": "3e96b147edd17ac7cb06b3e27c6a8b78500ba1e9", "message": "[WAL-4240] Add read-only `division` property to `/api/marketplace-service-providers` endpoint.\n", "proba": 1.0094110791669664e-07} {"commit": "7f2072175099ee1aad2d6e7d95a1bfef232e05df", "message": "rename", "proba": 2.129588756361045e-05} {"commit": "2b609d11fe7b1b9b52ff4ea80549b1f4e0257620", "message": "skip one unit test on appveyor\n", "proba": 1.7399594298694865e-07} {"commit": "6c4751974e7b63c79f7f5edf2e725f2ac7cd3082", "message": "Only add \".py\" files when walking recursively\n", "proba": 3.17757496759441e-07} {"commit": "47fbc2fade31241c62a2db4c0924f471ff328c1e", "message": "Mark uncovered YubiKey tests as skipped\n", "proba": 1.285547313045754e-07} {"commit": "2a243c893ac8a4ddadd98f6fbb4ef5628a6d7607", "message": "Support single-ended slices on Tries\n", "proba": 2.705954784687492e-07} {"commit": "12ff15c23c5e4056f17ad4de2649f904d251033e", "message": "Bugfix: QA: Ensure mempool_fee_histogram can adapt to feerate rounding correctly\n\nCaution: This implementation is for a post-#22949 codebase\n", "proba": 1.7585198008873704e-07} {"commit": "34dd7bdf634dc9e8eef0f35ff846e47d20e37b93", "message": "Optimize `SSHFS.scandir` (#37)\n\n* Optimize fs.scandir\r\n* fixup Use listdir_attr\r\n", "proba": 1.718166942055177e-07} {"commit": "242d2746f98bd1073ef770eed80fa47998e7b036", "message": "branch merge\n\n", "proba": 1.250864102075866e-06} {"commit": "128b9c0bcc5e124b598bf1087ba1f0d22a3b83e6", "message": "changed exception logging\n", "proba": 9.508635230304208e-07} {"commit": "50088f2209651a16389a322860d085108f47ae30", "message": "\u30c7\u30fc\u30bf\u5e0c\u91c8\u5316\u5bfe\u5fdc\n", "proba": 3.07528551957148e-07} {"commit": "9ccd903fc979068be233655e053dc05e73cd2693", "message": "Fixing typo\n", "proba": 1.0679608749342151e-05} {"commit": "565a72e1c795129f55ee261d8cb57ab2e68a1f5b", "message": "fix formatting\n", "proba": 0.001458500511944294} {"commit": "876ab50e45c82566b6e837d26d9f79e070525a13", "message": "Fuck confirmed. Not necessary.\n", "proba": 1.2364662893560308e-07} {"commit": "2822074fecaf0278176249e2ff051d42fb23bfd3", "message": "write fat tables sectors at a time\n", "proba": 2.0189501981349167e-07} {"commit": "1f2e18bc9f3efd9ccb508a5c8ad7cbe2b9e92ea3", "message": "Fixed set_status\n", "proba": 1.3835873460266157e-06} {"commit": "3d878557a5e2d4f39474b1ca3df8af9012fd4303", "message": "Make the MpaDesignation optional for an MPA; Allows adding undesignated mpas.\n\n--HG--\nextra : convert_revision : svn%3A23a7edcc-78fa-46f5-8c17-2ede83e4f0cd/trunk%40675\n", "proba": 5.611939286609413e-06} {"commit": "8d4c7c94dba6708758732d74228e1337bd9f0b83", "message": "raise version number\n", "proba": 6.082992058509262e-06} {"commit": "e8bf56df9822d1e16bafe59ca80f296a4da3c1f0", "message": "Refactor pytree munging inside lax.root. (#1414)\n\n* Refactor pytree munging inside lax.root.\r\n\r\nThe primitive's implementation and JVP rules are now 100% pytree free.\r\n\r\n* Linearize multiple times in _root_jvp to avoid zeros\r\n\r\n* Revisions per review\r\n", "proba": 3.117164339982992e-07} {"commit": "2580e85d376d78d4423c20b0bdebcbbb5f206bca", "message": "indent with four spaces\n", "proba": 0.9999967813491821} {"commit": "2109d5bc57f65e15d41dbcaabe7863ddd50d9e09", "message": "uniqueness check corrected\n", "proba": 4.320775701671664e-07} {"commit": "8beaee26932b8b073d381aa5f79c16415f11bbd7", "message": "wip: JSON parser\n", "proba": 1.5573838027194142e-05} {"commit": "449183f50abb19070f6b745c1e6cabe260b40160", "message": "Revert \"update location xpath used for flat location fixtures when validating detail column\"\n\nThis reverts commit 385a68b501fe73f8bb747cde71121676f7d5a187.\n", "proba": 1.1086741125154731e-07} {"commit": "ce6a23206271f4e9a0dfd54e7a2663789d5237de", "message": "[AC-9579] update test\n", "proba": 1.6326772822594648e-07} {"commit": "d216f90cfe2959fc1a4b49c08634b022f8172ec9", "message": "move setting cursor values\n", "proba": 1.029609165925649e-06} {"commit": "730abd709c748bfd397318eee6a2ad57d07a776c", "message": "Use os.path.join()\n", "proba": 4.508007691583771e-07} {"commit": "79cdaf438a9d59ad9ae121062ef32b957c8b3533", "message": "Tweaks to plotting the trajectories, so we can better see the results.\n", "proba": 1.0707950792721022e-07} {"commit": "ffac1331cb6485f56318b24820ab1c688dfa6061", "message": "Loosened requirements for TaskRunner online analysis modules:\n - python modules allowed (previously only packages were detected)\n - no class name requirements; just needs to be the only AnalysisModule subclass\n", "proba": 1.366125616186764e-06} {"commit": "b6ab55c9a69c96d96eca7adc3b718d9d061cb236", "message": "use non-recusive version\n", "proba": 1.4496138192043873e-06} {"commit": "3ea84302368818133b045d56a0c8c798872eedd1", "message": "Add default logger and log exception\n\nInstead of ignoring it", "proba": 4.902331625089573e-07} {"commit": "a0458db14755d531c1948f0b2935df2126790ec4", "message": "f strings\n", "proba": 0.0007820555474609137} {"commit": "017781d82ba25912586c0e9b3634bf21dbd84419", "message": "remove dead code\n", "proba": 0.9994539618492126} {"commit": "8b60e5612ea74b19b5d9db562b79d68df3457453", "message": "Updating middleware factory\n", "proba": 4.357916907338222e-07} {"commit": "e848533d212d8b572dfc6f8b4186d5a052d8cbbe", "message": "Allowed iteration over processes\n", "proba": 1.2725290616799612e-06} {"commit": "18731d1976fda757ab55aa24576e398587bcc1f1", "message": "use desired type instead of 'Any'\n", "proba": 0.9986662864685059} {"commit": "b8792c5c32561ca4d617e4e359d031f0f6128af0", "message": "Added some SystemColors for the buttons.\n", "proba": 1.0398434824310243e-07} {"commit": "a89576328e982226ab5fd3a32b9f0c2939de226d", "message": "calcs/hazard/disagg/core:\n\nTask functions shouldn't return anything, even None.\n\n\nFormer-commit-id: 47bd1776183e665d0aba12165295d699cd840b5b [formerly 47bd1776183e665d0aba12165295d699cd840b5b [formerly c0fe8177bdfcc863659c7101c9a3913c70f392ea]]\nFormer-commit-id: 18364af1af40d25e8fe7f92377268da76b49cfdd\nFormer-commit-id: 1a729db1355aa42d71c501aaa2ad671d969ab738", "proba": 0.9999992847442627} {"commit": "5aa1ebc3ab10eb2bce9410d4997944a411a4bac4", "message": "Make the test case SourceManagerTestCase.display_source_python stronger by also\nmatching the source line number displayed.\n\n\ngit-svn-id: b33bab8abb5b18c12ee100cd7761ab452d00b2b0@121706 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 0.9999957084655762} {"commit": "8c08356d70f6265c0470af6b4a6eec397a8011f0", "message": "returning a RequestContext variable to the render_to_response line in lingcod/rest/views.resource()\n", "proba": 2.017291080846917e-07} {"commit": "653ade8c547a2124bed8d7d0d6af7dc7e135d779", "message": "working timeseries window plots for faraday paper\n", "proba": 1.2687843309322488e-07} {"commit": "71d0f02e1274829a302cdd6f716f2fc0680cce49", "message": "Update fab.py\n\nupdate description", "proba": 2.0228547725764656e-07} {"commit": "bdcc1227af141f3e8dbfdfb0587ecf3a915747dc", "message": "*** empty log message ***\n\n", "proba": 5.360483328331611e-07} {"commit": "c3c666d2cf5a903a7045cbf3774a7fed0d6197a3", "message": "Adding ability to specify the scm browser\n\nChange-Id: I120449433845c4bf50a546fbdb0c144d7741f5e9\nReviewed-on: https://review.openstack.org/16916\nReviewed-by: Clark Boylan <635fc31d01fa593720982fa0568e87170cedbe2c@gmail.com>\nReviewed-by: James E. Blair \nApproved: James E. Blair \nTested-by: Jenkins\n", "proba": 2.1001599179726327e-06} {"commit": "f8700c64effa9295a372574f5e5a8def7f393490", "message": "faster fat reading\n", "proba": 3.2233603519671306e-07} {"commit": "95aa4c210c735bd9ac74a65cdbef418d99beb319", "message": "Bump to v0.2.0\n", "proba": 7.545179414591985e-07} {"commit": "b01fe2f93e80bc20d32ac59be829bbdab377b7c1", "message": "new: Added annotation de/serialization.\n", "proba": 1.246401666321617e-07} {"commit": "0bae9e0d4052dc0384d82a3351118f2484461390", "message": "allow for saving of the default_value\n", "proba": 7.703458209107339e-07} {"commit": "d9474e2fb30f0a719735b45ed8d3225a177d6d7d", "message": "Increment patch version\n", "proba": 5.538125833481899e-07} {"commit": "c4af12fb99d5c45ff58186e174266a751c6dc523", "message": "TEST: Whitelist.expired()\n", "proba": 6.387512598848843e-07} {"commit": "44fa30b6deae80ae7ee243ef14b3f2ad117c8523", "message": "Saving progress\n", "proba": 2.982354772029794e-07} {"commit": "9eacc9d1cf677a11f4cbefbf22ee153132bd8285", "message": "[remove] static\n", "proba": 0.9998950958251953} {"commit": "96e32e7b54d20f103ca9b16d506c862700d7a72a", "message": "Use @npr_ed twitter account.\n", "proba": 1.3114690489146597e-07} {"commit": "e4c8c533a0a38aedda0a8e5aafec04ede82cc9c7", "message": "end points for css\n", "proba": 1.0045199587693787e-06} {"commit": "7ee9a41f2b359ac31284f8d942dfe505da13857f", "message": "add support to run QChem on ALCF\n", "proba": 1.7911999350417318e-07} {"commit": "d3879763f63c91b755ed2c4dd22bb9b46567eb77", "message": "update run docstring\n", "proba": 5.628376129607204e-07} {"commit": "c8c50b3c318451bd551c02313c382fd47d0361ba", "message": "remove todo and fix path\n", "proba": 3.686272691538761e-07} {"commit": "7045f218ff389279abbde25c82b5dca98988055a", "message": "Updated post-reviews.py to use the correct apache git mirror.\n\nReview: https://reviews.apache.org/r/11091\n", "proba": 2.727333878738136e-07} {"commit": "2dbd2f12e69b2fd800dbbdc972795f04d1e6cf98", "message": "[skip hazardlib]\n", "proba": 1.3950133848084079e-07} {"commit": "d4b02b4016a38695af984805a7b383d057525a3a", "message": "[FIX]purchase_requisition: fix help message of exclusive field\n\nbzr revid: csn@openerp.com-20130621142720-svv3kxqfj7hlo9bk", "proba": 1.561952132078659e-07} {"commit": "b9758b6b5f259b43285343f36e8a410b016a5b75", "message": "+ remove the need for an unused sample argument\n\n - now that we placed the genotyping results into the \"genotype_result\"\n dictionary, we no longer need the sample argument.\n", "proba": 1.1630578455879004e-07} {"commit": "883e35b50b96d50e055c8bbec6909db8dd7a031f", "message": "IF price_category - \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0439\n", "proba": 3.7476775105460547e-07} {"commit": "7e2ec8b5ad42ee938fe99735577f607e627dd4e8", "message": "added URL validator\n", "proba": 3.7438408639900445e-07} {"commit": "1c3efc130f804cd81d62c6a7ef3252b41f229bf9", "message": "cvs: Fix indentation\n\nChange-Id: I4f3c30678d8b9907f059f0f288de8bfb415f7338\nSigned-off-by: Tan Heng Yeow \n", "proba": 5.16801128469524e-06} {"commit": "bf71ea3e0f84d0e8317429e41b45dfe2e157d8a9", "message": "fix import\n", "proba": 1.1673153039737372e-06} {"commit": "bc3c016cee489e77d8fd91546ee19553524619e6", "message": "comment out debug logging in hot loop\n", "proba": 1.923195043218584e-07} {"commit": "fdfe400a3011fd5b2f04e691342b283268cf49f0", "message": "Change variable names in get_importe_no_sujeto_a_iva\n", "proba": 3.754227509489283e-05} {"commit": "c273fa5ba0ae43cc5979f1076349edf737a67710", "message": "Add reserved words to custom data field validation\n", "proba": 1.4994867569839698e-07} {"commit": "498861c6de60ae521866d476c091510ffe1da436", "message": "fixed typo\n", "proba": 2.684115770534845e-06} {"commit": "9649e8d9a8891b01d3c349f1b802c0b23ed96464", "message": "Make checks stricter\n", "proba": 2.1760142772109248e-06} {"commit": "0ebdf25292d36e74e5b665b9ce68e176780365e4", "message": "Saving\n", "proba": 1.9794706531683914e-06} {"commit": "ee513b0b83b4dcbaae776144381c5e526ed0a23c", "message": "Fixed resetting transformation / position of groups.\n\nContributes to #CURA-112\n", "proba": 1.1466063654097525e-07} {"commit": "169ac2b606548209d136f8662c18b50a71574165", "message": "Don't add view while testing\n", "proba": 1.9092006198206946e-07} {"commit": "10a5a2d8e3b39a4c1eb4b1441c6a2a427b43fd1a", "message": "use large memory on Edison it not scratching in memory\n", "proba": 5.757954681939736e-07} {"commit": "05c1ea87804f04a5bbcbb7ade925f89938e6dc90", "message": "Fixed #10833 -- Corrected load_backend so that it actually loads the requested backend, rather than always loading settings.DATABASE_BACKEND. Thanks to Alex Gaynor for the report and fix.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@10560 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 7.106064003892243e-07} {"commit": "1f7be288f31995c24c0ba3541f57b77693a6c4b1", "message": "[skip hazardlib]\n", "proba": 1.3950133848084079e-07} {"commit": "ea6c6dd089740b979114148dc918282a48f8a036", "message": "[Fix]:purchase_requisition : requisition type exclusive then set the confirm purchase order in procurement\n\nbzr revid: sbh@tinyerp.com-20100709113554-htq4ole8xlezba0w", "proba": 1.353209171384151e-07} {"commit": "96b27bf43e31ebd18d3325e68a39101d7cbb2528", "message": "Rename metadata_raw to raw_metadata in get_deposit_raw_metadata\n\nThe next version of swh-deposit will do this renaming, for consistency with\n_admin_deposit_list and the rest of the codebase.\n", "proba": 1.1355437123938827e-07} {"commit": "510e04dfd68eeca2e940487eeca9e7474e7f2383", "message": "Fix methodcheck.py for the new API documentation style (split into subsections)\n", "proba": 1.2703958418569528e-07} {"commit": "e4b10e83923cbb8f3b79f8af9b4e540921d7eb9c", "message": "Fixed bug with api_client.py exect_to_shell().\n\n* If the API client was located in a directory whose full path name had\n spaces in it, the PATH would not be properly set. This has been\n fixed.\n* Fixes #76.\n", "proba": 1.175055146518389e-07} {"commit": "ceec00c35bd5a6c4e44a26d7fa76dbe1352d034e", "message": "Prefer dict literal over dict()\n", "proba": 5.838097422383726e-06} {"commit": "c50960ea23ab2876251b5cd37a429359826f2b75", "message": "fix tests\n", "proba": 1.2553598480735673e-06} {"commit": "39e7476ae1fb795d31600200de0c0ab2255567c0", "message": "explicit tuple call on set joining to not confuse the memory guard\n\n--HG--\nbranch : trunk\n", "proba": 4.95849099024781e-06} {"commit": "e0521c1f9a12819fd89f12aed01c623628dc4c4d", "message": "Build options added.\n", "proba": 1.2187672382424353e-07} {"commit": "3a3fe2687fb65a99a799e9cb3c63f00223f4b92b", "message": "Update models.py", "proba": 4.731647038624942e-07} {"commit": "53055e47d14fd5905673941aa45ef9fe383eb885", "message": "Version for pypi.\n", "proba": 1.224583314751726e-07} {"commit": "636747d154c9203ae89efc9f13fbd66ad06714c0", "message": "move helper functions out of get_general_stats_data\n", "proba": 3.914712578989565e-06} {"commit": "63d180ca97734e59198f761bc53b3bfce3759897", "message": "Moved secret file to project root.\n", "proba": 1.1925583009997354e-07} {"commit": "4df17e1c9af4e16f1dcade96133144d67d331fa0", "message": "refactor\n", "proba": 0.9999991655349731} {"commit": "9f5ef935f5a313068b81562bfde20c1cbe665fea", "message": "more unicode woes\n", "proba": 3.504117103148019e-07} {"commit": "96934b74307242b3f1f16ad85207a84802a2e9cd", "message": "fix flops (#29758)\n\n* fix flops\r\n\r\n* fix flops", "proba": 2.9798707146255765e-07} {"commit": "8eb483e79b2e47199213c713003c94f9ef17b80c", "message": "Added a newly created dataset to the dict.\n", "proba": 1.1082300943598966e-07} {"commit": "baff5129b8a80b82a4c95fb29155157e905dc8f2", "message": "Move removing test file to tearDown method in unittest\n", "proba": 2.877953306779091e-07} {"commit": "f91a4f9369c0ab24098d1aea42ee4ba741369f46", "message": "Moved registration of MachineManager model to before QML is read\n\nElse the model is undefined on first run, which caused a number of silly issues.\nCURA-1278\n", "proba": 1.5876541681336676e-07} {"commit": "d9efa148998fc7ed130246536083d96fa6f75795", "message": "Optimise merkle root creation by reusing a merkle branch\n\nPorted from C libblkmaker commit 83daccfeef2f65d909a06a9caa2c37652d0eb239\n", "proba": 7.384642799479479e-07} {"commit": "cf355f87ac2a61dcd3c45138ad71c60b6b3167eb", "message": ":pythonic: list comprehension klaxon\n", "proba": 1.1844234904856421e-05} {"commit": "f3f4697964acbbcc50b2ac115525abb46984a4ac", "message": "Increase qchem mem_total setting for vesta\n\nDue to changes in other parms the mem_total setting is increased from 13500 to 14500 for bgq.\n", "proba": 1.2307674523981404e-07} {"commit": "6fdff6b82aca1727ee02000ce79c7bdebea7caf6", "message": "Switch to ORM format\n", "proba": 1.0394472155894618e-05} {"commit": "8a056adccd9abeb55fbfe990d4e3fdbfc4666a18", "message": "added integer negation tests\n\n\ngit-svn-id: f6f47f0a6375c1440c859a5b92b3b3fbb75bb58e@3481 afdca40c-03d6-0310-8ede-e9f093b21075\n", "proba": 1.2458670425985474e-05} {"commit": "804fa5d9e4809e2dddeba339b34f3ba8fc2f069a", "message": "added ftc symbol\n", "proba": 2.1932828531134874e-07} {"commit": "e232ca0b00d6a75d0674cce1b0739bbe45ee0595", "message": "[skip hazardlib]\n\n\nFormer-commit-id: 0fae2877b2dbd297aaa29ea0fe9be3f31ee2bab0 [formerly 0fae2877b2dbd297aaa29ea0fe9be3f31ee2bab0 [formerly e7a67b6a8b83cd51b5a4c331ac743ae6fe24af8c]]\nFormer-commit-id: 46ee39fdda935d9b43df3ca58a116d2d0f4b4229\nFormer-commit-id: 8cf5926f01804b075bb210a956281bc9f10a1fe5", "proba": 1.4608913261326961e-06} {"commit": "526b5ee3b7b96aa2093f1d26b70eee99a7b51011", "message": "If checking for updates is taking a long time, let the user know they can skip\n\nit.\n\ngit-svn-id: 0b7fc9d0a3114e28d3c6f36e6d4fcd8c58402d07@509 9f8c893c-44ee-0310-b757-c8ca8341c71e\n", "proba": 5.339546260074712e-05} {"commit": "e6885fd2260dc9399f5ea2f835cbf65294d18a8d", "message": "make competiable with postgres new version 8.3\n\nbzr revid: mga@tinyerp.com-2646638109761d48657ea3076c5ebfe59ff0f332", "proba": 2.2244400099680206e-07} {"commit": "c2c1e443562ee1454c83dfbbdd6b46c22e5c1f1b", "message": "It seems a transient shaper is usually a double envelope filter...\n", "proba": 1.0778337156125417e-07} {"commit": "0dc1ec2c2da334b62a2c6c57f0e5c2471c372e99", "message": "added health check so that galera_init won't exit with code 0 until the service is fully up\n", "proba": 2.0152182855781575e-07} {"commit": "e1d00e556f59a987cffd49c76e17c27e5e321ece", "message": "explicitly exclude biological-region\n", "proba": 9.164269431494176e-05} {"commit": "5d36e7d939b89a59dcb68002c244ac6684cb94c4", "message": "Fix access to assoc params\n", "proba": 4.3698278773263155e-07} {"commit": "eac206a0aafd3a21cfb2fcd0685362b41130cbae", "message": "- [+] Added ability to filter a file to itself\n", "proba": 1.3393430720043398e-07} {"commit": "5c0e23ce895ef0e243d79ced373ad66703836ec9", "message": "config path abs", "proba": 1.0067008133773925e-06} {"commit": "19de485ce3033548f6112b977c95051eda10b2a4", "message": "Proper error pages for login(), and an incorrect key fixed (would've prevented login).\n", "proba": 1.2277908467694942e-07} {"commit": "1519a396b9c51492d1468bff6bdc7ff62e4ba126", "message": "Allow the exception list to be empty\n\nhttps://github.com/mozilla-services/shavar-list-creation-config/issues/2\n", "proba": 0.9972346425056458} {"commit": "ce6118922f4c4acbd50759c881147327f240ba48", "message": "first version of working(?) downloader\n", "proba": 1.4010772702022223e-06} {"commit": "38cd7a631a678d0a914a51771f35a8723a5577f6", "message": "Search command to accounts\n", "proba": 1.3352406540434458e-06} {"commit": "f992a046a17e3adc1ad7d9416c0e4496b1b4d3a1", "message": "A little safer\n", "proba": 9.421655136065965e-07} {"commit": "a8decf878b8296c54efe8acc3339afd6fa8e5586", "message": "Makes test_ports more reliable (#828)\n\n", "proba": 1.1541003885895407e-07} {"commit": "c0f7886eed0472c86a324d6406088665b8e5dd81", "message": "Mangrove biomass gain rate tile creation should work now. Trying to create all of them. Having trouble getting them to save to s3 after completion for unknown reasons. Maybe it's because all the tiles in a set are done being created at once and uploaded simultaneously. That seemed to be the problem. Trying the whole run agian.\n", "proba": 1.0208871259465013e-07} {"commit": "c9f8ef896dbbf76c0d53847b290b080515731ceb", "message": "Fixed bug\n\nAccidently multiplying by the location of the last meniscus instead of\nthe first when adjusting saturations for retreating menisci\n", "proba": 1.9170276743807335e-07} {"commit": "bb17332d9bc0d39c3695e81937af18587189d259", "message": "Send failure emails as salilab.org\n\nUse our email domain, not the web server hostname.\n", "proba": 1.0415386952900008e-07} {"commit": "c91d24f51e966be9ed6f4a629f1e8f462475d22a", "message": "Add comment to autoBisect about Windows 7 working.\n", "proba": 1.1053590753817844e-07} {"commit": "2916ee1946f2a69ad7f4fdeb658a27a8befb38d0", "message": "New git-style command line syntax\n", "proba": 4.3931606796832057e-07} {"commit": "ae4e112563fd0d954cb0bc1ca26e9ebee4ec0b14", "message": "Use login helper method in unittest\n", "proba": 3.884315731284005e-07} {"commit": "28392c12076d2d6a56afb7ee610fb84c7383b85b", "message": "monthly reporting fix\n", "proba": 2.791717861327925e-07} {"commit": "b595f7e90c6582f6819f07509999b6d3cdfa7e05", "message": "Tiny comment changes\n", "proba": 2.616455674342433e-07} {"commit": "4b2b0401283c014c58b43320b9bbb454c0f343eb", "message": "fix filter\n\nCo-Authored-By: Simon Kelly <7bffe82dd6d105f88ac019ebf7bae9e08b23e37c@dimagi.com>", "proba": 1.237103219864366e-07} {"commit": "1e4e92cb015591574771aeada42dcc15e4f6ede0", "message": "Add text attribute to Label blok\n", "proba": 8.266983968496788e-07} {"commit": "3354fb770dd3e1be911490bb809e817a41dfbbcf", "message": "Resolved conflicts in remote_lrs_test\n", "proba": 5.329836767486995e-07} {"commit": "f033dd8ae43408d425fd9707262364a919b38073", "message": "[skip hazardlib][demos]\n", "proba": 1.2740891008888866e-07} {"commit": "f869bdc8f0906ba94a41704db17025b285e8e830", "message": "Revert r166725 \"Enforce 15 minutes timeout for all operations and 30 minutes...\"\n\nThis causes an excepiton on Windows,\n File \"E:\\b\\depot_tools\\subprocess2.py\", line 341, in communicate\nTypeError: Using timeout and shell simultaneously will cause a process leak\nsince the shell will be killed instead of the child process.\n\nTBR=petermayo@chromium.org\nBUG=\n\n\nReview URL: https://chromiumcodereview.appspot.com/11368148\n\ngit-svn-id: bd64dd6fa6f3f0ed0c0666d1018379882b742947@166732 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 1.2285525372135453e-05} {"commit": "e60e7aadc29dcd54229db6965b49d4fb30b97296", "message": "SLGBP: fix Blender version check for matrix ( inverted at rev 35a6705f6a22 )\n", "proba": 1.107851801407378e-07} {"commit": "34cf7182f7743a278c40f6aa83f913fdf3c884ee", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "06344c7de517e760fb6ddca4f0b10c7264d743c6", "message": "add galpolar projection to bovy_plot\n\n", "proba": 6.996121442170988e-07} {"commit": "47a1ca242bbfd807db83ecdfadcd30af3879a289", "message": "MISC: Delayed import of pylab, to work on the buildbot\n", "proba": 1.1825659385067411e-07} {"commit": "602aa1ecdf74847b27d6cce0d91e8d2be721671d", "message": "clean up a bit of the at commands with newer conventions and more complete commands\n", "proba": 7.687825700486428e-07} {"commit": "1686c015a839b51e84965046a9ede72e7e123f77", "message": "Don't try to display deleted comments in user pages.\n", "proba": 1.097052120258013e-07} {"commit": "9069c2678b68571406458f7414c7b0474183090b", "message": "Fix check for dictionary entry\n\ngit-svn-id: 4c4cc70b1ef44ba2b7963015e681894188cea27e@340557 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 4.615171746991109e-07} {"commit": "e361a9536f08ca49902dcb2c6cba8e6146622c03", "message": "display Stderr header in red\n", "proba": 1.3988915270601865e-07} {"commit": "1102418fe4321e01cf0874d3e0bb2d4423969bf9", "message": "Script updates 10\n", "proba": 1.299969341062024e-07} {"commit": "422ad1988804801a724ae113082f54e002ebe927", "message": "remove unused arg\n", "proba": 0.00023311607947107404} {"commit": "ce3b720c264de94e1e23b3df4c4b9a8a74ffc1e7", "message": "Makes test_multiple_rapid_progress_updates_submit more reliable (#1441)\n\n", "proba": 1.1798420729292047e-07} {"commit": "07bd36899bd7ea8ddf361db1fdef17367238cd70", "message": "make break through time and steps properties of the algorithm\n", "proba": 1.555064409330953e-05} {"commit": "f27dc9d2793bb555d80a5c8e6635ba246278d017", "message": "Add DES support\n", "proba": 2.4145793986463104e-07} {"commit": "97420892fb1b35c50fcc80b5c09241d330f23498", "message": "Finished up the about_dictionaries.py\n", "proba": 7.435465522576123e-05} {"commit": "04e64dba518810532570f868d25800e65a49fb43", "message": "OptimizedNumpyWorld is no longer exported in the GameOfLife namespace\n", "proba": 1.3860753256267344e-07} {"commit": "1fb980fe897ed691d23799737a94f456b9a49987", "message": "Clearer docstrings for custom API resources\n", "proba": 1.3906631579629902e-07} {"commit": "333d49738434f7642f0a42edfabdd86eb6bc789e", "message": "Fix live LDAP tests\n\nThe live LDAP tests were failing. The tests for case\nsensitivity for project name and user name failed because the\nattribute is not case sensitive. The test for updating a\nmissing attribute with a falsy value was failing because the\nattribute chosen for the project description does not allow an\nempty string.\n\nChange-Id: I723c40b5eab24ac13e27fd040d0d881998f106db\nRelated-Bug: #1231772\n", "proba": 0.9986822009086609} {"commit": "1863c39b2b2cfc57ef05075c69e5630176c9dc69", "message": "Emit jenkins-friendly list of revisions built at the end\n", "proba": 1.112656775603682e-07} {"commit": "edc5dc1127d0d0fb4c7f4ad5297f009b1de3ae94", "message": "Revert \"don't lookup every time the imls\"\n\nThis reverts commit 08f9b991b877f1fc02c58a814f937dccb82b3ba6 [formerly 369820ee2f2099c9911dcc8f70a075f7c364c218] [formerly 006b0d31a5bc7b87843731241c1100c5191193d2 [formerly 719e80ceffbabeb971ab6ca6146b876c42c0260c]].\n\n\nFormer-commit-id: 204f5377d55c174b79d546f15b63f884ff48e144 [formerly a41b7fb412bba07ca287c4bfc895dd9a0c12bf03]\nFormer-commit-id: 463478d1751f7521125feaca222594149faae8cd", "proba": 0.9980725049972534} {"commit": "9710ec1dd4e5faa088e9dcc132e2f1a57b6e540a", "message": "Adding debug statements\n", "proba": 9.03480554370617e-07} {"commit": "1e4120fb61222ed32018042db7e6e28e1c7a2c0d", "message": "add one-d histograms to bovy_plot\n\n", "proba": 0.0005344304372556508} {"commit": "0641343cf79d3c9169671365fabc4cd8aca9503e", "message": "Added Dummies and used free_symbols() instead of is_constant()\n", "proba": 2.9811860713380156e-07} {"commit": "458c2b281595cf849164fa47d65e03ae1841d6c8", "message": "ENH: hierarchical: simpler, faster without connectivity\n\nAvoid creating a connectivity matrix when we don't specify one.\n", "proba": 4.5344043542172585e-07} {"commit": "a2a111258335e2912ffe02a7ac40fc2274c71080", "message": "accidentally committed experimental area_funcs.py on previous commit", "proba": 1.6918131962029292e-07} {"commit": "4b97f7673fd5c37451c8bf67ac87c1dad8202b39", "message": "DOC example semilinear, appropriate dgp, some result statistics\n", "proba": 1.3920563901592686e-07} {"commit": "314a0f1c19957da97d1294b126cd3b7021731954", "message": "tiny fix, cleanup\n", "proba": 1.31732406316587e-07} {"commit": "ec985d4fc9c84008f8e71fc84158579ab9ddc4a8", "message": "Removing print statement from pseudoinverse function\n", "proba": 0.00015524505579378456} {"commit": "89555bcf7b66524f07b2a406501cfcfa9b065786", "message": "Makes memory_limit_exceeded_helper more reliable (#1023)\n\n", "proba": 1.7476425284712604e-07} {"commit": "65ac1726a90b7228bee158bb6dab82801ba373c1", "message": "python: cleanup\n", "proba": 0.9996589422225952} {"commit": "f2ad092971d2527f786d8391b45e4f64e16e75fd", "message": "Linting\n", "proba": 1.97951612790348e-06} {"commit": "22c8ef0e6602274538d35d47244167dd6ea187fb", "message": "Animation now with (ugly) colour.\n", "proba": 1.052440055104853e-07} {"commit": "645729d2eba9bf7d33e547d0595dcd55e8ccecc3", "message": "Fix gitian-build.py --verify option\n\nThe gitian-builder/bin/gverify script returns the exit code 1 if a\nsignature verification ends with 'BAD SIGNATURE' or 'MISMATCH' by\ndesign. This commit allows to see the verification results for all\nsignatures without a premature fail of the gitian-build.py script.\n", "proba": 1.6250284318175545e-07} {"commit": "1480e8c9d9632dc32ed0a5a551beaef4eef8fd40", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "e302128e10115f3b9b356218ee7770e3f02ead20", "message": "Fixes typo in boltfile\n", "proba": 5.108223035676929e-07} {"commit": "a8bbccaa1e7167bc03a49ecb0404d4f0ff758ded", "message": "fix gfx.util.Grid.size, and allow single functions in arguments\n", "proba": 3.590521089336107e-07} {"commit": "0c30b1c39f665eeaf5781a6d4ff6b1685d4520df", "message": "Add support for Add factors without contractions\n", "proba": 2.0675122414104408e-07} {"commit": "1983db6533ef6abfde71be6e6f3e53ba29bf6c4c", "message": "TST: increase tolerance in optimize/tnc test_tnc1b\n\nThis is the same as 08c4211, which was overwritten during a merge.\n", "proba": 1.2009023464543134e-07} {"commit": "8426aa95027d185165daba194ca66a7e382e2f2d", "message": "Added logic to handle Powershell Scripts and Commands\n", "proba": 1.2944357763444714e-07} {"commit": "1bd814df2c5175ac7745b2d58fbe6b82c5a941ae", "message": "sts.console: add 'debug' hack\n\ndebug drops you into the pdb debugger\n", "proba": 5.440039103632444e-07} {"commit": "d90234bb007b18052d711057e4c1b00068e9528c", "message": "NR-389 : The REST API blog list URL returns invalid blogs when user defined\n", "proba": 1.31242856582503e-07} {"commit": "17b890dfe3adef77016b368dc1026d3031e9a9ee", "message": "small correction in script\n", "proba": 5.34077116753906e-07} {"commit": "4987412578744db64984cb40841994b3852287f7", "message": "update evalrunner", "proba": 4.6036413436922885e-07} {"commit": "5ba73b9dd92b55b3f02f76ae981e53744abac750", "message": "Add an option to time SQL statements\n", "proba": 1.4154652490105946e-05} {"commit": "b384e6de864d4f2e4cf71ba6f50a987d28ba38dc", "message": "pkiz String conversion\n\nWhen the PKIZ token provider signs a token, force conversion of the\ntoken to a string as the keystone client cms code produces unicode.\n\nWithout this change, Keystone errors out when validating tokens. It\nwas only visible in tempest tests.\n\nbp: compress-tokens\nChange-Id: Ic932240fbbe5bd9da6197b37cf86092bde510f40\n", "proba": 1.5562480257358402e-05} {"commit": "22cf13b64ad32b8ff8eb7c863f11dbeafd0b8994", "message": "[develop]\nconvert parameter from unicode to string to adjust to amazon distro\n", "proba": 1.6851130624218058e-07} {"commit": "5ad62844e498b1b4a802ee45b16af4a0f522578a", "message": "Update entity.py", "proba": 1.171741018879402e-06} {"commit": "a6319f69788a6734a897f7f419c350dbf9181b51", "message": "Import nose for running tests stand alone.\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@5386 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 2.7249079721514136e-06} {"commit": "7bec42bca29e8c2bcfe7343d4b0e6740c0c12624", "message": "Bug fixes, working copy\n", "proba": 1.5231844940899464e-07} {"commit": "3f19c8208617d9a9a47a34510b61889b7270d02e", "message": "next_target allocate_time for slew times is now absolute and does not count towards mission time\n", "proba": 2.0969666536529985e-07} {"commit": "754dc38a5fd96c47875051bc42cb18ebf1a6703e", "message": "Fixing files after updating the django version\n", "proba": 3.2885657219594577e-07} {"commit": "57bff19da6a79e0469546cc23f73b17f8e11ea86", "message": "fix input transform. closes #12\n", "proba": 0.00033677747705951333} {"commit": "90d47e4d94bb18c08af7e80cc7e7deaea7ddddc7", "message": "Add plot argument.\n", "proba": 3.5786661101155914e-06} {"commit": "dd8d933739142c6cf376b55b1f13ee90148f6d53", "message": "Remove duplicate implementation for deep_update.\n\n'deep_update' utility function is implemented at [1] and again re-implemented at [2] and its used at [3].\n\nImplementation at [2] must be removed to facilitate importing of the utils lib and use the existing function.\n\n[1] http://git.openstack.org/cgit/openstack/tacker/tree/tacker/common/utils.py#n206\n[2] http://git.openstack.org/cgit/openstack/tacker/tree/tacker/vnfm/infra_drivers/openstack/openstack.py#n213\n[3] http://git.openstack.org/cgit/openstack/tacker/tree/tacker/nfvo/nfvo_plugin.py#n144\n\nChange-Id: I138a8272f23ad0c3fb42cb2ab99ca7380ef0b130\nCloses-Bug: #1686658\n", "proba": 0.9998548030853271} {"commit": "b8ce4adfa8988c503f2337e5aaa73d7e8c7e0281", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "48038d8e6cabd1a96f73cc2a074b5b87831fffca", "message": "removing erraneous <<<\r\n", "proba": 1.2482931310842105e-07} {"commit": "7ab90935b30ac0db8cd43784d904362ebb78fd81", "message": "Create a new event loop when doing asyncio stuff in native_scheduler, as the native scheduler's methods run in other threads.\n", "proba": 1.1130769905776106e-07} {"commit": "5fc149966a8a819b0d38dc1e61570b583eb7960d", "message": "[trunk] Clang C++ compiler option collection is derived from the C compiler option collection\n", "proba": 1.352958776124069e-07} {"commit": "304e7119ceb9a505fca98d975e982d1cb287528f", "message": "ci: fix random unit test CI failure:\n\nwe use `-` command to check if DUT reset pass. If we input `-` command\nduring DUT bootup, DUT could only receive `\\n` and print test cases.\nPrint test cases could take long time and lead to reset check timeout.\nNow we will add delay after reset, and enlarge reset check timeout to\nsolve this problem.\n", "proba": 1.40855959784858e-07} {"commit": "f97d44700bf70c5cdf9513775d617e1d4eb6e572", "message": "Increase the amount of time we wait for stopped tests to die (#3211)\n\nAt the current number, many PHP frameworks don't get shut down completely\r\nbefore the toolset gives up and prints an error message. These error\r\nmessages are very alarming because they make it look like a port like\r\nport 8080 isn't being released.\r\n\r\nThe new, higher number was enough to not see that error message in a\r\ntest on ServerCentral with cakephp. Hopefully that means it's high\r\nenough for the rest of the PHP frameworks.", "proba": 1.4328931285945146e-07} {"commit": "ef92ed530e685ea022c172f1765279a54130bd6e", "message": "Fixed #26980 -- Added ParallelTestSuite.runner_class to aid subclassing.\n\n", "proba": 9.757439300983606e-08} {"commit": "6ccaf33bdfebefa47680cc51c412ac9e7e44570d", "message": "Attempt to fix flaky tomorrowio test (#72890)\n\n* Fix flaky tomorrowio test\r\n\r\n* reset mock outside context manager\r\n\r\n* add to hass outside of context manager", "proba": 1.5329307245792734e-07} {"commit": "6e511cf9eea880b32f36a91cf00b61df1de2da45", "message": "DTA: Use aggregated bank_lines instead of payment_lines\n\nCurrently the DTA is created based on the payment_lines that ahave a 1:1\n relation to account_move_lines. Especially to pay expenses this creates\n a transaction for each expense.\n bank_lines (already existing) have merged all payments to the same\n partner when there is no structured communication used. It is better to\n use bank_lines.\n\n Payment to the same partner but with different BVR are\n not merged!\n", "proba": 1.1816121769925303e-07} {"commit": "97b56936218ce55e075a2e029870d2ef05a8581a", "message": "Fixed import error handling when application tests are stored in a tests directory, rather than a tests.py file.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%405180\n", "proba": 2.2808651465311414e-06} {"commit": "b096c51d8914ff73f90fba3f1b7eea723649b218", "message": "fix user update on cv brain\n", "proba": 3.449083578743739e-07} {"commit": "ac8fe11a745eaca1a86c617964d4ccc90c27b4fb", "message": "feincms_nav: Allow consuming the result several times\n", "proba": 2.859628409623838e-07} {"commit": "2a07db7a879ae0dff0305165e33a4b871faf330b", "message": "Minor refactoring\n", "proba": 5.079600100543757e-07} {"commit": "08dc47735b85e98f5d23e6cfb44370fcc7c833df", "message": "Cleanup change to follow previous domain name change\n", "proba": 1.709347969836017e-07} {"commit": "5763cb2f95b731933263f0dd38fbffff6f71147c", "message": "Add default_diff and timeout to plugin\n", "proba": 3.011044782397221e-07} {"commit": "82fe956cfcf8ad97edc3b10639efdd40bca82065", "message": "Fixed #1420 -- Added copy-and-paste (pastebin-friendly) toggle for debug view. Thanks, jpaulofarias\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@2444 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 4.38213049847036e-07} {"commit": "3f452d9250cc113a25c182454856d8e756dde7ff", "message": "Finish handling of new depth parameter in NavigationNode\n", "proba": 1.950896972857663e-07} {"commit": "423ed341290189c142f73b7389b8893013fbfc4e", "message": "Remove useless naf_codes variable\n\nThis variable is unused in all templates.\n", "proba": 1.240470197672039e-07} {"commit": "e61d3d89cbb74f9db91d07cbfde8b277c069f3d8", "message": "FIX: ISOtimestamp to hold UTC time.\n", "proba": 1.2113210345887637e-07} {"commit": "9879556bf50aa4c90d2520790bab1a5d7cc24b61", "message": "Temporary commented out provisioning and change of auth status in the HLR\n", "proba": 1.2212082367568655e-07} {"commit": "70b88c2a463ecbe773ac7e6446fdc34428231b50", "message": "Fixed super-edge-case bug in debug view where exc_value.args was empty. I managed to trigger this in some template code\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@17245 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.106200124922907e-05} {"commit": "18e3983ca8c9d9f622a68e4ed05dfd9efb25a302", "message": "try again\n", "proba": 2.878732914268767e-07} {"commit": "f2ade5e5e115c2f28c882c2dba73cd7c9af14fee", "message": "fixed bug in InformationStore\n\ngit-svn-id: 60eb48102d1ca0c284ab3654bef916b01e1b221b@272 4f84a9ca-5c3e-0410-8a68-0bdf370325d5\n", "proba": 7.162828978835023e-07} {"commit": "9ee93dc17ef7742f11fc64c0fc320e034189a053", "message": "Fixed #5974 -- Added autoescaping for source code lines and local variables in\ntechnical debug page.\n\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@6704 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : 670c644ff5708cc333a3eddb054dc97c6f05634c\n", "proba": 2.286209337398759e-06} {"commit": "296577d786aed590edf71d0eb6d9d3f414a88eb3", "message": "don't leave dir unchanged in case of error\n", "proba": 4.932922820444219e-06} {"commit": "6fbb50fcb851d0387d44dbaca361cc63f1dbbe79", "message": "Add get_db_query method.\n", "proba": 1.9657066729905637e-07} {"commit": "52d0149e181317c943d796aeaee99dd3e555ec68", "message": "updated delete event api calls\n", "proba": 3.9675202856415126e-07} {"commit": "11d3de07271faec005bee18d3ccdf548455c454b", "message": "Fixed #874 -- Changed debug views to use text/html mime-type instead of DEFAULT_CONTENT_TYPE. Thanks, Sune\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@1351 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 5.866992296432727e-07} {"commit": "ecf483151782b1ff4c22b08aa8a143f20234cbec", "message": "Optimized database access for whois API endpoint.\n", "proba": 1.478902618146094e-07} {"commit": "448d8b262e7d3f0d9c162ca1b0a1b451ae968d17", "message": "reorganized settings\n", "proba": 2.4303403733938467e-06} {"commit": "88034744e328fa6a1ad14ccb62206d69209abfd9", "message": "Fix improperly named models\n", "proba": 2.6558902845863486e-06} {"commit": "eb289d2c550f1386ab08bc16198714c0f7aa0460", "message": "changed beat to 10 minutes\n", "proba": 1.3213898455433082e-05} {"commit": "3968a526dea052008b608004b9bde8ee7d55309c", "message": "Fix type in FileFields\n", "proba": 5.23451035405742e-07} {"commit": "44dff25e50d38f536f06cf93fa21400d1dba67ab", "message": "Update cachetMonitor.py", "proba": 8.02580530034902e-07} {"commit": "0b740635f784f14dfa772b0891ad4ad17d4010de", "message": "refs #4: New `except` syntax\n", "proba": 8.180947475011635e-07} {"commit": "b2ec61003a7df4ebc46d40a3d72e262440c5008d", "message": "version 1.1.0\n", "proba": 1.686331415839959e-06} {"commit": "45ab8a3585008cc4ad31eb553b9291f4e1a65c01", "message": "Update C++ version, #190\n", "proba": 2.4097644768517057e-07} {"commit": "aa7ebf39c9500e1e21b5553f6db8ab527457885b", "message": "ok to 0.8.1\n", "proba": 1.4251892253014375e-06} {"commit": "190ee44255ac95af0b694113ec87fc9386b16214", "message": "cc flags", "proba": 7.454864885403367e-07} {"commit": "561c86e05e62173c4128f0c5b8b809c644fec123", "message": "deconstruct\n", "proba": 6.899328582221642e-05} {"commit": "fd0570627c86324b7ed316eeb3875e349528f0bd", "message": "exception handling on store", "proba": 8.763576602177636e-07} {"commit": "9c950c73bdc518c35aa471834431222c7c60ea4b", "message": "feat: update binding.gyp\n", "proba": 2.0639522801957355e-07} {"commit": "9727285c9f36bfe40bbf9b043c4f1b325c87a328", "message": "added unicode prefix to __unicode__() method to prevent non-standard characters from causing errors\n", "proba": 2.289652456965996e-06} {"commit": "058d13279cb422bb47786daa047a70576d7d335a", "message": "http_parser has become a dependency on Windows after libgit2@0.20.0.\n", "proba": 1.0363508096133955e-07} {"commit": "65b7a966aedccdd1707a4fb7a70b7d6d381e3937", "message": "Optimize write waveform\n", "proba": 0.027965610846877098} {"commit": "322de34e5e5808d998c0f100cdb0daabcf978bf7", "message": "if over try\n\navoiding a potentially disruptive timeout.\n", "proba": 2.7013084036298096e-07} {"commit": "2a4feaa6cb9a5ee4326d96dedee055dac80eeb59", "message": "Cleanup whitespace in binding.gyp\n", "proba": 2.176956741095637e-06} {"commit": "f0f3a7ab0b285f447f0573ff537e6252a8752528", "message": "Use pkg-build in binding.gyp\n", "proba": 3.7675158637284767e-07} {"commit": "c38fa8ffce1d4d13ad9d16af71937a3fd59becbb", "message": "gyp updated (windows release mode now has /GR which enables RTTI)\n", "proba": 1.03932201511725e-07} {"commit": "339a8f04c150f7d5040f5430f0874b4667e9852e", "message": "Pass BLAS option\nand BLAS includes by command line\n\nLinking still does not work\n", "proba": 1.2132194626701676e-07} {"commit": "c34f040ba19c27277d6cc9a1ad46e4c8d668e77b", "message": "Apply -DNDEBUG globally on release builds\n", "proba": 1.7551721498421102e-07} {"commit": "b0dea361dfb27e537c0165dac69e71c20f33e883", "message": "Add helpers to bindings.gyp\n", "proba": 9.892321486404398e-07} {"commit": "3f22531735d09a6170b3c6ef9265d0721eabf9e7", "message": "bindings removed\n", "proba": 3.8946868130551593e-07} {"commit": "ad61fa3d47355c2bb5fa004d7fa518c170cd7d1d", "message": "colorful dependence deleted\n", "proba": 1.913867464509167e-07} {"commit": "bfa73d6cd998bb9f45c30fcb2f2404eb2f0dbf0c", "message": "Cyber: Retire unnecessary __init__.py.\n", "proba": 3.3474805150035536e-07} {"commit": "cbd3c608909502e3b0578d9553c50f39af0e9909", "message": "Fix bot crashing on start if DENY_ACCOUNTS is not empty.\n", "proba": 2.4816344534883683e-07} {"commit": "91edffe8be785e9dbb9277dc7b23f7879ffd6633", "message": "Removed logging message\n", "proba": 3.5425836131253163e-07} {"commit": "b7a1a81526544ff2ab1a65e370f46388843bccd2", "message": "Updated from Brython Server: 2/3/2016 2:00:13 PM", "proba": 1.1401511557096455e-07} {"commit": "ebdfcfa0ae4b07702835d8193ff39f5788810308", "message": "chore: fix smart quote that rendered poorly\n", "proba": 8.871752470440697e-06} {"commit": "21904cd33a036280a7ac2f3382f948446793e2dc", "message": "Disable evilvillage since it's broken, and add a new roleset designed by Metacity\n", "proba": 1.2747575794946897e-07} {"commit": "ede54a196f402a571f8fa1a8c4bf20c6e2f9e110", "message": "Revive gauge.inf\n", "proba": 8.05377567303367e-07} {"commit": "7e5cafed3908f829bb8ff334a7d8f6ebb939a7cc", "message": "fix test import for python3\n", "proba": 6.470879725384293e-07} {"commit": "503f2f18991a79dab1e8b13c9503ae3b49109bf6", "message": "\"Fix\" vpc ovf test\n", "proba": 6.40008011032478e-07} {"commit": "2c153b1f108ceba92cf97bc198ea99fa666ed196", "message": "Updated from Brython Server: 2/1/2016 2:51:49 PM", "proba": 1.1585191117546856e-07} {"commit": "04d805db7bd1043cdf6631fbad1d99018b969d4b", "message": "create position_file if not exists\n", "proba": 3.920567451132229e-06} {"commit": "23926791154d8d243fdd1848aa66debe92a00f31", "message": "More precision [skip ci]\n", "proba": 1.1990140080797573e-07} {"commit": "5f8f93a366c7f1007a67849346eb094630ab15fb", "message": "Change different rounding date to March instead of April\n\nThis change was deployed on April 15, meaning that the March report was\nusing round, while previous months were using int (truncating)\n\nOriginal commit: https://github.com/dimagi/commcare-hq/commit/46e1f04cd59fc7ff4cc1b4f4ac059d1c72f1a820\n", "proba": 2.443073390168138e-05} {"commit": "347093a7ed16a8bd1a34e76f7830a51b37c543aa", "message": "Fix bugs with ignoring vi files and insecure keys\n", "proba": 2.9461037343025964e-07} {"commit": "542e54374653022088f8a5e4fa8be9c36fab7990", "message": "added email_auxiliary (other emails after primary)\n", "proba": 1.192682361761399e-07} {"commit": "de9f620ad8d6b53a3ed1d20307d77bb5094fdfe9", "message": "Whitespace fix\n\n", "proba": 3.2261311844195006e-07} {"commit": "ae943890705ab48c3916218bf2c8bdcbdc7fc298", "message": "I removed the default value for the unit of the explosion time. This means the code crashes if no unit is given in the config file.\n", "proba": 1.1056837934120267e-07} {"commit": "60365f768e8d0999dd64cbcf574c0b781e1bd7a2", "message": "Added backspace as alternative for the delete button.\n\ngit-svn-id: 80d932a80928324f4d3d71af042e652e41ead033@1610 a8418922-720d-0410-834f-a69b97ada669\n", "proba": 3.642784577095881e-06} {"commit": "a9104e7529eb75454aaaa2ea29b8ebe40ee7bbd0", "message": "Add documentation to sloppy_interleave function\n\nPiperOrigin-RevId: 171303413\n", "proba": 8.383183853766241e-07} {"commit": "65fb6486fd245918e123de82d3cd12e54dbfda78", "message": "@fix plot error on cluster\n", "proba": 1.6508046485341765e-07} {"commit": "2dc9d6570e6853044d6f8182c08c54e070e715f9", "message": "age_tranche not dependent on UCR\n", "proba": 5.050817890150938e-06} {"commit": "c863b92f37b18f6fe53681767f6ca041c610c93a", "message": "#554 changing export process to not include nodes from a sourced resource\n", "proba": 1.1484679163231704e-07} {"commit": "53d2ad4bf64b68e9846b49117e16eab5723772d6", "message": "Actually add actions to the set.\n", "proba": 1.1424433665752076e-07} {"commit": "ced862a81b49e62c31d1962381d580aab2e022d4", "message": "Luke: Can replay based on field selection.\n", "proba": 1.2312735009345488e-07} {"commit": "31fec0ff25a230ee30f5a01dbb7f3a07a16df8bf", "message": "Improved fungen simulated driver to include read_once in idn\n", "proba": 1.3208779137130477e-07} {"commit": "efe41c344873454223e952e8edc3886c3aa77b78", "message": "Fix compatibility issue - ecdsa Curve is not hashable. (#261)\n\n", "proba": 1.2228677803705068e-07} {"commit": "381be8e100b6a799e83c94459ceff124acf20a36", "message": "update samwriter tests\n", "proba": 2.2413692590816936e-07} {"commit": "7c788c868323aa8c6237caab208d726c5cce24ac", "message": "address first time new user condition where user_id may be none\n", "proba": 8.754907867114525e-06} {"commit": "cc7180dfd3ff64be45b24b3cc03998e4e92fd8b4", "message": "\u041d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f - 0.0.6d", "proba": 4.066704093474982e-07} {"commit": "c8d603b9e526a966251a8738540129d88cf4bcb3", "message": "Looks for an svg to use as favicon template now\n", "proba": 1.0893060675698507e-07} {"commit": "59b83f122ca760ab54e9033707bc500a41e26010", "message": "elocation-id populated with the manuscript value, no zerofill.\n", "proba": 1.1696673141159408e-07} {"commit": "47735ed373e43b44f0537b26f69a2adb14acc2c3", "message": "Create view only for new image record, debug the file modifide time\n", "proba": 1.3479758820267307e-07} {"commit": "fc4d25e8f9f2b9a2758cf914ce98fd1a3d71e434", "message": " - PNG decoder/encoder, draft remapping, temp commit.", "proba": 1.0597197785955359e-07} {"commit": "a8ac5f2cebdcdc580474f39e2bdbc957470e401d", "message": "show prev cacherate\n", "proba": 1.4574038686987478e-07} {"commit": "964f99186880a771294c3cb547ca7dbc9234fb00", "message": "change error statement\n", "proba": 1.8046545164907002e-06} {"commit": "3ccd8dc00ab537318010d5fa723e4c2ae20b5d5f", "message": "Implement scale_up and scale_down (#7)\n", "proba": 2.1929304239165504e-06} {"commit": "e8e9f290ec87996764701a940be59ba931562134", "message": "Added get_coord()\n", "proba": 1.332910812834598e-07} {"commit": "266ce8299cc87c7456c46b455eb7ce053a60931e", "message": "[dev-mjy] output naming\n", "proba": 2.4448272597510368e-06} {"commit": "ef2a678cc7a51b07523a0d730c22b6aff5c33791", "message": "Eliminating formation of 'labels' for Elemental's SOCP interface", "proba": 3.1830523994358373e-07} {"commit": "173e119a4b7d7d035e50cb0abc217cc34ccf093e", "message": "Add text element\n", "proba": 5.0795675633708015e-05} {"commit": "63e79f94b29dcec0e8da3aaf15a57840b66be930", "message": "1.0.3dev: `FunctionalTestEnvironment.add_user` calls the `session add` TracAdmin command so that the known users cache is invalidated.\n\nThis change should have been included in [13479].\n\n\ngit-svn-id: 3bd1c7f5b9365705bff4dd56977498491f5ac132@13591 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 4.397404154588003e-06} {"commit": "f666be61e17c753add0ef5dbc1daf861c67919b5", "message": "fix wrong variable\n", "proba": 0.00033052812796086073} {"commit": "e039ad4ee45d8a2fea78661beca427f97da2422c", "message": "version command\nsome cleanup\n", "proba": 4.541241764854931e-07} {"commit": "6e2b0a4be3faadb6f59fc94c79bbcc970dee5c23", "message": "Update test_skf.py", "proba": 1.7355126828988432e-06} {"commit": "3fb85e815fc14627c6f16e4ad67799aa1f95f736", "message": "BUGFIX: edits to preprocessing pipeline to which paths we remove\n", "proba": 2.1540323302815523e-07} {"commit": "562c70283682a06bf7bde8c7a4ec6483e1e5476b", "message": "_promo_image_replacement: harmonize sidebar imgsize with post imgsize\n\nThis only affects the img tag, so far.\n", "proba": 1.130059956722107e-07} {"commit": "ee7e48edf457d573de63b0cd0129d997d24b0223", "message": "more choose fixes\n", "proba": 1.229062007723769e-07} {"commit": "81833470d1eb831e27e9e34712b983efbc38a735", "message": "Convert entire table to cartesian\n", "proba": 0.9999994039535522} {"commit": "452ceaa37bd070704d6acb276fdf9e4f0a9b3c56", "message": "Add logging to platform for debugging\n", "proba": 8.891918810149946e-07} {"commit": "013e5240d6ab3f01b8e71e252da8bb6c34e7c000", "message": "cwharaj.\n", "proba": 4.145706782310299e-07} {"commit": "1df7a80c0fd761b894650640299fa76c4549611b", "message": "Enable masking of sites in alignments prior to tree building\n\nUses the existing interface for defining excluded sites in a VCF-based analysis\nto also enable masking of sites from a multiple sequence alignment prior to\nbuilding a tree. This includes an initial refactor of the logic to load excluded\nsites from a text file, but this refactor is not yet complete.\n\nUsers expect to define excluded sites in one-based coordinates when not\nproviding a BED file, so this commit also enforces this expectation. Excluded\nsites are converted to zero-based positions internally regardless of the input\nformat for consistency with other Python tools that expect zero-based indexing.\n", "proba": 1.997824057298203e-07} {"commit": "7333b6af6389eee7a1da4c2fa2f8694a6891bb45", "message": "Fixed typo\n", "proba": 1.2940510032422026e-06} {"commit": "bad8f5d876eb70b4d9c65dd02626a0b6826f7bc2", "message": "Changed code to generate different colors per day\n", "proba": 5.598403163276089e-07} {"commit": "8711fe42a53b9761bdeeed42a16d2512dd028972", "message": "faster with beam size = 1\n", "proba": 0.0015558900777250528} {"commit": "0700e25b4dce989fcfc6ee367c7516578c8aaf5b", "message": "Update heartbeat in idle times\n\nstartJobs only runs when there is a queue\nbut workers can be marked as \"down\" just by\nbeing idle.\n\nChange-Id: If0a612c2835a71df973e18d237528ed9fc24a6ff\n", "proba": 3.244469326091348e-06} {"commit": "6f4e1024a2186fda78010e24a6fd5b8d30761676", "message": "handle invalid problem_ids\n", "proba": 7.98292167019099e-05} {"commit": "0ab94267a0e2992aae457fa9188c18a1806bc62f", "message": "update Term.classify_args() to support 'mode' attribute\n", "proba": 0.00010418341844342649} {"commit": "1d5c1725889a139d4cb95d01557e3424cb2ca9ad", "message": "Fixed bug in export of ToolInformationType; the name Element was using the Vendor class variable in its export call\n", "proba": 1.464184151700465e-07} {"commit": "5874429ac469f18067243bb6f35a0c27bf4a1a2f", "message": "Fix error in ajax item\n", "proba": 1.5680609521950828e-06} {"commit": "8e55350076e9e79f9a047be1848b421b07652a2d", "message": "making 'second' numbering scheme the default for concat_ports, as the one being used by ** cascade operator\n", "proba": 1.48949865774739e-07} {"commit": "fedb3768539259568555d5a62d503c7995f4b9a2", "message": "Handle orgs that you don\u2019t own personally.", "proba": 1.0207761391711756e-07} {"commit": "b23415e3f3c34c3911e4e05758a41a81e5882453", "message": "Replace space in \"Fraction of Zero Values\" with _ because using space is illegal and will be auto replaced.\n\nPiperOrigin-RevId: 193441676\n", "proba": 1.1607553460635245e-05} {"commit": "27cb1dd04e9a45e12ca18889b7826eff6744cc7b", "message": "Report more correct node as hole spot\n", "proba": 1.4336764309064165e-07} {"commit": "21f2b2dcd7a713352befdf061d57bd5ba4e207e5", "message": "cast timestamp to integer before querying\n", "proba": 1.9477715795801487e-06} {"commit": "8edc449a26e53f55a663e44b30d96c5c8d135c82", "message": "share/Spreadsheet.py: version 0.1.6: in Workbook class, change warning when appending to an existing spreadsheet (previously warned when creating a new spreadsheet).\n", "proba": 1.0728087573852463e-07} {"commit": "2557043856c60c05ec74dab69dd2381a565097ce", "message": "daemon: Don't sleep unless sending a notification, take 2\n", "proba": 3.803450852046808e-07} {"commit": "b6cc1218ff73be721b3f134c5ef70251766f1d4d", "message": "fix the last page end cursor id (null)", "proba": 7.015684673206124e-07} {"commit": "2d263f78dc0ef06b343def3c8d0a49ba246edb92", "message": "truncate words in letters summary\n", "proba": 0.9999994039535522} {"commit": "a6847488aa9a8fa4b473f2823d390c8fc0c3d451", "message": "more pep8 adjustments\n", "proba": 1.245664975613181e-07} {"commit": "1250d914d9a731cd08982daeba4d2a724dcfdc27", "message": "autoread list command\n", "proba": 1.695312903393642e-06} {"commit": "51386cf2ce1dee4a7fd8f10587770c7bb9552da9", "message": "rules_r: do not compute system state if R is not installed\n", "proba": 3.810575799434446e-05} {"commit": "de8fd668fc96bbf874f9cfdbcae45e9ce5c60d6e", "message": "Jormungandr: protobuf_to_dict pep8 compliance\n", "proba": 7.360716267612588e-07} {"commit": "562273c92da7ea2fa81190045c3e3aeb0d1597a9", "message": "Deleted WorkspaceBuild.py since it's no longer used\n\ngit-svn-id: f3880c1fc5096ce2109c8aec392d8e07f619f417@1162 c2973edb-eda0-4c78-bc6a-9341b269661f\n", "proba": 1.080248466678313e-06} {"commit": "a88b878d557d29ce095381111eea3a8222d0151c", "message": "Catch error smoothly when build fail on up\n", "proba": 2.6456015689291235e-07} {"commit": "40eb7ede3a223ec89c28a43abb8d626027e2dc12", "message": "Fix logging message omission. (#1022)\n\n", "proba": 0.0032850089482963085} {"commit": "e6b9ba9844a8fd5cafb9ee8264caf12f209dcab4", "message": "changed, so API returns added Run object\n", "proba": 3.0556924457414425e-07} {"commit": "394b4b8b3fec59d29a3c9f67138f54b100d4786f", "message": "cosmetic changes\n", "proba": 9.934165063896216e-07} {"commit": "e8e9433c438cd598f33a894efe72e969d5ce2a9e", "message": "Allow terminating a 2N-port network with a N-port network\n", "proba": 1.0637786544975825e-06} {"commit": "6c5c8efc3071f5f83a8e713982485eb8aea6de6a", "message": "__cleaning__\n", "proba": 0.0006791535415686667} {"commit": "5400a95db4ae8b1a35e66a0ba272bfbfa928057f", "message": "fix bugs\n", "proba": 1.0751475656434195e-06} {"commit": "3f33a6aee969078bd10fd149b2f46b8069322fb0", "message": "yadage: traverse nested spec for env validation\n", "proba": 2.5103534539994143e-07} {"commit": "da6937664cc85a68db4f1423421f86b5d0b95bdc", "message": "Added Django 1.6 compatible\n", "proba": 1.3432803314117336e-07} {"commit": "056346fb6164a4b794f2d557a0b32abd23126466", "message": "lower cleanup threshold, fix\n", "proba": 5.08901621287805e-07} {"commit": "c8d7395789d5a7cd4b379d398e2e0e3af0af7bf0", "message": "OPEN - task 6: The garage door graph on COSM does not show all the open\nand closes. \nhttp://github.com/gary-pickens/HouseMonitor/issues/issue/6\n\nDisable sending the double points to cosm", "proba": 1.7794054656405933e-05} {"commit": "fa08c68ab4f90b2c88d8a71d836f206e2ceaa754", "message": "Moved test out of run_in_graph_and_eager_mode in dense_image_warp (#1469)\n\n", "proba": 1.1129284160915631e-07} {"commit": "7755c117e354871bbc06c98d0709545cee2032ba", "message": "Add versioning managers\n", "proba": 4.6253325081124785e-07} {"commit": "08e588f31fdb615b5770cdadfcf1f536a88ee467", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "bc196c74b3959577f7254d1d5434aeb23d284eea", "message": "Convert tabs to spaces\n", "proba": 0.9999990463256836} {"commit": "7de01a5f94731782a33c448a02b6cda1a818bb60", "message": "Fix resending code with empty phone hash (fix #1283)\n", "proba": 1.6956592219230515e-07} {"commit": "7e89337088fa76f1fdd3a98ee4022bd8ed53188f", "message": "fixing json formatting error\n", "proba": 5.914282041885599e-07} {"commit": "0ef0e6c1d130dd25ec9dd9618ffcfc9f85913137", "message": "barpyrus: Add dock interface\n", "proba": 2.017916500562933e-07} {"commit": "783ff69351f79fe0b25728dc93c4bfa1b203a479", "message": "Fix pre-commit\n", "proba": 1.5636254829587415e-05} {"commit": "c5de419e67befc68909a0b9feaedc24b0f68d98e", "message": "Add command line argument for max articles limit\n", "proba": 1.8819271190295694e-06} {"commit": "6f14e9823229eb0b6bff2c1f063a841733ed1a6b", "message": "range element slug does not have to contain the date\n", "proba": 1.6487166476508719e-06} {"commit": "0ea6db2848644266106683534f701711ce31b752", "message": "Changed IOError at end of calc_rad_loss() to ValueError.\n", "proba": 1.156244238131876e-07} {"commit": "20d2240428932b68ac20002ef1dbb21a01702c50", "message": "Supports r/mylittlesquidward 2012-07-26", "proba": 1.1222435603031045e-07} {"commit": "4cfb9ea6a4d428296d2730d80cf7f488b5545def", "message": "updated metric key layout to match :lonnen's changes and also added a\n simple filter to reduce the amount of data we are pumping to StatsD\n as it can't handle the full flow :/\n", "proba": 1.0468603761637496e-07} {"commit": "bc4a37e3a93a68fa76c47bd355e1b028f0ca6c60", "message": "fix skynetqa url, add timeout and more graceful error handling\n", "proba": 1.509402380861502e-07} {"commit": "a48cd489d96dacd70a0f2b414f89eb734b0523f3", "message": "Corrects logical error and adds partial sequence mapping functionality\n", "proba": 5.512370080396067e-07} {"commit": "588fb283cc82be28d3fb28bb6a8896c42d1a7eee", "message": "Fix the CONF_LOOP check to use the config (#38890)\n\n", "proba": 1.2148542793966044e-07} {"commit": "1828de20b06ef47cff05ca52b1b0b9641abc39aa", "message": "Fix: DynamoDB having issues when setting host\n", "proba": 4.564536482121184e-07} {"commit": "9f1ca07152286768c96bee888cff6835d8fcfb49", "message": "Attempt 2, fix py3 png encoding\n", "proba": 0.0001695034879958257} {"commit": "c96cccbe7afc282aedbb316a2e9e41e47e68bcb6", "message": "fix efs lvm create (#610)\n\nSigned-off-by: Tom Nabarro <27c585386b86ec0acfeeb448326cb9c60162db51@intel.com>", "proba": 1.2780856195604429e-07} {"commit": "df40af3ce1a06737dac4320ef00d19432122f3a9", "message": "statistics: added amino acid compositions correlation calculation (needs debug).\n", "proba": 1.2175287622540054e-07} {"commit": "91893cd679b69073e64715e1c92e7519b431bf59", "message": "simplify sample config\n", "proba": 6.825290620326996e-05} {"commit": "50f9753ae94f616bd6aaa6b7d9a6c0b9aca35ca1", "message": "test for gracefully logging when response is 200 but unexpected\n", "proba": 1.8876215790442075e-06} {"commit": "64b225f64a26cacff5609d2c2083a4f7f406a2c3", "message": "complete bug fix\n", "proba": 2.8034008892063866e-07} {"commit": "84124de00a887354331a13da5c163f27be8c134e", "message": "Fix `integration.modules.test_cmdmod.CMDModuleTest.test_cmd_run_whoami`\n", "proba": 8.90545493348327e-07} {"commit": "12cab7f3dd8180cc71614861704c6f9a0f0dc714", "message": "changed 'type' to page_type\n", "proba": 2.8186030249344185e-05} {"commit": "b46168fbe1442310f1e2309adc134a0cb81f97ad", "message": "Add missing PIL.Image import\n", "proba": 0.0003345247241668403} {"commit": "de1bc8451cb8bc496ddf4fce785095ad5bfaa995", "message": "pep8.py cleanup for header.py\n", "proba": 2.1893018242735707e-07} {"commit": "d0e75c65505713a5f044d67a08e6697c4e332611", "message": "Add djangobower and update static settings\n", "proba": 1.4980774665218632e-07} {"commit": "e529ef7b0e93c769772a971b9c52456c4e6c80f9", "message": "Use instance attributes in qld_bushfire (#74402)\n\n", "proba": 1.2070543675690715e-07} {"commit": "a9151e4bc35ebeb43924dcac0201fdf1196eb6f0", "message": "Handle populate_db generating read messages\n\nNOTE: If you are getting test failures, please run generate-fixtures --force.\n\n(imported from commit 7b44b40e3955742edf337335deb0d92829c7e2e1)\n", "proba": 3.3628586493250623e-07} {"commit": "e9a7246ecb1e26fe04defb0d27b20aa2aba81dbe", "message": "cleanup: .parent().child( -> .sibling(\n", "proba": 0.0004142993129789829} {"commit": "ce63295b29987fbbc6d0d12db12e677b5a872b82", "message": "Keeps track of previous line\n", "proba": 2.8889417080790736e-07} {"commit": "03da3d44c67b4c320bb3956da8ff0a20ed10c8d1", "message": "Fixed circular dependency\n", "proba": 4.4262571918807225e-07} {"commit": "5273e0fcdf2b7f1b03301cb0834b07da82064b98", "message": "Remove trailing /n\n", "proba": 1.688289012236055e-05} {"commit": "ab5cbcef64cb6257c137586a4bf596c975049948", "message": "Added strip to pygame recipe\n", "proba": 2.002573751269665e-07} {"commit": "09fc28e49037d3eab546b31097e22a2e3bc0c89e", "message": "Fix mistake in [440].\n\ngit-svn-id: 35afe1d183cbd4849519a30d21151995795e8f1d@441 de761a21-4c15-0410-92fa-db90950b6ec0\n", "proba": 0.9999994039535522} {"commit": "dd1a50c5fc510b4b063336941d9eb61f96ea3510", "message": "Refactored condition type tests to their own methods and store them in a hash.\n", "proba": 1.0656159332711468e-07} {"commit": "a7a1a83bf0f6546b1e985b7c4611b5b83df25853", "message": "Add python's version in breakpad stack traces\n\nBUG=\nTEST=\n\nReview URL: http://codereview.chromium.org/5131005\n\ngit-svn-id: fd409f4bdeea2bb50a5d34bb4d4bfc2046a5a3dd@67314 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 5.7350996939931065e-05} {"commit": "624007ba3b361e7a892bed9d318effeccae8bf5b", "message": "Just updated a comment\n", "proba": 1.1142792999407902e-07} {"commit": "06c88a2aaad66f8544b47e97a5e36da8fe075324", "message": "Provide a more helpful error message when been migrate parameters are invalid.\n", "proba": 1.6127376056829235e-07} {"commit": "e45a09223dfe5591de38639da59a2b7040feb722", "message": "Correctly handling unsupported unpack size\n", "proba": 3.825955161573802e-07} {"commit": "aa40b3d64caf2f1d43266737d39e23d9b608816a", "message": "Fix broken import\n", "proba": 5.8683299357653596e-06} {"commit": "b2b2463a20769497ee678a2d4f977ed4e7018674", "message": "[soc2010/test-refactor] Updated field_defaults to use unittest2 delta arg for assertAlmostEqual\n\n\ngit-svn-id: 2e0e1b4189ca35a87c84e255bf3f6090874189fd@13415 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.2191012501716614e-06} {"commit": "3e23dbad0f485fd8243d5a0ae985aaa86de43e51", "message": "Handle unicode emails in git commits\n\nThis should probably never happen, but it has anyway, so assume the\nemail field is a utf8 string. This should avoid crashing in case\nsomeone has a utf8 email, but may not be a complete solution to\nthe case that an email is in a non-ascii, non-utf8 charset.\n\nChange-Id: I95ed91e5fdfe35b73550e1824e609a0b1d388b3a\n", "proba": 0.99759441614151} {"commit": "95d9c3ecd9a8c2aa73fd91ffdf40a55fee541dd3", "message": "Ch15: Enable flatpages without middleware.\n", "proba": 1.0530424532362304e-07} {"commit": "c3ce8ca2d64d15abee69071c294f2003ea61035c", "message": "disable crypto utilities\n", "proba": 1.0208340199824306e-06} {"commit": "1df96e3f701be7fb1a27c51402762ca001475592", "message": "Use underscore instead of colon for nebula dynamic sourcetype for splunk\n\nhttps://github.com/hubblestack/hubble-salt/pull/69\n", "proba": 1.6334792007910437e-06} {"commit": "3c62e7aca8edf38cdf547ee5e1d835e2387a72fd", "message": "Quick doc fix.", "proba": 1.2411790351052332e-07} {"commit": "a99d2bebab56e3e1a0c20385f48d57f803141676", "message": "Assert that registration involves <= 53 queries.\n\nThis isn't a very strong test, to be sure, but it's something.\n\n(imported from commit 578dbc6601f38186fec9bfb061a8bbc322201ae7)\n", "proba": 9.189807315124199e-06} {"commit": "411751a10ece8b84bb122422b8d58f22710731aa", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "e29878f36ed78c8e7acf683029252001daf1e4c4", "message": "Add a description method.\n", "proba": 0.00010743374150479212} {"commit": "d89d7cedd3aeef0c259e2af6d617b0defe6eff85", "message": "use context for translations\n", "proba": 3.754943827516399e-05} {"commit": "31fbec3c021422015ee4cb2552734f662061d59e", "message": "added user-task based queries\n", "proba": 1.0223997151115327e-06} {"commit": "9a19d0c912ec4639a2af10ac963533ef184efe91", "message": "Small fix for using bokeh WMTSTileSource with WMTS element\n", "proba": 1.1592794635362225e-07} {"commit": "b926888ca07105d1f2e558c0a2621455bd8ef2b4", "message": "fixed error where autoplay songs weren't added to history\n", "proba": 2.384614958828024e-07} {"commit": "31478d602ca0d9b1a58a1990cf7337f7adaa85ea", "message": "raise auto-accept and auto-select thresholds to 0.05 (from 0.00) and 0.2 (from\n0.1)\n", "proba": 1.7605143511900678e-06} {"commit": "17eaf5d3d0b3cf6c6fffc4ea70499cd9feeb6723", "message": "Set Logger to UTC\n\nWith directory names, graphs and everything else in UTC, it becomes hard to\ncorrelate things if the logger is not in UTC.\n\nChange-Id: I8d1f88103d6eb413b11046cf997e146ae9820731\n", "proba": 1.192169111163821e-05} {"commit": "b32768848fd5d398cb75da165719595fa2875ac1", "message": "Prevent `solve_system` from running on import\n", "proba": 1.1965528301516315e-06} {"commit": "310e0bc32e7986ac236df27ffe2cc2da2833f6a6", "message": "Fixed PEP 8 issues\n", "proba": 1.2667084092754521e-07} {"commit": "a4855614285223cd650f268d24d19fd9929d9fc1", "message": "PEP 3110 Exception changes for Python 3\n", "proba": 3.7336234527174383e-05} {"commit": "911e961f189967554bc5a046f022bb1c394cc119", "message": "Debug and test before finishing. p50-52\n", "proba": 1.4022842265148938e-07} {"commit": "4df045ed41bb929f6970cc0c2f0851ea4ab21713", "message": "Uncomment raise MaxRetryError and change the factor by which sleep time increases to 6\n", "proba": 1.0962338592435117e-06} {"commit": "9c0155172b9e923560ca177d5d287fe43170c299", "message": "Using 3D Vector format for Face components debug log\n", "proba": 1.6801048730030743e-07} {"commit": "fe6b9b00555a6f923b7669af9dc1505fb3e9036e", "message": "No longer checking membership in parent group. Only checking memberships in CGAC and Permission groups\n", "proba": 1.1559377099956691e-07} {"commit": "df05fdbdeb49b3a9f58464ec8d26a3946b6efa17", "message": "upgrade to python3\n\nno changes in logic. Just an upgrade.\n", "proba": 1.02935139523197e-07} {"commit": "13636f1e09a48df5ee43e9353018f927d80fe0c6", "message": "update deleted contact group tests\n", "proba": 2.2426735313274548e-07} {"commit": "e4199d7836384cb8a2ca77b895d2d2f58840bdca", "message": "Corrected this script\n", "proba": 0.00034021749161183834} {"commit": "51ae4907ce5e2c3352ebe8e9a2a7b41a243cab3d", "message": "Add note about pattern constraint use\n", "proba": 1.3921706454311789e-07} {"commit": "cdf0a05f0902a3578f2e81857e8496ac41764446", "message": "Project installer fix.\n", "proba": 1.423215536533462e-07} {"commit": "899fcb64dbc8cc6bb9bbaf0a41f8237a9b4eea5a", "message": "remove unnecessary loop in _resolve_alias\n\n", "proba": 2.6885123588726856e-05} {"commit": "f3578096219dbb82572063c8a6dbb75be4da07ac", "message": "Update P03_combinePDFs\nfixed reading encrypted files\n", "proba": 1.1161468904674621e-07} {"commit": "1901ebe49d1015ebacbb59fb981450737b1bb43d", "message": "Fix showing invite-only streams on stream list.\n\n(imported from commit f364c2fa28009f2cdfc9aed225d4a9a8c8a1d3c1)\n", "proba": 2.2508628205741843e-07} {"commit": "3103d83bf40367cd722208612f41576c7552f500", "message": "added initial versions of random algos for random portfolio benchmarking\n", "proba": 1.3171909074571886e-07} {"commit": "cdffad214f1e284139bcf4c19a7e9586e3ea1a6c", "message": "scripts: zephyr_flash_debug: flash like nios2.sh\n\nOnly tested by comparing commands that would be run.\n\nSigned-off-by: Marti Bolivar <9d90ac4c7bf6a305f6bfd81a23c7859bc883380e@linaro.org>\n", "proba": 1.7721362155498355e-07} {"commit": "7bd54dda24f26662a1525c4b5a76374dbdbc1686", "message": "test/test_blacklists.py: add test for watch\n", "proba": 4.7044522943906486e-07} {"commit": "4726cd620bb764ecb7a2b2b5848842a45437f63b", "message": ":new: Add `check_status` to config parameter [aws add-on]\n", "proba": 1.1102950736585626e-07} {"commit": "459499017f6aa411aab939d93dc9894ac740f89e", "message": "CLOUDSTACK-9015 - Delete public IP in order to get both IP and NAT rule removed.\n\n - Set the IP and NAT to None to make sure they get reassigned.\n", "proba": 1.04496123753961e-07} {"commit": "49f55b21cc95fd7ec2178fa591f30471ef154ac5", "message": "Cleaning up migrations.\n", "proba": 2.722954945966194e-07} {"commit": "3622f0d930c4b179791b4a35050e78e4db3131dc", "message": "Add warning message for special case in name table check\n\n(issue #1436)\n", "proba": 1.084537899487259e-07} {"commit": "2639c003992117cb457401da885db51da340b9f7", "message": "we don't use team objects any more\n", "proba": 1.385368335604653e-07} {"commit": "737f90cee91a2fb623111a0cd32f22032340f35f", "message": "Reorganize newline additions when getting comment string\n", "proba": 3.605241317927721e-06} {"commit": "8a98fd4999242b62779ba9a1073718acf78b7d28", "message": "Autocommit at Thu Feb 18 16:16:15 PST 2016\n", "proba": 1.303052528101034e-07} {"commit": "f8a2f7e6e05816acefadf30a84c6f23114d65f9c", "message": "Graphdocpy now works on unix and Windows (for me anyway...)\n", "proba": 1.047399607045918e-07} {"commit": "b2ae63af7718c83fbf0bb8e1b31d80117118e052", "message": "Use the __str__ method instead of casting to text\n", "proba": 0.0005069762701168656} {"commit": "f71ab4f8db04a569543fa5aa6ce05ee9f95479e9", "message": "Add Neutron CLI tests to tempest\n\nBasic, read-only tests for Neutron CLI client.\nChecks return values and output of read-only commands.\n\nChange-Id: I5384e063686d21f006f8837cd916177e3d490bd6\n", "proba": 1.2333729273450444e-06} {"commit": "f18c1f7a4131d7008fec8a0fe1cad5347b6d67cd", "message": "Fix parameter passing for order cancellation.\n", "proba": 1.2379895508729533e-07} {"commit": "19fb55a74b68dfdf7bc7acc66ea4ff047c438a9d", "message": "fixed error in last commit\n", "proba": 1.8232407228424563e-07} {"commit": "333df7925ecc383aa53d0ddde44f074ac6885cd6", "message": "Made 87a bushings more purple\n", "proba": 1.2120791836878198e-07} {"commit": "47affa4597b23f90e85a54be3664982e54b3bf7d", "message": "Add datafiles for jupyterlab_widgets wheel\n", "proba": 4.6949864440648525e-07} {"commit": "b915a29ee1cd8fe4d7eb83e02a95b17fb11bc198", "message": "Skip a couple of tests that do not work with randomized dict order\n", "proba": 1.6499028276939498e-07} {"commit": "9035b9c4dcffcab72e7b4d9a6a10bc2939bc3655", "message": "Added basic generator interface\n", "proba": 1.6030234917252528e-07} {"commit": "ef3e3dd372c1721242d0b4e39744014c783eb7bb", "message": "export inflection class\n\nDump a possible inflection class present for the root/stem.\n", "proba": 1.2084134937140334e-07} {"commit": "16f3e316318e7404ccd9f99df1daaa4f3fefade0", "message": "Implemented get_serialized_list()\n", "proba": 3.123464011878241e-07} {"commit": "6582e2181705634a14b6d62dba96024a7247ee72", "message": "formatting and outputting dataframe correctly\n", "proba": 8.061913376877783e-07} {"commit": "afd5c5a9f438961d61268ac83d904af6e838295f", "message": "HUE-3937 [editor] Remove ignored hive.server2.logging settings\n\nThese can only be set before init of HS2\n", "proba": 1.31852061713289e-07} {"commit": "1517aece165e19f3f5ce9e5ee66948d90970c344", "message": "Another update\n", "proba": 1.3826466727095976e-07} {"commit": "e213996a495cbd633d1f1b0a0879b4b5285a7e03", "message": "restrict check/tnum_horizontal_width to RIBBI only.\n\n(issue #2278)\n", "proba": 1.168304990528668e-07} {"commit": "9304a8998f6813fc35e070a209776a91241f06fc", "message": "Limit in-memory temporary data size\n\n--HG--\nbranch : big-files\n", "proba": 9.600134944776073e-07} {"commit": "0a8b7d3d7fcdf1945be3cd3724de3ad5d2e4b90d", "message": "Added a newline at end of file\n", "proba": 2.50191192208149e-07} {"commit": "c436b8c3fa45cd59bf074225e02529ef95314c82", "message": "Fix: it is incorrect to assume hash length = 8\n\nfix #905\n", "proba": 0.9985454082489014} {"commit": "8f91dc1fc3f23f49538920a582fcbc1126bdaea6", "message": "Autocommit\n", "proba": 5.653471930600062e-07} {"commit": "26de426fabb18541b0f63dfa982d6aee879a064c", "message": "fixed search term to use search string, still need to support multiple search terms\n", "proba": 1.7785632167033327e-07} {"commit": "4a96caa572d980fa238cf897103e3de6bc95af2c", "message": "Shortened code, removing unnecessary class structure.\n", "proba": 1.9388002669984417e-07} {"commit": "3a269d8d86c0be72f97b7f5327f548a1c564eaf6", "message": "XML.prefixed_to_namespaced()\n", "proba": 1.5346757891165907e-06} {"commit": "7e58fc648ca1a404ed2a08e947fc2b522da0dea6", "message": "Fix NameError\n", "proba": 5.290849003358744e-06} {"commit": "aaf7d247986eb540084f4daf3a8692b96262f2c7", "message": "Forbid trust info\n", "proba": 1.4211133247954422e-07} {"commit": "2658440c0e92a8cd15ef87e125565bf379b92adb", "message": "add blockchain url", "proba": 0.9926947355270386} {"commit": "99e47439445e185dc74cbfbf0a2a7a4418282640", "message": "Translate \u00ab save \u00bb button on user profile\n", "proba": 0.002810623263940215} {"commit": "110c29133b9b6e57c101a9b3bee5f8c59ed4af13", "message": "Preserve list order in _pymod2pkg_translate\n\nPreviously, we converted the py_versions list into a set to substract\nthe versions to be skipped. However, Python does not guarantee the\nitem order in a set, so some unit tests could fail when the order\nwas reversed from ['py2', 'py3'] to ['py3', 'py2'].\n\nThis change fixes that by making sure the order is maintained.\n\nChange-Id: I5bcdfa3a3dfe2583cc9653d6c87f6c24464b60a5\n", "proba": 0.0035382509231567383} {"commit": "ffe668845f1c0d46ae2b56ef252bacc0551d40bb", "message": "mail attach update\ndependency library imbox changed\nhttps://github.com/martinrusev/imbox/commit/7c6cc2fb5f7e39c1496d68f3d432eec19517bf8e#diff-1ae09572064c2e7c225de54ad5b49154\nit propageted to pypi last week\n", "proba": 3.268866919370339e-07} {"commit": "5fc33b212d2e5083abe4ff66ced037d182f9a6aa", "message": "Avoid loading token twice in pyjwt.decode (#506)\n\nRemoves a call to _load that was unused.", "proba": 1.082256559925554e-07} {"commit": "d86df594ecc5d41dab6d57028237bfc29c7497ae", "message": "Change output and add Keyboard interrupt.\n", "proba": 1.4389321734142868e-07} {"commit": "8827f00e5359489aec1bda25c250fc59b02dca43", "message": "Add prefix flag and refactor prefix check\n", "proba": 3.986826300206303e-07} {"commit": "24b39e457519f45df55a90a6c6c92fa8df5128b7", "message": "Disable abc metaclass due to issues with pickling.\n", "proba": 1.1562894286498704e-07} {"commit": "b788b72c2f6c255b37c9e607a8abfbd2dd60f797", "message": "Version 0.10 Beta: New format of status, Fixes, Removed debug prints\n", "proba": 1.2060716869655153e-07} {"commit": "bdb3d5abb25c209744f947116febc64d7a10cc60", "message": "remove handling head argument from first with stmt\n\nWe had this code written in the first with clause:\r\n```\r\nelif args.head:\r\n for i, line in enumerate(f, 1):\r\n if args.head < i:\r\n break\r\n sys.stdout.write(line)\r\n return\r\n```\r\n\r\nI was running this and getting this error:\r\n```\r\n$> giraffez fmt outie.gd --head=10\r\nTraceback (most recent call last):\r\n File \"/home/ec2-user/.conda/envs/life_events/bin/giraffez\", line 11, in \r\n sys.exit(main())\r\n File \"/home/ec2-user/.conda/envs/life_events/lib/python3.6/site-packages/giraffez/__main__.py\", line 25, in main\r\n MainCommand().run()\r\n File \"/home/ec2-user/.conda/envs/life_events/lib/python3.6/site-packages/giraffez/core.py\", line 80, in run\r\n args.run(args)\r\n File \"/home/ec2-user/.conda/envs/life_events/lib/python3.6/site-packages/giraffez/utils.py\", line 145, in wrapper\r\n result = f(*args, **kwds)\r\n File \"/home/ec2-user/.conda/envs/life_events/lib/python3.6/site-packages/giraffez/commandline.py\", line 322, in run\r\n sys.stdout.write(line)\r\nTypeError: write() argument must be str, not bytes\r\n```\r\n\r\nAnd realized that we were handling `--head` in two different places, once with a plain `sys.stdout.write` and once with more nuance around the process and filterfunction, the former of which handles reading the bytes into string.", "proba": 0.9999966621398926} {"commit": "55ea20c6c604b8935c7ceed2e0d77731978caa99", "message": "Trickle-down Merge branch 'larping-loon' into jetstream\n", "proba": 2.067188233922934e-06} {"commit": "b7f47956b9532d9dc0b9a4259316846a740786fc", "message": "0.13.23\n", "proba": 1.5771915968798567e-06} {"commit": "e2b45eb2002c3707edc5057b7c1890237f92182c", "message": "Delete \"check\" alias, delete expected failures from unit tests.\n", "proba": 1.2543816296783916e-07} {"commit": "c3ebde6e38b9fbca212b9e00250b5f61e4440168", "message": "Fix a typo\n", "proba": 0.9999995231628418} {"commit": "a3a01e4fd8fb29698ae2d6a1ada1195cf55d12b9", "message": "[svn r2350] remove debug information\n", "proba": 2.0284764445932524e-07} {"commit": "0e2643beafc9039862ed19835d8097f5987bf823", "message": "Remove line breaks\n", "proba": 1.431067539670039e-05} {"commit": "b893124739e61ce27c16140f1afa8870f4ff250a", "message": "update calls to match new API to preferences", "proba": 2.557391383106733e-07} {"commit": "e8be397c2c85684d7d3cfe3088cec2084f4b78e7", "message": "IPython 3 compatibility\n", "proba": 2.6099212391272886e-07} {"commit": "d5cf9674077085ea433b505d973daf9faf99b06e", "message": "canvas.py: minor changes to bring into line with TBlatter's early serializer version\n", "proba": 1.1926937304451712e-07} {"commit": "c958fed31b7ab7fedb51c23eee40f781b6e09075", "message": "Fix error checking in git mirroring commands\n", "proba": 3.2719437967898557e-06} {"commit": "4811fd5cb279c5016d886710dafb99dcbb7008f8", "message": "zip_cracker module added\n", "proba": 3.17020152351688e-07} {"commit": "fd4ca393509386bc662c713bcb15ac2a817c4a14", "message": "Added Fortran module compiling to setup.py.\n\nThe Fortran and Cython modules can now be compiled by executing\n\n$ python setup.py build_ext --inplace\n\nwithin the source directory. This means that we don't need the Makefile system\nany longer. The current implementation involves two separate calls to setup()\n-- one for distutils and one for numpy.distutils. Hopefully in the future we\nwon't need to do this.\n", "proba": 1.293393125934017e-07} {"commit": "99fe91f00fa45bf8a42798325e5aa711e0212c6f", "message": "cleanup", "proba": 3.1109298106457572e-06} {"commit": "b3033920321b38586648ee06bfb17e96e54aa3d2", "message": "Fix non-interleaved update", "proba": 1.6711204807506874e-05} {"commit": "832b6d45e8f47c3c0b83040e59fc76187ace1797", "message": "0.12.81\n", "proba": 3.7161273667152273e-06} {"commit": "26ce46c14f3fc5d38253617822974c21b488dd95", "message": "Set priority to 0, set viability to permanently null. Add test to ensure keyring can render itself. Ref #358.\n", "proba": 9.951482127235067e-08} {"commit": "0772d8fe194c25e715a007796d573d458fcc68d6", "message": "Update test_h2_upgrade.py", "proba": 3.1094023142941296e-06} {"commit": "4f217d74f99e86be00630d4f2c4cb40db72bc52b", "message": "made everything more complicated.. therefore, better!\n", "proba": 1.3508663698758028e-07} {"commit": "239ad90ccc3faff0bfaaa5059305a93649978e93", "message": "this is duplicated\n", "proba": 0.9994339346885681} {"commit": "e0cc368f860d24819e69902ac12652f5d784e8f5", "message": "Fixed locators and timeout value in page base object\n", "proba": 1.8846630212010496e-07} {"commit": "6cab76d8148fee8e3387b40733f5793eeb48b21f", "message": "keep .highlight css class\n\nhighlight area now gets two classes: 'div.highlight.hl-language'\n\nCSS header is generated for class '.highlight',\nbut cells were given class '.hl-language',\nso the CSS wasn't applying correctly.\n", "proba": 1.234317323905998e-07} {"commit": "01ecac73a69b26a4c03c557a1664941d33bf2b64", "message": "\u5165MC\u7684\u6807\u9898\u6539\u4e3aUnicode\n", "proba": 1.2976308028100902e-07} {"commit": "7f423ad352f4094c833b4005099e986fc1f398ea", "message": "Command line to object - done\n", "proba": 9.712325663713273e-07} {"commit": "bcb7eb27aa15d29bb0f5bf167835995af5480ecd", "message": "faster hexahedron tests\n", "proba": 4.686147292431997e-07} {"commit": "97077782f15973218f1a6238835e553f1d81400c", "message": "apps.administrator.simplified: Enabled create, update and delete on Delivery.\n\nIssue #165.\n", "proba": 1.1147001544031809e-07} {"commit": "c701a31cea70928a94deab6fb237b5d99e0d91d1", "message": "Update output\n", "proba": 3.6728049508383265e-06} {"commit": "bd55a9f7abddad9c5d2e5c7edc29020bc96a1616", "message": "Fixed read json mappings from file\n", "proba": 1.6391049939556979e-07} {"commit": "750b78933d1aee357a6e57ec70011fdaea437cea", "message": "Default backend is 'agg'. `None` is no matplotlib.\n", "proba": 3.1091176424524747e-06} {"commit": "ab9e57d2ac51c1e7350328cb166f10f704f9efb9", "message": "Add registration and validation\n", "proba": 1.5295456989861123e-07} {"commit": "cf7d2d1a4ab1e2385148899e67bdd4529e51d6e0", "message": "More robust handling\n\nFixes #26", "proba": 1.1552423018201807e-07} {"commit": "6640e9d5ff58fe78dc38b25bb8cf80d4db4dac2b", "message": "Actually run hourly\n", "proba": 1.9802588724360248e-07} {"commit": "2e3b5c25b21377185a8ab0ad562e48fa9a9178a8", "message": "apps.administrator: Rename parentnode__id to parentnode.\n", "proba": 1.1371946584404213e-06} {"commit": "2639f901a41d3928890cca0018704694087b22bf", "message": "Update method comments\n", "proba": 3.502166237012716e-07} {"commit": "a3e40d9d7dfa5cbed2fd77c733612ed032881537", "message": "added is_inner and is_constructor fields\n", "proba": 8.698563078723964e-07} {"commit": "4dbdf494dc57ea3bc80c829739d06a1dcb536ff5", "message": "Set progress timer to be single shot\n", "proba": 1.2652900522880373e-06} {"commit": "d6ef946df0497868de9d035ab0d56d0d828c2be1", "message": "Disable failing assertion in python test\n\nThe assertion (previously) in line 84 of TestHdfsFdCaching python test\nhas started to fail reliably in the Kudu feature branch build. The\nreasons for the failure are still unknown since this file has no differences\nfrom the version in core Impala and changes in the Kudu feature branch seem\nunrelated.\n\nSince this assertion failure is basically blocking all progress this\npatch just disables it, leaving a TODO to re-enable it once the root cause\nis known.\n\nChange-Id: I97b877c71b6352d52a02e657623cd3b2df3963c9\nReviewed-on: http://gerrit.sjc.cloudera.com:8080/7143\nTested-by: jenkins\nReviewed-by: Martin Grund <2546548d516fa64c411fde8242af35f3f80ad31f@cloudera.com>\n", "proba": 5.251790753391106e-07} {"commit": "56598776ce6588445cf0d76b5faaea507d5d1405", "message": "Update Labels for consistency\n", "proba": 1.5673836628593563e-07} {"commit": "ea3c54590c1998bb31a265d5f55815f036b51205", "message": "New line missing in str function\n", "proba": 8.194321708288044e-06} {"commit": "0e9de8b53f4781b9aae205c11dd6a63b359f6885", "message": "Change Firefox topic.\n", "proba": 1.3332667947452137e-07} {"commit": "118e0cc09a73d0b988a92b556dde2d32501be1af", "message": "Update viber.py\n\nAdd attachment to message\n", "proba": 1.4720077956553723e-07} {"commit": "298f1632102444e4df40416fc684223e3b9536d6", "message": "better search error messages\n", "proba": 1.6659223547321744e-06} {"commit": "6194c305bea202e1becbee14a71d260770ff14a8", "message": "Improve branch check to check remote\n", "proba": 2.3503980628447607e-07} {"commit": "252d737791f794371839eb6405efd8a8ed0d702c", "message": "Fixed page artist names overriding album artist names\n", "proba": 4.4693021550301637e-07} {"commit": "50ad60f45466a3e547174130fa06107f47b1a77b", "message": "Make EMPTY actually send an empty string\n", "proba": 6.621113425353542e-05} {"commit": "e45f25c98ba3704c21fc3412025b4ba95def6ff2", "message": "Remove duplicate string\n\nChange-Id: I5b09eca17728e433eb16069b502160b95a887e7d\n", "proba": 0.9999994039535522} {"commit": "d177e41c9ba6c10bda80af230e9843a37a76dcf6", "message": "Use multiple queries instead of a single complex query.\nGet ~40 times speed up on queries for KA Math.\n", "proba": 1.685490786940136e-07} {"commit": "80bd18927c34b5a9ece0255ae5d3e16998b265e6", "message": "week 6 fix\n", "proba": 8.159846629496315e-07} {"commit": "bbf35c9b7bf56f0d0852d2de2ae23c3c1a9a2a31", "message": "tests/source/_complex_fault_test_data: float imprecision error\n", "proba": 0.0009693768806755543} {"commit": "3fb177caf645eed24a02e43db3747bff82045ed8", "message": "Add test for bad facet variable name\n", "proba": 1.0457223424964468e-06} {"commit": "486dd097b37faa074e597ab5953275b63e35ed7c", "message": "Silence warnings about threads.\n", "proba": 1.1909660457831706e-07} {"commit": "9d2067b8e0200853f3b928cb26aa4ff79abfef7a", "message": "remove grad inputs from chainerx.grad tests\n", "proba": 8.177632366823673e-07} {"commit": "f74b73cfb6bb8586440f632d3fe561271c13d62f", "message": "Clarify HmacV4Auth's \"no region name\" message\n", "proba": 0.0013458128087222576} {"commit": "1ba102fc544f8d307412d361b574da9d4c166f8e", "message": "3.1.12: mem leak\n", "proba": 9.53942617343273e-07} {"commit": "91131adb38e4298160ab42135fd5efd3b7ae30e4", "message": "Catch errors during module imports in plugins.\n", "proba": 1.1521835574512806e-07} {"commit": "1cf53043795b22969b07d86482f805d0e1508bb4", "message": "initial commit\n", "proba": 2.7632697197077505e-07} {"commit": "9626736dc94c85987472b7d7ad5951363883a5dc", "message": "Disable Facter plugin if yaml import fails\n\nCurrently if the yaml module is not installed startup of jsonstatsd will fail.\nThis commit wraps the import of yaml with a try/except block that allows the\nconstructor to detect the failure and disable the plugin rather than\npropagating the ImportError exception.\n", "proba": 1.0382560589050627e-07} {"commit": "637847653dbf10c09d2bae7770dbb727afcdd455", "message": "Clarify docstring\n", "proba": 0.00022583022655453533} {"commit": "0a557b17995fdba9e6295086c3371e713276a1e3", "message": "Improved dict formatting\n", "proba": 4.1869967049024126e-07} {"commit": "4e1c65b0d2dac4b2c1cd444e949b8f5a8138f420", "message": "Tests for .functional.constructs.Var.__reversed__\n", "proba": 1.226279550792242e-06} {"commit": "19e9776877e005191b3349b0fe1ea1380f850388", "message": "Adjust tls_client_versions to be more resilient for different curl versions\n", "proba": 5.85776149364392e-07} {"commit": "91d425f124ef190b440b3508706387eb2c0eb5ef", "message": "Profiling, scattered fixes, back to usual performance\n\n\nFormer-commit-id: 55f629df127c0006791dcd5a66f78f73f7472360", "proba": 3.333272786676389e-07} {"commit": "b0cc66e2a8b28dd6b84cc610e03e9ad1f5be771c", "message": "Remove unused assertions from test_v3.py\n\nThese assertions are not used anywhere in keystone's tests. The\nassertion for service providers was added but never used:\n\n I62ec9619d8b187cda80100e383d40b158550b71f\n\nThe token assertion was no longer used when we removed the v2.0\ntoken API as noted in the commit message of:\n\n I4c3e35f3565b4b60ae4d00cc2490bd04aba1a800\n\nChange-Id: If28273c88518df0ba6b75a98f13f123bee574fb5\n", "proba": 9.764452261151746e-05} {"commit": "e76c6ee9c0b5f33b1f7168c2c98ee502a1bd4a34", "message": "add language to title\n", "proba": 0.9999986886978149} {"commit": "99329177c9c0db0d2426c3f2564b14a641d9ebc6", "message": "Fixed create and generate UUID if needed\n", "proba": 4.5245337787491735e-07} {"commit": "4f4216b56bef952fda37fb2ef35765bb53cba54a", "message": "PYCBC-300: Result.__repr__ should indicate properties in proper case\n\nThis is per normal Python convention of showing the fields as-is within\nthe output of __repr__.\n\nChange-Id: Ia7d4ad0763fa36f7f66be9d43833ec68b522b5c9\nReviewed-on: http://review.couchbase.org/56412\nReviewed-by: Dave Rigby \nReviewed-by: Volker Mische \nTested-by: Mark Nunberg \n", "proba": 0.9999979734420776} {"commit": "81ddb011ddc377ebf17640ce5479b050805e0023", "message": "Splits large test class into multiple classes.\n", "proba": 1.5087637621036265e-05} {"commit": "9a4b3dbaba3f32a27f4cc5eaf74ef9b44a051472", "message": "Fix some formatting\n", "proba": 0.9999982118606567} {"commit": "ab1bea8bfe09bf14bcec34e6d1e69ca23dacfc83", "message": "Hack BNode store to bypass formula_aware assertion error\n", "proba": 2.1864308052954584e-07} {"commit": "ca74ba7df0a56192d37db9fe66818e9f8c15156b", "message": "don't use deprecated/removed \"skiprows\" in np.genfromtxt\nuse skip_header instead.\n", "proba": 1.1235414376642439e-07} {"commit": "2c7e34b5c337a424c4d5615f0d59e349ab610feb", "message": "h1 on main page\n", "proba": 2.3894455125628156e-07} {"commit": "764f785bfa34d99dc2633db78a0d80407e401993", "message": "Implement a client instance\n", "proba": 0.0004264575836714357} {"commit": "dd504d0ea4eb29f072debf55ca5081485a5d6214", "message": "fix tests for width param\n", "proba": 3.495686087262584e-07} {"commit": "cb94a450429ed1b011366b8a40f09cfd40d91001", "message": "Speed up writing of records\n\nCalling functions is costly in python, so duplicate some short\ncode instead of calling it.\n", "proba": 1.6584009188136406e-07} {"commit": "0a7c9a8e44afe3adc729d0c0a420f9252171dae7", "message": "Add another test for equivalent node checking\n", "proba": 3.614335923884937e-07} {"commit": "5831c44687039e8e2ea5934b7a612d9826a401f4", "message": "K8sDeployment: update docstring for rollback()\n", "proba": 1.2531715753993922e-07} {"commit": "32541632b1726765496a0a0d40495ffa3d17e4ea", "message": "Added stacktrace to debug\n", "proba": 2.723019747463695e-07} {"commit": "88206513d4a04a99832ac8461a3209b2d1d7d2c8", "message": "make test work\n", "proba": 0.0001946386182680726} {"commit": "cd29b9b941e1634253f2889d617ce742b81d7c4e", "message": "openshift: copy virtual_router_id to backup paramfile\n", "proba": 5.322979177435627e-07} {"commit": "23a6070c48fc2d96232a9f90627879b69874382d", "message": "Pass max and min rank to process_samples()\n", "proba": 1.2891801759451482e-07} {"commit": "4cba9b100bf7ce397c00dec0a6f5e13b2d92dc90", "message": "test-avatar-async.py: coding style and use assertEquals, as per Daf review\n", "proba": 1.5140027187499072e-07} {"commit": "4834b27cb549c551e2867867d0a37b97fb529dc5", "message": "Starting to build up something that looks like tests\n", "proba": 4.2951475620611745e-07} {"commit": "4a0f125f0b88018f28b8760f4308371bc6936180", "message": "openshift: additional fixes for BYO registry\n", "proba": 1.5783696483140375e-07} {"commit": "ee4872accbeb0c236d952c34e87b668ae4fcee0b", "message": "Only enqueue short name calc for official events\n", "proba": 2.0284764445932524e-07} {"commit": "5f3292948f87f70310f0ad07fa2dad596046756c", "message": "add sender timestamp\n", "proba": 0.00019182031974196434} {"commit": "c24b8d0c0bf3bac30ef23abf81d42a83cd359339", "message": "Added global definition of voting maps path constant.\nAlso deleted unused constant BASE.\n", "proba": 1.0230039038106042e-07} {"commit": "d39f6b829a788174f752dca5c3b567904d31284e", "message": "l10n_br_nfe 14.0.2.4.0\n", "proba": 8.096693818515632e-06} {"commit": "e9b8de9432ea87d2cb4d692925ab59870d10fd35", "message": "[IMP] added some auto_install on mature modules: so they will install automatically provided dependency are here (which is already a deliberated choice)\n", "proba": 1.0361472391196003e-07} {"commit": "97f237b53487dca7c9f161474eaf6ea9ee8fa3bd", "message": "1.3.3\n", "proba": 0.000583431392442435} {"commit": "c4368b0f1be6ea324a80aa52a03170c3f089c958", "message": "keyboard scanning works\n", "proba": 3.944183220028208e-07} {"commit": "052017bd88b39dde9fbe1c7efd0a5764ebdb92dd", "message": "Avoid unneeded unquoting of S3 events data (#2044)\n\n", "proba": 2.5474307108197536e-07} {"commit": "0c952b9bb82e7f2ae8bf25427ca3c3384135a956", "message": "only importing ssl if scheme is https\n", "proba": 2.506396867829608e-06} {"commit": "716ffae543838af6de7b83723ac6048a9f8f390a", "message": "improve test list latest articles\n", "proba": 7.158909056670382e-07} {"commit": "aaf1db78c772d6bb00c3c3a89c052e4256f13dde", "message": "Adding myself to committers.py.\n\n\n\ngit-svn-id: bf5cd6ccde378db821296732a091cfbcf5285fbd@49825 bbb929c8-8fbe-4397-9dbb-9b2b20218538", "proba": 1.1054914466512855e-05} {"commit": "029eb46a792c57adbb7c983928f9f416b02ca4af", "message": "Actually use the new session\n", "proba": 1.1878240258056394e-07} {"commit": "84ad5740c17efa2069e39bec74d15f3ef9ccf678", "message": "gh_release_delete: Support pattern, keep_pattern, dry_run and verbose options\n", "proba": 3.1880165352049517e-07} {"commit": "f739b25c199fe44a6fd672ac8a01a3fc16f72e82", "message": "Add test that expects fatal error when passing `filter` with too many `.`\n", "proba": 2.7423254778113915e-07} {"commit": "799718ced8839ca3691e1b581e2332b03433fd98", "message": "fixed issue with incorrect count of records for-non child tables\n", "proba": 2.4511629703738436e-07} {"commit": "faa912ed8d2cb68b2f8661ed3550745967f58ba1", "message": "fix broken config path\n", "proba": 4.078914571437053e-06} {"commit": "0a6302eb9350852213518002da87e3ddaedd1b36", "message": "added handling of unset action\n", "proba": 1.6823560144985095e-07} {"commit": "30eaf15fd5ad78517fb282e643fe23e06f82e071", "message": "Changed some line lengths to be shorter following Pep8\n", "proba": 0.0004683657898567617} {"commit": "e1a5f5aa9a54d24c80aa2275acec2b34bdf72656", "message": "Separated previous method patent_fields to separate unit test cases.\n", "proba": 1.0653639037627727e-07} {"commit": "6225d2afd3286c165c8f9a2df908218ad0487a3b", "message": "Added new JSON-like configuration style\n", "proba": 2.0843022241479048e-07} {"commit": "646b02c3483f8e25cde5e415baf9d5b3ddd170c4", "message": "Implement resin.models.supervisor.get_device_state()\n", "proba": 1.139750452239241e-06} {"commit": "d974200143393074589d7ab32af4dafeae7fbc38", "message": "[py3] Fix incorrect six.iteritems arg\n", "proba": 0.000275475496891886} {"commit": "4ed235a365cdb661886307e95804200226644510", "message": "Updated runserver command to use check(..) instead of validate(..).\n\nvalidate(..) was deprecated in Django 1.7, and has been removed in 1.9.\nThis change is incompatible with Django 1.6.\n", "proba": 1.7144186870154954e-07} {"commit": "59b7f5746da71a780e578c5d14a4e08238fdbcce", "message": "Implement api.Server.reboot()\n", "proba": 2.4941169840531074e-07} {"commit": "c835ee914a143d991b2f9a3e1f6d784e4bc192d6", "message": "Fixed #1234 -- Fixed admin problem with login status getting out of sync with multiple windows/tabs. Thanks, oggie rob\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@2010 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 4.105034747681202e-07} {"commit": "16e03d0410da5b4dbecc8b34fce7c3831d62a0cc", "message": "go mae\n", "proba": 2.1472856133186724e-06} {"commit": "1c3e84d8dcf8675a5c6a3824cb619bd48f04cbf4", "message": "removed indent in form class\n", "proba": 6.095420417295827e-07} {"commit": "715a0a2b1b7d2b391c02dd4b9602234f2ff34226", "message": "GOLD-645: Nit.\n", "proba": 1.6014375603390363e-07} {"commit": "64196a05cb73b51be7aa2f78c752ec2b6d84eac9", "message": "Fix for https://github.com/grangier/python-goose/issues/43 cleaner.py: cnn_html_slideshow key word added in regExRemoveNodes\n", "proba": 4.873073180533538e-07} {"commit": "5468da488ee163555e38173a011439b464259c7f", "message": "Automated merge with ssh://bitbucket.org/olt/mapproxy/\n\n--HG--\nbranch : 0.8.x\n", "proba": 9.30405974486348e-07} {"commit": "152c5d4b6fd7fc2d1ab8095e88b629c930b8058d", "message": "replaced double quotes with single quotes\n", "proba": 1.063227500708308e-05} {"commit": "23a1da7504f0dc95684f9537baae152e70fca6df", "message": "[Batch script] Optimize script for larger data sets\n", "proba": 2.8308662081144575e-07} {"commit": "19c552dfd8d205ef48882c2734f3e9f7716a33f7", "message": "another trial on truncating\n", "proba": 2.86868328203127e-07} {"commit": "0a984f6186a25079010682ae2f12da5e725ff4e8", "message": "ENH: matrix.approximate._minimal_change: case updated where omega is zero\n", "proba": 0.0007923186058178544} {"commit": "6ab7d6dbb13e0ef1f44bf0461f3ffdb06f07b3b2", "message": "Add test demonstrating how a custom launch command spec that could be passed as the script executable.\n", "proba": 1.1482959649811164e-07} {"commit": "8f545aefc59a74e0e5033e01a2559c6f8fb3bbea", "message": "Update test_console for new TatSu error formats\n", "proba": 1.6851275574936153e-07} {"commit": "8e7310e76d023894cfbce0f156ba1e9e44eaaeda", "message": "Minor fixes to ace functionality (#5)\n\n* Fix concatenation error in AssertionError message\r\n* Make ace executable on first use", "proba": 1.328035921233095e-07} {"commit": "738866492ddfa98d75c9f5f399c662d9f958dd9b", "message": "_g_l_y_f: expand glyphs inside `compile` if recalcBBoxes==True; delete empty self.data lingering around\n\nFixes https://github.com/behdad/fonttools/issues/410.\n\nSee also:\nhttps://github.com/behdad/fonttools/commit/ecbe8f2c37021605672af3c9d4f6b0f6e73df592#commitcomment-14464893\n", "proba": 6.397403467417462e-06} {"commit": "9ace7c3b22f0d32bcc47ad5c49091e6cf2db6c78", "message": "Debugger: Fix display of alternative string encoding\n\nThat's a recent regression after the *bridge.py split.\n\nChange-Id: I6488052e45167586bfe455d411985324bf882a15\nReviewed-by: David Schulz \n", "proba": 1.9587432689149864e-06} {"commit": "343539d5691269feb208145eb6d82d9b171901a3", "message": "[GX] Write 'gvar' coordinates to XML\n", "proba": 0.0002182306197937578} {"commit": "25cf5ad126cf509c48389f9349f9250fcc88df2b", "message": "Bumped version\n", "proba": 2.83475912965514e-07} {"commit": "117fa0b757eddb4d32d4d9e8182b30731126d327", "message": "runs now\n", "proba": 1.6253322598913655e-07} {"commit": "930516755a7f39854500e146477906ea5a9e22e1", "message": "Support Go 1.14.3, 1.13.11 (#2504)\n\nFixes #2503", "proba": 1.5638241279702925e-07} {"commit": "ea3e4dea51d4daa7381a19b65553f2526d0b4760", "message": "correct docstring reference.\n\nPiperOrigin-RevId: 405490965\n", "proba": 0.001089357421733439} {"commit": "a2fd8cd7a46b36058f87ffe01baf87ec738dab26", "message": "Add missing colon.\n", "proba": 0.0014254776760935783} {"commit": "ac7d4ce5ac992b7a6c2b50ad50044fc807cab1af", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "adc89fdcb2011f4ff406506d1c8018e67cba966f", "message": "Updated from Brython Server: 3/28/2016 10:02:53 PM", "proba": 1.0988489407282032e-07} {"commit": "13dd72029f5ad4f9979e43aeeeba2bc890697431", "message": "run-operation fixes\n\nMake dbt run-operation actually function at all with the RPC changes\nOn exceptions that occur outside of actual macro execution, catch them and return failure appropriately\n", "proba": 9.650051424614503e-07} {"commit": "5bb72be900037bba7937d0ebe571b854f369d9fa", "message": "Debugger: Print traceback on dumper exception\n\nChange-Id: I652d31b111eab464bf3301968fe273d24f0dad11\nReviewed-by: hjk \n", "proba": 1.5588405233302183e-07} {"commit": "1112495ae59542ad76d1cc72f40ab91e7e562f1c", "message": "Simplify mac_epoch_diff\n", "proba": 0.9999984502792358} {"commit": "f2f17c872419cfc09549c12db2cd229bd74ce65c", "message": "Eliminate documentation duplication\n", "proba": 0.9983887672424316} {"commit": "4a5c17940506baef12e71680a62e1013e66c099d", "message": "Split generated RST for class reference based on the base type\n", "proba": 1.4290802141658787e-07} {"commit": "c69ac39ee650445533d31a4a476f6f3b14cb43ca", "message": "Update roles.py", "proba": 5.840709036419867e-07} {"commit": "5c8a8eb6708fcdbb9e79cf2f88ba3b72a44ce3ba", "message": "Add penguin test data to testdata folder for e2e test setting\n\nPiperOrigin-RevId: 381322214\n", "proba": 3.2050513709691586e-07} {"commit": "da0b1c172445dc11873dded4a3877e9d5c193e2a", "message": "Fixed ordering of Args __repr__ when using keywords\n", "proba": 1.9498306755849626e-06} {"commit": "699712dff85f754ded9ebb8e9d6b9b79f87720de", "message": "Make vmd-readable .gro\n\nVMD Doesn't like two spaces before the number of atoms.\nIt fails with `gromacsplugin) Warning, error reading box, unexpected\nend-of-file reached`.\n", "proba": 1.3209421467763605e-07} {"commit": "9e1d635e2b36a32aa56132387ae7ffe06a1fa20d", "message": " [IMP] improve the mapping selection for file_exchange file fields\n\n", "proba": 1.7365246662848222e-07} {"commit": "878eb4105cdc569abc26f072a91ef392df0f7e5d", "message": "started writing prerun and run execution\n", "proba": 3.133662005438964e-07} {"commit": "c69a80d9afbcbd9e805914e911222c2595b17aa9", "message": "Updated from Brython Server: 3/7/2016 2:29:49 PM", "proba": 1.1322541837444078e-07} {"commit": "22d6f0b73c7e39e259de1317998005178c264475", "message": "Notifications.py: extract normalized pattern when adding notification\n", "proba": 8.871700174495345e-07} {"commit": "a87834bacc9b0142b3b7cce76637bd00c81c442f", "message": "skip test_parallel_connections\n", "proba": 9.571987220624578e-07} {"commit": "2839145c0541533c1b5d1a22f89c0e858bdd064e", "message": "[_h_m_t_x] log glyph names with negative advances upon compile; re-raise struct.error as TTLibError with nicer message\n", "proba": 7.247510893648723e-07} {"commit": "98b35add798bf6b53adc52a5228895804d35123f", "message": "Added comments.\n", "proba": 1.264286169089246e-07} {"commit": "a39dcc1548bea483225635292c5e1f489a3288a2", "message": "support direct line navigation shorthand (submission from RUBY-12579 improved)\n#RUBY-12579 fixed\n", "proba": 1.3537693632770242e-07} {"commit": "69f3fe884a28f63201ded34f886c59431d3c4244", "message": "Remove unreferenced logging_helpers.py\n", "proba": 8.810934559733141e-06} {"commit": "365f424b797864544d34717dedbdcbfcc40d0f43", "message": "small check\n", "proba": 2.0135776424012874e-07} {"commit": "51d2465a3efb00c4beddd0e510b4f359ea99c232", "message": "updating version\n", "proba": 3.740736076451867e-07} {"commit": "90eefbcdd010fda1ed7800100aee8ec72bef9e40", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "fdbaad6392f004329e14e42d90cc493547af0f1b", "message": "add infrastructure to close pool\n", "proba": 1.866903147629273e-07} {"commit": "f11a06e5eb469a464988b0a99866ac5ee4595fdf", "message": "Rename test_iter_does_not_resolve_redirects_during_second_run\n\nThe method is being renamed to test_iter_returns_cached\n", "proba": 0.999845027923584} {"commit": "c1bf74462f7f2c86cabe725be68ff540b2a47bdb", "message": "assert timeout is 3 seconds, not 2\n", "proba": 0.9999994039535522} {"commit": "2a16937c533833977eb37fc65a12c7342375d11f", "message": "Remove up references to actionlib in panel detection\n\n", "proba": 2.0297225944432284e-07} {"commit": "258f1b60413088d32296913fd02c9b941a539afa", "message": "Fix a typo\n", "proba": 0.9999995231628418} {"commit": "353abff2d83528dafb8a235595dc5001f99dbe87", "message": "Config loading: use the new array filtering method (#1663)\n\nUse the same new way as in endpoint, to have a postgres array contains\r\noperator (the @> operator)", "proba": 1.269795006919594e-07} {"commit": "907b198230476b88e0a99caf7eaf07ba007a1935", "message": "Adds STYLE_CLASS_SUGGESTED_ACTION to save button in sidebar\n", "proba": 2.0246149290414905e-07} {"commit": "ec28e25afaf33d70fe52b29f3a8e423dc6a17773", "message": "Modify options when creating file.", "proba": 1.7273873709200416e-07} {"commit": "9b1fd24a75813671361b21517b40246fd90f67ae", "message": "iterate btex-item template\n", "proba": 0.000786100747063756} {"commit": "cf2505667affada8cf258c633337273c32a05e55", "message": "Remove SIGKILL timeout, logging callback\n", "proba": 4.7069835318325204e-07} {"commit": "9838822a59b0820927f341b673be836a62694220", "message": "Fixed logic bug in detecting incorrect characters inside the hostname.\n", "proba": 1.2229121182372182e-07} {"commit": "a1a7d6c46247f313a8a9c2a1878e034324894c4b", "message": "Fix forwarding the user-given params from fetch_url() to open_url()\n", "proba": 0.0010334019316360354} {"commit": "b029eaf9d1d34442322592149a77fcbc17d597c2", "message": "Add filling angle and meniscus calculations to capillary pressure model - this could have a model file of it's own but is intrinsically linked to purcell model for capillary pressure\n", "proba": 1.3214285843332618e-07} {"commit": "942cf4f5a460817918c16ec10d7141310cd4dfc7", "message": "pep8 fixes\n", "proba": 1.7972881494188186e-07} {"commit": "b484b245d67cd8e0ef94206105adfc565464d628", "message": "Updated from Brython Server: 3/30/2016 1:49:04 PM", "proba": 1.1010077116679895e-07} {"commit": "912727a57610e7f4d49dda71fb82a2b4fe9e326d", "message": "Send email when new member is approved\n", "proba": 1.4075524745749135e-07} {"commit": "b23b4cefda2acf417bfecf2135357554dbd32277", "message": "Fix ClassDef\n\nOuch. Broke it in 63b257e677993295ee015e02b92ff438a5e91135.\n", "proba": 6.582598075510759e-07} {"commit": "700bb41598fe83ab82e9d1066d5d859f439a898d", "message": "Insert-fake-data: Fix data generation to avoid duplicates\n\nThis replaces the ProcessPoolExecutor with a ThreadPoolExecutor.\n\nUsing multiprocessing leads to duplicate random data. This was the case\nbecause each subprocess has a new random instance but inherits the seed\nfrom the parent.\n\nThis was always a problem, but due to a change in Faker\n(https://github.com/joke2k/faker/commit/7229f423cb7c41e1bd1332ba96fa73bde348a1a6)\nit's now more of an issue.\n\nThis is a quick fix - until a solution that works with multiprocessing\nis found.\n", "proba": 2.3418806449626572e-06} {"commit": "88a27cc84797144354f42d79ed5be25a5bd13d9d", "message": "Fixed unit test breakage introduced with\n678a07f43d1f2be83848faa19ffba950763c4f7c\n", "proba": 4.021722190827859e-07} {"commit": "7d81f6000e9b29059eafdc7f82598ea78c048119", "message": "Fix linter\n", "proba": 2.4392938939854503e-06} {"commit": "b21f8c8fe83ad0f9f7c0945f91504a6980743b58", "message": "Fix crash in job_section_log\n\nChange-Id: I24868378b45d22b69eeaf00313d802b87cfa7229\n", "proba": 1.689226337475702e-05} {"commit": "c22a0c795e5856279090ff12db435b45c1515100", "message": "increase count time on ip retrieval within ansible utils\n", "proba": 2.3223881839840033e-07} {"commit": "15c4d677af6e2aabf757bc5d0b8df88413581c67", "message": "Fix filename of cuDNN 8.1 for CUDA 10.2 on Windows\n", "proba": 0.0007843056810088456} {"commit": "84f06d79db1fd0e66364dd8d10e9cafd66d39257", "message": "Comments\n", "proba": 4.2012280232484045e-07} {"commit": "2c69d0f0b0bf48852ef6211bd6e1b823723383f2", "message": "Fixes documentation issues\n", "proba": 3.355164039930969e-07} {"commit": "8a5d931cb66dc452e9db6f52ac7fcc371a855608", "message": "Update curate_teleco_performance_data.py", "proba": 4.43659018856124e-07} {"commit": "80e96db1ce2d0c01c779e6e07c24eb0a1fd2f0d0", "message": "Corrected tests for mocking out the urlopen function\n", "proba": 3.981408269737585e-07} {"commit": "ea542282911cbc7b3cf594a20175fbddcbd75a89", "message": "python3: Use absolute import\n", "proba": 4.456698661670089e-05} {"commit": "0f96d58b5a542d17a0ec3cb6389d73f18c2a03bf", "message": "Restore webrtc_base target until r7140 is rolled into Chromium.\n\nIn r7140 the webrtc_base target was renamed to rtc_base. This\nbreaks our FYI bots for rolling WebRTC in Chromium's DEPS.\nBy re-adding a None target named webrtc_base, this transition\nshould be smoother.\n\nTBR=henrikg@webrtc.org,\nTESTED=Passed build/gyp_chromium on a Chromium checkout with src/third_party/webrtc replaced by a mount like this:\ncd /path/to/chromium/src\nsudo mount --bind /path/to/webrtc/trunk/webrtc third_party/webrtc\n\nReview URL: https://webrtc-codereview.appspot.com/23589004\n\ngit-svn-id: 03ae4fbe531b1eefc9d815f31e49022782c42458@7150 4adac7df-926f-26a2-2b94-8c16560cd09d\n", "proba": 2.6209705538349226e-05} {"commit": "74550e04045b792b7ae35905a5c56849155387d9", "message": "LIMS-1941 revisited\n", "proba": 1.546831924770231e-07} {"commit": "94818a3974047f16306e9c5aea5e4665da0f1c58", "message": "servers get synced, then they get run\n", "proba": 3.4227878131787293e-07} {"commit": "ed9b8b27b104b5663a9bb04e6dbea96424db10ab", "message": "Search unicode and multi-line string\n", "proba": 4.7401645133504644e-05} {"commit": "42be3c74727556367fe10f57a69f0c83ddc924ca", "message": "Conflict checker for machine now also checks if there is an actual difference\n\nCURA-1263\n", "proba": 1.4257409475249005e-07} {"commit": "128c54529da80d5f84a0bf8a9bca6e83ed14a342", "message": "Delete unused import\n", "proba": 7.687913807785662e-07} {"commit": "6e57aa64198a14b89ad793d2d8d9b1bc45100b64", "message": "Added follow and unfollow methods.\n", "proba": 1.1412564049351204e-07} {"commit": "5ec7adc64d5846a2af8ffda78102979534bf645c", "message": "Lookup netrc for credentials in open_url\n", "proba": 1.693660038881717e-07} {"commit": "c79d51af32155dc152e3f708075bb7f71f79b368", "message": "removed some debug\n", "proba": 4.2117426346521825e-07} {"commit": "485dfb9ce2ba9d16c18c86cd3d86c0b73ba90435", "message": "Updated from Brython Server: 3/24/2016 2:51:58 PM", "proba": 1.1223784213143517e-07} {"commit": "2601f33b19406b7816726e9c9626e7b06af47297", "message": "src/conf.py: Remove unicode characters from the source code.\n", "proba": 2.3752366473672737e-07} {"commit": "980f39eb6f17eb2469573dba71c4d7ac3d72220d", "message": "Order users by date joined\n", "proba": 1.7365378823797073e-07} {"commit": "dff7702e96d0f87f53d2df658494672cee1b0668", "message": "Update utils.py", "proba": 6.909024250489892e-07} {"commit": "e684bfd943fdbb64e49569fc2c9c76c15237e6b0", "message": "remove outdated nab unit tests\n", "proba": 3.532024663854827e-07} {"commit": "c8c1fe48817852ae6b4f57fea3f0b8b52fdfe053", "message": "Add option -limit to condor_history and condor_q commands (#86)\n\n* Add option -limit to condor_history\r\n\r\n* Limit jobs to query only for htcondor >= v8.3.3.\r\n\r\n* Add option -limit to condor_q\r\n\r\nCo-authored-by: Marcel R. <8028945d5db2869b98cafeb66222a7db17554676@users.noreply.github.com>\r\n", "proba": 1.5497229810534918e-07} {"commit": "ffe61442c0f00bf742ee51b2bbd18f6f6bcc35e4", "message": "l10n_br_fiscal 14.0.7.6.0\n", "proba": 2.0440870684979018e-06} {"commit": "de69aa9c04ea34bd31b5cf17e8e3cfdf17b0b9df", "message": "Naive user/password login w.o. encryption\n", "proba": 0.9999896287918091} {"commit": "b934161699cdb3387319b0d0b7cb2c32009bd5f4", "message": "Moving imports to inline\n", "proba": 1.9579255194912548e-07} {"commit": "dc63443bd54f556fbffea65d5755cd3c72f69d8f", "message": "SCRD-3479 Improve test client\n\nEnhance the test client to perform authentication when necessary, and\nto execute a given playbook. Added command line arguments to enable\ncalling different systems and services without code modifications.\n\nChange-Id: I5f821c6667dc6c6d59350884e67d73ca56ccd05c\n", "proba": 4.466457539820112e-06} {"commit": "77bd24b0efa3c53b4c4cfdf5b6db00db8cf69063", "message": "Replace HOST_CFG with \"host\" as the former has been marked as deprecated.\n\n--\nMOS_MIGRATED_REVID=133618837\n", "proba": 0.0003315785143058747} {"commit": "add9175449145e39c6c44ec15b1981ac2056ffdc", "message": "Removed an unneeded test\n", "proba": 1.386814687975857e-06} {"commit": "d22b52627d7cc9c4bb475becb35a43ec6035f061", "message": "Typecast the input value and then validate\n", "proba": 6.22972379460407e-07} {"commit": "1c28f2fae22528aba4195bfd231985614b48f123", "message": "[FIX] kwargs is always None, fiscal position rule never applied\n", "proba": 2.776234396151267e-05} {"commit": "c22470034f533d953f0a1d15ad813a307687e246", "message": "opt mysql pool\n", "proba": 3.455032526744617e-07} {"commit": "7f28bcacaaf7feec76699e6fa99b84b916951bcc", "message": "added defined/undefined tests\n", "proba": 3.64945350384005e-07} {"commit": "809ef107458cff248995c5cd4bd3851e3538ea4e", "message": "Handle exotically encode file names in git repositories\n", "proba": 1.401440840709256e-06} {"commit": "7f02d1f2b23bbf27e99d87ef23c491823875c3d1", "message": "fix bin none subprocess.TimeoutExpired\n", "proba": 1.0184633083554218e-06} {"commit": "fd33f9e0fe3859e1376a8e2d83c64dbb6e3f649e", "message": "refactor test for set bit\n", "proba": 9.988771125790663e-07} {"commit": "2f89aa1fcf8397167c1172fa5687c1e8f18a06a2", "message": "#coding_style\n", "proba": 1.8776601791614667e-05} {"commit": "9517281c3fe7a0d4820a41e7fdf185c12f8bf415", "message": "addition of conform_srids function to spatialtoolz\n", "proba": 2.682473336790281e-07} {"commit": "939cc5adba6f5a95aac317134eb841838a0bff3f", "message": "Tweak inheritance\n", "proba": 6.806600936215546e-07} {"commit": "a112391305fc3c4c1ecf930d84aba700e16ba46a", "message": "Added test for main_placement with reverse creation order\n", "proba": 1.9106978754734882e-07} {"commit": "45e9ddce96b4fdadca63a50bf2808c7f98520d99", "message": "print query on error\n", "proba": 0.00044557484216056764} {"commit": "8928d1987dd05def51b4d7abddbbd3658b300adb", "message": "Add handler for django.request logger to get reports of 5xx errors\n", "proba": 1.8753542008198565e-07} {"commit": "4865c81851cb044dfa7c5d79eb510e027cff51fa", "message": "Fixed grouping of part SVG skin so rotation of parts doesn't crash netlistsvg.\n", "proba": 1.0499518765527682e-07} {"commit": "1a417f83847030d47ac3eb596f61145b9768bc85", "message": "bump the schema version for samples", "proba": 2.0540949208225356e-07} {"commit": "a788269aa816c555d28e64778299b7f3d4c34f20", "message": "optionally skip builds (#12281)\n\n", "proba": 1.1220766538144744e-07} {"commit": "2125064f1faa7ffcf5fc1fd7753c69d5fb7ccf52", "message": "towards seaborn plotting\n", "proba": 1.6070309527549398e-07} {"commit": "c282d7f3dee47d1af3b6197c9e0001b9325a9750", "message": "updated form handling\n", "proba": 2.2396555721115874e-07} {"commit": "d590307b0d59ac7163016197e3de0e8bced377d2", "message": "Fix form typo\n", "proba": 0.00019062060164287686} {"commit": "aa7055a64817944dd6102b7650db2897b98a79d1", "message": "Update GoProCamera.py\n\nmodified infoCamera function to return parsed data \r\n#an error is raised in take_photo if no value is returned", "proba": 1.9437730713889323e-07} {"commit": "44c6d592e656160db6f4ad9f268a492781d097a1", "message": "Corrected LANGID for 'es'.\n\n[LANG_SPANISH, SUBLANG_SPANISH_MODERN] corresponds to the LANGID 0x0c0a.\n\nOriginal by alexeypa@chromium.org, patch from issue 18132016.\n\nReview URL: https://codereview.chromium.org/18892002", "proba": 5.810009042761521e-07} {"commit": "effafd07978a03028af3044c4c85a7f40215c2a0", "message": "Fixed a bug\n", "proba": 7.161374355746375e-07} {"commit": "fe71f2716fb11d2a028538f085243f6200ad59f2", "message": "Comment\n", "proba": 3.663055849756347e-07} {"commit": "2ef43a8dcedb9cb48761251990f186ae792ea2c2", "message": "Adding error handling\n", "proba": 8.66830362156179e-07} {"commit": "3045d286ebce81b07ea1ef1a51d68602a41cc836", "message": "create_instance: return the new instance\n\nSigned-off-by: Bas Westerbaan <1d31d94f30d40df7951505d1034e1e923d02ec49@westerbaan.name>\n", "proba": 0.0013534828322008252} {"commit": "a1826e5507a083cdcb906c411e97031bb5546eae", "message": "Remove debug print", "proba": 3.4594083899719408e-06} {"commit": "8a5f459836797051f7f9d8f831207295362c1f6c", "message": "Start of Project link in ServiceBase\n", "proba": 1.289085531652745e-07} {"commit": "39236f62f8e489d5c4590a7bdb131061dddf4d2a", "message": "Nest check for \"codepages is None\"\n\nSo we don't test for it twice unless needed.\n", "proba": 1.1172118519198193e-07} {"commit": "bda1663bafd0090be163eb1426e65a4358ac9695", "message": "Remove cHostPort.\n", "proba": 1.626889201133963e-07} {"commit": "bb0d9d70f349198f6d23214a0fa5e3dcd9697ec1", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "03e66d56fb04f5c38b1f10809cfda2a5b4dc23a0", "message": "Test for swig, too, which is used to build from the .i file.\n\n\n", "proba": 1.0148957585442986e-07} {"commit": "04726d55d6412f88fb97a669270d44839bb4f2d3", "message": "Avoid ERROR for nodes with no parents when testing database.\n\nIf there was a node without any parent in the tree\nthen it would cause a failure AND an error. Now it\nis only reported once, by kinetics_checkGroupsFoundInTree.\n", "proba": 1.254092154567843e-07} {"commit": "55e67e6c2d230530726c59c11615cbf4e16786fb", "message": "Fix RedirectView import\n", "proba": 4.964742856827797e-07} {"commit": "f99775122436a7fbc0288bc99c83faed59187443", "message": "add add_label option\n", "proba": 4.7664711928518955e-06} {"commit": "735f700d2cbec2a52e38e69b9a3789f6721ed842", "message": "Lots of stuff\n\nwau 2nd commit", "proba": 1.0462096611263405e-07} {"commit": "c7476c1e50ec9d3e9a26ab651bd55d9561d8d4e5", "message": "Added sampled softmax loss\n", "proba": 1.4563937611455913e-07} {"commit": "ffb2f3858132ff0da6d247f0be3c156d0c92d378", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "ed60c4bb3da13627a975ff2db771d2005cbc4990", "message": "Upgrade metrics-core to 4.1.11\n\nThis upgrade has only these dependency updates and improvement [1], thus\nshould be no impact. This is a maintenance upgrade.\n\n[1] https://github.com/dropwizard/metrics/releases/tag/v4.1.11\n\nChange-Id: I8d89c3ea3bc555a8b0fc5055c55f42047c7608b5\n", "proba": 1.5150792023632675e-05} {"commit": "4b136cb5e0d07b6689a0d3b662f2b2eb0db65498", "message": "tag rename - fix for rename around tag count on resource (#924)\n\n", "proba": 1.0324856702936813e-07} {"commit": "dcf2fbd6ed2ca58a899969f7ee17c8d3e050beca", "message": "added example with cProfile\n", "proba": 1.8995532968801854e-07} {"commit": "d9b10f7dcb6fbccd3931ddd02cece719297b04a4", "message": "Added a new unit test for dealing with redundant restrained residue names (currently fails, as expected).\n", "proba": 1.0174968423370956e-07} {"commit": "b1f8038abfb6203d4bf08cefff56cf5c81b2c87f", "message": "Minor fixed in test_capture\n\nThis test failed only in py34. We don't import logging directly,\nbut it seems that one of the standard modules that are now\nglobally imported started including this on py34.\n\nJust removed the assert as it doesn't seem central to the\ntest's objective.\n", "proba": 1.1060086535508162e-07} {"commit": "681615d640224ea593afda8c2e23deb58c3fd990", "message": "Commit for test server\n", "proba": 3.089857898430637e-07} {"commit": "cdda5bd8745a2b7a0ae67bd9e14024a2b7e18370", "message": "Only set _FILE_OFFSET_BITS on linux\n", "proba": 5.346381612980622e-07} {"commit": "10801b178792100c513a87c090c527f5f64aa72e", "message": "version\n", "proba": 1.0191783985646907e-06} {"commit": "67b7d4e90d4e021022d9da26b1231b913e94d2c6", "message": "Fix operation on arm64\n\nMust use native reads/writes for registers to avoid struct using\nsingle-byte operations. I got \"lucky\" on armhf that struct realized\n assemble(blah, D)\n", "proba": 0.060894809663295746} {"commit": "593522cbebea4710d80c674f7b801240de70ae17", "message": "composition\n", "proba": 9.441515089747554e-07} {"commit": "018eabbcc9dbec17db2eb4702bf50071b4981055", "message": "added some more output", "proba": 3.544361106833094e-07} {"commit": "7cfe4613c4f580d1eda6115adc4b0815f99b7437", "message": "Use updated blocking syntax for Slate exprs\n", "proba": 1.9139186235861416e-07} {"commit": "0a5b0f39e3585d642ee5d960cc7cea8b196758cc", "message": "added the get_object_names, TASK-791\n", "proba": 2.0546822270262055e-05} {"commit": "f6f3d3bdf1804a2e78c4a2817175c28d824ec076", "message": "Add a test for an improperly formatted range.\n\nAdds tests for range headers that are not properly formatted (i.e. are\nnot of the form bytes=0-1024).\n", "proba": 1.599497494453317e-07} {"commit": "8ae6d347aedf837da50b81d429be0e54faab40fe", "message": "corrected variable name, TASK-791\n", "proba": 0.00020451724412851036} {"commit": "90678692ec85ec90d454b1a3b255dae834bb24ba", "message": "trim space\n", "proba": 5.847898592037382e-07} {"commit": "52019a5566097f144eaaded1ba3ff34fd0a413be", "message": "Run proxy from source\n", "proba": 2.694808927117265e-07} {"commit": "3160ab66db8bb0321ff2fd4a77de84526e8beefa", "message": "3dtk: set boost constraint (#27806)\n\n", "proba": 1.1980174008385802e-07} {"commit": "3b1571ace6c27a1f8995e42576e1d779848d110f", "message": "add tests for ignore public acls\n\nSigned-off-by: Abhishek Lekshmanan <0731fdeb307910eeaae4e58897b7baaba45e054b@suse.com>\n", "proba": 1.0889446855344431e-07} {"commit": "6654399a4bf7d6da0435a469896a9372bd1a2ff6", "message": "Mostly small changes.\n\n- Fixed broken HTML in edit form that swallowed
tags\n- Removed \"another one\" link in roulette, replaced with \"use Reload\" message\n- show() now has edit=1 by default; changed all calls\n- Display last-changed date, author, email when present and edit=1\n- Added back pointers at bottom\n- Added a copy of the bootstrap script at the end of the file\n", "proba": 5.864474701411382e-07} {"commit": "bada158b71cc9e999a13c901283c1a66ee02fd24", "message": "moving sparql to its own package\n", "proba": 1.6306482564232283e-07} {"commit": "acc29814f1921d42815479057c5129e3fc2cef7b", "message": "Setting the proper start and end date\n", "proba": 0.0034965979866683483} {"commit": "e61fb96e9656ea6b6ed74527475d173602ef7c48", "message": "acts: added v3.00.0 (#20402)\n\n", "proba": 1.1566235968984984e-07} {"commit": "4c5ebbabcf54b1f23459da7ddf85adf5e5de22d8", "message": "Update add-lore.py to serve legacy lorebot needs\n", "proba": 1.2799641524452454e-07} {"commit": "01217dda81c854a48eb842931d8a7c7d8c0d9833", "message": "Fixeds label issues\n", "proba": 3.534397023940983e-07} {"commit": "ac7dce4631dd073c68a8770a91bbb7dfb99ad96c", "message": "Fixing broken set_extra_vars method after fixing unit tests (v2)\n", "proba": 1.2964383699909376e-07} {"commit": "9693d17a3fb580389895029020b8a14fa2d6c4e3", "message": "Test \"len(payload) > 0\" instead of just \"payload\" to silence a warning\nfrom lxml.\n", "proba": 1.0849579012983668e-07} {"commit": "82595635ac789e121b1a6a058660a3baa66bc645", "message": "Fixed wrong passlib usage\n", "proba": 2.1211286593825207e-07} {"commit": "6dade79409e022ba417b1824c7f334e54e314320", "message": "Add a command-line arg and envvar for custom templates.\n", "proba": 1.1476522132625178e-07} {"commit": "4f51596a9e7ec8093eb1f395efbe80dacb5a0c83", "message": "addresses changes in table structure, various small issues\n", "proba": 2.169614390368224e-07} {"commit": "8df2df3794b348912b8eaeeca3d2814db4359166", "message": "fixed (?) mpi 4 py thing?\n", "proba": 1.0533980088212047e-07} {"commit": "b2692defae25cd3912861917a5a70e42558be851", "message": "Update saleor/graphql/account/mutations.py\n\nCo-Authored-By: maarcingebala <9244a620f9b8102ecd61bdd7cc1baea35d70e156@users.noreply.github.com>", "proba": 1.216955354266247e-07} {"commit": "5f21305d1736322064aa9f5e503965b102a6c086", "message": "Add Ending class\n", "proba": 1.0703968655434437e-05} {"commit": "6ed282bb2da04790e6e399faad4d2ba8dfc214c4", "message": "ccls: add v0.20210330 (#28111)\n\n", "proba": 1.294965414899707e-07} {"commit": "89a03ea74265378a2a09f3b0bd2914c7801e8c26", "message": "Redirect to the edit page when creating a new slideshow (close #7)\n", "proba": 1.1517858666820757e-07} {"commit": "b123e6cbb731b74c8961b483de094847696746de", "message": "Small line to shutup pyflakes\n", "proba": 1.681884356230512e-07} {"commit": "d91f21a487b72529a584b8958bffaed864dd67d7", "message": "chore: next dev version\n", "proba": 9.072329703485593e-06} {"commit": "308c7195b3546eedd89a18cc1199c350d342e448", "message": "Add placeholder for aegea limits\n", "proba": 2.0307875558955857e-07} {"commit": "b44f6e50234781e200af64c77ad9dafa941d88f8", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "f230e69780823f4ceb48a68015cd5bd4af94cba0", "message": "Add in some settings for email\n", "proba": 1.114529595724889e-06} {"commit": "dbdf925b5ab966a5c9999474eede494948f46ff1", "message": "updating the abc code\n", "proba": 0.9999994039535522} {"commit": "9ea9a4063a441e7a07043aabb24fadcf036359a9", "message": "fftw package: improved libs implementation (#7212)\n\nAdd query parameters to retrieve libraries based on precision (e.g.\r\ndouble or quad) and mpi/openmp support.", "proba": 1.0254986904101315e-07} {"commit": "d976f47df57530298901365a97f50db40b286c7a", "message": "Fix test\n", "proba": 4.372618604975287e-06} {"commit": "1588f2e1e4d516bb632084ffe9f0446b133d0fb8", "message": "output to file\n", "proba": 2.0086956737941364e-06} {"commit": "5e07b1b56dad1ddf864019f0c52b2fc7d4c121cc", "message": "aes_base: move evry 'tool' function into this file\n", "proba": 1.1608719887590269e-06} {"commit": "8ed20bd6c5f688c2ee9615902843674718d7952a", "message": "Fixed\n", "proba": 1.2058339962095488e-06} {"commit": "4d3399c6c41c0615fd45182deb7bbae621d8193c", "message": "Couple more typos, assert not asset.\n", "proba": 7.488400115107652e-06} {"commit": "0a486d986b2253d553c8c9870333049105cc7e37", "message": "Re-added jobOptions to Pipeline.submit\n", "proba": 4.419002550548612e-07} {"commit": "ef28d2f53ec77dbb1850449c38a4ae94cf9f311f", "message": "Moved the decode function to the Packet object.\n", "proba": 2.6910851147476933e-07} {"commit": "60909f7250d0bf256a2f9d0e050f377cf24affc5", "message": "fish: adding version 3.3.1 (#26488)\n\n* fish: adding version 3.3.1\r\n\r\n* adding maintainer\r\n\r\n* Update var/spack/repos/builtin/packages/fish/package.py\r\n\r\nCo-authored-by: Adam J. Stewart <023e75a89b1f5ca1e59909f8756c185885836ad9@gmail.com>\r\n\r\nCo-authored-by: Adam J. Stewart <023e75a89b1f5ca1e59909f8756c185885836ad9@gmail.com>", "proba": 2.2513351893849176e-07} {"commit": "e52abad24566791adf32adcd534207e808b31c1e", "message": "not used here anymore", "proba": 1.2424935391663894e-07} {"commit": "e4fff83666ee6e3ce63145f84a550f6fb361096d", "message": "Fix Enum hack situation\n\nClose https://github.com/adi-foundry/nycodex/issues/12\n", "proba": 1.3253880752017722e-05} {"commit": "b84eb5f015a53a84975955a2b239e577d539f338", "message": "Fix for q-dtype\n", "proba": 2.3711679659754736e-06} {"commit": "46b35f0453249b57828f8e115c970def25a695d8", "message": "messages are now also logged from show command\n", "proba": 1.31790088175876e-07} {"commit": "6ac28c1daa0173ae5baa66c9cb020e9c673973ff", "message": "Add info for lftp@4.8.1 (#5452)\n\nLightly tested on CentOS 7.", "proba": 9.870065298400732e-08} {"commit": "60674b3e7418d89f89e64c264e72d94dffe1d6c7", "message": "Shorten test suite runtime.\nThese 5 tests took about 15 seconds each. With this commit they take about 2.5 seconds each, cutting a minute off of the total time to run the test suite.\n", "proba": 5.186347607377684e-06} {"commit": "12a7b99cf7c7aa6a21c40e8279c3334886ab55ca", "message": "fix: merge b3cfa62 went wrong, no slicing happened (CURA-1558)\n", "proba": 1.1349655437697947e-07} {"commit": "e4ce4e5c2c3ae83d24965ed95b3d6cf6aa94b9cf", "message": "llvm: Adjust default supported targets\n\nThe default install for llvm should just be the common typical case, i.e.\nsupport for local host and cpu architectures. Enablingsupport for the wide\narray of auxiliary architectures should be explicit rather than implicit.\n", "proba": 1.808343085940578e-06} {"commit": "3fb2969a365a017a0aa3b65c767cc66552ac30bc", "message": "Fixed a compilation error and some style warnings.\n", "proba": 1.0449990384131524e-07} {"commit": "e2be8a486c9d13f98d9f14ae7b0cddf8225cf1b3", "message": "[test] Add boolswitch test\n", "proba": 1.150375737779541e-06} {"commit": "59faede78ad5d763c7c9fa1763e3e7cac67c1ca6", "message": "Move Circle inside CxDeriv\n", "proba": 2.470604556492617e-07} {"commit": "2df7947f02fd39e05bf18a89f904e273d17c63ca", "message": "lmdb: add v0.9.29 (#23606)\n\n", "proba": 1.4177845741869533e-07} {"commit": "2216c8bda52ca3dbf280f6d9ef0eefbe19555925", "message": "Minor syntax change\n", "proba": 8.013934689188318e-07} {"commit": "418d9f07dcda2e0c141be0bca4595447fa09c280", "message": "mesa: Add 19.0.4 (#11415)\n\n", "proba": 1.5095318985913764e-06} {"commit": "7abc503d6aa492f2340ab0b98d1f66892180ba19", "message": "Fix some test error\n", "proba": 0.002705152379348874} {"commit": "c5185b18cc99f6222da993cedb54ef3a53824d24", "message": "pmix package: add new versions (#9532)\n\n", "proba": 1.1107356812090075e-07} {"commit": "6043f28a8b9cc017f7086a9a61b0bfb4ce9bbfa4", "message": "python 3 has replaced xrange with range. hence for cross python compatibility range is used\n", "proba": 2.2336318750149076e-07} {"commit": "d5438347980b4ed3f4a798b8c1019b87691f28bd", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "8ce5718922b4299e720924dbab61e18405d381bb", "message": "qgis: Updates for proj@6 (#16172)\n\n* qgis\r\n\r\n* Update package.py\r\n\r\nQGIS 3.12.1 can use PROJ >= 4.9.3. Therefore both version restrictions on PROJ were incorrect.\r\nhttps://github.com/qgis/QGIS/blob/final-3_12_1/INSTALL\r\n\r\n* Update package.py\r\n\r\nAdd explanation to (hopefully temporary) removal of hdf5 dependency.\r\n\r\n* Remove overly restrictive GRASS version number.\r\n\r\n* flake8\r\n\r\nCo-authored-by: Elizabeth Fischer <8c58f7e5933bdbea0dd058a0258d4eb44863f7b2@alaska.edu>", "proba": 8.746802109271812e-07} {"commit": "1474d393ef4edd47f87742cb6128266cf047998b", "message": "refactor: move expected COMMITS_TREE to global\n", "proba": 0.004173570778220892} {"commit": "4c5151327f9398c5c933f5776aae509335c9b967", "message": "Rocm 3.7 rccl (#18587)\n\n* ROCm 3.5 miopen recipe\r\n\r\n* fixing flake8 issues\r\n\r\n* cmake variant fix\r\n\r\n* min support fix\r\n\r\n* variant possible values\r\n\r\n* ROCm 3.7 RCCL changes", "proba": 1.3900850603931758e-07} {"commit": "3b4532244bb36443bcad835925ca4f666663ed70", "message": "Fix and clarify test_insert_large_batch.\n\nUsing separate collections avoids an apparent race in mongos 2.6's\ndropCollection, as well as clarifying the test. Further clarify it by\nexplicitly naming and specifying batches and the ids of documents within them.\n", "proba": 1.0490310842214967e-07} {"commit": "a2395b615252ad471e4e5292fc95e071d9a8382b", "message": "CR changes done\n", "proba": 3.038822455891932e-07} {"commit": "c280ef0d40969904ee2e848bf8eee419721e938a", "message": "fixed unit tests\n", "proba": 4.1366470782122633e-07} {"commit": "fa42d8fdfb57fcc298088b27467fb49d6f98a008", "message": "Improve no result response\n", "proba": 3.449127325438894e-05} {"commit": "e47e972cf2b5d73fe26fcd2aec3753ccb43ab52f", "message": "zlib: style changes to check if set of changed files is computed correctly\n", "proba": 2.883931813357776e-07} {"commit": "8a5b89b35353467610d0e16926746b6335d248e6", "message": "Squashed 'OneCommand/' changes from 1ea652f..b4efb1f\n\nb4efb1f slaps self on forehead, hard\n\ngit-subtree-dir: OneCommand\ngit-subtree-split: b4efb1fa8e5fe165258f52c0877eb3f2eb2a46c4\n", "proba": 0.000172208936419338} {"commit": "5f360344e5d9edcb46b68f2c9c12d9f030ca9021", "message": "\"assertNotIn\" unittest method not available in older Python versions\n", "proba": 2.756148091975774e-07} {"commit": "2fbe13a24fb404b4663f3d2b068480170b25254e", "message": "Antoher missing if\n", "proba": 9.452515428165498e-07} {"commit": "ed367cf1b791972219954d1add882dac34226431", "message": "Fixing mangled help text\n\nChange-Id: Idf17079794450d621973250af6bfb5ebbcbdc917\n", "proba": 0.9995836615562439} {"commit": "de631383d2597b248ede89a757b8cf4a4c3bb860", "message": "test save_entry_slice\n", "proba": 5.564678303926485e-06} {"commit": "10ef5b0492d39ecba9bd7802c6e965692e25826a", "message": "\u3044\u3044\u611f\u3058\u306e\u30c7\u30e2\u30c7\u30fc\u30bf\n", "proba": 4.891165872322745e-07} {"commit": "ba9082e0dd3c9f9d4030a0aa8c85956793ad5bc1", "message": "Improved documentation\n", "proba": 2.5693947236504755e-07} {"commit": "b7decad0857c2c15ae62c8a00b79556020b559c7", "message": "Remove an unused import\n", "proba": 1.4117078990238952e-06} {"commit": "b9c2a79d5126187d14ab6142ff883594e78b91aa", "message": "\n\n:ok_hand: fix typos", "proba": 0.9999648332595825} {"commit": "676440a464d695146361eb1bdb684e121bf41a42", "message": "fix simple_date parsing\n", "proba": 0.0003454372053965926} {"commit": "6ad0004d37b9c96b1cb472594ea09837ee2042d3", "message": "Extended ModuleList tests\n", "proba": 2.0550942281261086e-07} {"commit": "0a1a8a5bcea081b2b3f86f8d7f4ee39e261efad2", "message": "Add license to kzip writer\n", "proba": 1.8843807936264056e-07} {"commit": "4be27398548e0ed4c6e71336ff08c4fc88492f2c", "message": "\u0417\u0430\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u0434\u043b\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u043a\u043e\u043c\u0430\u043d\u0434 \u0434\u043b\u044f \u0431\u043e\u0442\u0430", "proba": 2.1449184828270518e-07} {"commit": "b3526d2818b423b6fd6e49ca157781794812ec4b", "message": "Remove unused fixture\n", "proba": 7.791320513206301e-07} {"commit": "4b7327aa8547f0333290ec717695aaca74272458", "message": "Added carriage returns before printing plugin\n", "proba": 2.6947319042847084e-07} {"commit": "c9f634ccea4b034907bb403a683945ace373c97d", "message": "Add unary + - support for atoms\n", "proba": 0.0010744142346084118} {"commit": "97ab897ce8995662517d45fe417f63e1a1dcc73b", "message": "Add more tests.\n", "proba": 1.5513022333379922e-07} {"commit": "f6c6ff376974f604b2b4a7b62ad28fd56a264c55", "message": "Add empty testing scaffolding.\n", "proba": 1.6530621849142335e-07} {"commit": "e27d5079faaad1d320c01870e2f5fcc0160fc2f9", "message": "Always use wrapper script\n", "proba": 3.141028344089136e-07} {"commit": "d8993559ab868e7fcc8929dd8fe8c85879371c54", "message": "convert printed warning to a proper python warning\n", "proba": 0.9999990463256836} {"commit": "8f28511344ccf78d4888936b81dbade42dd71dcd", "message": "test for stats page\n", "proba": 3.425997761041799e-07} {"commit": "a3b8c093b5b77c6f5b2bd76c8ed6e5445659df8c", "message": "Testing dogstastd with more points, when comparing counters & histograms.\n", "proba": 9.884930562975569e-08} {"commit": "e3fb243782f97adacfde60340a75f7f4a4bde3f7", "message": "parentwork force test doesn't work\n", "proba": 1.032790464705613e-06} {"commit": "63b21898983866138a1b6757734d9b142090e0c9", "message": "more tests for exclusion\n", "proba": 1.2476040467390703e-07} {"commit": "cd193f78d392143ea9421da0f7e55ca8b75b8a0d", "message": "updated README and fixed pep8\n", "proba": 1.3475376192673139e-07} {"commit": "d4fe965994f6d91638b6742508df12d75e4d864d", "message": "Set username and email before running git in test cases.\n", "proba": 1.1521770204581117e-07} {"commit": "d9cdb67d89e4db4cff632b4df455b1f994118022", "message": "Add test for GoogLeNet's loss1 and loss2\n", "proba": 0.00010912476136581972} {"commit": "ef48eab2bdfe57cffd631cf61acb561155902b00", "message": "Comply with latest flake8 version\n", "proba": 1.24855262129131e-07} {"commit": "b0581aef251a3bc03e1a49e89c3b214114e20828", "message": "add unit test\n", "proba": 7.164092608036299e-07} {"commit": "2778c4cdd705e195f2355cb09d41d5740080affd", "message": "Cleanup test_multipart.py\n", "proba": 1.353889729216462e-06} {"commit": "befd17c6d0c176da3b5bec753c0ac14c32966875", "message": "corrections via make pep8\n", "proba": 1.6936407121193042e-07} {"commit": "4571e88025d27752d3b3546fef2a67b61f479ec9", "message": "better error handling\n", "proba": 1.4043895362192416e-06} {"commit": "9027e1a20fd06df5c26edcec1893ef0814ec938a", "message": "[gi-tests] add test for PyGObject->PyObject TreeModel storage\n\n * make sure we can store a custom GObject as a PyObject inside of a TreeModel\n", "proba": 1.2706526320016565e-07} {"commit": "57eac954d141256b6941f00406465d329a926311", "message": "fixed string and int concatenation to string\n", "proba": 5.609443178400397e-05} {"commit": "a82a748be7ff2b877f082a9172e459f98949c933", "message": "Eval c-code. tests\n\nSigned-off-by: Nathaniel Starkman \n", "proba": 1.4434760942094726e-07} {"commit": "0a438f1d10e9e0e31e5c430f921b618b8a625154", "message": "Fix line endings on Windows\n", "proba": 7.1049747930374e-05} {"commit": "f13982144a2a0710af8e082dd01d73f036f026fd", "message": "Use clean_system fixture on pypackage test\n", "proba": 2.1218387757926394e-07} {"commit": "2cf636bc63a91ef5b9f698449d3420469b6bf081", "message": "Removes pwd dependency, uses getpass instead\n", "proba": 1.3658087993917434e-07} {"commit": "127f9927f4483c6697a27177244bbf1c7109bb70", "message": "Fixed bug where Lambda matrix elements in boundary cases were being filled in within the angle loop.\n\nLambda elements only need to be filled in once, inside the depth loop but outside the angle loop.\n", "proba": 1.0872158640040652e-07} {"commit": "f3067a7fabdd0edb5bc5f48cfdadd2850866c189", "message": "Remove unnecessary APIRequestFactory get from tests.\n", "proba": 1.1318741144350497e-07} {"commit": "75e6ef142c6e9c9a31293ce490916a9e61ab4425", "message": "0.2.5\n", "proba": 0.0011459187371656299} {"commit": "63c94ec391125e9b4028c337afb480c855e2799d", "message": "Added comment.\n\n\ngit-svn-id: 033d166fe8e629f6cbcd3c0e2b9ad0cffc79b88b@17 3a63a0ee-37fe-0310-a504-e92b6e0a3ba7\n", "proba": 8.17119314433512e-07} {"commit": "73399b3079f7ef5c189cffbbc0af82731f64274d", "message": "facepalm\n", "proba": 6.856408435851336e-05} {"commit": "c661852108cbd21cd1dee26be307228d44bdea5d", "message": "simpler assertion\n", "proba": 0.004505413118749857} {"commit": "8513494428650ac441a8722b881b08c7cb945c59", "message": "Remove old testing code\n", "proba": 3.617100082919933e-05} {"commit": "f4474207d0065e357ae675d1ee85b9e2b91cf827", "message": "change UI\n", "proba": 1.2184956403871183e-06} {"commit": "49f985364edae136c3b67964ba3addd960967288", "message": "sos: add virsh plugin while collecting sosreport from host\n\nThe virsh plugin exist in sosreport from 3.3. The plugin collects\nuseful information about libvirt domains. Including this plugin\nwhile collecting sosreport from the host.\n\nChange-Id: I2d6d47aa32606caeb5f8ef3c5245cf3bde7eb140\nSigned-off-by: Nijin Ashok <4cf330ce0daa001637ef6aad9237485745da0d29@redhat.com>\n", "proba": 1.3404923038251582e-06} {"commit": "db6a0bd838834e4da412f7db82eb2fb55e324c17", "message": "Minor syntax fix.\n", "proba": 1.6339483011051925e-07} {"commit": "ddca168d36e3b0f7cdbf3fc1163e26d8207af13e", "message": "never decode secret before hashing\n", "proba": 2.7504734134708997e-06} {"commit": "9491efa015102ef0fb9e9d8331ed9de7066ff19c", "message": "--release and --debug are incompatible flags\n", "proba": 1.4969792800911819e-06} {"commit": "6ae1eca8d1eefd3838b245d673e103066533811f", "message": "UX: remove alarming warning\n\nAfter upgrading from 3.1 users was warned about a legacy config\nstill present in conf files if the user forgot to update .conf file\nwith the one provided by the package as .rpmnew.\nThe tool is able to use the legacy configuration so no need to\nalarm the user about that.\n\nChange-Id: I20a8ab68463e96acf5ca864c28b1d6662b734123\nBug-Url: https://bugzilla.redhat.com/1029234\nSigned-off-by: Sandro Bonazzola \n", "proba": 0.00011341290519339964} {"commit": "ca9fd5a7a9eeb46eedab100581c90e384d2f4360", "message": "python3: Fix some bytes/str issues in test_shortcuts\n", "proba": 5.927477559453109e-06} {"commit": "55837ef9a59ca755f0d9fb661c8ec0ddfb111e0d", "message": "\nHandle ExecuteTestRequest timeouts.\n\nR=mad\nDELTA=12 (10 added, 0 deleted, 2 changed)\n\n\nRevision created by MOE tool push_codebase.\nMOE_MIGRATION=6323\n\n\ngit-svn-id: 6f200aab33a7b6704a2e38529f84eef50a04cb11@342 722f4569-f0a1-f026-5e06-c3648ed4afc7\n", "proba": 3.4742070056381635e-06} {"commit": "55bc60570fec684905132c4899c1830cbfed428c", "message": "add the missing setup for logging\n", "proba": 8.535948836652096e-07} {"commit": "ea5abddf79525dc67b7088498a6a0c7457bd4eed", "message": "refactor getrecords and getrecordbyid record parsing\n", "proba": 1.6410458556492813e-06} {"commit": "bc42aa875c257a0ab239602482d467d632a9e6cb", "message": "Update test_subreddit.py\n\nPEP formatting.", "proba": 1.393647721670277e-07} {"commit": "1d8bd7f984b954ae3002ed2ca8dc4e25c4b111a4", "message": "card_bot: quieting log message\n", "proba": 3.4596425848576473e-06} {"commit": "e899b76bd6a99095c77b4649327793a6fcbeacb3", "message": "packaging\n", "proba": 1.7934321476786863e-06} {"commit": "e185a50028dc566881005a2ad2d750dec00079a5", "message": "ensure qtype is None for CSW Transactions (#354)", "proba": 2.59287789958762e-05} {"commit": "e71eb2ee02098977a420bdbf32029af9b0c43182", "message": "Added comments.\n", "proba": 1.264286169089246e-07} {"commit": "be941514b8a33d79fd795fa5c49a60982c032bb0", "message": "rename methods\n", "proba": 3.245651532779448e-05} {"commit": "17c8abcb70c2f1fa907b3605826eab0e658a13c5", "message": "mono file\n", "proba": 1.1381646345398622e-06} {"commit": "671d7b60d77551c2a13b3fa0f88a557f5c369672", "message": "The web coverage reader was being created twice by the WebCoverageService factory function - this was not necessary. \n", "proba": 1.0514649062542958e-07} {"commit": "d9031ddc15247001c912ca37302a8104fa2051a4", "message": "added docstrings to main\n", "proba": 1.886921836558031e-07} {"commit": "9f45d93974da0a1e5e9017e3331b32e296510e1b", "message": "test for WMS extent element text (#20)\n\ngit-svn-id: 255fdcdd65affe1d42edbf9640002b17f07b9540@1807 b426a367-1105-0410-b9ff-cdf4ab011145\n", "proba": 1.930447524500778e-06} {"commit": "d5e093fbb3dced1af02e7ca3cdebb05c532de0d8", "message": "Updated tests.\n", "proba": 1.451368945026843e-07} {"commit": "97e6047197150d60b070fecd25eb34d52b6f428b", "message": "added emoji binning as output\n", "proba": 6.990818746999139e-06} {"commit": "b9c02c7c03d963553ab0f7665a7ab8d522af0626", "message": "Increased the timeout for Windows installatiosn based on kernel 6\n\nThe old 6000 timeout is not enough for Windows 8. In the same\ntesting system, Windows 7 & 2012 were insalled within 6000,\nwhile Windows 8 took around 8000.\n", "proba": 2.98686074984289e-07} {"commit": "8102439d697ca861c80db5277f136530595ec6a6", "message": "Execute always tests which are not related with pywin32\n", "proba": 1.348494151898194e-07} {"commit": "d5c47e37310026a72db96773568d933bd37d729e", "message": "Improve style and legend\n", "proba": 2.977050144181703e-07} {"commit": "45514fd54331f5abe968d192287c34f883559885", "message": "run flags added\n", "proba": 2.8923435024807986e-07} {"commit": "e23215404b73b1454ceb4e3062fc391483f84faf", "message": "Run autopep8 on selection if existing\n\nSee gh-4. Don't close it yet as weird behavior can happen with selection.\n", "proba": 1.0165075536860968e-07} {"commit": "095c1166187ae7e850ed714903920f83f4861797", "message": "test: simplify prober usage\n", "proba": 0.0013011450646445155} {"commit": "07e8fada20776f8b67a97e2487d6ec36b2cac1da", "message": "unified the error norm\n", "proba": 0.9984418749809265} {"commit": "d5aa20c93fd97e930512d89e1821e3c6b366413b", "message": "Show that create_content_type modifies current context\n", "proba": 2.995738270783477e-07} {"commit": "6a904eb981255c03077075c1e7ab25292371a377", "message": "\u6df1\u5c64\u5b66\u7fd2(\u3068\u3044\u3063\u3066\u30822\u5c64)\u306b\u3088\u308b\u5206\u6790\u3092\u8ffd\u52a0\u3057\u307e\u3057\u305f\u3002\n", "proba": 1.253946351198465e-07} {"commit": "247e8f8ce8ed4677c629affec6b9a291c730e3a2", "message": "Fix: Use assert_equal instead of assertEqual in fail testcase.\n", "proba": 2.1985077580666257e-07} {"commit": "e05ed063d84ec57741939b4fbc056fe20f7bcd37", "message": "check status when touch lcd\n", "proba": 5.664611535394215e-07} {"commit": "6e86bb095132143d9e3cf2984a8b4d6fc1e711e2", "message": "no need to assert attributes.\n", "proba": 8.059269021032378e-07} {"commit": "3c2d290452a07946880fc25af917b32766f9529d", "message": "Update test script to include deposit\n", "proba": 1.6994751206311776e-07} {"commit": "194d5c7ef17e5281a9eb3766d6c1f4b8510cba2e", "message": "Use BaseServer for SQL harness servers to get the __del__ handling.\n", "proba": 2.3185819486570836e-07} {"commit": "3ad1b4800c181d51b4af98639962b5ce1380bf87", "message": "Catch race condition in mysql harness\n", "proba": 1.8160615411488834e-07} {"commit": "852331a683ebada9a55ce309b5cefec536a578af", "message": "Update unit test to know about image.type\n\nimage.type is a new field added to the test_suite document\n\nSigned-off-by: Ana Guerrero Lopez \n", "proba": 1.26590165905327e-07} {"commit": "50c4b312a27b61725885ee84d45a0f07f94a8ec6", "message": "Handle interactive-on-error also when error is from contextmanager exit.\n\nCloses: http://tracker.newdream.net/issues/1745\n", "proba": 1.6714078299173707e-07} {"commit": "cd8f31db0f55e6c8fdfd09820865d973ec6f676c", "message": "Write config.yaml directly to file.\n", "proba": 1.2207726740598446e-07} {"commit": "1fff288c1ea2ba9fce3d9acfd2b722d6eba714ab", "message": "Wrote basics of space game. It works. It isnt funny\n", "proba": 1.9071643464485533e-07} {"commit": "b3477725ab1e16c4b912e980cff1ae98a4e5ae67", "message": "added abstract SpatialInterpolator base class\n\nThis class is the base for all 2d/3d interpolator objects that read their data from\ndisk.\n", "proba": 1.1137650801629206e-07} {"commit": "c87e76cc0c70a8ec9eaffce7c5bfbf3f93528a9b", "message": "interpolation: add fill and normalize options to GridInterpolator\n", "proba": 3.440144951127877e-07} {"commit": "c170f8b5da915e2d1c3989e852ed12fe09b54625", "message": "Small change required on live environment\n\n--HG--\nextra : convert_revision : svn%3Ae08d0fb5-4147-0410-a205-bba44f1f51a3/trunk%40364\n", "proba": 4.47099836264897e-07} {"commit": "9212dbd3c4a7d325b756a5d0fee60e01ee597f2d", "message": "Fix recognition of conditional paths in a list.\n\nThe code didn't recognize identical conditions on multiple path/list\ncomponents and complained about the situation being too complicated.\nFixed by making the conditions list unique.\n", "proba": 2.6672262265492463e-07} {"commit": "ec79345bb05b9ec068d3547d42df8829d1f2ee73", "message": "Clarify PathAnchorsInfo docs.\n", "proba": 1.3016739330851124e-07} {"commit": "cca3eb95e92e8dcb7622bb6b214b36d65f49b43a", "message": "fazendo simples contagem de lotes tamb\u00e9m com a fun\u00e7\u00e3o get_lotes_no_local\n", "proba": 3.7143095710234775e-07} {"commit": "14d1fe28a31c77f2b1dce4c7714bc7d70775914d", "message": "Add files via upload\n\nPurgeMembers now purges members expired 90 days or more.", "proba": 9.94761037986791e-08} {"commit": "80752c4006b7f8021d9197ca95d9f17cae5c7ea4", "message": "Fixed an error when validating rune attributes but user did not enter anything. Removed unused imports.\n", "proba": 1.036574133195245e-07} {"commit": "dd7ffe58279deedfdbc6d5350178330545803395", "message": "added media dir\n", "proba": 1.3486767613812845e-07} {"commit": "a5ca44a569833e73e67c4ec07ac077b0a088ca2f", "message": "ENH validate lengths array in ``iter_from_X_lengths``\n", "proba": 1.6481179443417204e-07} {"commit": "d8c5b5a8730232d4c89297b6a1bb3ad5f6e2ec90", "message": "fixed remaining errors to handle new format of path conditions... Still need to check if disambiguated path conditions are correct\n", "proba": 5.952567789790919e-07} {"commit": "e8eaa2e4bd6cc7fe51e3c4c15a5bf392a24d5b92", "message": "generate index\n", "proba": 0.9999959468841553} {"commit": "c8eedb100ff868ec5eac74751f09c1b47b6ee95e", "message": "uncommented graph file\n", "proba": 4.7204784436871705e-07} {"commit": "6e26010a1e766c7715271e4cd2b2898472979b06", "message": "homely.general: include() is a bit better at reporting on exceptions encountered\n", "proba": 3.3244694463974156e-07} {"commit": "f6c0258e257aa537dbb64bb8c5f10c87ec32dcf9", "message": "Update my_hooks.py", "proba": 1.441194285689562e-06} {"commit": "4ab33cec7c0f4ee9fee7a7dce1c28466780b7074", "message": "Add hoomd.box.Box to main namespace\n", "proba": 2.566122930147685e-06} {"commit": "07eece1a97d6ed6cb037a3339aac73468fb9c89c", "message": "Adds missing ANNOUNCE_TEST_MODE config\n", "proba": 7.566771273559425e-06} {"commit": "3901510c00a15cbd844988b28a68ad0f2fda493a", "message": "removed outcome else branch\n", "proba": 2.0603195025614696e-06} {"commit": "5568f7176fc9898a4e41c3ccb09cc7fe74513e9e", "message": "addressing code review comment\n", "proba": 2.302055008840398e-07} {"commit": "8f4671061879111d8ce4f6851a78f6b89a410625", "message": "[#2810] session based resource view counts\n", "proba": 1.3237317375569546e-07} {"commit": "c7c10fad269e1845a3d3286a08af3104e8cb6520", "message": "use URIRef for urls\n", "proba": 4.4648203356700833e-07} {"commit": "f68b5ba1c6aa8171ed15f9928b2323df3f6fea79", "message": "Don't need ENABLE_NESTLOOP tweak anymore\n", "proba": 2.4630244865875284e-07} {"commit": "f18d34d92253986e8018f393201bf901e9667c2a", "message": "Small fix to initializing spatial database label.\n", "proba": 1.1569711233505586e-07} {"commit": "2f68a64cb0b71737034824c2d2840ac1861d9e5b", "message": "Re-order alert de-duplication logic\n", "proba": 3.980807014158927e-05} {"commit": "fcfb57e4b806ceb94b06a23b7013808fa2f4f1a2", "message": "removed irritating debug message", "proba": 2.6897046723206586e-07} {"commit": "ee4ca94db92502551ac712ce06b53cc6de3be8c0", "message": "fix broken build due to pep8 (#42)\n\n", "proba": 1.0888844315104507e-07} {"commit": "346ff6cf7e35329ae7052a018814e64d59382052", "message": "Fixed Python warnings\n", "proba": 2.246123926852306e-07} {"commit": "f5c4606b23b6a3da0e63849ba16b6deb35f8c7a0", "message": "afl-cmin.py: migrate to python3; also scan subdirectories\n", "proba": 8.660668413540407e-07} {"commit": "adbba9bf9a06461c9182e77f383a41a5d036203c", "message": "fixed small bug in messagereceiver\n\n* wrong logging syntax\n", "proba": 1.8253824407565844e-07} {"commit": "88cd9e9ca63da6ef5f89b313e49687b744689017", "message": "Fixed index bug\n", "proba": 4.692918196269602e-07} {"commit": "b0e3c86a25e001bcbbac92d29e8b4b45c6616624", "message": "implemented right click on webdriver\n", "proba": 5.920241505918966e-07} {"commit": "f4ef16d3409ed1085834838ecc6ed4310c99d79d", "message": "updated similarity importer\n", "proba": 4.308710970235552e-07} {"commit": "c61ea5f2e417731cdaba0c2ebf2f878b36f60f36", "message": "Converted maps to list comprehensions. Moved picture submissions to a new directory.\n", "proba": 9.894475283545034e-08} {"commit": "49da47f99379a19c67308083864bc2f8ce4c76cc", "message": "Simplified and renamed _shell_command_complete since it didn't need to be an entire completer function\n", "proba": 4.816180535271997e-06} {"commit": "4c5c0cd53306241b53a8287fe65605ad73dea1ec", "message": "adding fine by css and find by xpath on the elements\n", "proba": 1.4919110924438428e-07} {"commit": "dbca700ab05ec309e6f24dd659dff00bae7b1830", "message": "Adding in timeout checker for joysticks.\n", "proba": 1.1456739912318881e-07} {"commit": "41ea474441ef49cae074fe6daa405ad185c64081", "message": "Exit on D when on a tty\n", "proba": 3.500596790217969e-07} {"commit": "f7809b7d9b175f21cfae3e39c37d6cab8ff4d683", "message": "Removed old refs to files moved in child_compassion module\n", "proba": 2.8917975214426406e-07} {"commit": "757753713fc13880d1e8c1c3a0bd0bc226ebfe93", "message": "Note for to-do.\n\nWe need to solve the \u044d\u0442\u0438/\u0439\u0435\u0442\u0438 problem.", "proba": 3.130845129817317e-07} {"commit": "5020cc38e0e0b45f1fae2720176bdac271e1ff84", "message": "More \u044d words.\n\nSlowly, but surely.", "proba": 1.3396139308952115e-07} {"commit": "b4340c78fde9197f73041cba46517eb9e7e35cef", "message": "Switched to sphinx.ext.napoleon from sphinxcontrib.napoleon\n", "proba": 3.4791439702530624e-06} {"commit": "cef174ad89db9710673b7d2ef195836495f5aa5e", "message": "Add timezone to the 'last updated' string\n", "proba": 0.998784601688385} {"commit": "e5de37dd9254eaa64579a1a19e435f5ab89c7320", "message": "update font awesome url\n", "proba": 2.481267813436716e-07} {"commit": "7b16a04549bfb4393ea69d53b9c90f7b77ceacaf", "message": "Do not show urls in search results - no really...\n", "proba": 1.1033033331386832e-07} {"commit": "602ad51f9d3f9577bf805ca317ecf0dfb31b5994", "message": "Create config from ena ftp\n", "proba": 3.4184944297521724e-07} {"commit": "53881ce561802c13fe66d73203333322a138b57c", "message": "fix sphinx pngmath bug\n", "proba": 0.9998774528503418} {"commit": "cc69c97f1c1f6123ed0ce37bf1a467ef626ba2cf", "message": "Proper None check\n", "proba": 1.033263401950535e-06} {"commit": "06ccff36fd5888864e44bd7b9f14e7b8ef8224cc", "message": "o jeez ya boi hecked up", "proba": 7.054140382933838e-07} {"commit": "320579c61eb473405beb8b2beb1bd89981d03fe1", "message": "generic add_person function to replace add_author and add_editor", "proba": 1.1963611541432329e-06} {"commit": "79c686b08b996e68d159c3cb71a30b7b1591e595", "message": "Fix an exception when pressing 'h' in newer numpy versions\n\nCasting behaviour has changed in newer numpy versions.\nThis fix makes some code in the help-text compatible with the newer\nnumpy\n", "proba": 2.3318068542721448e-07} {"commit": "9771a6dc60c8e053d7a3486a4cc8bda60faa7f65", "message": "be more safe with getting json aprams\n", "proba": 2.5734900077623024e-07} {"commit": "f8864bbadfdd49102b589272837a8ec1a93ca0fc", "message": "Improvements to the help system:\n * \"--help\" can now come either before or after particular commands\n to get help on and can give help on multiple commands, eg.\n \"--help install dist\" gives help on those two commands\n * added \"--help-commands\" option, implemented by the 'print_commands()'\n and 'print_command_list()' methods\n", "proba": 8.377817721338943e-06} {"commit": "be74aef3cde0b8c4443a7e5e5de8dc89799dd6fb", "message": "another stupid fix\n", "proba": 2.0030016401051398e-07} {"commit": "4e3f972d815d830345e74baef8bb9401f85e198f", "message": "fixed tqdm import\n\n", "proba": 2.5610572151890665e-07} {"commit": "88c2404951166766d767ebc0c4b218bd3a0b0b25", "message": "Button Toggles sync when mapped to same target\n", "proba": 3.013946638930065e-07} {"commit": "2a8bc8ee185e2b9060519b4fe57a614cb1a80476", "message": "[FIX] I fixed 'TypeError: onchange_partner_id() takes at most 10 arguments (11 given)' using by cr_uid_ids decorator\n", "proba": 1.6424031855422072e-05} {"commit": "a27e71157269e737eb2f3e83104d63f619f8728e", "message": "PEP8 Compliance for node.py\n\nMake node comply with pep8. Altered several uses of type to instead use\nisinstance to comply with pep8.\n", "proba": 1.2346728794909723e-07} {"commit": "0b639b586b12d38065c092ba96f2db3e5cc1c6ec", "message": "[FIX] account_voucher: supplier payment in multi-currency. Accounting entries generation fixed\n\nbzr revid: qdp-launchpad@openerp.com-20120820110207-w2sow7o2rmpbqykl", "proba": 2.534655152430787e-07} {"commit": "fe961e03de35fa56c14004baf83442ce18195a4e", "message": "[MERGE] merge with main addons\n\nbzr revid: rpr@tinyerp.com-20120821053410-jkf6780gpt43qxfm", "proba": 2.007518702384914e-07} {"commit": "6ba5e225c74a7c1825fc76e0a9d92730e4736967", "message": "avoid exception in sliverstatus when get_slice_cred failed\n", "proba": 7.522547207372554e-07} {"commit": "600ffac3d56bfcf46ec59309bbfed1a88df55c97", "message": "[IMP]: Import data for opportunity and correct some problem for dependency.\n\nbzr revid: atp@tinyerp.com-20110310051958-u30t8o233aq3euet", "proba": 2.547544966091664e-07} {"commit": "e8fc3acfd9884312669c1d85b71f42a9aab29cf8", "message": "Moves SchedulerJob initialization to within daemon context (#17157)\n\nIn Scheduler, the SchedulerJob was instantiated before demon context was\r\nactivated. SchedulerJob is a database ORM object from SQL Alchemy and it\r\nopens the connection to Postgres:\r\n\r\nWhen you activate daemon context, what happens under the hood is forking\r\nthe process, and while some of the opened sockets were passed to the\r\nforks (stdin and stderr but also the opened log file handle), the\r\nestablished socket for DB connection was not passed.\r\n\r\nAs the result, when scheduler was started with --daemonize flag\r\nthe error `SSL SYSCALL error: Socket operation on non-socket` was\r\nraised.\r\n\r\nThe PR moves SchedulerJob initialization to within the context\r\nwhich makes the connection to Postgres initialized after the\r\nprocess has been forked and daemonized.\r\n\r\nFixes: #17120", "proba": 1.28827593925962e-06} {"commit": "95a4136a134cdf4210ee1bc078dd93c620386c91", "message": "[AIRFLOW-1664] write file as binary instead of str\n\nCloses #2649 from jgao54/write-binary\n", "proba": 1.3765367157247965e-07} {"commit": "f9596088fd51fb56d860d3ab67b1d40bfe14aefc", "message": "Changing DATADIR path\n", "proba": 3.8946609492995776e-07} {"commit": "3952b756adf310589b28d921804798852c0e0cfb", "message": "\n\ngit-svn-id: https://svn.zmaw.de/svn/pycmbs/trunk@322 46f1e1ae-ddaa-4461-89cc-888b818d8ef3\n", "proba": 3.9921604866322014e-07} {"commit": "bb7bea6563eb82574e8970b880cc6c79002ed81f", "message": "Removes unnecessary data element.\n", "proba": 5.829351152897289e-07} {"commit": "4c9f32da941ae76d8eaf68f9673d7763af8c74f0", "message": "Create train directory if not exists\n", "proba": 6.699829100398347e-07} {"commit": "95025826bae8069426f649cb0a3bd73dd40cda18", "message": "reshaping for real?\n", "proba": 1.506054871924789e-07} {"commit": "50516b3d1a715d74dcb713d356317cfe2eab6ed0", "message": "Bad empty lines in Day2.\n", "proba": 2.919961445968511e-07} {"commit": "c3194ab7cb908fe2391104a609cfa17a7dba6b0f", "message": "website scraping as db_ function\n\n", "proba": 7.373323569481727e-06} {"commit": "7a3cc27325f657bccd8a081fd3f489e29182c5e2", "message": "Set variance to -1 if not doing anything", "proba": 4.890017862635432e-06} {"commit": "c7ecf728e12dd3a59f4ef45e30b61ce5c52ceca5", "message": "Fix corpus to Polish language\n", "proba": 0.9999984502792358} {"commit": "0379ed87f6761739d8d5014d485fa822f9cf6b10", "message": "added contains\n", "proba": 1.8546921864981414e-07} {"commit": "252fd63194dc0fd50048a2409a2d6a6a693ebcfa", "message": "Align TensorFlow and OpenCV paths to create a text graph\n", "proba": 9.12328573576815e-07} {"commit": "dc9d0178ff386c7d28983db011a54e8e8043828a", "message": "Improved analysis script with prototype cost-analysis\n", "proba": 2.555762819156371e-07} {"commit": "099fc71fa1f4a3031b11c4d176589fa21cf6eb4f", "message": "heat engine : Resource remove redundant None get defaults\n\nget(k) returns None anyway if k doesn't exist, so the default to\nNone is not needed\n\nChange-Id: Id954c510a5c4795b5e0c3ccdcca186983dee2e8f\nSigned-off-by: Steven Hardy <4d1810d1ff6d7f22d774341c4549c02173d2f2ab@redhat.com>\n", "proba": 9.99999883788405e-07} {"commit": "3b8b0694956b823101358ccc1101ad4ab6b3a094", "message": "Improved entry_state\n\n", "proba": 2.75249675496525e-07} {"commit": "de027652a4bb12c6d1a4cb7bc85448c8c2a0d321", "message": "use argparse to get arguments from command line\n", "proba": 6.16084605553624e-07} {"commit": "2db4cdece3f6e01412051e42fc0cf8ff0b82b704", "message": "Updated to reflect Django 1.2.3 is the minimum requirement given security issues and bugs in prior point releases (this should have been in an earlier commit).\n", "proba": 1.0036708886218548e-07} {"commit": "c9c9bf7c609a67bfe77db2788a4aa477e68877e9", "message": "an inheritable `SEO` model, which yields 3 fields for title/description/keywords.\n\nNote that the methods are for API compatibility.\n", "proba": 1.0640744108059152e-07} {"commit": "e7c3c5f91be44d10502e5f6260d40ce89391cc14", "message": "write only to dict if splitting possible and split on ': ' instead of just :\n", "proba": 5.700906513084192e-06} {"commit": "6895ae7c7a57df5debc540fbd7999789154b6ad3", "message": "Forward messages with non-null non-ping opcodes.\n\n(imported from commit 4b1a8749f05624891f4d9996188e9597eeb234f1)\n", "proba": 6.135340981927584e-07} {"commit": "d4895792fdc24e3ad1409f7dc73c4c92474a3d5d", "message": "fix get_fully_connected_locations method to return sensible types\n\n", "proba": 1.2526988939498551e-06} {"commit": "5b789200c0c8b3fc6c4d65e6248475552b15258d", "message": "Alvares, Juma | registration | Added captcha to registration\n", "proba": 1.0835103125828027e-07} {"commit": "b29028d9ce78960d9d4fb9f13a0ee21818331aac", "message": "switched from pyproj to cartopy\n", "proba": 4.74954106266523e-07} {"commit": "2fe50c9175b2d9eee539716b90e7258038b63d7c", "message": "small changes to Card\n", "proba": 3.2031078944783076e-07} {"commit": "67696170cd01ad321e41c6efed5659f0288ec92e", "message": "Crash when deleting tasks during results processing\n\nDiscovered whilst testing that process.py or cuckoo.py crash in the event that a client deletes a task via the API whilst that task's results are being processed (perhaps due to a client timeout and subsequent cleanup). The API prevents tasks being deleted whilst in the \"running\" state but allows deletion in the \"completed\" state. The subsequent attempt to update the task status to \"reported\" in the database causes a fatal exception.", "proba": 3.4588006769809e-07} {"commit": "f77afe8faee8585b69021906e5e1bbd0a8f86e48", "message": "Exception handling\n", "proba": 1.5998178923837258e-06} {"commit": "3891bd0e35c9acdd8c1330122da4c0a4d9fbcfb8", "message": "Small change to unescape function in template_helpers (move replace('&', '&') at the end).\n\n--HG--\nextra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%40613\n", "proba": 2.2900214389665052e-05} {"commit": "65440bcd496a6b19726ca1eb1e323382f7552f71", "message": "template [ci skip]", "proba": 1.26087144280973e-07} {"commit": "6ebb785087c4689da4aea20b911ca2795647ec5d", "message": "ENH: lib: update 'raise' statements\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@6914 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 8.698314104549354e-07} {"commit": "f21a1f926ab35d566dd5951e4f63dee6f401a38f", "message": "Defined a name for MediaItem table\n", "proba": 0.00023587478790432215} {"commit": "1aeda01e74fab42775ce9091aa8ad958c4c6e173", "message": "convert ConfigFactory empty and sytemEnvironment\n", "proba": 3.204371296305908e-06} {"commit": "391d0c34f4c2dc25ed7087f95a2262e00373d817", "message": "STY: ndimage: Remove 'diff' helper function from test suite.\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@6838 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 3.555384682840668e-05} {"commit": "df4caf41d0c335dce5a28aa2a2be79ad1b54c71f", "message": "Install requirements for integrations in packages before importing them. (#25005)\n\n* Process requirements for integrations in packages before loading\r\n\r\n* trigger buld\r\n", "proba": 1.3535964171751402e-07} {"commit": "6cef84f0b0a729cd24087c9c167084053b74c6e9", "message": "[fix] Fix total variation loss calculation.\n", "proba": 1.3237973917057388e-07} {"commit": "e16949dff14d12688e5084b2a86647f225f660a9", "message": "debug answer?\n", "proba": 1.449887577109621e-06} {"commit": "56151ad549e82206c3894e8c945c00d4bac24ab5", "message": "Complete error message.\n", "proba": 2.488075665496581e-07} {"commit": "6b47914e670ebbee6922d9bfe832aa8ea4502496", "message": "DOC: Removed explanation, added reference for gimbal lock\n", "proba": 1.1620888074048707e-07} {"commit": "75c6bc8b1cab8de654998eb70603ca3289ad5e7a", "message": "Fixed missing import\n", "proba": 4.7682121362413454e-07} {"commit": "02f7be42a698d0a3274d3c0cf5d308e2147b2929", "message": "added note about tightest continuity constraint\n", "proba": 1.8531221712692059e-07} {"commit": "3daf79584b0f2dfd0c29d507ca0786de85446211", "message": "DOC: Mentioned behaviour for cases of gimbal lock in docstring\n", "proba": 1.1474771355324265e-07} {"commit": "74e64f740769363b05b2987baa776ab783af8f40", "message": "add is_published if blogpost is already published in update form\n", "proba": 3.5401654940869776e-07} {"commit": "4e04e8f4fba59b1531063aac18c4b41b9b798ba8", "message": "Small adjustment to the install location of libMesh in CI.\n", "proba": 1.017951092308067e-07} {"commit": "04532662ff870e60cf8392bfb8f389de453be6d9", "message": "minor bug fix in logging error messages to the user\n", "proba": 1.6309327577346266e-07} {"commit": "2d251cb3c2177bbe3afe7bcfaa4eb21f0baac3da", "message": "DOC: stats: clarify meaning of rvalue in stats.linregress (#14458)\n\nDOC: stats: Clarify that `rvalue` is the Pearson correlation coefficient, since \"correlation coefficient\" is ambiguous.\r\n", "proba": 2.1898530633279734e-07} {"commit": "b418adff42824a45ba96e9af272b986f995d3f2b", "message": "Disable test data downloading by default (#193)\n\n", "proba": 1.1705722613442049e-07} {"commit": "25c242ed3352bcf52683454e12c3e9ae7e51622b", "message": "Check line endings for all modified files with 'binary' attr not set.\n", "proba": 1.0382738935277303e-07} {"commit": "9560a885c1b9ba24e12b1fc169ae948278d2e68b", "message": "comments in main now pep8\n", "proba": 1.282235331245829e-07} {"commit": "2339be0ec5b3cb9eddf0f1bd6eb39e29bac2595a", "message": "tar syncdir for transfer", "proba": 4.209265114241134e-07} {"commit": "ed7ce2b40b2f09ce40902a4adfaec9b900f627d0", "message": "bug: Check tokens in constant time\n\nCloses #571\n", "proba": 1.7773321303593548e-07} {"commit": "7241becda1cb04574e2689b3e6da9b8ea28eaab5", "message": "Fix tables JSON file name\n", "proba": 8.970293129095808e-05} {"commit": "70201e22cdbad840a9421092a7dc17f91d510e00", "message": "Added bindings for arrow key movement of selection\n", "proba": 2.4210817173297983e-07} {"commit": "4761e175665b775314658afbbdedff37792fe1c7", "message": "disabled instance stay subscribed to bcast queue\n\n* A disabled node needs to stay subscribed to the broadcast queue\nbecause the work to re-subscribe the node to queues when the node is\nre-enabled is done over the broadcast queue.\n", "proba": 1.082087308645896e-07} {"commit": "6f761f6ba878b586fedc09aa8bf890245a419bf8", "message": "Add support for uploading vmdk images.\n\nChange-Id: I08f301f3b52144bc5daf440a54789f46da34a498\n", "proba": 3.9429337448382284e-06} {"commit": "2fae45c5e874fa54411e9602f40c50cd95d17d2b", "message": "Added Datastore configuration\n", "proba": 1.4563771344455745e-07} {"commit": "d6016b607a23c7f67c8f62edc21385506eb16e16", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "1ea4ac505e3683cb217bf6b257346bfa70ac168a", "message": "ENH: Better SiUart by @lgermic\n", "proba": 1.345558757748222e-07} {"commit": "65dcd645d1fcf7a400bfa901346dce140b1c7adc", "message": "Add a way to setup aliases to a symbol\n", "proba": 1.022642550196906e-06} {"commit": "19d81520a7fe9dd8098bd1603b455f08e465c5f7", "message": "add getspire to init\n", "proba": 3.313400611659745e-07} {"commit": "44477bc4fdf353844e3fc227438cff8e1623b4d9", "message": "Don't run the preprocessor when we know the assembly file doesn't need it.\nThis is both a micro optimization and a dependency breaking that avoids\nthe need of extra -B flags during the gcc build.\n\nTested:\n./tools/llvm/utman.sh clean\n./tools/llvm/utman.sh all\n./tools/llvm/utman.sh test-all\nReview URL: http://codereview.chromium.org/3061008\n\ngit-svn-id: 721b910a23eff8a86f00c8fd261a7587cddf18f8@2783 fcba33aa-ac0c-11dd-b9e7-8d5594d729c2\n", "proba": 4.727461055153981e-05} {"commit": "d1150382f8cba57ff036cdb77838a145e8855213", "message": "Added many further properties to SerialInstrument.\n\n\ngit-svn-id: 9ab2475816adfb8420036182e3900ffc754382bd@292 516c0664-e049-0410-bc6e-8f9a6051a51d\n", "proba": 3.75956943798883e-07} {"commit": "d5e12d6a23b97b24f4c9e4d9f239cc5fb40d9d47", "message": "\u589e\u52a0\u9759\u6001\u6587\u4ef6\u538b\u7f29\u811a\u672c\u4e2d\u7684\u63d0\u793a\n", "proba": 2.904887992372096e-07} {"commit": "4281fff847160d93cd6a6a6efefc80aec6f2302e", "message": "Add JUnit-style output format to run_unit_tests.py.\n\nThis patch adds a new output format to the test driver execution script,\nwhich captures test case output, collects results and emits them in a\nform that other tools can consume. This mode is enabled by specifying\n\"--junit=\" to the script.\n", "proba": 1.1404132749248674e-07} {"commit": "4022504f8ea3685bbd8e605bc5c656f3e1736e1f", "message": "Changed SWORD diagnose to use urllib.\n", "proba": 1.072978577099093e-07} {"commit": "d1babe15b99bfc8704b8f7fd7e2cd09ea0027f6c", "message": "must render Markdown within block tags separately because otherwise we get spurrious HTML content outside of the block tags\n", "proba": 1.3147987942829786e-07} {"commit": "278215d3afb04e37b1e5ad3072038d359309000a", "message": "Remove humanfriendly.compat.unittest (#53)\n", "proba": 4.1697111896610295e-07} {"commit": "c90c3bd2b441ac5645c6c33257d8f31298fcd737", "message": "Release 0.1.4\n", "proba": 5.593381047219737e-07} {"commit": "2169e876acb6079e73567f2da5d20d2fb7031846", "message": "Hide empty folders\n\nFixes #7\n", "proba": 3.360999016877031e-07} {"commit": "ac4297ee39c47a75e443376fad7112064c32bd4c", "message": "Minor refactor to conversion of output docs (#5718)\n\nMinor refactor of conversion of docs to output format to avoid\r\nduplicate conversion steps.", "proba": 1.0011527962205946e-07} {"commit": "60d7d5fd53950c167ab3e3b7a22cf5e6a88466c9", "message": "fixed python 3.4 bug in np.nan_to_num\n", "proba": 6.17768382653594e-05} {"commit": "78e6ccf11d9caebdf0740aa6543491738655e14d", "message": "improved in-line comments in network.Network.extract_components\n", "proba": 7.585343837490655e-07} {"commit": "69c576f7b242b40c4ab5d3ca4bf8e854d159f710", "message": "Update some documentation\n", "proba": 2.313323079761176e-07} {"commit": "e1090d11b91d8a5d0142f3f0de51d346afb0a063", "message": "Show first root page when visiting http://www.example.com/", "proba": 1.8539741120093822e-07} {"commit": "bb78f1daf3b597ec952ee542f36f04be17ffe187", "message": "Add annotations to query code\n", "proba": 1.6897877230803715e-06} {"commit": "ebeae3a14952ab9e695edb53a3d9029010507e89", "message": "Panel View: Omit the `:` if there is no error code to follow\n", "proba": 5.264688525130623e-07} {"commit": "0d05cc9f76b97b8c4e39c96b2126854080ce9963", "message": "Make the config update slightly safer\n\nCloses #5\n", "proba": 1.3267375607028953e-06} {"commit": "7663de0d6cea48b19ea71e802fd7cdae256a2ddb", "message": "partitions: allow filtering a single partition\n", "proba": 3.99172495235689e-05} {"commit": "af26f2d13fd7b409f8fc3338366195f08f11df6e", "message": "Use items(), the bazel issue seems to have been addressed.\n\nRELNOTES: None\nPiperOrigin-RevId: 351805221\n(cherry picked from commit aa1ad2cda686e9a0665d4fc798eb74c50e725103)\n", "proba": 2.048812604016348e-07} {"commit": "2a2d6656f90444627f0632e0ec726a45e24b1381", "message": "use fixed font for example markup; raise priority of \"sel\" tag\n", "proba": 2.712843354402139e-07} {"commit": "7aa4e96510999157492acc4cdaadee8e00e3d940", "message": "refining comment\n", "proba": 2.848889153028722e-06} {"commit": "610fd110fe3dee15ba34fe6742838d328326e184", "message": "sw test tool: Enable parsing a new 'egress' format\n\nThe format is for throughput analysis.\n\nSigned-off-by: WATANABE Fumitaka \nSigned-off-by: Yuichi Ito <7a83edf5b53f0b21d4182a3da7518164ce03dc3a@gmail.com>\nSigned-off-by: FUJITA Tomonori <93dac1fe9c4b2a3957982200319981492ad4976e@lab.ntt.co.jp>\n", "proba": 0.9986287355422974} {"commit": "a881ab390f06841e2b9295439e7b3ab94ec8dd06", "message": "remove heapobj -> reduced time ~1-2 s\n", "proba": 5.718640636587224e-07} {"commit": "5af0506819f234bdd4b8f8c635923c37954b328f", "message": "[FIX] take oldest lot\n", "proba": 7.837882003514096e-05} {"commit": "aadb4a8d84b9965982c2b01eee35b1b49ae7c936", "message": "update minion to connect to master\n\nThe RAET minion now connects to the master and waits for data\n", "proba": 1.2365806867364881e-07} {"commit": "09a892861a20b1832b8bf768e9123a034fbab830", "message": "fix string formatting in modules.win_update\n\n************* Module salt.modules.win_update\nsalt/modules/win_update.py:474: [E1305(too-many-format-args), list_updates] Too many arguments for format string\nsalt/modules/win_update.py:519: [E1305(too-many-format-args), download_updates] Too many arguments for format string\nsalt/modules/win_update.py:572: [E1305(too-many-format-args), install_updates] Too many arguments for format string\n", "proba": 0.001051713596098125} {"commit": "54b40488a7b0baefba3ada33cf9b792af1c2ca4d", "message": "fix bug with api v1\n\nMerge branch 'diffusion' of https://github.com/Fresnoy/kart\n", "proba": 2.1774373237803957e-07} {"commit": "ed175b366032acd7717e73944fe1d6830dcae36d", "message": "Improving docs for salt.modules.win_update\n", "proba": 7.689527024012932e-07} {"commit": "5060acf7f15119a41e48e8b298668a9bb60108c9", "message": "Added tqdm to CLI for a few cmds\n", "proba": 1.3345719196422579e-07} {"commit": "94716665743e80f789644938769abdfb09654d0f", "message": "use itervalues\n", "proba": 2.605624104035087e-06} {"commit": "276e7912d92ac90cd4ce06a8feb55dff9d89d889", "message": "Pylint fix\n", "proba": 4.665865844799555e-07} {"commit": "a8cea46925153e0e1ac0acacac66a165d9e3b944", "message": "deflectionAC, 1-handed weapon 2handed, rapid shot feat\n\nOption to wield a 1-handed weapon 2 handed.\nRemove extraneous space if an attack has no damage.\nSuport for Rapid Shot feat. If a creature has Rapid Shot and a particular\nattack has extraAttackAtFullBAB enabled then apply the -2 penalty from\nrapid shot to that attack.\nAdd deflection AC component.\n", "proba": 1.2284912997984065e-07} {"commit": "c8efc01cf9a1ba11c5503167e191d9bcccabcc8c", "message": "Namespace labels in sass_repositories function\n", "proba": 3.90987821674571e-07} {"commit": "9a4f95a7f5e2308c617dac199ba70a51fb29c092", "message": "Revert \"Don't log \"skipping copying log lines\" message if average produce or\"\n\nThis reverts commit 14aeca1fbb886ca37a018a658bc03fa8df06ffe2.\n", "proba": 1.2773922719588882e-07} {"commit": "59b2d0418c787066c37904816925dad15b0b45cf", "message": "Use author display name in document list_filter\n", "proba": 1.2515621392594767e-06} {"commit": "50b739cb4356cf7cf77f323612e223154c8b44f0", "message": "fixed ann_data\n", "proba": 1.5950799934216775e-06} {"commit": "c56168ad352a94f7d8020ae51befae8344be6769", "message": "Add ratings normalize function\n", "proba": 1.4024676602275576e-06} {"commit": "2f116839b317f7c2cd760d69c49082af34e294a7", "message": "doc fixes\n", "proba": 4.85894247503893e-07} {"commit": "38cff847def07787541c48b45cde90bb604f7cd0", "message": "renamed features to X\n", "proba": 3.918287347914884e-06} {"commit": "7e7d6ba2b18bd83261a33338855573376d7a1c22", "message": "TYPO: funciton\n", "proba": 5.92648257224937e-06} {"commit": "4e0904a9280321f22621e4519286e37082828b5d", "message": "BUG: allow 2-D initial guess, same as for other solvers. Closes #843.\n", "proba": 1.0987545806528942e-07} {"commit": "620eb2515d6dec5b879ef8f11440160286eadc1e", "message": "3K: weave: 'exceptions' module is no more\n", "proba": 1.5166110642894637e-06} {"commit": "73d2e5ad5ee59577a0a73e1c8f6df138046873ef", "message": "wip: comments\n", "proba": 4.4734039761351596e-07} {"commit": "84f3d0bb028b98626c3b8559f2ecc401da7d6b3e", "message": "Moving bugs and todos to project age\n\ngit-svn-id: 5802d59caebd368f829ba2d9c83e7b11e4e43f37@410 c39d3808-3fe2-4d86-a59f-b7f623ee9f21\n", "proba": 9.552936717227567e-07} {"commit": "7aa8ff8e4b704fe73153395484ee3a791351214c", "message": "fixed prompt-dsn option description\n", "proba": 5.677781018675887e-07} {"commit": "0f8a1f6eb18b4efc0eb38560ded203628e2d6ca8", "message": "added fixme\n", "proba": 1.809792422591272e-07} {"commit": "64bd0b9a522e821fd5dfc59d955c96653a3f29c3", "message": "keep chunks etc only in the reader strategy\n\nthis also fixes the last window size not being retrieved correctly\n", "proba": 1.2243053504334966e-07} {"commit": "3bc11eea2d629b316eb9a8bdf4d9c2a2c801ddf5", "message": "Remove unused imports\n", "proba": 8.691937409821548e-07} {"commit": "e098c13a4c94abe00aa6c8ce2ea67900ea14f239", "message": "revert array license author info\n", "proba": 2.1931134597252822e-07} {"commit": "a3a0bcebf23b3947724e0755938c4effdc24342d", "message": " fixed the rect_example so that it doesn't leave randomly named embed.js files inside of demos\n", "proba": 2.1819897710884106e-07} {"commit": "53fdc39695edd04f5387722be489705f14c97ac5", "message": "Removed unneeded conditional in Plot.plot.\n", "proba": 1.9855386312883638e-07} {"commit": "4d9b28cbc96fd11f1a64be7fa59cbb5457910494", "message": "Add the ability to reconnect.\n", "proba": 1.3451931124563998e-07} {"commit": "60e8e6b4b1897a0b176cdcc9e6eb77b76b8df1ee", "message": "modified retarget trace diff\n", "proba": 2.889614165724197e-07} {"commit": "67fd00b47278dbc1bb8958cbe00f9aa0f29910b8", "message": "Fix test after solr_token_to_entity -> plural\n", "proba": 3.847649622912286e-06} {"commit": "e180112d3169c7d15714dde8c32b5522b8d5a4c5", "message": "examples/py/bybit-positions.py upgrade and fix #13495\n", "proba": 1.400549507479809e-07} {"commit": "c64d462726c92765ff36f3ad982ee47156693f1a", "message": "added TagField to incorporate django-tagging functionality on product models\n", "proba": 1.7174363620142685e-07} {"commit": "b875084e74ee03c6b251a79f04f0db340bb356b8", "message": "Fix #604\n", "proba": 7.876646463955694e-07} {"commit": "65e83b6a25bff19f208a1476a612f253c4f60832", "message": "Fixed bugs\n", "proba": 4.6831760869281425e-07} {"commit": "21842fdbff4eaebd61f37f42365f9c910b6e95d8", "message": "Fix(Install): Fix phase 2 install untar\n", "proba": 1.0728144843596965e-06} {"commit": "3c8bc7e8954cc11596fd4d5877cb1034ed672f5f", "message": "Fix(Links): Argument in link\n", "proba": 7.98133669377421e-07} {"commit": "b2799d93ff56b7ee1c9f29e410cb93e2c153610b", "message": "part of import\n", "proba": 5.039839265918999e-07} {"commit": "2b599e981de07592316495e2b174f2f2964621b8", "message": "boostrap/cwriter: Convert string literal to string\n\nThe parser would only allow this when nlang.stringmod.string is\ninferred, in other cases, ':string' must be specified like with\nall literal.\n\n let s = 'test':string\n\n fun foo = string\n return 'test'\n\nWe do not handle custom types that would want to convert from\nnlang.literal.string.\n", "proba": 0.998530387878418} {"commit": "800ccf82bf8a99288160178a11f44f3ccef0fe8b", "message": "Better debugging.\n", "proba": 2.2776907826482784e-07} {"commit": "c1c6ecca7baf98648416985aef8cd15f22a8a3b7", "message": "Add child form class method to allow for overriding form class to use\n", "proba": 2.1414398077013175e-07} {"commit": "82a9d020fda0ae80a0e17b1d0054eee91d3cd1f6", "message": "5.1 migration: keep_old_dependencies: use server_default (#2310)\n\n`default` is the python-side default, used when creating ORM\r\nobjects on the python side. In the migrations, we don't create\r\nany ORM objects, so `default` is useless entirely there.\r\n\r\nInstead, `server_default` is what makes sqlalchemy make an actual\r\ndefault on the DB side:\r\n```\r\nkeep_old_deployment_dependencies | boolean | not null default true\r\n```", "proba": 7.703796427449561e-07} {"commit": "1cca35eaa0010af21a971d66d6c8c06d2ff49fc9", "message": "Removing functions. Wrong placeholder file\n", "proba": 1.5200227608147543e-05} {"commit": "5a02aaa8e36745dd0f70f84e057f6bbe19b6c935", "message": "Created Account Object\n", "proba": 6.971777679609659e-07} {"commit": "bf446af15ea04206c2948e3a9d1e7efe904c9919", "message": "Updated version to 1.6\n", "proba": 3.9479462543567934e-07} {"commit": "4aebd5920ec0d1274cb67207ebf37bf3301b8bd0", "message": "Added prints to help debug tests.\n", "proba": 1.1016694401178029e-07} {"commit": "e6cb6d24ec98ed7a5dbb0488fa90c27a05fe00b8", "message": "validate -> get_errors\n", "proba": 5.002527245778765e-07} {"commit": "334556f07dc511927543218d4a2a1a1c1c83ed65", "message": "tests: speedup lock tests (#4471)\n\n* tests: speedup lock tests\r\n\r\nPatched to reduce timeout from default 5s to 0.1s\r\n\r\n* Reduce timeout further to 0.01s", "proba": 1.7823496989421983e-07} {"commit": "8299e3b62cb7eb37cd3f2d63f384d48478d88063", "message": "fixor\n", "proba": 1.6137773855007254e-06} {"commit": "87371774ad332a3adbe927e2609d73710f4a7678", "message": "change method name\n", "proba": 2.1006962924730033e-05} {"commit": "287138466558cd0255818465a88fd65b71efa9df", "message": "Fix a DST-related issue in image-run tests\n", "proba": 0.00020718418818432838} {"commit": "3f251930634701cbe5f5cfa9d1b96a3a1ed3c152", "message": "improve dumpobj load performance\n", "proba": 6.167906576592941e-07} {"commit": "3ad6fc495c877d36bb014062094f6e52edf1ac23", "message": "net_speed: allow bps or Bps\n\nThis patch provides a feature that allows the user to select between\nBits or Bytes when displaying the calculated network speed. Also fixes\nan issue that would sometimes cause the widget to break when\nspeedtest_cli couldn't find a good server.\n", "proba": 1.069250146201739e-07} {"commit": "a3dea467c373e9f4a8a5dcf61693696d98a51800", "message": "Add a default timeout of 90 (#1912)\n\n", "proba": 2.4513312268936716e-07} {"commit": "6744b8c14996257a38d0a8b0327edd1330a44753", "message": "Added isAdmin in user structure. will be used for basic acl management\n", "proba": 8.029816740418028e-07} {"commit": "f6a0e0685f1542967abfbefb7b897f44f9f73115", "message": "tabs -> spaces\n", "proba": 5.172016699361848e-07} {"commit": "3c3a0ce608dc43c69368a7fddb6a66bdfdc06044", "message": "Enable the selection of multiple torrents in one go\n\nThis is especially helpful because contacting the server many times in one go might get you grey-listed\n\nAlso features some readability improvements\n", "proba": 1.4073081899823592e-07} {"commit": "c9c164130daa9711568e1c7fe09d17c100949ccb", "message": "Test fix: prevent conflicts when creating cert versions (#13289)\n\n", "proba": 1.1543546918346692e-07} {"commit": "59883d46a409bdd72ae91256624a711b02084c75", "message": "Request makes path absolute\n\nFixes issue #72\n", "proba": 1.3223652217675408e-07} {"commit": "40972c542e7018f925167fa79ccbc2c7b241b1b3", "message": "revert unneded change on testBuildWarningTokens\n\nSigned-off-by: Gianstefano Monni \n", "proba": 1.269807086146102e-07} {"commit": "4377ea7712a9676e25eccfe2d2a2630545d9716e", "message": "fix and update update_profile() in monitor mode\n\n1. fix failure after change profile setting\n2. add a confirm message when user press 'Q'\n", "proba": 2.5847159122349694e-05} {"commit": "0c574bb01d5cb31e13c3b219756810866fb61892", "message": "flake\n", "proba": 1.0669724360923283e-05} {"commit": "99784ea1c0f24787ff9c4e6ffc1cf6c5b5e0e04c", "message": "Add binding_required to Campo\n", "proba": 4.870875613960379e-07} {"commit": "ae91c22b2e02141aa131f2d9d75f39d1ef747015", "message": "Make sure name + description is unique combination (#61)\n\nCreate unique name + description combinations to avoid the API error when uploading.\r\n\r\nAdd the unique RA\u00c4-number to the description if the item has a name, as those are not unique.\r\n\r\nTask: https://phabricator.wikimedia.org/T162453", "proba": 0.0002582394808996469} {"commit": "2cb3f20bfd6482b0418ee75556417b7229d765aa", "message": "Fix scene editor referencing graphics indefinitely\n", "proba": 4.790263119502924e-07} {"commit": "8652fd152ef6a9dcd2629ee845b6fe5f64fee93e", "message": "Fix issue with pantag that caused traceback when applying to a single firewall\n", "proba": 2.0901703123854531e-07} {"commit": "0230de965fbc4247bf1f087f8454d09f30a6b0f3", "message": "Fix naming convention of array references\n", "proba": 0.00028930010739713907} {"commit": "6916dd6240940cab06e2d02b3fceeb32c70691de", "message": "Warn or fail with exception on unknown policies\n", "proba": 1.3430280887405388e-07} {"commit": "2aa0b3be9f61a1297b5d0f69eaa230c342af05d6", "message": "use a separate thread for the video acquisition pipe and ffmpeg\n", "proba": 1.684796444578751e-07} {"commit": "3719ff6551e38575bcf6f36e6886474006e2b7c8", "message": "Skip `test_elliptic_comoving_distance_z1z2` if `scipy` not installed\n", "proba": 7.740825367363868e-07} {"commit": "7c155389f79329af9a692655dea486ec85b58438", "message": "Reenable sorting tests\n", "proba": 3.249195970056462e-07} {"commit": "6d47ac7530fd7075e6dcb3a11236a24c2958f6ad", "message": "fix dtype definition in test\n", "proba": 8.687572517374065e-06} {"commit": "97413f1eebe393fee216c91897371bccdedf0138", "message": "[MERGE] backport from stable\n\nlp bug: https://launchpad.net/bugs/488234 fixed\n\nbzr revid: chs@tinyerp.com-20091128001554-9ka8o40104a81bj7", "proba": 1.680713950236168e-07} {"commit": "76cbef3f96b25d3687e9d92e3bbd20cd0eca0314", "message": "Updated Simulation.schedule_command to accept a list of times\n", "proba": 2.2594397819375445e-07} {"commit": "aa34bbc45f0aba1de5434f6f6ab6a934a8521492", "message": "add docs to the introduced classes\n", "proba": 3.216586037524394e-07} {"commit": "609c279a9451a99ef143970eee8bacfb588a217b", "message": "[FIX] do not relay on _obj to know if the cursor has been closed\n", "proba": 3.4567989359857165e-07} {"commit": "647dc6e128c84c0bd8f31a3e9071800d594bda3a", "message": "Include prereleases in specifier check\n", "proba": 1.2895158363335213e-07} {"commit": "a1e4cf256943cfad2792e3b8227b74fa15a7cdf3", "message": "export: fix for get_full_name and fix for finding bone parent block\n", "proba": 1.8074069885187782e-07} {"commit": "a92776f8aaa89d730009b241e1e5e21575a05a3e", "message": "implemented Insert and Remove\n", "proba": 3.036449811588682e-07} {"commit": "d54915430f9304d897d3210ae90c29c1e07603a3", "message": "see #1152 for details\n\n\ngit-svn-id: e70f47238a868777ecefe75ba01929cffb2d8127@1777 d8b24053-1f83-4035-b5c3-ce8b92cd91ad\n", "proba": 2.443936466534069e-07} {"commit": "41872fd31f2090d1c73ebd02291b17561c35371d", "message": "Re-enabled the repr method of EPConnectionEvent, now that ParameterizedObject's get_param_values() does not generate a new DynamicNumber.\n\n", "proba": 1.064827586105821e-07} {"commit": "dabc82eeab42c293c0ac40186e1cd35c152bb91b", "message": "Minor indent adjust\n", "proba": 5.033288061895291e-07} {"commit": "a081a6ca303fd40b5a5e74de6837193e939c11c7", "message": "dating conversion to multiple files\n", "proba": 1.0492847195564536e-06} {"commit": "4acf4cc5d2679af9bbcec5aa4a2a8dc83eaca027", "message": "update assign_targeting_score\n", "proba": 5.095240339869633e-06} {"commit": "572b09313820da36d4e37ef2748607fedea311cb", "message": "[FIX] the database connectin pool generate at least one connection to ensure earliest that the database is reachable\n", "proba": 6.753342631782289e-07} {"commit": "68493912eb97c8159cc364ab28bed2db09f31352", "message": "Snapshots are named correctly\n", "proba": 2.7189271349925548e-06} {"commit": "90e16977a277d7006e03c5a7fdd95e2954836d95", "message": "expose more happy clipping options\n", "proba": 1.3987794034164835e-07} {"commit": "063acbeb5c95bf8e02aff7cf7f238606d814567a", "message": "change billet\n", "proba": 8.975086416285194e-07} {"commit": "7ee4ef65de0dc64230420e7ed910385384094967", "message": "Fixed the '--license' option so it's officially an alias for '--licence',\nand now actually works.\n", "proba": 1.0857590382329363e-07} {"commit": "ce3ba83411d3d6ac98ab7c06accfbba4463ab73a", "message": "debugging input_many_name retrieval\n", "proba": 1.2869355487055145e-05} {"commit": "e4e10ee0ae5a18cfec0e15b7b85986b7f4fc4f9d", "message": "Fix prefetched fields in Institutions in API\n", "proba": 6.859443601570092e-06} {"commit": "06ccb761a5e29295b46ed5c925c9589537b5529e", "message": "fix field name\n", "proba": 2.6893660560745047e-06} {"commit": "94551cc987dad1b44168dcabfebe471e19898d43", "message": "made changes to urls.py to fit with new Apache and gUnicorn production config\n", "proba": 1.3312529745235224e-07} {"commit": "324dcb808288a0298cbf702167610e9c4bba0ce6", "message": "test: Fix incremental coverage stats (#4415)\n\nThe initial implementation had a bug where a class declaration\r\n\"statement\" would be seen as covering all the lines of all the methods\r\nin that class. This change fixes that case, so that the lines of\r\nmethods and inner statements are not \"part\" of their outer containers.", "proba": 1.2513491753907147e-07} {"commit": "9bdaf963843a9f0b44487ea3b258b50b328153d8", "message": "Remove redis connection logic from each view, make it global, keep it threadsafe\n", "proba": 1.8289999559328862e-07} {"commit": "192b3ebf2da89f3a10bfb4841039b314cb8c184f", "message": "Changed version number\n", "proba": 1.4607632010665839e-06} {"commit": "bfe01744ffea3be0fe363d820073325285c443c8", "message": "parse cran_descr_file and add to bucket\n", "proba": 3.514156787787215e-07} {"commit": "447a8bd2ba1dc448d19ca1cafa27f917b4aae18e", "message": "version dev\n", "proba": 5.909309379603656e-07} {"commit": "2b45ccfa122e9b197de1ff8a30d4b6bf9e0abe52", "message": "Save figure as results/analyze_graphs.png and rotate z-axis label\n", "proba": 1.521091235190397e-07} {"commit": "186677cf38276f5595a4c01c725bebbac3ca5de3", "message": "bug: passando por errado\n", "proba": 9.035296898218803e-06} {"commit": "035aa7f9f568aaed81dbb950042713e19b1ee140", "message": "fix server crash due to orphaned block in header file\n", "proba": 2.9186503525124863e-07} {"commit": "40939e937115d41456dc8d55406f5a17e4f05983", "message": "A test for dataset shrinking\n", "proba": 2.108978333126288e-05} {"commit": "1c48f9ad2c2a66d7c15c9216665b7f802d3498b4", "message": "Set deprecation_summary_result so we can summarize deprecations and they get written to the report plist if specified.\n", "proba": 1.1252786435989037e-07} {"commit": "e084a47ac6dfec84ebec372fe6d698f022ab3b27", "message": "anoter bug fix\n", "proba": 3.7462197610693693e-07} {"commit": "9474bb057885a7278e1abc3cf7ae48757944ef66", "message": "hacky full text search implementation.\n", "proba": 1.199191359546603e-07} {"commit": "438730abd6adb2686920095dbbad857ac176a7f1", "message": "-> ETL updates\n", "proba": 1.4299745032531064e-07} {"commit": "0e20109fa8febc38de278628b88712154cf46aee", "message": "Fixed imports.\n", "proba": 2.0198514505409548e-07} {"commit": "1e139567767a98914df90ec152d543bb8bfde38c", "message": "add test\n", "proba": 1.7454851786169456e-06} {"commit": "4e0a5e6328cdf2811e091a7b9e9881df04f1b6c6", "message": "Select ROI subtasks go algparams-first\n", "proba": 2.079648169228676e-07} {"commit": "4b3b1ed5c978c5bcb481bb593f9be08d105013b2", "message": "Proper tag matching\n", "proba": 3.328283582959557e-06} {"commit": "9db1c5a7a43d3aa9df626e405c348779c3b9a287", "message": "Adding fastKDE to compute rough lipschitz_k\n", "proba": 3.3431749670853605e-06} {"commit": "1cbc5d13917e89a24b97bd58d892d15121d76b4c", "message": "Fixing double circle on first state\n", "proba": 5.030663032812299e-07} {"commit": "ff88387f9e581b83e0ff0ded6149611279e254dd", "message": "Print a count of the DBs to process, when run with --verbose\n\nBefore actually processing the databases, print how many there are\n(in the same, existing line in which we print the actual list of DBs).\nThis gives us a convenient way to compare the number of DBs we had\nhoped to process, on the one hand, with the number we actually\nactually processed, on the other (the latter is already printed\nat the end of the flexible_freeze.py run, absent exceptions).\n", "proba": 2.509386604288011e-06} {"commit": "ef42e8090f4ad1f8bcd0bfd47d3da9bace50cbd7", "message": "More documentation for the logger.\n", "proba": 1.0894058277699514e-07} {"commit": "3328bc9ee47fbf2e35d146bed0d41cff1c68e8f3", "message": "scripts/gdb: enable completion for lx-list-check parameter\n\nSigned-off-by: Jan Kiszka \nCc: Thi\u00e9baud Weksteen <86fa4715bc84716ec9d37fefb4fdf5e310ecac76@weksteen.fr>\nSigned-off-by: Andrew Morton <5c1e68b099950c134891f0b6e179498a8ebe9cf9@linux-foundation.org>\nSigned-off-by: Linus Torvalds <69652caca27c8b940640ad396ab71f93cacec34f@linux-foundation.org>\n", "proba": 2.8450210720620817e-07} {"commit": "3f7a1ed1023ebe7da79c182c234d0ace6a2aae84", "message": "added more colors\n", "proba": 1.1274441646946798e-07} {"commit": "a397b5e0b1056266f13531d521884520f5ad1daf", "message": "Nameaserver job: use .update_search_index()\n\nqueries.changed() was replaced with .update_search_index() in\nreddit/3620e08d47dd81a0b46a28bc812e4550b05d65a9\n", "proba": 1.682669790170621e-05} {"commit": "333155a104d3f2baa45811162cb8e9cb93626000", "message": "Nameaserver: only support asterisk italics syntax\n", "proba": 3.479034376141499e-06} {"commit": "a7d5dcfa4bfe5434f8582581c7e4e78daef47563", "message": "changed nginx name\n", "proba": 7.340446700254688e-06} {"commit": "224d6c91e7204fd438a1643e9ac2f501e17f9c72", "message": "change log messages\n", "proba": 1.4516723467750126e-06} {"commit": "00fcd4c737afe309ab45acca9e95c2a1c1147ac3", "message": "sample fewer\n", "proba": 2.9224131026239775e-07} {"commit": "a82fc92938a647de620cf8a96fd5907c08060c32", "message": "fix mistake\n", "proba": 0.9999078512191772} {"commit": "f971aacaf38f63b52d991fcf3d8b91316f6baf8d", "message": "scripts: kconfig: Turn most warnings into errors\n\nIn particular, this will turn assignments to undefined Kconfig variables\ninto errors, which are very easy to miss otherwise (e.g. when Kconfig\nsymbols get renamed or removed).\n\nWarnings generated by anything tested by CI (scripts/sanitycheck) will\nbe caught.\n\nHave a whitelist of warnings that are not turned into errors. Some\nwarnings currently whitelisted should be turned into errors as well, but\nwould require a bit of work.\n\nSigned-off-by: Ulf Magnusson <01743f1c1deb1fe75271d62edb65757d98ac0bcb@nordicsemi.no>\n", "proba": 1.1335467888784478e-06} {"commit": "762b170064509af168480ccb972cd515a2eee6f4", "message": "Updated from Brython Server: 11/6/2015 2:44:02 PM", "proba": 1.0856513910084686e-07} {"commit": "3d3030f9d04720fe543c220eaf6a4fb76cfdab8a", "message": "Updated from Brython Server: 10/27/2015 2:41:02 PM", "proba": 1.0831528385324418e-07} {"commit": "2635288f7ff7db929aa96cc8140c4d272393e4ba", "message": "When processing finishes move the file so it does not get remigrated\n", "proba": 3.494726001918025e-07} {"commit": "4500a421021871ce3616c1dc54f7ad9c7c22469d", "message": "Updated from Brython Server: 1/7/2017 11:20:37 PM", "proba": 1.0945836947939824e-07} {"commit": "902a203dc810ee82176dfd676d9b0b3fcb0e1ab2", "message": "Housekeeping\n", "proba": 2.9225375328678638e-06} {"commit": "0036b2be67f6e08536d0ff0a70d81799ff90e6a6", "message": "[REF] runbot_gitlab_minimal: Uses fetch to get PR of gitlab (MR) (#155)\n\n", "proba": 1.2185243747353525e-07} {"commit": "3125df58aa21d82ca47c38ee4d935e9ed95df793", "message": "Revise peak stacking with update cubes\n", "proba": 2.0579183512836607e-07} {"commit": "e4af9c068cb54ba07601d34e0aed9bae1432f6b4", "message": "Removed long lines and deprecated calls to .has_key\n", "proba": 8.33525632515375e-07} {"commit": "5aa871b9fa34447a6a71485265718ae50c11ca52", "message": "Don't log news feeds\n", "proba": 4.863073286287545e-07} {"commit": "5179172b4a6d61ea60fec9cd7624725031017482", "message": "Make use of the sqlite3 package\n", "proba": 1.2532568689493928e-06} {"commit": "dda62539d0415f66e53b88af702c87314a5434f7", "message": "Rolled redraw() logic into blit()\n", "proba": 1.1852412171720061e-06} {"commit": "4769de6b93a5ac473555e811d082d0c4e489bd78", "message": "Update lead-in documentation for prepare-release script\n\nChange-Id: I3d70f9894fdb44d2bfb53da8d5cac723be8a2010\n", "proba": 4.921213871966756e-07} {"commit": "4faaa53122d5b64215663180614d2c154f253cfb", "message": "Updating factory for script runner\n", "proba": 2.7131073920827475e-07} {"commit": "893db748bf005d632ca1268337d0fa0d03239cd8", "message": "fix #54\n", "proba": 9.342817861579533e-07} {"commit": "72169058552ffd783c2ab309e5a77ff817928186", "message": "make sub dirs for fastq_screen", "proba": 4.625813403436041e-07} {"commit": "64bc6eedff1614bc61513dbe0f25819774dd92c7", "message": "welp, derped\n", "proba": 3.979540394993819e-07} {"commit": "0a0fab45e5ed5dbd2cd02a065a81c213447f6166", "message": "Missed a temporary directory\n", "proba": 2.3211349287066696e-07} {"commit": "3ba007847fff209e47af0ee6dcfc95452e2f888f", "message": "Fixed a small error in filesession_cleanup. Not enough arguments for format\nstring in status_file.write() call. I thought I had fixed this previously\nbut the fix was not checked in.\n\n", "proba": 1.2127578941090178e-07} {"commit": "7f22812917846dbc420eee8c80cf3a4ee7d2fc1c", "message": "fix typo in tag (#618)\n\n", "proba": 4.804661875823513e-05} {"commit": "19c0e8d856049677bc7de2bc293a87a0aac306f8", "message": "Fix wsgi config file access for HTTPD\n\nBug 1051081\n\nChange-Id: Ie1690c9b1b98ed3f5a78d935878369b7520b35c9\n", "proba": 1.143598183261929e-06} {"commit": "711a699f8f20c33c665b03b382dcf0ab26d62ebd", "message": "Reworking colors again.\n", "proba": 1.1379948716694344e-07} {"commit": "724337dafa88dfd589942f99ac04ee9ff4004d99", "message": "Added print lines to better log failed access to protocols\n", "proba": 2.0301291669966304e-07} {"commit": "c26c944b349aaaedae2e848946b00b4b2f5f3e13", "message": "Fix bug in Podoc\n", "proba": 2.871570927709399e-07} {"commit": "40e07033fdd35cd2825e20e07a72242799efa82a", "message": "fixing functional test\n", "proba": 5.065619461674942e-07} {"commit": "555c9f9bd938a29bbc5314800a93feea42f22a0d", "message": "added some commentary to 'pagination' helper\n\nit's kind of hairy in there. needed clarification. another sign that\npagination needs an overhaul.\n", "proba": 1.5567442801511788e-07} {"commit": "19d0b0aabcb271a6477502223abc70eed266d94e", "message": "Fix default TOR port.\n", "proba": 1.2872072829850367e-07} {"commit": "f1ce23e15e70eb316f209ea6dd12052db7c594ac", "message": "fixing unicode path on Python 2.7\n", "proba": 5.538377445191145e-05} {"commit": "197d739176e825b328880b1e6679a3ee801262da", "message": "re.split matching empty characters changed in Python 3.7\n\nNow when the pattern is can match an empty string, it behaves differently.\nPreviously it did not split a string like \"ABC\", but now it does, so we need to\nmodify the regexp to not match on empty strings.\n", "proba": 3.283103922058217e-07} {"commit": "24576717a90f09fc39f89e63491f3703c1f8d87d", "message": "change expression for snr limit.\n", "proba": 1.9989332145087246e-07} {"commit": "6a1aa8e6b640e0c6504cdbb9635f88ec9929cd7d", "message": "Update to latest config format.\n", "proba": 1.1721105153128519e-07} {"commit": "2435d05c2af96f6c3bda7fcfa3af4692a4550d33", "message": "Fix inserting breakpoints into borderline case (PY-23393)\n\n(cherry picked from commit 55168a6)\n", "proba": 1.1700370805556304e-06} {"commit": "c30f5dc2e616781452ce3b918694362b4b37d2d3", "message": "Updated upload method to send over a text file to the server. Cannot send binary files. Added close_socket method to properly close the client's socket.\n", "proba": 1.0753100809779426e-07} {"commit": "86813e4256594154e0b06c42ba23d879c170aa43", "message": "disabled profiling - should have enough data floating around to analyze later\n", "proba": 1.6811787872939021e-07} {"commit": "f912c5e1130053e790ef7c291b849b12fb749ee6", "message": "more possible fixes\n", "proba": 6.333509077194321e-07} {"commit": "8fe34e9c488c53eb8fde059da86921b3a5b48fe3", "message": "returning only the links data (FD graph)\n", "proba": 1.2167024010523164e-07} {"commit": "729df67c2bb25fcbc76781ab9a2221dc7e040fed", "message": "Begin rewritting director, not finished yet\n\n", "proba": 1.2252503722720576e-07} {"commit": "b7e3901411059bbfa8ab83ec1f6fbf135aa50172", "message": "Update UserTime.py", "proba": 6.658489724031824e-07} {"commit": "878d690cad9bac7009deab554fe070c1dfc3a1d8", "message": "Update UserTime.py", "proba": 6.658489724031824e-07} {"commit": "449caadb8ea5a65a614752e923b0478b9b2da53e", "message": "Update basic queries\n\n", "proba": 8.416556624979421e-07} {"commit": "306a65693153a421e2a60f199ba13eb826645155", "message": "Correction of errors when using an existing configuration file to create a new configuration file for a new video, mostly in the participants.", "proba": 1.032387189070505e-07} {"commit": "9ea50556a49553be376160381be916cfc94b379f", "message": "More fixes on heap logic\n", "proba": 1.4773520717881183e-07} {"commit": "8eea594e684053a7fbfe1f2f946343cf809be058", "message": "Rename server tests\n", "proba": 1.2902186199426069e-06} {"commit": "2f20ad150ef7983fb5b8334ce526e46b7bb95ecd", "message": "switched to the simplejson module bundled with django in AJAX app.\n", "proba": 1.1259001553298731e-07} {"commit": "6eb41b8979645f42dd8417cff4c29af1e130c809", "message": "Add SplunkDestinationConfiguration to KinesisFirehose::DeliveryStream\n", "proba": 2.8562104148477374e-07} {"commit": "5a4e2f8493e6cd6a32d4c9f22d50609908c38d41", "message": "Increases timeout for guest agent resize_fs\n\nWhen the guest agent resizes the file system, it may take longer\nthan the AGENT_LOW_TIMEOUT and should use AGENT_HIGH_TIMEOUT to\nensure the resize has sufficient time to complete.\n\nChange-Id: Ic3c030f60ca47d894eb25b83f05b63ef22d519f8\nCloses-Bug: #1288766\n", "proba": 4.146081846556626e-05} {"commit": "1ba8cadf93e80107902e142c4644d03668592c5f", "message": "cautodoc: add global and directive specific compat options\n\nCompat conversion will be done according to :compat: directive option,\ndefaulting to global cautodoc_compat option, defaulting to no compat.\n", "proba": 1.261659292595141e-07} {"commit": "c4984e2caefaebf9313ceadd6da093bfe157fce1", "message": "Change 'self.bot.logger.log(LOGGING.INFO ...)' to self.bot.logger.info(...)'\n", "proba": 0.00020363480143714696} {"commit": "2ca5cc7620be87e6793a9363dbf7b276fc6d04e5", "message": "More form fixes\n", "proba": 1.2013616412787087e-07} {"commit": "832422ae31da73b1dbc8dbc310d511e6c74c95e7", "message": "once more fix python call in gyp\n", "proba": 2.577965574346308e-07} {"commit": "94599ab9e28712e6ea4ff20b1fd6103dfcfa25d5", "message": "(HTCONDOR-772) Fix test_htcondor_736 again (now that don't create MANIFEST files for SPOOL checkpoints, as we shouldn't).\n", "proba": 1.0198964872643046e-07} {"commit": "adf004b82941ea80a752dbbd587deef12913385f", "message": "get_service_virtualisation_type() could return None, so default to 'virtual-machine'\n\nChange-Id: Idf29c3e99e34a2e44c066970c5363ef9e4428e18\n", "proba": 0.0036926125176250935} {"commit": "fa21acc470d9c32619b3c67dcce54c7b0a69a07a", "message": "Fix inadvertent requirement of hg, svn, git, etc.\n", "proba": 7.38874291528191e-07} {"commit": "671ca30892e3ebeb0a9140f95690853b4b92dc02", "message": "Fix reverse since we deprecated post_object_list\n", "proba": 1.4103330613579601e-05} {"commit": "690bc392400db64fd227e88d133713515fc427ce", "message": "Add Dictionary.\n", "proba": 4.775566253556462e-07} {"commit": "3b8c6093e5eeace847226d45edfa5ec0fc081a0c", "message": "PictureThing keywords\n", "proba": 4.4404080767890264e-07} {"commit": "f0a15471083659a984e9cd15d32e5a17a1c986c5", "message": "testing\n", "proba": 1.6199514902837109e-06} {"commit": "a03c61430abac8cac5e522a3bf391175cd261cec", "message": "fix tests\n", "proba": 1.2553598480735673e-06} {"commit": "9930cdb5976cd6b02e124e03e73046181ca44d2f", "message": "Extract code extraction code to a function\n\nThis separates responsibilities. It becomes necessary to define 'attr_name' twice, though this seems like a reasonable trade-off\n", "proba": 0.0004564055416267365} {"commit": "721f14975276f7b96d44e41694b348b273fdb787", "message": "last travis fix\n", "proba": 2.124491373933779e-07} {"commit": "a5878b1f1ff016a2337557a7d55502b9046a2894", "message": "add russia url\n", "proba": 2.508479701646138e-05} {"commit": "91e7b7e684bf6cdcfe96018a398e5005a1e959ce", "message": "addressing review comments\n", "proba": 2.2671368071769393e-07} {"commit": "424be3c0fda49c1111410d6eff719a36219640b6", "message": "Replace --include-sequence with --include_sequence for consistency.\n", "proba": 0.0002762468939181417} {"commit": "01d8a8415b1b178a16eb1fe0d283f9d1e3ec9bd9", "message": "comments\n", "proba": 5.451620381791145e-07} {"commit": "f488c13d42f55b99d74bd5c164bc999e558dc57e", "message": "Update woosh indexing script: Better handle specifying mime types to index. Add performance options for writer.\n", "proba": 1.0295968166929015e-07} {"commit": "5aa8a4bfb50b646ee386dde7d7d6d3e4b866441f", "message": "to test PCMDI obs\n", "proba": 3.9636967130718403e-07} {"commit": "c41fd66f774b0d67876d3d22beeb783ab5bfa442", "message": "Fixed #27113 -- Tested that setting HttpRequest.encoding clears POST.\n", "proba": 1.0194744248792631e-07} {"commit": "17b654c19f44dca1802b29bbf5d03070867e9e03", "message": "twister: rework json reports\n\nRefine structure and accomodate more data, this report will serve as the\nsource for a testplan, reports and retries.\n\nSigned-off-by: Anas Nashif <0d9952ec84ac43c159f6b7e7ed99a9080c00dd6e@intel.com>\n", "proba": 1.1973959601618844e-07} {"commit": "3eeeb844b3936063f4f0192d46577e3f9397c107", "message": "Fix ordering in cursor test\n", "proba": 2.2289386834017932e-06} {"commit": "acb2c007eade3f90d4042e5568994e8f4d60d1c3", "message": "Fix package_installed() logic on removed-but-not-purged packages\n\nThose have their .list files remaining in /var/lib/dpkg/info :(\n\nRunning dpkg-query remotely once for every package is slow,\nunsurprisingly. :( :(\n", "proba": 2.508154466340784e-05} {"commit": "8ed2f874804ebe803b416f2bfdefa8f929a9b033", "message": "Update company.py", "proba": 1.931449332914781e-06} {"commit": "a374a55c215c3684d2173ab79fbef83c4e08c8f7", "message": "kanal5: yield the subs", "proba": 1.130824693973409e-05} {"commit": "bfd5f62bd965c521fa76ebb03ef9d5c3a0f8ea9d", "message": "Locate and replace asserts\n", "proba": 1.4556733276549494e-06} {"commit": "1ef40217fbbcd0e74024b5eb561d855f54935026", "message": "binary search\n", "proba": 2.0343579308246262e-05} {"commit": "6f12640e1e4ae46304ccf2b42bd8bb93cc427bf5", "message": "qbrick: http-rewrite", "proba": 3.01896363907872e-07} {"commit": "d80f0b1d6787990d31a87d34ea7c1532dad9bea9", "message": "Using json for task and result serialization.\n", "proba": 1.6306388772591163e-07} {"commit": "6e41e9ee88ce5de84e37eb5c7837474e1e71eb8f", "message": "Compute G-R stat, and mean/std\n", "proba": 0.9982457160949707} {"commit": "74e4e5e507d908950d4458dff5ba4aa5c712866f", "message": "Allow localization of \"Self Informations\"\n\nAllows the string \"Self Informations\" in the plugin of the same name to be localized by wrapping it with gettext().", "proba": 1.262116597899876e-07} {"commit": "b3240d22bd209916b83590cb51ec2b0ba1e45eb8", "message": "fix: dev: Fixing wrong attribute.\n", "proba": 2.924897444245289e-07} {"commit": "93bdcc16101852c6390fba1eff879d13fcdc063e", "message": "Remove leftover comparison functions\n", "proba": 7.595456281705992e-07} {"commit": "50e4b68620c3e95eb1616b17af5fa3053541fd1c", "message": "Added mead format reader.\n", "proba": 1.1417822776138564e-07} {"commit": "4c7b02b8d6a9602c452ee72c53d1a925cf21c893", "message": "Unskipped unbroken test. :-)\n", "proba": 4.2609545403138327e-07} {"commit": "78253e2f6785b52967758f9e14e271df01143265", "message": "Example with nonuniform sampler adjusted to the next version (objectified) of random multitone generator\n", "proba": 1.2415578964919405e-07} {"commit": "1b15631bdad5cd75ba62b7c2bebee6b86a2bc9af", "message": "spelling\n", "proba": 0.0006481820018962026} {"commit": "cf2534bddf6c9eed92295159cdefdc2a1d88c89a", "message": "Added multithreading\n", "proba": 2.1296619934219052e-07} {"commit": "86c820db23bf70d9048c801d35187dfc1c4c1949", "message": "Testing efficiency changes\n", "proba": 8.014637842279626e-07} {"commit": "de90efbc101794638728bc8da82708929286bdbc", "message": "Fixed arg issue\n", "proba": 3.728733020125219e-07} {"commit": "98dcb50560266fdc3b475f7e0d48627e7cf9abc0", "message": "simplify provider decorator\n", "proba": 2.5158587959595025e-06} {"commit": "71c025ceeee47d288c62f986b24b8df6ec022f0a", "message": "Added todo to reittiopas.\n", "proba": 1.1308340219784441e-07} {"commit": "8df46a1658c3d3fbaac34ab1d6e1e3330706697f", "message": "DOC: improve doc (especially for file angle_image.nii.gz)\n\nFormer-commit-id: 0effacc2ff7e33de79570a1edec10d24379d46bc\nFormer-commit-id: 2600970ccab2f52cebbe0c69d305330125766e34", "proba": 6.714228675264167e-06} {"commit": "4a288ac14190a813c1887eaa5a968262dfa3c29f", "message": "Changed median low and high to quartile lower and upper\n", "proba": 6.368131835188251e-06} {"commit": "597358c0089818353854b73edf8909d226c44431", "message": "Add missing keyword arguments to fake prange() function in Shadow.py.\n", "proba": 1.2584531816628441e-07} {"commit": "f0583829b533b5e062f9606d86fb90743eb38f64", "message": "\n\ngit-svn-id: https://subversion.assembla.com/svn/threedhst_internal/trunk@85 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 6.326168318082637e-07} {"commit": "750daaba7801152daffb1b4ea7cf2566974343f3", "message": "Documentation update.\n", "proba": 1.3079080929401243e-07} {"commit": "9b1e14012babad6fd38cb7cae00939c77823b38f", "message": "OPT: no default is given for the vertebral labelling file anymore and a check is performed if the user asked for vertebral levels but didn't specified any vertebral labeling file (issue #810)\n\nFormer-commit-id: cd669e2c7749523e0a4848ed57df06f01804c0e4 [formerly 4d89225c50f15b4ca1f71310c420f7f46603d249]\nFormer-commit-id: cf663b1e9f45fa03e7605174b4ffb5427a5aeb95\nFormer-commit-id: 823a3218594e232f0d8e94c70e0099bedab68b88", "proba": 1.1678303053486161e-05} {"commit": "76f19672f350a028ae4018d2c2a63e69f816c386", "message": "Fixing #520 and #519\n", "proba": 1.1684970786518534e-06} {"commit": "72d0884bab8dcc2ba51f827c8e9ed30bcef695cd", "message": "Remove module level directive decorators.\n", "proba": 1.3017036337714671e-07} {"commit": "a22820c7cdf743df8dcc4b84a89a0ccc1a8b3d6e", "message": "Check for anonymous user in get_address_form #4224\n", "proba": 3.5773209106082504e-07} {"commit": "f8d7fbc9333fd73532e0cbcf8f380325c97ad80f", "message": "UDS catalog KTOT_COL = 'f_K' --> 'f_k'.\n\ngit-svn-id: b93d21f79df1f7407664ec6e512ac344bf52ef2a@1075 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 0.0015495105180889368} {"commit": "74e4ec046efbe0725e650b3ff8d26c3b5a8e5b69", "message": "fix debug message\n", "proba": 5.122788934386335e-05} {"commit": "34b2c332b8d1209985b37f4e440954a15d4004d3", "message": "create directly tar.gz into final directory\n", "proba": 3.711115823534783e-07} {"commit": "79ffd869214e5232d907e46c077faf653a33c114", "message": "add serialize to LogReport\n", "proba": 8.271289857475495e-07} {"commit": "4508bd2dd26a192e810cf564aaa24ec8e43b2ec8", "message": "NEW: possibility to output centerline as ROI\n\nFormer-commit-id: 0020e21d224a3b8ca3c6491ce85c640528abaa8c", "proba": 5.491581396199763e-05} {"commit": "d7fc900ea87bf87bf1d00390bd17b6dbe8d7e4e4", "message": "Ranked people by rank in order to group them correctly.\n", "proba": 2.402128416179039e-07} {"commit": "634305c2366991badc0c54a797e4294b86166879", "message": "make fname_rules address family dependent\n", "proba": 0.00019954107119701803} {"commit": "278a567621d586af74a1c845de0a1426b686c72e", "message": "Version 0.25.1\n", "proba": 3.5818032984025194e-07} {"commit": "0f9c41a11f5a3e0b7df5b8e83af13dd9c64b34b1", "message": "detrend\n", "proba": 2.2186191017681267e-06} {"commit": "d14b3825ca2bb3f310fc6addcae7bb2a9126e2a2", "message": "Ability to run mutlipel analyses\n", "proba": 2.465983754973422e-07} {"commit": "dfb41b5f6b901f2184997760efaa0c115bc7dabf", "message": "untested\n", "proba": 8.438598342763726e-06} {"commit": "6b3e38b71c6b32475cbd86e524065b155b726e25", "message": "Centralizing kJtokcal function\n\n\ngit-svn-id: 87484315afa465323cdf587714f7c4c5564097ce@634 fc5780ad-6544-46e6-b60b-86c75d3988a5\n", "proba": 2.5014371203724295e-05} {"commit": "963373e091f346b9c2d8236c2e9808514adbad63", "message": "Improve calculation of ascii char width of the body\n", "proba": 6.264564262892236e-07} {"commit": "28f657881f3d5cfab0046cc13400583aea3ad9b5", "message": "Sort cursor if the sort parameter is passed into find.\n", "proba": 1.2366218982151622e-07} {"commit": "5324abdb1b26c3c482e725f62c021e66aa614d32", "message": "Can't be arsed to properly name commits anymore.\n\nI am very annoyed.", "proba": 4.238382643961813e-06} {"commit": "a045a4044a06f5fb096bbc9ec4f936e244465b31", "message": "BUG: fixed conflict with variable name\n", "proba": 4.829348654311616e-07} {"commit": "7477f969cd8efd624e7f378f7838270c53c2755e", "message": "Allow make_reverb_dataset's caller to set max_in_flight_samples_per_worker. Default behavior is unchanged.\n\nPiperOrigin-RevId: 376854563\nChange-Id: I37391782875fda63872b7d17db203d5f713c59c6\n", "proba": 1.2492864698288031e-05} {"commit": "80fe4a272fca80bb355a653740fa335f635bc851", "message": "fixing problem with text_file headers and posts\n", "proba": 2.8783978223145823e-07} {"commit": "3006e6ae34aab107d2fe9fe62328a52fd619ce73", "message": "alleqlags\n", "proba": 2.0261497866158606e-06} {"commit": "c6520dda008889ddb19fb83caf5bf84e58df0012", "message": "Add test_config_authinfo_no_authinfo.\n", "proba": 2.5674398784758523e-07} {"commit": "b353111f3d0332c980a11694c9ac55bb8cda8a36", "message": "Cleanup integration_test.bzl\n\nPiperOrigin-RevId: 148680310\n", "proba": 2.501921301245602e-07} {"commit": "d7e3852195f0ac40b4dd6daff5ce2bf46ca1fcd0", "message": "[MIN] 404 when sending from htdocs fails because of unicode\n", "proba": 3.262342147536401e-07} {"commit": "e6672c7a5ee40dd7d771825259afa7ce6e927437", "message": "\n\ngit-svn-id: https://subversion.assembla.com/svn/threedhst_internal/trunk@238 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 6.677337864857691e-07} {"commit": "27adae6cf6d941fac0c36efe77ad413826d6d9d7", "message": "Add all data to excel\n", "proba": 2.616658093756996e-06} {"commit": "bc8f6c43db01955d392c5e45897d12a6d352068c", "message": "shares: Not all days active\n", "proba": 0.00027488122577778995} {"commit": "94da9c0fd377fa7b899974c408999d3db6473470", "message": "added CCEX public endpoint method overlay class\n", "proba": 2.1469199396051408e-07} {"commit": "e05cfd44d7ecef8e33d93f2b3bc1dacf91dc2bc5", "message": "Make tableloader file extension regexes case insensitive\n", "proba": 0.0012962172040715814} {"commit": "532935a92c576f4737dd1631c38e0ac32dd1f984", "message": "Remove hash comments from blacklist --autopull\n\nAutomatically ignore all lines starting with a hash (treat as comments and ignore) in `blacklist_*.txt` and `bad_keywords.txt`", "proba": 1.2435141627520352e-07} {"commit": "2275ccc74be033231f60b976efc0ff148a3ccb4a", "message": "plot organization\n", "proba": 5.4816887313791085e-06} {"commit": "f86a84c301ed3d0e2becd2a32343f749bc09dbaa", "message": "executable file mode\n", "proba": 1.438313574908534e-06} {"commit": "57d7db93733dfe0c007b5ae0a01fb285d2860566", "message": "REF: updated dynamic range for fslview command\n\nFormer-commit-id: ff52cc0625e73157e82f8cdff40b71f6a509ac46 [formerly bcd1e93db6fc0bfaeb4a4955c71a1c40ec94cdf4]\nFormer-commit-id: 2fad3f07826c017aa816f5a1341cfcc7fe051245\nFormer-commit-id: cd8defdb623560044e49e5ad7206832855165ae2", "proba": 1.1754490287785302e-06} {"commit": "9877b005f30ba79b6a542d77b6b4907e186b2243", "message": "Kom je ook 4!\n\n--HG--\nextra : rebase_source : 69f5fbd1714c433f8f5462453aad44c665785f67\n", "proba": 8.121611472233781e-07} {"commit": "42970459bd1fdb3d81e13d9eba50b12987169f1a", "message": "push_gitlab: add a post_push free function\n", "proba": 1.3936837603978347e-06} {"commit": "b082629c5dfd2fa0b199075ca090b448de112bab", "message": "changed port back to 8080", "proba": 4.706158506451175e-06} {"commit": "db88dc8ca80026d3bdafd81b563f39234be261c8", "message": "Make tests on ingest with duplicates somewhat more robust.\n", "proba": 1.375147178350744e-07} {"commit": "8805d4e3aa518a258d9ecf897943a9599d4d973b", "message": "WebStyle: legacy form files fix\n\n* Addresses problem in DocExtract with retrieving POSTed files.\n\nSigned-off-by: Jiri Kuncar <2bdffcb416fed3002465740d19a053a39918cbe5@cern.ch>\n", "proba": 1.121069033160893e-07} {"commit": "0222e5564eb2dd64d4f5d3146aeeee50ed0e1f85", "message": "Small param changes.\n", "proba": 1.6623674525817478e-07} {"commit": "dd64b41259ee430926afb7147cdc242d397e74d7", "message": "Clearing ret registers when creating VFG if we are not tracing into functions.\n", "proba": 1.0687138995990608e-07} {"commit": "6fd4cda9a8823878bdbe50ef42234bfbb9fbf2a5", "message": "LBSD-2150 Fix solo subscription issue in web browser\n", "proba": 1.2222405132433778e-07} {"commit": "02b66a65d08fa87d876daeb12d6c0762654aa6cb", "message": "DiscourseDocumentGraph: during node/edge creation, add {self.ns} ...\nif layers attrib isn't set\n", "proba": 1.7214800607234793e-07} {"commit": "cbfaca9b475c4be52d55be766aa397f3d63bf78e", "message": "final!!\n", "proba": 3.1478955975217104e-07} {"commit": "ce54a98f42d8316b1c3b7edb88dcd4e6f8a928b9", "message": "Add doc.replace() and boost doc.images performance\n", "proba": 8.332760899065761e-07} {"commit": "acb10649459050819b68e832f6a77ed1e198e8b8", "message": "Trivial edits.\n", "proba": 2.087938923978072e-07} {"commit": "720f491381e2a76035c96f20d0a38f8b7ae19d04", "message": "1. Handle the situation of empty value of PCD definition of INF file\n\ngit-svn-id: f3880c1fc5096ce2109c8aec392d8e07f619f417@654 c2973edb-eda0-4c78-bc6a-9341b269661f\n", "proba": 1.3571211638918612e-05} {"commit": "59d67bc053b13b3ec400cf9d157777a5895aa67b", "message": "validated stress test for 9.4\n", "proba": 4.33194458082653e-07} {"commit": "b87b526ea8bcbd2a546adcfd56e467631322f165", "message": "Better fix\n", "proba": 2.22933203986031e-06} {"commit": "e9930f1a1cf407062db523590fb5be237cb0ecf8", "message": "OPT: sct_register_to_template: major changes. Includes new straightening method.\n\nFormer-commit-id: aec1aecc564786db9fdbc62795a5a7b9a8f35bbe [formerly 02d43d062b33af10f3868b492849fe9063e633c3]\nFormer-commit-id: f03db1308f2df2472fe40783532bc69fdf417c80\nFormer-commit-id: cd486cf65c7027adce983f1d4f3380e36c2cb8a7", "proba": 1.0264482625643723e-05} {"commit": "24b3a085471d0ccf048d23ee4f2cef1d5cdf97ec", "message": "Fix error message for unexpected operand\n", "proba": 1.986596362257842e-05} {"commit": "06ef64e62fe8bba16365ebe42cc43bc3a46e78dd", "message": "SnapPhiCorrLenDigger, add corre L_zeta\n", "proba": 7.462393568857806e-06} {"commit": "7a7a014e710d3f536288f589190caa90ea478c46", "message": "Added overuseCount()\n\nAdded function to get the number of times the participant was prompted\nto retype a word from the participant's log file. Eperiment 2 only.\n", "proba": 1.0582311205098449e-07} {"commit": "defa48983d145a634acb5a4903a2cb414a93c68e", "message": "pdb removed\n", "proba": 2.4089808903227095e-07} {"commit": "bab4ce764a51d0dd3a68675aaef149320aca241e", "message": "Adding raw_input function", "proba": 1.2896113730676007e-05} {"commit": "3afee882cac20e595ab1abfd7d142df7ece5dc46", "message": "Location fix\n", "proba": 9.242384635399503e-07} {"commit": "fc353499d00d9c9c3454de82b3ac2a4d724c485b", "message": "Add flatpages contrib to installed apps for tests\n", "proba": 2.147137081465189e-07} {"commit": "ef3cdc9675857ef62312c242d43995f1aee87a38", "message": "Utilize colors and line width in VTK visualization module\n", "proba": 1.287463788912646e-07} {"commit": "d04ded85e01c4a9e0960d57a37ecd83fc92fa5cd", "message": "Add a fallback to mini_installer_tests' quit_chrome.py exit logic.\n\nBUG=264859\nTEST=chrome/test/mini_installer/test_installer.py\nNOTRY=true\n\nReview URL: https://codereview.chromium.org/187323004\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@255044 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 0.0032515903003513813} {"commit": "5a0778cf52fbdec9bf4ab874a2b7fe3c62a72dff", "message": "Fixed #138: Added some extra reserved names.\n", "proba": 9.954690227687024e-08} {"commit": "d0730ad102143784c2230a090c443e5023842368", "message": "handle dates before 1970\n", "proba": 0.000803729344625026} {"commit": "d0e50442ccb0846b46ab5990c537911e30984daa", "message": "state.mesh\n", "proba": 3.889229992637411e-05} {"commit": "d267a86d1734f8cb47750efdf8a8089eed26d019", "message": "helpers.py - performance improvements and bugfixes\n", "proba": 1.285638120407384e-07} {"commit": "eba39b722d6d025ec351beeb35e7dadd55ef82f5", "message": "correctly treat hashes as little endian\n", "proba": 0.9986011385917664} {"commit": "85f45765fb246d7bd45076c5a527c3d6b42af39e", "message": "plt.close()\n", "proba": 1.3357297348193242e-06} {"commit": "e7b20e4968df16eb95659028a937aaffa1d391bf", "message": "BUG: disabling rotations in sct_register_to_template\n\nFormer-commit-id: 27afcba4b3ce2129b71c0111fa5181520ce38a2e", "proba": 7.970945716806455e-07} {"commit": "2270f63e7f8583787cd3051fd5328927e17d5288", "message": "Fix black\n", "proba": 1.1182750313309953e-05} {"commit": "1c512c5478b78b22a592ab51c249335feb4e0e3e", "message": "TST: Update test_algorithm.py to incorporate TradingEnvironment.write_data\n", "proba": 3.483798138859129e-07} {"commit": "49a6154b9a60d95b78587798bd72352464dbac73", "message": "agregado formulario Dia\n", "proba": 4.398159035190474e-06} {"commit": "68f53facd68ecb9c8b4c368d75f67d8b7646a4d4", "message": "changed to process message dict instead of command/val pairs\n", "proba": 4.3723875364776177e-07} {"commit": "2b9db7d7f2e7ae5fda68aeac49efccd52410b3da", "message": "Added single unit tuning. Revamped SMV calculation.\n", "proba": 1.0042855080882873e-07} {"commit": "66c0b33659f5c2851c95edf54da5e5f74af74149", "message": "Adds fractions to annotate.py\n", "proba": 2.9086768336128443e-06} {"commit": "e2ada702d53ab0b5dd5c7c425b79ee1fed3a809d", "message": "fixed bug in Lexeque parser\n", "proba": 3.026539445727394e-07} {"commit": "2f57d2122995aad22c44f9f134822eeec38dc70f", "message": "case-insensitive search for existing project\n", "proba": 8.957481622928753e-05} {"commit": "524a6ce4e27e19401b34e908022a9e56350ebc90", "message": "Fix duplicate lexicon title\n", "proba": 0.999998927116394} {"commit": "cf99ef1d08393f9225a053673d156685f4feb7dd", "message": "Updated space time realignment example to use Matthew's volumeimages module\n", "proba": 1.3772023521596566e-07} {"commit": "202d0a199a59a0e8ca5651785aa4497b1e0047e7", "message": "utils.lang.meta: Add default implementation of Language.validate_code\n", "proba": 4.1713937548593094e-07} {"commit": "7e17d9a1dad879db560dea0ab8ed2bd66e2f492c", "message": "split method into two, use slightly less cryptic variable names\n", "proba": 3.739370731636882e-05} {"commit": "6e4aecdcb0a1b65c4d39e22a0ff83102a41f61c4", "message": "isfinite is not found python2.7\n", "proba": 0.0038933942560106516} {"commit": "417c46221fbcecf22ffa7c27d6e1ade76dea74df", "message": "disable caching for replacement frontend. a) the underlying frontend will cache and b) this cache is going to be very unreliable\n", "proba": 6.037252023816109e-05} {"commit": "4ebfbdc7f73df96723e737c2aa2930725f0d0aa4", "message": "fix bug in merge\n", "proba": 5.118512262924924e-07} {"commit": "e15228b605669e3f9a0691d98b97417257f117ea", "message": "add missing parens\n", "proba": 0.9999328851699829} {"commit": "efe82298268d33fed08d41a6b10628caaf9f3fbe", "message": "Trying to understand seg fault in Travis\n", "proba": 4.761623131344095e-07} {"commit": "16c1fc2eb2a46a9b661c2f265023ca4aaf445071", "message": "PUBDEV-1843: Grid testing. Added more detail to error messages.\n", "proba": 9.63677422305409e-08} {"commit": "bde5f87e92227734d86d8caf5fcafcbf81b3a272", "message": "Add rename table\n", "proba": 1.0255060942654382e-06} {"commit": "6651bb11e82eccfc25582918085518a0aa97b7ce", "message": "removed sys.exit; added try-catch\n", "proba": 1.0066470395031502e-06} {"commit": "8382c12140185f841b526530b9996c582dcf5485", "message": "Turn the db_name into a fixture rather than hard-coding throughout.\n", "proba": 1.3809993504310114e-07} {"commit": "27bcdcd6295c4b5cdfe93374d2e734f0a2e7e5c2", "message": "added test for issue# #11413", "proba": 1.409143948194469e-07} {"commit": "54d148e8d5c17ffcb84869b5ea08fb1b5f1b8883", "message": "Changed device collections to be case-insensitive\n", "proba": 0.9978128671646118} {"commit": "2d55d95c623bef4848131878061887854ff8a971", "message": "Update utils.py", "proba": 6.909024250489892e-07} {"commit": "c9bf3aeedbf9b1ec302079bf7659d5cded30dd24", "message": "[FIX] stock: put check to be able to find product qty with prodlot_id=False\n\nbzr revid: rha@tinyerp.com-20120705082708-87buh8m7kexrvk2p", "proba": 7.092947271303274e-06} {"commit": "e72aca958ae94fe76514875811923dc877c89398", "message": "stm32fp: Flashing does not work under reset.\n", "proba": 1.1202311611668847e-07} {"commit": "a62b5955d9801f25736c42545191ff5a76a2e5b1", "message": "Refactor UserFactory and add CommentFactory\n", "proba": 2.012988176147701e-07} {"commit": "5ec48e00d57ea0a25de79299d9fadc89b482d1b8", "message": "added some tests for code coverage\n", "proba": 1.7067401358872303e-07} {"commit": "3c06c5082adef5b4ec3587cf874adb17b7ab22c3", "message": "Remove travis fence from mpl-using KDE test\n", "proba": 1.4800708925122308e-07} {"commit": "2fdbc4e2bafd9b6f366ef221f8439a1e1b24e019", "message": "Added note about vtkTextActor3D upgrade required.\n", "proba": 1.0299503827582157e-07} {"commit": "6467da40ab27cb2006b91ad342614fd7ffa0c7ad", "message": "master db check\n", "proba": 3.09376474660894e-07} {"commit": "420d104d9e674b96363db5c986ea9eea4d411c92", "message": "Add updated template settings to conftests\n", "proba": 2.1748991230197134e-07} {"commit": "8d6287397b47fcaf98cadc59349f1db68c7b2d93", "message": "Update 1.4_replace_whitespace.py", "proba": 6.506783734039345e-07} {"commit": "8e4efcc34f06d2add2a3b84e4940d91a7568f4f9", "message": "fix submit bug part 2\n", "proba": 1.2907166535569559e-07} {"commit": "0a19dca966410a28b1871bca292206a6912584cd", "message": "Added the all_samples_missing field\n", "proba": 2.9213626362434297e-07} {"commit": "59bff82fee13b1f7b34b4bb2e76b78699d89a0a4", "message": "Update align_axis to handle axes antiparallel to 001.\n", "proba": 1.1144833678145005e-07} {"commit": "aa266dccd212d65298c5a82eb378abfebb51e261", "message": "Update wording about None values for SmoothnessMetric\n\nI think part of the confusion in wording is the use of the word value (as in telemetry value) and value (as in a telemetry value's value attribute).\n\nBUG=\n\nReview URL: https://codereview.chromium.org/581743003\n\nCr-Commit-Position: 972c6d2dc6dd5efdad1377c0d224e03eb8f276f7@{#295377}\n", "proba": 0.9994327425956726} {"commit": "9cf14197ac575cbbca08687bc2815edd364e19f3", "message": "[FIX] stock: recompute the qty_available based on the location instead of using the one in the result of the browse (opw 606423)\n\nThe qty_available field is a function field that uses the information of the context (eg: location) to compute the value. Using the global browse record would return the same qty_available value for each location (and then produce way too many account.move)\n\nbzr revid: mat@openerp.com-20140429124256-ljph37kijosg5dqb", "proba": 5.6372427934547886e-05} {"commit": "20ef650b8be96eb7537aaee7ebc17dfc5ee96ac0", "message": "validation commit\n", "proba": 5.216808176555787e-07} {"commit": "c48f07e7cd09c00a55fe96af210c0607452a2bcd", "message": "fix test for py3\n", "proba": 1.0469417475178489e-06} {"commit": "b606f0fb35c0f9563b8e6e0b956ae47aec90b2d4", "message": "one more monkeypatch in the tests\n", "proba": 1.3237304585800302e-07} {"commit": "b9e8d13066d12ee779376fdfd24ac2b34ac73ba2", "message": "Update server.py\n\nUpdated with some more usable interface to the server. Can now add jobs after starting the process.", "proba": 1.0202758460309269e-07} {"commit": "a67056d5c3c1aed5a776f1f247656476d6e37029", "message": "Fixed bug with url building\n\nThe requested server ID contains the hash tag, which makes the sent\nrequest url suffix of the form:\n`/v2/tenant-id/servers/!@#$%^&*()/action`, which includes a '#'.\n\nThe path of this url is `/v2/tenant-id/servers/!@` and the fragment\nidentifier of this path is `$%^&*()/action`. This is not the right\nbehavior and might lead to failures when a backend server parses the\nurl correctly.\n\nRemoving the '#' from the ID fixes this.\n\nChange-Id: I1ce02e78324ccbca314218a8e62967db68e59a80\nCloses-bug: #1541761\n", "proba": 0.0115357656031847} {"commit": "fb38c44e2cb16c1ebd6e105d4e1c409aeff99eb7", "message": "farm.py - bugfixes\n", "proba": 1.3143976218543685e-07} {"commit": "75865c816159bbb5f689ed9774ca1c6e8e61d603", "message": "[IMP]:Survey:Improved the respons code.Ref.YSA\n\nbzr revid: apa@tinyerp.com-20100129082916-8ofo6xlrl36mvykf", "proba": 1.7652554333835724e-06} {"commit": "49d4aa1e49a633423417d4cb556d204e25509893", "message": "Added base exception\n", "proba": 2.7636335175884597e-07} {"commit": "773b1d652fb3a2811411cd726aa5b83dcdc2d026", "message": "Simplified debugging of endless loops in lexers with random generated content. If the developer terminates the test by pressing Control-C, the resulting KeyboardInterrupt describes the lexer and content that caused the test to get stuck.\n", "proba": 1.1074778427655474e-07} {"commit": "211c1ed3c0ef2e2ac23c19b890346d43ee2aabc2", "message": "get proper joints count and fix Machine->Homing and Unhoming menu\nSigned-off-by: Michael Geszkiewicz <1353f14f196456fb320ac2b8adb59fdfeedb558b@wp.pl>\n", "proba": 1.027689791044395e-07} {"commit": "8a1b902b729597f5c8536b235d7add887f097fdd", "message": "Drop box should be off by default.\nSSL should be on by default, HTTP should be off.\n\n\ngit-svn-id: 81e381228600e5752b80483efd2b45b26c451ea2@816 e27351fd-9f3e-4f54-a53b-843176b1656c\n", "proba": 2.4873381335055456e-05} {"commit": "3e8d6e31f576fb857a1415c85a227f56225b8f06", "message": "fix database path\n", "proba": 2.245461018901551e-06} {"commit": "4e4611f505fbb91e0490bd0814380ea19f96ad6f", "message": "lazily evaluate next_bday\n", "proba": 1.3542590977522195e-06} {"commit": "908f906ef2792db9002342575104658185d6f712", "message": "Add a test case for rebuild of instances with volumes\n\n1. Boot a new instance.\n2. Create a new volume.\n3. Attach the volume to the instance.\n4. Rebuild the server using an alternative image.\n5. Check that volume is still attached to the instance.\n6. Detach the volume and delete it.\n7. Delete the server.\n\nRelated-Bug: #1440762\n\nCo-Authored-By: Marian Horban \n\nChange-Id: I50557c69b54003d3409c8e977966f5332f4fe690\n", "proba": 0.9983489513397217} {"commit": "d798de5be244e5d243e41e535dcdc22182ddd051", "message": "installation: post release version bump\n\nSigned-off-by: Lars Holm Nielsen <7eaffca9f7cd98839b5821d0d23e09ff764b82cd@cern.ch>\n", "proba": 1.075868070188335e-07} {"commit": "1630bb891bf57052984301b9dd191826ca7ba18e", "message": "Update test_biobambam.py", "proba": 2.053377329502837e-06} {"commit": "345ffd4bc8192131bb3955bbc3346ddc1e7577ea", "message": "Added manual page\n", "proba": 1.3016676803090377e-07} {"commit": "6ab7f0144ab7115da967d00db098d06db018780f", "message": "version bump 0.1.20beta\n", "proba": 3.873754224059667e-07} {"commit": "1e3e6ea6c24e275a5a08f096968ae14aab2dfd22", "message": "Support custom schema classes.\n", "proba": 1.2071187427409313e-07} {"commit": "3abe91b75693986949c1c94f91c8c73e8704e69b", "message": "fixing error when user is logged off and try to access admin module\n", "proba": 1.7730557999584562e-07} {"commit": "f6f8f12da2bd704794e84187a1258d7fd26eb81f", "message": "Use Python instead of a shell process for calculating checksum. Moved checksum calculation to its own function\n", "proba": 5.042761131335283e-06} {"commit": "9c137b06a7e60ad955ecfc200bc8d86acbf605d5", "message": "Unit test logger\n\n- adds test utils methods\n- checks default log level\n- sets log level via spec file\n- checks messages printing depending on level\n", "proba": 4.4955746147934406e-07} {"commit": "331057ecf72a6f0945c0dd5b2af49eb6b3ec299f", "message": "update consume function to not use TODAY constant\n", "proba": 3.129582353267324e-07} {"commit": "76f9a271a6202613cf001d5a83b975664abd9cd5", "message": "update create_bnf() for new region selection operators\n", "proba": 2.1825891849402979e-07} {"commit": "baa2014b0f40457a5c2db01cdf86e603921075b5", "message": "http://luc.lino-framework.org/blog/2020/0731.html\n", "proba": 1.3503034779205336e-07} {"commit": "8fa0dca5cd5187126a10197883348fc6b16544b5", "message": "Test get campaigns by email\n", "proba": 1.2541448768388364e-07} {"commit": "b705ed1f1b7523f9d615993690b099b4f0f9435d", "message": "fixed user and password field IDs\n", "proba": 5.432635816760012e-07} {"commit": "278442d0db01ad7046b091c37c4cf65558ca0f67", "message": "Apparently it wants a file for log_file\n", "proba": 7.240277568598685e-07} {"commit": "31bd9233766ccfe3fdf4c67f6287ca996fab927d", "message": "Add dynamic pilot name parsing\n", "proba": 9.954203505913028e-07} {"commit": "f8d90bd9784d5b3557c0c55050f724c1f772f72b", "message": "Added missing import", "proba": 2.269983809810583e-07} {"commit": "464ddbf9731d57fb0473430e202e6e156845fb2e", "message": "Nowa struktura html strony + nowy wz\u00f3r nazwy pliku\n", "proba": 2.658951814282773e-07} {"commit": "26086318551806b17e218ca0b3f8f365151ab50d", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "951b58d68c695d78b3cfeb6ffe06a20a0926d293", "message": "[#180] Test cases for ``clone.setup_manifest``\n", "proba": 1.1247207254427849e-07} {"commit": "e9b270028d12ad7836b5b3b5775c08df06788f42", "message": "Allow more flexibility when calling module metadata and summary functions\n", "proba": 2.069591431563822e-07} {"commit": "b6e246a9d51f9272c63bc1a5f5c7e106d6eea802", "message": "increased default arraysize to 100, 1 is quite useless\n", "proba": 1.0200029691986856e-06} {"commit": "bdb700d896985eb62c98e3b668e15a3d29008921", "message": "Allow setting either side of symmetrical relations\n", "proba": 3.862407083943253e-06} {"commit": "c0bbffd031fb4bb4cff1711079c4b964fc1ce9f8", "message": "fix EpisodeUserState.__eq__\n", "proba": 1.0554308573773596e-06} {"commit": "6a4fa698cd02cd15cf5f97fda9f9c99d824d4866", "message": "configure: Add test for preprocess_spec\n\nSigned-off-by: Euan Harris \n", "proba": 1.1930828236472735e-07} {"commit": "c6a85d12924e55eb0eb43d64cc8d485374a7a065", "message": "removed warning in beat units tests\n", "proba": 1.3339865745365387e-07} {"commit": "eb58615d0fa7f4469be01f9e8dcb1cf44b8ce85e", "message": "correct context problem\n", "proba": 0.9999691247940063} {"commit": "1ac7650db7782545598ad605d1913f1baef26d92", "message": "Added /search/ url\n", "proba": 2.3679764638018241e-07} {"commit": "5d5d12ad05a66c7ef02623220dbc939da549349e", "message": "Added additional assertions to ensure across and down are interpreted as dictionaries\n", "proba": 1.7002142271849152e-07} {"commit": "47bbdde2c05cb1c050e08f740b7ea4d8e23b825f", "message": "utils: Small chunks of 100\n\nSigned-off-by: Rohit Yadav <902b9eb5dd62819678163bd5e00fbf0cbc7c264b@wingify.com>\n", "proba": 1.3050971858774574e-07} {"commit": "3afba1bd65d0ba27e73b2ddce814be9f0d7f989d", "message": "Changes in dict keys for event tests\n\nFixes: #852\n", "proba": 1.3327684200703516e-07} {"commit": "a8c2f95c8eadcaf40d6d8e9b7756f2975e5609de", "message": "Fixed bug where CAPE at an altitude was being computed incorrectly due to wrong height being given. Fixed a different bug where CAPE at a given temperature was being computed even if total CAPE was 0. This latter bug was exposed when the LCL temperature was colder than the temperature being evaluated. The routine was computing CAPE from temperature level to top of LCL, which resulting in a negative height that flipped a sign causing CAPE to be reported even though CAPE = 0 below LCL.\n", "proba": 7.960295533848694e-07} {"commit": "07680150ce9c930ec134beb4313de2c5170a04d0", "message": "Rename main classes to remove awkward and superfluous Boliga name\n", "proba": 4.531966055765224e-07} {"commit": "10e90f9599c8cb7b961873c731ef04462b1c0d3f", "message": "Modified nickname validity check. Now uses regexp defined at beginning of module (sre_invalid_nickname). Nicknames cannot contain ',@ characters or begin/end with whitespaces. This could also be the usage for group names.\n", "proba": 1.094145360980292e-07} {"commit": "b11c68b40a5c1306acd8e954c70d6c5331c34e9d", "message": "PyChecker suggested fixes\n\ngit-svn-id: ad91b9aa7ba7638d69f912c9f5d012e3326e9f74@192 3942dd89-8c5d-46d7-aeed-044bccf3e60c\n", "proba": 4.4692805545309966e-07} {"commit": "659cc817828361a3b406254ef4a87a37dc2ad990", "message": "Allow passing `shop` to `create_random_order`\n", "proba": 1.979994550538322e-07} {"commit": "d8a83ea3433948447c307a894b16c2b8a12247e8", "message": "Kill defaulting to json for now.\n", "proba": 1.1007053757339236e-07} {"commit": "ee28988ea62fb36b01b831a029a4926efc67bc9e", "message": "MappingC\n", "proba": 1.0513581401028205e-06} {"commit": "69f46596f189786fce0e2a087e6870e5d3059331", "message": "Fix figshare harvester date range (#764)\n\n", "proba": 3.329578930788557e-06} {"commit": "95971580f1b49098c51b9e45a8563503ff7c9641", "message": "cleaning up cli variables\n", "proba": 6.112493906584859e-07} {"commit": "4afa00449140232b78ed8eed32c35232b36986e0", "message": "Reorganized script to match Python syntax\n", "proba": 1.3312038618096267e-06} {"commit": "83f54f57170115cda98e7d1aa68972c60b865647", "message": "Fix test_upgrades_to_html.py test\n", "proba": 2.087233224301599e-05} {"commit": "e20f0d3ada72cb21185ca0c3c1d22a77ee254de0", "message": "fix rogue tab\n", "proba": 5.067986990070494e-07} {"commit": "964fed13d215c890ca95d3a6e439844be046ae0b", "message": "Woooh minfixes to improve speed\n", "proba": 1.339431179303574e-07} {"commit": "63c33edbea56a0afab9dd706898f3e80d138be30", "message": "email guard\n", "proba": 1.0895487321249675e-06} {"commit": "72a3b8e7303238ba00eeda53e3170eeda92d4c75", "message": "DEBUG\n", "proba": 1.0989197107846849e-06} {"commit": "d1bc644ab903d489a2a3189e1bfc66609703aff3", "message": "set_config returns config\n", "proba": 7.172294317570049e-06} {"commit": "9a094178f8e1d8e422b7ce754d172d9180214d6a", "message": "show source changes per version\n", "proba": 1.6118811174692382e-07} {"commit": "c2da2e969875127c1d09c2de4d02bd4aac3871f8", "message": "nanshe/imp/segment.py: In `wavelet_denoising`, check to see if the array recorder actually stores its values before computing anything.\n", "proba": 1.1490003259950754e-07} {"commit": "e42690a6f225952ddb6417edc90e27892c18d2a2", "message": "Move api to root.\n", "proba": 1.2706600216461084e-07} {"commit": "a2c472b09c3c3620eb1eb200b1e1bc9967e64963", "message": "docker\n", "proba": 2.726373850236996e-06} {"commit": "4f63c4925cdcc6bad28b07d217fa41046fe51331", "message": "TST: added test for dendrogram plotting\n\nTests plotting to pylab.gca() and to an axis passed in as an argument.\n", "proba": 1.0311926246231451e-07} {"commit": "e1be2c2eedec8f1513cb44bc0e61d63e17025970", "message": "Fixing key error\n", "proba": 6.14522548403329e-07} {"commit": "838cc9f3971d628157b47ba868d582fe4c26ba84", "message": "Added 'EXIT DELAY' pattern test to DSC arming panel state logic\n", "proba": 1.2274010430246562e-07} {"commit": "ee3b712611ed531843134ef4ce94cb45c726c127", "message": "Fix filename creation in csv export action\n", "proba": 2.3784061340847984e-05} {"commit": "2e2c082c108412325d0258649139955c8c626a3f", "message": "Remove plot-pos_call.py\n", "proba": 8.277498636743985e-06} {"commit": "439292d6913068fbe53725b72fa70436fdedbcc4", "message": "add args\n", "proba": 0.9987333416938782} {"commit": "b7fd782c108b2fab5d7c2be8aafcfbe184015c0d", "message": "minor fixes to config\n", "proba": 2.5838579631454195e-07} {"commit": "b1cc545775cb3de4899e75232d7225ac35ce5bad", "message": "More terse zuul output\n", "proba": 0.998457670211792} {"commit": "f30d1a4a4bb4d9d4880d02db5d6c8378d1c32ad6", "message": "Added neural net classification test\n", "proba": 5.466218340188789e-07} {"commit": "1d4b1fbd22297aad204cac0c067702eb9a2162b3", "message": "changed debug to true for nowq\n", "proba": 3.2233126603387063e-06} {"commit": "de508df58ff44f4485e40e3d9e06d1c34bb2e089", "message": "Move alert plugin init to alert init\n", "proba": 5.610498305941292e-07} {"commit": "69c7fbd8de41f0f464ab208443150522c6f014a8", "message": "Update MIST default to v1.2\n", "proba": 2.597813022475748e-07} {"commit": "7dd0a1fac34385b96afd9ca6786c13efe46b89c1", "message": "STATE_TRANSITIONS dictionary values are changed to strings.\n\nOur assumption that Python's functions and methods are first class members\nand using the method names directly as dictionary values doesn't seem to\nwork. So we are using method names as strings in STATE_TRANSITIONS\ndictionary and getting the method object using getattr.\n", "proba": 1.671121054869218e-07} {"commit": "46df56f25423ea9aa592f87eb7de44b1c25b8591", "message": "Blacking, of course\n", "proba": 1.287834692220713e-07} {"commit": "52c375b28d2f106712236f9b15906d48030bebfc", "message": "fix deal with buttons\n", "proba": 2.0813823198295722e-07} {"commit": "c7d80a91eeff6875ba48096fa4cb92b06a3ebe40", "message": "Changed name of survey_question to is_survey_question for clarity\n", "proba": 0.021414875984191895} {"commit": "23fb10ef96b2888f31f498206028020486c02b3c", "message": "Bump version.\n", "proba": 1.5077837645094405e-07} {"commit": "bf0265d21d77dbc28bc61f46c535ca75b727d115", "message": "CLOUDSTACK-3020: Fix assert error\n\nIf you do not give a name during vm creation, UUID will be set for Name\nand Display name will be blank.\n\nSigned-off-by: Prasanna Santhanam <82219615980488abd2acc1a3d71cfb58f0b2b8b6@apache.org>\n", "proba": 1.53203771446897e-07} {"commit": "11aeb0093d9a2dd1c1d089062dd2654b31d4ff23", "message": "Improve the error message\n", "proba": 0.9991275668144226} {"commit": "0a09f0b053414ea0c884ad3fc24061ba9c2e3d17", "message": "perf improvement, fix bug in batch split, minimize lock contention with better batch processing\n", "proba": 1.3247887409306713e-07} {"commit": "b9c60d95a39a07b789454a634c5a45931bd25fc0", "message": "Remove stray print from test_backendconfiguration (#5159)\n\nIn #4711 a regression test was added to validate the bugfix being added\nin that PR. However, a stray debug print from development slipped in and\nhas stuck around since that merged. This commit removes the stray print\nto remove it from our test output since it serves no purpose.\n\nCo-authored-by: Luciano Bello ", "proba": 2.3007623894955032e-07} {"commit": "93a52771cf1af2c6858d382bb7aed9302b40fd2f", "message": "Fixing merge conflict.\n", "proba": 1.9500375003644876e-07} {"commit": "98f068f6868faaac2423cc87c88663e0edb3d8d3", "message": "add more tests\n", "proba": 1.278939123494638e-07} {"commit": "52f086b7ad607aa55b70bc979c5de8198fb61063", "message": "The node contents don't include the object id, and include cost, heuristic\n", "proba": 9.502860507382138e-07} {"commit": "85a6030ddebaaef2644640b1d3e8e9447a730a78", "message": "send utcnow instead of just now\n", "proba": 1.3440876500681043e-07} {"commit": "e3ea41e2eb9731aca32acb8ee0fc85975383dc8d", "message": "Allow passwords to be compared to None\n\n", "proba": 0.9991037249565125} {"commit": "d8901f4b0fb524c5663610ca2cca6d5b5fcef6fd", "message": "typo fix\n", "proba": 1.0356772691011429e-05} {"commit": "d1b51333d2891e8d5531ab956e8e11dfb4e265a3", "message": "small tweaks towards integrated aggregate values\n", "proba": 1.4342973031489237e-07} {"commit": "4cafb33ee5be1dfceddcb966f7717d74327b2962", "message": "Print message when there are no styles to list.\n", "proba": 1.6601289587470092e-07} {"commit": "1bdbf409c6e00d0dabd3b3aa486010d8898bc2dc", "message": "Added continue_train program parameter, and modified tb_log_dir value.\n", "proba": 1.0639485736874121e-07} {"commit": "1e03772e601fb6ed0eb6aa59555af61c29b2650f", "message": "remove fungible in parent class constructor call\n", "proba": 1.0066057711810572e-06} {"commit": "274c9e3273ec6966a6b0a0e5c51e8b230fe468e6", "message": "Refactor to use api.views.\n\n\t * PEP8 Compliance.\n\n\tmodified: api/user.py\n", "proba": 1.799117939071948e-07} {"commit": "9b4e64e23da8b3364a4bcf27cb093609a79c1355", "message": "Fix typo in question text\n", "proba": 0.9999995231628418} {"commit": "ffe6903d97e8325e965d14a99af73a0f9d986da6", "message": "Explain timer interval=None on non-repeating jobs\n", "proba": 9.583391147316433e-06} {"commit": "f161955f836a0e605217760e79194ee41f4c8209", "message": "fixed autoref unpacking (was too clever)\n", "proba": 1.1128987154052083e-07} {"commit": "a9feb3ccfc65908710719af57a872ee9a7e54c23", "message": "simplify shade drawing\n", "proba": 1.2548402992251795e-06} {"commit": "51a3a349bc401487b79c3221b5edbdebb6db4be0", "message": "testing\n", "proba": 1.6199514902837109e-06} {"commit": "2f832b01ae833158b361e4cbae30eb35f2e06a1f", "message": "Update import spacing part 2.\n", "proba": 1.1075201200583251e-07} {"commit": "78e2f38ac78869fb067d069ea00cf2b189f1b375", "message": "docs for fullvars\n", "proba": 1.9502513737279514e-07} {"commit": "4a521e01e2a0e53c7a33bf554bd36aa9d1e8a719", "message": "rm bla\n", "proba": 1.8064315554511268e-06} {"commit": "2e5b4d0c4c485a19b42f61cdca981a15c459e469", "message": "Avoid using DSE split_exprs through Propagator\n", "proba": 4.337049688274419e-07} {"commit": "c661dc20d14d56d1d0f8e145e0274c9d481f25f4", "message": "Barchart fertig\n", "proba": 5.939214133832138e-07} {"commit": "b69d79788b8d2efd94eb82e47480f0a810b976a7", "message": "commented out code\n", "proba": 1.9048104604735272e-07} {"commit": "779aa4960c16a12ecb4a13fcd5543b1a16c96c50", "message": "tests: add integration test for $data\n", "proba": 7.643538424417784e-07} {"commit": "f52bcbe307918ed624463b99faff909cd7d4e58e", "message": "Don't stop if uforge error when create accounts\n", "proba": 4.0144948343368014e-07} {"commit": "f99b055b31b6344666618b2eb3fb86246d35b802", "message": "Remove sentry extra content extension\n\n", "proba": 2.9864105499655125e-07} {"commit": "6925ecf760bc42914eb62c223507ccfff2ec71f5", "message": "New hostmaskPatternEqual that's a bit more correct and perhaps slightly faster.\n", "proba": 1.0513205239703893e-07} {"commit": "652d52bb7d4d65d4eb0f499a50c847731d053f25", "message": "MNT:Fix typo in TypeError @hhslepicka\n", "proba": 1.849019099608995e-06} {"commit": "603020e308cb9279887a1d34cfc159bd4c5eab8f", "message": "dse: Start working on a more general splitter\n", "proba": 2.1256789750623284e-07} {"commit": "270cb20524297332a99ffef9d555860bbe1cc2ef", "message": "Fixed split to consider the case of http:// and https:// in the URL path in case of non-local sites\n", "proba": 4.456333897451259e-07} {"commit": "63eaf0faf56a70fadbd37f0acac6f5e61c7b19eb", "message": "Change sleep function to the end to do repeat everytime\n", "proba": 4.684136456489796e-07} {"commit": "c6ff74ba72848fc6b4a9b098c116fa053ff9694b", "message": "fixed syntax error (#331)\n\n", "proba": 1.377287759396495e-07} {"commit": "421110f2fddcda308e32f4de462bfed30f230726", "message": "[#2168] Add `instructor` badge to list of instructor badges\n", "proba": 1.2565344320591976e-07} {"commit": "7af4d115ebc56aa16384685a8bfd40e096ec4de4", "message": "Support tuples in translation rule for zeros_like_p.\n", "proba": 1.4209209098225983e-07} {"commit": "4dcd70678f4f5f8dc03c0053a1c3c81eebc5a5d7", "message": "ENH More efficient approximation of gradient in PairwiseKernel", "proba": 1.3122082975769445e-07} {"commit": "e79dd30836e8696f7753ee434eb055a5e38268f8", "message": "Apply YASK command-line options immediately to solution to ensure they are in effect for all APIs.\n", "proba": 1.002467442390298e-07} {"commit": "5a8745917367a438bd5dd36deda3becf10616271", "message": "added piece moving\n", "proba": 2.5262667691094975e-07} {"commit": "376e298fc014c6ce61bb431bdac7b503a6d570d4", "message": "Update ProblemSolver to allow inheritance.\n", "proba": 1.0986666154622071e-07} {"commit": "d8d4a1eeadefaa65623806bab7a9269f0426b485", "message": "fixed issue with imports\n", "proba": 2.090604880322644e-07} {"commit": "4c819629552a31748e4bb266c1c13726276d7944", "message": "Use cross version compatible iteration", "proba": 2.5593578811822226e-07} {"commit": "6c5f350b84fa29553265b9ec44a4436f14825221", "message": "Add south.\n", "proba": 1.4898872905177996e-05} {"commit": "72e8cf19bb2b98fa07fe3a4610e4b26744f2ad22", "message": "use mkstemp instead of TemporaryDirectory for python 2.7\n", "proba": 3.853426164823759e-07} {"commit": "90b991c19ef5249a09410b19c33f2c8bfe9b5ca7", "message": "Install pypy for proper architechture.\n", "proba": 1.138998086958054e-07} {"commit": "f8709d9b8cc8420ad1e238f7ed834cce2a56dd9b", "message": "typo fixed\n", "proba": 5.2752907322428655e-06} {"commit": "3953039a47c990dd98d5f9bf297c075ffd85f402", "message": "Comment change: cross-reference b/139530531.\n\nPiperOrigin-RevId: 263781726\n", "proba": 6.30383681254898e-07} {"commit": "25030673476f9eb99a4eff980d7bb050fdaa2568", "message": "Print size of result lists in check_files\n", "proba": 3.3096330298576504e-07} {"commit": "8c7fb32b4ffa5acf0d8c3cbc5dc80e870f3ded9c", "message": "Prise en compte des num\u00e9ros de rue complexes (b,bis,ter, ... )\n", "proba": 1.2778309610439464e-07} {"commit": "fefdea2a81bec7bdb8678671c0eb2dea8f7dea83", "message": "Disable TOTP token sync\n\nThis means token drift is always zero, so phones must stay synchronized\nwith Internet time.\n", "proba": 1.1643474095990314e-07} {"commit": "d115c0ceb08a350f7b367f61627ced5ab03df833", "message": "feature/oop-api-refactoring: Remove useless space\n", "proba": 8.099350452539511e-07} {"commit": "23806ab6d7ef0c951402ae85199e43e2e456a971", "message": "YASK: Pick compiler name from configuration for yask-make\n", "proba": 2.7514025191521796e-07} {"commit": "922abb2fdd0fcfa6b36c1ff3213d9c8ff11aad5a", "message": "Inline code comments translated to English\n", "proba": 1.0043456313724164e-05} {"commit": "006144eed1463eb89acacbfa8d5f02de01858003", "message": "making checksol a little more user friendly\n", "proba": 1.34402100115949e-07} {"commit": "cd0a3146a3d7d00baadedff6091646962f5de7ac", "message": "Update resources tests for Python 3\n", "proba": 6.418300699806423e-07} {"commit": "e28738d0c4a30036c9d73ecb67639842c95ad2a5", "message": "use request POST to get the posted text\n", "proba": 1.3170816259844287e-07} {"commit": "cbe7955f5a69901813a541bc40989d25e2c5e37e", "message": "refactoring: extract py.test fixture for burial_ground_data_import #477\n\ngeometalab/osmaxx-conversion-service#124\n", "proba": 1.4441743587667588e-06} {"commit": "1bba1f386daa3cbad8443da4fbbe0b6ec839b315", "message": "Refactorazation\n", "proba": 3.308226723675034e-06} {"commit": "e35b3d947e78cda10ccb635f2696bf6d80882992", "message": "Expression transformation. Simplify commutative\n", "proba": 0.9999992847442627} {"commit": "0761988a1147c3585962d77fd50df7c132594a48", "message": "Add basic Windows support (needs test and du)", "proba": 1.2093518364508782e-07} {"commit": "e079794d0bf561f92ca7fd7bd2f03a5ba1f68ff5", "message": "Fix the problem with _dfields cache and inheritance.\n", "proba": 2.3083323412720347e-06} {"commit": "f2038f6346c27c3084c46f06cf0dae45b45d7963", "message": "Middleware should not return any response for process view\n", "proba": 5.035869889979949e-06} {"commit": "561dee34b32aaffe74ba703bf0c65696674898bf", "message": "Refactored the __repr__ implementation.\n", "proba": 1.2281403769520693e-06} {"commit": "65584b74969fe61c0bb7fe33724d07911e488a2e", "message": "scores_json route tests added\n", "proba": 2.6770987915369915e-07} {"commit": "42a0b19a26f855d295a40ffff7d684e7deab3b4a", "message": "Added time zone selection field\n", "proba": 2.4881444460334023e-07} {"commit": "ae9b831f470163ed1e5a27437062575eafbbe3f3", "message": "Fix bug where strings were encoded as binary.\n\nIn python 2 str objects were being encoded as binary.\nThis is not inline with the bson standard and diverges from\nthe pymongo bson library.\n\npymongo:\n>>> bson.BSON.encode({\"key\" : \"value\"})\n'\\x14\\x00\\x00\\x00\\x02key\\x00\\x06\\x00\\x00\\x00value\\x00\\x00'\n\nold bson behavior python2:\n>>> bson.dumps({\"key\" : \"value\"})\n'\\x14\\x00\\x00\\x00\\x05key\\x00\\x05\\x00\\x00\\x00\\x00value\\x00'\n\nnew behavior python2:\n'\\x14\\x00\\x00\\x00\\x02key\\x00\\x06\\x00\\x00\\x00value\\x00\\x00'\n\nold bson behavior python3:\n>>> bson.dumps({\"key\" : \"value\"})\nb'\\x14\\x00\\x00\\x00\\x02key\\x00\\x06\\x00\\x00\\x00value\\x00\\x00'\n\nnew/same behavior python3:\nb'\\x14\\x00\\x00\\x00\\x02key\\x00\\x06\\x00\\x00\\x00value\\x00\\x00'\n", "proba": 0.999415397644043} {"commit": "f7c882f7193da0685c982dfe196345ef9e005e9f", "message": "Fix indentation\n", "proba": 0.0172440055757761} {"commit": "11b9486c98fe68738025e84e12cc1e0633c609b5", "message": "passing dict to urlopen\n", "proba": 4.052569124723959e-07} {"commit": "1e3e2942e6af816d28cb86dab43025a7826ee74b", "message": "iteritems --> items for py3k compatibility\n", "proba": 1.2342607647042314e-07} {"commit": "1885f5cbf152a54f7652eed8d92f206a674386e4", "message": "better historical explenation\n", "proba": 9.935444722941611e-06} {"commit": "3bef5697a7f3c0c0972a3cbcce3a4bdac01b7dcb", "message": "Update graph_hashes.py", "proba": 1.2358572121229372e-06} {"commit": "3c21f80781f3459da9e120fde16ffdaab7b82781", "message": "Do not depend in the base module.\n", "proba": 1.1345738215595702e-07} {"commit": "3f1861ee46f83c81efe3a5458fe6fef908941a78", "message": "hotfix for pdnm test (#220)\n\n", "proba": 1.1413075640120951e-07} {"commit": "973edd5080fb4a4d67e904849291bf04aaabecf4", "message": "ENH add RandomHashingForest estimator.\n", "proba": 1.215021114830961e-07} {"commit": "4f7011f1d7bed10ea2581bfec9a13ff352ae7c8f", "message": "ENH: Implement solution code for `BaseLinker`\n", "proba": 1.2579047847793845e-07} {"commit": "2c510c45a3aa472c61812f973af00832d46cf9f1", "message": "ENH: Simplified parallelization\n", "proba": 1.1350060731274425e-06} {"commit": "e955e063826b2368e9581bd892cdfd1cdfe4f8a3", "message": "Fix non-deterministic test.\n\nI hope.\n\nChange-Id: I813fdeb9ecd2e6f64871bc9499b0d0919a9cea83\nReviewed-on: https://review.openstack.org/14171\nReviewed-by: Clark Boylan <635fc31d01fa593720982fa0568e87170cedbe2c@gmail.com>\nApproved: James E. Blair \nTested-by: Jenkins\n", "proba": 0.9999991655349731} {"commit": "c716c99ff0bd0b5f4777fd18b02516f0325e694d", "message": "of course\n", "proba": 3.930406364816008e-07} {"commit": "3483cf570477300cd255d61fba84c5c36b9ff189", "message": "COSMIT shorten long line for pep8\n", "proba": 1.7323443444183795e-06} {"commit": "217cbae283d49f63ad6f64222cb0d98dad0bc741", "message": "Sendmail Error\n", "proba": 2.67902692030475e-06} {"commit": "8ea7da0baeaa34d795f479088f3ce7f9f3308073", "message": "DOC: Add License info to test_secondary\n", "proba": 1.2046210429161874e-07} {"commit": "d0f06000e70670fcd10ee9f5f3058c0f1b03f1b1", "message": "Improves signal sorting method (using numpy primitives).\nAdds dtype on tpr/fpr array creation.\n", "proba": 1.059545979842369e-07} {"commit": "ab13a045fd5b971b57e0301f3ed0df6d34eea930", "message": "Pattern entry: Show tooltip for fields with arguments\n", "proba": 1.5455019308774354e-07} {"commit": "cd334bac8d48907949d397002b987c261b32f46f", "message": "Fixed the ModelMultipleChoiceFieldTests to pass even on DB backends that do not reuse pk values after rollback.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@14928 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 5.378853984439047e-06} {"commit": "f8ed66a0f8cac29f9d6ffaf5f4c0d79a68b1d0f4", "message": "Add exporter for MVStation\n", "proba": 3.4346376764915476e-07} {"commit": "3fdad9fb89d70b8d81483b646e16d20f076e0ebd", "message": "tests: Test urxvt alpha\n", "proba": 1.8867123799282126e-05} {"commit": "46e201dca69fd100532cd500e50d00ea24631fe8", "message": "ENH better error message\n", "proba": 3.6420513538359955e-07} {"commit": "8c237200e2149e317997e8144bd1eda68e6c9c75", "message": "EFA, set coords for Platform, not TimeAndPlace\n", "proba": 2.4469542836413893e-07} {"commit": "42dbb87f79d395283dd6dae9ea1920d779bb3bdc", "message": "Select: search site and url by default; Select, list: allow multiple columns in filter expression\n", "proba": 3.31219382587733e-07} {"commit": "1b72a47739304c4cac11db4ce1b981fc51539a05", "message": "Pattern entry: Preserve cursor position when assigning row from popup\n", "proba": 2.2529374632540566e-07} {"commit": "5dc1dc574cc98e747b964a093055f9f57772115a", "message": "center the I\n", "proba": 1.2817735068892944e-06} {"commit": "aa9f02af7971805f3ca05eb6809adc32431357ac", "message": "modulo operation causing weird behaviour\n", "proba": 9.311729627370369e-07} {"commit": "750a0eb09a8dbd5d35a9485cac3f88fa6d7c0bcc", "message": "Add failing test for unicode character on chunk boundary\n\nRelates: #119\n", "proba": 9.827524536376586e-07} {"commit": "4c11ccd539edd6949aae63e4e461e240b62ad306", "message": "COSMIT remove unused import\n", "proba": 1.9712673804406222e-07} {"commit": "89d68883b636b29dcfbb3c56b2b766a54fc7b37d", "message": "remove debugger\n", "proba": 0.0001330543600488454} {"commit": "98a2e432d2620eac4ace3a76859e478cef060f22", "message": "[REF] Added getRepositoryFromDB to base class\n", "proba": 1.356646350814117e-07} {"commit": "de6c858ad7464761c010601a4eab3ebe79109130", "message": "adding super call to __init__\n", "proba": 1.2431755749275908e-06} {"commit": "b86348349906c88b6946f757485cf41f909a9a91", "message": "fix subtitle test for newer versions of ffmpeg\n", "proba": 2.5088169763876067e-07} {"commit": "9f35bf0bb8713732eadd02aad0d1eeaa67e9d6e3", "message": "Add MaxDuration validator\n", "proba": 6.275806185840338e-07} {"commit": "0dba41ef32a075a06803e47c03eb0c7ef92340bd", "message": "lib/datatables: Removed unused/commented code\n", "proba": 2.461723624946899e-07} {"commit": "b680e62098879f83e3dd387a23f550ebcb8210b9", "message": "fix dumb find and replace changes in test_tachibana.py\n", "proba": 4.336764334311738e-07} {"commit": "2b73327c8b7712e443d3be0249a8467cfdf97817", "message": "igc/parser: Added length checks\n", "proba": 1.910637763558043e-07} {"commit": "4a7484bccc9a92353681fb155f15629fa1059cd1", "message": "Format users\n", "proba": 1.004197201837087e-06} {"commit": "29bfc1049352f59fca0b625d0ecbc7177fb565c7", "message": "Change default value for certificate location.\n\ns/San Diego/Home\n", "proba": 2.357594348723069e-05} {"commit": "db191361eedb83b4f1ed3e7b923c6b18cd5e2539", "message": "* Add new tests for fancier tokenization cases\n", "proba": 1.235799089727152e-07} {"commit": "e05a4f17fcf0ec1bedcc8188d584d31616c4e0af", "message": "Update test_toml_file.py", "proba": 1.8489732838133932e-06} {"commit": "a1242c08da87ed2721fa1b0ff9db99458b2cc7ff", "message": "Encoder/Decoder mismatch on ByteArray. Fixes #153\n\ngit-svn-id: 84bf245b8ec830cf55532821ac8e6bb7d4787dc7@795 2dde4cc4-cf3c-0410-b1a3-a9b8ff274da5\n", "proba": 2.006623435590882e-05} {"commit": "5d47088d88a667c61156c7a779b0fa88cfb5ccef", "message": "Changed ``model.parameters`` to a list of parameters.\n", "proba": 1.2259819470727962e-07} {"commit": "7456947e3d623979652ec008621fd4f6c36d4bb0", "message": "Delete test_trial_new.py", "proba": 2.834749648172874e-05} {"commit": "bcc48bb1114694c010ae2c6715a8b623bce992e1", "message": "Fix logging, again\n", "proba": 1.8089606612647913e-07} {"commit": "99db4d73c59ca6a77e8a00547bbc9838631a6d24", "message": "allow usage of uncompressed pubkey for creating a sell order - This is a port in of https://github.com/curtislacy/mastercoin-tools/pull/23, to maintain consistency with grazcoin's code.\n", "proba": 1.0998994781630245e-07} {"commit": "a062c7bd512c24b1adb4da592220a614e15ae239", "message": "fix order by error\n", "proba": 2.4803932319628075e-05} {"commit": "210bf81fa0c7296c6e48e112dacc29ad2b89af0c", "message": "add raw_id_fields for users and topics\n", "proba": 2.003234698122469e-07} {"commit": "0fb3f3f87633627f22eb43495bbd54e415f5bb73", "message": "Add util for saving system to AMBER or GROMACS format\n", "proba": 1.736243149252914e-07} {"commit": "8b63f15f2cf78742d1545ea5ddca01d232d3eced", "message": "automatically include Python sub-packages of soundrts in the release (except tests)\n", "proba": 1.0751993073654376e-07} {"commit": "b108cb874288ab6d2ee17b2fd807a95509b3e2c5", "message": "properly reverse emails as usernames in urls\n", "proba": 0.999931812286377} {"commit": "da3bee83e0161431c66b8e96184513253cf56f3c", "message": "Linter fixes\n", "proba": 2.7571365990297636e-07} {"commit": "ef2920bcb2e6b499c1f0f870df7d1287cdcb8e5b", "message": "Addedd get_gateway method to internet utils, adjusted tests accordingly\n", "proba": 1.5304051714792877e-07} {"commit": "d36749d772f3734967be518087ded6b0ee3f7c5c", "message": "Fix default SAT algorithm choices\n", "proba": 0.00020842213416472077} {"commit": "d1b8ab844d153a240c3f71965c0258b91613ea0f", "message": "Move test for adding devices to cache of nonexistent pool\n\nThis test replaces a removed test which called add-cache\non a nonexistent pool.\n", "proba": 1.1734246641026402e-07} {"commit": "1cad103ed78a4c14cdb935591217967ea804d1b4", "message": "Added first of more advanced run test cases\n", "proba": 1.092031283178585e-07} {"commit": "9e8bc31786cba78e1ef55f62cac9111a84348c91", "message": "Add IdsQuery based on feature: https://github.com/elasticsearch/elasticsearch/issues/865 ", "proba": 8.407178597735765e-07} {"commit": "332be5e6959a3254aaa269a8a4c6d26a2a18c492", "message": "Remove redundant tests\n", "proba": 0.0034325486049056053} {"commit": "00b1d7dac43b8755990bb22dbb0041c3e15e47d2", "message": "\n\ngit-svn-id: https://subversion.assembla.com/svn/threedhst_internal/trunk@196 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 6.159195322652522e-07} {"commit": "9e946ec409a7db33f048eea049ce1466924f5a52", "message": "make MAFStoredPathMapping work with new reverse coords for -1 ori sequences\n", "proba": 1.7950989672499418e-07} {"commit": "12cc5e752f9aa4700b57e3647c3676aba70bb996", "message": "fix(tests): use valid exception for Python 2.7\n", "proba": 0.00012195995805086568} {"commit": "e1bdbe2ed9081137bc0678abc7f5c08b3df0179d", "message": "ages_to_tsv now prints leading tab character in the header\n", "proba": 1.3652930874741287e-07} {"commit": "ed68df23abd2476927875fbc1e96e3a94eb1444f", "message": "fixex typo\n", "proba": 5.028052783018211e-06} {"commit": "4e9bb3c9b2956c2709b7ba9164cba12673c6f22e", "message": "Add a py3 compatible workaround for the removed long type\n", "proba": 2.189761119097966e-07} {"commit": "f000504c624e3b07a0df4c823a2f422dc1294ed9", "message": "fix test case\n", "proba": 2.2051079213269986e-05} {"commit": "d97b97f7cc1dd53dca3de1f4d15c8ffb1b4e218e", "message": "Redoing vdjxml2countdict to increase elegance\n", "proba": 2.5030763595168537e-07} {"commit": "8d30b02437ea1119bc71d5c862037318ac6f9f2c", "message": "hpm: some more refactoring and cleanup\n\nSigned-off-by: Heiko Thiery <965a85d69f7aa0aa83bbdecf1b37e17133c01ac3@kontron.com>\n", "proba": 1.1069583649714332e-07} {"commit": "69ba0847bde12b4da61502076f633eee856ec728", "message": "Improve get_user and get_netmask method\n", "proba": 7.090683880051074e-07} {"commit": "c2ba13e4bc135378095e33bc2ef904cab3189682", "message": "GitbuilderProject: don't mangle rpm versions\n\nUp until now, given a package like:\n\"ceph-test-11.0.0-2135.g8403c95.x86_64\", we were returning \"11.0.0\",\nwhich doesn't allow us to properly verify installed package versions.\nStart returning the entire string provided by gitbuilder so that we can\nensure we match the value returned by packaging.get_package_version().\n\nFor .deb packages, we have always used string like:\n\"11.0.0-2135-g8403c95-1xenial\"\n\nSigned-off-by: Zack Cerza \n", "proba": 0.003207926405593753} {"commit": "39e96a5e5f53512818013fb4da10519c9664ef82", "message": "Local changes to directory paths.\n\ngit-svn-id: b93d21f79df1f7407664ec6e512ac344bf52ef2a@789 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 3.0450439226115122e-05} {"commit": "27ed828144afd51155ad15c972a65a953e4c0620", "message": "more updates.\n", "proba": 1.2065363819147024e-07} {"commit": "2eb686e8ad0233e4507ab912f7e1b12d33c2903d", "message": "Fix rbe_upload SSL issue (#27982)\n\n* Attempt to fix rbe_upload SSL issue\r\n\r\n* Fix comparison", "proba": 1.2872501997662766e-07} {"commit": "7c5eed2f909e99707f1c4b0c6383fa1c26cbba78", "message": "Check daemon exit codes, even when using gcov.\n", "proba": 1.1006423505932617e-07} {"commit": "29a3f048a27079865a57f76cd64f4a12f99ded0b", "message": "Refactor get_reading_stats.\n", "proba": 3.235130634493544e-07} {"commit": "cceb3c64a1c42ed73c4e164ab1a257a8b072b66c", "message": "change updated_at to datetime and fix Prombem field\n", "proba": 1.5756850757497887e-07} {"commit": "a5b521ecaae9d06c360c3cb779cb02f384983d01", "message": "isample bug fix for mac\n\ngit-svn-id: 1df7fcefc24ce524793a7474bd98e66739d04a42@1060 15d7aa0b-6f1a-0410-991a-d59f85d14984\n", "proba": 4.664918265007145e-07} {"commit": "b455846d9ff2abab2412785172be7ae71ab546b3", "message": "Handle newer btrfstools.\n\nNewer btfs userland tools needs a -f like xfs instead of a prompt\nfor yes. Trusty needs this change.\n\nSigned-off-by: Sandon Van Ness \n", "proba": 1.2756332523622405e-07} {"commit": "393104c56e7e66eea4afa21b4ba0806325155928", "message": "Hid functions\n", "proba": 4.046961237236246e-07} {"commit": "4b2ec461badcfcc7f25ec66856b8cfc4fa064106", "message": "[Telemetry] Fix BrowserTest on content shell.\n\nIf the browser does not support tab control, skip these tests.\n\nBUG=243552\nTEST=tools/telemetry/run_tests --browser=android-content-shell BrowserTest\nNOTRY=True\n\nReview URL: https://chromiumcodereview.appspot.com/16020011\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@202234 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 0.0006352360360324383} {"commit": "3bf927ee07ae44be5d9d044ef95a5704a97de683", "message": "rounded output by default\n", "proba": 8.867436918080784e-07} {"commit": "ea5b76f7f2e4b499eb2bdd58fcfab53e81bc272a", "message": "Excluded tests and test utils from code coverage by generate_coverage_command.py\n\nBug: chromium:844647\nChange-Id: I3b99cfcbeae99794f9600f232b560c47efeebc57\nReviewed-on: https://webrtc-review.googlesource.com/99682\nReviewed-by: Mirko Bonadei \nCr-Commit-Position: 972c6d2dc6dd5efdad1377c0d224e03eb8f276f7@{#24692}", "proba": 2.6953513952321373e-05} {"commit": "7e2934e1f6bf9a36aa453efc6fa831bbef6b4b46", "message": " - handle jumping of port stages\n - handle immidiate port failure\n \n", "proba": 1.136502987719723e-06} {"commit": "ec5b9bc221e764770c0593acc27e5700caff9cb7", "message": "[dhs] Normalize titles\n", "proba": 5.21101537742652e-05} {"commit": "8dbd490a83f5d1c24a3de96dc2b778e18c9a451b", "message": "Add tests for find-kinase-pathway with json format\n", "proba": 3.5422220889813616e-07} {"commit": "634050b6610cb6fbd1ecd8b0d7dad264170f6f9e", "message": "Refactor\n", "proba": 5.142872396390885e-06} {"commit": "7a278fbd37e8ab09104bcb9a0b2538df4cec30b5", "message": "create_epub docstring\n", "proba": 1.1161655493197031e-06} {"commit": "9c0a4d8750ac7efd7598246a69b1eaa5100e97d9", "message": "corrected starting point\n", "proba": 0.0004465300589799881} {"commit": "3bfdf53568dfca1c7acef1635fe6e2d9634c33b1", "message": "nodeos needs more time on linux before it starts accepting p2p transactions\n", "proba": 4.1229253611163585e-07} {"commit": "5ceea62947f47829f430951e49a3183adb721a99", "message": "Fixed definition of barotropic deformation radius.\n", "proba": 1.1935379973238014e-07} {"commit": "eadec2e53404407a7f40df483d1f3d75b599a667", "message": "Fix PID location\n", "proba": 4.105694642930757e-06} {"commit": "320545f014c0c62c2a1d9bbf2e837ac62419b980", "message": "Update tf.concat_v2 to tf.concat\n", "proba": 6.488875214927248e-07} {"commit": "1c33206cde25caaf9d54def811eb360ca00ae52c", "message": "More secure checking of upload/get/etc path\n", "proba": 1.2741668342641788e-07} {"commit": "6509ef430b455b3f1a4e222687840fe13469ca2c", "message": "Now calling wait at the end of a RemoteTask to ensure that ssh doesn't exit until the last command does\n", "proba": 1.224536561039713e-07} {"commit": "61cb2f72d94e8bd771e3130d68f753513e5818d5", "message": "Add lstrip, rstrip, strip methods\n", "proba": 3.1115774845602573e-07} {"commit": "dc209ed649f5c045aaa37490746128a00a4b85f2", "message": "[nrc] Different ID for final results of 1996 audit\n", "proba": 1.3950307220511604e-07} {"commit": "ee333be71131fb40882f4eb954c8d8409a575bfd", "message": "Move and rename PRecordEvolver\n", "proba": 2.410428692201094e-07} {"commit": "d4b09489c117db1725913dd1711150e7e4904740", "message": "Fix collision detection when an object disappears.\n\nCollision detection would fail when an object was removed. Now, an\nobject is not collidable when removed, and that's checked before other\ndata that may be gone.\n", "proba": 9.90886405816127e-07} {"commit": "d197df5653fc4e9d83e6cc41b45a332275549172", "message": "idc.py: Added 64-bit versions of constants\n", "proba": 2.3517455360888562e-07} {"commit": "7ed456aefa59d82d6d400e17848e0fd721f8ad51", "message": "schema: Update helper functions to return OrderedDicts.\n\nalso: improve their docstrings a little.\n", "proba": 1.155191640123121e-07} {"commit": "bc2c1a9d4c060242db1273e9608c629b2e0243cc", "message": "Fix _version.py\n\nCan't use the Python 3.6 type hinting syntax in Python 3.5\n", "proba": 0.9984789490699768} {"commit": "c9a64be18310fe576d808afb4e1ff2b354a7d260", "message": "updated ops (remove redundant functions)\n", "proba": 1.9309948129375698e-07} {"commit": "314fd9aa36786ed18b35a3817b92574702c48ab6", "message": "point to the production cloud environment", "proba": 1.084460905076412e-06} {"commit": "b39c6de1d27c01eaf74af291d447b78f6139aba7", "message": "Changes to better supporting arrays with masks\n", "proba": 2.2546741718088015e-07} {"commit": "8affd3eaaba5ae71aaaf4d0aa10fa9a910dbeabd", "message": "fix(#435: use urn for PyExtDataSet)\n", "proba": 1.245757630385924e-07} {"commit": "51f26bef6897fc39f4fc186c78ec76f40c54554b", "message": "fix PutI._from_c\n", "proba": 0.0002788251731544733} {"commit": "103d0cf9c5272b47ba62f98f2e58a320659d4b20", "message": "+mediawiki-feed", "proba": 1.8298042903097667e-07} {"commit": "5b6c7b4430ecca4e4cd8130824c9a19b5b8ea5f6", "message": "fixed wrong inequality sign when checking POS...", "proba": 1.1975696168065042e-07} {"commit": "762751009ac8db6bab04d6dd17c823258e0169fd", "message": "chimaira: Make sure all required directories exist.\n", "proba": 1.3052476788288914e-07} {"commit": "556e0e3474e379427a08e1646274f596c7e4e5ef", "message": "Remove unused but circular import\n", "proba": 4.1351009372192493e-07} {"commit": "d6e42d8c13d717e9e56027713b3af8698ef36554", "message": "Be more explicit about the exit status of the container (#13425)\n\n", "proba": 1.4221599542452168e-07} {"commit": "fec0cbd0b4780bb09f72711fc6554c10d645ba3f", "message": "[FIX] import customers by steps and use new method search (please update your magento module) otherwise we get error 500 by magento with thousands of customers\n", "proba": 1.1394511290063747e-07} {"commit": "a61b357e8b44b3130c7765548aa21551631a584d", "message": "Bugfix! QuaLiKizComboNN now uses hidden NN fields correctly\n", "proba": 1.219167131694121e-07} {"commit": "c0a6829c15f41a62de6f10164b3e12cf5cfd63ca", "message": "Fix test_keys_and_vals_to_strs dict assert\n\nFix the assert of dictionary equality in test_keys_and_vals_to_strs\nas the dictionary order can cause the test to fail.\n\nChange-Id: Iaa0c7bf6cbcb456451d287c7ba8d9e2829e4edc5\nCloses-Bug: #1532834\n", "proba": 0.004287560470402241} {"commit": "1e1ac6a3b858bfb4041da83df340f3ee9452dcdf", "message": "Fixed nbunch documentation in subgraph function\nto indicate that len(nbunch) is not required to exist.\n\n--HG--\nextra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%40311\n", "proba": 1.044193709276442e-06} {"commit": "d7f64d70db6333f0624ff195b3d00661e5e86d8d", "message": "Parsing performance improvements\n", "proba": 5.257621523924172e-06} {"commit": "1b9fe5a4c138c9d4a1f4b2cf231f52d51310acb9", "message": "Update exit code when no datasets specified\n", "proba": 4.901345391772338e-07} {"commit": "708921ffadd6c59a788d9dda8619c7cf8b94d716", "message": "Recording: slice by time instead of index\nAdd Trace.diff\n", "proba": 8.662807999826327e-07} {"commit": "dd74b92cd5fbf3acbbb5e360d837ea83cbbd8f8e", "message": "[fb] Fix style tabs in file\n", "proba": 1.5579725243242137e-07} {"commit": "e25ce6faf1d3ffe8d9bebd46a22528e77665d66c", "message": "Don't copy metadata files when there are none\n", "proba": 9.29864029330929e-07} {"commit": "e2c981a748138aef3bd921fb85222bbcb9a3f48c", "message": "[HUE-658] [fb] Hue should display hadoop fs errors in a popup and not in a 500\n\nThe 'Options' buttons provide some FS operations (mode, delete...) that can fail.\nNow display a popup error instead of a 500\n", "proba": 1.6541014247195562e-07} {"commit": "ec4e9aa5a0bb656336a105d43960f7e52b7d0498", "message": "Add ConvNeXt tiny and small pretrain in22k\n\nAdd ConvNeXt tiny and small pretrain in22k from ConvNeXt repo:\r\nhttps://github.com/facebookresearch/ConvNeXt/commit/06f7b05f922e21914916406141f50f82b4a15852", "proba": 3.521138012274605e-07} {"commit": "01674bb349e9850b26aeae212ad77aa992f18ab5", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "87108fc2aa34a5e7045520f4cdfe75c9bf7c5b76", "message": "Post release version bump\n\n", "proba": 1.509479972128247e-07} {"commit": "91a0f1fb1c8d3aec289395dd969a8c5e10d08fad", "message": "fix some bugs\n", "proba": 7.832243682059925e-06} {"commit": "3cc1fba79ea88bb91eb91ccef8363a8e3d1c7827", "message": "Fix slip-up in MockSource logic.\n\nWe have already used the provided RMS to determine the source sigma.\nSo, we should compare the source sigma against image.detection_thresh,\nnot image.detection_thresh * image.rms.\n\nOops. In hindsight, I should probably unit-test the unit-test Mocks -\nthis is coming in the next PR.\n", "proba": 1.7158678247142234e-06} {"commit": "80d692efbac965b47c9c156aa3b8d25e6ee98b63", "message": "massive simplification of generate() method\n\nmove hook_build_success() and hook_build_failure() into BaseDoctype;\nsubclasses can always override, if need be\n", "proba": 1.2667229043472616e-07} {"commit": "616dc3a9c2fa6265f3898e99d94d2bc36baa49b9", "message": "Corrected another logging error message\n", "proba": 2.358387519052485e-06} {"commit": "72b4e637a166cb94fd8589fa9900c1b480c6435a", "message": "Fix tar varible ref before dec error\n", "proba": 4.115373030799674e-06} {"commit": "69ce16c9438df1dd875eb38fd07f89cd8887ae65", "message": "Working SDP reader\n", "proba": 1.930081623413571e-07} {"commit": "41949f3c9f048e1080c341bf80bdf023613b3526", "message": "fixed BASE_PATH\n", "proba": 9.416893931302184e-07} {"commit": "8759c9df526f62fb50bbb3f4c55f5c42aa463304", "message": "Refactor bcr_validation.py (#251)\n\n* Refactor code and also report when checks pass\r\n\r\n* Ignore source repository check when not specifying\r\n\r\n* Fix wording", "proba": 1.2731271681332146e-07} {"commit": "9163181e0e8e3f219101b35309451b8a6c97ba16", "message": "Remove custom .boto file path in tools.\n\nBUG=\n\nTBR=ricow@google.com\n\nReview URL: https://codereview.chromium.org//1315343002 .\n", "proba": 1.1178704539815953e-07} {"commit": "67e7cd8a0f660b3362bb0c7623fa0e38b89f98a4", "message": "tools: Kconfig checker ignores test files\n", "proba": 2.661113285284955e-07} {"commit": "f3c07f24eb468fb63dd246580c5c7e4d3bab48c8", "message": "Network create setup\n\nThis patch is to enable the creation of networks\nin case none was configured previously.\nIt also rename the old create_tempest_network to\ncheck_and_set_tempest_network, since it wasn't creating\nanything.\nThe new create_tempest_network it's now creating the\nrouter, network and subnet, as well as attaching\nthe subnet to the router.\nAlso, it receives a list with all users and create a\nnetwork for each one.\n\nChange-Id: I38ec49cc06fd97e67d66b993abbeb71c73574dff\n", "proba": 7.403848485409981e-06} {"commit": "1878217b89cf48652e75c7c436a11a46fa551b19", "message": "generate_enums: most un-nested namespaces format correctly\n", "proba": 0.0018953047692775726} {"commit": "0ecd97e763b5252a76d9eb420abd614befcc01b6", "message": "Changed shortcut of output flag.\n", "proba": 1.3155037947853998e-07} {"commit": "cb5a8ac1b74cdeeea5901bb22d8600ace8f5b6e1", "message": "Allow parsing lists of dictionaries as well as dictionaries in JSON structures\n", "proba": 2.975328925458598e-06} {"commit": "df35ebdcebc8704f964d3301004fcaf88e70336f", "message": "fix filereader cd:/ replacement\n", "proba": 2.6921324547402037e-07} {"commit": "e2dc9321c5c29ab0978bb061d28b994d22e2d208", "message": "Make translation status report message threaded.\n\nApproved by: philip\n\n* tools/po/l10n-report.py: Add \"In-Reply-To:\" and \"References:\" fields\n to the translation status report message, so we can view mail more\n clearly.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1080426 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 3.1437093639397062e-06} {"commit": "b7eafc778bf8cf64f5a8b2394219726deee82ab1", "message": "Nearly fixed!\n\n", "proba": 1.3182993541249743e-07} {"commit": "734b0409f20cd4c8ef9c3fabd48c58ca4e80d39d", "message": "quick fix to handle \"1.0\" for if_tools\n", "proba": 8.04282251465338e-07} {"commit": "a790bfbee7a76a852c700de9febb49f6de943207", "message": "Update tasks.py", "proba": 1.4576085050066467e-06} {"commit": "2bf8f7beac5ee32e7cb3085da392055603ab88d6", "message": "Fix request method\n", "proba": 1.1773900041589513e-06} {"commit": "4538885bd25cc6d2f4d6d09088e9dc90b5e07e32", "message": "Fix commandline params\n", "proba": 0.0001117019637604244} {"commit": "383e261c05fba6e1aaa9841c759b7b9063743dce", "message": "Use temp variables so there can not match with later members (after modification)\n", "proba": 1.0677318584839668e-07} {"commit": "8c759f531e6a3cdc0e2b40321153147a7ec00b40", "message": "chore(AcademicCalendar): update docstrings to reflect recent AcademicDatabase refactoring\n", "proba": 1.4320339403184335e-07} {"commit": "3370ab75cb2b3f8a8a07062beab40970e3ad199a", "message": "Fix string deverbosify unneccesarily escaping characters\n", "proba": 0.9999960660934448} {"commit": "0260ca1ca2133b795d59ea98c29cb1e40d657fe9", "message": "chagne\n", "proba": 3.445343281782698e-06} {"commit": "cbe7791a0276538416556a6b34769b96071e6115", "message": "fix wfgen fail on windows\n", "proba": 4.000377202828531e-07} {"commit": "63d7a9223fad2eeec19568b228adb315010f6394", "message": "big refactoring part 2\n", "proba": 4.128658019908471e-07} {"commit": "2d99310234e06e8d8b2b42703e107c251e6758ad", "message": "deal with new groups being added to a user\n", "proba": 2.421788281026238e-07} {"commit": "400f3b03bfee34d311e41a7116c763b91cc8dcd6", "message": ":shield: pos_mobile_restaurant\n", "proba": 3.0181165584508562e-06} {"commit": "1a740734f1f51cd5a64443a82a116eb14abf31fd", "message": "Use __future__.py from CPython.\n\nThis version vas features like compiler flags that other libraries use.\n", "proba": 1.1730968196843605e-07} {"commit": "ab78bf2c47a8bec5c1d0c5a7951dba1c98f5c28e", "message": "Revert file to moneymanager master branch.\n", "proba": 1.309750388145403e-07} {"commit": "e5689bce70943bcd902c6409a04de7f65cee1708", "message": "Add toIgraph, and fix for Dijkstra's algorithm", "proba": 1.240583060280187e-06} {"commit": "40b2c9a74b8d97edec5d643de7f2c8b8d8bf08fa", "message": "Revise to class SolutionSortAndBinarySearch\n", "proba": 4.136094560180936e-07} {"commit": "81bd4c6a7b94803e57a64f47bacbf3d5059282bd", "message": "add node\n", "proba": 1.451950652153755e-06} {"commit": "d36dbff27cc2a63857bf2a78e22e50bf2ef73720", "message": "Add time/space complexity\n", "proba": 0.0023694420233368874} {"commit": "f308ca35d9fe361dc9e26087bbaf70f68336c440", "message": "chimaira: Make sure all required directories exist.\n\nFormer-commit-id: f68aa233eb65e3310a0872e17df255dda39987fa\nFormer-commit-id: 5bd8e4dc58e031fc9d09564c74b25f161c4760c3 [formerly abb208c4f3a2508a91c4281496179a098f63992a] [formerly 7be16b69bb2dbb49a53f5bfb5110eeb52ee9cea5 [formerly 95f70ecfc6474e171bbea046ab8d219091c5fc09]]\nFormer-commit-id: a5a710c967b2a77fd8ba422f995e2add8ffe3fc0 [formerly 01191861054b52006216e68bc76feba8e69c9ded]\nFormer-commit-id: 0cf82ca978e0bd6b7926304fa65ac16a8a951b2c", "proba": 0.9998712539672852} {"commit": "3a5b96d5d666521a97598fe9d30b8e007242f8aa", "message": "swap from published/test:compile to published/compile in CI to try and speed things up a little\n", "proba": 1.2200185040001088e-07} {"commit": "6baa5e74284fadec13ac1ab62376688d50adae75", "message": "added autocolor\n", "proba": 2.0004817713470402e-07} {"commit": "9324b3ac782ed5657cfee4ea9a98a337d7822a3b", "message": "error\n", "proba": 5.029462408856489e-05} {"commit": "ee0a2c013a20c6c2e5281d6d485922e46728f239", "message": "Do not crawl MPs from 2008-2012 parliament term.\n", "proba": 1.6124684520946175e-07} {"commit": "c976c869ee08c306071b7135147187c6bcce4b93", "message": "Fix two type errors\n", "proba": 0.9999994039535522} {"commit": "1d859a117b96a1cd506aa947e0978d1f5f327272", "message": "fix for a problem with djangojs missing for some languages. Thx Olivier\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%401560\n", "proba": 3.969726094510406e-06} {"commit": "1cb7e3042253f716dc23b72b16ebb9c7c5ee4876", "message": "refactor to make things more OO and easier to work with\n", "proba": 1.8992055572653044e-07} {"commit": "63111aad68f3f99a549d89afb06bd1bbd928207e", "message": "Verifier made more robust\n", "proba": 2.70141117653111e-06} {"commit": "71212b8632387957dc7f5c5dbe60667d957d696b", "message": "fix null node\n", "proba": 3.1452709663426504e-05} {"commit": "fdc33311d4cb0388a8714b03891ac8b5dc696be1", "message": "stats format - flags should be sorted\n", "proba": 2.1055895160770888e-07} {"commit": "fd75947e07a7a4ef645da189ee3cb26d8c3c49a8", "message": "lisa.target: Run adb_root() if possible on Android targets by default\n\nUsing username=None default allows making the difference between a user\nexplicitly asking to be connected as root or non-root, and a user not specifying\nanything. When no username is asked in particular on android targets, try to\nroot adb but only warn if that fails.\n", "proba": 1.022010792439687e-06} {"commit": "9d012353da154b8aa696e346ff7c12431487b385", "message": "Send a /WHO whenever an user is not in our user data list yet.\n", "proba": 1.0545599593569932e-07} {"commit": "221190ad879e3c7b9eabb2fc064ecf9bb9e9421f", "message": "commit\n", "proba": 8.363364258912043e-07} {"commit": "1c703868b2e87e13e2df5096b3769a948fcb3c90", "message": "use Note not Notes in docstring\n", "proba": 3.825765588771901e-07} {"commit": "d2f6249ac7a14c4b490d37f11667cfec30b4f2f8", "message": "Added empty overview for todolists.\n", "proba": 1.0642956027595574e-07} {"commit": "21bdda8fb4a1b258703217b57c9471ab7de2381c", "message": "remove unused updateItem method\n", "proba": 7.116236133697385e-07} {"commit": "175bbd2f181d067712d38beeca9df4063654103a", "message": "Update script to remove extension from filename\n\nBefore, the script added the extension .json to whatever the file\nname was. Now, it removes the last extension and then appends .json.\n", "proba": 1.9167257505614543e-06} {"commit": "3c85b49c1028820412a68d99814aad2d71a2d97c", "message": "reformat aline.py demo() output\n", "proba": 7.682030991418287e-05} {"commit": "a6850d90f0529f6e71c7170498457084ab338faf", "message": "tweaked importer\n", "proba": 1.0823448519658996e-06} {"commit": "21ebaf142f2c88c0a7e161ee57c79c81b7b8cfd3", "message": "added plotting.py\n", "proba": 3.934400467642263e-07} {"commit": "6c9d5a1dc29f9fca57d2fc427a36954750fbe596", "message": "make sure attribute errors return None instead of throwing error to accommodate DRF +3.7\n", "proba": 2.396257968939608e-06} {"commit": "55c0dee1c307b204445200432d19af651ae18405", "message": "bots: Add a separate class \"EmbeddedHandlerBots\" in bot_lib.py.\n\nAdd another class for bot type as embedded bot, for bots that run directly\non Zulip server. This class uses internal 'internal_send_messages' from\nactions.py instead of using the 'send_message' function from Zulip Client\nclass.\n\nWe haven't gone ahead with creating an abstract superclass right away.\nWe just have two versions for now, it would be easier to iterate a little\nmore on the interfaces, and then only add the superclass when we're ready\nto lock down the interface.\n", "proba": 2.1818982531840447e-07} {"commit": "5bd7d5d25b279dcc4e30673c8789f9636a546731", "message": "Remove trailing semicolons.\n", "proba": 0.00016018432506825775} {"commit": "f91090abe4d7c8af4515a425b6bab366670b0a63", "message": "Don't build unit_tests on TSan/Win bot.\nBUG=49756\nTBR=thestig\nTEST=TSan/Win bot should become green\nReview URL: http://codereview.chromium.org/3031017\n\ngit-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@53166 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 2.880462261600769e-06} {"commit": "3e4538e43aa30cc2acca9fcdea9d5a927250542f", "message": "1) don't build source packages\n2) handle cooking recipies (into changeset files) and package names\n", "proba": 2.2890803847985808e-06} {"commit": "a0c0d2d2ee1110a3dce6e0e0808692c1d0a6f6bc", "message": "Just go whole hog on attributes instead of args for list params\n", "proba": 1.321352982586177e-07} {"commit": "b3426bcd217c336f8807a5474b47dea72a994eb9", "message": "Rename `op`-parameter to `request`.\n\nThis is more in line with the naming in the ioctl man page.\n", "proba": 1.1009257860905564e-07} {"commit": "da7b3f9e3213bbd0d5a56c9e661d3034c47727ec", "message": "Syntax errors in exception handling\n", "proba": 9.75436591943435e-07} {"commit": "1b4a4175381d2175592208619315f399610f915c", "message": "Small styling fixes\n", "proba": 2.1382848558459955e-07} {"commit": "1e4992a651a4b2321a46c8c6136ce074a19b3308", "message": "[demo.py] fixed production server error, missing ['general'] before ['is_test']\n", "proba": 1.3798936038256215e-07} {"commit": "4ead661fcbc787a749f0f972c527468913722e78", "message": "I did stuff!\n", "proba": 2.405941188499128e-07} {"commit": "220c32dc99b541fb2b8e5d49475fab13c58db2bc", "message": "Made creation of colormaps more convenient", "proba": 1.1093763419012248e-07} {"commit": "327cf3730652c2da11c675cb488014988b8d8f14", "message": "get_pair implemented.\n", "proba": 1.8119372668934375e-07} {"commit": "08ffe42c6bc61a4ac69175136086ef24ee110124", "message": "Updated auth.py\n", "proba": 1.0685473625926534e-06} {"commit": "ec384a4cb9f2f95b3fe8830a81d5702a4a8c1dc4", "message": "commits_over_52: only process commits for the last year\n", "proba": 7.878460019128397e-05} {"commit": "8de5d5b5ead521c34ab5332c26485f9ba685f775", "message": "Updated auth.py\n", "proba": 1.0685473625926534e-06} {"commit": "1162a70982345bbdb3e75332c3e9cba77519bb1d", "message": "Fixed small bug where the wrong variable was changed\n", "proba": 3.0115072036096535e-07} {"commit": "cbb1714424842ca5870326e5754c517fd9f3f270", "message": "deleted redundant function togglify()\n", "proba": 7.418510676870937e-07} {"commit": "10fa528627a343c80505ff7fa394555f0fa10d4b", "message": "minor plot\n\n\nFormer-commit-id: 9b17818a682276b76f93616b4ef5942e4ff839da [formerly d80bcff82ccea0defbb981d206f34ff21ab95478] [formerly 7b23cec1d868c197e1bc90a73775a664b3dcda52 [formerly 4d4624e475934ae3c7b31a408f87aa7c638dbeca]]\nFormer-commit-id: 1684f43230e1ebdc4faf596bb45fd189d2e1fe4b\nFormer-commit-id: 56a4174c122ee9d00d51c0464dc688f95526c6db\n", "proba": 2.838001591953798e-06} {"commit": "afc7429ea84a301e49d7d8ec810f3434aef16533", "message": "Add default config\n", "proba": 2.053959178738296e-06} {"commit": "c034d3303575876c05602397530d60dbba918150", "message": "fixed the day of the week algorithm\n", "proba": 0.004646181594580412} {"commit": "6f09eb4f4a8186d86568e52da5ca11674ce41d1d", "message": "Do not import nsenter as it causes seg fault with certain varions of libc\n", "proba": 1.3037734447607363e-07} {"commit": "9aad909b7b59248aebb6b7a0330cc6ec46368763", "message": "\u042d\u043a\u0441\u043f\u0435\u0440\u0442\u0438\u0437\u0430 \u0434\u043b\u044f \u0432\u044b\u043f\u0438\u0441\u043a\u0438\u0439\n", "proba": 2.662316376245144e-07} {"commit": "e8748e5fdad15e73a363cc769858fdd420149d37", "message": "Add missing dependencies for app_unittests for Linux\n(this CL is almost similar to http://codereview.chromium.org/669158,\nbut for other testing binary. We also don't need to fix the Mac dependencies)\n\n\nReview URL: http://codereview.chromium.org/1556010\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@44769 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.477863381500356e-05} {"commit": "1c10bb0122c7e5443a1cefe529e218f6f5486227", "message": "Make jobs always use Saturday a week ago as their \"last\" date. Report on errors, errors counts, and notInitialized rates. Figure the last appInfo.appinfo and appInfo.update day separately.\n", "proba": 1.139443526199102e-07} {"commit": "b28588942f962de27afc6edc47f52f826d3503c7", "message": "Removed unused class\n\n", "proba": 5.502495810105756e-07} {"commit": "0ac4fe1431fd04aa2645a4afc3d4d2fbfb21bb90", "message": "Update plone profile: copy of black, plus three settings.\n\nFixes https://github.com/PyCQA/isort/issues/1925\n", "proba": 1.4577305762486503e-07} {"commit": "c3a3961836659cff846205223e3bf8763e01d3c6", "message": "renamed monitornjus.py\n", "proba": 3.600870002173906e-07} {"commit": "fddc9711484e8472bb388b0a143de6801bf77517", "message": "Fix syntax highlighting by manually setting codemirror modes.\n", "proba": 1.202381696430166e-07} {"commit": "cac516e01d7c9081a943c6cef2f3b336229e893a", "message": ":bug: fit opt bug\n", "proba": 9.761447472556029e-07} {"commit": "df7b391d3c02471a2095170ee83c9de4586930e7", "message": "Fix lint\n", "proba": 3.219221252948046e-05} {"commit": "7d28258c95465f9b7a3b6ac678ae778a7e7167eb", "message": "Normalize paths for consistent linux/windows usage\n", "proba": 1.3731759281654377e-05} {"commit": "0a4da4bc40813362b9d6c67c2fb02f33a807f3fe", "message": "fix error on tax view\n", "proba": 3.8234784938140365e-07} {"commit": "6370ee3f19dbda955b5b9613f68f00bdf05e2658", "message": "got rid of a silly print statement\n", "proba": 8.537303074263036e-06} {"commit": "2804c122ffca5d42451a4bb9845ad5e2fe7286fd", "message": "fix a bug when video decoding fails and empty frames are returned (#1506)\n\n", "proba": 1.0874730804744104e-07} {"commit": "4f9749e2309ef76d676de81b9000e839ccad833e", "message": "typo fix\n", "proba": 1.0356772691011429e-05} {"commit": "87c2cf3f8f8ea2e890aa648d33e93e051632e86d", "message": "change billets\n", "proba": 5.439375172500149e-07} {"commit": "b227670c038bf5f1009ea5ad9fd33238088c502a", "message": "AWS: Improve generic remote object description\n\nThe get_action binding method can now handle the exceptions\nAWS sometimes throws to mean 404.\n\nThe describe_filters method can return None to indicate\nthat we have determined an object definitely can't exist.\nFor example, an AWS subnet. We know we don't have a vpc id.\nAnd we need that to find the subnet. So the subnet can't\nexist.\n", "proba": 8.626759154140018e-06} {"commit": "7f724d4e19decee616b4536f67aee48d56d5ce4e", "message": "Additional towel.resources documentation\n", "proba": 1.406543361781587e-07} {"commit": "9cce47d37f6e2d08a66b9deedfc6f2f74b02720a", "message": "add int validator\n", "proba": 2.028079870797228e-05} {"commit": "fa50a4d9ab93155675d5a97f8a8d89e9e35db887", "message": "Implement functionality to mee tests\n", "proba": 7.349780730692146e-07} {"commit": "00de7c0e97448cdecd6e33223d2efd07fd19e494", "message": "Fix issue where facilities not being appropriately registered on save click.\n", "proba": 1.025222928774383e-07} {"commit": "172cadb172f87666985a3cbba71d658d27a1d79b", "message": "fixed collapsible block regression: one more corner case\n", "proba": 7.010868898760236e-07} {"commit": "8a46418801092f86125807b8b1417b66ee714459", "message": "fix failing test\n", "proba": 5.703402166545857e-06} {"commit": "17f4515cda0d53c489d04221c07dececb1cd5b18", "message": "caught stack-arm corner case\n", "proba": 5.715255042559875e-07} {"commit": "c72db8781d2ca5968a9f09dff467d1f7fcd1aa34", "message": "Fix compatibility with Python 2", "proba": 6.743811536580324e-05} {"commit": "f5e0951223a13929d0de8d3cb2731d81f13031d5", "message": "Do not load plugin data from db if db support is disabled\n", "proba": 3.6036871620126476e-07} {"commit": "4f73601c843ff9507064b85ddd33179af9fed653", "message": "Raise stderr message\n", "proba": 9.797581697057467e-06} {"commit": "ba7be17e74d0c8a498deae75e355b294d71da8b0", "message": "Pep8 compliant\n", "proba": 2.0679992474015307e-07} {"commit": "2542fbbfe914996584e40e05ef22bc5bca3c8a9a", "message": "Fix template_dirs handling for django1.7\n\nNeed a tuple to concatenate with a tuple.\n\nChange-Id: I8b0b9d012f1f5b2304575d3f186e227ad8ef971d\n", "proba": 0.9999217987060547} {"commit": "3e47bc682e1f2471a925e0a05a45a3db7919ce74", "message": "catch some exceptions\n", "proba": 1.9593187516875332e-06} {"commit": "424c9514bbcfa04eda7c1f70ce01cbeb75bab41a", "message": "Fixed flake8 issues in compute_build_graph.py\n", "proba": 1.6877940822723758e-07} {"commit": "cedec6c542097942dd9880ebd4ca1975518a1020", "message": "Show current recurring event if no single event exists\n", "proba": 3.301370838926232e-07} {"commit": "eabdfc1909130570e6a426106367ec86dbbf1211", "message": "Changing setup.py to put executable in data_files instead of scripts.\n", "proba": 1.1010119038701305e-07} {"commit": "9dfaac2cc4d4f94b62d704c483ceb1e6b4dd2ffd", "message": "Add work-around for opendir, rmdir subdir, readdir\n\nThe first call to readdir now does the work opendir used to do, fetching the\ndirectory entries. opendir just checks whether the dir exists now.\n", "proba": 1.3117454500388703e-07} {"commit": "897b53c1993dd71ef43840116425842e279b4649", "message": "for pull\n", "proba": 2.277265821248875e-06} {"commit": "3b4b7224789d6bdd08a0b4485e3e3892aced5f73", "message": "test the return type of diskdf functions\n", "proba": 2.713386493269354e-06} {"commit": "3e3d305887f1e1324522eb4f39abb68bd03e9596", "message": "Refactor w/ @sigmavirus24's suggestions\n", "proba": 1.4901664258104574e-07} {"commit": "7cec4c1263d830a8bacd723b2da104d33bd43c0e", "message": "Fix CFR\n", "proba": 9.345925718662329e-06} {"commit": "20fd8b9837536eb13012886df1d2f8fcedc10f50", "message": "auto-link scss folder\n", "proba": 4.4625002715292794e-07} {"commit": "aaee820075b150b641e511dbdb45e6d1ff3da529", "message": "Update description of function attibute in class SchemaIndicatorType\n", "proba": 1.9169583254097233e-07} {"commit": "83e5bf5e51be2096828859442f1f949ca770e519", "message": "Added Chart view.\n", "proba": 1.2112703018374305e-07} {"commit": "451e20818c7fbcc0b45500c71c5c5beee96eb316", "message": "update jaxlib\n", "proba": 4.61456892253409e-07} {"commit": "a9edbfebf56e31973a10f26cb816f4d860feef07", "message": "Fix assertion messages\n", "proba": 1.4745082808076404e-05} {"commit": "9b7749615293d44cf42c17e0cdac1d64fbe329e7", "message": "FFmpegProcessor.can_read calls ffprobe using a tempfile with the contents of the specified file.\n", "proba": 1.0449293341707744e-07} {"commit": "5e7abd0a7df67fb381762a2e7d71311b45b7385d", "message": " auth for reports\n", "proba": 3.4049529062940564e-07} {"commit": "502d2b31adbe75ee4e54d5981c7e2d9802b44d32", "message": "Except all when importing\n", "proba": 1.3932451565779047e-06} {"commit": "1c15d302c2a1df22b4dd89f3215decf141a4c20e", "message": "antivirus: return None if there is an error during scan\n", "proba": 0.9984148740768433} {"commit": "c19fac5240be8bd6955c4f0da44d27b846632818", "message": "Adopted chart View to models.\n", "proba": 1.053016376317828e-07} {"commit": "a20f4e4fa92ba6799b9f2de160c1412c14e6d407", "message": "jcoin.josecoin: hotfix taxbank fetching\n", "proba": 1.2326062233114499e-06} {"commit": "709d80882fd3202630af6aea12f6a8c049c06b14", "message": "rm expected failure, as the #194 test now passes\n", "proba": 1.2488766287788167e-07} {"commit": "dba9554c4c76e35c2a4d2bc9719741c861447aeb", "message": "fix date range for tests\n", "proba": 4.156762315687956e-06} {"commit": "bfcbdb299253d6dc427bec68ccfaa16e0b0fbebc", "message": "verejne getInfos: add data from table notices (#50)\n", "proba": 1.0943540473817848e-07} {"commit": "51460f82300552c8051ccb0e8a91422fdae8642e", "message": "Now rtirbot does not crash at startup. w00t!\n", "proba": 1.0750476064913528e-07} {"commit": "d784bd7ad087a8859090efd5faa73ddaa3c9faee", "message": "main.py: remove _unnest_dir function\n", "proba": 5.439617234515026e-05} {"commit": "8e10657f94023a69967345114ee221c8d579c05d", "message": "Fix error with new issue while not login.\n", "proba": 1.1067746896742392e-07} {"commit": "ba3285bdc8ec2f13f0953fd010962c7ca5da64ea", "message": "Added a clock to control the framerate.\n", "proba": 1.1150191880915372e-07} {"commit": "db48b65467fbc01534da5e50bc392c15beb75a6d", "message": "Fix bug in conversion electrodes subelectrode generation.\n", "proba": 1.3269054477405007e-07} {"commit": "2a9fdbf75c752edfbd9db0f495560dc17bcb2640", "message": "FIX landing accounts created multiple times\n", "proba": 1.8136350377062627e-07} {"commit": "bf45c205ed3c2c00dbfdab2aeb9c059171a22d31", "message": "Fix to redefine views for cleared out datastores\n", "proba": 1.585708275797515e-07} {"commit": "bb295c5235a6d938ae5f1228c663ba84c3b35205", "message": "Use named parameters for redis setex\n", "proba": 6.581279876627377e-07} {"commit": "7e4b66fe3df07afa431201de7a5a76d2eeb949a1", "message": "Fix django custom template tag importing\n", "proba": 1.3774009630651562e-06} {"commit": "91dd39ca5e2f498a4b308ceb19ef32d1c0867d40", "message": "Added a few more things in the first turn.\n", "proba": 9.834811720565995e-08} {"commit": "fbdefe8dd63b1555976456774413d4c4b5ae2b34", "message": "Views for archive and delete Notice.\n\ngit-svn-id: 38cadd75f975b647b4706a932fbe830834f843ff@15 590c3fc9-4838-0410-bb95-17a0c9b37ca9\n", "proba": 1.3874364412913565e-06} {"commit": "a85b729327b7dbfe941bf4e39704d7fc75e4af17", "message": "Better description\n", "proba": 0.0002659319725353271} {"commit": "7f4ec727d2c415ca35adff6bf02de1a8ad753734", "message": "add missing import\n", "proba": 4.194788562017493e-05} {"commit": "769a62556db6844b27fc72ffa43cd777f16b2e8d", "message": "Sibling affectd change\n", "proba": 5.694363380825962e-07} {"commit": "3c6a6e3a8f99f580d10366307e34031aa81ac344", "message": "Exclude disabled widgets from bundles\n", "proba": 3.404907431558968e-07} {"commit": "20681dd4a6336fbad8c5287c6a188a70775b306c", "message": "Simplify parsing of pickup_type and drop_off_type\n", "proba": 0.007000357378274202} {"commit": "3aeea243ab51866643c2cfc2552375930a83178a", "message": "The game now is working.", "proba": 1.7125036322340748e-07} {"commit": "b8d3a008dfb8203b7cda276f03148bf34daf20be", "message": "[fix] store the job after changing the state\n\n", "proba": 5.394475465436699e-06} {"commit": "9f4481ec92d46ba84b9dbc86490c5df38de3366a", "message": "Fixed AlembicSourceTest for use with `gaffer test -repeat 2`.\n\nWhen being repeated, the refresh count needs to be set for the first use of AlembicSource, as well as the second - without this the repeat test will pick up the wrong file - the one opened second in the first test.\n", "proba": 1.1058821058895774e-07} {"commit": "3f20ef1ac43c59d47a2a6c1512dfa7de68227ff5", "message": "create responsible UI\n", "proba": 2.614021639146813e-07} {"commit": "6ddd7e6d373b1ee5d7039ebd1d57c4d63cd32c02", "message": "board transpose:\n", "proba": 8.004280402928998e-07} {"commit": "4f27e63c4c298579acb24f5c5ddefdf7d510c14a", "message": "docstrings\n", "proba": 1.7234823417311418e-06} {"commit": "4804cf7728c5b1a20fea5d71e873964ad5d8b6ad", "message": "Feedback changes\n", "proba": 2.8474232749431394e-07} {"commit": "0e27cb4b82748763d2e1174106c7ce84dc3cf752", "message": "Removed noises\n", "proba": 1.1251449905103073e-06} {"commit": "35c52ecbe34611f003d8f647dafdb15c00d70212", "message": "update doc\n", "proba": 2.928710216565378e-07} {"commit": "6039be54e9fd79ac3916a50de6ab554aa1355bde", "message": "disable debug mode\n", "proba": 1.0738175433289143e-06} {"commit": "7bb50a011da71bdd5bc7468193ed8cea4a889646", "message": "Tile spawning implemented\n\nThe game engine has a new method now, which spawns new tile in\nrandom empty location. If there is no empty location, no tile will\nbe added. Currently only \"2\" tiles are supported. Todo: Clarify\nthe frequency of \"4\" tiles and spawn them too\n", "proba": 2.560002485552104e-07} {"commit": "d4decf95645ea77ab9c06030c6365bce4f9c4805", "message": "Fixed test_modelcube. Commented spaxel tests; to be moved to test_spaxel\n", "proba": 1.2627077694560285e-07} {"commit": "290c91c77e5a98c23bf8e9f91355082ced262a4c", "message": "Add support for xml-style comments\n", "proba": 2.1793402993353084e-07} {"commit": "8f0cec0a296fe11e40808f6c23a964bbe9dbb767", "message": "[hb_input] Cover GSUB type 5 fmt 1, type 6 fmt 1\n", "proba": 0.0034194868057966232} {"commit": "34dc2a31274b88d1764aabc270713ccd17197395", "message": "Partial commit on working planets\n", "proba": 1.6365589772249223e-07} {"commit": "192939c2af7220447586f482011ba4716c7e5021", "message": "Updated social auth pipeline.\n", "proba": 1.28845258018373e-07} {"commit": "e3b9651b10c3b4f52fc1d14be0682aaa3db18aac", "message": "Moving header text so it doesn't resize window\n", "proba": 5.372754685595282e-07} {"commit": "3ab5586ec4ac9ff3ac3fd7583bc9a71c7b5cd27a", "message": "fix lockedNormal, use MItMeshPolygon instead of MItMeshVertex, fix Fix() fucntion\n", "proba": 2.976513542307657e-07} {"commit": "0925af134e9946de7ae24401e070f804a0e405d8", "message": "1000 lines\n", "proba": 1.762298751373237e-07} {"commit": "49acf8b49accca3f43249e11f3c665b1245f6572", "message": "Don't use keeper for instances\n", "proba": 3.1507187259194325e-07} {"commit": "bc9333272dc57c37d706034e51e60d61c053f548", "message": "Reorganized some of the methods in Data. Also added the _propagate_values method, which propagates attributes to the newly created Data instance during type conversion\n", "proba": 2.2495088103369199e-07} {"commit": "1473f798e307c691a24794baa6d4b6de07e23128", "message": "formatting\n", "proba": 1.1576831639104057e-05} {"commit": "c7f7e1bc4185be38ff792bfd82a74e35ecbeda12", "message": "We need to be able to look up Instance by Node (live migration).\n", "proba": 1.0529119265356712e-07} {"commit": "d5e9173fc9c1d1608c74bca2c376a0997727ea08", "message": "plugins.ustreamtv: Whups, small fix in HLS loop.\n", "proba": 1.0370428782380259e-07} {"commit": "5d5fff5614835182ab851681bc5e793339659ab3", "message": "Update on #31\n", "proba": 1.5242873985243932e-07} {"commit": "f2a17f083fba2e16e4d49d7d97b42255f2c240fa", "message": "Completed about_proxy_object_project with protocol7 aid\n", "proba": 1.6672719027610583e-07} {"commit": "e74b4867f9067e28686aecd19eb6f1d352ee28bf", "message": "fix imports\n", "proba": 2.233424083897262e-06} {"commit": "48986cba9874cd0d9102cc006d3040b80c362178", "message": "new legacy infra-structure\n", "proba": 1.3939722975919722e-06} {"commit": "a120d9676d5532ca0b9f46de4eecf5b3b6d224f8", "message": "2nd try\n", "proba": 1.3273977117478353e-07} {"commit": "c99866c295ed18aceb07b835c879838bb60b6ebb", "message": "TabControlTestCases with a new MFC sample\n", "proba": 1.2890990319647244e-07} {"commit": "f70e54255641f4d3d61777501b20b0f8c7a1fb77", "message": "[CHG] python 2.6 compat'\n\nbzr revid: xmo@openerp.com-20140122161727-0inchgb570e1r7pi", "proba": 1.5833161342015956e-06} {"commit": "38f682604b7ed69799cc795eaead631dbd384c7e", "message": "allow ttl of 0\n", "proba": 0.002377219032496214} {"commit": "54c44aa00096c93af02fe094614f1eda162a4f71", "message": "prevent grouping of percentiles\n", "proba": 0.00010913016740232706} {"commit": "fe6d9ed343ea46fd67bf4d3d36a9f78431ec7263", "message": "[FIX] calendar: getting recurrent_ids twice\n\nThe `_search` is override in `calendar.event` to return both ids and\nvirtual ids of recurrent events. Calling `.get_recurrent_ids` after the\nsearch is wrong.\n\nThe entire request has been copied from the original\n`_find_allowed_model_wise` function defined in `mail.message` to ensure\nhis correctness.\n\nThe purpose here is to ensure every virtual event id is mapped to the\nreal event id so the original function doesn't throw KeyErrors for\nvirtual ids.\n\nopw-1972563\n\ncloses odoo/odoo#33246\n\nSigned-off-by: Julien Castiaux <88a92cdf1aef33f8a03de5e3b866f7bcc2fd53f9@users.noreply.github.com>", "proba": 0.00018353975610807538} {"commit": "e86097d05f1e51191929f311694728f1d3cc438b", "message": "Minor cleanup.\n", "proba": 1.4735500997176132e-07} {"commit": "8baee81c7990d8f2b574bdd566b7b9cb8b5a63cb", "message": "[FIX] hr_expense: account on expense\n\n- Set a specific expense account on an expense product\n- Send an email to the expense alias\n\nThe specific expense account is not used; a default account is used\ninstead.\n\nopw-1838174\n", "proba": 3.9448077586712316e-05} {"commit": "aaba085cd2e97c8c23e6724da3313d42d12798f0", "message": "Make sure request.user is a user\n", "proba": 0.9999438524246216} {"commit": "31651ea7d6d89258da6b9242185c2ab1b73ad088", "message": "Pure C: Wasn't deleting the \".S\" file.\n\n* Noticed while debugging the scons file C++ emulation. The impact\n was probably zero though.\n", "proba": 1.071130100172013e-07} {"commit": "831322bb92105324d12f8f387ed05b86af57154b", "message": "[FIX] hr_expense: expense lines > and < 0\n\n- Create an expense sheet\n- Line 1 is 500\n- Line 2 is -200\n- The total is 300 => a payment of 300 is made\n\nWhen the payment is validated, the expense is not set as paid.\n\nIn v10, one expense line = one account move. In order to know if the\nexpense is paid we check that each account move is completely\nreconciled. The account move of 500 is never completely reconciled by\nthe payment of 300, so the expense stays opened.\n\nThis simply cannot be supported in v10, since each expense line is\nhandled in a separate account move.\n\nopw-740492\n", "proba": 3.537334850989282e-05} {"commit": "3c08fb34da0ebb6dff6772e9ebb8d76973555b78", "message": "Flake8 fix\n\nAs title\n", "proba": 4.027033639886213e-07} {"commit": "b7894977e78df02851ebe4c6b232a6e34c09ea3e", "message": "deprecate makerelease.py (someday drop version.h too?)\n", "proba": 1.1758835682940116e-07} {"commit": "445740ee2630eca017b4899b96fef8ffeda0e7ea", "message": "update gist extension\n", "proba": 4.0898456177274056e-07} {"commit": "fa56c28471148927d7c819aa0d9e8dcaf3b130af", "message": "cleaning up how the readlist builder builds lists\n", "proba": 6.721024305988976e-07} {"commit": "461c619cfe843ea4f0da9d8bd2d194add47d25b8", "message": "flake8 variable naming\n", "proba": 1.4333100750718586e-07} {"commit": "1f8c6703f0553ab045d96187ddf0d1dd4e73fc36", "message": "Keychain integration: style fix + more comments.\n", "proba": 1.0206885292518564e-07} {"commit": "d855e9455006583f6b46577961bb4895edcaa4a1", "message": "Switch to oslo_messaging.ConfFixture.transport_url\n\noslo_messaging's rpc_backend setting, which is set by\nConfFixture.transport_driver has been deprecated since Newton. To allow\noslo_messaging to remove it, switch to setting transport_url instead.\n\nChange-Id: I8ac08a2f966356f14f89c109dbfa0a66c258e939\nPartial-Bug: #1712399\n", "proba": 9.84830535344372e-07} {"commit": "4f62b715e53d38f6de8b3dcd405cc1131829236f", "message": "Fixed flake8 issues\n", "proba": 1.376817664322516e-07} {"commit": "c14b21020966499883df9486648d4c3df3122e65", "message": "Added a colon in the output separate note from output\n", "proba": 4.984373731531377e-07} {"commit": "e177135da171fd163438ef48b957efcffb4664b7", "message": "lsmod\n", "proba": 1.1245829227846116e-06} {"commit": "9108f24183b2743647a8ed3ab354673e945d5f2a", "message": "Update release number\n", "proba": 6.843656592536718e-07} {"commit": "2e0436c0bab3f6fed003c697b627b6fb923a33df", "message": "server: prepare for non-blocking discovery\n\nAdd deferred signal handling capability, in preparation for\nreceiving signals during service discovery.\n\nAdd a \"busy\" exception for method calls during service\ndiscovery.\n\nChange-Id: Id52efbb4f57837c0f449025cfdcb17965c757220\nSigned-off-by: Brad Bishop <713d098c0be4c8fd2bf36a94cd08699466677ecd@fuzziesquirrel.com>\n", "proba": 1.861505580791345e-07} {"commit": "9d5ab1f3f3632fcfe0db4ba73840b4001166eb4f", "message": "add predict_proba method along with some refactoring\n", "proba": 3.5732227843254805e-07} {"commit": "2a91d7ded9515d64f14cf1db5387b5ec93913848", "message": "Formatting and direct import of pi and exp\n", "proba": 1.2198312049349624e-07} {"commit": "1ae96c5475de9751fe501bd407218d8939548395", "message": "aurcheck.py - improve output\n", "proba": 9.201871580444276e-05} {"commit": "7634094e838cb3ac8241519016727f339e7905be", "message": "fix: change timezone to Asia/Seoul\n", "proba": 0.012526782229542732} {"commit": "b1458656ee693c309e46358b6e3dc0c25451aced", "message": "Fixed #17800 -- Prevented Django from starting without a SECRET_KEY, since that opens a variety of security problems. Thanks PaulM for the report.\n\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@17611 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 8.956403689808212e-07} {"commit": "b46f4583e6f34c6033a8f57420407586b67aae8f", "message": "Dead code in tests\n", "proba": 3.975807771894324e-07} {"commit": "54cb032324a49e1c1ea34b61a62e6ca02f1b229b", "message": "Fixed edge case that breaks the test suite on versions of Python > 2.6.4\n\nBefore http://svn.python.org/view?view=rev&revision=74647 it was possible to\npass a SimpleCookie to load, but this no longer works due to a different bug\nin Python the said revision fixed.\n\nMy guess is a SimpleCookie was never intended to be passed through load which\nis perfectly reasonable.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@11820 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 0.0001391079422319308} {"commit": "190b13d5681f90e7bd2042a0542945fab1214223", "message": "Orgs that have not completed their profile yet are shown at the bottom.\n\nThis affects the accepted_orgs view in the GSoC Program module.\n", "proba": 9.743713746956928e-08} {"commit": "4f6dca2fabeaef9ec49c3a8aeb814573f553f4ba", "message": "survey\n", "proba": 8.618918627689709e-07} {"commit": "1d113d2b8c7e0e935e824828f22ac2e0181aff61", "message": "Adding max_examples subsetting\n", "proba": 1.1656155720629613e-06} {"commit": "7e457272b4e9d3b0de1bb0fc0cbf8b6bae4dc911", "message": "add test scrip\n", "proba": 5.438861307993648e-07} {"commit": "a60feb92cc8d9f772df8b0eab2433e8309fe099c", "message": "Show the level of difference when there are diffs\n(#54)\n", "proba": 3.2674597605364397e-06} {"commit": "37b1ce0ace0e799e90793991f2f5bdf18d15d1c2", "message": "working on proxy config\n", "proba": 5.11781934164901e-07} {"commit": "8128791c5b4cb8d185ceb916df2b6aa896f17453", "message": "add test for custom ylabels\n", "proba": 1.9413720053762518e-07} {"commit": "308ce9921583f694640236d4a1e67e5c4da2c7b1", "message": "Test to ensure that with_metaclass() does not insert any intermediary bases\n", "proba": 2.637263492033526e-07} {"commit": "442fcf29fa216d53f4be6fbcd9d3d6db181ee468", "message": "More tests for mongo + Data\n", "proba": 1.1665046883990726e-07} {"commit": "0a87f580cc550d2377cd15db8d3c2fa66cab8204", "message": "Update reinitialise docstring\n", "proba": 6.774009193577513e-07} {"commit": "0ca45e92a92e71d080af6e2104f4f625e31559f0", "message": "Tweak mysql query string in test.\n", "proba": 1.483032434634879e-07} {"commit": "7978124ec51eabffbf9052e6116f97018e58dbae", "message": "Fixed UUID to avoid testtracker collision\n", "proba": 3.085090725107875e-07} {"commit": "cac7afd7006e30350cd59db52416285aef45fac2", "message": "async is under construction\n", "proba": 2.181945092161186e-06} {"commit": "add8a2fdb8109bebd6257e058226dbf2be5cf2ea", "message": "Added header stuff and .gitignore\n", "proba": 1.4983731944084866e-07} {"commit": "5742057e2ca76512d8238f8e9ebbba915660c8e2", "message": "correct mismatched parenthesis\n", "proba": 0.9150273203849792} {"commit": "1ed06e06d013c7a09f1632b14d9711b107f816c3", "message": "disambiguate all attributes for Assignee class\n", "proba": 2.161536758649163e-05} {"commit": "c60db7b032336377e8712de8e97712acac51f544", "message": "Better error message for \"NoSuchInstance\".\nAdded HighSpeed interface.\n", "proba": 1.0699825736537605e-07} {"commit": "5fe516727f59ef74dba420bcaad3308d316a0cd1", "message": "getdeps: ensure that INST/lib/*.dll are found in PATH on windows\n\nSummary:\nWe were troubleshooting an issue with the eden tests on windows\nwhere the boost dlls where not being found during gtest discovery.\n\nWhen we compute the environment, we were only including INST/bin in the\nPATH on windows. On Windows, the dlls are searched for in the PATH, and\nsince boost installs those into its `lib` dir we were missing those.\n\nThis diff causes `lib` dirs to get added to PATH on windows in the same\nmanner that we would add them to `LD_LIBRARY_PATH` on linux.\n\nReviewed By: pkaush\n\nDifferential Revision: D17694542\n\nfbshipit-source-id: 143a907e6d30d8c12360caa43c8d9c26ff8c88c6\n", "proba": 1.254883386536676e-06} {"commit": "fc127ad1e59601d0507a2ae802d333c220291a17", "message": "PEP8 style fixes for bridgedb.test.test_smtp.\n", "proba": 1.038519457097209e-07} {"commit": "9287d30df80328add84b75f2509482229a77d80d", "message": "Update export.py\n", "proba": 6.506467684630479e-07} {"commit": "20d9128d48a1a1f157a02ffe0bea9a5796f69242", "message": "fix fleet-enable fleet-disable\n", "proba": 7.56292647565715e-05} {"commit": "a6c4540877e00df93fb5de3ce76e3a7393c1c587", "message": "Change notes.\n", "proba": 1.366473156849679e-07} {"commit": "e8aaa06e57e4079cac256fc83ef0ddcd08ac57db", "message": "Scan / Report", "proba": 2.1193918087192287e-07} {"commit": "8eb1e78002b27e707630e47fb5e140829657a41d", "message": "added confidence to calculations\n", "proba": 1.5747566806112445e-07} {"commit": "cd9ce074cd32b333a22eda123254dd64cc3a573e", "message": "Forgot remove call\n", "proba": 1.7685839281966764e-07} {"commit": "a0dcf970b932b61d0f824ee83ed836600c2ba3e5", "message": "remove XXX tag on behaviour we do not want to change yet\n", "proba": 1.2195508247714315e-07} {"commit": "ede42576daca2f4ea3ede8fa92852c623ede5196", "message": "fix typo - do not try to catch socket.errno :)\n", "proba": 2.8624577907976345e-07} {"commit": "02f3a0b805e3e10b64c40500c8b7ed9e6088d648", "message": "Improve dist and kern\n", "proba": 6.831501764281711e-07} {"commit": "3651aeae79dc8a50a3a10f53d88de8c1b2da26ab", "message": "i3companion xkeybinder: Ignore unbound KeyPress events\n\nWe can get KeyPress events we haven't explicitly asked for in some\ncircumstances, so just ignore any we don't recognise.\n\ne.g. If we have grabbed Win+c and the user holds Win, presses c, then\npresses Shift without releasing Win will cause us to receive a KeyPress\nfor Win+Shift.\n", "proba": 1.1619125928064022e-07} {"commit": "e97f7fe49b5b8339963ac958de3243038fd643d9", "message": "kops-grid: build annotations using code instead of templates\n\nThis will allow us to put our own annotations in there, which is\nimportant for analyzing the results without string-parsing the name.\n", "proba": 1.0889737467323357e-07} {"commit": "137959c26e8ed1d65ea7650c8b039664ac01681d", "message": "fix preview for when dj.config['fetch_format'] == \"frame\"\n", "proba": 1.3642596741192392e-07} {"commit": "b30854cb21e10f1d9496750737250da7ad02ad38", "message": "tapdisk: add 'list' function\n\nAlso fix a bug: we need to free the minor number after detach.\n\nSigned-off-by: David Scott <63c9eb0ea83039690fefa11afe17873ba8278a56@eu.citrix.com>\n", "proba": 1.6589703477620787e-07} {"commit": "07c36bc2919ae7c7ca87d9c3537594486defaeb2", "message": "Fixed regex for stripping timezone\n", "proba": 3.872450236031e-07} {"commit": "4bc436ac4d441987d602b3af10517125c78c56e0", "message": "remove use of BeautifulSoup from parse_paragraph_as_list\n", "proba": 5.851396963407751e-06} {"commit": "9fdd094107dafee60ac33e75728325b5d362556b", "message": "cleaned up syntax\n", "proba": 0.02907446399331093} {"commit": "f1b0875656769ac52e7ca58bc13a6371a5842d09", "message": "update GovEquation\n", "proba": 3.199322122782178e-07} {"commit": "fb013d1430ba20b08eb9ecdf656171d9e596cd5e", "message": "Fixed English typo. The new registration output messages are still to\nbe prettified, though.\n", "proba": 1.2771572244218987e-07} {"commit": "c94910e35bbf9292c15752152d996809bb7797b4", "message": "Added data and path errors\n", "proba": 1.6851676321039122e-07} {"commit": "044bcd1fc431c87ff9964d90ec6a207641f013e7", "message": "Fix 'NoneType' object has no attribute 'year' #685 (#686)\n\nPlease also see #609", "proba": 2.2331898890115554e-06} {"commit": "61fa2053b200cbd03767ed947426098bf0ca3c7a", "message": "indent fix\n", "proba": 2.281826709804591e-06} {"commit": "0b71a0aa2c758897c1667a227a58b522f4656667", "message": "Import addesses bug when not default db\n\n", "proba": 2.7784722078649793e-07} {"commit": "ac6ce056e6b05531d81c550ae3e1e1d688ece4a0", "message": "[docs](jwt_auth): Make serializer commet more clear\n", "proba": 5.416536623670254e-07} {"commit": "b7a84ce7f0049229693fe12bf7a8bb1a7177d3b6", "message": "convert values to float before multiplying with pi\n", "proba": 1.3769373481409275e-06} {"commit": "361d7c5025187ca1945e5ea3077d04978eeb6a4b", "message": "Add origin to template class.\n", "proba": 1.1514992337424701e-07} {"commit": "f0b138c114c959715ee791a90fd7a9f5ec5bc8d7", "message": "Improve model methods\n", "proba": 3.9431903132935986e-05} {"commit": "e8da8f6667b762fedd65e0b0791d6b3946abddd6", "message": "code cleanup: use user object everywhere\n---\n", "proba": 2.599741435460601e-07} {"commit": "df85d9461f73049e93ee4c00e7c8085beb26934c", "message": "Simplify\n", "proba": 0.9999992847442627} {"commit": "072d6b09a7072d96c33d0aa2d6bfe811a791cd1f", "message": "version bump\n", "proba": 7.394332897092681e-07} {"commit": "fa0c78bb960b5d0bd7d004393c6c07581479bdd6", "message": "Bumped version to 1.9.3\n", "proba": 1.770156131897238e-06} {"commit": "cefa4d048c872f29e7ce974f80d98528edb997ab", "message": "change default config path\n", "proba": 7.809732665009506e-07} {"commit": "8a8993124814d29f63e5eb909f1a3a6d737fc6d1", "message": "obj might not be defined\n", "proba": 9.469440556131303e-05} {"commit": "e105739a5c0289196b693c8b565fe42249b6a2d4", "message": "Don't mess with comments. Just add them.\n", "proba": 1.1096007312971778e-07} {"commit": "0698676996b1196f4235b18815b32c46c7b91c23", "message": "Bugfix: crash when retry connecting\n", "proba": 1.4009757478561369e-06} {"commit": "1647d5424a70f624d0cd52eb19742058f6087530", "message": "Fixes for path munging for remote/local in Windows", "proba": 1.6880339614999684e-07} {"commit": "9337ade55c48a1edb2e146ae706e29b0353acacc", "message": "value\n", "proba": 4.7783745685592294e-05} {"commit": "bfd2555c0ae7e66c850247ccfaa1e724e3683b78", "message": "Tweaks to autoplay\n\n1. Start autoplay with a random current song and a separate random \u201cup\nnext\u201d song.\n\n2. Disable the Play button when it\u2019s already playing or when there\u2019s\nnothing left to play.\n\n3. Disable the Pause button when it\u2019s not playing.\n\n4. Fix for progress indicator that doesn\u2019t stop at the end of the song.\n", "proba": 1.4059264685784e-07} {"commit": "fd4007de0d4ac4036088d6bc3cf8c0d567e97996", "message": "Commented another use of RELEVANCE.\n", "proba": 2.8121783657297783e-07} {"commit": "43e1a95e121bfa0eb6a8e27aebd282c5164cfa22", "message": "Another fix for when attrs arent present\n", "proba": 1.8726841233274172e-07} {"commit": "265782b6a4ff4a495bd32eac475743e21ba7e24a", "message": "Fixed Typos 4\n", "proba": 2.1561369578648737e-07} {"commit": "fdd74bdf3d41ee8c54b5590669e3bb96a195df88", "message": "Normalize URI from configuration keys.\n", "proba": 1.4183837038217462e-07} {"commit": "66a7482d5c997729fed87c3c59ccac1f72c3d345", "message": "Retrieve datasets per slices\n", "proba": 2.07494258575025e-06} {"commit": "d55529b59b0aad7136734189a04bd175d6578ba9", "message": "DNF plugin: Prefer unclosed bugs\n", "proba": 2.9979619853293116e-07} {"commit": "505fa0943e861be6807278e13b823b00b2dcff72", "message": "fixing pycodestyle issue\n", "proba": 3.714854983627447e-07} {"commit": "410cd880b2e9e32ea0a7fbc5674c279034496d2c", "message": "adjusted libreoffice interface file\n", "proba": 2.9918069799350633e-07} {"commit": "82c1f69c6bee3d0692d2e6e652a8efe663d5a786", "message": "fixed escaping of \\ in \\nobreak\n", "proba": 2.9830398489139043e-06} {"commit": "36fcc536b7a81b71a6f95a67b550b18be7f1b401", "message": "Traiter l'erreur de projet inexistant\n\nC'est assez courant \u00e0 cause de la capitalisation du d\u00e9p\u00f4t git de RH2.\n", "proba": 1.2210421118652448e-06} {"commit": "859528e5a04d75daf9fc8e7483f9f8be272223a2", "message": "barpyrus: Refactor config\n", "proba": 2.7042932515541906e-07} {"commit": "556339f06d2225d8fbd10bce81bec1fae633e7b2", "message": "Fixed logging config to not disable existing loggers\n", "proba": 3.217828634660691e-07} {"commit": "9dfb1fb01054b689e53b5f76a16c469a21bcf8e5", "message": "Update bias.py", "proba": 7.349724455707474e-07} {"commit": "bdc329f1bf542ad5c9ef630da51f88888ddff3dd", "message": "Fix syntax error", "proba": 0.0005845880368724465} {"commit": "0d5f4a62e1e2bbe49f7148801f11130686da1c37", "message": "Update sge.py", "proba": 7.776362735967268e-07} {"commit": "41bb47c25e2122116d7e451f7e27928832e323b8", "message": "http://www.lino-framework.org/blog/2014/1009.html\n", "proba": 1.3388654451773618e-07} {"commit": "2912966e67f95d23d9a8aea3653f6fb0c018ed22", "message": "http://luc.lino-framework.org/blog/2016/0105.html\n", "proba": 1.3030202694608306e-07} {"commit": "589817281785b7202efa132dd72ec2092f010456", "message": "Makes changes to improve clarity in the help message for the --color parameter in PCoA.py\n", "proba": 1.9473613122045208e-07} {"commit": "5219d32e0b74d70c5f24726d3be937646ff9d425", "message": "Initializing GPIO output with low as default value\n", "proba": 7.264346777446917e-07} {"commit": "b921103fa57180d777ca950573f1a0e5a07ebd1c", "message": "First attempt to solve\n", "proba": 7.563690360257169e-06} {"commit": "2cbfaac9ed4fe77a69595d660881ddbb63ead956", "message": "Updated grizwald endpoint\n", "proba": 2.419096745143179e-07} {"commit": "3284aa6637aa925f912e7379b161053a0a8eb05f", "message": "Added response cache headers\n", "proba": 3.0235275971790543e-07} {"commit": "4259019196c473431d4291f2910ab0164e319ffb", "message": "update simu.py for 0.3.0.\n", "proba": 1.0917313630898207e-07} {"commit": "81b509cf52c903016521a1495cebc6c9c2af0967", "message": "* use gs.packages_dir instead of the broken sublime api\n", "proba": 1.406978071827325e-07} {"commit": "d1fa8c1cd12a805a8d22c941829f85a70c716997", "message": "* impl `tskill replay` `tskill go` aliases to automatically kill the last `replay` or `go` command\n", "proba": 1.6457886431453517e-07} {"commit": "7689fbe54d5219ffb9c83b3cfaaf33eb7aeeb885", "message": "Ensure --sharp-cxx11 flag is passed through #456 #494\nnode-gyp replaces dashes with underscores\n", "proba": 2.5165280703731696e-07} {"commit": "77930452edd3a0c45621173030c9dff48a4410cf", "message": "* use the first action on a line if an action is triggered in the wrong place, fixes #206\n", "proba": 1.5979652800979238e-07} {"commit": "59f06e2e26b3377ba89d55d01447a0d2e73d4270", "message": "node-gyp: OS conditions\n", "proba": 1.2202609696032596e-06} {"commit": "83f7579f100c6526c8e0110d5b53267c9e870cd0", "message": "* auto-complete waliases\n", "proba": 3.382843374311051e-07} {"commit": "d66850d23eaa31a27c3e2cf785a8715a0f7aa7da", "message": "goodbye boost libs\n", "proba": 2.143556656619694e-07} {"commit": "c0197d5f34e3c8dab66e3dee9652d856db933863", "message": "Binding update\n", "proba": 5.770064603893843e-07} {"commit": "7ae82db73f36596fc21268de88d3d1368dd8bf54", "message": "Output individual test names\n\nRefactor output to better track lines and to know how much of the line\nneeds to be erased.\n", "proba": 3.803117181178095e-07} {"commit": "1fa61870976fd6adf0feb215cb0725a9616e729e", "message": "autodetect RPi 4\n", "proba": 2.10350421525618e-07} {"commit": "1126073e94395a8ecc75917daab898e7a12ce55b", "message": "Better error tracking\n", "proba": 3.9242453908627795e-07} {"commit": "fd9a553868ce46ceef2b23e79347dd262b63ebae", "message": "fix build instructions on Linux\n", "proba": 8.03117984560231e-07} {"commit": "3201d50be0d5086dd10d140f0a35886b9a160d63", "message": "Missing comma in binding.gyp\n", "proba": 8.548383448214736e-06} {"commit": "c92700053ef3c065b476237a99566a156df6390f", "message": "fix compilation\n", "proba": 8.300416993733961e-07} {"commit": "a065860ee4a1992859aae7004c3bda06b7c98e44", "message": "Fixed issue with '\\r' line breaks\n", "proba": 7.112626576599723e-07} {"commit": "2f924fc35d0724e7638e741fd466228649077e10", "message": "Update action_after_build destination\n", "proba": 1.5205430372589035e-06} {"commit": "04fa5f67783bf58f17090cc9f4476082c87e3856", "message": "log errors from failed task launch\n", "proba": 9.36082471980626e-07} {"commit": "73842f29a3c007e9e67b875de92dff437b800f0f", "message": "[build] suppress exception handling from being disabled adresses #36\n", "proba": 2.0496803188052581e-07} {"commit": "4f68d084d0a9eb80f4c598304eb597090f0276ce", "message": "Selectively enable flags for certain archs and optimization levels\n", "proba": 1.2332253618296818e-07} {"commit": "db99ecacca94f5c045d8d024dd34c96e23d828df", "message": "Adjust binding.gyp for building on Linux too\n", "proba": 1.2155842910033243e-07} {"commit": "8d1cfdcb5d86e6ebbbb8de9e0de51ff23768445c", "message": "ALPN fix\n", "proba": 2.962032112918678e-07} {"commit": "62a3819761fcde327781aaa03f374b1d9a38040f", "message": "Added hare neutral a hitboxes.\n\ngit-svn-id: 8351c4c563d1be2290bec5b80b3fe9fd1b22b3bc@72 880f2e3c-e94e-cd04-d2e1-04bf329775c3\n", "proba": 1.9651155525934882e-05} {"commit": "90e6c7d6476889a79c60eb514f7a433a2a6393b3", "message": "Updated from Brython Server: 2/10/2017 2:35:39 PM", "proba": 1.1031981017595172e-07} {"commit": "f48e98369c829c663ade8dfdd999e15900697f7a", "message": "hell.py\n\nchanged hell.py\n", "proba": 0.00011529033508850262} {"commit": "a6265250512107eb81f410319347820c598a4dcb", "message": "Updated from Brython Server: 10/12/2016 1:07:25 PM", "proba": 1.1001764477214238e-07} {"commit": "c7898ed54607f99d4a5dcc7ade4b50a261046e92", "message": "Updated from Brython Server: 2/7/2017 2:40:56 PM", "proba": 1.1124275545171258e-07} {"commit": "fc365ebecbe2205f9ea6279531b47592bfda4b59", "message": "Updated from Brython Server: 2/3/2016 1:19:22 PM", "proba": 1.1184100401351316e-07} {"commit": "5f793cedebc0d2c3060abfe79778f3693bb10489", "message": "get_setup / get_sweep will get default (first) available if no name is provided\n", "proba": 2.632464202179108e-07} {"commit": "788bbb3db1889362a135b89b9cd848be70d59e5b", "message": "Updated from Brython Server: 9/27/2015 1:27:40 PM", "proba": 1.0958078178191499e-07} {"commit": "f5a8d2416232eb3c2bd2f99f9ef8787df52342d9", "message": "Removed the public_id from the returned data.\n", "proba": 1.4498445466415433e-07} {"commit": "fc3b556b57346eb53b38ef590e6c5b5759187170", "message": "change\n", "proba": 5.156657061888836e-05} {"commit": "92af0dd805e225df700e4845ccb3d7ad9b02e8e3", "message": "resources: add single head check to fixture validation\n", "proba": 1.8401009072022134e-07} {"commit": "ff8bb24866f2f1d138f68cc707dbed701d1b1136", "message": "Bug fix.\n", "proba": 1.4808925641318638e-07} {"commit": "2f23ce76bfc32022cea41d675d762dfbbde3fed7", "message": "Fix a typo\n", "proba": 0.9999995231628418} {"commit": "a8d3f99fa88da2b6f4109535b81955e0759c9e85", "message": "bugfix: new connection message\n\nSigned-off-by: Maxim Anfinogenov <7307c68781df0e7d78b676e2e3bba02759842f73@gmail.com>\n", "proba": 1.159760500968332e-07} {"commit": "465caa7c572bd7e8145860ad542541eaa49a915f", "message": "Added build_issue_dict method\n", "proba": 4.5464764752978226e-07} {"commit": "12200dd5981c179e5c8867a289ea2711212eae94", "message": "Debug\n", "proba": 1.9316410089231795e-06} {"commit": "666fd26dee96891d5bdd3453afd602fa043717f1", "message": "\u4fee\u590d\u7c7b\u578b\u9519\u7684\u95ee\u9898\n", "proba": 1.346172552985081e-06} {"commit": "38c3ab5e2df1fb744b23c745fc38a4c4e0966651", "message": "I prefer .cfg, I think\n", "proba": 2.448868485771527e-07} {"commit": "0899f5234843faa0301a2aa395f61d535a3880a8", "message": "\u2026. or i just forgot a bracket\n", "proba": 3.240852777253167e-07} {"commit": "c2ed0cbbbd2d88e9db56c03da30533fff8018539", "message": "Fix key error in case submitter is not set.\n\nSet submitter to undefined if it is not found in metadata.\n", "proba": 1.2654695069613808e-07} {"commit": "5fea743c33bf5c6749e131a9069c7c98b2841510", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "fee0edbb6a8565d550ef0acfdce9ff29d77bad63", "message": "Refs #4 Remove debug statement.\n", "proba": 1.1452141279733041e-07} {"commit": "e9ec79d4a31a97a822db50b146de64956bc0ce84", "message": "Fix issue with unrequire options key showing incorrect diffs\n", "proba": 3.005955022672424e-07} {"commit": "48c5c584b7ff7203b12db751d12c1186b948094e", "message": "last share states\n", "proba": 1.4091023103901534e-07} {"commit": "cfe69deed388ee72777e082d7ea84cc0897d6998", "message": "bugfix: if no cont_props passed to discretize\n", "proba": 8.766234600443568e-07} {"commit": "c2f563215fcc62d6e595446f5acbd1969484ddb7", "message": "move end timer command to the correct location", "proba": 8.89130035375274e-07} {"commit": "d563fe3ecdd8d36cdcab4624bd43c5cfb4a8652f", "message": "fix header\n", "proba": 1.0701351129682735e-06} {"commit": "9a7f21754cacfb05f308c455f8d71b570db22cad", "message": "cribbage.py: pylint mention more Game attrs in __init__\n", "proba": 1.1219525219985371e-07} {"commit": "7067f7700f74e348a375f40e8edcd670a7c6464e", "message": "Correct field normalization\n", "proba": 1.6763674466346856e-06} {"commit": "a5b9d190560c405a22e3952787e36369bef044ce", "message": "clean-ups\n", "proba": 2.1314290279406123e-06} {"commit": "b09f649215c7821e67c0c89fbe1295f6d4e3b454", "message": "Do not complain if you see an HTTPS url instead of an SSH one\n", "proba": 4.449365178516018e-07} {"commit": "1c2c29274f938037df32cec371e36ce722195903", "message": "Center sight on eye\n", "proba": 2.2612957195633498e-07} {"commit": "9934affb8b172b9a9989a60620efb74ddc221c5e", "message": "Delete rc_counter.py", "proba": 4.2614442463673186e-06} {"commit": "505cee00e483b8899e910c7a7312928a5be840c2", "message": "change some names\n", "proba": 0.02790798619389534} {"commit": "1a3a3c46103566a5768027ee19a9a43fdfc4fd38", "message": "Add a cost for acceleration\n", "proba": 0.00017238309374079108} {"commit": "edff2ca291a512cdd98d809e10d1a30b88115c4b", "message": "Updates to api pipeline\n", "proba": 2.2430627666381042e-07} {"commit": "ef03d8e902e09196ecd1271bc274df0cc8634efb", "message": "Added:\n\u2002 'hgtools',\n\u2002\u2002\u2002\u2002\u2002\u2002\u2002\u2002'nose',\n\u2002\u2002\u2002\u2002\u2002\u2002\u2002\u2002'nose-timer',\n\u2002\u2002\u2002\u2002\u2002\u2002\u2002\u2002'sphinx',\n\u2002\u2002\u2002\u2002\u2002\u2002\u2002\u2002'sphinxcontrib-fulltoc',\n\nto setup.py to allow hgvs install ( mentioned in its setup_requires)\n", "proba": 1.0628066604567721e-07} {"commit": "ab2dc56a2bdb327387751549dc1af05979f7daf7", "message": "Added optFlag for paypal sandbox\n", "proba": 1.4777889134620636e-07} {"commit": "689cc4935c3cf4826ecbc30de051bc2554952149", "message": "[FIX] mrp: fixed product inventory uom issue\n\nBefore this commit, we are getting error that product_uom must be\nmatched because when we're adding line to inventory after updating the\nquantity, product_uom changes to Units.\n\nAfter this commit, error will not be generated as the default value of\nproduct_uom_id is removed.\n\nFixes #29305\n\ncloses odoo/odoo#29371", "proba": 1.1403071766835637e-06} {"commit": "05401aedb18c0f6aec06c89acb1ffea138103d8a", "message": "Pyparsing doesn't want explicit newlines\n", "proba": 1.0400473229310592e-06} {"commit": "0f6c565d1d5642f21161c299490f0cbc5c50519d", "message": "Fix generacion de thumbnails en ciertos rasters con SLDs\n\n\nFormer-commit-id: 0a2c91743873d4e5f3440be70e46a4e6a6547567", "proba": 7.766913086015848e-07} {"commit": "a2e62fd0b96d9cd057c70897460785632e6f059b", "message": "Changed the interface from an attribute to a method\n\n(It feels somewhat icky to me that an attribute would always return a different deferred, sorry)\n", "proba": 1.1448624803733765e-07} {"commit": "8a7f122ff9b4f5ac3a97b1a74d1062ed7bf1d50c", "message": "Reverted \"fix\"\n", "proba": 4.0803047340887133e-07} {"commit": "09c20fd117e7348738cfd0127017fbf3fbf578b9", "message": "Minor problem with strings\n", "proba": 2.5505047233309597e-05} {"commit": "7e932e512807d2963c33ff544edfe371a109c041", "message": "Added more verbose handling, variable metadata support and robustness\n\nMostly this adds support for the verbose flag recently introduced\nin some of the helper functions. This was, in turn, driven\nby wanting to get as much output as possible from the initial\nwall_info script.\n\nIn addition, the wall_info effort meant adding support to extract\nvariable metadata.\n\nFinally, I added some code to handle poorly formatted walls\nby generating (non-optional) warning messages. The goal is\nto help those who are writing wall files understand any\nincompatibilities rather than just crashing or throwing\na cryptic exception.\n", "proba": 2.587779022178438e-07} {"commit": "f1d1f78d7c470b02cd49f2683f927773a40b4f03", "message": "changed how issues are created to impersonate requesting user instead of API user\n", "proba": 5.345331715034263e-07} {"commit": "98f28ee6827fda4efaab132dacaa220755bc16ef", "message": "Added LED dimmers\n", "proba": 1.360603363309565e-07} {"commit": "a8bf0007cc80177b5b148fa7cdb6c6b9f8f9ce69", "message": "Lots of cleaning up. Almost usable\n", "proba": 1.4519144997393596e-07} {"commit": "5a6cd58f199b886c7cfd6aae17f1c9753d498aa6", "message": "Make swallowOkAfterResend default to True, part of the fix for #166\n", "proba": 3.055129980111815e-07} {"commit": "0e554303e9734146e478a7d95027292899b46d45", "message": "disabled chatbot for now", "proba": 1.3063348092146043e-07} {"commit": "6e512687999e26306a77db55c6a8f41153125165", "message": "log kernel module downloads\n", "proba": 3.7727076573901286e-07} {"commit": "6214fd4bc29d9cd98165b6e512ad34c49cae4924", "message": "last bug fix for that segment\n\nSigned-off-by: buckie <4f3493b2888eb01e508044099860f407e08fb1ce@gmail.com>\n", "proba": 1.2301654805924045e-07} {"commit": "c285504306691c82fda3346f3fa145a501054763", "message": "return palette in info\n", "proba": 1.474074338148057e-07} {"commit": "fdfc93196f8a5a85ba3b8a2bee5de2633a176a1c", "message": "Send errors and warnings to stderr\n", "proba": 2.3499161727613682e-07} {"commit": "d1b35904e5c376213c196739423e611945ffb06a", "message": "MAINT: minor bugfix in lp_discr show", "proba": 1.6173321171208954e-07} {"commit": "710dba5196fbd419c23de74e9177185e212736a1", "message": "Update according to changes in config\n", "proba": 5.951313255536661e-07} {"commit": "d0b457b5bde040af623b78409f778a1c39a09807", "message": "Hide main\n", "proba": 1.0139993946722825e-06} {"commit": "b71d0b5a7cd858c7978e5cae5f7b2bfabac0206a", "message": "test update\n", "proba": 5.048233333582175e-07} {"commit": "5c74bf8540964bcabf503982deabdeeb26d3aab9", "message": "Fixed undefined variable name 'table' in print statement\n", "proba": 9.796712220122572e-06} {"commit": "be7b82227d24936ab36cf6150c5ad3eef5332ad3", "message": "- extended set of languages\n- added the base class for admin requests - not to be used by ordinary users\n- a time delay is automatically added between each ER request (default = 0.5 sec). can be changed by the user\n- if a request fails (for example if ER is down), the request can be repeated many times (default = -1, which will repeat the request until it succeeds)\n", "proba": 0.0002721354248933494} {"commit": "f83e27168fe5f0d5c71b962b8788e05640ea8e2b", "message": "Add default_offset_commit_callback to KafkaConsumer DEFAULT_CONFIGS\n", "proba": 6.01269084654632e-06} {"commit": "64c0aafc8b77d207b439fdd7d2f24bf31e8efa7d", "message": "Changed the asset manager to only try to setup the githook while in debug mode.\n", "proba": 1.0567426045327011e-07} {"commit": "69f8ae15fa56aa4ee43767540305b92888235a0e", "message": "Finished `FunctionSet` and `FunctionSpace` implementations\n", "proba": 2.3425926087838889e-07} {"commit": "a42e0e1ffbe278f179496cfb78e88dfddcf8f111", "message": "- SNAAAAAKE, A SNAAAAAAAAKE OH A SNAAAAAAKE\n", "proba": 1.0305236173735466e-05} {"commit": "dcdd4040f45546472ff012dd4830e51804a1b9e5", "message": "Disable merchant debugging per default (to prevent logging and save disk space)\n", "proba": 1.1649771636257356e-07} {"commit": "9ac65fc3636505c9d72fb4bd3c134d64bef889ec", "message": "debugging load_p3_v2.py\n", "proba": 3.0434877771767788e-05} {"commit": "b86daafeaf72f4d678d3b627d32f39ab6f0e54ec", "message": "Fix sec / millisec unit bug in KafkaConsumer._poll_once()\n", "proba": 1.931066208271659e-06} {"commit": "6dc6b148efbe679948f4601c1b1fe29d26c5344f", "message": "[FIX] service: No context in function tr\n\nThe context is not in the kwargs when the integrity error is raised from\na rpc request. So the user lang was lost and the sql error message was not\ntranslated.\n\nThe part treating the callable message in sql error is depracated.\n\nopw:743259\n", "proba": 2.6020381483249366e-05} {"commit": "14eecde7c7b894eea25e12cf7825bb3fac0a0587", "message": "User can now set same option to be selected automatically in the future\n", "proba": 1.1377593978068035e-07} {"commit": "b9fe9b52cadd722c1a0765f1fc97a48026884247", "message": "removes incorrect docstring line\n", "proba": 0.0002776018809527159} {"commit": "759f6901034c80fc4ab6291906949d60016372fc", "message": "Unrelated to PCA, but update the data test file.\n", "proba": 1.254096986258446e-07} {"commit": "5f50b17ddfe978c8fa10471b42dfb083641975e6", "message": "Add checks for zero bias in run_with_hydro (#1326)\n\n", "proba": 1.177960058384997e-07} {"commit": "48de4eea534883b5b13e15e9c5a9325c60e9b8a1", "message": "Splitted into training data and test data\n", "proba": 0.00023836165200918913} {"commit": "13204e784d4a95a6f7dd77361ad0f1fb70aab840", "message": "Fix ?cleanup not working.\n", "proba": 1.756191778667926e-07} {"commit": "3c9889078017fdf6f51a1f1ab85ed0d757c19780", "message": "fixing call to Dataset\n", "proba": 2.7531899604582577e-07} {"commit": "f5421cb76103bf6da4b6dce74f2ae372c892067a", "message": "Add write_revision method to Metadata\n", "proba": 1.4147674392006593e-06} {"commit": "594577401802fa9fc80417c2987c7625259cce51", "message": "Add multichoose command to pick multiple times.\n", "proba": 1.3113427144162415e-07} {"commit": "8087fbcc82aac44a9850b8bcd87522557f9a85ec", "message": "Add index function to create fake indexes.\n", "proba": 1.899096844226733e-07} {"commit": "d1b7da9dd018f4bb47a2730c9001e9c39852922c", "message": "update EL roller", "proba": 2.076810119433503e-07} {"commit": "10b21dc62875003d33949c25b917709e1f384a65", "message": "add memey alias for delete\n\n", "proba": 2.9960239089632523e-07} {"commit": "f327b52378b3c3339040154eb0ad2d40cc0f40d0", "message": "Working on aggregating output tiles to 10 km.\n", "proba": 1.3450481617383048e-07} {"commit": "5f435ef21a94912fcb4b5c0f03f0e2b0f73cdb1e", "message": "rogue paren\n\n", "proba": 6.149845148684108e-07} {"commit": "4c33d53d4d075b7099c765a15332926f7ce6a62c", "message": "Exclude redundant fields in Roller\n\nUse the ``exclude()`` method on the querysets and lists built with\na ``build_exclude_fields()`` method to get rid of redundant fields.\n\nCollect and reference the querysets used by the Roller in a somewhat\nmore declarative, DRY way.\n\nAlso, sort the fields alphabetically.\n\nAddresses #39\n", "proba": 1.1451631962700048e-06} {"commit": "72b7420dccd9e843fb6291c0b9c8207a2fd15e5e", "message": "Fix weird stuff in the decompiler :)\n", "proba": 4.789669105775829e-07} {"commit": "45a9a6c2a03be7d210747cdfd3ca7e366fc908e6", "message": "complete TestNetworkPointPattern (test_network_api.py)\n", "proba": 1.6416079517966864e-07} {"commit": "db1df21b584b4b68e74b6775932c427f04692074", "message": "Fix comic filename.\n", "proba": 1.2466482530726353e-06} {"commit": "d2302c8ad48fdc4b5e447761ea581e6e04cf209b", "message": "[FIX] fields: remove leftover print statement from r.4160\n", "proba": 5.299921213008929e-07} {"commit": "a28dd94aecf4e4865b9e4f141f037c2703c4762b", "message": "Remove old import stuff\n", "proba": 4.342968509263301e-07} {"commit": "388029f9a553aaa191227d5c86453885cfc8df4b", "message": "Reduced the number of messages in the debug log when monitoring data is missing. Bug #2415.\n", "proba": 1.7507520055914938e-07} {"commit": "cfe2e7f6a63966fe6db7d51f6a94fe34cf29a25b", "message": "[fix_deploy] Tried to use our system\n", "proba": 1.6492877819018759e-07} {"commit": "3ee4d2f80f58cb0068eaeb3b7f5c4407ce8e60d0", "message": "add text information about progress of downloading\n", "proba": 2.0523522437088104e-07} {"commit": "21a69b3da35911cb96acf8b848ba4f1e24dd5483", "message": "Updated the upgrade command to match the beta repos\n", "proba": 2.0153912316800415e-07} {"commit": "2062c08dde19aba7c2ac5f92543a89a811223ce9", "message": "list only kerb5 ticket.\n", "proba": 1.230232413718113e-07} {"commit": "b674bc4c369139926710311f1a3fc6ad39da9f0a", "message": "optimize code\n", "proba": 0.9991171956062317} {"commit": "2e2643a164da684fe7949c628420af62cce8be32", "message": "[FIX] fields: function/property fields should perform their name_get() calls for m2o as uid 1\n\nThis is because the permissions for reading the display name\nof a m2o record does not depend on access to the target table,\nbut depends on the user access to the current table.\nUsers that are denied read access to the target table may still\nsee the names of the records linked to the documents they can\nread\n", "proba": 8.392038921556377e-07} {"commit": "1e4317d4b1516bb14775902dfdd8c694e19126b4", "message": "Ensure the authenticated user group has a rank\n", "proba": 6.758592644473538e-05} {"commit": "c507e8f5c29a4bd2dd22d871710da72a10dd0881", "message": "appended http:// to all -o flag links\n", "proba": 1.401429869929416e-07} {"commit": "cc894ecf36a95d18fc84a4866c5a1902d291ccbe", "message": "Use non-lazy `gettext` where sufficient\n", "proba": 9.162792412098497e-05} {"commit": "cfc8925acc5d614a17fd2a3e7a2106b99be91366", "message": "fixed average\n", "proba": 1.5994487512216438e-06} {"commit": "823eaf7f44230fa83645f102b6270e9b56557308", "message": "Added AbsoluteBinaryFolder\nNow using wxRunner.tpl from the CSnake distribution instead of local files.\n\ngit-svn-id: 5b21af815eabb73dc5820112928ed0bea355bed4@116 9ffc3505-93cb-cd4b-9e5d-8a77f6415fcf\n", "proba": 4.622298774847877e-07} {"commit": "ee502ff9a5259ff518cef789d8706de1e2a3f5ba", "message": "code cleanup\n", "proba": 7.806218036421342e-07} {"commit": "b983a0b89ab60b6b82b8cad0be2e46c7d425f561", "message": "Fix bug\n", "proba": 8.518545655533671e-07} {"commit": "990bc0bca6cf8f4fe834cf6f263272db25beada9", "message": "dotcloud info: Fixed a bug preventing URLs to show up correctly\n", "proba": 1.4975175588460843e-07} {"commit": "f9c6257f3abece88237ebdbc52af6c2cc5fa8a79", "message": "Direct Message handing - user info acquisition wip\n", "proba": 1.233335922279366e-07} {"commit": "9fd95c190a2fe77a996e34ebdb97943e4d7cee33", "message": "TRAC#7384 Add teams to config page\n", "proba": 1.1818691803000547e-07} {"commit": "591dbf0b0dbe5c42dfc767824b9fcbff6cab3601", "message": "fix param and datai0-descrp\n\nSigned-off-by: Chen <10c5bf38e0fe14db72b858c514efd96bc2925dba@gmail.com>\n", "proba": 1.4448808371980704e-07} {"commit": "0964ceb3ff2dd37d9fe15801956d44cad3088d4d", "message": "Print also the frame stuck\n", "proba": 2.3584836128520692e-07} {"commit": "23bed9a6f0b9aa0bb97cafa200738560895a5259", "message": "Give a more helpful error message on failure to GET from S3.\n", "proba": 1.3068819271211396e-07} {"commit": "df2ebbdb7e4ebad15cab089e33595feb80c095cc", "message": "[IMP] coerce 'falsy' char sizes to None\n\nOtherwise users using fields.char(size=False) will see their content disappear without warning, not cool\n", "proba": 0.0008134975796565413} {"commit": "1490b9da09f6ecf103c171c59f9cb6a42fcbeca3", "message": "Minor dosstring change\n", "proba": 4.008519169929059e-07} {"commit": "494ed9b8490461b688dda713f0447e28ae363f0b", "message": "Updated from Brython Server: 4/6/2016 1:39:28 PM", "proba": 1.105776590293317e-07} {"commit": "add629485ed90a26c425e7e1e6042b8a12e5dbc9", "message": "Fix delete win key\n", "proba": 1.888521865112125e-06} {"commit": "69f0d37d5ecee793c2344d9babdaa7b2892eee64", "message": "Fix fill cursor positioning bug", "proba": 5.786381507277838e-07} {"commit": "40ea9b1ea542b39dad64df384501b1000e7f5fd3", "message": "pushing without testing\n", "proba": 1.8942419899303786e-07} {"commit": "c9a04060f69383815b06c6cfb152713a6f29a955", "message": "fixing error in secure3d\n\n--HG--\nextra : convert_revision : svn%3Aa38d40e9-c014-0410-b785-c606c0c8e7de/satchmo/trunk%401892\n", "proba": 3.578723521968641e-07} {"commit": "1bd5ca5e10d06aae930d9a305b1cda0798694773", "message": "[ADD] field.date.context_today: added function to use as _defaults for date fields\n\nAs discussed on bug 925361, in order to have\na consistent behavior everywhere we need default\nvalues to be using the client's timezone, just\nas if the user had set the value themselves\nusing their local clock.\nBecause fields.date values are timezone\nagnostic by design, they must be correctly\ninitialized from the start, no conversion\nhappens later.\nThe new context_today method is mean to be\neasily usable as _defaults initialize, i.e.:\n 'date_field': fields.date.context_today\nis all that is needed.\nIt also avoids the classical mistake of\nforgetting to make the default value\ndynamic and directly passing the result of\na time.strftime() call.", "proba": 3.1763797778694425e-06} {"commit": "6592260db1f738345c225c0cb9e75340571b53f1", "message": "add exception in vol render creation\"\n", "proba": 1.1099690055971223e-07} {"commit": "862885b5ea2b4d04c8980c257d3cdf644dd60f0c", "message": "Set the version to 0.1.6 final\n", "proba": 0.0038870384451001883} {"commit": "6cc110fc0b6d32c9981a59afbd3fed6a23427292", "message": "ensure explicitly specified config-files have been loaded correctly\n", "proba": 2.4397911602136446e-07} {"commit": "8fd03425891bf2b9573bd54cca9d0beea9401af9", "message": "win compatiblity fix\n", "proba": 2.805358576551953e-07} {"commit": "adf61e766faa443936150fb269d58615d7abd52d", "message": "url error\n", "proba": 5.208792117628036e-06} {"commit": "751daadea9a6946ea52db3ed48560f5afa9bfb9a", "message": "Change user_info api url\n", "proba": 2.041379048023373e-06} {"commit": "4292390158462ee46551757841baa3bfe5de1e66", "message": "Fixed a regression in the tools/pe.py script that resulted in never dumping the contents of a resource entry.\n", "proba": 1.0571054787078538e-07} {"commit": "b5bed2babbc4f9f8105745fcb1b69abc35efc2d4", "message": "Fix python2 tests\n", "proba": 0.01054273173213005} {"commit": "b363bfb39235c084a28c4416e65278108af8448b", "message": "[FIX] openerp/osv/fields.py: _get_defaults() and _fnct_read() of property fields cleaned and fixed as requested on merge proposal\n-_get_defaults(): improved docstring in order to follow RST docstring format\n-_get_defaults(): removed weird loop in _get_defaults as there is always 1 element only\n-_fnct_read(): make name_get as root\n-_fnct_read(): check existence for m2o fields (as root)\n-_fnct_read(): check for type of property field is now done on reliable information\n\nbzr revid: qdp-launchpad@openerp.com-20110708125106-0q0wj5zncaa7yp0w", "proba": 4.586971954267938e-06} {"commit": "7a31e3305fe3d7dfd9af5f730c462bc641f2ceda", "message": "fix a test\n", "proba": 0.9997912049293518} {"commit": "33cf1c3a993d1a74a155e929e9ee619d7d171d53", "message": "Updated combining table\n", "proba": 4.059601508288324e-07} {"commit": "464cd45530a03cce98594a3f5867fa7972bec787", "message": "locate default config-file in source directory\n", "proba": 6.504569114440528e-07} {"commit": "f40456948dc86f8306ffb48c7fe72a5530f05b83", "message": "Updated los_collision algorithm efficiency\n", "proba": 1.5100746395546594e-06} {"commit": "1f44bf0a8ce9d272521afed1db2dca81570a10e8", "message": "Removed unneeded input\n", "proba": 4.9342779675498605e-06} {"commit": "1867e55f8355979580ba99e8e903bf4500f3690a", "message": "added sync mechanism to bulk_upsert\n", "proba": 1.9697507980254159e-07} {"commit": "e3b43251a69fb6630620f5d25214f97aa66c4856", "message": "Add more info in log for a test failure\n", "proba": 1.560347158147124e-07} {"commit": "81f3d8ef505ba115587faea12831636ce25aad07", "message": "When detecting invalid resource name print it as part of the error message\n", "proba": 0.00012938484724145383} {"commit": "f5ad2d18c16ef7b7bec134077a803bbe63f40fb1", "message": "add defer to request\n", "proba": 2.1764365953913511e-07} {"commit": "75d6aa7fa7297485d2fd33a4200123941f1af886", "message": "Added default print behavior\n", "proba": 3.6430103023121774e-07} {"commit": "c208d0e0b25e0872146cc3165696e54d2ef6e65e", "message": "[FIX] tools: prevent crash of formatLang\n\nFrom Odoo 9.0, en_US is not always activated in Odoo. As a fallback, if\nthe search for a language does not find company language nor English US,\nwe use the first available language (there is always at least one).\n\nIn order to reproduce this behavior, eg: you can set the language of\nyour company's partner to en_US, then load another language, then\ndisable en_US from your database. Try to open the \"Accounting\" dashboard\nand you will get a traceback.\n", "proba": 1.557370836735572e-07} {"commit": "ad20056f5283cd6e17d728ceb032c1b2754d83a4", "message": "Update docstring\n", "proba": 1.205138460136368e-06} {"commit": "2ac05a8ccc9d7a9ab4f455f18355d80af9e13c84", "message": "add temp file context\n", "proba": 1.0337699904994224e-06} {"commit": "09a4c7cecb3b9ff099490d60400da45c96209ca9", "message": "removing the unnecessary function from DatabaseManager\n", "proba": 1.049283400789136e-05} {"commit": "7c8d7a456634d15f8c13548e2cfd6be9440f7c65", "message": "Add handler for 403 forbidden (User does not have Atmosphere access, but was correctly authenticated)\n", "proba": 1.1410747191575865e-07} {"commit": "26335a2b2c26e6dae6bbc1121c962128b9a7fa50", "message": "gui improvement\n", "proba": 2.5990868834924186e-07} {"commit": "f8e6a13fb60c8ee10ac46fadef8d17a2726a3acb", "message": "use need_update to check file existence in apps.bwa\n", "proba": 2.6051444024233206e-07} {"commit": "9f52ae02bc1001404e0b86ab4f57b54338ef7844", "message": "Brand new bugs! Fixed them:\n\n1) When removing files in the purged user's home dir, os.path.isdir() was being\ncalled on the files, but not their absolute paths, to determine if they were\ndirectories. This is not going to have predictable results, so it will not\nalways be possible to remove subdirectories of the user's home directory. Fixed\nby testing with os.path.isdir() on the absolute path name of the\nfiles/directories. \n\n2) archiveFile was getting set to /home/foo/.tar.gz instead of /home/foo.tar.gz.\nChanged a comma to a plus to fix that one.\n\n", "proba": 2.489032056018914e-07} {"commit": "bc1ade337baef9a04bf0eb1b29e465e88a8c8e1c", "message": "StencilView docstring revision\n", "proba": 3.9411224861396477e-07} {"commit": "35ab589b3a108de661b828351dc2c10cdd13ecdb", "message": "Use keyword arguments.\n\nThwapped by: cboos\n\n\ngit-svn-id: eda3d06fcef731589ace1b284159cead3416df9b@6232 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 4.472707223612815e-05} {"commit": "b364eb82f187c923a4b7e681dbbce77763b988a1", "message": "The logger is called with keyword arguments in some places. This prevents an exception being raised when the fallback is used.\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@1949 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 4.9389524065190926e-05} {"commit": "5898ae03ba86dd002b7937668b3d3fe3ae04e361", "message": "server: format command string correctly in _screen_join()\n", "proba": 1.7774317484509083e-06} {"commit": "cb7fb6b2e5946c7137e2ae408b4b2c0337a2dccc", "message": "Added RedshiftRetryOptions and enabled support for RetryOptions in Re\u2026 (#1981)\n\n* Added RedshiftRetryOptions and enabled support for RetryOptions in RedshiftDestinationConfiguration for Firehose\r\n\r\nCo-authored-by: Vincenzo Lupia <62dc66ef197ea82fcaab872d39cb1b0106fc298f@doxee.com>", "proba": 1.1011799472271377e-07} {"commit": "e0080f171a7024bbf3cacc7a45cafb94664c3749", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "085fc34f85d7620c396261efe2b6f157496ac9e8", "message": "move timer to its own object; move secondary tasks\n", "proba": 1.913595269797952e-06} {"commit": "f4b535a5bac4f1a32d13c34aef607ed0cc621988", "message": "work on Union\n", "proba": 2.8023237064189743e-07} {"commit": "e0fa6564d0707731eaa31001642bcea508db21ba", "message": "added cache to dns lookups\n", "proba": 2.812797958995361e-07} {"commit": "883aa61378bef9cc0a64293e4d73683fe16caf3a", "message": "Fix pending offers to sell players.\n", "proba": 1.2255694059604139e-07} {"commit": "91a58abf63d53418fd01b2255e0ec5e3133299c9", "message": "Removing useless _raws\n", "proba": 7.030452593426162e-07} {"commit": "0c83d5fdcfd0aca83ff3c36667f450f3507b0ce3", "message": "Adding -S to buildoutpuppet for mac case\n", "proba": 2.003051378096643e-07} {"commit": "b7be60eff8e0c82741dda674824aa748e33e7fdd", "message": "convert pui.py to pywiki framework\n\ngit-svn-id: 2e40ff80485b5e2f2cc1551d2bae08335b3d761f@130 03ba9718-dac9-11dd-86d7-074df07e0730\n", "proba": 0.9999985694885254} {"commit": "d167937fc966a2f6aa31d16ede8025181a94b381", "message": "Send the correct arguments.\n", "proba": 2.1158636798190855e-07} {"commit": "d4885551279e3a02cab92128d2b3c94d79990839", "message": "push_github: do not use code from PushAction\n", "proba": 7.359228106906812e-07} {"commit": "45358a3f81dd324123844f6242f19e65c9e070d7", "message": "Removed print statement from previous progress fix\n", "proba": 2.073805660529615e-07} {"commit": "b48495f154d77194075ecc4517951ad80822dcf6", "message": "added interpreter proxy stubs for minor 7\n", "proba": 1.91611022160032e-07} {"commit": "21f8beedede8206cd197618d6e2df4e29e75a1f9", "message": "Added a missing bracket\n\nSigned-off-by: Ubuntu <24bf68e341ce0fbd9259a5d51feed79682ea4eba@ip-10-0-1-122.us-west-2.compute.internal>\n", "proba": 1.8059544970583374e-07} {"commit": "2e50f21b61c8f8d7752542a703198e882d91c50c", "message": "integrating mako\n", "proba": 3.7784363939863397e-06} {"commit": "95f46fd584d2555a06bcef72f93bc6f69b5e7103", "message": "Re-wrapped the __init__ method signature in an alternative PEP-8 compliant\nmanner (lifeless 3).\n", "proba": 1.2139439320435486e-07} {"commit": "d2d1ae0ec9eb35ce2b4660321a8268845f3ab048", "message": "Indent\n", "proba": 0.002044449094682932} {"commit": "ee99869bc006e983a9be9f64e02a7618b356fb1f", "message": "windows and common table expression containers changed from dict to list\n", "proba": 1.6951047143720643e-07} {"commit": "7b3fd535b7622a9c4253aa80276e05ed83f8177e", "message": "Fix app name error\n", "proba": 9.040381883096416e-06} {"commit": "efad32cd572827e3a5462223489cca9c451b0e24", "message": "Huge speed increase while iterating by using sets for changed file lists.\n", "proba": 1.0579505982377668e-07} {"commit": "7d7c2f4cd841e67e4e93956d4b83ee8531344230", "message": "0x00 if chap else 0x01\n", "proba": 0.0002081127604469657} {"commit": "d6029a7b2e39ff6222ca3d6788d649b14bbf35e3", "message": "add smoother to denominator as well\n", "proba": 5.491093588716467e-07} {"commit": "656c0f44c27f64d14dde7cbbfdec31906dab4c51", "message": "Add params to request docs.\n", "proba": 1.2018715267458902e-07} {"commit": "5be77a030134a470254124998a50c2930ddbfd71", "message": "fix typo in docstring\n", "proba": 0.00255287135951221} {"commit": "ee91ab5cffb17b1b0453d56b07cd4f5a3125389f", "message": "Too few arguments error\n\nThe Python3 version of argparse does not check on no arguments.\n", "proba": 1.1774130825870088e-07} {"commit": "3a8387c998dbfe89e8491f28f9c8e14cdb2d2424", "message": "Lint fixes.\n", "proba": 1.4087315491906338e-07} {"commit": "b12ee728929927b99872c10ad934457099380ac7", "message": "Removed Circos from checkenv script.\n\n\nFormer-commit-id: f15a4148fd57afde6c72bda8a7d12fabd152e705", "proba": 1.0237392871204065e-06} {"commit": "af0b4c7119008231b45cfdfe262dd2764d4c9561", "message": "combine cov data\n", "proba": 1.1676866961352061e-05} {"commit": "6db25f0397c09ca053fb9326e70d5cb50dbcbeca", "message": "Fixed many bugs in data processing by Lisa\n", "proba": 1.210512721172563e-07} {"commit": "336aca4e17de2da5158a564eb740091e0abaed7b", "message": "Added names to pipeline stages and made bwa alignment follow the indexing of the genome\n", "proba": 1.3084968486509752e-07} {"commit": "2aa8c22cdd272a3333952defbd1b55665d2f595b", "message": "tqdm-based progress reports\n", "proba": 2.9452019134623697e-07} {"commit": "d03741cfa22b1644f75b2466fe5d3e49cd5612e3", "message": "Fixing bug on saving the questionnaire\n", "proba": 2.281554003502606e-07} {"commit": "0dfaf7daa8274f21bbd4d9cbb00ab957932f1217", "message": "added commas to rank formatter\n", "proba": 2.7479018172016367e-07} {"commit": "37c5e96d085384b30572f4db2f35f6d21843a6e9", "message": "Report final result in logging file\n", "proba": 2.548903523802437e-07} {"commit": "a0df3539aafea8f12dece9952d9ded08315d5e08", "message": "Introduce intermediate superclass for both Dataframe and Series.\n", "proba": 1.0750250112323556e-07} {"commit": "ad76a25f781a8c06506ffeb06f03363dd8bcdbed", "message": "put the default values in context processors\n", "proba": 1.5040856169434846e-06} {"commit": "f5d24831fe1526be31bc5255694b5e761567f88d", "message": "Fixed docs typo\n", "proba": 3.883615704580734e-07} {"commit": "b0335d43c525637b5197725eb4cedab48745b0a1", "message": "Reconfigure NOSE_ARGS to not print debug and info on stdout\n", "proba": 2.1053787691016623e-07} {"commit": "84c29b1eaaea190bccbdfc0d6bfbb7078b608c4c", "message": "still not tested, but it will need this.\n", "proba": 1.5611657033787196e-07} {"commit": "1ed82c1328f233f0f63e468fb439f303e6ea323d", "message": "Add more useful error message for mising file for map\n", "proba": 1.3582800306721765e-07} {"commit": "ee97ec62641e731d922338519a36e8b06caf505c", "message": "Add memory optimization amd nccl\n", "proba": 1.2096052159904502e-05} {"commit": "2ca0114db7e41d369a72c6888ec6017b00e479e5", "message": "Remove old Manager logic\n", "proba": 1.918994530569762e-05} {"commit": "5af3ba58fcaf35e22925b3b7cf8c935e19a10038", "message": "Split up configuration-getting logic.\n\nThis will improve subclassing usability.\n", "proba": 1.0871159474845626e-06} {"commit": "fe6670cc4be519084f1da835e616fe207bb4f91b", "message": "Factor out more duplicate logic\n", "proba": 0.03731856122612953} {"commit": "e08bc87a956dc7e171847c8d7a8dbabb239e89e8", "message": "updated\n", "proba": 4.958747581440548e-07} {"commit": "7270ab9e0eec38d9743a7ec6d92a8a993e350e8b", "message": "Fix typo in dvb decoder\n", "proba": 0.9999804496765137} {"commit": "90edb804d73f601767cee5ea33ce3dc4bba15802", "message": "CA-150404: iSCSI login fails with non-ASCII CHAP credentials\n\nThe fix addresses the problem of not being able to attach an iSCSI based SR to\nXenServer, if the target has specified non-ASCII characters for its CHAP\nusername and/or password.\n\nUsernames: \u6c5f\u6708, \u00fc\u00f6\u00e4\u00dc\u00d6\u00c4\u00e1\u00c0\nPasswords: \u6c5f\u6708\u6c5f\u6708\u6c5f\u6708\u6c5f\u6708\u6c5f\u6708\u6c5f\u6708, \u00fc\u00f6\u00e4\u00dc\u00d6\u00c4admin!23\n\nAfter the fix:\n * Attaching an iSCSI SR using a WS2012R2 target.\n Can use any non-ASCII characters for username but only ASCII for\n passwords.\n\n * Attaching an iSCSI SR using an IET target.\n Can use any non-ASCII characters for username and passwords.\n\nSigned-off-by: Kostas Ladopoulos <7920ee5edb7fd3a4c6c6e3ebe9bd13d4a7f2eff1@citrix.com>\nReviewed-by: Siddharth Vinothkumar \n", "proba": 0.0007089804275892675} {"commit": "f280687bc1f21da5d29b1a64e7791d01a37995cb", "message": "CA-292268: Retry tap-ctl.Spawn on failure\n\nSigned-off-by: Mark Syms <655512b2a8f1aba6e4085462b623575da824f038@citrix.com>\n", "proba": 1.1156446078075533e-07} {"commit": "61bf24f980326fcd6d870a72c1928ec9e24cc353", "message": "Fix flag generation for args with boolean default values\n", "proba": 1.252905576620833e-06} {"commit": "37fa5e1d81f5c6cba41954d1c4c5ee663031951d", "message": "Add DEBUG statements\n", "proba": 8.217352296924219e-05} {"commit": "bbdff95e3b3a44202b64c182e7b60ad6f385348a", "message": "Added {chat_id} message key", "proba": 7.802325399097754e-07} {"commit": "0ba512b0e8eb6b5055261afb2962d3bfc5e2fda5", "message": "Add some playback stream headers\n", "proba": 3.6028279737365665e-07} {"commit": "ecb3779a653791b0f5f172fea52ae49326e705e1", "message": "Update auth.py file with printing on start of authentication.\n", "proba": 1.1218347850672217e-07} {"commit": "e6487a2c623638b540b707c895a97eac1fc31979", "message": "Update connection_test.py to work with Python3.7\n", "proba": 8.860083084982762e-07} {"commit": "359a23679d0249949bcfe8f8f586307105e3e2ed", "message": " add cleanup stmt when a data prodsuct is persisted to fix ingestion worker leak\n", "proba": 1.981791086791418e-07} {"commit": "6e70219b45d7add50120fe09d62e8287d5f91fcd", "message": "tmp commit\n\ngit-svn-id: e2dcd90fe895e0af720f8c7f5030b550814520bf@107254 db7f04ef-aaf3-0310-a811-c281ed44c4ad\n", "proba": 8.552033250452951e-07} {"commit": "6e255e4837c5d0f955c95d969c9530d7737f29ba", "message": "ignore SIGHUP (useful if running agent from ssh)\n", "proba": 1.2691558026745042e-07} {"commit": "2fe5fc8c53142b5661bf176441e246d48cdb0799", "message": "[Sed] fix a typo", "proba": 0.9999991655349731} {"commit": "1a3eed04aa20ddb0b504df45e9ab15a0fb4fe3ae", "message": "Changed the template to not conflict with configini's string interpolation.\n", "proba": 1.0709319298030096e-07} {"commit": "90cbc96000d566bbec4ea8c732b851beabd84619", "message": "flexi!\n", "proba": 2.984360776281392e-07} {"commit": "69b9c641f144633b94aca47212af446971286454", "message": "add tests\n", "proba": 4.0275867263517284e-07} {"commit": "8177b39d613ca23c9735bdaf503a3eaaf231d933", "message": "secret sauce\n", "proba": 7.224523983495601e-07} {"commit": "6efa5d6194da50aa34cf3f3858101484c8313ad7", "message": "Accept category=... as well as categories=...\n", "proba": 1.921728340903428e-07} {"commit": "e71840734896b5290d008b7646f2e238cf2ab4f7", "message": "Rename get_url to url\n\n- to avoid using an unperformed action in variable name\n- and fixes indentation to be pep8 compliant\n", "proba": 2.4026530809351243e-07} {"commit": "283ee01bb3c9662c54d14476657f7e697b439e5e", "message": "Fix docstring\n", "proba": 2.9501701646950096e-05} {"commit": "50466f05dcd8a4a9d48e56cd0c2cecadc944080c", "message": "more precise extend chances\n", "proba": 2.2297712121144286e-07} {"commit": "58f57dcbb751e8fa6a467b4bb5d1dce4b8613674", "message": "gardening\n", "proba": 1.1281038496235851e-05} {"commit": "49514544bffa7f3e0156596fc1739739791d5d1a", "message": "prevent an empty field name for the command parameter form\n", "proba": 2.6450416044099256e-06} {"commit": "df9b8bb3c30617a1c511d93e13628465fefee246", "message": "using a sqlite based id assigner\n", "proba": 4.3516956793610007e-07} {"commit": "207110edd50a16735129286103e3c6dba5a0f9d7", "message": "-change API of write method\n", "proba": 2.2487644457669376e-07} {"commit": "3079910fd69f9cc21df29b0e7d4aac0240507894", "message": "changes encoding\n", "proba": 3.4364832117717015e-06} {"commit": "61fdcdc30cd21ae329293f08204573f710383674", "message": "Adding fix for displaying charts with variable generations.\n", "proba": 1.1305914426884556e-07} {"commit": "7311650015008926899bbae3f596cfa19bc4ec95", "message": "complete final version. contains empty moves_cache.json\n", "proba": 0.9999825954437256} {"commit": "8fc51f7e7f7f6698ac2adcc896c42212b6373c86", "message": "small fix to comments\n", "proba": 1.3058603087756637e-07} {"commit": "b20ce4043265efb5f04192420d1b5c3259f5d330", "message": "Fix Numeric column updating\nGets rid of an annoying debug message for dealer tables by handling importing them better\n", "proba": 1.2594425413681165e-07} {"commit": "87986def8137f5c28c261e36e36edf6213df83a6", "message": "chimaira: use correct option name for likwid prefix\n", "proba": 0.9986804127693176} {"commit": "034e4b2aeed00176b12a146a6ac23c06f9ee6e09", "message": "fixed cache", "proba": 9.655703934186022e-07} {"commit": "668a986577bf6c5e6cc0e76a74b4318cedd95209", "message": "[ci] filter out None (#6783)\n\n* [ci] filter out None\n\nThis fixes an issue where we cannot retrieve old batches for a PR\n\n* bump\n", "proba": 1.428010932613688e-06} {"commit": "25cb4558f289dd08aab840250b61f46a2f54cae9", "message": "add try-catch to accommodate incomplete testing environment\n", "proba": 2.3435110563241324e-07} {"commit": "fd68f0e4986d55b6d7f348c183512f20f2be7cb7", "message": "PCA now uses common\n", "proba": 1.3761705019987858e-07} {"commit": "ac23a1671897258182885b03e1c96c43c33011c3", "message": "Allowed single strain input\n", "proba": 2.703808377191308e-06} {"commit": "7312feb56a056aa245732675b470f18db011ba75", "message": "Ran code through pep8 and fixed all occurrences of E124.\n", "proba": 1.0589418764084257e-07} {"commit": "a79b7d2f0a712bfbc60e4ea3b34aa0331675519d", "message": "Add OpenSlideError exception class\n", "proba": 3.1412079692927364e-07} {"commit": "9c29bfccd45a47082d0d28061654be8aed5e7349", "message": "improvements", "proba": 7.518308393628104e-07} {"commit": "ceed90482c6cc40bc3c13bcbac6cd4f3314b8543", "message": "used PublishableAdmin on Source admin\n", "proba": 2.1223205237674847e-07} {"commit": "6a4f4031b0aac1c8859424703088df903746a6c8", "message": "change command doc string\n", "proba": 2.1907899281359278e-06} {"commit": "f489759f32504e5d8063e9f441d12038d55a1170", "message": "quick fix", "proba": 3.852059364817251e-07} {"commit": "62cbeed8b38bc52bf72a3b42b77c67e6fae1a5a7", "message": "tqdm remote.http\n", "proba": 2.0579595627623348e-07} {"commit": "0c0437f0686fa778410488a7baecf22271097eab", "message": "Remove support for older Python versions\n", "proba": 2.560153689046274e-07} {"commit": "912e5dda431ebe1865a9c2c92a94175409e8430e", "message": "Don't use bottleneck in statistics() as it has a memory leak for big-endian data and provides no performance improvements\n", "proba": 5.59532338684221e-07} {"commit": "08b4da65487aa15bb427c475b33b71a3277d0d7b", "message": "streaming code used to hang when it was asked to \"exit\" - fixed now (#635)\n\n", "proba": 1.1249245801536745e-07} {"commit": "b92c1b5a6a814761d018f9e4d715fb1c2eca4f8b", "message": "fix z projection\n", "proba": 9.145010722022562e-07} {"commit": "78ae41554e2efba864d852466dd5b2f1b86cb18d", "message": "raising NotImplementedError for get_alert method.\n", "proba": 1.226195962544807e-07} {"commit": "02467c91752996ff838168301e5d54c7e5b8b14b", "message": "added optimal parameter setting\n", "proba": 3.700654644944734e-07} {"commit": "6245e2dc0e75b0d1606f35cf63aaafac5575ada3", "message": "FROG TIPS ADDED FOR GUIDES ON HOW TO OPERATE FROG.\n", "proba": 1.0028040264842275e-07} {"commit": "5ab7d4af67abb20a87f9b963e9ae53df65eea42f", "message": "fix self deleter\n", "proba": 2.9752154659945518e-06} {"commit": "50a69f36279022b1880350c9dd0c43f501829890", "message": "more small fixes\n", "proba": 1.4624076527525176e-07} {"commit": "cb169a1d551066f721e95cf9368a7a624da6f3bc", "message": "chase nearby enemies! (uploading v1)\n", "proba": 1.0689055329748953e-07} {"commit": "db8905d86665087326a29bf9e6daeb61db7f15c7", "message": "Make sure MergeRequired includes the right node id\n", "proba": 1.5750269710679277e-07} {"commit": "f3e1d811723819d2984ef2a9714acbb2c235a16a", "message": "debug\n\n", "proba": 1.5664004422433209e-06} {"commit": "564138e0f33d6fd50780673dc66d6ea49567e532", "message": "lagt inn de siste views\n", "proba": 1.5506824979638623e-07} {"commit": "f5d6bc2ff2abf53c6fcf7de5d74ffc50b5d7673d", "message": "Fix python environment in test (#1305)\n\n", "proba": 4.623935183190042e-06} {"commit": "a4e660619d6ac32c929e4e34533f27f89609ec87", "message": "Solves multi-module problem for metaclass\n\nWhen base classes are used for models in multiple applications then it\nis important to be able to separate those relationships.\n", "proba": 1.1619957263064862e-07} {"commit": "e3ca7acdeafc7fdf06e617086757a55812fad710", "message": "set base class to non-test\n", "proba": 7.115294283721596e-05} {"commit": "93f5510617cdaa5e56387a147e0a1ef3de2841bf", "message": "minor details\n", "proba": 1.5793033014688262e-07} {"commit": "7e6d2ab61667bd3be246a2efe2a31212dbdef079", "message": "Fix how rangelist is generated in orgviz.randomnodes\n", "proba": 0.0015074521070346236} {"commit": "7b80ddc08cb7fe7c2ac505bd61a892f06fb2adde", "message": "Update tabbe_browser and fix some issues with title handling", "proba": 1.443785890842264e-07} {"commit": "7e7bf5bcce33f2f1a71dfc1c3db9bd9db5d208a2", "message": "upgrade tests should test tentative tags\n\nloosen up version matching to find tentative tags for testing\nproperly use a git remote like apache as a tags authority but allow for\nlocal tag querying if needed\n\nshow ref sha's during test run so we know what commit exactly was used\n", "proba": 1.4157673433601303e-07} {"commit": "c1950eebfc403d68fe2e64558b2a507fdfca2d93", "message": "Implement get_image() method for fetching info about an individual image.\n", "proba": 1.165418339610369e-07} {"commit": "0387fb46b38db702ed92b545e4c30b5c9e2c0edf", "message": "Removed Python 2 dependencies from fetch stories management command\n", "proba": 2.0279018997371168e-07} {"commit": "ee99717d80679edfbf993bb8f9b0519b3fb8bfc5", "message": "WIP proba interpretation\n", "proba": 2.830992968938517e-07} {"commit": "33cae6a29bbedd69e338bf3169e14dd7a0818355", "message": "xml schema: legacy calls to to_string are now calls to to_unicode #113\n", "proba": 1.4143314785997063e-07} {"commit": "28924253a1acfd9d694f594426cd4ab8653a324c", "message": "Caches socket.getfqdn(), send 'domain' when profiling.\n\nOtherwise it's hard to know what's generated from automated testing.\n\nR=chase@chromium.org\nBUG=\nTEST=\n\nReview URL: http://codereview.chromium.org/6902153\n\ngit-svn-id: fd409f4bdeea2bb50a5d34bb4d4bfc2046a5a3dd@83673 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.353860872972291e-05} {"commit": "78c1fceec36b52bb26ca85b79833434ab58752c8", "message": "add 3.1 to upgrade_through_versions\n", "proba": 2.976190103254339e-07} {"commit": "98f6265825c38c57f3d92251d2d39e6e37c04043", "message": "increment bottle revision\n", "proba": 4.4018963762937346e-07} {"commit": "b0c83624004ebda4ea23f597d109d89ec319f1cf", "message": "fix tut2.py\n", "proba": 1.0413396012154408e-06} {"commit": "a5a983cc2f6d30f022cc733a1cef893ba2f62931", "message": "Only copy to clipboard if clipboard is available\n", "proba": 1.889282401634773e-07} {"commit": "808d24d0888912b0fed96106a7354d442585be6f", "message": "use commit() in borg with-lock, fixes #1867\n", "proba": 1.7067823421257344e-07} {"commit": "333f888549c06b2ae94ec141ad2c65a449040aa0", "message": "Add the pack() methods to HBox and VBox.\n\nThis is just like add() with the size always set to 0 (to make the cell\nas small as possible).\n", "proba": 1.123809383329899e-07} {"commit": "87c567784a4da800e72922ed4415f452c7df2fed", "message": "use absolute path to be py3 compatible\n", "proba": 1.3029985893808771e-05} {"commit": "d6fd0562a0d2c72b069fbdd677adc20ccf6cb1d3", "message": "Simplified __init__ to utilize the native function.\n", "proba": 1.6937955251705716e-06} {"commit": "ceec6798513ae2b60fca0a4a0d3b97361917bd87", "message": "fixing failing test\n", "proba": 1.0133227306141634e-06} {"commit": "1df66e90b243b375b6c6147479662069917f9344", "message": "Add clarifying remark about Styler.style\n", "proba": 1.566575178912899e-06} {"commit": "111bce772c464579fd603a290645c84a3e586878", "message": "Remove stale comment.\n", "proba": 1.3109050200910133e-07} {"commit": "4241d8a32a91fe21fe2a774e038c6dab8a20bfd5", "message": "Shutdown scheduler at exit.\n", "proba": 1.51125320257961e-07} {"commit": "0aeef2dd85f7dc6592683aff097c2cc1b73600fe", "message": "Tornado's IOStream does not have an \"address\" attribute, so use\nsocket.getpeername() directly.", "proba": 1.0772356517918524e-07} {"commit": "0677ec9b5046fadf3a3f74918703a289fb78408a", "message": "openvpn - audit exception fix\n", "proba": 1.4672230008727638e-07} {"commit": "9743e4d4c7821ceb4fbeee392a7ab5a80ba76f6b", "message": "Included table to store proteins from all transcripts. Changed FASTA to just include one copy of each protein.\n", "proba": 1.0566438390924304e-07} {"commit": "f600d459f051288042ce531bab029953563a11b3", "message": "Replace NO_ARCHIVE block with single call to rsync\n\nAlso attempts to move the workaround for bug #1696283 to before the\npuppet apply call.\n\nCloses-Bug: #1696622\nChange-Id: I3a195466a5039e7641e843c11e5436440bfc5a01\n", "proba": 3.467542910584598e-07} {"commit": "d26e96c9d9c7cc366e8cf9cb4bef5c01c8a7be08", "message": "Add basic PGUP/PGDN support\n", "proba": 1.5383581342121033e-07} {"commit": "de65a249d2763583ca01f28997e165ffdd32fc8b", "message": "Underscore, not dash.\n", "proba": 1.3002473906453815e-06} {"commit": "0beae47e522103778c6928892790bcb24b0a3f52", "message": "Added in and tested new Connection object. All kombu/funtests still passing.\n", "proba": 9.888437801919281e-08} {"commit": "8356da27e34b269052e57734b424f65a3c636b07", "message": "remove testing kludge\n", "proba": 7.445557343999099e-07} {"commit": "100fa2f08656009e3fa2ee4fd66a85c5aca35f9d", "message": "Comment typo fix\n", "proba": 4.1724396737663483e-07} {"commit": "e63c463a3200d9843bc5be6c1c3ee36fb267cbde", "message": "Update hyper space setting.\n", "proba": 1.5456167545835342e-07} {"commit": "4a6846b969746b79f1acd0e0615232d97ed54b1f", "message": "replace import-time cluster dependencies (#1544)\n\n", "proba": 1.2265796556221176e-07} {"commit": "f44e9e5d8b652fd2cdba4c0253c958271eea9a2c", "message": "(bug 267) Fix flavor info provided as dict\n\nChange-Id: I1a388177c6fb0025679ec3bc72b9c3e6fd927810\nSigned-off-by: tierno <51bab9660ca99329005a6d64fa97d56da061cb58@telefonica.com>\n", "proba": 1.2402595928051596e-07} {"commit": "cf1d869105641095406db7bf2e5e0e2c1a9bb014", "message": "Updates docs for rename of `name` to `repository`\n\nSigned-off-by: James Meakin <6b5984aabe6b6542d9b7fed02dc809aff42eb5c3@gmail.com>\n", "proba": 1.2186207243303215e-07} {"commit": "b05e3d4b65774b449a8c38a3edc684d59414313e", "message": "Document strut widgets\n", "proba": 4.1878914203152817e-07} {"commit": "1db00a45da75189d8332d30de56e37c6b6764d3a", "message": "Extend KontsevichGraphSum.jacobiator to produce a Jacobiator on top of a given KontsevichGraph.\n", "proba": 1.3349868765999418e-07} {"commit": "0eef0efbe716feb3dc02fb45a756496d5517966c", "message": "Update docs.\n", "proba": 1.6835790006552998e-07} {"commit": "1e188f60c9adf13d4e2e5e67ac1f8c8848fa2623", "message": "don't revisit vars\n", "proba": 6.487953214673325e-07} {"commit": "0ed552be8e248687f45000c969a0b5e50b4c788a", "message": "Short-circuit by starting with an overlap test\n", "proba": 1.9200042515876703e-06} {"commit": "526ceb07eee5e39bf55640b5afbd1a189f90a54a", "message": "Add help method for returning vumi.message.Message classes from a broker.\n", "proba": 1.11214966125317e-07} {"commit": "bab92775a576e28ff9db262f32db9cf2375bba87", "message": "Mandate has data in state.pkg\n", "proba": 4.413729470797989e-07} {"commit": "0859bb58a4fa24f5e278e95da491a2b4409f0b2b", "message": "Tag 0.5.3\n", "proba": 8.085837066573731e-07} {"commit": "edd5666f81e7c0fa972f2f7139bd74420a3bb92c", "message": "tests for one-sided value deltas\n", "proba": 5.375051159717259e-07} {"commit": "b6554b00fdb0387a27671eeb39589dc7e7109f6e", "message": "Add collecter function\n\n", "proba": 5.496773383129039e-07} {"commit": "cf67a7784c3f51d74d1ad2a23f0a1b04dacda489", "message": "framework/getters: Calm pylint\n", "proba": 5.315097951097414e-06} {"commit": "463220c0514e918cfe2238297a61fea90bae6c7d", "message": " Ignoring multiple spaces or tabs, while checking for sysctl changes.", "proba": 1.0893165125480664e-07} {"commit": "28510df4db55ad155a9a631036dd2d03c4513a2d", "message": "Don't assume!\n\n* Only add '*' and 'sys.doc' on a `salt -d` cli call if those arguments aren't already there.\n", "proba": 1.0918396498027505e-07} {"commit": "316517b40bf0e98cfac63c39d50ea4965887b902", "message": "Don't assume the additional count is always an integer\n\nThe additional count will be None if not entered, and is thus\nunorderable on python 3. Since the validation will restrict\nit to either None or the interval [0..20], the standard bool\ncomparison is actually all we need.\n", "proba": 3.3663211070233956e-05} {"commit": "5cb2cd25635aaa80de81c35c898b5e09ce9e86c7", "message": "Default link commands to NU\n", "proba": 7.63596858632809e-07} {"commit": "6f6ecce3e8ec0d5e9718363b078a7b72aed037af", "message": "Fix set custom option class\n\nOld (PR #25785): set option_class static value on class instantiation level. This\nwas overwritten by OptionParser.__init__ on instantiation. So it worked\nfor option groups but not worked for root level options.\n\nNew: pass option_class as kwarg to OptionParser.__init__.\n", "proba": 1.202168533609438e-07} {"commit": "1e8dd66e13c92d99a168e4e7160d6e98b0853477", "message": "Show all pages in admin interface\n", "proba": 1.490200531861774e-07} {"commit": "e98817e4d780d6fc0fea5a059b13d1bec06c4760", "message": "Stickler", "proba": 1.9421661363594467e-06} {"commit": "122c94414ce87f59e31217da7f9825391b1862e9", "message": "Can't import SublimeLinter at the top level, that causes multiple imports of sublimelinter.py\n", "proba": 5.160871410225809e-07} {"commit": "d35ab33378af6320968d82473dcefaca8b813a1f", "message": "Fully backward-compatible\n", "proba": 2.482740455889143e-06} {"commit": "47e498b58824c30863e049d1fd5566137347a705", "message": "properly escape backslashes in windows paths when setting compiler #line directives\n", "proba": 3.7680334230572043e-07} {"commit": "78aaefb9cc52c55a486232cfa280ecab44edd3e4", "message": "Use defaultdict for errors, so we don't lose anything if multiple validators use the same err_type string\n", "proba": 1.3135046401657746e-06} {"commit": "be0cadc30a90b397a03ad0fc4e8a599ac9a539f5", "message": "Use the new setting to navigate links\n\nUsing the newly added setting, navigating links now takes the topic from\nthe setting instead of from the text that appears in the buffer, making\nway for us to create intra-package links and links with alternate link\ntext.\n", "proba": 1.0005209105656832e-07} {"commit": "7b58f59ec288dd055cf931dd47c4e8e59bb9ad1d", "message": "update atx-agent version\n", "proba": 2.455645926602301e-07} {"commit": "0c9accce7b3df8889ecf57b6df89a36628cb908c", "message": "add timeout for running scheduler\n", "proba": 1.0294785397491069e-06} {"commit": "2d1359f33c24bb229eff6666283d5ee912624750", "message": "[ci skip] whitespace\n", "proba": 0.9989452958106995} {"commit": "62526cc05b1e512eec428f0d33d08d4fb23ce5d4", "message": "Add `namespace` argument to config.parse()`\n", "proba": 2.4020323508011643e-07} {"commit": "a2633c3f307e34e28bb36696ca28edbe69e5ff7b", "message": "Point repo.py at system Python so it doesn't fail in virtualenvs\n", "proba": 2.9617496011269395e-07} {"commit": "27123cd748e0a59644da2bd3d26cc86d58297126", "message": "Finally fix getUsersFromCommaList", "proba": 6.845288567092211e-07} {"commit": "b27ce5c8ef4ff4a549776404898969f91eeaa19c", "message": "Fix a test\n", "proba": 0.9999988079071045} {"commit": "76ca76c33e4b6d05bf0c1ff34cacdb51dc5f8215", "message": "Changed check for hvg variable in preprocessing\n", "proba": 1.9898682523944444e-07} {"commit": "80c446aadf9325c9651d421d4a07c3c1b77d4cef", "message": "Default score to 0 when adding a new answer to a question\n\tChange on 2015/06/16 by nretallack \n-------------\nCreated by MOE: http://code.google.com/p/moe-java\nMOE_MIGRATED_REVID=96154757\n", "proba": 0.0004337654390837997} {"commit": "89e7c317390be1e0f8a81775bce9181fb553b865", "message": "Zip up copy of deploy experiment code\n\nCloses #104\n", "proba": 1.529370621256021e-07} {"commit": "b247a3dc81854a1409e6b283b5c9bcb1acc5f072", "message": "Fix syntax errors in commands.py", "proba": 0.002605719491839409} {"commit": "a226950f5774b8b8a53656e1a37ad0496e1dc531", "message": "named groups and verbose kHDZRadBreak\n", "proba": 4.004581569461152e-05} {"commit": "c9e676b22b6d57e14106df22eeeaa586a7c6d356", "message": "Revert r4157.\n\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@4177 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 6.114374264143407e-05} {"commit": "f75b1679a0f9d0cf5df674b1bada8e664651b8bb", "message": "Freeze the experiment package only when deploying\n", "proba": 1.1516183349158382e-06} {"commit": "4f0bab69f749e7b5f676dfa80fcbccbc1a449a2d", "message": "Added button to send photos when click on button\n", "proba": 1.5349378656992485e-07} {"commit": "81e2568dc42a7d5b5d0caa7cfba81a5c99f5ab5d", "message": "Simplification in Trigger Feedback class.\n", "proba": 1.1582252312791752e-07} {"commit": "42f4ed206a9c79799b9bb0b13b829c8cf9c979e4", "message": "write to file\n", "proba": 7.659285756744794e-07} {"commit": "f878b0466ca3393f89743ce043d4eade7fb71571", "message": "clock discriminates between approved/rejected/submitted\n", "proba": 8.351177598342474e-07} {"commit": "e79126605203c4c8ae63c9850c08e42ad69d0087", "message": "Restructed doc plugin slightly and automatic detection for required themes.\n", "proba": 9.892116281662311e-08} {"commit": "8dc3cf60a57d6cce644c619385985c781c60c638", "message": "use the begin of the line\n", "proba": 0.006476814392954111} {"commit": "f1b60d3b125eabb56d3a9163994e445dd1154c61", "message": "Sigh more refactoring\n", "proba": 3.9513290062132e-07} {"commit": "7a06a44918c8169b335b9d830e5ed3669578b1db", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "fabc1637560d1255c3218f6ec86c8a875398a409", "message": "Limit request feed items to 50\n\nCloses #100", "proba": 2.198725894686504e-07} {"commit": "c924f2d4a0072299d477a05da675646ce306941a", "message": "fix host name\n", "proba": 0.0003572300192900002} {"commit": "94182e97ed1635e3aa4993f3db69c248e16b7600", "message": "Undo previous commit\n", "proba": 2.7126856139148003e-07} {"commit": "1d06809d931ffefbd75ad1ec2d6622f9fcd2addd", "message": "Doh! It would be nice to get the settings every time the panel is opened.\n", "proba": 9.950893797849858e-08} {"commit": "c8a010e6e9a917c50843dd10303f8f9497b4687c", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "9294fdd4e627bc42531ed09aea41fa3614600af6", "message": "CollaborateCommand rewrite of mechanism for choosing a peer to open a session\n\n- openSession() triggers chooseNegotiator() which triggers choosePeer(), all using the sub_collab registry\n", "proba": 2.110740524585708e-07} {"commit": "d80df469a39c7c51f0adfe5283efda07701a65f9", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "d5c9569d557a10ea8933efb30e6ba69c47650e96", "message": "change calculate_gene_distance to calculate_gene_heirarchy so we dont get confused about distance\n", "proba": 2.885345793401939e-07} {"commit": "192a41dfefbe057e22752fa9050bb79f4ea2f746", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "508bb1c24ab52eb6fa82a55094ceb321b6dc76e7", "message": "remove old GEO code\n", "proba": 0.9994530081748962} {"commit": "e9e423e986995f2440b897f95206763cd16f8341", "message": "quick bugfix\n", "proba": 4.823700692213606e-07} {"commit": "dfec7455f49096599c648daa698b81e0d32c81c8", "message": "Remove fold_sfs which has been superceded by Spectrum implementation.\n\n\n\ngit-svn-id: 4c7b13231a96299fde701bb5dec4bd2aaf383fc6@105 979d6bd5-6d4d-0410-bece-f567c23bd345\n", "proba": 1.9523575247148983e-05} {"commit": "e6561131fc3469711544699ff69c0451417a8745", "message": "Began integration of object model\n", "proba": 2.5749335463842726e-07} {"commit": "d377c835f20e839dfd5e95c5ab14db98a441c6a8", "message": "Add product variation redirect test\n", "proba": 2.3509562652179739e-07} {"commit": "05fbb9bba88931cb15db43447e876af108f1d8ff", "message": "activate daemon14\n", "proba": 3.9960380604497914e-07} {"commit": "96ad55903c3fd902a797eab208678beadc80d66d", "message": "Doc: Add newline to fix rst list\n\nThe comment wasn't a valid rst list, and Sphinx complained about it.\n", "proba": 1.2090866619018925e-07} {"commit": "e0435fccebda7f2776c3947207cd483fcdb5cd78", "message": "extra logging on error\n", "proba": 2.5841143269644817e-07} {"commit": "4ee54d5b977ed2f120114b150fbc0dfac50b2de3", "message": "updated with auto_weight\n", "proba": 3.4135035775761935e-07} {"commit": "32bd537b200a95bb68d60c8965a7c3fb72e4f59e", "message": "Updates for final EP comparison\n", "proba": 1.3319476011020015e-07} {"commit": "61d69f2cc850df49186f88c540d22cf4c0462b41", "message": "Python: Add test for full-path import of Django View class\n", "proba": 3.9796125861357723e-07} {"commit": "4908bad3cbc32a67fe2801975802766e58064e32", "message": "changed regular expression for http", "proba": 1.5931643702060683e-06} {"commit": "b0e3886ee24689f1eb249e0ed3c66d887b317f60", "message": "Delete table test\n", "proba": 1.5557958477074862e-06} {"commit": "ac3411a249594802415c39dd4e614b05e8df00b8", "message": "Set 'urlextract' as logger name\n", "proba": 0.00030655888258479536} {"commit": "b3d716c92496e3145fca2f0301ec9829caf85f2d", "message": "DOC Fixes default value for eta0 in SGDRegressor (#14047)\n\n", "proba": 1.0498376923351316e-07} {"commit": "61acb70c216be172a239a059b0d2358cce99e2d9", "message": "Correction on the automatic cleaning of passed jobs\n", "proba": 1.603918207138122e-07} {"commit": "cd2443c7abd2bb6f3c1dc2b56f2f377b7c7d217f", "message": "A few more stats the Akshay was looking for - I am not seeing them in the output of GPGPU-Sim, so commenting them out for now, but in spirit they should be there\n", "proba": 1.3520353547846753e-07} {"commit": "c45017a80c17fcb6f0bb2595392a24b287aba3ca", "message": "Update collect_sql to support objects of different types but same name\n", "proba": 2.609976093026489e-07} {"commit": "3afc92a3716f3ce22679ea031c78284ef94c2241", "message": "standardize nowcommons.py\n\n- NowCommonsDeleteBot extends pywikibot.Bot\n\n- pass options to the bot class constructor\n instead of using global variables\n\n- BREAKING: the '-autonomous' argument has been replaced\n with the standard '-always'; the former is provisionally\n retained for backwards compatibility\n\n- replaced NowCommonsDeleteBot.urlname() with Page.title(asUrl=True)\n\n- the argument parsing has been optimized\n\n- replaced ImagePage.fileIsOnCommons() with ImagePage.fileIsShared()\n\n- pywikibot.inputChoice() always returns the short variant, lowercase\n\nChange-Id: I1cc6b5734237d143c8100f3c26c20d78c36924c6\n", "proba": 0.0005509591428562999} {"commit": "4437565016d0b1edc3b5a5f96d405cd0c41ca5b9", "message": "Use DataHandle timestep helpers in sample_project\n", "proba": 2.1503029756786418e-07} {"commit": "997679b04358b1dcb0f3c02043c55c2100f21d53", "message": "Put mode in its own table, explicit function to change it\n", "proba": 4.5451758978742873e-07} {"commit": "02b61971129b54027b596381d5b2dc2c7d4733b0", "message": "Make AttrSpec comparable *and* not break completely\n", "proba": 3.986803562838759e-07} {"commit": "d2eaa3c260cebbb8c9d4fcb63d8c67aff3c3f9cb", "message": "Fix inverted coordinates\n\nUser types (x,y) however tile (y,x) is checked\n", "proba": 4.800589522346854e-06} {"commit": "6ae01ca0227e0a1eee6b36bff7a4aac034142495", "message": "Fixes CORS issue\n", "proba": 2.93233767933998e-07} {"commit": "42309b743f742ccba7bd8d793a5f12026ccac34c", "message": "remodeld the **kwargs in place of keyword args and allowed the filtering of datasets\n", "proba": 3.270781405717571e-07} {"commit": "9d5ee3448fd8991e98b7dc8ebb1a190f16e31b3c", "message": "branch merge\n", "proba": 1.250864102075866e-06} {"commit": "d5fe2e21c8ed4e1dc66098e16011cb2f9094e573", "message": "Fix ConditionalJump to manually increment the PC\n\nBefore, ConditionalJump set autoincrement to False when it found the matching value on the stack, but this was impractical because the first time the instruction wouldn't work because of how the loop is layed out.\nNow, ConditionalJump manually increments the PC, fixing the problem.\n", "proba": 1.2648098390855012e-06} {"commit": "56da50b745e3761bcf2b1ac6badf9227f8a12d30", "message": "Fix merge bug\n", "proba": 8.769454211687844e-07} {"commit": "0599caabccdc24ccf296d16c911107acc3cae681", "message": "fix tag handling in ovirt vm creation\n", "proba": 2.8330049417490955e-07} {"commit": "3d8f574d61f95e0a12e8501481bbe409ae4e35e0", "message": "Snip outmoded imperfections commentary from ProfilingMiddleware.\n", "proba": 1.0274957418232589e-07} {"commit": "5df7b4fbdf4a63c70d72a99d5920221b34ec32b3", "message": "Remove logout step\n", "proba": 1.4954810012568487e-06} {"commit": "0655ad581fbba1b6bc4768bc944eb656c8bd31be", "message": "ovirt: force hostname to fqdn if domain is present\n", "proba": 2.9595942123705754e-06} {"commit": "36050224ee83a14cb4c4f7ff0b80fef804fbe86c", "message": "remove invalid todo comment\n\nremove invalid todo comment in std_actions.py, since there is no\nneed to implement this feature.\n\nChange-Id: I500312bb039260853a4d96a54c3395992947b9d5\nRelated-Bug:#1676411\n", "proba": 3.148696123389527e-06} {"commit": "030e4f4ec2c27b5b4ffbc9620a1f762f5c49d0cb", "message": "gen.py: don't include multicast address to the prefix to be advertised\n\nSigned-off-by: ISHIDA Wataru <15703620d0b11e835ab4f34ebf88f2f40cce783e@lab.ntt.co.jp>\n", "proba": 1.2763219103817391e-07} {"commit": "77753e27982ec6018db5e5be7d05a2ba4f6a119e", "message": "Added \"expected\" to OverQuota Exceptions\n\nChange-Id: I32cdbe2dbf0fb09b8f3edd99eadcee4d96bef404\n", "proba": 6.52749918117479e-07} {"commit": "0e46e50eb1d1fdfc898ce13a383b86f7bfd27e8c", "message": "ignore virtlogd start error in case user still use qemu-kvm-2.3\n\nqemu-kvm-2.3 no service virtlogd\n\nfor https://github.com/zxwing/premium/issues/1829\n\nSigned-off-by: Mei Lei \n", "proba": 1.2941086424689274e-07} {"commit": "d10a80ca1bb5ab67a2b608432320dbd9b5568f40", "message": "14.08.2014 at 14:50:51\n", "proba": 1.4567632433681865e-07} {"commit": "eeea990b6409085e38df4be4c137b9e42e354ec6", "message": "remove more target=\"_blank\" for @tofumatt (bug 807049)\n", "proba": 1.970997800526675e-05} {"commit": "457bc2b59005f69261ea80c8791fa314c2938f21", "message": "Deduplicate opbeat errors\n\nPreviously, errors were logged twice in opbeat, and once for every url.\nThis is very inconvenient, as exceptions are not grouped by type of\nerror.\nThe only advantage of manually logging exceptions as errors is to\nvisualize the corresponding url easily, but that information is easily\nretrieved from opbeat.\n", "proba": 2.2170066586113535e-05} {"commit": "b1be0afb7e7f9c879830655c1639c9c8b9d4309d", "message": "Fixed duplicated method name\n\nAnd made implementation reflect the fact we don't do any dynamic stuff\nthere.\n", "proba": 1.0078143475311663e-07} {"commit": "b4231dfe0fc78d411ddb26ae83702f56e3b08258", "message": "Catch misspelled org name in 2FA script. Fix #20.\n", "proba": 1.1744894123921767e-07} {"commit": "2ec20fcfcb9077525a0c9c2fe5287545ae234935", "message": "getting node and link status working correctly\n\n", "proba": 1.373249460812076e-07} {"commit": "581f96c7526327b135ec5f159106cb15594a3ef8", "message": "Try to get stderr on windows jenkins\n", "proba": 4.286873149794701e-07} {"commit": "3d4c045917853ab40e6df640db586acf236d2421", "message": "Revert \"fix a bug in keep_alive2() \"\n", "proba": 1.7873489355224592e-07} {"commit": "de405381b420bde024e7668594c640c3c855e301", "message": "Added docstrings.\n", "proba": 1.3227385409209091e-07} {"commit": "8e78d8de53fc586d82efcb0975f264fbc7f049e4", "message": "Fix KeyError when deleting nonexistent keys\n\n`hidden_meta` saves not only the existing hidden meta keys, but also\nthose who don't exist with value `None`. For example:\n```\n{'capa/path': None, 'capa/nursery': None}\n```\n\nDeleting nonexistent keys raises a `KeyError` exception.\n", "proba": 0.004821672569960356} {"commit": "e09ab9e8b9cdb5c8ab267e9e53f8fe898be1f1f0", "message": "Delete assets.\n", "proba": 2.5535263148412923e-07} {"commit": "462813f8f10db550a4897bfcf20aa1d675543edb", "message": "Exclude system sources from test coverage\n\nExclude /usr/src/ from code coverage, this is included for e.g. gtest/gmock.", "proba": 1.116785739441184e-07} {"commit": "95114756c60f40c3da76e3d83af3e10d64453e0f", "message": "Simplify classfier logic\n\n- Implement same structure as in the experiments script to keep the\n classifier general.\n- Remove `n_estimators` parameter and pass it using the parameters\n dictionary instead.\n", "proba": 1.213265647947992e-07} {"commit": "5e2b2342f94933a9c3e853802471776731b232c8", "message": "Add boot trigger API route.\n", "proba": 1.3052850533767923e-07} {"commit": "cca8808ab0280fa467bcaa2b677c832a9cfd0f88", "message": "Added hillshading and storage near the end, sloppily\n", "proba": 1.1052094350816333e-07} {"commit": "525fc828b33b78f1e8c754a7bcd747e1dc93975c", "message": "Fixes the StreamingHDU implementation, for now.\n\ngit-svn-id: 0dd54ea0a764db829c3ced410e66d9e69022d4f0@862 ed100bfc-0583-0410-97f2-c26b58777a21\n", "proba": 2.0559014956234023e-05} {"commit": "4018a76cd3c59acf25b0f3dd371bc3fec87ae8be", "message": "Fix inconsistance spelling of disable pin option\n\nsupposed to be disable_pin not disablepin\nso as to match the manual and other options\n", "proba": 3.187590777997684e-07} {"commit": "d815ed7d362028c9b424c6ea7d5b102c47dee344", "message": "Corrected title label.\n\n\nFormer-commit-id: 25314aa6c073f1df073a3e3fd31a49b326640029", "proba": 0.9987252354621887} {"commit": "843ac986f638384f0fb5ba2cb194c28eaf6d451d", "message": "fileContainsStr works with lines, not across lines, so ignore empty lines.\n", "proba": 1.1983522085756704e-07} {"commit": "96340529a8d5702ce8c880aa66966b2971b96449", "message": "change method\n", "proba": 4.54788323622779e-06} {"commit": "8a92a4b559135b618b1f7aba311d704d2f48f948", "message": "StencilKernel: Generate ctypes and apply arguments after checking shape\n", "proba": 4.1837557773760636e-07} {"commit": "68c4c45cd4dfebb17c10971b6fe830ccdaa33303", "message": "Delete calendar.py", "proba": 2.350540853512939e-05} {"commit": "4be984747a41e5ab966b12afe9074a0e611faee2", "message": "Add license text to resampling.py\n", "proba": 3.9312649846579006e-07} {"commit": "4cfb1809163f9b64c817acca639e7b43019f1930", "message": "The DevLog Config now supports setting the log directory\n", "proba": 1.3236888207757147e-07} {"commit": "0e2d1c0982509e000de04525b9c6ec427521bfc5", "message": "Avoid failing when another middleware returns HttpResponse (closes #28)\n\nThis doesn't allow profiling other middleware classes when they do something\nwhich returns a direct HttpResponse but it does avoid crashing every time\nsomething triggers a redirect.\n", "proba": 1.4910534673617803e-07} {"commit": "07bfcf79f517421aa66e3aebff3be410065d0e51", "message": "FIX: Remove sEEG const\n", "proba": 2.9376812449299905e-07} {"commit": "6a517970cd325c5c701070cfcd5e703b42e27e29", "message": "Code efficiency, and move some functionality to helper function\n", "proba": 4.898499810224166e-07} {"commit": "4944b8ff6cd5b1b648ce26b35ad5f67cdd33753e", "message": "import LcdApi allowing OpenMV board to work\n", "proba": 1.1427267310182287e-07} {"commit": "b2c63b8e16e3ac57301ecad491988a5e98e8fcde", "message": "DOC: improving docstrings in bundles.py\n", "proba": 3.3525509479659377e-07} {"commit": "fe7a1e9a1becbaf43b2de26e90079fd97660a216", "message": "Fixed error in model implementation\n", "proba": 3.143326807730773e-07} {"commit": "0d2a1dbac02a30aa009fc90a6a3d2fc899bd97da", "message": "Take into account ram_allocation_ratio\n", "proba": 0.0034109288826584816} {"commit": "d26b31ab2b366cdd8cc6ec111fdec6abb5fb8139", "message": "RF: ArraySequence to Streamlines\n", "proba": 1.5955197341099847e-07} {"commit": "c1cfb36061a4faf41d14d38f5dcdc727a92866ec", "message": "support for Python 3\n", "proba": 6.879896773170913e-06} {"commit": "5fa9e88e9402a4ca12f2f54298d397bc7b54728b", "message": "Revert \"deactivated test for non-existent 'references'\"\n\nThis reverts commit 7fa9abe71d4517edde39dba9f77f58f2a5ee7f72.\n", "proba": 1.3410711119377083e-07} {"commit": "7d61dbca99e4b1eb3baa556eaa64dffe8a7b4c42", "message": "ignore spaces in tags\n", "proba": 8.979599442682229e-06} {"commit": "558da1b5b4f59519dca3acade0788520c6e3688e", "message": "[FIX] web_services: file ws_test\n", "proba": 7.1945592026168015e-06} {"commit": "a5fddaefdedef18b0b6b7d3b2ec65f64eaaaad65", "message": "fix date time bug\n", "proba": 1.5787258234922774e-05} {"commit": "c3e93e02663009d5fd4547156e6edd00f77d8d0a", "message": "Add missing fields to attendee/group import\nApparently we had NEVER been importing attendees' legal names... whoops. We also need their address, and their account IDs to make sure their accounts are always imported with them.\n", "proba": 1.0698968111455542e-07} {"commit": "628cc1d396d71cda54d99d264cf31a89a8e85bf2", "message": "Update appMiner.py\n\nMade it closer to PEP8 complaince", "proba": 1.4506356649235386e-07} {"commit": "37fb65dd7763f7cbd1a53f613bbda16d739f11a3", "message": "Make `cctrluser create` work\n", "proba": 3.2222615118371323e-06} {"commit": "6e157569bd829e774f04daa946cd4c513f756c9b", "message": "Remove unused code\n", "proba": 5.7894176279660314e-06} {"commit": "0687f032e5de29033aad3f365cab2d8c6195e3a9", "message": "fixed issue with order of cli arguments where directory would change prematurely\n", "proba": 2.5093217459470907e-07} {"commit": "22c73bcb3b68dcac4b2ac596a18863be45bb98f0", "message": "added logic to supply direct link to prometheus\n", "proba": 1.196546719484104e-07} {"commit": "31312a073f0ed46660045671841ec77afcfe9fd4", "message": "DFLT_T changed to 20\n", "proba": 0.0001625464210519567} {"commit": "6bee26c112250e965dfc51dc9fc96e637142124a", "message": "Once the ctype is set, the orig_ctype cannot be changed.\n", "proba": 1.7691202458536281e-07} {"commit": "4382891d167de6ff916d4be0b5b3a4d9b9fc622e", "message": "Decode FileParameter via regex\n\nI'm currently experimenting with the CityEnergyAnalyst Python API\nvia a Jupyter Notebook after reading\nhttps://cityenergyanalyst.com/blog/2019/8/1/gabriel\n\nWhen calling `config = cea.config.Configuration()` via a\nNotebook `FileParameter` isn't interpolating so\n`config.create_new_scenario.zone` remains as\n`{general:scenario}/inputs/building-geometry/zone.shp` which\nbreaks `cea.api.create_new_scenario` as\n`zone_geometry_path = config.create_new_scenario.zone` is as a\nresult not a real filepath.\n\nTo resolve this bug I've adapted `configparser.ExtendedInterpolation`\nto work with `FileParameter.decode` so that the `{section:parameter}`\nis interpolated.\n", "proba": 0.9999312162399292} {"commit": "2bc5cb7a353def37f1dfb6b4e7b041079526fd28", "message": "Fixing flakiness on test teardown.\n", "proba": 1.1530343613230798e-07} {"commit": "5e77bbfa94766c7cbde3116b3e6b9aa6b6fdb6b7", "message": "pass a dict\n", "proba": 0.0035872124135494232} {"commit": "3a54fa23c033aae0992ebaaf53708daef58e1548", "message": "Small change to Tctrl\n", "proba": 2.991410497088509e-07} {"commit": "fe32f28826b1987b5c9600fa06bc00418d11b567", "message": "Version 0.0.2.1\n", "proba": 8.643464184387994e-07} {"commit": "d64460c8bbbe045dcdf9f737562a31d84044acce", "message": "Change package name to 'cirm' to avoid confusion.\n\n", "proba": 1.5388526719561924e-07} {"commit": "f1d830af3f8203486e8d56859adc00d5a37e3d14", "message": "fix(sdcm/stress_thread.py): Stop throwing error if stress command has failed\n", "proba": 1.1841983678095858e-06} {"commit": "b8c4c0ae93a90bd55c25990198b1923086ca126f", "message": "re-added multiprocessing :)\n", "proba": 1.7120137840720417e-07} {"commit": "917d8e26a64a40de0a0b77085f1fa6d054af0ee8", "message": "Remove cleanup_testfn, no longer used.\n", "proba": 1.093565344945091e-07} {"commit": "c02768797af0b0309c0d9d456aedb3201b4256cb", "message": "shipping calculations more versatile\n", "proba": 1.3698368661607674e-07} {"commit": "663f4896192f01729c229f1558586815741bcd9e", "message": "yask: Change make command\n\n- use -j, not -j3\n", "proba": 0.999991774559021} {"commit": "1c8446fc05b3246de0f7da58ccb2362fe41ae05e", "message": "Throw on errors in promises\n", "proba": 3.1803990623302525e-06} {"commit": "827ed998ead5e73743963d021a6822b4ed3ea926", "message": "catch unicode errors in debug console (#545)\n", "proba": 1.5273722908659693e-07} {"commit": "c242c2b04f38fba5ecca8900fd7ebd3c8ecd6800", "message": "Fix indent issue\n", "proba": 2.1065727651148336e-06} {"commit": "18930c6014e7fe6350c4931807ea695eaf16e095", "message": "make sure each series has events\n", "proba": 2.8820815714425407e-05} {"commit": "d1137c56b59ef4fec06726fa0dda4854d0631e6d", "message": "macOS: delete tempfile after uploading screenshot\n", "proba": 1.0692109526644344e-06} {"commit": "4dda4a7578ac4fa6119a51d223bfb72b43db602d", "message": "Ajoute un long timeout \u00e0 Elasticsearch pour \u00e9viter les erreurs lors des t\u00e2ches asynchrones de mise \u00e0 jour du moteur de recherche.\n", "proba": 1.2409493876930355e-07} {"commit": "8d329fb27bf7877bed529f091dc6d1995955dd97", "message": "stripping off filedesc://\n", "proba": 3.5229484751653217e-07} {"commit": "11ab54902d425e95ef277b42ab9f3478cd2b2d2c", "message": "modified print_motd to get the motd from the configuration file\n", "proba": 2.2936509935789218e-07} {"commit": "2c350aa3174da6382567f219a3b27b20ba78beb2", "message": "Import os and print defaults in usage.\n", "proba": 1.1176040004556853e-07} {"commit": "18d604bedf51dd036e0af6bae6405849ac48fa05", "message": "intermediate checkpointing\n", "proba": 3.2720888043513696e-07} {"commit": "a3634074c890d89b9d628e40d70af2df3848c312", "message": "Remove the refs/tags seperation.\n\nInstead, we take any extra_vars that have a suffix of '_version' and\nmake sure those exist as tags on the AMI. All other vars do not get\nsaved anywhere.\n\nTurn on instance tagging with abbey.\n", "proba": 1.2152227668593696e-07} {"commit": "33f2590af5ac35008781f9cd0d6a9735b5adc0ff", "message": "Patch from Eric Huss to actually show the error when a diff doesn't apply.\n\nReviewed at http://reviews.review-board.org/r/336/\n\n\n\n", "proba": 1.0548014017786045e-07} {"commit": "e86282bdf64c7c1e9ff78f99b7ddc396de4adcaf", "message": "adjust LOG levels\n", "proba": 6.45627721951314e-07} {"commit": "9aaf775b0fc1fc6e3b9a8d70581c7d9aa86301aa", "message": "we don't like licking asses\n", "proba": 1.0952953743981197e-06} {"commit": "a2e495f1f761dcd7aa6491e9b121bbc5a0da8999", "message": "BF: A few more imports need to be adjusted.\n", "proba": 1.1854803005917347e-07} {"commit": "fc9c8738529f0d6f74499ee44dc39f5e9d66f187", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "1b1198b864b139e7a3a3c998071c184c8b9c232f", "message": "removed debug print statement\n", "proba": 1.926487811942934e-06} {"commit": "6fdbff94781bfee0716b34a32b518d6af2ad4429", "message": "added changes\n", "proba": 5.079425591247855e-07} {"commit": "ec85abef9deb257dd6427e4052fec8b60c797ddb", "message": "gradient clipping added to mitigate exploding gradients\n", "proba": 3.833157222743466e-07} {"commit": "ad0ca394815e421cb9fccdd4b349fd0225e4e686", "message": "does path creation properly\n\nalso cleaned up/refactored the code and renamed the functions to prepare\nfor using the function names in the text of the @cop_out message\n", "proba": 2.577965574346308e-07} {"commit": "8de8fb3fb70d4bc6c8e116035f956bf6b784f4ba", "message": "changed answer value to TextProperty to fix 500 char limit.\n", "proba": 1.0972948416565487e-07} {"commit": "c17996e7d4c3c2e2d33f841622a733b06ca31085", "message": "109_list_vault_2: clenaup garbage\n", "proba": 2.9362824989220826e-06} {"commit": "0ca54567bcbff93a493601c7ebdd8228905d3bae", "message": "More readable if condition.\n", "proba": 3.0340444823195867e-07} {"commit": "acbd8ca5f68e29e20197341331fbe0fe7a998bcd", "message": "Fix typo causing a TypeError in Interaction.guild_locale\n\n", "proba": 0.9979165196418762} {"commit": "3c647338881799493f61fed3a975e3f9b037390d", "message": "claenup: removed comments\n", "proba": 2.9248303690110333e-07} {"commit": "0ce65d93befe2b2551779da556f01d8cba6de070", "message": "better insert into database with named values\n", "proba": 1.7246925381186884e-06} {"commit": "ad3df2353e4f1cf5dba8faa56162b82b6a8e7d3a", "message": "add definition of function\n", "proba": 0.00019301672000437975} {"commit": "4c3bc86c19d422e19cef369d3b8d4604ead2c9ca", "message": "Use a lambda instead of a named function for the isweekend function.\n", "proba": 6.704322572659294e-07} {"commit": "0c9b2293066ac8d67003dbb28251c3c4b9230682", "message": "don't use ** in docstrings\n", "proba": 5.316921374287631e-07} {"commit": "af8a1d86a1d1d4c42e93b549275651aa58b002fd", "message": "Correctly handle no config file (#15)\n\n", "proba": 2.020390894585944e-07} {"commit": "e100788321a1d66cfaad9c8b0319fc0ac05c9cd1", "message": "Whitespace.\n", "proba": 1.4203533282852732e-06} {"commit": "5db4486cfc0261ffc88d33f704879a0d72b2fd7b", "message": "included transfer rule with first known destination\n", "proba": 1.2719742414901702e-07} {"commit": "7484c8d4ab699ee16bc867cdff1e7ec699dbb142", "message": "Add profiling support to Melange. By assigning profile_main_as_logs or profile_main_as_html to main variable you can turn on profiling. profile_main_as_logs will log profile data to App Engine console logs, profile_main_as_html will show profile data as html at the bottom of the page. If you want to profile app on deployed app just set the profiling function and deploy it.\n\nPatch by: Pawel Solyga\nReviewed by: to-be-reviewed\n\n--HG--\nextra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%401621\n", "proba": 4.0101863874042465e-07} {"commit": "00902a40d789a59f0ce2f25a1e4aff6736650894", "message": "lnpeer: favor schedule_force_closing wrapper\n", "proba": 2.752441332631861e-06} {"commit": "48c4cef54aab3c60709167713624de7820199b20", "message": "Made data providers more general\n", "proba": 1.1917477138467802e-07} {"commit": "4b4ebe510fbd65a88c33a8cc6c7de6ff4a7544b4", "message": "Catch the integrity error when creating a new database entry.\n", "proba": 1.3762517880877567e-07} {"commit": "bea2ce4f709c32b4aee6e7b866ccaa5b89f02f02", "message": "feat: sort by cpu_total on selecting cpu column\n", "proba": 2.946533470549184e-07} {"commit": "d7460467639983d3768cec23ea239a2af174d5bc", "message": "simplified grouped_fonts view attribute\n", "proba": 4.7100908773245465e-07} {"commit": "abfd3336d27be77402b0caa860eab7e8d3be9787", "message": "Remove depreciated code.\n", "proba": 2.8751168201779365e-07} {"commit": "5b1c512a3f912fc26fbed9de4c888ed3bed9604f", "message": "todo: function_step completion, add stream_buffer, search_index, to support search in buffer\n", "proba": 7.310632668122707e-07} {"commit": "eda9097e894b4e94b17160701cf242ad8da76635", "message": "trampoline forwarding: return UNKNOWN_NEXT_PEER if we cannot find a route\n", "proba": 0.00018488131172489375} {"commit": "7237fe91cbfc0a94e142ee155cdb553eb88196fa", "message": "super critical high priority fix for NNBB\n", "proba": 1.3702093326628528e-07} {"commit": "f299bf6aa23c5e5c22ff9666a22feeb5b06755d5", "message": "Added compatibility for set in Python 2.3\n", "proba": 2.4981946467050875e-07} {"commit": "c98f381748face34f959285a23b739a6d4d00c69", "message": "Make code python2 and 3 compatible.\n", "proba": 3.898219802067615e-06} {"commit": "5e971a5e5a9a7dd8baed9a61091810f3ef4bc1ac", "message": "Check the right path\n", "proba": 7.785855996189639e-05} {"commit": "8271df2b434ed689ec7ed1cb49c35c7ef82a16bb", "message": "added Bucket with testing\n", "proba": 1.2323812370595988e-07} {"commit": "2dfadb433fdc6519418888c427e4dbce161a738b", "message": "useing args.host to set server_name\n", "proba": 3.7945670783301466e-07} {"commit": "ed693e258047af040c3926f3eca5bd5d3bf79417", "message": "Add kallisto index to transcriptome preparation script.\n", "proba": 1.1617697026622409e-07} {"commit": "3052dcc6b7397840e278385749d8f31a137ce93e", "message": "Clean up mood code\n", "proba": 1.8852306311600842e-06} {"commit": "941bcd409ac56d6774408bc408b8ed528546a625", "message": "Fixed failling tests\n\n", "proba": 1.9830520159302978e-07} {"commit": "eecf6502056e6d1e5cc0d32d419756a4255c24ed", "message": "remove old commented-out blocks\n", "proba": 3.442439151513099e-07} {"commit": "04572dc4b4ad8a98ce293a3357e0a35088325e57", "message": "Fix spelling error in documentation.", "proba": 1.7422454448023927e-06} {"commit": "4c145f0f5ca8083bba615cb84826a1faee53b98e", "message": "Re-doing fnl. tests where there are multiple intersections.\n", "proba": 4.053991631280951e-07} {"commit": "fc3cb3975b21031f4c86b3ce8c4edeb5ea29945d", "message": "Remove duplicate gtf_to_genepred.\n", "proba": 5.061726824351354e-07} {"commit": "06be82ff303663a94b1792527f41926dc69d78cf", "message": "addresses - unicode\n", "proba": 4.39068253399455e-06} {"commit": "b6e5e9c979271d69447ebba94a6c42899a5d68cb", "message": "Fix /query\n", "proba": 8.014874879336276e-07} {"commit": "98cafa3806d1781078d5879f6bb26cb25b481fc7", "message": "Adding cache to speed up rendering\n", "proba": 4.644033424483496e-07} {"commit": "f721df5be52a4be9ab1ecd30e4ba7655362397b6", "message": "docstrings on everything\n", "proba": 2.0654803734032612e-07} {"commit": "3da4ad7b8c58f2b94e038576bcd79794529b9f4f", "message": "fix unit test, order dataframes\n", "proba": 9.342114140054036e-07} {"commit": "3d773f7896e242d161104686db5b0da04cc23438", "message": "[swift-api-dump] Add support for -F/-I arguments.\n", "proba": 1.1228323870682289e-07} {"commit": "37bb4358f398028465f7f1506a8f08298d932223", "message": "line before and line after behaviour improved\n", "proba": 2.5034154305103584e-07} {"commit": "0e867c4bcba35dc9eaa52fdeb529b41383f3f8ad", "message": "We want to test returning exceptions too.\n\nWhen an exception is raised, the code that checks the status to\nsee whether to apply the after or not was never even reached.\n", "proba": 1.1062048344001596e-07} {"commit": "c0eb69a719bff4b1b7812a4f32384d98de383c26", "message": "fixed lowercase bug", "proba": 2.5904759240802377e-05} {"commit": "90b0dc068b4c822a89ce97d7751298b4a392c3ce", "message": "Clean up\n", "proba": 1.531641828478314e-06} {"commit": "042021b52a4b48d75567e2fc3abf6a799f85b708", "message": "urban help\n", "proba": 4.654528424907767e-07} {"commit": "ae0c048981dbd7831328dadf61d5e41185de6fd4", "message": "Format\n", "proba": 7.663883479835931e-06} {"commit": "dd87b519700d039a9eb6c3fd42ec51faf66e2ad3", "message": "add verbose print for 2to3 fixer (for #325)\n", "proba": 2.644274843532912e-07} {"commit": "567acad9304f93401db19623999829b376ef3b91", "message": "Fix path.\n", "proba": 6.746969347659615e-07} {"commit": "6f9e8854cb544ced7d2d0ead32b7330d7ba1d6b6", "message": "version 1.2?\n", "proba": 1.7472193292178417e-07} {"commit": "492ad4f251f9096b9c029f74166c0fe995f7045b", "message": "Add logging to ease debugging\n", "proba": 4.6574280077038566e-07} {"commit": "da3d6e89f660e7fd6d9b8d32a9aab50b7234e737", "message": "Fix comment\n", "proba": 2.1542624040193914e-07} {"commit": "fc05512b3ad40f6571ee3d942e4829a19e2a465e", "message": "Add core.models.Sensor\n", "proba": 2.1886264676140854e-06} {"commit": "13054b372375cd1a0abf5cf2be1eff722fdb7213", "message": "Remove useless commented code\n", "proba": 3.5026772593482747e-07} {"commit": "d4b33c947bd9cd41777c4a39a762de472404a88a", "message": "FIX: Removed extra formatting fixes.\n", "proba": 1.2018371364774794e-07} {"commit": "43ab058951ff7ce4340ba7e3abb4d69519b4743c", "message": "Add support for reading checkpoint 2 files in TF HEAD. (#397)\n\n* Add support for reading checkpoint 2 filesin TF HEAD.\r\n\r\n* Fix lint error.\r\n\r\n* Fix lint error.\r\n", "proba": 1.3720516278681316e-07} {"commit": "f112bb6d44187632fd54ccb2d5004976e248e8cf", "message": "KA and TN Scheuler FI 2018-11-11\n", "proba": 1.1258142507131197e-07} {"commit": "f95c7cf805412af581ab3250bdf093f452349471", "message": "py3.4 compatibility\n", "proba": 3.743398337974213e-07} {"commit": "d9d9b993edc8baebf69b446d40f0a05260a041d5", "message": "Remove prints\n", "proba": 1.6181634237000253e-06} {"commit": "88ee9a485534f442978f9b29a1dbcf15cd245b25", "message": "simplify fragment copy loop\n", "proba": 6.295453931670636e-05} {"commit": "c060f88310e979cdcb400cead73730cc7e1b6226", "message": "Update comments in models/group.py (changed Optional to Required). Add verbose_name to founder property in Group model.\n\nPatch by: Pawel Solyga\nReview by: to-be-reviewed\n\n--HG--\nextra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%40781\n", "proba": 1.9949395380081114e-07} {"commit": "be3343b6efe948d22cf5ff279d72888126f5538a", "message": "remote post using rcreds\n", "proba": 1.9272822271432233e-07} {"commit": "a642b36339ac6628b1a937bbf0d2750cc14fcdd5", "message": "[FIX] import_google: fixed syntax error inserted in revision 6952\n\nbzr revid: qdp-launchpad@openerp.com-20120629112248-9agiwb4l89lrx4li", "proba": 7.753769182272663e-07} {"commit": "40c7162dbf7416f9adbeb279cea0028e4076beb5", "message": "Adds block-cyclic support to ClientCyclicMap.\n\nRenames ClientCyclicMap to ClientBlockCyclicMap.\n", "proba": 1.1916920072962967e-07} {"commit": "4c0325f92f542b9af7e504be55b7c7d79d1af3c8", "message": "Update some features\n\n- [system] Fix StandardException\n- [dependency] Add `AfterRemoving` pass type\n- [frameworkBundle] Add `event_dispatcher` service\n", "proba": 4.254242753631843e-07} {"commit": "31e93973c0e9979b580233b2b973cd79838d1265", "message": "change around some basics of collection handling\n", "proba": 1.972040166720035e-07} {"commit": "6158c8cde4d714868fc9337de97f1b1ca52e8418", "message": "ELB\u8aad\u307f\u8fbc\u307f\u8ffd\u52a0\u3002find_element...css\u90e8\u5206\u306e\u51e6\u7406\u3092\u6574\u7406\n", "proba": 3.168091780025861e-07} {"commit": "a5b9b12f3e16e3cf2bb1de6f61571f612981c468", "message": "Use comma separated list of tags for tags --merge\n", "proba": 1.1387606946300366e-06} {"commit": "265e9added53d1eee1291b9e0b5a10bc7dfe19c8", "message": "Make sure we don't have section A before doing the extra round of manipulation\n", "proba": 9.381021754961694e-07} {"commit": "30d3b8b6d149f7a72f338ca8114e7c0190d91eb7", "message": "Added a check so our dummy MAC (00:00:00...) would not be overwritten in the case of invalid MAC addresses in the compdata file.\n\n", "proba": 1.1106043018571654e-07} {"commit": "4a6e9e4c261f5662a9deec4780f31536c735aba0", "message": "added wordchoice module\n", "proba": 1.2541463547677267e-06} {"commit": "c86e6c9120a385957dbd4d33f599ab398ab915cd", "message": "properties from file\n", "proba": 5.676567980117397e-07} {"commit": "ae948a2dfdd62af2ba98a0ee506ddd48504ee64b", "message": "bump version to 0.6-dev\n", "proba": 2.0745474671457487e-07} {"commit": "295a6dd0c2af01161ee5da274719596f043fe21c", "message": "Use encode('utf8') instead of str(...).\n", "proba": 5.028614395996556e-07} {"commit": "1567e452f59900db37fcc8fd10a718d38c67fad9", "message": "Cleanup: removed unused parameter\n", "proba": 2.5220278985216282e-06} {"commit": "8227b386bd940814c2b7bc3e4aa8e61e31ac403b", "message": "fix bugs in python3\n", "proba": 2.710541366468533e-06} {"commit": "e7c142f6b4cbb4add64586c30297f0c3f983de88", "message": "[IMP] website_sale: update field tooltip\n\nTo reflect the real module name\n", "proba": 4.781759912475536e-07} {"commit": "895282a4eb88c149d724b4510a5a4e69689a4658", "message": "Filter rooms by distance. Max distance is 2 km.\n", "proba": 6.891677912790328e-06} {"commit": "c50dbb504444d377e61e7003cb3397aeea46dd87", "message": "Session pack/unpack and update doc\n", "proba": 1.3444568480736052e-07} {"commit": "e0c8d6011d7b34d4a81ff6a230365fb144127b5c", "message": "Fixes a bug extract_value() when a value is not a dict\n", "proba": 1.0412024948891485e-06} {"commit": "81af188294445eeda2c36d198ec9fb200892f127", "message": "fix Cognitive Complexity issue\n", "proba": 0.00010434001160319895} {"commit": "e203653938993c0087614b46254fc97877d19b48", "message": "Fix the type issue #280\n", "proba": 0.0003768187016248703} {"commit": "8bbf2653324411db14cc32b3200592ab21364a96", "message": "Cleaning debugging messages\n", "proba": 5.330467161002161e-07} {"commit": "c3a32b7c6684b765ac081d83fb1d141871578316", "message": "Added comments\n", "proba": 1.2651231884319714e-07} {"commit": "acde8c1490ef2d24747c9f794fa891fa57f85035", "message": "Fix deadline control.\n", "proba": 6.405838348655379e-07} {"commit": "621ae587c7b17290a4a502934a4a5d5895f6a314", "message": "Fix for an Issue #263\n", "proba": 1.2590834330694634e-07} {"commit": "87e36796c6d4b4bc70fdf375057fa270f6592ea8", "message": "just to not cause confusion\n\n", "proba": 2.8471924906625645e-07} {"commit": "373fea03a3de4c3c82685f2c75b9e0a43a9e71be", "message": "fixed display of TABs\n", "proba": 2.6565061261862866e-07} {"commit": "35ac0c40bb712b8ca0f98adb652600b0e82830e8", "message": "Added extra type safety around the conf parsing in setup_remote_oauth\n", "proba": 2.733964095114061e-07} {"commit": "973bd69a248c20559e75050bba9358d18d580994", "message": "Remove a stray blank line\n", "proba": 0.999968409538269} {"commit": "1c2c9664d82d02ec2eb9929fe5370aa5e4b077b1", "message": "simplify logic - is_act_as_username returns False, not just logs\n", "proba": 0.9988672733306885} {"commit": "3ba35f003c96b575fc61b59fd3541ba01253a790", "message": "np import\n", "proba": 0.00011845067638205364} {"commit": "bfdd4e48a534622e016927a55c8fa68aefadb052", "message": "Improved logging\n\nNow we know who's back!\n", "proba": 1.0560273011606114e-07} {"commit": "7265afed8829ac3f8d3acf9432cf40bf14385db2", "message": "Fixed #4933 -- Fixed a typo and reformatted a fairly long line in passing. Thanks, Ludvig Ericson.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@5870 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 7.601144602631393e-07} {"commit": "339a13be026c937bf0a4adc9630aafe4a1d7a020", "message": "fix(dependencies): Adds error if dependencies not found, also moved from simplejson to json\n", "proba": 4.0569386783317896e-07} {"commit": "4fffd2ebf3c4a8ed1e691996d9ec6e7b55256f35", "message": "Fixed #5562 -- Changed settings of Expires heading when expiring a cookie to\nwork with non-compliant browsers (also removes a non-compliance feature of our\nown). Thanks, caifen1985@gmail.com and SmileyChris.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@6549 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 8.35030959933647e-07} {"commit": "4e1fc730ac4bb4b44534616fc1c86045e4bdf6b1", "message": "verejne getInfos: use notices value where currency is EUR (#50)\n", "proba": 1.2105311952836928e-07} {"commit": "0cd3651810daceefa492bc303c74568d1a042ca6", "message": "Fix get_proxy_ticket method usage\n", "proba": 4.168576197116636e-06} {"commit": "85b81990d3e9c1c0e2a500fe677bdfb17f77ddf3", "message": "Include `remap` once again\n", "proba": 1.5259907115705573e-07} {"commit": "db033a9560ee97b5281adbf05f3f452943d592d7", "message": "django_on_call.tests: Add test_get_on_call and test_weekly\n\nThis is sufficient for my current needs, assuming the exec is\nacceptable.\n", "proba": 1.2299953766614635e-07} {"commit": "a5c02d945eebff1e72e931cc618494a373d7f1ff", "message": "Make function interface more explicit.\n", "proba": 8.9566088945503e-07} {"commit": "77ba8210db9ea34d2e4377fd5aea7fe737a91aac", "message": "Don't add comma between each ref character in merged fields\n\nE.g. for an extra field added with --fields Notes,\nmerged output should be something like\n\nC1,C2: Note 1\nC3,C4: Note 2\n\ninstead of\n\nC,1,,C,2: Note 1\nC,3,,C,4: Note 2\n", "proba": 0.9998389482498169} {"commit": "9041c4e7e9c36c65c1259b13a2f25c489d2e1aa9", "message": "Fixed issue with ModelCallMethodsView\n", "proba": 1.3619768424177892e-07} {"commit": "4a423daaf5fac209ab165a8c473b6d11d5b8000d", "message": "Implement pp function without object\n\nThis way, I can redirect sys.stdout without having to explicitly\nreassign the stream used by print.\n", "proba": 1.1667706445450676e-07} {"commit": "c7b9c78272c54f0ccdb5904c469322b166e60079", "message": "temporary fix, until i can think something else\n", "proba": 4.659125067973946e-07} {"commit": "2a088d00d5f7efc61410ffab519d4a2d1da2afa9", "message": "[FIX] Permite cancelamento correto agora\n", "proba": 3.430895958445035e-07} {"commit": "9c6cf07df0be93e5ab8c63cc18256d054563b7c5", "message": "Fix typo in header\n", "proba": 0.0003986523952335119} {"commit": "95f480d591d921a667f1ee7c1c97295e1df0e012", "message": "Try to fix the NoneType errors with entries_by_date\n", "proba": 5.508194590220228e-06} {"commit": "d882fe7b3d023ca6b8f2c50dbc5f242d8b498e85", "message": "Tweaks to english_like_score function\n", "proba": 8.015708203856775e-07} {"commit": "3000dbb202bd680aac7d4e13ecebfda2c2a2698b", "message": "header files link to github\n", "proba": 2.012483406588217e-07} {"commit": "68f2dd630e9fa3e74c32a5b1fadd63a755f1f8da", "message": "better code for git\n", "proba": 8.354058081749827e-06} {"commit": "781e20bc3f465bdaac50f0f2a637b037d892c054", "message": "Remove premature optimisation\n", "proba": 5.047567537985742e-05} {"commit": "d144cc29e6ee849b072cef3594354814ce13be82", "message": "YOLO Commit", "proba": 0.0003469420480541885} {"commit": "37bc4c58de2744f9c1b814955f8a8f7057b9f45b", "message": "T831: ntp.py: fix restrict configuration keyword to allow clients to sync up\n", "proba": 1.2225785894770524e-07} {"commit": "60560e620171c4d8fc70495a9ec605cadb6ed734", "message": "Print out the correct key path, and print out some more helpful messages\n", "proba": 1.6656205161780235e-06} {"commit": "fa0968d3896cc7a38cd59afabe2d1a938ad20cc5", "message": "Correct some bugs\n", "proba": 0.00018091921810992062} {"commit": "d152fe6af727ccb6b08ad66202ba5b29b783fe71", "message": "Remove old documentation\n", "proba": 3.0780190627410775e-06} {"commit": "ac1916e46707ebb8432f4719208684e6b44ca512", "message": "vrf: add additional documentation link\n", "proba": 1.671666183256093e-07} {"commit": "e812e3467a79b32849e52c43de7ea4daa13dbce5", "message": "Added the :descend: and :spantolast: flags\n", "proba": 1.8241259169826662e-07} {"commit": "00e98ff92d743d35f83434af006148af9559abdb", "message": "Update DBN.py\n\nminor fix on the documentation of field names", "proba": 1.5122941476874985e-07} {"commit": "c8b86c07e288a7d57325ab9aca27165001532cc4", "message": "Update util.py", "proba": 1.1862057363032363e-06} {"commit": "f5f7dd05f53a926537afda2646145b580a97cdc1", "message": "updated appending path in idler.py\n", "proba": 8.333698247042776e-07} {"commit": "485f4a2a62222395b6724d8abc81718e8406cca9", "message": "fixed an issue with max matches; added support for cutoff\n", "proba": 1.8695007497626648e-07} {"commit": "88afad71a39b8080d4b5fbed84366080585ec274", "message": "png.py command line option -d to set bit-depth on output test image.\n\n\ngit-svn-id: 319eb561774c901116a2c19d0db24e717df3a3eb@201 40d66c6c-0ee5-11de-8837-45bce846067a\n", "proba": 0.001845814986154437} {"commit": "f9bbd63f1d938041ff658a5c938ebe776c71656e", "message": "Catch time limit exceeded exceptions (#1502)\n\n", "proba": 1.7366306792609976e-07} {"commit": "09d73d9c0d1228f2f19bafe6866af27c70d6213b", "message": "Let fields subclassing nonrel fields use the base class internal type, like standard fields. Drop current db_types of nonrel fields -- now you may safely use \"field kind\" conditions instead and the subtype chaining is no longer needed because the field itself can be examined to determine a proper db_type for converting subfields' values.\n", "proba": 1.073416626695689e-07} {"commit": "c94c12bf668093bf8af01a334883169dc4f5ec2c", "message": "clean\n", "proba": 2.5739889679243788e-05} {"commit": "936a8e9bc8f80c8c41ba9498593329a557b79808", "message": "Fix for issue #9 (missing shot type)\n\nFix for cases where either the shot type or zone is not provided by the\nNHL.\n", "proba": 9.753010488111613e-08} {"commit": "a283445cdc3e87c942cb63e61b07428d0a8cfd34", "message": "Cleanup some code, fix socket shutdown\n", "proba": 1.5199558447420713e-06} {"commit": "d821b6e1c7203af68332ea0bc6f9f61b7a518e0f", "message": "Also get the user profiles from the db\n", "proba": 1.6123546231483488e-07} {"commit": "45a09e4973a58651c1c24db4df0a856eb0571f3f", "message": "Remove duplicate Meta class\n", "proba": 2.827762273227563e-06} {"commit": "945e7d1ef165054891a0ac574d52f6a1c3b7a162", "message": "Add long help\n", "proba": 0.00012148905079811811} {"commit": "e460fdc8f42520a82897804203fa15a35c2e9931", "message": "feeds: remove little-used properties\n\nid, is_permalink\nAlso a good opportunity to trash the unreliable bool-parsing code\n", "proba": 3.5583079238676874e-07} {"commit": "2ad94140360f893ad46b1b972e753f2a78b5f779", "message": "print function\n", "proba": 0.000930456561036408} {"commit": "8bcdb3cfba2e8688ef4b5d8fcf037a141cbdbf97", "message": "Remove tuple typo\n", "proba": 0.9996321201324463} {"commit": "cefa0a94582e40f92c48d6c91cf393c9b0310713", "message": "fix geojson in sources dir\n", "proba": 3.118819449809962e-06} {"commit": "08c281353e696b588f782e8f629d35d34fcdf873", "message": "added functione to fetch sFTP file first then run files checks\n", "proba": 1.652367132010113e-07} {"commit": "13b0de11ea7f1bab283bcd4042a3bfde7c34272d", "message": "Update blockcheck to handle errors when no VersionProperty is defined\n", "proba": 2.1229520541510283e-07} {"commit": "ebc7c1cb61d45bd57042c60b6bfabdfff4979466", "message": "Adds cfg parameter to executable labels, now required by bazel. (#32)\n\n", "proba": 1.1017765899623555e-07} {"commit": "9bc5b0c7f7b670352fb48f14f835990748917fbe", "message": "2to3; ordereddict fallback was for python2.6\n", "proba": 5.792995580122806e-05} {"commit": "29cdb0552084ee58877559c7edc0193d4d601706", "message": "Updated _removeRepos()\n", "proba": 2.4497842332493747e-07} {"commit": "61e631c259a6c97a49ca01ccba2cc8e481ce1b54", "message": "Fixed silly validation bug.\n", "proba": 1.1860525006568423e-07} {"commit": "47afab2ecc3d7683f706f6825c1b0f3306a3037f", "message": "trying to find what is wrong with pickle.loads() now\n", "proba": 9.694983873487217e-07} {"commit": "f61b7073a85d007219c47fdcf74b722b1dfb0f98", "message": "new brick form translated from coldfusion\n", "proba": 1.921231813639679e-07} {"commit": "2af5839efe2aeb46b735443df4060e0143359fd1", "message": "BF: get image slope using raw header\n\nI was using the header slope to calculate expected error. The current\nversion of nibabel doesn't return the read slope from `get_slope_inter`\nas I was assuming here. Directly read the written header to get the\nslope.\n", "proba": 1.2521537939846894e-07} {"commit": "c3fe21525489c919e1572930daf07a72bc0a2889", "message": "Fixed build\n", "proba": 5.006660330764134e-07} {"commit": "c753afdbbcf3a673233b15d02f7299378e3cfa74", "message": "small fix\n", "proba": 5.359547685657162e-07} {"commit": "0e59e45028e9793f437e03100e93f898f850800f", "message": "Fixed references to class fields\n", "proba": 2.2152882195314305e-07} {"commit": "37509b253235e837e544b7b86e40ddd00c7ab805", "message": "Added the deleted key to the Customer data dict\n\nThis is done so that Customers can be updated locally depending on whether they have been deleted upstream or not.\n", "proba": 1.0799409011497119e-07} {"commit": "b5dd10a3f48c2fea61023246c8a35573125edae0", "message": "Fix output\n", "proba": 0.9999994039535522} {"commit": "6f2a95ca085f12eba65fcc7640f0fecb363faea4", "message": "Pipe the output into memory instead\n\nSince JobManager isn't a proper system file descriptor, we\ncannot pass it to Popen.\n", "proba": 1.1603147243022249e-07} {"commit": "6f2b191fbfbd24e3d66f5e0853bdea8260087b52", "message": "Rewrote Notify via UserPassesTest\n", "proba": 1.2351226530427084e-07} {"commit": "c57fde0936ed1fe9c991c71362a0d269ae677e3c", "message": "removing examples\n", "proba": 1.5266445188899525e-05} {"commit": "29cffdb40566eec0abae8fa4151324004ffe1bc7", "message": "Added support for CORS headers (old changes, never committed).\n", "proba": 1.0238530734341111e-07} {"commit": "02e56f954a2f380500f8397fd87310a6cdb1ba43", "message": "fix: contain environmental variable to interface\n", "proba": 1.475027238484472e-05} {"commit": "5f77cbba83a8d81b5a88b50d464dc2fa35bd33a5", "message": "Handle 404 errors from server\n\nCurrently, any exception coming from the API Client is displayed\nunfiltered. In some cases it is a good idea to handle them and\ndisplay them to the user in a more user-friendly way.\n\nWe are starting with 404 errors, which are usually caused by a URL\nmisconfiguration.\n\nTG-1117 #close\n\nChange-Id: I05f27e5b9b494a85d55660a4ae0bfc9256171402\n", "proba": 3.795109705606592e-06} {"commit": "898cbba1e35596310a37443d28476272e98cfd9a", "message": "redirect to home\n", "proba": 5.695482059309143e-07} {"commit": "73bae19224e064936546fcad10e7ae894ff95cd1", "message": "Added function to calculate the ground state wf.\n", "proba": 1.1461800397682964e-07} {"commit": "6ac8a59c8c07080ceedf26fac54019f56492b558", "message": "cleaned up import statements\n", "proba": 4.809475285583176e-06} {"commit": "6d35c533940db6a6d664546c2b97e5c12c92dcfe", "message": "remove yaml parser for bandap GMM\n", "proba": 5.479645096784225e-06} {"commit": "73af1d6fa3c3c8adf4273b6452f9b6ba179ab4ab", "message": "More tests.\n", "proba": 1.384884882327242e-07} {"commit": "72851f1d1b9dce425687d6e3cc1bb52588f70fe4", "message": "Some refactoring; added CONLL2002 example to demo\n\nsvn/trunk@4477\n", "proba": 1.1622861251225913e-07} {"commit": "a545aeda1fb167e74fdd5a4661e87f6e51b3d536", "message": "Don't do check what we want twice in Git.\n", "proba": 1.099563888828925e-07} {"commit": "e2cdfb5ee76bd2b81536ae92c617f4952693136e", "message": "Streamlined building the mapping stages\n", "proba": 5.954906896477041e-07} {"commit": "119dd44091b8addc4c763cc4d3ea6cec95afd121", "message": "Updated md5() to use hashlib\n", "proba": 3.011647891071334e-07} {"commit": "c79096c3881de529524119574021eb1edf7c6806", "message": "Made find_package dependencies be listed on seperate lines\n", "proba": 1.621220491188069e-07} {"commit": "e36cfed6703b3a6e2d66af9dce49d8695558f82f", "message": "Pylint changes\n", "proba": 5.225612085268949e-07} {"commit": "96946ce0079e80ac90710cfa63bc924d86ac5123", "message": "extending a few defaults\n", "proba": 7.398875254693849e-07} {"commit": "17ab2bbf9ff49e34660c466d3585c1936047fd42", "message": "Remove unnecessary Optional typing in emnist_dataset.\n\nPiperOrigin-RevId: 346427590\nChange-Id: Ie24c0d9d3ea5e6b7575a15c9c110cf5f6bdda668\n", "proba": 0.002079932251945138} {"commit": "7e16a9feb88023a03363aee5be552a2f15b825fc", "message": "\u4fee\u590d waiting \u72b6\u6001\u4e0b\u989c\u8272\u9519\u8bef\u7684\u95ee\u9898\n", "proba": 7.17237662684056e-06} {"commit": "69fdb1013c80d808b243079c83d11a4d438f00de", "message": "Return (None, None) as a tuple\n", "proba": 0.9999994039535522} {"commit": "893aa064144922b2a31f2cd27729de3e2167a502", "message": "Corrected code error line 860, missing comma\n", "proba": 2.494914224371314e-05} {"commit": "2b5155288de48bd92bff0fb09972b4477894f461", "message": "Typo.\n", "proba": 1.1319933719278197e-06} {"commit": "db6693d9afc97536a1989e4d88b920cbb2957c64", "message": "call dn\n", "proba": 2.3812295694369823e-05} {"commit": "1e43502ec64258f13877b3906fcba2fbd9c15f53", "message": "fix(e2b): minor spelling fixes\n", "proba": 0.00012809524196200073} {"commit": "36d1fddf1561ab92c9318bf51c3c932e816cfa2e", "message": "Fix Regression where default value (None) was not allowed\n", "proba": 0.00010661790292942896} {"commit": "d17a88ac9ef8e3806c7ac60d31df62a1041939cb", "message": "Add sum_of_spreads\n", "proba": 0.998995840549469} {"commit": "96d6636572869e7be32e6b4e734cec1af18363fd", "message": "FIX: Added missing pyt import\n", "proba": 1.6689183723883616e-07} {"commit": "6836dee7a95ce382f8e86a9751fc3e25f4d6ad72", "message": "trigerring CI again\n", "proba": 2.7660487944558554e-07} {"commit": "c008950fc0ee97094c07612e8217922ca9490453", "message": "Changed constant to be stored in mopak.\n", "proba": 1.1138203603877628e-07} {"commit": "e05736cd36bc595070dda78e91bcb1b4bcfd983c", "message": "Remove deprecated usage of `reflect` constructor param\n\nUsage is deprecated; users are expected to explicitly call reflect() on\nthe Metadata instance.\n", "proba": 1.1109305830814264e-07} {"commit": "6d7ea9281614199ccf028101332d6dfd0d519f54", "message": "Updated automated nightly build script to work with git instead of subversion.\n", "proba": 1.0435291386556855e-07} {"commit": "40702fe2f0506b2bcf376df1066d6c606314f51a", "message": "Small change to modpython auth handler to support Apache 2.2\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@6305 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.6322085230058292e-06} {"commit": "92d1b23208912ca4c8a440468caf7bc595704d8c", "message": "Add test for the PeriodOverlapFilterBackend", "proba": 3.047322820748377e-07} {"commit": "78c5ef063a82d707b30eed4a6e02fcbc8976f4df", "message": "move sort code to the end, so initial result will be sorted too.\n", "proba": 1.1501569474603457e-07} {"commit": "c7f8fd75dd5b41a059b65e9cea54d875d1f57655", "message": "[portstat] Change self to PortStatCollector.\n", "proba": 1.1548490874702111e-07} {"commit": "947c49edf885c3e0add863f963150a82d14a9efd", "message": "Continue on advanced search, view.\n", "proba": 1.0760651036889612e-07} {"commit": "dc9a1767ccedf993f8baae43950ee2b46b81f0cc", "message": "clean up code a bit\n", "proba": 6.257835138967494e-07} {"commit": "60b2bdb27eb48aa1ede69f5d253f3102b6bf3490", "message": "Don't upload videos of dogs, just pictures\n", "proba": 1.0921520754436642e-07} {"commit": "0fdb174caad9de99a521befc105b5f13ae6b68bb", "message": "Update ?tester for the new v2.0 beta testing period\n", "proba": 1.5934668340378266e-07} {"commit": "db533b7d6ddb1368a1fd82b7e1474a8d10acce89", "message": "sneks\n", "proba": 2.4545317955926294e-06} {"commit": "5fccef3fed0cc5cbebe1863a8d14accee982006a", "message": "Change the help for ?remove custom\n", "proba": 9.979115702662966e-07} {"commit": "6158cf4190412d12b1ffd16a482bd8fc11a356f6", "message": "Work around missing permissions (e.g. test setup)\n", "proba": 1.3148265054496733e-07} {"commit": "d29b302794c7f6b09664f5dd96d76f8d8ce33e26", "message": "add some common aliases (#919)\n\n", "proba": 5.473323199112201e-07} {"commit": "0744dba6a52c42dbe6f9ba360e5311a1f90c3550", "message": "Fix python 3 compatibility issue in DNSimple driver.\n", "proba": 1.101364759392709e-07} {"commit": "1baa1b1b5f86b52f552a0225b76449995e18fa3b", "message": "Added conditions\n", "proba": 1.8601834028686426e-07} {"commit": "9f92cd8649baad8a1c01121e25c78222a4fbe9d6", "message": "SimplyTypedSpace._clean_dtype_arg()'s dtype arg can now be a numpy.dtype object.\n", "proba": 1.242340772478201e-07} {"commit": "0aa31ea74411243f820cc3ef369d5dbd414eaf07", "message": "docstrings\n", "proba": 1.7234823417311418e-06} {"commit": "725b246a0bbb437a5a0efeb16b58d3942f3b14cc", "message": "Update the example client.\n", "proba": 1.26443566728085e-07} {"commit": "5b27df7889efef86c028cb827780047a2736bdfe", "message": "naming issues\n", "proba": 1.2824251598431147e-06} {"commit": "89c3f573d9fb09a7ce4ed31e8a4333bf7f9c753b", "message": "poly_factors -- robustify docstring\n\nInternally poly_factors calls roots, which returns zeros of a poly in dict.\nThen poly_factor iterates over that dict and construct factors.\n\nThus, ordering of constructed factors depend on the hash function used, and\nthis particular doctest has to be \"robustified\" :(\n\n\nSigned-off-by: Kirill Smelkov \nSigned-off-by: Ondrej Certik \n", "proba": 1.0779463082144503e-06} {"commit": "5dddadb98340fec6afda80fd1a8ee1eda907b60a", "message": "print exports to terminal\n", "proba": 4.555842849640612e-07} {"commit": "c62e9e9b1661438e14817f008d018d92e78efb67", "message": "refactoring\n", "proba": 5.272031557979062e-06} {"commit": "c04a1e5beced6d6554be6a68b64539b5017a98ad", "message": "its alive!\n", "proba": 3.0203457868083206e-07} {"commit": "81a230a38cee8d835cd68bad1c35fb088183c3b5", "message": "Use reverse_lazy for success_url\n", "proba": 2.8377899070619605e-05} {"commit": "866ae468a665e90a225ef8747f87e574bc08dfc3", "message": "Removed full text search option\n", "proba": 4.894918106401747e-07} {"commit": "1741c7258ebdcef412442cebab33409290496df0", "message": "Add network example\n", "proba": 1.6224468026848626e-06} {"commit": "a946875539c2757ead091031a749d9280772f218", "message": "fix iterator errors\n", "proba": 9.004009189084172e-05} {"commit": "aeeda657ea0216f7907dd6d1077e8a0c318aba85", "message": "barpyrus: Use theme for title color\n", "proba": 1.7810549479690962e-07} {"commit": "c609774733456f73b93cdf113768bc712d905494", "message": "pylint\n", "proba": 2.1026107788202353e-06} {"commit": "0c8b4bce44fcb63497923e6753152781f8c9cbb1", "message": "Fixed bug introduced for testing automatic pull and supervisor\n", "proba": 1.2426013995536778e-07} {"commit": "d10959e48524ab0c9d6e6ffdbec5bcb7f9c24ea3", "message": "Update vemg.py\n", "proba": 4.985315058547712e-07} {"commit": "1d3c2dfae5d99e8b5b107c72b69c7a3f1d4cfd82", "message": "secon step to sparse\n", "proba": 3.009678266607807e-07} {"commit": "fc0c0c3e0e3d7a6bee38e523b5087fa9793f83b6", "message": "remove some of the convoluted control flow in tag_album\n", "proba": 6.06660364610434e-07} {"commit": "ab04d00d521f97c6a09e6545c1b3b7f16bb56381", "message": "Plugin decorator\n", "proba": 8.743432999835932e-07} {"commit": "7765c42f27534dcdd006a5520ee190f3920d67b4", "message": "JacSimilarity.py - debuging issues in randomword_distribution\n", "proba": 1.5619431792401883e-07} {"commit": "d30f6178a52d41cd8dbe510bc12062e52efd8f6d", "message": "make it possible to provide newlines with \\n\n", "proba": 7.481525699404301e-06} {"commit": "056907a430ebfd8925ee21048b81e6e801a51285", "message": "Add docstrings.\n", "proba": 4.574930301259883e-07} {"commit": "0df97343c63093f78f73933137ea8309fbb07190", "message": "new unit testing\n", "proba": 2.3194090204015083e-07} {"commit": "65643a451cd33b6325232f88ea8a0769ff0cf507", "message": "Row action redirects updated in Dashboard.\n", "proba": 1.1075581340946883e-07} {"commit": "94b207e6f3937a6f4d6fff2586dfd84ed48e7bd1", "message": "getMentors is used in proposal view.\n\nQuery does not need to be built manually.\n", "proba": 1.0349068446657839e-07} {"commit": "b6362d2d897aa3f35e80ef9589ad965801c1cbdc", "message": "Cleaning methods\n", "proba": 9.277195545109862e-07} {"commit": "4ae76deb6e95a915d372ef967dc33e1d77d4c30b", "message": "Preinitialize a notebook runner via a thread so that the server still starts up fast, but the runner is ready on first page access.\n", "proba": 1.0420593099524922e-07} {"commit": "1a370219ddd673f92595a44cf6433ba80aed0361", "message": "more unpacking removed\n", "proba": 1.3771091289527249e-07} {"commit": "f59cfe9e1510358029c57632a5be9fb41a0664fa", "message": "Github Actions attempt 6 disable numba on 3.9\n", "proba": 1.8183665417836892e-07} {"commit": "6c9609da1b7f5155929fa54f0b317574ed7e5190", "message": "commented gzip.GzipFile call\n", "proba": 1.9911192339350237e-07} {"commit": "525f4e7139fa36446ea344417107b86664d33269", "message": "Fix #664\n", "proba": 4.921411118630203e-07} {"commit": "b763074e38265acd8190d42060ee12923c85d1d6", "message": "fix of typo\n", "proba": 0.0002587214985396713} {"commit": "b10bfbd469ad744263a375cade5928aaad8a391c", "message": "Deletion now obeys cache policy.\n", "proba": 1.1191441018354453e-07} {"commit": "441876c868a14ccabb822c8496107b05f9b8a37e", "message": "further adapted tests for new parametrers\n", "proba": 1.148344139778601e-07} {"commit": "3d4bcb972a623452d83392365911e54b2602c752", "message": "Deal with another network error from memcache. Fixes issue 94.\n", "proba": 1.0183530463336865e-07} {"commit": "b07243a6fb11dbbd487ba37620f7c8f4fc89449a", "message": "bump version to v1.10.5\n", "proba": 3.079840666941891e-07} {"commit": "fd6226a00995c03e84af15d81ce79c6104782f93", "message": "fix full_sampler with new dropout\n", "proba": 1.2959603736817371e-06} {"commit": "7abd9b977368a189ca3f298e566dd1dd5b7a66d1", "message": "Update constant.py\n", "proba": 1.309528443016461e-06} {"commit": "276c0e02fbc754ce1b4f6ee4dfddf1cbef33fca2", "message": "[Add]\u589e\u52a0\u59d4\u6258\u81ea\u52a8\u8f6c\u6362\u529f\u80fd\n", "proba": 2.1079020484648936e-07} {"commit": "5848a9c64744eacf8d90a86335e948ed17ef8346", "message": "Correct path to workflows\n", "proba": 1.7618376659811474e-05} {"commit": "4ebb7dbdd58cba4e25d1c6f76f4d4e7fc8f7a9b6", "message": "Error Handling and removing incomplete json output\n\nIn case there is an error, empty dict will be returned rather than incomplete one.", "proba": 2.1561163521255367e-07} {"commit": "fe3ddb5e0defaebd15d53f13ab8d6ee1b6223530", "message": "added 'dev' suffix to version\n", "proba": 6.415430675588141e-07} {"commit": "aa9e9517996f5d54f3b8dfe3140032d677ee32b3", "message": "Fixing bad english.\n", "proba": 6.119545332694543e-07} {"commit": "5eb0408907371a8bc64fb7781a7266d8a7141ba2", "message": "Fix bugs left over from views.py split", "proba": 1.960191724492688e-07} {"commit": "0d31cbfd3042a1e7255ed833715112504fe608ae", "message": "Revert types\n", "proba": 8.55935184063128e-07} {"commit": "15013fbef77f9b01a5626196706692a34150c6dc", "message": "Custom auth settings.\n", "proba": 1.7803587581965985e-07} {"commit": "8a3ae1b809d886f647f13574cc9b416b17c27b7c", "message": "Remove VERSION variable from api.py\n", "proba": 1.5796179013705114e-06} {"commit": "843df0547ad35260e8889acbb7ab70259f17f7a2", "message": "Proper ordering of downloads for landing page\n", "proba": 2.3469867471703765e-07} {"commit": "f3448244282f8830e50de55b884d79e8ed568b52", "message": "Raise exception instances, not exception classes.\n\nRaising raw exception classes works, but is old deprecated syntax, and\nmay bite us later.\n\nChange-Id: I03f41da267ce5cbfc5ea98c531acc9a9b13e082a\n", "proba": 1.8806820207828423e-06} {"commit": "3a7c11db59e0e7aaadf37887d98fe8d53ebc7ac6", "message": "DOXER: write \"\\-\" in man page output instead of \"-\"\n\nDebian lintian output (this change fixes this problem):\nThis manual page seems to contain a hyphen where a minus sign was intended. By\ndefault, \"-\" chars are interpreted as hyphens (U+2010) by groff, not as minus\nsigns (U+002D). Since options to programs use minus signs (U+002D), this means\nfor example in UTF-8 locales that you cannot cut and paste options, nor search\nfor them easily.\n", "proba": 2.595886314793461e-07} {"commit": "99e8d3ea3aae5f1215b886424bd166575d54e86d", "message": "Tests: Nicer error message for wrong search modes\n", "proba": 1.9352958702256728e-07} {"commit": "ee5e9d09a02e52714291a44148be4722f8e495ac", "message": "Revert \"Take Abode camera snapshot before fetching latest image\" (#68626)\n\n", "proba": 1.2481312694490043e-07} {"commit": "b3e82b579baafaa2002e51a9cde68643087d455c", "message": "Add missing underscore to prototype in check_embedded_lapack", "proba": 1.8176501725974958e-06} {"commit": "19fff6489b9176dbe3fa1dd5202b4d791a47e96b", "message": "Fix wan_access switch for disconnected devices in Fritz!Tools (#65378)\n\n", "proba": 1.0942142125713872e-07} {"commit": "82d3042bb1a946aa0718ee7afcc487b6ed9cbcf9", "message": "Basic data package is public\n", "proba": 4.773071395902662e-07} {"commit": "78395c773d5d9e8a4abe513594e7451714b7af98", "message": "guard uses DictC for validation\n", "proba": 2.4756471361797594e-07} {"commit": "01b1fdc1fad16376cd125802e4fdd620a600d390", "message": "rephrase polict_logit -> policy_softmax; fix typo comment\n", "proba": 0.00023926375433802605} {"commit": "82d562472fd738890fe72755a25392a12f7e7bc3", "message": "Implement getArtist(name) function.\n\nWhile here, put a few test cases inside a function.\n", "proba": 1.720641336078188e-07} {"commit": "86c7f0bbacc59d00219b7f046150bd1bbf8da760", "message": "Improve type hints in hive (#77586)\n\n", "proba": 1.1491461293644534e-07} {"commit": "e7325b2b89aa96fd69f62b5578facbac4cc754ef", "message": "Small correction to the fc_nag module:\nuse lower to identify Module filenames\n", "proba": 1.8778382582240738e-07} {"commit": "70f588282e1777945e113e73dbca83f77355f0f9", "message": "Test git permission\n", "proba": 2.941317234217422e-07} {"commit": "ec9aa51dad7707d26a23e5e3426e2e25eaf0f04b", "message": "black\n", "proba": 3.7897563743172213e-05} {"commit": "2b0a0f2a575075fd44a8283d7f14efc9e0199f83", "message": "Reformatted to better read.\n\ngit-svn-id: d32064e2f47faa75c7548ad8fdc5558dc11aaf80@13 ed0607b5-9f2d-40cd-ad1e-287a16c2e87a\n", "proba": 0.9999992847442627} {"commit": "17c9e31e2c7739a1e0957499dd837e1148f15242", "message": "Fix Mikrotik encoding by setting utf8 (#38091)\n\n", "proba": 2.2924832876469736e-07} {"commit": "79a78dc1b0505908df163521e887d297eacb70a9", "message": "Added kona plugin\n", "proba": 2.78138571729869e-07} {"commit": "4f3e2eb27d5498560d2de4dafdcb472ef1255b63", "message": "Cleaned up code in django.conf.settings to move DJANGO_SETTINGS_MODULE into a variable, so other scripts can introspect it. Also made it display a better error message if DJANGO_SETTINGS_MODULE is set to the empty string\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%40239\n", "proba": 2.9364531656028703e-05} {"commit": "946bab4ad2aae52cc35e4129c3eed91c65147c5e", "message": "Add callable support to DACatchAll class\n", "proba": 1.5266806485669804e-07} {"commit": "f10376ba49063c3b4682af7bb56b82e927a18232", "message": "improved method organization_show\n", "proba": 3.868921396588121e-07} {"commit": "a3f12245163a9165f45f4ee97b6e4e67cdd29783", "message": "Update decipher.py\n\nAdded comments for clarity", "proba": 1.6910227884636697e-07} {"commit": "ddd7e79ee9a98cbfb7faac42c5ff7dbba86c7e0c", "message": "Improve device registry internal typing (#49924)\n\n", "proba": 1.195749348426034e-07} {"commit": "b45dad2b789ba49a499b3a1df32ec9505694db8c", "message": "Bitfield nicities in keysight sequencing\n", "proba": 3.4104778023902327e-07} {"commit": "48f97e34469f7b2a5c2f1c4edf18247cd7e65ed3", "message": "Fixed bug in [3786]. django/core/xheaders.py no longer assumes request.user exists\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@4090 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : ba3fc0eb7a99531a7c4edb4df48a53da926334e4\n", "proba": 2.7510415748110972e-05} {"commit": "0cc4c3288da2c73308fa20f16e03fb232f5d4ed3", "message": "Improved waiting conditions prior to capture stop\n", "proba": 1.2554970396649878e-07} {"commit": "f73c407d86266a6f83f84934fc38725804ec66b0", "message": "New Version 0.2\n", "proba": 1.9901339953776187e-07} {"commit": "5cc0c7d059d187410eb4d37345c71218aa3c5d8e", "message": "nurbs curve docs\n\n", "proba": 4.874760293205327e-07} {"commit": "64f9c24ae4dcd69614f226664ba95ad5e5b5d211", "message": "error bars?\n", "proba": 3.600018487759371e-07} {"commit": "806d16b4e7875c506502febe6160a9fa685cff40", "message": "change table prefix to wb__ from job_\n", "proba": 1.0513100505704642e-06} {"commit": "a653f314ff1c14b9f7acc5bfe1eaa78bcc4ad260", "message": "proxy.protocol.http: flatten for refactoring\n\nFlatten all of _process_flow, so we can see what's going on in there.\n", "proba": 1.115257362016564e-07} {"commit": "cb4521e6790127b0a59f9dd479996d27b4be11a0", "message": "Fixes forgotten group_exec attribute\n", "proba": 3.2516325632059306e-07} {"commit": "71e96782caff8543c2e859226bd0b77a79a55040", "message": "fix gate\n", "proba": 1.4137558537186123e-06} {"commit": "f421b2997494ca546c6479e4246456e56b816e60", "message": "Add Robert EVT ID too\n", "proba": 1.5251788454406778e-07} {"commit": "4b6453ee878a9487198af54cda8a1388a06f0376", "message": "Removing add_extended_info from bad_request method\n", "proba": 1.143750978371827e-06} {"commit": "6bce6f9e0a44780503df59054c962ddd82d9b53f", "message": "Remove unused variables", "proba": 6.972961273277178e-06} {"commit": "25e7800df288c958cfc4537bf93a2325786aaf3a", "message": "(fix) pep + pylint + style to pass gates\n", "proba": 1.407467919989358e-07} {"commit": "cfe47b7686df0c4c87270a83d6d7f933323ed7e6", "message": "Fixed #32610 -- Fixed get_git_changeset() on Linux.\n\nshell=True is required on Windows. Unfortunately passing a sequence to\r\nsubprocess.run() behaves differently on Linux, i.e. the first item\r\nspecifies the command string, and any additional items are treated as\r\nadditional arguments to the shell itself.\r\n\r\nhttps://docs.python.org/3.9/library/subprocess.html#subprocess.Popen\r\nhttps://docs.python.org/3.9/library/subprocess.html#converting-an-argument-sequence-to-a-string-on-windows\r\n\r\nRegression in a44d80f88e22eda24dacef48e368895ebea96635.", "proba": 3.43421191928428e-07} {"commit": "d9af336506fcca40cbc5ebf337268cfd16459c4f", "message": "Use iter_log in example.", "proba": 1.1723184201173353e-07} {"commit": "6657bfed6a447ac8da89e4f08305f3efd5285f06", "message": "file renaming\n", "proba": 5.436716492113192e-06} {"commit": "d67e7b26e84c506974e26adc4fdf1133fbb8dc76", "message": "Error handling in getvideosize\n", "proba": 4.893540790362749e-07} {"commit": "1fdcf3b9a590bf52f42ce3ce5cdfbae07dc7100d", "message": "remove remaining settings\n", "proba": 8.287199761980446e-07} {"commit": "f5e4531210a96fd786d6608e66acd4504cee36cc", "message": "changes to run_script\n", "proba": 8.25872575660469e-07} {"commit": "7e7ec43b7d98e5afc42bfd25e3d43ae468771340", "message": "fix #369; add script to strip extra space around/within existing sentences\n", "proba": 6.57374016554968e-07} {"commit": "c0c942b0606907238adbe284439415cbab5c6a59", "message": "igv ready to test\n", "proba": 1.3196527959280502e-07} {"commit": "b365030b280bce86b3f7f99fe72689bad5123b11", "message": "Refactoring - split into multiple methods\n", "proba": 8.030559911276214e-06} {"commit": "9e939946023d49c0e1e7f5f6cc16726fb8465e49", "message": "Add warnings for invalid image data.\n", "proba": 1.756602188152101e-07} {"commit": "c6ca2be707dfa7bbc21c7d832fef1d0f2097aa26", "message": "changes to echem_plate_ui\n. added a new experiment \"Bubble\" for visualizing bubble data in SDC format.\n. To accommodate new data content make the x,y plot keys auto update from the raw data files (self.plotkeys)\n. to avoid error when epoch not available, zero it out or empty string\n", "proba": 3.7324579693631676e-07} {"commit": "1d0d28ebdda25a7dc579857063d47c5042e6c02b", "message": "Enable south for the docs site.\n", "proba": 1.0795599081347973e-07} {"commit": "fb1f1b7549616c647a2c6b3617cee76f657f3b91", "message": "Always change the group of floating windows\n\nPreviously, maximized and fullscreen floating windows weren't having\ntheir groups changed here.\n", "proba": 1.0609170431052917e-07} {"commit": "27554d8863b5a9e52e4b45af3192c8b51d29d96e", "message": "fix: [Mails] regex timeout\n", "proba": 0.00022626991267316043} {"commit": "3434c404d8ab3d42bed4756338f1b8dba3a10255", "message": "split debug_plot into debug and plot\n", "proba": 0.998672604560852} {"commit": "e38f746d229bcda7990e13aeeea2282435e00820", "message": "working db API v0\n", "proba": 3.745705328128679e-07} {"commit": "0e28ec34ef18d59035c3644727a11a16557c6c2c", "message": "Made query a required argument (#123)\n\nCo-authored-by: Javier Ramirez Molina <614887b2e7cf13113326441b468ce426aaf26eb4@google.com>", "proba": 1.3984868019178975e-05} {"commit": "2dc0ac43b50c61aa10576779a8228ff578c37068", "message": "Use get_user_model\n", "proba": 4.278988399164518e-06} {"commit": "941680d5266159fc5c9f2a65131bf283bd1cef1d", "message": "base: chromosomes: Fetch the chromosomes lazily\n", "proba": 0.0005333554581739008} {"commit": "0fb39d989dcb333ce440dca118b73d56cdbf01f5", "message": "Regex class\n", "proba": 4.038741110434785e-07} {"commit": "e34f4a424903a0fd06fd6e30273f82cd9ec67511", "message": "Reduced auto-scroll on transcript #MCKIN-1501\n\nAuto-scroll only when word gets toward the bottom of the visible transcript, as opposed to every line", "proba": 1.2406334803927166e-07} {"commit": "771db6a29015dc9549aa82117a3fca7f21be8311", "message": "Use human-readable experiment names\n\nCloses #52\n", "proba": 0.0003340877592563629} {"commit": "8a8ca480cdd857ec21b1a9745a8acfdea1257079", "message": "COMMISS.ENH: redistribute aquisition_period in Touschek Measurement class.", "proba": 1.0676727413283515e-07} {"commit": "74b9c79eb49a23c1eeb3a13c67ad81e049723e7d", "message": "Removed slash from nominatim URL to make geocoding work again\n", "proba": 1.2365511281586805e-07} {"commit": "00c14e981807668b09a5d6a2e71fe8872291acad", "message": "Add admin support for attachments\n", "proba": 2.1362710356243042e-07} {"commit": "f15dad5848352f7576b9c5d43d0cbc79220656fc", "message": "Added patch for using the vipagent package and loading the agent through\ndefault_main method.", "proba": 1.0087432400496255e-07} {"commit": "472e24a080132a78af0128a4f89e73c86527f761", "message": "set 755 permissions on s2protocol.py so that it can be executed\n", "proba": 4.0531799072596186e-07} {"commit": "fff90d1a1b194fe5e65e99506bc4fe6fffc9a255", "message": "Account for situations where the minimum permutation value is also above webqtlConfig.MAXLRS; previously threw an error\n", "proba": 2.3271726945495175e-07} {"commit": "6deba4184470fbfaf630843bd4d3304d6ea14652", "message": "fixed: flexible indent level\n", "proba": 1.1931639392059878e-06} {"commit": "2d42d48863bb2fb063ab09c659ceaf4f3f32e2cf", "message": "Fix first fetching of the weboob's module;\n", "proba": 1.0611012157824007e-07} {"commit": "c6578bb758b4aa4f38288192c6b309f710493d38", "message": "Bug fix: check for actual version number in queue list instead of \"head\" -PatrickDP\n", "proba": 3.461298661022738e-07} {"commit": "ffe91627d8befbf6fdf8798cbda572b4c6c3cced", "message": "Add documentation for new request argument", "proba": 2.566203818332724e-07} {"commit": "cb06ba03ed918763d976bbbb9992c5ef296ba522", "message": "making related set implementations more symmetric\n", "proba": 2.1313028355507413e-06} {"commit": "bc6f67c518b4cbccec13043fc0422faee45d9e16", "message": "moved analyze to separate flag\n", "proba": 2.98176615842749e-07} {"commit": "315a94f5333287146ab4362179a1c9584fff83df", "message": "try again\n", "proba": 2.878732914268767e-07} {"commit": "98197dc1c41b5e2550a428be78d74d568b76729d", "message": "Syntax\n", "proba": 0.0002501824637874961} {"commit": "1feab02b8df0a4380e9696fb0eee25ca0ab0e1af", "message": "featured: e301 fixed method.\nadded: e101 fixed method. (not word)\n", "proba": 7.325135129576665e-07} {"commit": "bc8204f9e52a8f8c3a6f4374a905f09278989698", "message": "CA-287286: correct error logging message read not write\n\nSigned-off-by: Mark Syms <655512b2a8f1aba6e4085462b623575da824f038@citrix.com>\nReviewed-by: Stefano Panella \n", "proba": 1.569471663742661e-07} {"commit": "48c880a35c899929da33f20e9cd4ee7e4fd8bc7e", "message": "Set a custom name template including the replica set\n", "proba": 1.8451794403517852e-07} {"commit": "17af750d88d188d48a4ae608819abec7580f9e91", "message": "Link to stable Django version docs not 1.8 (#480)\n\n", "proba": 1.175266959307919e-07} {"commit": "48303bced57e8e7c51a309c623b4da60b3920fba", "message": "Add /usr/local/namebench as a valid path, since that's where Python on Ubuntu puts us", "proba": 5.664016953232931e-07} {"commit": "b33407bd483823b44711eb69b308631f8c39b461", "message": "small changes templates\n\n- allow quotes\n", "proba": 1.1882885786462793e-07} {"commit": "cac7a02edd2f1effdf3da181542721a06e971790", "message": "Increase cached_input to 5 minutes\n", "proba": 1.101244652090827e-05} {"commit": "2133a37e0205a80a2e135645833b6c345216d635", "message": "put flask id on recurring donations too\n", "proba": 1.2615221578471392e-07} {"commit": "71289d3a22476001421454ff736ea03742e43158", "message": "Add basic parser\n", "proba": 0.00033445231383666396} {"commit": "b14aaf4155242229ab79395afa1004643a488d29", "message": "Correct mislabeled variable\n", "proba": 0.9987789988517761} {"commit": "afb41678870fcd59f1f091eaff79a25f3454f9d4", "message": "Add a logger. Why not?\n\nLeft over from a refactor, may as well leave it.\n", "proba": 3.150517500216665e-07} {"commit": "40a4e84395f0019e7255997a11dc0bff92daf223", "message": "Publish new meetings on twitter\n", "proba": 1.8587063266295445e-07} {"commit": "085b47b3123a1fd71da9f2d6022cfe1d4c7778b4", "message": "ProcessLibrary: refactoring\n", "proba": 1.285712073695322e-06} {"commit": "5d74fe6463539bc26ad77b4d344089b41d5723e5", "message": "Add new use and use in requisites\n\nTechnically use and use_in are both requisite in statements, since they\nmodify \"post\" data and set up external data.\n\nThis commit adds the use capability, so now you can do this:\n\n/etc/foo:\n file.managed\n\n/etc/bar:\n file.managed:\n - source: salt://bar\n - mode: 775\n - use_in:\n - file: /etc/foo\n\nand 2 things happen, since /etc/foo uses /etc/bar, the options from\n/etc/bar will be appeneded to /etc/foo (but not overwritten). Also since\n/etc/bar is using /etc/foo, /etc/bar has a watch on /etc/foo.\n\nThis namig is subject to change before the next release, this change is\nin response to #647\n", "proba": 3.1494826544076204e-05} {"commit": "dd2ca920aca16169538e875e082a5478140340f4", "message": "fixed not returning error response if a invite is requested for an invalid squad type\n", "proba": 2.2395273902020563e-07} {"commit": "15e37abfdeecbf49f61fab0c06003ce4237a1e42", "message": "Move catching of KeyboardInterrupt\n\nThis necessary for when we use autopep8 via main entry point.\n", "proba": 1.0142822759462433e-07} {"commit": "84642bab00aecbb061789fc9e8a5d5103e3e9e42", "message": "add getdict\n", "proba": 1.3698543170903577e-06} {"commit": "cecd11eb9c01f1a4b197444c52d2279abe81cda9", "message": "fix getting group query on topic page\n", "proba": 5.253652034298284e-06} {"commit": "5745e21169d9b9ebf745367b80ab3799f4381674", "message": "Add comment to clarify edit_question conditions.\n", "proba": 1.2746360766868747e-07} {"commit": "aac13507a3b89a9e769b53c9d7198587e8916b59", "message": "STL2STLXML: fix string/data handling for Python 3\n\nAs Python 3 distinguishes between string and binary data, some code\nparts had to be adjusted. In some cases, additional conversions had to\nbe added.\n", "proba": 1.6198247294596513e-06} {"commit": "89660975719b87b0374d2ad2a63191fbc215c13d", "message": "fixing parsing bug\n", "proba": 6.857624725853384e-07} {"commit": "c1a6e6a2142d05d50e9505e50e9b2200d196e3a9", "message": "Py3 Compat\n", "proba": 2.904372990997217e-07} {"commit": "b9cf7ff3ff907b5a805264b399b17e4ea6bec049", "message": "Monkey patch distutils.log.set_threshold so the Python logger honors calls to it.\n", "proba": 1.0799594463151152e-07} {"commit": "af7f0fe0c5055f871abe8329c4177ecda68c987b", "message": "fix IndexError in w503 fixed method\n", "proba": 2.890628252316674e-07} {"commit": "948ce666053eee9fbdfd7f14e9f02e0aa6bdd18d", "message": "list[:limit] works fine if limit=None\n", "proba": 0.9999992847442627} {"commit": "de179d5779b2f03a7e35e5b76aec9e801f474516", "message": "updated control logic endOfScan_newScan\n", "proba": 2.739215005931328e-07} {"commit": "e4ca06529079334f6bb77e0c60b7ff2e7d34ce98", "message": "Adaptive Method selection, default adaptive threshold\n", "proba": 1.7638137705944246e-07} {"commit": "c0aab9a9152f9ca19d0e3cbd4dff1d85b2e69b09", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "9ba458a3c3c2fa0fb486a2942bcaab7e158c00ea", "message": "Improved task handling", "proba": 8.757411706028506e-05} {"commit": "97fc80e534cd1e7d1b25d8b7ea5a4116553c3765", "message": "Only check for slot if arg is not bytes\n", "proba": 3.6453457141760737e-07} {"commit": "7372d185e72fda6c8ad3eea6c5faac61eae602c5", "message": "Bumped to 19.5 in preparation for next release.\n", "proba": 9.803890321791187e-08} {"commit": "a49095bf078603e046288629aa8497f031ed6bd3", "message": "Add transpose_join, joins 2 infinite lists by transposing the next elements\n", "proba": 6.166030743770534e-07} {"commit": "9f1b60517ba7dde3fe1290c2b30a030a533b3662", "message": " * Optimize sorting process.\n", "proba": 1.687123045712724e-07} {"commit": "a46aee9898a63f69dcaf620866043e036ee1edb7", "message": "[svn r37787] more precision at shutdown: first remove\nfrom the sendqueue, then trigger the queue\nto shutdown. (This is an attempt to get\nrid of the still appearing \"exception in thread\"\nmessages)\n", "proba": 1.0734022737324267e-07} {"commit": "213ab2c2044e5db0a2a3f2611b36ffce27502666", "message": "Try connecting to each available address family until one succeeds.", "proba": 1.1380436859553811e-07} {"commit": "e869d59dddf6e574155a4c5307b184d46e145d7c", "message": "Delete Feeds/Posts and retry query if MultipleObjectsReturned\n", "proba": 2.7323454787619994e-07} {"commit": "b3fc82ac30a8c0664a0171c2c24e67e604278e3a", "message": "Improvements to the sync python script\n", "proba": 2.5682552973194106e-07} {"commit": "04933787fc7d8783ce4ac100f946ca32c2599703", "message": "Fix unicode issues generating MathJax JS\n", "proba": 0.001110954093746841} {"commit": "e36b24d5d770850afe501720bf674a9d47ce21bb", "message": "prevent unnecessary recalculation of transformations\n\nThe GUI splits the array of Q values into chunks - we should not recalculate the transformed coordinates for each one - so there is now a saved value that is reset to None when the data or rotations are changed.\n", "proba": 1.5585610526613891e-06} {"commit": "71db54f3573488c4b652ab0b435de4699f84396b", "message": "Defaults to El Capitan now\n", "proba": 1.7371839078350604e-07} {"commit": "cce9144fdb19ae6d85115d0178f25ff72618a1b5", "message": "import req exception\n", "proba": 1.0530018244025996e-06} {"commit": "338db3d7ee69ad6b43e306157123d61f5351a289", "message": "Make annotation docstrings consistent with overlay docstrings\n", "proba": 3.695787654578453e-06} {"commit": "14c97f6aa66ee2cb2022216c4285726f89ed64bd", "message": "ui: handle instance parse tracebacks\n", "proba": 7.094146781128075e-07} {"commit": "7a433b71fb62f34f80fa1c636129ab779bc2c1ce", "message": "Handle paths that contain leading //s in test input\n", "proba": 1.3429208820525673e-06} {"commit": "1a12ffbe58796f4f3ead63d6d06492b3d64ce247", "message": "update import and use of errno\n", "proba": 1.5372729933460505e-07} {"commit": "e006c8df366eadcfce1d78e950f00e4bd2cebd16", "message": "since() must be on the QuerySet\n", "proba": 5.921585284340836e-07} {"commit": "8ce79957508a5dfebc4c27787a99d7376ef26318", "message": "parsing\n", "proba": 2.7606838557403535e-05} {"commit": "108554d1bda53ef4d36dd0bba5c8c237a89f40b9", "message": "Removed bin/test.py\n", "proba": 6.063000341782754e-07} {"commit": "7c9a4b72f59d902ab5daa43b7675641a2e81ebb7", "message": "Switch to \"templates\" terminology for VM images/templates.\n", "proba": 1.2126086801345082e-07} {"commit": "c82f9aff12dc992e90f4a4fbc732f0a5e9bb507c", "message": "Fix for checking for bounds incase where initital bounds is set to -1.\nUses absolute bound value for symmetric floating point quantization.\n\nPiperOrigin-RevId: 385026281\n", "proba": 2.0341097695109056e-07} {"commit": "a76a42b195e3f729b7f3f6ef8389e76a72728c62", "message": "add fluentd-elasticsearch addon\n", "proba": 2.543192465509492e-07} {"commit": "27f616702aa36e8c814120dfd99598d9d266f31d", "message": "Test implementation year\n", "proba": 6.595316222046677e-07} {"commit": "87d792fda8763f49d83ce274015f3a436a0c89cc", "message": "send message after stuff is started\n", "proba": 2.8767377102667524e-07} {"commit": "7f2ac925b2343e57ad7f4a6d79ee24e14c8f4d78", "message": "Add a Bazel rule assignment_notebook().\n\nThis rule is intended to be externally usable (as opposed\nto Bazel macro assignment_notebook_macro, which only works\ninside this workspace). Work in progress for #32.\n", "proba": 1.2262871962320787e-07} {"commit": "23245875c5a05f640adaaadce628d5ce5b2034cb", "message": "Added extra safety to ~get\n", "proba": 1.1390230980623528e-07} {"commit": "36fde4f2795d95d18a2862ba1d8d343f1ebe3185", "message": "add interfaces_ip filter\n", "proba": 9.262538469556603e-07} {"commit": "c9ece1c7d7ec9ef8b23ae4ff5189400b4569fb14", "message": "Fix config structure check\n", "proba": 1.6479385749335052e-06} {"commit": "fd92c0b2964bce5d56b9bf41e84bfde24fec0b78", "message": "raise default post limit to 25q\n", "proba": 3.799781893576437e-07} {"commit": "27e67bf1311512e83978bb82606ef73127efece1", "message": "version number\n", "proba": 0.00029088708106428385} {"commit": "2ddb65c32253872c0e7a02e43ec520877900370e", "message": "Auto merge of #87532 - tlyu:bootstrap-rev-list, r=jyn514\n\nbootstrap.py: use `git rev-list` for robustness\n\nUse `git rev-list` instead of `git log` to be more robust against\nUI changes in git. Also, use the full email address for bors,\nbecause `--author` uses a substring match.\n\nBased on #87513, but is separate because it's less minimal and may require additional manual testing.\n\n~Open questions:~\n* ~Should the `merge_base` search also use `--first-parent`?~\n* ~Do we exclude non-merge commits from bors? There are a few, and I'm not sure what they have in common. Some of them look like squashes, and some look like they're in rollup branches.~\n\nr? `@jyn514`\n`@rustbot` label +A-rustbuild +C-cleanup\n", "proba": 0.005768073257058859} {"commit": "f274f927d600989db1d485212d116166695e6edd", "message": "Use keyword arguments for readability\n", "proba": 7.218278028631175e-07} {"commit": "45c6b9c4881088b9e38a8c6e86f43f642cc680b5", "message": "blacklist should be like it was before\n", "proba": 1.1948837709496729e-05} {"commit": "40bd838c11c23649e7bdb39590699740c0401bff", "message": "config command: lazily import (#5211)\n\n", "proba": 1.525493047438431e-07} {"commit": "e513ec64d8b99269cb3064bd0967f3dd9ab1653a", "message": "t is shared_scalar\n", "proba": 2.310192428467417e-07} {"commit": "1b3cd4aab91114829053b344cad20677aaa22a76", "message": "Update default extended heartbeat checks\n\n- check_forum_heartbeat path has moved on master\n- remove default language code (it is default anyway)\n- ensure djangoapps.heartbeat is installed everywhere (for check_celery task)\n", "proba": 1.2271949856312858e-07} {"commit": "858f08f0e5bc3fc0c8d83de4b22fd56207193278", "message": "no login required to get kml map layer\n", "proba": 1.7665509233211196e-07} {"commit": "622d93b9f2a245561e6a6bf1eb2e529ba04783f8", "message": "Version 1.4 - Whoops, Fingers crossed.\n", "proba": 1.0694397900579133e-07} {"commit": "e7cce08f32516bc8b15df7eee0c285eebe795cab", "message": "Make it easier to filter on multiple field values\n\nBefore this change, when you add a filter on, say, organisation, the\nlist of organisations is updated to only include those which are used in\nthe resulting documents. This generally means that you get far fewer\noptions available.\n\nInstead, change the list of values shown in each filter field to be\nbased on the current scope except for the filters applied to that field.\nThis allows multiple values to be chosen. If multiple values are\nchosen, documents are selected which match any of those values.\n", "proba": 7.406507052110101e-07} {"commit": "d5750b23419ae4e5cd7c540154315da5417c312f", "message": " reverse relationship filter for update in serializers\n", "proba": 2.4221577632488334e-07} {"commit": "b88e43c43449ee0b5249f4dc8d0d12929522af6e", "message": "Find dupes by author instead of title, and skip empty possible fields\n", "proba": 2.5780686883081216e-06} {"commit": "bd49c9e35e1119a9c925d0e95c053e816fe1525b", "message": "Changed tonnetz input arguments\n", "proba": 5.556997848543688e-07} {"commit": "f05b47ccdfa63f8b4b9fb47a9aa92381801d3ff1", "message": "Don't download/sync llvm-project submodule if download-ci-llvm is set\n\nllvm-project takes > 1GB storage space and a long time to download.\nIt's better to not download it unless needed.\n", "proba": 1.1198338256690477e-07} {"commit": "60527d3b632e5deba7b6ef67668adf4bc114abc2", "message": "minor cleaning\n", "proba": 3.2635185220897256e-07} {"commit": "5f5f054e7611d06d79afee8a602ab88803fef06a", "message": "Fixed error message for output file\n", "proba": 5.568143137679726e-07} {"commit": "b2015b52587adb69b0133c95b015b3879e66ac57", "message": "urls.py: added securityTags, prep to transition to new-style GEOCAM_UTIL_SECURITY rules\n", "proba": 1.8827766723461536e-07} {"commit": "d154e883c0aa4495cee8c0ce210cb1e4f78755db", "message": "sort tracts\n", "proba": 7.359646406257525e-05} {"commit": "82bb3688354334f61cf23a7c380506528d059a0f", "message": "Add a configuration variable for the email 'From' field\n", "proba": 0.9999302625656128} {"commit": "4f8c645fdb125a08e9ff9234d4f58290f6fbbd58", "message": "#291 - assessments counts via preselected sttus for EOIReviewersAssessmentsSerializer\n", "proba": 1.0099522285145213e-07} {"commit": "18bdba483849996cc5276e9205b3eb9c5e55ae55", "message": "Added partial_ip_address property to Vote model\n", "proba": 1.7122751216902543e-07} {"commit": "58a773c6b7495ebb623392fb4d36251d2f0f3c89", "message": "added docstring example for spectral contrast\n", "proba": 1.6051590989718534e-07} {"commit": "29b7c1958ca0a1b1dd0d9d58f83acade89152a2b", "message": "Improve digest message/culprit mock generation.\n", "proba": 2.3881742094999936e-07} {"commit": "55a39787340a88dd4d2889550db589c27e99b6ff", "message": "Fixed an error with decoding of floats\n", "proba": 1.08774429463665e-06} {"commit": "d16186b0ebf4084d8c99a7546369903fd53c0882", "message": "Added titles to tf plots\n\n\nFormer-commit-id: 927a983c20fcad5eba6a26f5620844d71a7c95c3", "proba": 2.1968625674162467e-07} {"commit": "10d0b7c452c8d9d5893cfe612e0beaa738f61628", "message": "Add to template builtins only if add_to_buitlins is available (Django <= 1.8)\n", "proba": 1.0744756195890659e-07} {"commit": "f04d1cf3b80555c1c4153b27ce07ee8eb5ac0a30", "message": "Refine ShapeFactory.generateSegmentBasedStroke(). Support pane binding for generating pane based strokes\n", "proba": 1.8682210622955608e-07} {"commit": "5b33794ce7a3c40c4fe1912be78d628ac5673536", "message": "IMF: sort WEO issues in chronological order\n", "proba": 0.9993322491645813} {"commit": "e145ef6ca54c9615f038601da17daf16550196d6", "message": "Use environment variables to locate Windows GStreamer includes\n", "proba": 1.896273573720464e-07} {"commit": "f2e4276f1ac1db84715c73c1730b27a1c347f6b6", "message": "fixes urlencoding call.\n", "proba": 3.4299438311791164e-07} {"commit": "55dd6cb9dfb72fcbff89b10ccdd0d68c309d9aa9", "message": "Enable RTTI on OS X to fix exception handling (gh issue #106)\n", "proba": 1.0435589814505875e-07} {"commit": "2aa9e8ccab86ea23864960448bf2de6055ef86ec", "message": "[mac] [linux] [win] Treat warnings as errors. Ignore -Wunused-result.\n", "proba": 1.2780905933595932e-07} {"commit": "043a0ad774964d2608ee1c8bd8ba1abc5b2ed0b4", "message": "Tweak binding.gyp so it doesn't error out on Windows\n\nApparently `node-gyp` doesn't like it when there are no targets defined\nin the `binding.gyp`. With this change `node-gyp` will build a dummy\n`pty.node` on Windows.\n", "proba": 1.1760697304907808e-07} {"commit": "5a6f748981554cb4d4aa0b5500a9b86bd09eb1b5", "message": "Add Linux static bindings\n", "proba": 4.930280397275055e-07} {"commit": "3495a26f58b66193712c3a189ad67083b0a7f6e8", "message": "[minor] Link to libc++ on macOS\n\nFixes #53\n", "proba": 1.748507685306322e-07} {"commit": "417ccd33279f1195b7523992c0f7903aa9381f88", "message": "Mac/Windows switch statement\n", "proba": 1.5517742895099218e-06} {"commit": "777bb37f9ac4457dca79a07953356ce46b941a30", "message": "gyp: change '-std=c++11' to '-std=c++0x' for linux\n", "proba": 2.2912994609214365e-05} {"commit": "ded6e4692d017833dcc37f1720ad7736d1046efd", "message": "remove \"self\" from IPreferenceCollection.getSections definition\n", "proba": 4.896033942713984e-07} {"commit": "f70f39bc36aeb3dda046c86b53e604f9abfca032", "message": "Add __repr__ methods to ZK objects\n\nFor more pleasant debugging.\n\nChange-Id: I3ff59ee755f191de1e5da30c5b4792697b98e4c1\n", "proba": 1.0612297955958638e-05} {"commit": "923caa4725323c741966071e04ee7057503a77a5", "message": "v0.0.1 Mon Aug 18 20:48:38 MDT 2014 Typo causing errors with building zmap\n", "proba": 1.2388350967285078e-07} {"commit": "b171dd1430a7b7a2e14a7e31575fa6bb503c6779", "message": "added get_readable_objects()\n", "proba": 3.725143358224159e-07} {"commit": "6a8a22c051788b21ccf69feaea11dc7f9b7106ab", "message": "Added functions to calculate light yields/resolution for already smeared PDFs\n", "proba": 1.4588042063223838e-07} {"commit": "b586c2146f8dc4a1409da5eecff5cacfd331f422", "message": "Ensure node-addon-api include path is array context\n\nNeed to revert to scalar context after node-addon-api v3.0.2\n", "proba": 2.4204314286180306e-06} {"commit": "4d117703e8a33ab628feba96aa5f2a35dd175ef6", "message": "Allow null event dates\n", "proba": 0.00025910191470757127} {"commit": "59c23002a82e836e104589855ff49da815f8a317", "message": "Added license and author info to file\n", "proba": 1.1069583649714332e-07} {"commit": "786e7d83672ad5ff2718c9a440dbd180f8e7b24a", "message": "fix(build): make addon buildable as static library (#119)\n\nRequire libcom_err when building a static library\r\nbecause the code accesses `error_message()` which\r\ncomes from it. Use `-l` prefix for included libs for Windows\r\n", "proba": 7.16526812993834e-07} {"commit": "2f599732e8c5c0d09331cd7946c7a9062ce218f4", "message": "Formatting, add manga function\n", "proba": 6.970867048039509e-07} {"commit": "1929e95eac4cac42f158e87f95708c7571f35bb5", "message": "bumped version number\n", "proba": 2.2809651909483364e-06} {"commit": "f2e962c78f3f06811a5f7534962892a035a66ceb", "message": "[ufo] don't check glyph names in glyphs_to_quadratic\n", "proba": 5.054905614088057e-07} {"commit": "1809c3960dc6b3c08f1fb9866b9aff60bf47c618", "message": "Fixed lint error\n", "proba": 4.813076657228521e-07} {"commit": "bc26f95dbd1f98cbb0afb41b9bbea79d185ab9f2", "message": "[REF] ws: Adding m2m values\n", "proba": 5.404967282629514e-07} {"commit": "a9b57c832227dd73bb8f8f4ccbed438040d56a63", "message": "Updated from Brython Server: 2/5/2016 2:26:31 PM", "proba": 1.1493850138322159e-07} {"commit": "4b0df9b01431e670012398fae580de567f4e6199", "message": "Make a few imports start with leading underscore\n", "proba": 1.406278352078516e-05} {"commit": "a24ebd6c1e0b3cd8c81b1e0fb02a5abc2515508d", "message": "ProposalDuplicatesTask fixed.\n\nAlthough 1 is specified in fetch_page, the first part of the returned tuple is a list.\n", "proba": 1.202736115146763e-07} {"commit": "5877015a1fcdfb6e53a6d7ed176a8c9020fc92ee", "message": "Ubuntu-16.4 contrail-tor-agent support in contrail-status\n\nCloses-Bug: #1679460\n\ncontrail-tor-agent nodes will be added dynamically. The list of added\ntor-agent nodes will be tracked from systemctl list-unit-files.\n\nChange-Id: I6713674cf89767d4d730d4900e4593895a356e5e\n", "proba": 4.1682324081193656e-07} {"commit": "b8df30e7a879049997b49aace09501d0dd809e8f", "message": "change output of --show-folders\n", "proba": 1.095911898119084e-06} {"commit": "54015fbb2ad71d5ba02efbf1bfa30a16b9b74a5f", "message": "even better way to normalize spaces in add_flowing_data\n", "proba": 4.942859504808439e-06} {"commit": "67ed331932aa8f132510b772a6daa672f49f4e52", "message": "Updated from Brython Server: 9/30/2015 1:31:36 PM", "proba": 1.0968616948048293e-07} {"commit": "219d2bbe7189f685f54232e1fdd4ec96fc5330bd", "message": "Warn about cast instead of useless re-throwing exception + fix bool esc\n", "proba": 2.2012477529642638e-07} {"commit": "ba2ddcb077f2794e4d0ba6bd18d019f129ec7c66", "message": "- Removed Site from tests, for now.\n- Added update tests.\n- Fixed WebTestCase.\n", "proba": 1.0631939062477613e-07} {"commit": "dae6a61f8bdc7bc483ef584ff98fd07becb585f0", "message": "updating em plotter; should've been attached to previous commit\n", "proba": 2.3821577599392185e-07} {"commit": "001b7256fd920a919115167cdd1ca1f763a0d31b", "message": "Mentor signup period shouldn't encompass student signup period in this helper.\n\n--HG--\nextra : rebase_source : 53995e47e6d67266474786aa7840ce1df7f0909f\n", "proba": 1.8939146002594498e-06} {"commit": "1df655ac5a2bc31c693411c8f6a31e421c817c7d", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "7e4393aede4fe177bf187e6f193bb6d1096e922b", "message": "Minor docstring change.\n", "proba": 1.547515040556391e-07} {"commit": "161570ca591edf50452dcea782481f1939757370", "message": "Fix progress reporting.\n", "proba": 3.134869643872662e-07} {"commit": "cf4f3030c8658fd93a70f7af6829b7d2c6aebea3", "message": "Handle django projects (and others) that live in a virtualenv, not just nose\n", "proba": 2.221332238150353e-07} {"commit": "11cd09c033794e0c42511f583ed7ad45e8b3a9c1", "message": "#14814: Remove stale __hex__ method from ipaddress\n\nObsolete 2.x method.\n", "proba": 1.3136833842963824e-07} {"commit": "8a7b0771b74349ecf6e933537fa6a6bb394f8de5", "message": "Updated from Brython Server: 2/6/2017 3:01:53 PM", "proba": 1.1057133519898343e-07} {"commit": "74fc7b335cb0728ef22ca7baf2ca54ae72a4233a", "message": "reference line in tmax plots\n", "proba": 1.6441524053334433e-07} {"commit": "f7f9e5ec0889db742c1014f07ddad7f2a16b8a80", "message": "Update NewsblurConnector.py", "proba": 3.411668103581178e-07} {"commit": "8d2805107bc765ab0c171adebaeed9c0379b10da", "message": "Add -f, --fork to run in the background\n", "proba": 6.865280965939746e-07} {"commit": "3efd03d46f555de44e67def39a0598c8c8fc8c52", "message": "revert to previous index_face_set, since the new one simply doesn't work\n", "proba": 7.93687206623872e-07} {"commit": "e374b6a833934b65ae4dc7ad80dbc3811cd4cbd6", "message": "Fix default value in docstring.\n", "proba": 2.0140154788350628e-07} {"commit": "60e2d75f681da6f400d23a9a0fee69c478c85d93", "message": "Updated from Brython Server: 2/3/2016 1:52:25 PM", "proba": 1.128156199570185e-07} {"commit": "5179a859e03d5b5bf0d0915d480ac541903f8057", "message": "Ensure robust reporting against database metadata\n", "proba": 1.73973171513353e-06} {"commit": "950a29767c8cbfab5abba7c6a43f169f74693694", "message": "esn : python : Network : train_online : initial implementation\n", "proba": 8.53826441016281e-06} {"commit": "597e61b1d9e3907ee2ccc1bb5010ecbfe6f3c93a", "message": "Update Selenium IDE conversion tool\n", "proba": 2.949794861706323e-07} {"commit": "734ea902218f8d0946661cbc4322b258505e91d4", "message": "Promote the stack_ptr in interpreter loop\n\nSigned-off-by: Stefan Marr <46f1a0bd5592a2f9244ca321b129902a06b53e03@stefan-marr.de>\n", "proba": 6.289574798756803e-07} {"commit": "05088f5d619774e666a52e5d96d9f64820a311ce", "message": "Added price and vat setting for SupplyOrderItems on import\n", "proba": 1.2814932404126012e-07} {"commit": "b3a4a963ac01d4768453bffa5a102c1aa64f0721", "message": "Road User Trajectory Visualization for Bikes + Ped (#81)\n\n", "proba": 1.0686568430173793e-07} {"commit": "db2fe438a171f2cc1322b975d808cae18ff0f6fa", "message": "Improve merging of packages by removing duplicate resources.\n", "proba": 1.2446626840301178e-07} {"commit": "9e8ae80d2d2d12d27a1aaadf471fec730fbbba27", "message": "[ctml_writer] Direct error/debug messages to stderr\n\nSince stdout may be used for writing the actual output file, direct all error\nand debug messages to stderr, so that they can be shown to the user when\nctml_writer is invoked via ct2ctml_string.\n", "proba": 1.407896093041927e-07} {"commit": "05c6ec974301c0487b7206c54724bb22d741509b", "message": "Small change to HTTPError handling\n", "proba": 2.022287759473329e-07} {"commit": "b6208c1f9b6f0afca1dff40a66d2c915594b1946", "message": "Add exception hook to help diagnose server test errors in python3 gui mode\n", "proba": 1.9103917736629228e-07} {"commit": "bde944941aa74eb8b7bc1150366b8f7cfedff93c", "message": "fix test coverage\n", "proba": 1.5061439171404345e-06} {"commit": "826698c9894ce94c625718eb041ce817eb6ab5ef", "message": "Update config.dist.py", "proba": 1.7767979443306103e-06} {"commit": "eee08e6b0c7c6c95e4b01868702dd60088284ff4", "message": "cleaning up elphondb\n", "proba": 6.02972306751326e-07} {"commit": "90168f1afd58ac5100c126ed76a440d38549dbff", "message": "Cherry-pick utils.py from 679c564a\n", "proba": 2.2905994967459264e-07} {"commit": "bb5524f76354495512e744af22ad7b6fa8c445a4", "message": "Mark instances as unreachable if private_addressing is True. Do not\ntry to ping unreachable instances to verify connectivity.", "proba": 1.9254302685567382e-07} {"commit": "b90bf5124825f356e059c2be4a9e01b6e2c8909c", "message": "Fix JSON schema for params\n", "proba": 0.0001473059965064749} {"commit": "000545e006aceb8ed084d2b6170c683cc70d1586", "message": "otp: fix bug OATH-HOTP digits was always set to 6\n", "proba": 1.898596019600518e-05} {"commit": "a3637991991b7e346b52b9254a77dedbad720494", "message": "Fix convert reservation args part II\n", "proba": 4.5638009282811254e-07} {"commit": "88f6bfdf6e2c3a31fec18a69a4052d358acf09c9", "message": "The values are now rejoined for the string input field", "proba": 6.60218802295276e-07} {"commit": "c5bd2f942bdac98870c5fceab1baf6acedb21294", "message": "Remove all fits from a MultiVarLinReg object to allow pickling. They are restored during unpickling\n", "proba": 1.2324905185323587e-07} {"commit": "0416c8393df1cf661fd6a37ec8af9072334c619b", "message": "\u2705 fixed tests\n", "proba": 1.267067233357011e-07} {"commit": "4ea8e4823b68f6b4e2bc102f35af36ec2dfc45f2", "message": "Remove now-redundant exception logging\n", "proba": 1.8388551552561694e-06} {"commit": "511f58b941b2fde12702f7f7fcb81c511f5f4022", "message": "Changed message to the user on form not valid to tell him/her what the error was.\n", "proba": 1.186483586934628e-07} {"commit": "6e85f59615d306008de901a6f958b3952bbc9030", "message": "improved docstrings for intensity commands\n", "proba": 2.4944404231064254e-07} {"commit": "d5d6304a051c7d11c3ec73e5f311713f622ed55c", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "dda209e722454eabdbea5f7de83aad565f068d7e", "message": "Update __init__.py\n\nCorrected if-then logic", "proba": 3.378516703378409e-05} {"commit": "a5b270bb8885925ad0758489e2b80ee76e7bd302", "message": "Fix the fallback behavior of / and - on non-strings.\n\nThe default is to treat these like a single unit, so \"a\" - \"b\" produces\n\"a\"-\"b\". The code was neglecting to use String.unquoted, so the\nresulting string would have even more quotes around it, which was...\nincorrect.\n\nThis mostly had an effect on using CSS syntax like top/1px inside a\nvariable, where division is evaluated. The result was quoted, which\nchanged the semantics.\n", "proba": 0.00014952427591197193} {"commit": "5d33dc2ac003a6fe850b5ff6f1bfd79fa077ba98", "message": "Cache all responses for 28 days\n", "proba": 3.6806199204875156e-05} {"commit": "35dad451abcf54253a201934421b524875ff32e1", "message": "Raise exception on failure to get valid IP\n", "proba": 3.816160187852802e-07} {"commit": "0180d073fc7324b6f1244ca62c3c390138ef1a87", "message": "Change the style of test to permit more entries easily\n", "proba": 1.2205887855998299e-07} {"commit": "b37c390ed04d884bca182eec160f2627e0e52b71", "message": "Fixed docstring in plot funcs, cleaned up parsing of kwargs\n", "proba": 2.3254489178725635e-07} {"commit": "1bf8340d51f936b4e8e37ab58b7c27e4c45d11f1", "message": "Fixed database settings\n", "proba": 5.371504698814533e-07} {"commit": "059779eea6dac0cbc9fd9ce8ff964dfe6c188dad", "message": "gdb: Fix 'scylla ptr' reporting large object pages as free\n\nThe 'free' attribute is not updated for all pages belonging to a large\nobject, so we can't use it to determine if the page is allocated or\nnot. More reliable way is to check if it belongs to any free span.\nMessage-Id: \n", "proba": 1.2435467624527519e-06} {"commit": "65ac4c783af05976b6a76b6a53fa15ea755d05f9", "message": "Cleanup and update startup log message\n", "proba": 3.2621244372421643e-07} {"commit": "20c76513fb5f573e95ef54c68c7004f85a647266", "message": "Refactor models\n", "proba": 5.858616418663587e-07} {"commit": "640520c1f4f42e416f69bad743e4fbc925a2b6fa", "message": "removing comment\n\n", "proba": 3.7221852267066424e-07} {"commit": "2a0426ca7f5ac359948007a1a0df4da73d5c15e4", "message": "http://luc.lino-framework.org/blog/2016/0127.html\n", "proba": 1.292867750635196e-07} {"commit": "e47a5019f210c2970f39a8825817ae85996619d8", "message": "gdb: Add chunked_vector wrapper\n", "proba": 3.609286238770437e-07} {"commit": "0604413fc9292289dd17509d5936e3bdafab388d", "message": "Using regex matching because it's faster and simpler\n", "proba": 5.533821968128905e-05} {"commit": "fa072ef5b0467b7c098ff915cf75c8c680f543ad", "message": "Attempt to fix search\n", "proba": 2.5338022169307806e-06} {"commit": "f7a0516b82e321907a2ce99acfbf6cd4409ae3f9", "message": "Add useful __str__ methods to dm+d models with ids", "proba": 1.1897044714714866e-05} {"commit": "5d5f0ff3a9514e723497b7238f1c24a8baaf85e8", "message": "Specifying the number of places past the decimal point\n", "proba": 0.9499144554138184} {"commit": "a16cf1ce83dcfe1f42494d964f10679eb1f050fb", "message": "Remove now unused variable.\n", "proba": 1.3532995524201397e-07} {"commit": "5e290a45ae536f37068e85e31c1c68f4113d079d", "message": "that's why the database store was moved to the net manager: do not store if the status is not successful\n", "proba": 4.3499196181073785e-05} {"commit": "f1b8f4673f2d72856918f787bdcf3254b26d0211", "message": "Only have eeagent heartbeats run when interval >0\n", "proba": 2.7381599920772715e-07} {"commit": "62b7593b28804f6901becb5a0ff3536cdb6e8e41", "message": "Use an explicit for loop instead of 'yield from'.\n\n'yield from' is not supported by Python 2, which would make the plugin not\nworking on WeeChat that uses Python 2.\n", "proba": 3.859586286125705e-06} {"commit": "542f4ca22f01c3fce905bf816dce122e730e42d5", "message": "testing the POST\n", "proba": 2.965647354358225e-07} {"commit": "40949fc6e313899221b647e363e7dc9478365094", "message": "move intensity image building logic into it's own method\n", "proba": 5.798103188681125e-07} {"commit": "090232e8b8cb78a0bb107af4d01b2db649c50572", "message": "Minor doc change.\n", "proba": 1.3655717623350938e-07} {"commit": "54045b6e8f70e74d31549927b47acf6dce035695", "message": "view palete_printed bug\n", "proba": 1.3944200816240482e-07} {"commit": "6b290253c1acb88b872c17bb5e81d0486ac0e4f9", "message": "Fixing style errors.\n", "proba": 1.9865235856286745e-07} {"commit": "b01810e7d6f4549232baef124e7b526c941c4b4f", "message": "Fixed master\n", "proba": 5.219286549618118e-07} {"commit": "a3bf921a68f801fda3106e4257d068175b7842ec", "message": "TYPO FIXED\n", "proba": 1.2259473578524194e-06} {"commit": "5eced4c3521f88652f3aec7255d16071c05e072b", "message": "Removed sys.stderr from pprint, fixed nested loop r/r1 bug\n", "proba": 1.9282676078091754e-07} {"commit": "c2d28e797c948e1d3e28937a3d5d4917298ff0bf", "message": "ENH: added two internal, convenience methods '_scale_to_log_flag()' to convert from (e.g.) 'log' to 'True'; and '_clean_scale' to convert from (e.g.) 'LiN' to 'linear'.\n", "proba": 3.2055586984824913e-07} {"commit": "bc5b334b07dbe7cdec6a7995da39ce4827e45df7", "message": "Get settings from command-line arguments.\n", "proba": 1.3932650233527966e-07} {"commit": "2e2eb70663efa66532ee61dd9b3923751865cf06", "message": "Add ElasticQuery.timeout(timeout)\n", "proba": 5.273145688988734e-07} {"commit": "027c8d898fa9d3ab8ffbf8bedeeb49149c45e3b7", "message": "accept all 2XX HTTP response codes, not just 202\n\nthe webmention spec says 202 is recommended but not required.\n\nalso, on success, store response details in a new WebmentionSend.response attr.\n", "proba": 1.0150215246085281e-07} {"commit": "21cd79404a2e7ef105f293dc8d647deca351f10a", "message": "Refactoring.\n", "proba": 1.0347050647396827e-06} {"commit": "6b3aec149131cc3c9b6ab581a8bc3f2d99196d24", "message": "Don't use simplejson, use json\n", "proba": 8.587064257881138e-06} {"commit": "a19a196035546deee79e76f5b03c66f1624435ee", "message": "Protect running attribute\n", "proba": 5.179914523978368e-07} {"commit": "d877a490c3316b8a4ff62c00657d90cb93f72ca5", "message": "Deprecating coros.Queue and coros.Channel\n", "proba": 2.632624955367646e-06} {"commit": "c7d92c627f73b96d35204af9de5270f1e489448e", "message": " #1033 added test_smvRePartition\n", "proba": 1.2595830867212499e-07} {"commit": "20e2b2816c43cb6be186d8db4c718a618c251d88", "message": "link correto\n", "proba": 1.4481076959782513e-06} {"commit": "e1779d55bea9151b64157bf34589358943c02024", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "5d0ae302ca723ef5268bdb01f90275e347e76f62", "message": "Small tweak to view_ruptures_per_trt [skip CI]\n\n\nFormer-commit-id: 476fae034e7e97dd0c17e37c188b580e2a8b3142 [formerly 476fae034e7e97dd0c17e37c188b580e2a8b3142 [formerly a24022d615f2c5de4996b838deaddd18e3ba63e4]]\nFormer-commit-id: 07eeff5ec521c1ce686ddfaf33b7f1f665204b0c\nFormer-commit-id: e423231dba87ce787e82a27e0d4eb6ce7501798b", "proba": 6.210759124769538e-07} {"commit": "cae64570e63039c50fd9351e5c4a44ca7b10edb8", "message": "Enhanced govenrnace tests to verify Org global events are published\n", "proba": 1.0980716069752816e-07} {"commit": "23f0c72cf3ae56d87ee373463598b1e766737109", "message": "Support automatic height detection\n", "proba": 1.84662823699e-07} {"commit": "a447b5e9f2ef279f58f81502fdb65891fd56ec7a", "message": "updated file paths to reflect new structure\n", "proba": 2.5077596887967957e-07} {"commit": "2ecc9ef70b353ba3ed35c3c14216b51b41d80c19", "message": "fix x-nexe-error header\n", "proba": 4.38776896771742e-06} {"commit": "72584eaffd8339706527798714d4bb7df293adf7", "message": "Moved the authorization fields to a separate 'old' fieldset\n", "proba": 7.603126050526043e-06} {"commit": "402da3c959f8e8e7e881a7fc56e0da103eb61a0d", "message": "change\n", "proba": 5.156657061888836e-05} {"commit": "23ea81dabac183cea66859453b111ac98ed41e65", "message": "[svn r72] Changed the httpd.server() method to allow passing in the \"serv\" as a\nkeyword argument, so that code that wants to get access to the \"serv\"\nobject (e.g. to replay requests as CHTTP wants to do) can do so\neasily.\n\nThis should be a trivial change, with no possibilities of error *grin*\n", "proba": 1.2270136551251198e-07} {"commit": "4c4b1e6a4bde5edb9e11942245a21437e73fe6df", "message": "fix link creation\n", "proba": 2.686238929072715e-07} {"commit": "96d391f16c9417c76a00b37875125dbc9bed5f29", "message": "Added a view act_ruptures_by_src [skip CI]\n", "proba": 1.0522212789965124e-07} {"commit": "7c7b7316843c9ae20073878485e6d68a6813a756", "message": "remove useless rack checking code\n", "proba": 3.5707768120119e-07} {"commit": "ab1c0132adf5af6ac7a7ab73e436b60ba93465d4", "message": "Added scheduler end time for the test_governance.py test\n", "proba": 2.2058962656501535e-07} {"commit": "7608ad704d05b1298b0faad29e87675462eed7c3", "message": "Updated from Brython Server: 5/16/2017 2:23:04 PM", "proba": 1.0865918653735207e-07} {"commit": "1c68d2c362b24640bfda6348b1d4ccf525fe0238", "message": "'debug'\n", "proba": 3.780338738579303e-05} {"commit": "5127e3b77fc7dcde8bc372f934d38aa0439b81a1", "message": "we can sometimes get IDs from templates or redis in str format\n", "proba": 1.3017756828048732e-07} {"commit": "f84e1dd8a649d96d37add46460c16cc0224e9696", "message": "Fixed Absolute File Path Bug.\n", "proba": 1.170028767205622e-07} {"commit": "7f70130ca08c062d00a2a103b2d5439560337661", "message": "\u4ece WeChatUser \u79fb\u9664\u529f\u80fd\u53d8\u66f4\u7684\u4f01\u4e1a\u5fae\u4fe1 getuserinfo \u63a5\u53e3\n\nFixes #609\n", "proba": 1.0994107668693687e-07} {"commit": "27e9d03a1eea21111c5d87f32c11c221c18a0574", "message": "proxyquery: fix source handling for api chain\n", "proba": 6.843460482741648e-07} {"commit": "6ca6d61c824fcff58433728beb315aae65a49e72", "message": "Updated docstring\n", "proba": 9.301629120272992e-07} {"commit": "a28c896ef58e3dc7969758e8ceea45fa703886b0", "message": "No math.gamma(x) on 2.6\n", "proba": 0.001822312013246119} {"commit": "1f75ecb06a8bb463648e3b7689de043f0bab0d16", "message": "Remove unneeded users.json fixtures from readout tests.\n", "proba": 1.173264649878547e-07} {"commit": "30e30dafeb885f7048aeb4814c7b66f7cf47b3fc", "message": "Fixed gmvs_to_hazard [skip hazardlib]\n\n\nFormer-commit-id: 52b889cad85381eca7ad6710a3823e770b48b522", "proba": 3.052639954148617e-07} {"commit": "eb1ac2935cf407b428361946307111875fbb42a3", "message": "added new server_choice code", "proba": 3.6317086937742715e-07} {"commit": "2512ed4062054347d7979206262d26405a81e0c8", "message": "Fixed a bug saving the diffing results\n\nBUG: There was a bug saving the diffing results where the column 'description' was at the wrong location.\n", "proba": 2.3408681954606436e-05} {"commit": "16f42e9f353ce580b55727321981d1af8769bfb1", "message": "Padding by 8% (RCE-1306)\n", "proba": 1.111664005293278e-07} {"commit": "e84ba8f7e09512c79e85c0c3df373e5f6b05b4bd", "message": "Removing the mapping of invalid search criteria, because now it'll always respond with invalid request data format if there's invalid search criteria.\n", "proba": 5.819442208121473e-07} {"commit": "01c1466487a9802f4c3d3c21390587ae6d3a7122", "message": "Fix bug in tasks.sync_notes\n", "proba": 2.0759298422490247e-05} {"commit": "91ea88e24490f237287cd9ebac1b60e549c8e45b", "message": "Fix 'mel rotomap-edit' startup crash\n\nFix the bug introduced in 7cf45ae77c972a29b4d048afdb1dccb3b2fd62ce,\nwhere the image paths were accidentally appended to themselves, meaning\nthat no images were loaded. This resulted in a crash on startup of\n'mel rotomap-edit'.\n", "proba": 1.5531526287304587e-07} {"commit": "6b968aae8e86ce1588746132fb7749676a2c85a9", "message": "tools: mapshow added function to show two maps in one plot.\n", "proba": 1.0061049948717482e-07} {"commit": "efdf4a4898cc3b5217ac5e45e75a74e19eee95d4", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "79b2e5724e4f6d006b36a0abe31508eea12e2a64", "message": "bin.fj_update: fixed exception handling\n", "proba": 2.308387365701492e-06} {"commit": "c688921b5dbfaa326792df9ddc11320dfd6822bc", "message": "Python 2.6 doesn't support collections.OrderedDict, so use Django's utils class for this.\n", "proba": 1.0646935777458566e-07} {"commit": "efa02b79d30e070133c18ea1d3dd2ba3739b5923", "message": "Significantly improve on the threadpooling application model\n", "proba": 1.195100622908285e-07} {"commit": "eb50ecf07ab7c9cd23ed253a2120eca320303c0a", "message": "18n: Cleanup strings to be translated in you_were_just_subscribed_message.\n", "proba": 1.0469202749163742e-07} {"commit": "155c953f7bf8590b4a11547369bee29baa5ea5f6", "message": "Fix typo.\n", "proba": 0.0016038167523220181} {"commit": "8da8c4514f397ffeb69f71caa39469c2e99f83fe", "message": "Adds db password management in smart_manager script\n", "proba": 4.843956844524655e-07} {"commit": "803fc876e50d4f64b89807fbae0fe0ac31ea39ac", "message": "checking for ogs in acls\n", "proba": 1.6549945769384067e-07} {"commit": "aabc4bc60f0c8b6db21453dd6fad387773b18e55", "message": "Fix a print\n\n\nFormer-commit-id: a69b00cee256a7ef5d414e92e59fd3402ecc7006 [formerly a69b00cee256a7ef5d414e92e59fd3402ecc7006 [formerly 9f72ffef5ebc303101e5ed96a70e357340229b2f]]\nFormer-commit-id: b347a8009f4ce1c70c7e550bdfe2ec8070a7b85e\nFormer-commit-id: 8e2a57879055ca63a8e75a1269652a64614d6edd", "proba": 0.9999994039535522} {"commit": "be06ba33aff25995c9323e251003c9bea09aa9de", "message": "update UI\n", "proba": 7.141350693018467e-07} {"commit": "6247dfcf5547dfc2f7192fbfd79a572336514b3d", "message": "Add css error that comes from bootstrap\n", "proba": 9.99389726530353e-07} {"commit": "897aac78b2ef4627dc20e230d8df8f57ba7208ea", "message": "Added flt_ and jpt_ to CMP_REPS\n", "proba": 2.0339236073141365e-07} {"commit": "df8848beffeb952f8da034c13d22245ce123f576", "message": "fix 677: Error on enum type during manage.py migrations\n", "proba": 1.8023069969785865e-07} {"commit": "c64b54597d5547fa12737b495db3be714ccaafd2", "message": "Update error messages\n", "proba": 7.64549213272403e-07} {"commit": "f02df3850bdd69058b233d9b09b71f0c6c0a2584", "message": "Disable remote activation of camera on --no-camera\n\nPreviously, the server could activate the camera with a VIDON command, even if the --no-camera flag was initially given.\r\n\r\nNow, the camera and microphone state is stored in camera_on and mic_on, while the command line arguments are not modified.", "proba": 1.2248402470049768e-07} {"commit": "c916f4c379fe2b7035da46bc194f010e1795f9ef", "message": "[cool-bot] Remove some debug.\n", "proba": 1.1568982927201432e-07} {"commit": "1427b2c83b34def6ae75d637dccd71d452c9ed89", "message": "Added a signal class to handle updates between the TokenAttrDict and Nomenclate objects so the Nomenclate will always populate with the TokenAttrs from the TokenAttrDict automatically so we can access them and set them with dot notation ease of user interaction. The signal will fire and call Nomenclate.update_token_attributes to autopopulate.\n", "proba": 1.0587964283104156e-07} {"commit": "ce2fa46d3ab855932ed3b095a3aef10d9db36ecc", "message": "Fix description change in help command\n", "proba": 3.0172937840688974e-05} {"commit": "cd762e1c2d9c7b763530335ae832e99f598e390b", "message": "Checks against illegal membership status and type.\n", "proba": 1.0670498085119107e-07} {"commit": "8b69b3af8b7ed9dcbd00f2b22a47828627dc7c78", "message": "fix setup", "proba": 7.224476235023758e-07} {"commit": "2a13f4d21085228a1ef615eec8a3e42110c315d3", "message": "Make test pass\n", "proba": 0.00022518285550177097} {"commit": "18636a4867bce82335df2f8e2d9fec7ef4446140", "message": "Small cleanup\n\n\nFormer-commit-id: a90da78fa5ff7608948557b2ba5ed79c3ae928a1 [formerly a90da78fa5ff7608948557b2ba5ed79c3ae928a1 [formerly 12a4e6a1f4b7249e62e30107301051dd3895b32b]]\nFormer-commit-id: 09496ce0e51c39baa43e467f1324424becf1caff\nFormer-commit-id: 0e82833b2ec3b45f1fa2fd488a4ae5e6f01d9904", "proba": 1.750374167386326e-06} {"commit": "f6e93144a2471ef22883f4db935a499463a76824", "message": "fix sytanx errors", "proba": 3.0966246413299814e-05} {"commit": "0fba56f1463c985d4863ed1851db1c0a1f5dacb9", "message": "add promo button\n", "proba": 2.3903297119431954e-07} {"commit": "2768d80616a57c6a01411c7c8217bfa47321acc0", "message": "More pythonic formatting for readability\n", "proba": 1.2233005008965847e-07} {"commit": "f6b583f8fd84d82b24a1c56212c4a365cc9cc292", "message": "Have our base quickstart tester not do crazy things with our path\n", "proba": 1.1275506039964966e-07} {"commit": "15ee6e1d8a9ff5fbbe2c4d2894617e1c195dd471", "message": "Fixed unittest (#1752)\n", "proba": 1.204508350838296e-07} {"commit": "3b564cdd4adbf3185d2f18ec6eedbf4b87057cf5", "message": "Add virus fixture to conftest\n\n", "proba": 4.019513539788022e-07} {"commit": "6f4ab10232450bee7a8debb502ddada7e8121b9c", "message": "[0.3] Updated example manage.py\n", "proba": 2.0862351846062666e-07} {"commit": "210ed7d6df22fd2cc74b7fa39da7104f45b97784", "message": "Dont panic and log exception if bb key doesnt exist\n", "proba": 1.4628331257426908e-07} {"commit": "ee6f4d5f07e7b193020cfeef07aeb4acde756426", "message": "Updated script\n", "proba": 6.253843594095088e-07} {"commit": "80b5535c84bd2d840fb9e3c20176ef4f72e8f720", "message": "Python 2.7 fix", "proba": 9.526838766760193e-06} {"commit": "847d6deab6c47b9de10dbe9b58fdc774e1ea13cb", "message": "Separate get data schema logic\n", "proba": 5.945809789409395e-06} {"commit": "d622164ae7601489dff7e57523cc7e3e9ffa04d2", "message": "Suppress warnings when running test suite", "proba": 6.899108484503813e-07} {"commit": "e2339ae0945dd9374e9cb7c9cc4434da675d25ab", "message": "Less logging [skip CI]\n", "proba": 1.1696605639599511e-07} {"commit": "c3bfcffdaa17044d4995965c6416b8d27c9d70e8", "message": "MNT: Clean up docstrings.\n\nThis is mainly replacing array_like in parameter documentation with\npint.Quantity, since that's accurate. It also cleans up a bunch of\nPyCharm typing messages.\n", "proba": 1.1745050443323635e-07} {"commit": "d6f7cc6090715b1052462542a5fe4166ad41feb5", "message": "fixing bad merge\n", "proba": 1.0274678743371624e-06} {"commit": "d0146981aca3b44290fdb804989bb52bde34af8b", "message": "[clock] Add error messages when willie's db is not set up\n", "proba": 2.359190034439962e-07} {"commit": "fe236790e4d90a75e8d0c437b321f3285e628bc0", "message": "Moved manifest file writing to cuffmerge method\n", "proba": 1.9503964665545936e-07} {"commit": "28916476f41485aa25e7442c40b069d5c174a4b4", "message": "added align_flag to cfgparse() call\n", "proba": 2.9739825890828797e-07} {"commit": "e676ef4a967705bc8a4e844219c766764029957f", "message": "Make redirects specifically exit handler after redirect.\n", "proba": 1.2120929682168935e-07} {"commit": "769783bc46ecd4b8def05e3cf664a3844aa6dec5", "message": "Use a regex to parse the version\n", "proba": 1.0456870768393856e-05} {"commit": "791e3f95818c813316d3a5db33a1032c3d68acb2", "message": "documentation\n", "proba": 8.078399105215794e-07} {"commit": "8b2827a87927e60cefb83f273b58d9aba9f9600d", "message": "tests: improve error representation for doctests with cython\n", "proba": 1.9045016586005659e-07} {"commit": "63bfe48b0783e1d3c6c36767e7393e7feaeec36e", "message": "hint, for precedence rules and such\n", "proba": 1.4424136907109641e-07} {"commit": "9d144461a7a7136eacd6062f73f187e0995d26c2", "message": "No explicit paths for example project.\n", "proba": 1.3135593235347187e-07} {"commit": "6cb72513fb135015d98c62931ddd3bb9b5f78448", "message": "Managers can now delete wiki pages, too\n", "proba": 1.305520385130876e-07} {"commit": "050b4d01b8dd44492ae52caeaceb964ec0dacb49", "message": "put all message of tabcreatedb.py into debug_print.\n\nFirst time, buildable :)\n", "proba": 1.204283250899607e-07} {"commit": "ed74c8f8cae53ee81d196ec85ede70597fd2d571", "message": "Troubleshoot diff_drv.py\n", "proba": 3.8962352846283466e-06} {"commit": "c2bf23229b07fd5ea7abdb22ad20a1e87a62818e", "message": "added roles to admin view\n", "proba": 1.971060470395969e-07} {"commit": "9089447ef919b242590ded054d85aefe0361f74e", "message": "Update ventilation_air_flows_detailed.py\n", "proba": 4.825909627470537e-07} {"commit": "87f6c9b4a0656adf4b8158c2244b7b3ca98e6dd9", "message": "Fixed bug in insured_losses\n", "proba": 2.829230538736738e-07} {"commit": "f4498880ad8bd1b30f6439e82ac906034927b3df", "message": "Add local memcache config\n", "proba": 4.1170511622112826e-07} {"commit": "3a955de9b884923699fc738529c3260192da2c72", "message": "Temporarily disable test that is failing on travis-ci\n", "proba": 2.9457495998030936e-07} {"commit": "397253b4d993a1e3485bb96e0b17c57d948013b9", "message": "fix strip call\n", "proba": 3.4771065315908345e-07} {"commit": "554cab441ce0d1648b86ac8ce5fe91f65e404543", "message": "Switch MonitorHost to use return codes from record_ function\n", "proba": 2.1191735299908032e-07} {"commit": "fba5e75355acdb5b20fcdf2c61763b87db30aa62", "message": "Added print statements to fields\n", "proba": 1.635315527437342e-07} {"commit": "900de7c14607fbe2936fa682d03747916337f075", "message": "Fix the reactor_pytest fixture.\n", "proba": 1.8055911255032697e-07} {"commit": "cba64687fbd44989e6529d320e536ca5a5777dd7", "message": "[services/router_services] fixed typo in _startup\n\nSigned-off-by: Robert Wuttke <12e9293ec6b30c7fa8a0926af42807e929c1684f@benocs.com>\n", "proba": 1.2473471144858195e-07} {"commit": "8dddafe0ddfcca04a5293033dc8f81dae89e2e96", "message": "Update cli.py\n\nand issue #61", "proba": 1.453464761880241e-07} {"commit": "3850faa1930266910b158d67f92daab5394dc084", "message": "method renamed\n", "proba": 4.845249804930063e-06} {"commit": "9b28cd3fbd19bdf8a492ae22ae7613ec4ca89fa6", "message": "mAiLab0002 sample output updated.\n", "proba": 1.1870924510049008e-07} {"commit": "bb42488926a23c5cc17399a4333a3f59129846e5", "message": "minor weather.com minor\n\nstill under construction\n", "proba": 3.253419151860726e-07} {"commit": "bcb0d5b3c0a90db3eb1e70b27185c4f511e9ab57", "message": "Add relu6 as alias to clipped_relu\n", "proba": 3.9824638520258304e-07} {"commit": "25e1b577f0da10648794a5e992302a761f5968c0", "message": "Better process filtering\n\n\nFormer-commit-id: 0e35224a8a8009e61e9aeb2b14af7f13b2004c8d", "proba": 2.274351027153898e-05} {"commit": "7059622c5787f06027ae2cf978beb69df4e5cabd", "message": "Send googler profiling data.\n\nBUG=\nTEST=\n\nReview URL: http://codereview.chromium.org/6904055\n\ngit-svn-id: bd64dd6fa6f3f0ed0c0666d1018379882b742947@83507 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 4.60767353160918e-07} {"commit": "3c46df9d15ffb9492f3b2f4b6dfdab8f6a7a0b7c", "message": "bump version number\n", "proba": 3.5206583106628386e-06} {"commit": "59ee813a82fe44cde80c41fad90b25d4f78548a8", "message": "[IMP] fields: clean up comparisons to `False`\n", "proba": 9.170136036118492e-05} {"commit": "144749ddc131d5d88ae32e58c3723b3d0124770b", "message": "helpful message when there's nothing to delete\n", "proba": 2.936417899945809e-07} {"commit": "01d4279b40eb9e3029f857bf9d81d66d0314532d", "message": "Bump version to 1.5.1\n", "proba": 3.680104612158175e-07} {"commit": "e53f4321c681c573821660221b36673694bec083", "message": "added saving of neural network\n", "proba": 2.0962347946351656e-07} {"commit": "6528484122352328a6159241fcd0d570d7d50746", "message": "Don't mess up with sys.path;\n\nUse from sippy.XXX import YYY instead of from XXX import YYY.\n", "proba": 1.288722870640413e-07} {"commit": "a4840a0ee4731133fed57e9d753f76314db7bca3", "message": "more code fixing for test_common\n", "proba": 1.3492582695562305e-07} {"commit": "314a57606bbfdf45eb221f556338f7aaaa9a954b", "message": "changed default tmin/tmax for Fft\n", "proba": 3.4220533962070476e-07} {"commit": "08ec831752a4a9f31e23671c200c7655195d31ec", "message": ":hammer: use u for unicode convertion and :microscope: log errors from pyfilesystem2\n", "proba": 2.3360091461199772e-07} {"commit": "7ac68e0d6e88ff091567496b4ed25b605b08b638", "message": "Bumped version number for release.\n", "proba": 1.1049669979001919e-07} {"commit": "161faf3cdf7396b7d0f8c16686a60765739796a2", "message": "Fixing url for tldr\n", "proba": 1.5744653865112923e-06} {"commit": "125acf6d250965c4eb57f10f3894e620237b8f46", "message": "Added Tests\n", "proba": 1.5069657877120335e-07} {"commit": "277e009efad7355801eaffad9226b5188620b329", "message": "added better qr code error message\n", "proba": 2.1229095636954298e-07} {"commit": "24fdfb69e589260b12791e7dbaaf78a2b38143b1", "message": "Added a new method to Dispatch: `ord'\n\nIt returns the ordinal value of the first character in the given string.\n", "proba": 2.41162894099034e-07} {"commit": "d7383c208856067969ae537de36519ae9ffb8080", "message": ":rocket: deploy lr decay\n", "proba": 6.21943627265864e-07} {"commit": "4ce1302be92c59bab6ffecd2995133d5bffdb2cb", "message": "Add option to create change request from project alias email\n", "proba": 2.764010389455507e-07} {"commit": "312b89139560702b52eaa32788be6bc8a9743e55", "message": "HYD-2666 - chroma-diagnostics could collect /etc/hosts\n\nAdded cat /etc/hosts to diagnostics\n\nChange-Id: I705f8b4c55b754fba873f569f227ec0c3ab40a2d\n", "proba": 7.519341238548805e-07} {"commit": "5c9dd9d29f544e78ed4c278d92c19952793a1df9", "message": "TracAutocompleteUsersPlugin 0.4.6dev: Fix error editing ticket comment\n\nThe issue can also occur on misconfigured `[autocomplete]`\n`fields` and/or `multi_fields` option.\n\nIssue reported by Massimo. Patch by Jun Omae.\n\nFixes #13577.\n\n\ngit-svn-id: 8c76e72321a2e88c2f6f326e5e26de11e8e8aae8@17419 7322e99d-02ea-0310-aa39-e9a107903beb\n", "proba": 1.9511551272444194e-06} {"commit": "ad65e1300b7f912a8bf5d0de2ec3ebd21778b829", "message": "RT-26\n", "proba": 1.8568265147678176e-07} {"commit": "5f693678b947e1c8a7f56c56b56a680a59e03bcb", "message": "operating_unit 14.0.1.0.4\n", "proba": 1.3283795851748437e-05} {"commit": "9f09146334e65c6c59dce8489c0b24e8f82f1caa", "message": "Staff members can see post preview clicking in \"view on site\"\n", "proba": 1.025688476374853e-07} {"commit": "e186087ddce5ef92d5df936ff341e819b29bc576", "message": "Add first flax equivalence test.\n\nFor now import from flax. Later copy implementation as flax/optim will be deleted.\n\nPiperOrigin-RevId: 364526225\n", "proba": 1.3308378754572914e-07} {"commit": "5c27ebd8e69802cce4afe51b917df233dcf4d972", "message": "Add D3DCompiler_46.dll to ignore list\nReview URL: https://codereview.chromium.org/12217044\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@181006 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 4.5989898467269086e-07} {"commit": "8753e8a5e1bbc0f64c20b89aae68e52bbfe01af6", "message": "bugfix\n", "proba": 8.478961035507382e-07} {"commit": "a93d169fc56e52d761ac9a46fc05e936b46a3653", "message": "Update skrf/vectorFitting.py\r\n\r\nRemove debug tools\n\nCo-authored-by: Julien Hillairet <3cbbad5671816685da2cca3d9f220366f5d62d7d@gmail.com>", "proba": 1.1571786018294006e-07} {"commit": "46a6656ae1841841ec97c7e583f3595d737bef45", "message": "Update preprocessing.py (#1068)\n\n", "proba": 1.3125587372542213e-07} {"commit": "91a9a5ae74dc16469dfe17553fa1a84c3a11b6ac", "message": "svg: highlight active latches and shifts\n", "proba": 1.8384818645245105e-07} {"commit": "0e8efc782ebb1296c356b96f5236a21f77168a71", "message": "Removed loop for testmatrix H\n", "proba": 2.087875259348948e-07} {"commit": "bb63be9b24e7cc7d1f215db25c6cd5f42d94b0ec", "message": "andrew.tao's fix for CIFARDataProvider.", "proba": 1.1171436398171863e-07} {"commit": "57237bc8a96f6ace9382f3e959b10a69beb784ff", "message": "Fixed test_rpmbuild_defines to deal with dvers used as keys\n", "proba": 1.6930108870383265e-07} {"commit": "8ef11bf983705540973badb40f7daf5a14c1173a", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "be3302087a09342f6e5b44834d2d9647fa1a6f44", "message": "Optimized imports, redirected most output to stderr\n", "proba": 1.0096207461174345e-06} {"commit": "35f4b330a8b6c69dc2050152344a3e8805e3ee73", "message": "Fixes passivity assessment for unbounded violations.\n", "proba": 1.1417277789860236e-07} {"commit": "4ea4e95b68b743541f98aa6fd994f2517208c301", "message": "Fix crash when image mod is the None literal\n", "proba": 0.0012837114045396447} {"commit": "cf07d8d7dd4449cae983a6a038fa8fabaa990f2a", "message": "switch on/off alerts\n", "proba": 2.1335154087864794e-06} {"commit": "5d80f5a368975802101cae9ea587f4c95ed4b721", "message": "small mod to twitter influencers\n", "proba": 1.3794054609661544e-07} {"commit": "02661220279e95ea922971d8cb3777334ade0c22", "message": "add slackclient requests session subclass, update methods to use\n", "proba": 1.5981207468485081e-07} {"commit": "10d70f14ec6abf76b1a41e4fb4269dc9d5c49459", "message": "WIP: edsio\n", "proba": 2.203165223590986e-07} {"commit": "7369e5ac3778998bad76d332bda469ed85ac634d", "message": "Fix bug when reporting format parse failure\n", "proba": 1.129005909206171e-06} {"commit": "9b5269638706b15dda2191229d5581c7734603cc", "message": "feat(Manager): Allow configuration of API throttling\n", "proba": 5.045446869189618e-07} {"commit": "c8cef344ae061f2bdc6e230745d90b9e55807dba", "message": "Fixes path arguments to the test command on Windows. When pytest.main() is passed the arguments as it string, it runs that string through shlex.split(). However, it does not use the 'posix' argument to shlex--or more specifically it doesn't set it to false for Windows as I did here. That causes Windows paths to be mangled. So we can fix that on our end.\n", "proba": 1.9192430045222864e-07} {"commit": "23774e7beba2e4973493c243c423044b561beffd", "message": "adding better python 3 compatibility when it comes to unicode\n", "proba": 4.1589845523049007e-07} {"commit": "8fcd086ea1bda0e607466c65c02a8d91398aaee8", "message": "\"revert\" commit that adds back the \"old\" version - this will allow us to\ndeploy _now_ with something that can use both the old and new style\nservices\n", "proba": 2.1682367901121324e-07} {"commit": "ceec03352e812c7649011decb612adb6fd979e64", "message": "add sum action in get_mrg method (need tests!)\n", "proba": 1.1528738497190716e-07} {"commit": "806a4bbe96d11fc755d64578fdd0676b2fc704fe", "message": "ALMA selection dropboxes now supported (band, polarization)\n", "proba": 1.0754823875913644e-07} {"commit": "423075cabeaf996426d1b46e9a4424e193965cf9", "message": "Refactor printing module - step 8\n\nChange the grid and graticule rendering methods names\nGive some flexibility around the div unit for the scale bar\nReplace a few integer divisions by float divisions\nAdd comments on hardcoded design\n\nIMPORTANT: This commit changes the API\n", "proba": 4.3789972892227524e-07} {"commit": "705dd1f2ae9caa980200359ad0ef83616631a24a", "message": "changing version number in deprecation [skip ci]", "proba": 1.2069715182860818e-07} {"commit": "cdf323132af4b0fb09388e59d29e345a4b3355ab", "message": "removing unnecessary merge operations\n", "proba": 1.762536953719973e-06} {"commit": "d8a99114e131038b57ae98832788417cbfc1c38d", "message": "updated delete method\n", "proba": 7.872208129811042e-07} {"commit": "904d3411e69955e7804187a69adfde8fa3768f64", "message": "lines reordered.\n", "proba": 1.4143327575766307e-07} {"commit": "c144c5ac8f27db938f8ecd6a5f5fbabc3e63d4c3", "message": "removed not necessary exception\n", "proba": 2.5432475013076328e-05} {"commit": "6a3076823624cbe197ed86a4d7e07abcfa35519b", "message": "fix duplicates\n", "proba": 0.9999994039535522} {"commit": "c6c6389c53d9112449df2e501b769f3938b13f11", "message": "a few documentation updates and organization things\n", "proba": 1.252199126611231e-07} {"commit": "4604c6d49200fb29800f7d263abe2268b2110c0f", "message": "Add hashtag clonning\n", "proba": 3.7653462641173974e-05} {"commit": "8510996def17065a1afa1ebc91afe3661774b7e5", "message": "auditlog - Migrate 'AuditlogRule.create' and 'AuditlogRule.write' methods to the new API\n", "proba": 1.4161669525947218e-07} {"commit": "92c60a6cda165be7e610d04c902f555542f9217b", "message": "resolved pr issues. tested all routes with good and bad input\n", "proba": 0.9999157190322876} {"commit": "367e760bc49045dd3460122392557089f052d802", "message": "create mmap functin\n", "proba": 2.3897925984783797e-06} {"commit": "fc29aa2e03d731b6337930052253d4a0052e8c57", "message": "Modify input keyword args.\n", "proba": 2.199493422949672e-07} {"commit": "758824f78b4f70ae1789d1b2b9679ac1bd7607db", "message": "redundant\n", "proba": 0.0027025972958654165} {"commit": "a46f6ee4686c559389fc24e8943dbe27b12288c5", "message": "Fix get_wiring_endpoint of IOperatorTesters\n", "proba": 1.1516973472680547e-06} {"commit": "b54d7b8079bf414b1fe79061b33e41c6350707d6", "message": "use integer instead of string\n", "proba": 0.027485555037856102} {"commit": "c01c691761de3b4c976a68865905fd981ea4c165", "message": "handle range/xrange\n", "proba": 4.767157406604383e-06} {"commit": "699a1fb154e09b9f0be5020b88b0794c38608391", "message": "Added a warning to serial_lcd_0 driver", "proba": 1.780890244162947e-07} {"commit": "bc1d582a2a74db266153c70cef482e8df6e7526b", "message": "Extract user when set as user:group in container configuration.\n", "proba": 1.2582120234583272e-07} {"commit": "3f9f25bc14f82d4bad82e944f33d00a5e19d950a", "message": "dpa update subs ignores publish state for self subs\n", "proba": 1.5636243233529967e-07} {"commit": "d04cbf93e8c606f7b22500f973463c0e106482df", "message": "Remove imports we're not using any more\n", "proba": 1.1388797105382764e-07} {"commit": "a704a9f51086632ad8294583710189c283961123", "message": "app_has_tasks() has minimum_tasks, app_has_exact_tasks() has expected_tasks\n", "proba": 0.00043618527706712484} {"commit": "ad8b2dfa081bb4617252c3d0434de071de921b90", "message": "Value conversion for clients property.\n", "proba": 1.1871468075241864e-07} {"commit": "0a0cb19932df25ba2b8adf4b303595edf349dbc7", "message": "Fix some imports after refactoring\n", "proba": 1.6895921362447552e-05} {"commit": "642474e7f1b42c0b314f053edb9d73b9e2c507b1", "message": "Blocked MESA driver autoselection in OpenCL\n", "proba": 2.3484039957111236e-07} {"commit": "c00f15407fa3809530a2a6cfc619c3986745663c", "message": "autovpn_tunnel_count: Param \"-n\" now works", "proba": 3.359915581313544e-07} {"commit": "2a8973ec424b059c02584d872227583e3a4f4723", "message": "Update batches accessor call in cmfd.py\n", "proba": 2.981277020808193e-07} {"commit": "55864443006eaf583d9889c83c1d3b1f962fe26d", "message": "tests: add test cases for no trivial header fields\n\nThis shows the evidence of a bug in cli remainder processing.\n", "proba": 1.0447978127103852e-07} {"commit": "7e96dfc256e4716f121aa8f6b08a2cb4e7f3b187", "message": "Fix acid to affect armor.\n", "proba": 1.508820872686556e-07} {"commit": "c22ca181c7f185bfd3766bcee99bb0f9f6a2582a", "message": "fixed tut7.py nogui\n", "proba": 4.7169055505946744e-07} {"commit": "c2a79d8cbbb174530991d8b59578169ee9b2be44", "message": "use absolute paths for external scripts in Spidermonkey wrapper\n", "proba": 2.486294192749483e-07} {"commit": "a1b166b5026a549525fd9fd4e754845841e37dbb", "message": "Fix axis labels\n", "proba": 3.884922534780344e-06} {"commit": "331a1adf1014fd2b8bee618d55f6bbb353405a45", "message": "removed print\n", "proba": 1.9256820451118983e-05} {"commit": "bb8481642be5e229b8c33e518dc6168bedb4d5df", "message": "Finalized draw_l.py file\n\nChanged motor speed to fit entire grid\n", "proba": 2.21297597136072e-07} {"commit": "caed4b9076f27fac8fbf47d5ea6a73fbc9bc2fa6", "message": "If z not passed to Polygon init, set it to 0.\n", "proba": 1.2341241983904183e-07} {"commit": "d22a8d55c80038986c0453449f8fbcffac559375", "message": "Adding a crucial line to the latex example.\n", "proba": 1.3692439893020492e-07} {"commit": "47454a7e4f46cca94caa4210e73ee5c59e1d8ed1", "message": "Use pipes.quote when displaying command (#848)\n\n", "proba": 1.4714127871684468e-07} {"commit": "2271131d5c2794eeba256a9d9547fa925f7bdf73", "message": "bump __version__\n", "proba": 1.6878060705494136e-05} {"commit": "9704110b42c43d2ea550febcc22493f08fe1b411", "message": "speed up receive of large payloads\n", "proba": 1.7560093112933828e-07} {"commit": "653ff3d700c25f3d0fcb77b8b6a8a37a7cdd9c20", "message": "add CORS to /stats endpoint as well\n", "proba": 1.7018363962506555e-07} {"commit": "22bb3c4b26f560bac3cb6bb68aedb4524ffee6ec", "message": "Added rounding to 0 when using the character indexes\n", "proba": 2.3956084760357044e-07} {"commit": "d909d5c662dfadd3862cd79fccdc5a83f1895c51", "message": "Move proxy calls up\n", "proba": 4.886839519713249e-07} {"commit": "82a19ff2bca7493d5a4490c05ac4511f60ee8385", "message": "implemented compat.install\n", "proba": 2.2156082195579074e-06} {"commit": "85a86e91301c19c458aebc31cb64427fbf214106", "message": "Internal.\n\nPiperOrigin-RevId: 459297018\n", "proba": 1.035242803482106e-05} {"commit": "e32d65554ebbc1acb53be4028bf19e284f9c23a6", "message": "Fixes more encoding issues?\n", "proba": 1.371010540651696e-07} {"commit": "7f40cd96874cd39c0d2e066a6dcfcc3bd1929476", "message": "limbs: fix FK parenting ctrls\n\n", "proba": 3.565196675481275e-05} {"commit": "eacef7757efe0704850c2c90ac58e4258139aa27", "message": "fixing spider host's main loop unit tests\n", "proba": 2.1039095088326576e-07} {"commit": "70a2b1ab6b6424dc1f991fd8ace5655b3b453f5a", "message": "Increase sleep in test_delay\n\nThis fixes a race condition\n\nChange-Id: I52d21f21ec74bf93d82ef0f977ec8b9340daa0a4\n", "proba": 1.4807339539402165e-05} {"commit": "21e463f6704900e91dbbdb5972d56d4978116ddb", "message": "presort predictions before caching them\n\nThis change uses twice as much cache memory but avoids repeated sorting\nof submissions by probability value.\n", "proba": 1.0566358099595163e-07} {"commit": "2f1a88b926382ddbae31e5b24fa649c1a67a98ce", "message": "Exclude dict-based data from positional arguments\n\nSigned-off-by: Byron Ruth \n", "proba": 6.741618108208058e-07} {"commit": "b8e91d303aca61c313ecfc168c31f9233e76b5c9", "message": "Add handling for error where host test name is not defined in test case preamble\n", "proba": 3.89462741168245e-07} {"commit": "1280ee5658c4770fc4927f7c933a721eb61365e4", "message": "- expose request object for all websocket messgaes\n- cleanup\n", "proba": 2.9362780651354115e-07} {"commit": "7aceb9ff080861c1c8b3a08957a57190bebbaa7d", "message": "no suffix to samtools sort\n", "proba": 0.001095285639166832} {"commit": "c037ba49a0980070a8fb54b3d3acb0810a2ef028", "message": "i18n: Tag push notification subtitles for translation.\n", "proba": 1.0530605010217187e-07} {"commit": "4b63f16f7bb43919e26d4cbe195a0ebe1fa5109d", "message": "updated oslo.i18n to new namespace oslo_i18n\n", "proba": 3.7884382209085743e-07} {"commit": "7d3e31deb9dc7a787c4b832dcf030478a9d4ab27", "message": "Fix GUI progress display for download-resuming\n", "proba": 1.58895687718541e-07} {"commit": "e913081dab48a7a4e9cab32b0e7c39e5c6266f01", "message": "0.3.0\n", "proba": 0.0001822802150854841} {"commit": "9f46bcca5d5eb2a4232163da02ca25b499f9a696", "message": "add fractional corrections to mc energy kernel\n", "proba": 2.6441514364705654e-06} {"commit": "4c68058b5df40186425ff6310d8062fa8fed581c", "message": "open meeting-tab when editing meeting\n", "proba": 5.290801254886901e-07} {"commit": "93d88a558d1e5b43e4189a5aa0980bc6e8f1c536", "message": "Log when create project.\n", "proba": 1.3214990701726492e-07} {"commit": "35d3284a1242bdeb6ea3aec128deb92b3138106b", "message": "Add the ability to specify the Cakefile parent directory.\n", "proba": 1.1771896168966123e-07} {"commit": "13b2bd35e6dbb19a1b3a6971d00ae12cf90feb43", "message": "Allow flask_restful aborter to be plugged into flask-principal\n", "proba": 2.940876697721251e-07} {"commit": "6865af127aa90d01089cb208391480f8d297e365", "message": "absolute_import added\n\n--HG--\nbranch : app-removal\n", "proba": 3.2133328886629897e-07} {"commit": "4d4236f3cf6ca236e4518caa4ee095e0a3fee438", "message": "Don\u2019t write files all at once.\n", "proba": 1.0730113331192115e-07} {"commit": "cd25fd1bd40a98886b92f5e3b357ee0ab2796c7b", "message": "add /query route, with plain text for mongo\n", "proba": 3.253937279623642e-07} {"commit": "a926d32d024bee94046b88bf84f9ebe847b6ccf1", "message": "Put command to be run to \"args\", like elsewhere\n", "proba": 2.8371193820930785e-06} {"commit": "e42d252582362293ddb9880f6662ea10b05e0d0f", "message": "Improves wsgi app.\n", "proba": 1.253813621815425e-07} {"commit": "af4b53a85aec95c9ec7bf20b1c019ec0f397eacb", "message": "Bump version to 0.2.2\n", "proba": 1.9758344933507033e-06} {"commit": "ac60713e3b233c1f9cc6479023ee33c1c7627a42", "message": "add deprecation note\n", "proba": 8.99840642887284e-07} {"commit": "3ac3391aadb06e822b6b622a368fb5c82ba935fb", "message": "Added comments\n", "proba": 1.2651231884319714e-07} {"commit": "5745bcb2dbfcaab53df89125d08689b51b9126ea", "message": "llvmpipe: Fix buffer overflow unswizzling several formats.\n\nArray formats without for channels were being advanced as four channels,\ncausing buffer overflows.\n", "proba": 1.1004870259512245e-07} {"commit": "bf7a52f111ea2c077059a592484b467c6c7a26b6", "message": "handling already created bucket\n", "proba": 1.4452557195454574e-07} {"commit": "23fc0c9455d9fe2f041b432b30ba83edd6cae41c", "message": "Workspace URLs no longer have a trailing slash.\n", "proba": 1.3601842852040136e-07} {"commit": "78307e2fc997b5ce477553092e24d9fb439aeacc", "message": "Bumps up version to 0.5\n", "proba": 1.2927058378409129e-05} {"commit": "85fdc7d1094b4229c9c85a00c2c6194fd6f737ae", "message": "adding tests for contact and about us pages\n", "proba": 1.168951371255389e-07} {"commit": "640dc700fc0465420078e51aa621129625d2fdab", "message": "add check for filesize, if null output file was not downloaded due to server/network error, remove and redownload the file\n", "proba": 1.6859986828876572e-07} {"commit": "57172a2847d6af96662e87d500e92b4b98f69c5e", "message": "Update server.py", "proba": 7.684967044951918e-07} {"commit": "e484cd6fe1fbc2e2f307a1424c44ca530d578cab", "message": "fixes build_attrs", "proba": 8.048347126532462e-07} {"commit": "85137ec7a56ce3e1d9824333df989076f8a1a88c", "message": "newest nilearn support\n", "proba": 1.2352687406291807e-07} {"commit": "3d7a606530805a9bd298a9be36f97e850ab5aa47", "message": ":fix: typo and add comments/docstrings in the module oop\n", "proba": 3.133823440748529e-07} {"commit": "c5a7a7b126d321e973f2cf9e7e09a7f5f591cf20", "message": "RF: Remove derivatives from layout index ignores\n", "proba": 1.9112665938791906e-07} {"commit": "4007c2708fdda19b3d7e9097842a9961a99f4cc8", "message": "Add usual layer arguments\n", "proba": 4.302319666749099e-06} {"commit": "76314b2eba9d6ca61583f326a9be44c2124a42a4", "message": "update version\n", "proba": 3.3994695058936486e-07} {"commit": "03d5d6dd365ac6e6791eb1fbfa935ede52355008", "message": "delete duplicate itemwise sales register\n", "proba": 2.5422903604521707e-07} {"commit": "3d90dcd652fcfa47a5350a1ddb8cc562b0f3d676", "message": "Rename a base class\n", "proba": 0.0009425427997484803} {"commit": "5a6faca697f63aad9b59fda397c6e40aa469524f", "message": "Adjusted logging to assess 500 issue\n", "proba": 1.9763308500841958e-07} {"commit": "6648c78347c7f346bef4db0b9c8d5662747920d2", "message": "Deprecated all signals in paypal.pro\n", "proba": 3.0520487825924647e-07} {"commit": "14bd76500b82160f82a4c76b97b481a96d688d27", "message": "pdf file for each resume\n", "proba": 1.0014151712312014e-06} {"commit": "850e3badf27d8faff842057d9cc55c8a12c16120", "message": "for some peaks there is unsufficient overlap to get the edge cases...\n", "proba": 1.378515150918247e-07} {"commit": "106a09c5bbfe9ac3ad5ce3b87d4ce403758087cd", "message": "fix stoke color and non-stroke color in PDFGraphicState\n", "proba": 1.373853422137472e-07} {"commit": "fc40a184a1781c7c2268564d1e57e58677d2250f", "message": "debub mode turned on\n", "proba": 4.7441858441743534e-07} {"commit": "ddf5f94b6217ccf815eaf7ff4fd63606cf1fbb1c", "message": "Switching deepcopies to copies to speed up code.\n\nr29486\n", "proba": 1.518140720691008e-06} {"commit": "0debfc48ef10ab998334140e23a106e848d9c2d3", "message": "added later\n", "proba": 1.3735389359226247e-07} {"commit": "bb8f011e53ffc980209172b71bc8a97ce4f1b92e", "message": "made suggested changes\n", "proba": 1.7492244523964473e-06} {"commit": "83e39cefc9aead38047ed4101c130db9f8ffd48a", "message": "[timer] PEP8 80chars limit.\n", "proba": 1.375303213535517e-07} {"commit": "94bbae75b2ef5147fdb55c3a4b62910552e5fb5d", "message": "BUG: update instances of iterations to reps in stratified_permutationtest\n", "proba": 1.6769226363066991e-07} {"commit": "566eca110acf154a1888c8f29ec6027a94fb1236", "message": "bumped to version 7.2.30", "proba": 1.3672500642769592e-07} {"commit": "b2b5e91649cdfadda63e11dcfe5ef5c105d28f23", "message": "Add timeout cli arg\n", "proba": 6.766570663785387e-07} {"commit": "a60bf604692001a1324fd7e1821deaa97661a6d6", "message": "bumped to version 8.0.39", "proba": 1.4095405731495703e-07} {"commit": "205949a79b7909d1ce5bdd8f70afdf219e0336f7", "message": "Tab press on an empty line is interrupted as a \\t character insert\n", "proba": 4.0394886013928044e-07} {"commit": "0cf28e70f5e6ff21eda2af68a608a5f958aac677", "message": "updated with dev of frappe\n", "proba": 1.244460889893162e-07} {"commit": "a86d51e7acd99af6e0dc7b2b5bed9c4f8389dc92", "message": "Grid fixes and help dialog update\n", "proba": 1.5912269191176165e-07} {"commit": "af3f2c606445757f941c8e5934b0516f1a6ee1f5", "message": "fixed limit\n", "proba": 2.3214570319396444e-06} {"commit": "f96707b79f80c29853ce69a63f907060706e43b6", "message": "Fixed imports to relative imports for Python 3.x", "proba": 2.3127363135699852e-07} {"commit": "9faca3b879b25a2c501b549c5aa63a0d07224345", "message": "improved script\n", "proba": 1.3668658311871695e-06} {"commit": "2444eb02ec8530e27f09de3eacae9b7c3fea654b", "message": "Shorten first line of docstring to less than 79 characters\n", "proba": 0.001658190623857081} {"commit": "b87b6397f96819965f38cc7db217c48e71a8cffa", "message": "ENH: IVRegressionResults add summary\n", "proba": 3.650456392279011e-06} {"commit": "fb04a552cdc55e29f95cea21dbf3361dcdf86a6c", "message": "django.wsgi points to smart\n", "proba": 4.955622330271581e-07} {"commit": "6cfcc420ac190d3c790d902fc8c942a2fbac0d2d", "message": "aws - copy-related-tag - fix exception when processing resource set (#6417)\n\n", "proba": 1.0352661661272577e-07} {"commit": "70b2b86275b3006cc0fcdf6904dcce6ea1b5a0b3", "message": "ENH: Add seasonalarparams, seasonalmaparams.", "proba": 1.6307477324062347e-07} {"commit": "5e87e2d2c7a5c84d2fd721ae2647656693c6af0a", "message": "convert to restructured text\n", "proba": 0.9999995231628418} {"commit": "38fa37db75a5d400469e8989d128eb8543581185", "message": "Minor bug fixed", "proba": 3.021417569470941e-07} {"commit": "67051245c2f1ec28b474734520ff13b3a70d9e73", "message": "(Eytan) Center LoginFrame and make it fixed size (non-resizable)\n\nAlso, add createButton that will be used to launch a CreateAccountFrame later on.\n", "proba": 1.0062297661761477e-07} {"commit": "fedf5912ca5fc484f2859de95040667efb806a68", "message": "update boot grub cfg directly instead of grub2-mkconfig\n", "proba": 2.313433355993766e-07} {"commit": "8602d984a9caf73dc40168e0e7937c9e930d035b", "message": "Stop $PYTHONPATH from messing up the search path for DLLs.\nCURA-3418 Cura build on Win 64 fails due to $PYTHONPATH\n", "proba": 1.7180850875320175e-07} {"commit": "a4ce7a975394de9b82ff64d6bd5505f1ca327246", "message": "Commenting\n", "proba": 5.517018735190504e-07} {"commit": "a5c50b81a9a02f0f3df9eacef041f493055930ff", "message": "Implement WINFF.FT.S.HBT.2, 3, 4\n\nheartbeat cases\n", "proba": 1.620483453734778e-05} {"commit": "f45545ce247bd03dba0dab59c067c70d0bd5282e", "message": "Bump timeout for MP2100 a notch\n\nGot a user that had some really slow response times from MP2100 printer.\n\nChange-Id: I0e81f7c92b1fa2d674c73b85cf99c497af82b2ab\n", "proba": 1.826427433115896e-05} {"commit": "1a7348e4d19cc654ac66c44444cea885f26edec6", "message": "Updated\n\nSigned-off-by: Brandyn A. White \n", "proba": 1.1477901296075288e-07} {"commit": "5fffd9fb25673353906dc82bbac02e9e1ec68a9e", "message": "tdump: use json for output\n", "proba": 0.0004012789868284017} {"commit": "5b3634429ae141927d26f40304366725f315bc60", "message": "[IMP]l10n_es_ticketbai: A\u00f1adir claves ticketbai por defecto a las facturas cuando no tienen posici\u00f3n fiscal.\n\nCuando se crea una factura de un cliente sin posici\u00f3n fiscal se asigna a la factura por defecto la posici\u00f3n fiscal 'Regimen nacional'.\n", "proba": 1.0167979098696378e-06} {"commit": "b16b0ad0a5c487d511ed6045521ce69fb092fc66", "message": "removed right click options useless for now. this refs #64\n", "proba": 1.388005301805606e-07} {"commit": "0329854099222b1ee35fb052b1cc85616c247440", "message": "Outline simple focus management into an own class\n", "proba": 1.6895963028673577e-07} {"commit": "c105c0dc50cb1840890e8573fd886a1d8b7786af", "message": "working version of pixelated rendering\n", "proba": 3.115493996119767e-07} {"commit": "54a5764bae5f72a2ac43d771bf031af16eacd48c", "message": "removed 2.5 specific stuff\n\ngit-svn-id: ebd26f0b4afd3fb7c0e0d88f39b62381954d19ac@63 64d93f2f-123f-0410-81d3-998474c5a783\n", "proba": 7.851125474189757e-07} {"commit": "28abc1cd2218d4f0a7c646db00c73d89a37d57dc", "message": "Refactor recur sol\n", "proba": 1.0713023357311613e-06} {"commit": "eadede3032642f4d4f35e34e37acc9c6550b198a", "message": "Make cursor follow slider handle\n", "proba": 1.4404330386241782e-06} {"commit": "43621df3dce54a954e12bf609598344556421ed2", "message": "additional checks for json[comments]\n", "proba": 1.1395728449770104e-07} {"commit": "160ff9fa0891ff240c6a3a45fa52455327863c40", "message": "added linked information\n", "proba": 1.316413573704267e-07} {"commit": "c5c5ccbe837fde6229cf4dd50574a8fe7b517272", "message": "ga oauth prod fix\n", "proba": 1.7226574300366337e-06} {"commit": "8b80ea3194dd8de3e1e6c23bd6474b4ffea648bb", "message": "FIX: indeces\n", "proba": 5.4149866627994925e-05} {"commit": "0a2d65a6bda755dcfe77f2db94fa9a2f3c8a852b", "message": "fixed local services detection false positives\n", "proba": 8.016251740627922e-06} {"commit": "48bdf430f05c8e0d5f981cdd9999beeec6ee4639", "message": "Add Option For Immediate Post-processing. closes #6\n", "proba": 2.4505925466655754e-07} {"commit": "ac4dfcdaa9924b4830c9e775ce164e1153080f3c", "message": "20151026.0931\n", "proba": 5.034444825469109e-07} {"commit": "ca2bc782aa010cc2cd92ff19ad42c778b01dac8f", "message": "added nothing\n", "proba": 4.962754474036046e-07} {"commit": "94b09dda4251574c4c01606b3c2f32b62d15f7fc", "message": "start to prepare for full log view\n", "proba": 1.2928923354138533e-07} {"commit": "b79aa3324f547137243c9bdb608470607478a937", "message": "codestyle changes\n", "proba": 6.919086104062444e-07} {"commit": "05c8a634161e144cb97d977ad0e3eb148371eb07", "message": "Lista de cambios:\n\n* Optimizado la mayor parte del c\u00f3digo\n* Uso del m\u00f3dulo secrets para generar c\u00f3digos aleatorios\n* Uso de c\u00f3digo ANSI para borrar la pantalla en los sistemas POSIX (Mejora el rendimiento)\n* Borrado, barra de progresos\n* Uso de la sentencia \"with\" para evitar posibles conflictos\n* Evitado, posibles \"fin de archivo\" (EOF)\n* Evitado, posibles interrupciones por parte del usuario con se\u00f1ales\n\n~ DtxdF\n", "proba": 1.1850750070152571e-06} {"commit": "1604e9d291ba981b3b6b1ff6dcee809f001c84ef", "message": "Show absolute path if the common prefix is \"\"\n\nShould also work on Windows.\n", "proba": 3.783203226248588e-07} {"commit": "25dc04bb49d615b1e8c1661df1a3b3be6c42b93f", "message": "20150516.1704\n", "proba": 6.702410928483005e-07} {"commit": "49224a4bdf35db034c628d7a4be9e89b344b06a9", "message": "Yay, it compiles now\n", "proba": 1.2782562919255724e-07} {"commit": "b7e60f7b91a87b91161a3aa656c9f7c45629a2f8", "message": "pep8 fixes for subiquitycore.testing.view_hewlpers\n", "proba": 1.2713266528407985e-07} {"commit": "73a839331d9e619bda7df38ec6b921e43b8976a2", "message": "Improved line buffering\n", "proba": 8.461448715024744e-07} {"commit": "33a19d2cd59539206d3986fdd3375a5ea18bdc97", "message": "Title and description in /suggest_categories POST data\n\n* The category classifier expects the supplied parameter to\nbe a dict with \"title\" and \"description\" keys\n", "proba": 4.4259550122660585e-06} {"commit": "e94e7728b98872edf724057b33c20505f3fcd466", "message": "forego path shortening if untitled views in dict\n", "proba": 4.474581487556861e-07} {"commit": "90571c86f39fee14fafcc9c030de66d4255c5d82", "message": "Change naming style\n", "proba": 2.048341002591769e-06} {"commit": "74271713fffb3d1a906efb9fa7e70b39683b3dfb", "message": "basewidget: ItemSelWidget: Inherit from ChoiceWidget.\n", "proba": 2.024568601655119e-07} {"commit": "20d5c15768fbb6b8fa13c3ad95c50e57e499cb25", "message": "fix for https://github.com/parrt/dtreeviz/issues/159 (#160)\n\n", "proba": 1.1848440095718615e-07} {"commit": "36377bb0265145d1d94ee0f011e589d515e2b4a1", "message": "Added fixes for uploading experiments\n", "proba": 1.7567329280154809e-07} {"commit": "009cdf804f0f730ed081c6003eedb1015283948f", "message": "lg_replay: update to test for non categorized event publishing\n", "proba": 1.349399809669194e-07} {"commit": "86dc7e55bc64555051da2ec4150854fed7420ab1", "message": "and now i have squashed you\n", "proba": 1.2245996572346485e-07} {"commit": "c722693f96be150559652614dab15ebef2c85276", "message": "Import LoginView only where available\n", "proba": 1.254391293059598e-07} {"commit": "cfcc017e6dbdee56b5372b1032e76dbbf9b936d0", "message": "put couch_db a property method and use document_class instead to config\n", "proba": 2.3150687411543913e-07} {"commit": "f41bd53ee890fc2adbef1808f1b24ba47522614c", "message": "Up word chunk size.\n", "proba": 3.7106594845681684e-06} {"commit": "76e5881c66f32c2f10898655a9a41b0232b8b9f1", "message": "remove self.online\n", "proba": 0.00017185807519126683} {"commit": "5675199959d2a90900fff0ea79eb7dca0f4032ab", "message": "changed lightcurve class name to GBMSummaryLightCurve. Added option for choosing which detector to download (except BGO)\n", "proba": 1.0300682617980783e-07} {"commit": "37a49600fea408a181c88d0828f608b651f24883", "message": "Updated queue monitoring\n", "proba": 3.839900557522924e-07} {"commit": "88e50e75dedf4cc5ffc35332283abd7ec487fa2a", "message": "change name of helper method to reflect new logic\n", "proba": 3.949467668462603e-07} {"commit": "01b87ce8637c2a40d6dcd973c0569c0b313e2b55", "message": "small fix\n", "proba": 5.359547685657162e-07} {"commit": "c2edb8dd0e8c5c9ec42d82da4e3082b6b9384ec9", "message": "Updated imagename logic; value from jobparams supersedes job def value\n", "proba": 8.780442044553638e-07} {"commit": "327ec034acd369bd3aab1317bc2c67aab3e34876", "message": "change serialization contents\n", "proba": 8.289017614515615e-07} {"commit": "41548ba9efb1d47c823696adeb13560bdbb73878", "message": "allow update of IP to timeout without quitting loop", "proba": 3.2943006544883247e-07} {"commit": "25f57a023f978fca94bbeb9655a4d90f0b2d95f0", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "ac3e392f925ddb3338f05d4a01dc5b388dce57c6", "message": "components: speed up get_backgrid_table, limit html size\n", "proba": 1.095771835935011e-06} {"commit": "a66d837c9a953f090a79b5cdeb49ba578cb8207d", "message": "multi-tenant thread algorithm working\n", "proba": 3.0016065011295723e-07} {"commit": "347344abfe44c85e16bc310f7d02ccc2cec5d277", "message": "speed up nprod by directly using the partial products by default instead of going via nsum\n", "proba": 1.6222598731019389e-07} {"commit": "5908e804f183267ac8f5d1b54524a96dd6ef814c", "message": "Update skip lock option help info since it is used in several operations\n\n", "proba": 1.5846121925733314e-07} {"commit": "945ee40e38f60152609cdf1a1fed4181d25d49ea", "message": "Reduce sensitivity of sharedblock fencer\n", "proba": 4.581174835038837e-06} {"commit": "01a9d524697ef49c4e1117d3be82260fe2d43311", "message": "remove python 2.7 .items\n", "proba": 0.005963566713035107} {"commit": "e0ea0d4df4d56da14f8f65b75122867d39d1bd45", "message": "Remove flake comment and register the product views\n", "proba": 1.3470699400386366e-07} {"commit": "7021dfe97d3805a7bafdcc7eb2c83a4eeb7df4b5", "message": "fix: prevent accidentally processing non-docfx blobs (#89)\n\nOtherwise, we can fail to process and end up uploading a tarball with no\r\nHTML files.", "proba": 1.0606155598225087e-07} {"commit": "b64d6e4acfdca47b23d57741a4977b7b9e1b93d6", "message": "The below again\n", "proba": 2.594950672119012e-07} {"commit": "5b120e5b89c06a0a5c01f8c710f85a4a179f56f7", "message": "Change HTML theme to match BIND ARM, add copyright, EPUB info", "proba": 1.324380747291798e-07} {"commit": "8d9d21ae72f6e0b9d109b6bb1326a538dd9bf4e2", "message": "DOC/FIX fix sklearn clickable links (#256)\n\n", "proba": 1.0754762058695633e-07} {"commit": "5ba27f80b3cbbb1801909391eb42bee2679b9597", "message": "doc/conf.py: as of sphinx 1.3, sphinxcontrib.napoleon moved to sphinx\n\nSigned-off-by: Enrico Jorns \n", "proba": 1.186255005336534e-07} {"commit": "c2713d49b22f2c4cad3d2d8c0cb6ba2d5a88a57d", "message": "close #802 fix mulrequest agency selector\n", "proba": 1.259229946981577e-07} {"commit": "5a54408b2dbdbbb3377497a93158691f275850f1", "message": "Enable doctest in sphinx\n", "proba": 6.779295631531568e-07} {"commit": "587aa152dd7e2afaf52d24429fefc6c950d13b3b", "message": "update conf\n", "proba": 3.6501810996014683e-07} {"commit": "91304556771559f69065561b0226d06807ae3795", "message": "doc: add 2.7.0 release to versions list\n\nAdd 2.7.0 to the version list so that a link to it is created on the\ndocumentation drop-down list.\n\nSigned-off-by: Gerard Marull-Paretas \n", "proba": 1.2914567548705236e-07} {"commit": "fd1b50e6a53a1c07f692aebfa112074bc86ce7ab", "message": "Minor or otherwise undocumented automated reinstallation push\n", "proba": 1.3543557031425735e-07} {"commit": "807e5069c269e915dcecb66dab50881c3b87846f", "message": "Add extra path to documentation configuration.\n\nSigned-off-by: Charlotte Pierce <351429ca27f6e4bff2dbb77adb5046c88cd12fae@malformed-bits.com>\n", "proba": 1.5168410527621745e-07} {"commit": "6366fe6da78cd0e910b52352b918ff18d89f25c4", "message": "update tests_forms\n", "proba": 7.386967695310886e-07} {"commit": "acec324a57a970ae744b2e888d21113781007306", "message": "Reworked process_spectrum\n", "proba": 5.386627890402451e-07} {"commit": "82b87b05068a8fb56f2983714c08c0b822b5dde5", "message": "build(docs): Remove settings leftover from sphinx-releases\n", "proba": 1.410395640277784e-07} {"commit": "33c853857bbaafddae971ba4231ef0c6d1f10e9a", "message": "profile/tasks: remove reference to nonexistent module.\n", "proba": 1.2624211365164228e-07} {"commit": "fff0b48ce38fb6cb5e93f03d314d88a37dda2950", "message": "Trying to get RTD to build. Conditionally mocking South.\n", "proba": 1.0843993436537858e-07} {"commit": "197e8daaa659ca5f36f8427f5c861e56355f803e", "message": "Build only one example\n", "proba": 0.00011270523100392893} {"commit": "a686776ea6dafd2344c84fb67903cbce0522d6f2", "message": "minor code refactor\n", "proba": 1.75907268840092e-06} {"commit": "3c2fa8716d82e6f7bb7ed2b381a58c2a5a6f6440", "message": "Fix releases_document_name\n", "proba": 5.2590207815228496e-06} {"commit": "824721ff36d53ab28b604f53481ab694b76a4bb8", "message": "updated version numbers\n", "proba": 1.6399600326622021e-06} {"commit": "57c2742a06586a6ce9caa745ed97e233e6333821", "message": "doc: Update configuration file.\n\nChange-Id: If3cded3af43b14419804b63826150bc5710c5252\n", "proba": 6.588114501937525e-06} {"commit": "55f6f9b3afdc3eb8e19c687c39dc6ed33fefb692", "message": "FIX: Find\n", "proba": 4.964192157785874e-06} {"commit": "e3e9c80d280b510534bde2b9427f77768f83ba52", "message": "Version bump in docs\n", "proba": 2.3155766371019126e-07} {"commit": "4a4040c36a172765b86ed1d3de95127ce38b31f5", "message": "added getitem and len to rvdata\n", "proba": 1.8538698043357726e-07} {"commit": "432534f19faf3f2e72bc28c85fa28be47c721c9a", "message": "More docs and add 'number'.\n", "proba": 1.2140932881266053e-07} {"commit": "617700152d357ba1db0da2da6414b9ab80f44902", "message": "segmentation typo\n", "proba": 0.00010806728096213192} {"commit": "7e1232f2b33956be1acfa227188eb58cb168898f", "message": "xirvik/commands/root: lint\n", "proba": 4.566353709378745e-06} {"commit": "39cc2e398868a95e03f4f885c97e7ffaeff3964a", "message": "Remove explicit region setting for boto.\n\nRather lets use the AWS_DEFAULT_REGION environment variable or anotehr\nstandard AWS configuration method.\n", "proba": 1.0662502347713598e-07} {"commit": "9d1e0285f6f28c88344f57549930444fa2a08abb", "message": "This test requires a new SB API, and the CI bots don't auto-generate the\nSWIG bindings, so I'm skipping this test till I can put the new generated\nbindings file in place on the CI's.\n\n\n", "proba": 1.1870245231193621e-07} {"commit": "46f6837199421412e9f72eea6076cf6058000a14", "message": "take solver config name changes into account in ranking cache\n", "proba": 2.779243288841826e-07} {"commit": "2555766688d32743ed25b538b88a971eb58750a1", "message": "bugfix\n", "proba": 8.478961035507382e-07} {"commit": "287d283f65c86c6e70e0455194b2268ac9d70fa6", "message": "Added default action for ee stack\n", "proba": 3.4531615256128134e-07} {"commit": "9f410553a8948acf8b4153070ebd50645287662b", "message": "Added command-line option for specifying output file location.\n\nOf course, CanTherm cannot write this output yet!\n", "proba": 1.1897263618720899e-07} {"commit": "3b30b18e8b21dc17d240dbdc0bdd7cfa172a972e", "message": "Fixed .raw field logic and added comment\n", "proba": 1.2769525881139998e-07} {"commit": "e4ccb1fbe8e3f1d29497af83bf85f545bf9a3768", "message": "added some convenience plotting tools\n", "proba": 1.453022520081504e-07} {"commit": "8aaf45a0a8e5cbd99e9c809afb8a8c35ee9ba8e5", "message": "Doc typo\n", "proba": 3.3570440791663714e-06} {"commit": "276d8f9a4d512c695c7ba2503eb8362401a8bd44", "message": "Use os._exit() for FORKed child browser opener process. Fixes #6404.\n\nOn Linux, when Electrum is executed from Appimage file, to prevent system library\ninconsistence for Electrum and web browser and all issues involving that,\nElectrum starts web browser and opens web page upon clicking on\n'View on block explorer' by fork()'ing the process, unsetting\nits custom LD_LIBRARY_PATH environment variable in the child process,\nand calling webbrowser.open().\n\nDue to incorrect usage of sys.exit() instead of os._exit() for child process,\nElectrum (parent) can't be terminated and endlessly waits for child process upon\nexit, while child process does nothing but still exists.\n\nFix this issue by using os._exit function, which should be used for\nchild processes (not only in Python).\n", "proba": 3.056499622289266e-07} {"commit": "b3dfb211d0d81210dcaa317a0d6f79b6ad249816", "message": "Update netlogo_example.py\n", "proba": 5.399423912422208e-07} {"commit": "01dce55ce0e326038899f61d9fc6a88891b6a4eb", "message": "macho: porting for python3\n", "proba": 3.3977062230405863e-07} {"commit": "89e4584024d02d337f5c36abea5bb8a4cf35d66e", "message": "photo_id not yet prepared\n\ngit-svn-id: 6ce22b13eace8fe533dbb322c2bb0986ea4cd3e6@139 2d143e24-0a30-0410-89d7-a2e95868dc81\n", "proba": 5.880082767362182e-07} {"commit": "ecb3e68e73e84cee65364adfc51c1a78088c598d", "message": "Added object_detail override for galleries\n\n\ngit-svn-id: 6ce22b13eace8fe533dbb322c2bb0986ea4cd3e6@292 2d143e24-0a30-0410-89d7-a2e95868dc81\n", "proba": 3.404063306788885e-07} {"commit": "140917ba37d240279b093aff777d6826bd299f6f", "message": "Fix a typo\n", "proba": 0.9999995231628418} {"commit": "329f925f4e381f7df3ad3c3aa06784c30dc7d639", "message": "Import script for South Lakeland (closes #2393)\n", "proba": 1.0252541926547565e-07} {"commit": "8c6f178782b6470b98536a2384391970e0cbafb9", "message": "Update config file\n", "proba": 6.779928867217677e-07} {"commit": "96d083f6cc6bb9a55a35a494f4c671ed62a3cd40", "message": "make plot for hh example\n", "proba": 2.7484438760438934e-06} {"commit": "5bfdeb94d64ffe7cbcb750dda2edc48f5a1d23b2", "message": "add a link to python course 2018\n", "proba": 1.305224088810064e-07} {"commit": "f4a3cf6ffb8f097a7fbca87ea58f20ec81c1ba62", "message": "adding default repo=local when refreshing env (to avoid updating other permanent repos)\n", "proba": 1.1268991784163518e-07} {"commit": "24d3ccc3690254117451180ffbb26791a7de985d", "message": "Added batching, multiple scores, second prompt\n", "proba": 1.2326762544034864e-07} {"commit": "9fcbde5216888c694da69af37b765d4f2fb2b1a5", "message": "fixed number of prims in extraction\n", "proba": 6.804154395467776e-07} {"commit": "29c30290703c24c5cde9c5853a67b5a4e2bdd075", "message": "Made curvesSimilar check based on average error per point\n\nPreviously used a square function similar to a RSE. However it was not intuitive what the meaning of tol was. Now tol represents a threshold for the average error per point.\n", "proba": 1.0954525464512699e-07} {"commit": "832ddc449abf766ce3e4fd988de44a6367e4bd69", "message": "bugfix fix clear all actived profiles after create or delete a profile\n", "proba": 1.4172303508530604e-07} {"commit": "b41943c8e9fbbae446f40c710e3cd2f9405798a9", "message": "Creating gross emissions tiles for no_primary_gain sensitivity analysis.\n", "proba": 1.0857176135914415e-07} {"commit": "11f0b94775e029f51e6ddc7db19ef8b48cd33bf9", "message": "Trying to run gross emissions again from the top down.\n", "proba": 1.1040653191685124e-07} {"commit": "5cf5c6028bd7007a867691af966f89574f02de1f", "message": "clean up setup\n", "proba": 1.5117345810722327e-06} {"commit": "8efa9c14685026acd143c385de51ccc57606842d", "message": "add molopage proxy\n", "proba": 2.5503575784568966e-07} {"commit": "20f69d6d353627f14e535eff31266b692b431aed", "message": "Missing renamed function call\n", "proba": 1.2491236702771857e-06} {"commit": "2faae3fc05e1b6562546e382b9c5c5afff6d8377", "message": "local: Add debug timing to loading library and building browse cache\n", "proba": 1.9842475751374877e-07} {"commit": "8d935a2141b8f5c080d922189df7d79bb838b3a0", "message": "Fix: Use default router implementation\n", "proba": 4.425509985139797e-07} {"commit": "448465c1305b784e5b0c0c5a5c8e2131e976bae1", "message": "Diag bad db conn\n", "proba": 0.0004200459225103259} {"commit": "cdb7305dac6f9089236539133f6c8eab1ec9dd55", "message": "use S3 path style addressing when running in kubernetes (#1315)\n\n", "proba": 1.046409181526542e-07} {"commit": "543f2d1fef5951d063ef0114ba0dea6645658a33", "message": "Updated FAST platform interface for latest WPC firmware\n", "proba": 1.2137887495100586e-07} {"commit": "19ca56fcafc7be6aa8a9503649a8766a781e5330", "message": "MServe FUSE - Usage Reporting, Logging MixIn on debug\n", "proba": 1.187931673030107e-07} {"commit": "adecaf3b62c077c08dcba52a10333e6a50c1d8ad", "message": "python 3.* support for mumbleRadioPlayer.py. pymumble_py3k is missing\n", "proba": 2.6067247745231725e-05} {"commit": "cf073f0e0ae7ae0c4afa2d1e758b978602fc1139", "message": "run AST toolchain on python3\n", "proba": 2.4438411401206395e-06} {"commit": "97ab60e18c3a669913185c2a2c4023b51bfa1fa1", "message": "refactor(engine): use random.choices() to select disk path\n\nSigned-off-by: Sim\u00f3 Albert i Beltran <6f7d207d69feb6f6fee3b97855e8d3812485c154@bona.gent>\n", "proba": 1.574136518911473e-07} {"commit": "d1295f06c8abfb3faa21e88fe2a1dd2b7b50600a", "message": "new pymumble module name\n", "proba": 2.4614558924440644e-07} {"commit": "568ae6db3b525714acda1b03186715184a8ca636", "message": "strip down the compile flags on windwos\n", "proba": 2.345881284782081e-07} {"commit": "1fb0c53cae9375d7f04d54be099098fd5f610077", "message": "add United Arab Emirates\n", "proba": 0.9999973773956299} {"commit": "e6668365332c65b357d92e6598058267dff2ed2c", "message": "extend class syntax\n", "proba": 1.4338243090605829e-06} {"commit": "f0e083b1fac22e4280adf5a3c1cff6912b656258", "message": "Added ability to toggle the default database\n\nYou can now toggle the default database between Postgres and SQLite\ndepending on your preference. Simply set the USE_POSTGRES variable in\nthe settings.py file.\n", "proba": 1.056605540838973e-07} {"commit": "399dbe2afce5e32d1a0b269c0352956075d24c58", "message": "\"next\" link on episode page refers to current one\n", "proba": 1.2752707334584557e-07} {"commit": "917da754caa49594e70cd2664b6f536f27e50ee0", "message": "Change mysite.views.render_robots_txt to return separate files based on the value of DEBUG in settings.py\n", "proba": 9.889595276035834e-07} {"commit": "762be363357955f11c87ea81fa4088200efc1168", "message": "Bring in the robot parser.\n\nThis totally doesn't seem to be working on http://nbviewer.ipython.org/url/jdj.mit.edu/~stevenj/IJulia%20Preview.ipynb\n\n:-/\n", "proba": 3.125439320683654e-07} {"commit": "2f7b7b02acdfd95439e0b98d55cd766ebda1494b", "message": "fix: Retain list_context object (#7848)\n\nlist_context object was lost between update_context_from_module calls", "proba": 5.1357432084842e-07} {"commit": "6d87cc780df5637228cecaf57afbff2606feb0c7", "message": "sonos_remote_esp32.py: minor cleanup\n", "proba": 4.483775228436571e-06} {"commit": "506bd6ada29234fdcc545aeaae9580e3718fbe1d", "message": "tweaks to make rtfd.org work\n", "proba": 1.2837733720516553e-07} {"commit": "32481a906e00a1c5d301e6227ab43cf8feba31e0", "message": "fix double-import trap\n", "proba": 0.0002120579592883587} {"commit": "365e6daf9059bb0a7ca8143ebf3e90eeaf8e9f11", "message": "Example model\n", "proba": 6.31796240213589e-07} {"commit": "4c86f347347cd3b9289bfa2e26e75f429ba9cba5", "message": "Binding: Disable win_delay_load_hook to avoid issues with node10\n", "proba": 4.84797737954068e-07} {"commit": "5548de4f8b72b395376fb7de3c117fa11d38814f", "message": "empty strike message\n", "proba": 1.3675406989932526e-05} {"commit": "25e1c9dc38d17ba37757f7eec37dbe1037c55cad", "message": "windows build - add c-client include path\n", "proba": 1.612886819657433e-07} {"commit": "c2ad690f1b42fb20435e4687f6adc742434076b0", "message": "Eliminate south from INSTALLED_APPS of yawf_sample\n", "proba": 2.7774412956205197e-06} {"commit": "b2e7eeafb263c12a333056e6a8239d2534833a22", "message": "Allow specifying --couchbase-root\n\nChange-Id: If0b120f1c4047419afd092988a517195503dd7df\nReviewed-on: http://review.couchbase.org/27742\nReviewed-by: Brett Lawson \nReviewed-by: Mark Nunberg \nTested-by: Mark Nunberg \n", "proba": 2.5992505925387377e-07} {"commit": "c91147dee9d9910cfc8e6c2e078d388f19d6ab1e", "message": "fix build error in FreeBSD (#25)\n\n* fix build error in FreeBSD\r\n", "proba": 1.865495278252638e-07} {"commit": "27bace39e29ac9d032a64fb8e8ad8359791f02e1", "message": "[OneFichierCom] Don't use reconnnect\n", "proba": 1.4332429998376028e-07} {"commit": "c4570b15a8a1d6b5f94300e319d9a27380a8b582", "message": "remove -Wl\n", "proba": 5.551123649638612e-07} {"commit": "18eaa5180e14966ba451af72771a06315baf3436", "message": "Parse date only if generating a self-signed cert\n", "proba": 0.00012783559213858098} {"commit": "95bde4f783a4d11627d8bc64e24b383e945bdf01", "message": "Revert local CDN location set by Jodok\n", "proba": 1.8493845743705606e-07} {"commit": "06f328b5843d83946b353697745ec82c7741ee3e", "message": "Allow colons in record label URLs (for timestamps such as '2013-02-13_08:42:00').\n", "proba": 7.1990889409789816e-06} {"commit": "143b72cbc46a4bdfa2ad55c68a40d490f1ddf0d5", "message": "Updated from Brython Server: September 15, 2015 2:54:52 PM GMT-4", "proba": 1.0955382379052025e-07} {"commit": "4106107bd8cf3ba4d0b47520561bfa72042b5783", "message": "Updated from Brython Server: 2/3/2016 1:33:34 PM", "proba": 1.1410735822892093e-07} {"commit": "22d299b903014dd28becaafacf4db8701a874ff3", "message": "Updated from Brython Server: 2/1/2016 2:46:27 PM", "proba": 1.1444542735716823e-07} {"commit": "81e2f05e7fc551e4601c55afe0980bef20b1a58f", "message": "Updated from Brython Server: 2/3/2016 2:07:27 PM", "proba": 1.1317154502421545e-07} {"commit": "6f64be45edefe14405ad018a96c0c40ea5fca5bc", "message": "Notify users when they are not allowed to use !revealroles\n\nAlso, allow using it in-channel, but send the result to a private notice\nif not using debug mode.\n", "proba": 1.0387572046965943e-07} {"commit": "2696bd9e594f0249fc335ec4e46873f4c058e968", "message": "modify models according to META-SHARE-LicenseMetadata.xsd\n", "proba": 2.3747587363232014e-07} {"commit": "3ae07695e4f9d6db22eeb83b894c49ce3b03de6a", "message": "Fixes Keystone v3 401 authentication failures\n\nChange-Id: I8edaf653b39502959e8850e82cfa193608889e38\nPartially-Closes-Bug: #1669238\n", "proba": 2.165484289662345e-07} {"commit": "9952446a2a28ea2b009f4b8b2a14ad50f0878bdd", "message": "gnome: fix typo in vapigen option metadatadir\n\nThis typo was introduced in 9ef36fa80bf4483bcd837ea3985a51ab533c7972 and\ncan cause a build failure, because --metadatdir is not a valid vapigen\noption.\n", "proba": 1.3060459025382443e-07} {"commit": "07c4b2cc8ea3da02ae88c8ee5df8d211c775ad87", "message": "builder: fix minor issues\n\nAddress following issues with Builder module:\n\n1. Builder failed to build if assets folder or theme data folder were\n missing. These are optional, so we should silently ignore that if\n it comes to happen. Add checks to _install_data.\n\n2. same for theme statics folder. Add checks to _build_statics.\n\n3. _is_safe_path was failing with relative paths. e.g.\n ../whatever/hello would not be considered safe if dest folder is\n ../whatever. This is because of a missing os.path.abspath or\n os.path.realpath in _is_safe_path.\n\nTests for these issues will come in a separate commit.\n", "proba": 2.406930252618622e-05} {"commit": "310112d1417cea200f6ba847933b7cf51019c1f9", "message": "added username to chromatogram update\n", "proba": 2.126143243685874e-07} {"commit": "266e8acb5807b38a550cb5145cea0e19545a21d7", "message": "fix python traceback when gtkdoc needs an exe_wrapper but doesn't have one\n\nIn commit c88bfdbefc2f79ac2dfa9bff5847c350de5f5db8 we added support for\nan exe_wrapper to gtkdoc, which checked twice whether the environment\nsays it is needed, and didn't check at all whether one was provided.\n\nThe result:\n\n File \"/usr/lib/python3/dist-packages/mesonbuild/modules/gnome.py\", line 1354, in gtkdoc\n t_args.append('--run=' + ' '.join(state.environment.get_exe_wrapper().get_command()))\nAttributeError: 'NoneType' object has no attribute 'get_command'\n\nInstead, check whether we have a valid exe_wrapper (if we don't need\none, then even when one is defined in the cross file, we get an\nEmptyExternalProgram) and if we do, use it.\n\nIf we don't have one, but need one, then we revert back to the behavior\nbefore commit c88bfdbefc2f79ac2dfa9bff5847c350de5f5db8, which probably\nmeans \"executing the doc target causes the command to error out with\n\"Exec format error\".\n", "proba": 0.9984543323516846} {"commit": "f68ad397a8ddc5bda808c5b3f072957c9cea66f6", "message": "don't ping a playing using an account of someone else with that account is already joined\n\nI mostly made this to have it stop pinging my alt, mooo\n", "proba": 1.2617891798072378e-07} {"commit": "85fc769e42759c72b9681459696ed66cbdd2219f", "message": "Python 3 compatibility fixes; configure for campaign 2\n", "proba": 3.0177254302543588e-05} {"commit": "c0ea9e956b41eaf2ed03eb573ec3c555605f00e8", "message": "Ensure consistent channel_urls\n", "proba": 4.963885658071376e-07} {"commit": "96bc1feefa06f6bc4694c6cec5ebe8316ce50565", "message": "Add logging of mopidy tracklist\n", "proba": 2.221179755679259e-07} {"commit": "9cdfa970de8b505484db86e9ccca911d34310f70", "message": "minor fixes\n", "proba": 2.1220614598860266e-07} {"commit": "faafcc15e2562c2847004903423d70aff4372e96", "message": "wrap: use shared function to connect to wrapdb with better errors\n\nWe currently inconsistently handle connection, `has_ssl`, and printing\nerrors on urlopen failure between `meson subprojects` and `meson wrap`.\n\nMake the latter work more like the former.\n", "proba": 1.3115290187215578e-07} {"commit": "6ddbb002de2bb0f1de38137a7773558af4007f3d", "message": "Use conversion function to create height test data\n", "proba": 1.1228521543671377e-06} {"commit": "1d7fb1990b75dc5a450b585664c839d77d35e41e", "message": "Updated \"clv_medicament_group\".\n", "proba": 1.1579877678968842e-07} {"commit": "24883f0a54b682ce41dcbfcdf4f41c65f3df95e5", "message": "Add also 2 event for ddt and order\n", "proba": 1.290433573331029e-07} {"commit": "1a0154cd63cf2985c8bae0d4d277988925d6995f", "message": "sync clock on sample collect\nadded set to capabilities listing\n", "proba": 1.3913688690081472e-07} {"commit": "10f787963b82422abd47b167b6b3ec9e40842e29", "message": "update check_online\n", "proba": 1.6588388689342537e-06} {"commit": "044c8224188cbd45ccacd45d979982fc9af0a064", "message": "Fixes wheel upload for newer wheel format. Cleans up code.\n", "proba": 1.001679947876255e-07} {"commit": "4479690be9e52b7104db2db0351341c5febf1445", "message": "I think I'm completely prepared to process from a shared redis queue.\n", "proba": 1.0455652699192797e-07} {"commit": "b28b0b82220fb7ffc8e4f8ef57e8e5df3e47984e", "message": "fix(evaluator): reference to metric module\n", "proba": 3.3609285310376436e-07} {"commit": "4a336f4cb5f9ff2404c629d4f8548496c8b9c507", "message": "dealing with artifact response.\n", "proba": 1.2202349353174213e-07} {"commit": "977481ed9fab0eb703fe721b25702bba9c53223b", "message": "test update sites\n", "proba": 3.557744889803871e-07} {"commit": "cfc0175154c39adb71ea7193fe58ad2b9cc98af6", "message": "Replaced unicode() by six.u()\n", "proba": 0.9985583424568176} {"commit": "779811eb368ec928fcc694877408ed3935060d2a", "message": "Ready to start CFS calculation\n", "proba": 1.332211780891157e-07} {"commit": "100f7829ba8c25e0e6713f5cba8277bd846f07b7", "message": "add diamond output parser\n", "proba": 0.0031062415800988674} {"commit": "5baa2075d7f12d5123542dca31f430e7e112631b", "message": "test update sites\n", "proba": 3.557744889803871e-07} {"commit": "e03a30ab6056414bc481d9bf41c56519a54b93f8", "message": "Fixed strange output for desc in subfs\n\ngit-svn-id: 74b2def6592cf29d88d1a5d33b5c4a2732d8507c@696 67cdc799-7952-0410-af00-57a81ceafa0f\n", "proba": 1.9191400042473106e-06} {"commit": "e19529864b9b90d700afd2a82ecb5829b4f505ad", "message": "tasks for tagging and untagging specs\n", "proba": 3.4808158488885965e-07} {"commit": "8de7ec689c798f542a7dc320ecc3801e4329c5bb", "message": "Remove debug output\n", "proba": 3.657153865788132e-05} {"commit": "770b0826664a5032f27c0719fcb2193dc8648483", "message": "Upped required score for detection to be considered a positive\n", "proba": 0.0027919260319322348} {"commit": "485a363cf0ff10b0c4a3b4836e629474791f5374", "message": "remove intermediate assignments to `text_width`\n", "proba": 0.0003159470797982067} {"commit": "18655a35bec31925b39b07f11b1c65068c8c24f3", "message": "Fixed bug\n", "proba": 5.356139354262268e-07} {"commit": "66ff7ad33cdb7e5886997487331062bb30fa7ca2", "message": "explain control codes better in `character_width`\n", "proba": 2.700061827454192e-07} {"commit": "457d480ae60f64c3925a652381d29af32b89e962", "message": "add get_default_executor doctring.\n", "proba": 1.3102001616971393e-07} {"commit": "2fd47b125fa08e101804ae8c93000b50e0200401", "message": "pass context.\n", "proba": 3.5014722925552633e-06} {"commit": "db00c1d1e01b9ebf86868cd78d8f51b733ed1a00", "message": "list(map()) not map() in farming.", "proba": 5.178650326342904e-07} {"commit": "9eacef52012ed346ffa485bf43a17615a1dbf9b6", "message": "Slice a fasta file\n", "proba": 7.904888548182498e-07} {"commit": "a1cbeb7f7a03d0618ec9f60f65308168e521af18", "message": "Add encodings for imul instructions to RISC-V.\n\nThis is just the basic 'imul' the M instruction set also has mulh/mulhu which\nyield the high bits of a multiplication, and there are div/rem instructions to\nbe implemented.\n\nThese instructions are gated by the use_m predicate, but ISA predicates are not\ncompletely implemented yet.\n", "proba": 3.4743263768177712e-06} {"commit": "baea8c22208ea26c7ed59d82caed3fa9def4e699", "message": "Version 1.1.0\n\nSigned-off-by: Aur\u00e9lien Bompard \n", "proba": 1.149974906411444e-07} {"commit": "19be9f00135764cec3eda16345bfbb2560c5ff00", "message": "Move content copying helper function down a bit\n", "proba": 2.309339919293052e-07} {"commit": "6fe16a432ff43b76b4847d0c96334d0e251ee85d", "message": "fixed demag read bug\n", "proba": 2.0841493153511692e-07} {"commit": "1f5c6c37873db4c2c81fd25c304a6286f74aa54a", "message": "Add the last_updated_date field to posts.\n", "proba": 1.2176100483429764e-07} {"commit": "9da56e1cd9b747547a0994a68b1177ad40cc3421", "message": "Fix read_map_from_fits to read energy bins for WCS maps\n", "proba": 1.7058532364444545e-07} {"commit": "0b0b159eb433c89006784be620413f521a1f1e1b", "message": "Remove the (now empty) coast.py. RIP.\n", "proba": 2.917105916822038e-07} {"commit": "7a19fb0b28f8b1b4190195384131dcae588a9803", "message": "Support for multiple testsuites in junit.xml\n", "proba": 1.515086012204847e-07} {"commit": "ad39e7452243eb8c3f303b28f493e48ea65f457b", "message": "Fix TAPPY to import its libraries.\n", "proba": 1.1129496613193623e-07} {"commit": "a639e3cd15d52947bba44c0efa0f96a4247d961a", "message": "Change Lines import to lace\n", "proba": 1.4404795933842252e-07} {"commit": "f40c022d7f8e0419ab1f05e9fedec73ad38e1ab4", "message": "Bumped version string to 2.03\n", "proba": 3.4447715734131634e-05} {"commit": "47a249809a5344a03451a290590f455ee8a93374", "message": "Include program_set in parameters\n", "proba": 1.5918187727947952e-06} {"commit": "ae89782450452538a706681a83313cb77aa40288", "message": "fix: replace TRUE with 1\n", "proba": 0.9999877214431763} {"commit": "5727e81a3fe27e9ad181f1ffc1e2b2eba57506ee", "message": "quick fix - adds strike through\n", "proba": 1.1986962533683254e-07} {"commit": "efcec75c82f27f0c0f77881e300c4a76ec9e85b0", "message": "edition of elements\n\nAn element is no more edited if the right side of the element does not contain the right number of elements.\n", "proba": 1.8450738537012512e-07} {"commit": "8000607b4e0b4a65f020f233ed112f0554cc5d42", "message": "remove fxn untested", "proba": 0.00033895732485689223} {"commit": "421094983180fc82ae23be3f3ec9fafc067a7786", "message": "MAIN: formatting.\n", "proba": 2.3143138605519198e-07} {"commit": "bb0634286e0ac466bfe32d4052974498c68dc238", "message": "testing query\n", "proba": 0.00023700713063590229} {"commit": "70e8404f1e85be6043c70278508825e0efd5f64f", "message": "Fixed handler so all tests now passes.\n", "proba": 1.0461996424737663e-07} {"commit": "4c547687662f7ea2a12d876291adb6e0bed85fc8", "message": "Fix database relationships\n", "proba": 2.578326984803425e-06} {"commit": "2b7255f967e2f9eb234b65351f518584523b97de", "message": "Adding support for User and Organization custom fields\n\nAdded to v2\n", "proba": 1.504765663185026e-07} {"commit": "43ae58e518e3cf9d6117bbe1310c7303fa175999", "message": "add instance lock from upstream tornado.ioloop\n", "proba": 2.816690312101855e-07} {"commit": "ab2d27bea1734063e53d312fcece6c80e749418a", "message": "update: CelebA remove paths' dependency? & useless codes...\n", "proba": 1.0477892686822088e-07} {"commit": "27963597f409bb6f19b13fe1487f5a36a8e330e5", "message": "bugfix list queue to stay ordered after join with Fields\n", "proba": 1.5494703120566555e-07} {"commit": "bf5b9fcae3c5ea205c3b8d5f9d3355b1c25a08f4", "message": "Upgrade to install-datastax-ubuntu 7.0.2\n", "proba": 2.2041466252176178e-07} {"commit": "ddaa7d347b2c88efcc1ed29ab3ab8adb35dc355a", "message": "Make multi-range functional test to be more strict\n\nTo make the test sanity on multi-range request to be more strict\nwe should check whether the response body fits the MIME format or not.\ne.g. num of sections, section headers or so on.\n\nChange-Id: I37459d6ba36850e58701bfb2d94787d682070d8b\n", "proba": 9.692473213362973e-06} {"commit": "1eb9671b10bc211a698160934c5633da22972e22", "message": "Changed MatExpr symbol printing\n\nIt now looks better in the common case (i.e. a[2,3] -> a_23)\nBut reverts to ugly system when MatMul needs the function objects for\n(A*B)[2,3] = Summation ...\n\nThis split is somewhat problematic but I think the aesthetics are worth the\nrare confusion when someone actually needs to sum object\n", "proba": 4.3820386963489e-07} {"commit": "0bd17f174af7b87eca7e7bb485aa0a373bebe5bd", "message": "Follow symlinks in duplicates.py, sort for bigger files to appear first\n", "proba": 2.211127991813555e-07} {"commit": "3b31d4538b3bd0ac3ee0708b5e67c2ecb6623c09", "message": "Allow merging when having duplicated keys\n\nDuplicated keys happens when Chrome tracing and perf tracing\nare turned on simultaneously. Perf trace result contains\nempty traceEvents, which should not override the actual\nChrome trace results.\n\nBUG=catapult:#2916\n\nReview-Url: https://codereview.chromium.org/2396233002\n", "proba": 2.3119578429486864e-07} {"commit": "9e003eabaa98868c5443beadded9825b21161500", "message": "[FIX] activity location is retrieved from parent (usually spell) if there is none in the activity.\n", "proba": 1.1639610875135986e-07} {"commit": "ff39878da2573ecd846d813f264ca9dbf68f2ea8", "message": "another minor fix\n", "proba": 1.401345741669502e-07} {"commit": "3afcb0e6b600f2c2ce168bdfeef4afefdc11a12c", "message": "Fixing problem whith parens in links\n", "proba": 1.4068264420075138e-07} {"commit": "ca5bcc38f93429eb91f8d07cdacac789eca25e7d", "message": "Added message to publish page\n", "proba": 1.2831809215185785e-07} {"commit": "45b53a0f4b0d4d4cd9c10fc19e5020031a387527", "message": "Fixed dumpdata.\n", "proba": 1.8185538408488355e-07} {"commit": "151c580f19ce0c79ea5cc3070e99e8aa50df4012", "message": "updates\n", "proba": 4.4353927819429373e-07} {"commit": "48a8849943fa150cae3ee76198e1405a2adad5b8", "message": "Updated planner order.\n", "proba": 1.2981668362499477e-07} {"commit": "687eca3f8e6b6f04d89c606726d65b0861c55e57", "message": "Updated leap module structure in /src/leap/__init__.py.\n", "proba": 1.298343761391152e-07} {"commit": "74574913c6aec64430d8a762fc29b4ca99e93218", "message": "survey_filename can now be a pandas object\n", "proba": 1.8507342247175984e-05} {"commit": "fbb39413edc485bafbe242820557b1a0e6a48097", "message": "Fixing bug in load_survey and debugger\n", "proba": 2.172743052142323e-07} {"commit": "fcd3012f828858bc81ea8ee7e715d5d815c6eeef", "message": "debugging\n", "proba": 2.4004323222470703e-06} {"commit": "bf34bab5fc151e4a723d230f01f4b727e0f2552e", "message": "distinguish zero\n", "proba": 0.9999979734420776} {"commit": "643b9d60cb4c7a7cbf3fabb8c644ce657d9e1c8f", "message": "needed to access 'obj_ref' field in upload_reads() return obj\n", "proba": 0.0004838737368118018} {"commit": "89cd3b30c5a8f0d28aca9acc887152432fff9bb6", "message": "generate_spir_wrapper.py: convert to argparse\n", "proba": 0.9999827146530151} {"commit": "82d8a637ac151fddfc90f49ee8d730f44ec91d8e", "message": "#1252\n", "proba": 1.843037125581759e-06} {"commit": "1fb064c978ce336d086f7d6391ec395da9e28b84", "message": "objects.py markup/whitespace/PEP 8/typo fixes", "proba": 2.795378577502561e-07} {"commit": "d017c2a2e09d043caecd555217a399453c7e60b8", "message": "fix migration imports\n", "proba": 1.0350584034313215e-06} {"commit": "f11785f36983c93fd0b6dae83211d15634e24904", "message": "pass if local settings are not found in test_project\n", "proba": 5.886585654479859e-07} {"commit": "c683b4670ca4aebc98f0c6891ac2e4280f4a80b9", "message": "Implement __len__ as suggested by moritzschlarb.\n\ngit-svn-id: c8188841f5432f3fe42d04dee4f87e556eb5cf84@28 99efc558-b41a-11dd-8714-116ca565c52f\n", "proba": 0.9999960660934448} {"commit": "4372f2408729233d2d98cec76cae76d9a2e1e3d9", "message": "Corrected import of Stream\n", "proba": 1.4288882539403858e-06} {"commit": "5763c341a1660e13b70780a37d822eed65b00255", "message": "refactor example fit_text_path_into_box.py\n", "proba": 0.0011257767910137773} {"commit": "daed646ff987bc86b333a995bac1283360a583ef", "message": "bump up version to 0.1.2\n", "proba": 7.345460744545562e-06} {"commit": "6b086b9e35e91618ed8edc821117250b068c21c4", "message": "fix doctest", "proba": 1.0912979178101523e-06} {"commit": "5857bf6827ffc036fad729b71d864eaf6e777e1b", "message": "Bump version to v0.4.0\n", "proba": 3.084284685428429e-07} {"commit": "8d3801896f245a037406426e92bfc42a3a9f4c51", "message": "Rewrite and extend cabling logic tests\n", "proba": 1.8232911713766953e-07} {"commit": "fce501b446d2a4133a244f86653bdc683f4f03de", "message": "test project manager using initial DB & validation code added\n", "proba": 1.3056710201908572e-07} {"commit": "dccd46b51698c70e83ef6181ff9915094aa5e21e", "message": "syntax fix [skip ci]\n", "proba": 2.1379585746217344e-07} {"commit": "be778b351e6b6af18a786265851142a1b9dd420a", "message": "remove erroneous quotes in isinstance()\n\n--HG--\nextra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%401193\n", "proba": 4.1942927055060863e-05} {"commit": "2378c632358a3e1c1f6ee9051915e748d5c42464", "message": "Fixed debugging output\n", "proba": 1.6035938870118116e-06} {"commit": "490b888f052476ddd667e4ccd609618b4160953b", "message": "Add the vulcan-mgmt VLAN type\n\nChange-Id: I463ddd8a02892c6bbffcd126a55be463b85c2854\n", "proba": 0.996918797492981} {"commit": "a080059449bac81eeb375ed3e6a88b7588f5674f", "message": "'in' now works\n", "proba": 6.2225844885688275e-06} {"commit": "f124ee246f1cd868202b6b008d89e770c189d834", "message": "Store a unique id per region\n", "proba": 1.103908061850234e-06} {"commit": "8e6f080a55e91f14122c2a0a36cb15cf566769b4", "message": "use CommunicationChannel0 in AlphaTwirl.py\n", "proba": 1.4363847355980397e-07} {"commit": "f652367ab31aa2306de0c97279479e468dc63fc1", "message": "Utils import not needed [ci skip]\n", "proba": 1.1784612041765286e-07} {"commit": "4e1fd1a62b38e4809e58799babb57772130cd2c1", "message": "Modify the execution of alter_enum_add_value SQL\n\n'%' (value) s in the execution SQL statement of alter_enum_add_value\nshould be decorated with ' '\n\nRalated commit I4767222ba97d9c35c011adfc187b2977975f981a\n\nChange-Id: I24138e5b4ec8b3c3126ae5ff79e26ecb91a65d69\n", "proba": 0.0010381918400526047} {"commit": "82d2d1bea430846ebf3e057e30e81cac1a73cd69", "message": "fix error\n", "proba": 1.7308811948169023e-06} {"commit": "d9691177b8592cd75889368dabd3d8300f8e03e0", "message": "Fixed issues with omitting inner filter effects causing problems with plots and models\n", "proba": 1.2428289153376681e-07} {"commit": "36d6035897b9eed454dbf6b770fa165c0d82fa5f", "message": "Minor fix\n", "proba": 4.2334357885920326e-07} {"commit": "0aa94418f305e8eb93b28d5ad9da31542b8ba3b6", "message": "Add 'deployed' event when new entries are deployed.\n\nThe event has information of both entries which have been deployed,\nand which have not been, because they were either drafts or future\nposts. Listeners can be hooked up to do the needful, for deployed and\nundeployed entries.\n", "proba": 1.3203150217577786e-07} {"commit": "5eb3a970978cb8fb77755f97a74dd99c060e5ecb", "message": "keep lastdeploy timestamp, give message for (un)succesful deploys\n", "proba": 5.711517019335588e-07} {"commit": "0abebbaf1800780bf69b114dd83b094a4155579e", "message": "FIX: ``IntraModalMerge`` - Undefined input name used in _run_interface [skip ci]\n\nIntroduced in #441.\n", "proba": 1.0076855971874465e-07} {"commit": "a21ee13daedca9e1ce71bcab87278f2c3dc1fcd1", "message": "Revert \"Attach volume upon machine creation\"\n\nThis reverts commit 0b8b51b66067b7c7d3f873102feadd133691d4bf.\n", "proba": 1.212789015880844e-07} {"commit": "24fda3b612407e7dc4700c3ed8aba1628d0257e3", "message": "replace get_managers call\n", "proba": 3.3533963232912356e-06} {"commit": "1692c10c2755db755e8eed3c7d271e285c21861b", "message": "Minor test style update\n\n- Style fix for test_dhcp_ipv6.py:70:17: W503 line break before binary operator\n\nChange-Id: I02a6cf982f096b1e797ce84cb70c0402a2a31b88\n", "proba": 2.855507830190618e-07} {"commit": "21cdc8364497b800c2c8274123c972a09fdb10e8", "message": "More work.\n", "proba": 1.2655009129503014e-07} {"commit": "c6453752f9630a760cd2b2508d9ba39413871d86", "message": "Update SensorMotorTest.py", "proba": 2.354366586132528e-07} {"commit": "00c3588ba208b15216d7e45e37ed942a0d337017", "message": "Complete credentials_factory docstrings\n\nAdd docstring where missing.\n\nChange-Id: Idd258f00999248a5422876d2d943f1e0595f4a69\n", "proba": 5.6224249419756234e-05} {"commit": "9bd3f5048b9a990f42117de73879d0ac77358047", "message": "Pass additional kwargs to npmle function", "proba": 2.1581756470823166e-07} {"commit": "d8c54c74c7ceb0fa2dd7ff6f95a2211712409f04", "message": "Fix ratelimiter not being properly started/stopped on rehash.\n", "proba": 1.0651891813040493e-07} {"commit": "e765a07eb24cf295e281a8b33f5861f832d93492", "message": "made paths os neutral\n", "proba": 0.008754734881222248} {"commit": "9d145e5dc078fc71c7878c22ff7fdeb4fccf7ec9", "message": "Prevent ssl disconnects\n\nThe self described hack doesn't seem to work in python 2.7, and I'm not\nsure it's intended purpose. Whenever it gets hit, I get the error\n'TypeError: argument of type 'int' is not iterable' and skybot stops\nworking.\n\nI've removed it here and have had continuous uptime against an ssl irc\nconnection for a couple of weeks.\n", "proba": 1.6469566617161036e-05} {"commit": "9a8d9f9f0d5f858d5b7c936108a0f026c8474364", "message": "jessi's m added to regular rotation\n", "proba": 1.5607399461714522e-07} {"commit": "292b373850f94dcf69876b6b276b59693fea196e", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "3cf74c9ba68a2af069fd99c7e184982bd3f7ad41", "message": "Stop and start method ok + stats in output for stop\n", "proba": 9.391262096869468e-07} {"commit": "d1cbc182344bb040403c952660f09b0ad42ae15f", "message": "removed old file\n", "proba": 2.019124622165691e-06} {"commit": "c3ecc4a06a212da11f52c9c0cd5c7b5c8d500516", "message": "Support -h/--help on createdb.py", "proba": 2.9556352387771767e-07} {"commit": "9a978d68b41f996af8f601253930bd1412ed8d1b", "message": "MAINT: Some code cleanup, simplifications.\n", "proba": 1.2671264926211734e-07} {"commit": "921d5d4ee067317ffa9252084781b30ffff4ad86", "message": "muscle cloth update\n\n", "proba": 2.4182756419577345e-07} {"commit": "60fcab4458ba0023417257a76bfff05bde849d43", "message": "Simplify testing using two main methods (assert OK and KO)\n\nTo avoid duplicate code for the tests\n", "proba": 7.0642581704305485e-06} {"commit": "532ca48aba9dbf34dcc8d2ae746dfba024c0724f", "message": "Addressing review comment\n", "proba": 2.380870114393474e-07} {"commit": "430754105a3a50ba3de1747af24d7447f18728d9", "message": "Corrigido precisao dos campos decimais do ECD\n", "proba": 5.259665272205893e-07} {"commit": "29205582e07eaa8b28eea4b0691a9556d0999015", "message": "Remove unused LoginForm\n", "proba": 5.251535526440421e-07} {"commit": "db253b875ee40ac7784564581b39de365c1c3f42", "message": "In Python, disable applying xnnpack delegate by default when intermediate tensors need to be checked.\n\nPiperOrigin-RevId: 368221877\nChange-Id: I08a7df3d0026450943f13fb96fc27105d6170ab8\n", "proba": 1.4875389751978219e-05} {"commit": "6c2d64680d4c8f462163bfaaaa7686fab1cca460", "message": "Format an AssertionError string with space between sentences.\n\nPiperOrigin-RevId: 358008000\nChange-Id: I5cd32c08db34f49793f035791dd0dda4777d25bd\n", "proba": 0.9999995231628418} {"commit": "75ab36ea911145e82ccfe668afee5e6e32eda19f", "message": "effective_filebase in writer metadata to track per date filebase\n", "proba": 2.2968512780607853e-07} {"commit": "e832c2eeec7597287a883a51b6c54a6511cdedc4", "message": "Add comments back in\n", "proba": 1.4555065774857212e-07} {"commit": "79d8779069a154a74786c28bf9d8af3d0cbd9905", "message": "Fix setup.py to also include *.inc files for protobuf\n\nFixes #27697\n\nPiperOrigin-RevId: 243634475\n", "proba": 1.1549911249630895e-07} {"commit": "e139537de43ade6549c790332f41b586aed4f63c", "message": "Put generated .c files in intermediate dir so this test can be compatible with\nchange to detect duplicate sources.\n\nBUG=None\nTEST=None\nR=jeanluc@chromium.org\nReview URL: http://codereview.chromium.org/7633005", "proba": 9.02873296126927e-07} {"commit": "e498d8e91cb421665ea7f28c7113a9fc33548d29", "message": "add timeout\n\n\nFormer-commit-id: c2f43d90b3acf1d1bcbd4524d36d5068e97cd838", "proba": 1.4650009688921273e-05} {"commit": "d58be1fbd68a7109fe3eaa020b167fe6e29e1666", "message": "[CE] Melhorias no operador de muta\u00e7\u00e3o\n", "proba": 2.5802776804084715e-07} {"commit": "2626b5dbfe91a6b8fee7beab370e60a5a474c699", "message": "Add my implementation of kind()\n", "proba": 2.6489695414966263e-07} {"commit": "d004bf46236a4a0e2bd72b7106e58d2dcfdc2bf8", "message": "Add type reflection tests\n", "proba": 4.368777695162862e-07} {"commit": "8d8002062a0ecbf3720870d7561670a8c7e98da2", "message": "Fix test for auth tokens store\n", "proba": 2.039470246018027e-06} {"commit": "392a5d35a13ef28dbab0a661408719334e4f5efd", "message": "Added filer_per_layer_K argument\n\nadded possibility to have different amount of filters per layer\n", "proba": 2.880215674849751e-07} {"commit": "fcde1cfbef1bbf85d245a6a1706b280297e75c1a", "message": "Allow Metropolis methods to tune throughout\n", "proba": 1.256880750588607e-07} {"commit": "205564aa9e7c69b4ad3c0cb12d1df0561e361d69", "message": "Made the main function minimal and separated the main logic into a function\n\nThis is so that the Live Rule Tester can call the function.\n", "proba": 3.3834057830972597e-06} {"commit": "cabc0b0ad4b4256ca77a2ed632fd3d274012bd7d", "message": "Fix traceback getting into Thunderbird preferences\n", "proba": 4.1822517005130067e-07} {"commit": "643f072cbb507b426350c9c914307e7c5b6da4fa", "message": "Removed Congrid function\n\nThat's like soo totally 2013.", "proba": 1.0333840805287764e-07} {"commit": "90632425f2adc4e7e14bce526c771d616e885c4c", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "7f43dfc790e9f7d18a31513ab739391b264fa12d", "message": "Fix new version check\n", "proba": 1.2623901284314343e-06} {"commit": "6a5b79f65ae61694aa96fe9ef73b5040d0250f34", "message": "Documented what the script does in the header\n", "proba": 2.4333457986358553e-06} {"commit": "78f45c15e0ffad7be8187c94082dea1aa827f318", "message": "fix bugs in windows scripts introduced by previous commit\n", "proba": 1.822971142928509e-07} {"commit": "2b745471efe898ab9abe42131bcbbf12cac9a8ff", "message": "vPing.py: code cleaned.\nJIRA: FUNCTEST-3\n\nChange-Id: I25bb3df162a61d027afcb260b33cb5c1dc87a0d7\nSigned-off-by: jose.lausuch \n", "proba": 1.355584515749797e-07} {"commit": "050536d6988012e48dbbce0f7ec3df4b0e5cdc4a", "message": "Removed test dependency and unnecessary code calls", "proba": 4.080203552803141e-07} {"commit": "639a692bc06cf31b5feb1d990740976884f88a0c", "message": "Fix key format (?)\n", "proba": 6.014151585986838e-05} {"commit": "db92f01ee4ccbde716c20a1f0b177de4b557a5d9", "message": "mejoras en PrintPedido\n", "proba": 3.967323607412254e-07} {"commit": "98c174a4c7792785e280c86a2274aed57c506148", "message": "travis import bugfix\n", "proba": 2.8502296345322975e-07} {"commit": "38b66e2aec60c3c8ae5b4a585d874c48e6a0c29e", "message": "less debugging info\n", "proba": 3.24874349644233e-07} {"commit": "a43c75f4b30fbe18b00fc4809113763f0036a1af", "message": "global variable fix\n", "proba": 1.0098469829245005e-06} {"commit": "d4f2fadd94603eea2c15f5bb8a2a7d29c0d39ed0", "message": "Hello David\n", "proba": 0.9999710321426392} {"commit": "02c8b95ba1adafe8952b9e197d017e0c8010cf8d", "message": "renamed setting & removed weird lambda thingie\n", "proba": 1.6882368925053015e-07} {"commit": "333b8c79fa61deded46ea93a30536d85002af771", "message": "Fix #549, compiler crash on bad template type.\n", "proba": 1.0449831222558714e-07} {"commit": "deb3f6013652d23a4641ea1ffba74864b315dd23", "message": "Remove GetDevTypes specification.\n\nSigned-off-by: mulhern <7b51bcf507bcd7afb72bf8663752c0ddbeb517f6@redhat.com>\n", "proba": 1.264897662167641e-07} {"commit": "47026e2493c50d2ca4b30e7ba6facf3718afaa14", "message": "while loop needs temp disposal, too\n", "proba": 1.2723018016913556e-07} {"commit": "2313e2208afaef7a7816d092a389ebb4d6f00d84", "message": "Ensure the method is called\n", "proba": 1.446476289856946e-06} {"commit": "c7a4690b58238925b9e82525ccf28586c5b04f3c", "message": "hack to make __Pyx_InternStrings() work for now: switch string interning off in Py3\n", "proba": 2.9344806762310327e-07} {"commit": "50a77fdd5f2e1a267fd45f6f8aa2d6e13cc2bc36", "message": "skip zerorpc test for pypy < 2.6.0\n", "proba": 3.6584719964594115e-07} {"commit": "84ee8e9c1ce761c18ed300bcb767c12b88bf1c0c", "message": "better error message\n", "proba": 7.083193850121461e-06} {"commit": "daf520b03345e270fa8cca81c4dbc3d9f46b413c", "message": "tiny tweak to allow BatchEncoding.token_to_char when token doesn't correspond to chars (#15901)\n\n* tweak to allow BatchEncoding.char_to_token(0)\r\n\r\n* update docstring\r\n\r\n* remote trailing whitespace\r\n\r\n* make fixup\r\n\r\n* make value checking for span_indices explicit\r\n\r\nCo-authored-by: Sylvain Gugger <222c4d44cc8ec39802c192ed0aa3f97cdb77ff4e@users.noreply.github.com>\r\n\r\nCo-authored-by: Sylvain Gugger <222c4d44cc8ec39802c192ed0aa3f97cdb77ff4e@users.noreply.github.com>", "proba": 3.5501696515893855e-07} {"commit": "940ece9ab513fc32a9496e04887c207b17d05a9a", "message": "more empty_tuple usage\n", "proba": 1.4780618585064076e-05} {"commit": "fedbb401519016d3feb7d3a57e8dc47e0f986bcb", "message": "add full ebs code\n", "proba": 4.040971930407977e-07} {"commit": "582653e9f309b100ebd77ed60905a5b15fa8db93", "message": "Make the ncvalidate target a hard dependency.\n\nBUG=none\nTEST=Build with a large -j value, other targets that need ncvalidate's generated headers should not fail.\nReview URL: http://codereview.chromium.org/256006\n\ngit-svn-id: 721b910a23eff8a86f00c8fd261a7587cddf18f8@804 fcba33aa-ac0c-11dd-b9e7-8d5594d729c2\n", "proba": 6.099250458646566e-05} {"commit": "9adda625d3954fb38dc877483ae1259c91514593", "message": "be more optimistic when parsing optional keywords: if (interned) string pointers are identical, we know it's the right type of object\n", "proba": 1.056124574461137e-06} {"commit": "26bcbc171b5674986ac238e4d8984534d97c217d", "message": "tests: add input policer thread handoff tests\n\nTest worker thread handoff on an interface input policer.\n\nType: test\nSigned-off-by: Brian Russell <760e7dab2836853c63805033e514668301fa9c47@graphiant.com>\nChange-Id: I1deddcc9711bccfde377290bc66a00f2cd4163e1\n", "proba": 2.2208714653970674e-06} {"commit": "b1244fe396e2ed6acb72b3ccd151fbde24f78198", "message": "Adjust yaml_reader for Waypoint type\n", "proba": 4.3232282109784137e-07} {"commit": "62bb2ed7c32fe7af668584ea4d5845cedb923d13", "message": "Add with-items use case to mistral integration tests\n\nAdd coverage for the use of with-items in the mistral integration tests.\nThe with-items statement handles action execution differently.\n", "proba": 1.56482670377045e-07} {"commit": "1f949d48a164f9438032343db51434c47cd4d1a4", "message": "before pulling latest upstream\n", "proba": 1.3775294860352005e-07} {"commit": "51fe435107ae68703f2fe25088ce022a4ecc989e", "message": "working on a threading based variant of Lock without majorityredis code\n", "proba": 1.6251058809757524e-07} {"commit": "cb262dccb4661ad39bfb543239ab982e67bc9c23", "message": "* subversion/bindings/swig/python/svn/core.py:\n Use direct string methods, instead of the deprecated string module functions.\n", "proba": 1.0790081717004796e-07} {"commit": "6ea2abfacd34f4e1a1d2e7bd0a236c9d2f74c4df", "message": "Follow-up to r27530 (thanks dlr!): Fix my bone-headed use of Python\n2.4 feature (set).\n\n* subversion/bindings/swig/python/tests/ra.py\n (SubversionRepositoryAccessTestCase.test_delta_driver_commit): Use a\n dict instead of a set for all_paths.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@867608 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 1.9991168301203288e-05} {"commit": "d63675014e2f56492316e9aa6e81fc4de66ea948", "message": "Fix a type in test name.\n\n* subversion/tests/cmdline/externals_tests.py\n (copy_pin_externals_whitepace_dir): Rename to ...\n (copy_pin_externals_whitespace_dir): .. this.\n (test_list): Track rename.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1665871 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.00010431533155497164} {"commit": "3e8c854f8a628c2c6c0a2c1246252e4bb3382909", "message": "Catch AttributeError while running saga in the testing environment\n", "proba": 2.0300787184623914e-07} {"commit": "aa82f6d44ab095c730c9cd4c2f65a9aed2625ce4", "message": "Address pull comments\n", "proba": 2.0040162951318052e-07} {"commit": "a2914eaf06f6eb25bd59c375a24f1b62d76fc332", "message": "fixed unit tests (vbl_mock_auth)\n\ngit-svn-id: ab9e6359e17eee95839c2924c2bc9e9dee76dd10@1176 1bbb43ac-ffe0-11de-8c0c-f1c8ac664a8e\n", "proba": 3.910112354787998e-06} {"commit": "a8d8cbc0e980739dea08bfa04c0c930c278affa5", "message": "Add some more error checking/handling. (#2768)\n\nAdd more validation to resolve \"lock level\" for lock commands.", "proba": 1.0320820820197696e-07} {"commit": "7050f13a5cda372d3fc003991981b04700114f52", "message": "Add volume cleanup to test_volume_transfer test\n\nThe tempest tests were leaving volumes behind when it\nfinished up. Turns out these were from the test_volume_transfer\ntests.\n\nThe normal delete/cleanup methods can't be used here because we do\nthe whole bit of transferring the ownership of the volume so the base\nclient isn't the one that ends up having access to the volume.\n\nThis patch adds a delete and wait for cleanup method that's called\nby the addition of an addCleanup task.\n\nChange-Id: I6d27c7748ae386d97e727ddf0f8bb94046e6e88d\nCloses-Bug: 1272533\n", "proba": 4.589527179632569e-06} {"commit": "033b77ebc475ea1064ae1e77f1fee326c0b1332d", "message": "[Type hint] Latent Diffusion Uncond pipeline (#333)\n\n", "proba": 1.0553245743949446e-07} {"commit": "63ebd11b18de1e3daebd21d97a6b027bae5e3684", "message": "#414 pandas-group-by-tuple (#415)\n\n- Change tuples to list to fix #414\r\n- Also includes the .travis.yml fix from #411\r\n\r\nModified:\r\n.travis.yml\r\ntsfresh/utilities/dataframe_functions.py", "proba": 5.176645458959683e-07} {"commit": "a31fbc76c49a4535926edf607004662c8227f8c6", "message": "Fix Camera Feature for Pix3D\n\n", "proba": 1.9774205384237575e-07} {"commit": "18d5452c0bcb05e2f034d285b3732befdd1121cf", "message": "[Discord] Turn off scientific notation for respects stats command labels\n\nFor ticks on histogram axes\n", "proba": 1.706308836446624e-07} {"commit": "a7ea3d28cc5c5092b463d1ea2a88053af6d7e700", "message": "NR-241 : Media Archive - Audio plugin\n", "proba": 1.2211557987029664e-07} {"commit": "4e58bcfe15144af1cd6dfde166a02291a9a3a413", "message": "add run_module\n", "proba": 1.4807275192652014e-06} {"commit": "98d2f835a2dd739c414abc524c3d2e067895b294", "message": "programming languages handling correction.\n", "proba": 6.345171073007805e-07} {"commit": "0f0cfe01323e92b12a54da8aa71ca0e3951956df", "message": "version increment", "proba": 1.5568882645311533e-06} {"commit": "bd79c43895050aafd9165a853d7b8113e08add38", "message": "Add email for contact form template\n", "proba": 4.3538045702007366e-07} {"commit": "4e66fc2bf45c057a5ce1a47b49430db28283fe74", "message": "redact ikowapi view tests\n", "proba": 1.5417862186950515e-07} {"commit": "c9e70018bda0df294c55deea2378eab07566118b", "message": "update network\n", "proba": 6.69770827244065e-07} {"commit": "a37356371cc87dc93b015b15abc97f103027eacc", "message": "Display mario output\n", "proba": 0.0005300907650962472} {"commit": "1f360212cafe64fbf9505ed842aa1350af157244", "message": "small updates in parse_utils.py\n", "proba": 5.129536475578789e-07} {"commit": "a96d5569c01e7ce0c629e7505a7c43117c9e9eba", "message": "Prints out line that is not formatted correctly.\n\nHelps user to find the fasta header that is not formatted correctly.", "proba": 1.1060550519914614e-07} {"commit": "0126d9317735097ebd8645acd4bdbe4ab432072c", "message": "Rename Ultimaker to Ultimaker Original\n", "proba": 0.9998733997344971} {"commit": "ae03d2a707ebad6e18790656e4d38125467a982e", "message": "fixed imageurl and category\n", "proba": 4.0840890846993716e-07} {"commit": "a328913ca39f508e8f15719a53b3916bc56e8ff0", "message": "Do not join the thread from the abortEngine function, as this is called from the GUI thread. Possibly fixing the issue bot is having on the UM forums.\n", "proba": 9.806695544511967e-08} {"commit": "aa022a4ac648ebf5c7fa818aa3ad297e188e3ed3", "message": "rewrite of the argument unpacking code, now using fast C switch statements\n", "proba": 1.9230667192005058e-07} {"commit": "9fd57e949b80e4f8d75d2881debf2ab16942834d", "message": "Removed comments in the server\n", "proba": 2.0641728326609154e-07} {"commit": "0f1551db96cd27ed20e62545cac1540a405e8f1a", "message": "fix bug\n", "proba": 6.400653660421085e-07} {"commit": "0a39c056684f07573119db5b9d4539eb0559b1c3", "message": "[LAD] Correctly replace __MDSD_SOCKET_FILE__ pattern and do so when rsyslog is installed\n", "proba": 2.2439924123318633e-06} {"commit": "d48ecb2dc419b802867461cc3020b13b25313ba1", "message": "added array id to custom JSON disctionary\n", "proba": 2.702078916172468e-07} {"commit": "f4d2f3df215d291d5a0ae6de0eb21b9414247b30", "message": "Clean up code a bit\n", "proba": 1.6493552266183542e-06} {"commit": "888dfc76c48e4d22a966e30988897128767930d4", "message": "[Discord] Improve map command clarity\n\n", "proba": 4.302519016619044e-07} {"commit": "2dc6cfb97a579c5560c40e9311b53603da4de962", "message": "[Discord] Improve variable name in ChessMatch update match embed method\n\n", "proba": 1.5555288257473876e-07} {"commit": "bc8afba8527887d3e800487812b4be1d5829b180", "message": "hello\n", "proba": 0.9999991655349731} {"commit": "28f8b104c9cac36fb71abbb64a148e5ac817cef0", "message": "Fix: hooks get enabled before auto analysis\n", "proba": 4.1500541669847735e-07} {"commit": "a99d41c209bc970495c6de5b08a04561c1494697", "message": "Added new wininst files to msi.py and adjusted some paths\n", "proba": 1.4170545625802333e-07} {"commit": "77e6bd2c5c81f76f07d5907d75c4dc7b344b8285", "message": "Update IPython/core/debugger.py\n\nCorrectly print stack traces when context is larger than lines of source.", "proba": 1.190820668739434e-07} {"commit": "281f486310a865b81b6658a56ba23d8fb1a7d0d5", "message": "Clean up ipdb docstrings for namespace magics.\n", "proba": 1.255868369298696e-07} {"commit": "adbab20fabf9a78a77fba52fbee4bf9f25fbc9c0", "message": "Stopped redefining time\n", "proba": 1.2246737242094241e-06} {"commit": "f3dbdf16e810c05927f2b1b808bac2430c3c22bb", "message": "Sprinkle deprecation warnings stacklevel in the debugger.\n\nThey seem to be missing.\n", "proba": 1.4162237960135826e-07} {"commit": "52e1f4c47111d83f60c9a2ec9d09a6df41e35267", "message": "Added saving timestamp to data\n", "proba": 2.14143568655345e-07} {"commit": "0027a7dd701d79f5da84123bbc9a78e6ecb2928c", "message": "Minimize stdout side effects in testing instances.\n", "proba": 3.6640622056438588e-06} {"commit": "81026e07e6b14fbd691ecc6aad2215bb2b3d8e07", "message": "store: placeholder text for information field\n", "proba": 6.196802360136644e-07} {"commit": "e943681baadd7c9ff6ded71f9219c384daecad53", "message": "Add translations for error messages\n", "proba": 3.8098838217592856e-07} {"commit": "db834802e372f3f136044f90d58617f3c3e5cb6e", "message": "Add uniqueness check for PartParameterTemplate name field\n\n- Case insensitive\n", "proba": 1.2274010430246562e-07} {"commit": "529987bb17a05c041cdbf3bbe2a98edda72872fc", "message": "remove unneeded Todo\n", "proba": 3.629760612966493e-05} {"commit": "fb067db64379330769b71f80e96fd75c118ea778", "message": "Delete newws.py", "proba": 2.7606260118773207e-05} {"commit": "4a9acc78897ff9aa58dde96a9c12d102dc281e8c", "message": "added strToFrozen\n", "proba": 3.660311165276653e-07} {"commit": "5a70fb9b3365aaa39536301a276c787065feb932", "message": "Keep original numbering scheme\n", "proba": 1.5399508583868737e-06} {"commit": "52fa2051713b422a43ab44dc28bd6347cf575837", "message": "Ejercicio 8 - Soluci\u00f3n B\n", "proba": 1.7774627281141875e-07} {"commit": "886ae7213692c880fc8e98379838a1a3df4bbee9", "message": "More test fixes for update flag being removed on images\n", "proba": 1.1546860889666277e-07} {"commit": "8a83f12362a5a2325d33975ebe3ce1c4f0dcfa47", "message": "v 2.1\n", "proba": 0.00018360365356784314} {"commit": "04d33e47079908f74aa961b0ca1ea2a2f18a252f", "message": "removed unnecessary __init__ contents\n", "proba": 0.0010323957540094852} {"commit": "3fc625f1bfda3307a9c63fd455530b41910f7c8a", "message": "Keras 1->2 compatibility fix: dim_ordering->data_format\n", "proba": 2.932779636921623e-07} {"commit": "6137a6f00abbeb81b080f534481bb255f950dd83", "message": "access oauth token securely through azure\n", "proba": 2.9717313054788974e-07} {"commit": "fab14f993d5d0e8d462f45c3c84e148fcbbc3f33", "message": "fixed a small typo \"passwrod\" -> \"password\"\n", "proba": 3.549496250343509e-05} {"commit": "333c71aa96557316b1376406ece2bfb45190d1c7", "message": "BibKnowledge: make XML/XSLT libs optional\n\n* Do not import XML/XSLT libs globally, only for KBT types, because these libs\n are only recommended, not mandatory. (closes #477)\n", "proba": 9.952601942586625e-08} {"commit": "3565597627a96108760a468b0374ef34ee48ae7d", "message": "Add files via upload\n\nChange to process_PDF to prevent negative probabilities", "proba": 3.847033269721578e-07} {"commit": "4ae95fc62e0751b6645a767021048dd53baf0f87", "message": "#82 fix last travis err: models.py run (need GHC-dir in sys PATH)\n", "proba": 1.141687491212906e-07} {"commit": "e209afdbf182e84ba16c87219a235623c4288f6a", "message": "WebSearch: fix Externalcollection engine property\n\nSigned-off-by: Jiri Kuncar <2bdffcb416fed3002465740d19a053a39918cbe5@cern.ch>\n", "proba": 1.0426000329744056e-07} {"commit": "2d6a58f45d7329594bf50059958ab2cb414c5719", "message": "slettede gammel writer\n", "proba": 3.5954002441940247e-07} {"commit": "cd5f824a2d756c8770be6f47d946c7e39c85228e", "message": "Fix postcode importing all\n", "proba": 3.005330313499144e-07} {"commit": "25afe52cbaa50ecfe7ab55111a945ad5468dfdf1", "message": "- Add check for thread to make sure it exists\n", "proba": 1.1382977049834153e-07} {"commit": "bfa3a4e11f98c46cfb75058f67834de8303151c3", "message": "[FIX] get_member_action access rights from int.instance view\n", "proba": 2.2855719805647823e-07} {"commit": "fc545d85c4324288cadf5b036aefb274cc232529", "message": "Bug 1144985 - Don't point mar urls at taskcluster yet; r=rail\n", "proba": 1.75709473637653e-07} {"commit": "e778e7609b176a55bab226181ab72a8ff343ea07", "message": "mrp_multi_level_estimate 14.0.1.0.1\n", "proba": 5.069870439911028e-06} {"commit": "5f384790eabc6315864a4b21b11447a67b4c5dfe", "message": "Make oshelpers.Copy command throw an error on a pattern not found, similar to Unix cp\n\nBUG=none\nTEST=manual\n\nReview URL: http://codereview.chromium.org/9309013\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@120041 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 6.230392955330899e-06} {"commit": "e5cc051bc7be854e253853d85b1de8b3037170be", "message": "always convert to floats\n", "proba": 0.999826967716217} {"commit": "88a0ebbe7fca2757c2d5d644058c22c896a8e92d", "message": "Add fullstack test to restart agent with active l3-ha router\n\nRe-start of the l3 agent hosting the active l3-ha router\nshouldn't cause data plane interruption, assuming there\nis no failover. Create a test explicitly for that.\n\nChange-Id: I5963c21e2b382a09c40b81e2446350696e16d265\nRelated-Bug: #1776459\n", "proba": 1.2856127113991533e-06} {"commit": "858558dfac90ea0f9bfb46cfa242a2f129a4f40b", "message": "NXP-12657: Use a constant for Nuxeo Drive folder name\n", "proba": 1.6545210712592961e-07} {"commit": "3242b76c019c1f73d0e39f8c1212556d7232086c", "message": "ashdfjkl\n", "proba": 6.4926348386507016e-06} {"commit": "2f777b886bfcd61bec50f9b8f46f584dc8329207", "message": "Fix bug MultiheadVAE\n", "proba": 2.6986151624441845e-07} {"commit": "ad423d065701785587d13d0fe7b566191e7378c6", "message": "Internal change\n\nPiperOrigin-RevId: 315855426\n", "proba": 8.780626217230747e-07} {"commit": "106821e9972f3fd1ff7eb669632603b37f5c622d", "message": "Update sequence test case so input is not scalar and splits are specified (#2675)\n\n* Update sequence test case to input is not scalar and splits are specified\r\n\r\n* Add spaces to make the checker happy", "proba": 1.4791029911975784e-07} {"commit": "f51869d806d19e2e25341bbcc619e7bdf65b3f7c", "message": "[FIX] openacademy: import _\n", "proba": 2.2728497128809977e-07} {"commit": "151d25aaaf1cbaea7803aa1ff7b730171d797b66", "message": "Software update\n", "proba": 5.53761935861985e-07} {"commit": "ad67b7ede7316d9ad1bf7cc7b127b06ad88d21ce", "message": "[MISC]Spaces\n\nbzr revid: pza@tinyerp.com-20131111092000-91hiny0sbvj9l9n0", "proba": 9.871080237644492e-07} {"commit": "898d9d4f9a314ae90a3a7cd1ca6b3c32ada84470", "message": "Return a proper JSON 500 in unexpected /formula failure\n\nRather than a plaintext Internal Server Error\nSee openfisca/openfisca-web-api#24 for why it is not in the main responder", "proba": 2.6958830403600587e-06} {"commit": "766d66a216365c1da8c03d6d7702f9bafabd4de7", "message": "More calculator sketching, added a missing import.\n\nNext, write async task handler function.\n\n\nFormer-commit-id: 46d2909834b02e4a7f101c0539e5309eda86b9b1 [formerly bea05ce25a8b1ed699d5acbe4805e544ff6ed71f]\nFormer-commit-id: cf5459a00296019cf9a6e6328bc1be4e5f58227a", "proba": 4.057956175529398e-05} {"commit": "e039ab1a704e415d93b27e1b6839fb34d7a93c9d", "message": "Some cleanup\n", "proba": 5.365279207580897e-07} {"commit": "c6e9f9bd6fdba922eb5374b33485b5f8c74ba753", "message": "Returned the number of affected sites\n", "proba": 1.6773717561591184e-06} {"commit": "cecbbd6de3b2d9ac63c24cb883780fe9c56e23f5", "message": "Fix required param\n\n\nFormer-commit-id: b289b5df1ec1898cfb3550652cb2ca715366925d [formerly 2d0d228519c0223fc1199c6eafac3e1ef174771f]\nFormer-commit-id: 993c56c12816682147a94a030c6db66af92a36b3", "proba": 0.00041862003854475915} {"commit": "6565e5bd88ebe5fde8d65664041a9e8f571ca7d7", "message": "switch to requests\n", "proba": 1.0998686548191472e-06} {"commit": "b50ad1505d499c946d4800ab3263ed24e4bd9f1c", "message": "Apply suggestions from code review\n\nCo-authored-by: CAM Gerlach <150f81a607ec10590081936a9d46d752f2e95725@Gerlach.CAM>", "proba": 1.063177705873386e-07} {"commit": "a79a186e79737e6a9c796dc484e85c5139cdaeaf", "message": "parallel.util: Use utils.localinterfaces\n\n... for LOCALHOST and PUBLIC_IPS.\n", "proba": 1.0880000189672501e-07} {"commit": "aeb89674731b3adcad44ade03306512aa66ba7cd", "message": "PEP fixes\n", "proba": 6.02587192588544e-07} {"commit": "59b3d8b5bce596583f5901f1b3b79a883b7b8e55", "message": "Fix stocktake export\n\n- Exclude MPTT fields\n- Fix foreignkey field references\n", "proba": 1.510875620169827e-07} {"commit": "1323154dfbc453959f3d64fef439288004f6461e", "message": "add test for SyntaxError on\n def f(a):\n global a\n", "proba": 0.00019328872440382838} {"commit": "69a735cd134723e4d47c02d21f4ff85a65d28148", "message": "enable test_main.py\n", "proba": 4.377186996862292e-06} {"commit": "967d288387a254f79edd8c4ecf512fd123961507", "message": "#15222: test_mailbox: End message template in a newline\n", "proba": 2.1537201178034593e-07} {"commit": "508125ab8819495d8e98131c3d09b0666cd22b60", "message": "Add forgotten import\n", "proba": 1.91727235687722e-06} {"commit": "cf405117b14a9bf249bb945ef54c4ad08ee25caf", "message": "Try to reduce the flakiness of this test\n", "proba": 6.384764128597453e-05} {"commit": "083a746ff3ef966c5ab7512a2aa6370d0efa1c77", "message": "Don't try to convert the test filename to Unicode with -U.\n", "proba": 7.581100817333208e-06} {"commit": "c108390955687fb76c3673cecaf4020cf8ecf927", "message": "Issue #12098 : Fix a missing import in the unittests.\n", "proba": 1.068811741333775e-07} {"commit": "f55ad7e613f1e92edfd124da5613fb0e267b53ad", "message": "[outlineOTF] Use boundsPen from FontTools\n", "proba": 1.8101376042523043e-07} {"commit": "9370520498fbb2eb63fdc2b150e6bb274f6639ef", "message": "Update new_game_popout.py", "proba": 9.218652508025116e-07} {"commit": "0cebb075f8bbeb450000bba3550acc4f201380e0", "message": "Fixed provenance info for shiftx2 test\n", "proba": 1.4711882556639466e-07} {"commit": "5ae30b4117908bcf682dd75e7b170599a63e8d4d", "message": "Call SchedParams(1,0) so the dialog is correctly re-enabled after something has been on top of it.\n", "proba": 1.0093783942011214e-07} {"commit": "a742fb22ea77c75fb49dff8903cb3c0af1f93edb", "message": "Define max_pp\n", "proba": 0.999995231628418} {"commit": "2c3e78895a5c9168f512cf2e114a862ebbe260ce", "message": "removed unnecessary comments.\n", "proba": 1.2809996974283422e-07} {"commit": "084b0441fab2ff90e31a5440ed55dc4a6190dbfb", "message": "Missed @login_required decorator on the node_logs endpoint\n", "proba": 1.74473498759653e-07} {"commit": "5f32e74f5c2b710b4c5eddf12649c8038e26ae3d", "message": "searching for missing data Binford continuous variables\n", "proba": 1.688159272816847e-06} {"commit": "efaecb1e20b610876e4ef45d92f93f7c9e3445af", "message": "project: add wrap_tool method\n\nThis adds a 'wrap_tool' method\n", "proba": 0.0007536017219536006} {"commit": "a3135c09d81de494bc5000581c2910ac8d911eeb", "message": "Refactor Siteupdate.git_changes() to make git calls more transparent\n", "proba": 2.7300794158691133e-07} {"commit": "28d49f4fd9e403acf3318f1098387190581ce283", "message": "Remove extra blank line\n", "proba": 0.9985402822494507} {"commit": "f8c4001e35a91b902b38c3eee89875e9c7aaeb7b", "message": "scm: add git pull/push to Git\n", "proba": 8.059084848355269e-07} {"commit": "92c123820be466ad76078537b457bb596b86c338", "message": "Put some meaningful standard includes in the sample configuration\n", "proba": 3.537249426699418e-07} {"commit": "8182ecd95d0202eae660a919f77c56fb22e2a257", "message": "Add flags support for message key iterator.\n", "proba": 1.1882114847594494e-07} {"commit": "3ceb6619d317eb42276ce67f960bbbf440b8032f", "message": "Remove leading whitespace chars\n", "proba": 0.9999905824661255} {"commit": "17a4804d8521beec3e827df3aaad855761dafbec", "message": "measure : fix stupid replacement.\n", "proba": 1.9131704220853862e-07} {"commit": "97a60fbb87da10571dcdae35cfa983f46cb7ebea", "message": "minor fix\n", "proba": 3.935496124540805e-07} {"commit": "c0252657256ee6eef64fdc3df5bf7132e9ac64d1", "message": "parse user info from config\n", "proba": 8.953501492214855e-06} {"commit": "38eb023f160f13189c6dfb527144009825bb7c48", "message": "elch_manager: reasonable logging\n", "proba": 5.747290742874611e-06} {"commit": "3179139d1e74db0977d3459999f63bbd8f0cf0e3", "message": "docstring for blueprint admin added\n", "proba": 1.564143303767196e-07} {"commit": "ae23c81ee18726755ed770d1d3654e50d28fb028", "message": "Update views.py", "proba": 4.614934141500271e-07} {"commit": "3bfd3ea70980acc02bf35b1654b6c616f4af45ec", "message": "update error page\n", "proba": 5.231266300143034e-07} {"commit": "fc33692ec4275086cb34115332ce2165d8ad9b45", "message": "In send_to_user, also send the message to the sender.\n", "proba": 2.5980213536058727e-07} {"commit": "f5829c7bd0ebdd50929ebc2aa24f03aca4a20c46", "message": "fix irc code 001 / 002\n", "proba": 0.9996634721755981} {"commit": "e5a3a49cfe6953160e6e3fbdf1ce9f55dafb2b40", "message": "Change data-checker messages to use Python logger\n\nFor consistency with 7e6fda311f8bed715fa4efad51c94e7b8b55cbc5, and\nbecause it's just a good idea.\n", "proba": 2.0771983599843225e-07} {"commit": "c4c54f51768528de47f0947b7be1c83e9384c0ef", "message": "Correct/update help text for the parser\n\n- add default values to output\n", "proba": 3.6018866467202315e-07} {"commit": "44e4a2b7ad1f49c106945854e7545da3031a4c84", "message": "Docstring, for @mrocklin\n", "proba": 1.83149765575763e-07} {"commit": "1e87ee7c5aa86877ff22b3b7cc6592c87b8f1724", "message": "Removed unnecessary guards\n", "proba": 1.1385142215658561e-06} {"commit": "cb20330b1f00ca7864338c7518a8f0883b3844a1", "message": "bpo-35699: fix distuils cannot detect Build Tools 2017 anymore (GH-11495)\n\n", "proba": 9.726630878503784e-08} {"commit": "8d43830ace662802d5071454b701fe96a94e9903", "message": "Fix logout on password change in Django 1.7+\n\nFixes #143.\n\nFor more information:\nhttps://docs.djangoproject.com/en/1.7/topics/auth/default/#session-invalidation-on-password-change\n", "proba": 4.501032435655361e-06} {"commit": "a6acf8a68ee5b2ef185f279b6169a34c2b70896d", "message": "Increase feature version\n", "proba": 1.9388168936984584e-07} {"commit": "d10b963661745611e1b69a411ee693fb58d12fa8", "message": "[demorunner] fix tests\n", "proba": 2.4780328544693475e-07} {"commit": "9c7430cf48537419ff79d1051d4533a0f0f5afef", "message": "keep word-level reference after tokenization\n", "proba": 8.635452104499564e-06} {"commit": "1ac48168baf8f18870bca0be2709838120eecd93", "message": "add validation to `offline.iplot`\n", "proba": 2.1399719685177843e-07} {"commit": "10ca6cb65d420376d40dbaef7fc7953ed06ac863", "message": "Resolve invalid UUID warning\n\nChange-Id: Idcc045a31a930c57a01c19b28192bb96ba64dbf5\nSigned-off-by: Stephen Finucane <4725dc7f3632bf126d9fbdc30c347e91e8d2fe16@redhat.com>\n", "proba": 2.997001331550564e-07} {"commit": "604a540c561af6b31202ddbd1be849edcb918c4f", "message": "[Responses] Add an As Is Tradition response\n", "proba": 0.000434228393714875} {"commit": "88d6be0c66694021847574d2e255d69bcd0bda73", "message": "Minor optimization in create_volume in HpSanISCSIDriver\n\nRemoving extra call to getClusterInfo in HpSANISCSIDriver\non every create_volume call. The cluster info is now\nbeing lazily stored in a local variable.\n\nFixes bug 1074201\n\nChange-Id: Iadf8383dbf87a8e82c649c312c67978c7dd3df71\n", "proba": 1.272093413717812e-06} {"commit": "4df58c5318011e7d3a836f86e9187922d001922d", "message": "change local_repo string from dict\n", "proba": 1.531494672235567e-05} {"commit": "fab67b32b253b2651dd3966b628aa5e0d5b4e986", "message": "[URLFollow-Twitter] expanded URLs probably don't need the space added", "proba": 2.7473563477542484e-06} {"commit": "8a92330b0073fce6c0922d506555b43d061f29ea", "message": "[URLFollow-KS] update currency code finder for active projects", "proba": 1.2162452378561284e-07} {"commit": "39cad2e6a7af116b542bc5a209a1f01906f1ec74", "message": "Fixed None type assignment error in package-score lib.\n", "proba": 1.0902414260272053e-07} {"commit": "76a0b5b56bff706a45daf732b903de8daca6781c", "message": "[URLFollow] add dev(s) to Steam follow\n", "proba": 1.4505442891277198e-07} {"commit": "35acb94c476f92268abc311c2de44c771ab178ea", "message": "don't add if None\n", "proba": 0.9999990463256836} {"commit": "417ae83b51b7a9bfdaa6b8feb310dcb58e086ee9", "message": "add test for deleting middle property\n", "proba": 3.5510737461663666e-07} {"commit": "60d362ad585e7e86db1384919c059dbbaf6a900c", "message": "ingest update\n", "proba": 1.908686954266159e-06} {"commit": "09013ac9a9ef906698e92d5dcf984554a8c6a4a7", "message": "Added FMRI Versions\n", "proba": 1.5179929846453888e-07} {"commit": "4d9f7964aa58157a87491fd8ebc493bcd76a9cb9", "message": "Only accept LD_LIBRARY_PATH, MODULEPATH and PATH as the path vairables\n", "proba": 1.712508463924678e-07} {"commit": "98e17fba0f64eb7dfd1f0edb8550305d92336e8f", "message": "add creation of .txt file with loglog slopes to save_results\n", "proba": 1.8556777092726406e-07} {"commit": "06499bbafc01260f458bd159ed49c457631824f2", "message": "Fix some of the tests\n", "proba": 0.9980733394622803} {"commit": "98b24bb017053aedda002da911436f16a9d164ac", "message": "Implement osutil: set_timezone()\n", "proba": 0.0002355213073315099} {"commit": "61c9d4f6798d81d6ae6d2e5641a8432121de52fa", "message": "Implement function: get_network_adapters\n", "proba": 0.9999990463256836} {"commit": "c58d5b8d43a35002abd92a067489b75a068107d8", "message": "Adjust indexing when checking item index\n", "proba": 1.0709804882935714e-06} {"commit": "7f1af658690d284946c6b25172d215c79f61e6ea", "message": "use adapter in test\n", "proba": 2.8375367833177734e-07} {"commit": "deb96907dc9c96e0ff8772d14cad765cc5e47602", "message": "improve crawler\n", "proba": 0.00012855767272412777} {"commit": "4d84359cc332bf1832a71e0a2aae789b2f4735b6", "message": "modified async core server file\n", "proba": 3.746862660136685e-07} {"commit": "0e69588ea6cb7fbd80b30b2d9322cf442fdb7c52", "message": "updates for latest heterodyne fpga design\n", "proba": 1.3590782543815294e-07} {"commit": "2c66afe7c8aa5466ea022229874db217b8c96ab0", "message": "Update on the file load error.\n", "proba": 1.3123623432420572e-07} {"commit": "f91622085d8d7fe62977582ae174850d6dc64943", "message": "Update how the campaign tabs process server events\n", "proba": 7.455973900505342e-07} {"commit": "8b015ffbb10f3e1c7aed60c12881a12d48cfbeed", "message": "[Discord] Add comments and improve command documentation in Chess cog\n\n", "proba": 1.2862918197242834e-07} {"commit": "4f65ffffaed0273bc6442e2abbc76384a1f2833c", "message": "[Discord] Replace chess command opponent input with prompt\n\n", "proba": 0.0010883797658607364} {"commit": "ea0c5a7b5e9ef248e712caeabf1e86a100eabe13", "message": "[Discord] Use error emoji Bot attribute in poker check command\n\n", "proba": 2.3756760469950677e-07} {"commit": "b3f4c3b9e6f9c5a9281d92efbdca1dbb6be210e6", "message": "[Discord] Stop betting when all players have called the bet for poker\n\n", "proba": 3.8481451269944955e-07} {"commit": "5361eec646a2ba13c56a475273a4522e60c0eac1", "message": "[Discord] Optimize rotmg command\n\n", "proba": 3.0285403340712946e-07} {"commit": "39cd42fa27b87b9b1604635236f8860759a4a8db", "message": "Set Dialog's orientation to vertical\n", "proba": 2.999626360633556e-07} {"commit": "8ebf51be6a6c478036577ca5a72cc5f251fcadfd", "message": "Make editor boxes work without binding to ELiDEApp.engine\n", "proba": 3.725711792412767e-07} {"commit": "e056988e0c090e93f99d0fa7020f8edd95df1b86", "message": "Move statement_number from module to Connection\n\nEach db session has it's own statement and portal namespace, so we can\nkeep statement_number and portal_number at connection level rather than\nmodule level. This should reduce lock contention for cases where there's\nsingle module and lots of connections.\n", "proba": 1.1438693547916046e-07} {"commit": "1b7cc327d148389c2c73d73140a24496b2f183ac", "message": "Resize buffer (rather than minbytes)\n\nFix for issue 73.\n\nAlso:\nChange buffer growth factor to be 2x (stops decimals when growing the\nbuffer and gives a nicer multiple).\nStop buffer growth from starting at 1 byte (when we already know the\nprevious buffer (default of 4k) was too small\n", "proba": 2.212489562225528e-06} {"commit": "8fe96990c5c663ba6c7bc89936bdd8490c7b278f", "message": "Make it clear that these are the same distances\n", "proba": 0.018751677125692368} {"commit": "57526e3c4894a768ff932580dc893739c35efd58", "message": "revert to newborns only in genepop after cycle 1\n", "proba": 2.5434283088543452e-06} {"commit": "435dc3c423b4159428e8d2b84ea3ee8e37277c58", "message": "Preserve request id in Karbor logs\n\nWhen the admin context is retrieved the user context and its request\nID is lost and all subsequent log entries have different request IDs.\n\nThe fix is to pass the overwrite parameter in Karbor's RequestContext\n__init__ method to the parent oslo class.\n\nChange-Id: I1091ddc8a36244132883932a3a21dea5274eb34a\nCloses-Bug: #1859433\n", "proba": 3.6107501273363596e-06} {"commit": "b02a89e9b717e509a7c9314b2d5b35c351f2c79a", "message": "API Filter Enhancements for engagements\n", "proba": 1.452108335797675e-07} {"commit": "c2e2d01e25b17dc36f700a34396ec13759c5d5fd", "message": "added nb and no to harvest Nb needs varaibles\n", "proba": 2.0952394663709129e-07} {"commit": "0dba256f3b21240fd4743c802ebb4ce650632032", "message": "[fix] party -> local_party in creating MEP\n", "proba": 2.0738413297749503e-07} {"commit": "6036cc5dd5f0cca78111907214a1388d5f9cc149", "message": "\u4fee\u590d\u542f\u52a8bug", "proba": 6.594385695279925e-07} {"commit": "d1c77a8ce0b7c4b1957e443a88bb797450e6f1df", "message": "Revert \"Al fer el canvi d'id a id_attachment m'havia deixat una cosa\"\n\nThis reverts commit be3d006f69580db4f2203beb5228c6ce830d2326.\n", "proba": 3.2291478646584437e-07} {"commit": "be622c26a7b6d6eb8a07f08ce47b925e18a6994f", "message": "Members Interests parser documentation\n", "proba": 2.2541495070527162e-07} {"commit": "519c2e4d2aef604c0502601cf605348ca44b83b7", "message": "NameError: name 'StandardError' is not defined\n\n\"Replaced reference to StandardError with reference to Exception.\" -- http://bugs.python.org/issue13859\r\n```\r\n File \"\\pyjs\\pyjs\\translator_proto.py\", line 37, in \r\n import pycompiler as compiler\r\n File \"\\pyjs\\pyjs\\lib_trans\\pycompiler\\__init__.py\", line 24, in \r\n from pycompiler.transformer import parse, parseFile\r\n File \"\\pyjs\\pyjs\\lib_trans\\pycompiler\\transformer.py\", line 37, in \r\n class WalkerError(StandardError):\r\nNameError: name 'StandardError' is not defined\r\n```", "proba": 4.636063749785535e-05} {"commit": "9fb6847e23a42bc4060b3a3e495a6918be1f7506", "message": "The ADT bundle link was 404'ing. This updates the link to the newer version of the ADT bundle which is up on the Android site.\n\nBUG=252776\n\nReview URL: https://chromiumcodereview.appspot.com/16867011\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@207980 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.6506675137861748e-06} {"commit": "6c644c56d53639175fd0d00dacc72e0df2d10680", "message": "Test combine_date_time\n", "proba": 6.732252222718671e-05} {"commit": "776ba5ca44ef8feb5ed9d3e99f977287ac27ae0a", "message": "\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0433\u0440\u0443\u043f\u043f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0431\u0435\u0437 \u043e\u0442\u043c\u0435\u0442\u043a\u0438 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e ", "proba": 5.467777555168141e-07} {"commit": "69c590d7cf2d328b9e6ef63ddf49933e67df9614", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "7e0f7c396c1f9bbbecefa9096a637d2acfb30e2d", "message": "fix: Make cast_site accept stdin as argument (#108)\n\n", "proba": 1.2944296656769438e-07} {"commit": "66e8d5ce648ebe0028b1443ff88ee6d45665bc86", "message": "set ratio to 1 if exception\n", "proba": 3.997743988293223e-05} {"commit": "20c92b487c448e182f84d961f5f1a1b032e2742d", "message": "Fix type hint for pydicom Tag in `DICOMwebClient.lookup_keyword()`. (#47)\n\n", "proba": 4.76893092127284e-07} {"commit": "1b7688f9a1cac4e8a0cbc1e4e817ebff8611acf8", "message": "Add blur to math.nd\n", "proba": 0.0002338890772080049} {"commit": "baff80c2d3003e10946ff7fde5ac01c1fe5e4122", "message": "Make Subarray and SpectralWindow hashable\n\nThese objects are stored as sensors even though they are technically\nattributes of a dataset, mostly to enable concatenation of dissimilar\ndata sets. When the sensors are concatenated these objects are compared\nby identity (via a dict) and not by value. This resulted in failure\nto concatenate similar datasets, thereby defeating the whole purpose\nof concatenation.\n\nFix this by making Subarray and SpectralWindow hashable so that\nsimilar objects will become equal by identity. Use a similar approach\nto katpoint.Target and friends by defining a description property\n(string or tuple will do). The description is not meant to reconstruct\nor serialise the object (yet?) so rather make it private. Arrange the\nfields of the descriptions to enable a sensible ordering of objects\n(especially for SpectralWindow, where the window with the lowest\nfrequencies should come first).\n\nAs a side benefit this allows the culling of the modified `array_equal`\nfunction which only served comparisons of Subarrays and SpectralWindows.\n", "proba": 1.2823523320548702e-05} {"commit": "b97edcc911419197099338085f0f2937286dead0", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "ca1cfcb230d35925b86baf1201f67868249fcade", "message": "adds wraps to monitoring so functions have their names back (#2225)\n\nCallables lose their name attributes when monitoring is turned on as the wrapper function for monitoring doesn't wrap callables correctly. More details can be found in this issue: https://github.com/cooperative-computing-lab/cctools/issues/2813. Issue is now fixed using wrap decorator from functools module.\r\n\r\n", "proba": 1.1217213824465944e-07} {"commit": "b99de7f7d91c1be99ee7ea04da997d48126fd08b", "message": "fix model finance\n", "proba": 9.650990477894084e-07} {"commit": "fab74bb78de0b2f54997198ed1837cf986bbdf3b", "message": "Fix ruby gems tests, again\n", "proba": 2.1218266965661314e-07} {"commit": "270dc6efe096899d19255359f33193baeef3ea9a", "message": "fighting with pygame surface properties on mac\n", "proba": 1.5252035723278823e-07} {"commit": "30fae05c0de8cf77aaf9aaf588a1926d7d883122", "message": "\u0423\u0431\u0440\u0430\u043d\u0430 \u0441\u0442\u0440\u043e\u043a\u0430, \u0432\u044b\u0437\u044b\u0432\u0430\u044e\u0449\u0430\u044f \u043f\u0430\u0434\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043d\u0430 \u0430\u043d\u0434\u0440\u043e\u0438\u0434\u0435\n", "proba": 1.414079406458768e-06} {"commit": "0728fca8c1c9e307c9ab3d187a6a4f462b67024d", "message": "Rename some tests for clarity\n", "proba": 7.507854752475396e-05} {"commit": "c162b3e36b81582f811a359a14c6fe93919c737e", "message": "revert Name -> Path\n", "proba": 2.2518054265674436e-07} {"commit": "c6ee53c9bb70511cab33600a1451950a0788cdc8", "message": "simpler vhd_files generation\n", "proba": 9.959492217603838e-07} {"commit": "1a9498478986fe02e797730f4f6abbf56c2d66d4", "message": "[test] remove confusing p2p property\n\nSummary:\nThis is a backport of [[https://github.com/bitcoin/bitcoin/pull/19804 | core#19804]] [4/4]\nhttps://github.com/bitcoin/bitcoin/pull/19804/commits/10d61505fe77880d6989115defa5e08417f3de2d\n\nDepends on D10320, D10321 and D10324\n\nTest Plan: `ninja check-functional-extended`\n\nReviewers: #bitcoin_abc, Fabien\n\nReviewed By: #bitcoin_abc, Fabien\n\nSubscribers: Fabien\n\nDifferential Revision: https://reviews.bitcoinabc.org/D10325\n", "proba": 0.0001360921305604279} {"commit": "fe0baa01d58f83bcf4b63d10989abfd69d045f77", "message": "Rewrote tor2.py with stem support\n", "proba": 1.4757861777070502e-07} {"commit": "4756f63490416451e50f5712106e6cd56c7a486c", "message": "always fold back coordinates\n\nwhen modifying via mouse,\nfold everything back to cell.\nnot ideal, but at least comprehensible.\n", "proba": 1.274896135328163e-07} {"commit": "0db9e9d0cd0262d6146709855408125dd20da8d4", "message": " Adding new comment\n", "proba": 1.835153540241663e-07} {"commit": "16ab928464a31254fe8294a83f6b4727290fdfbf", "message": "Real file download progress being reported now, not just block increments", "proba": 1.320200340160227e-07} {"commit": "2281406f9377c41f400716274328669bf62be45e", "message": "Inititial Sandbox, not secure yet\n", "proba": 1.4597142694583454e-07} {"commit": "78fb963cd5e2e79a0f3e07b984da82badc2f6047", "message": "Optimization: The built-in \"dict\" result has dictionary shape too.\n", "proba": 0.0001833529386203736} {"commit": "1e3fd5ed99f31760c41420cb1157330e102e32fb", "message": "if no extra metadata then use upload widget\n", "proba": 2.7460208684715326e-07} {"commit": "70a9f04f47e4ddc5e2f7b5b9cc801dff0dcd4c24", "message": "The main starter now can take default extensions.\n", "proba": 1.0733183586353334e-07} {"commit": "d5aad966f2f6787cc2a5c20e00226bfb64fd6c64", "message": "Switch to --ca_file for consistency\n", "proba": 3.6076207265978155e-07} {"commit": "c469654f0cb6d57b245ffab76bf0fd95acfbe557", "message": "some silly copy and paste errors\n", "proba": 1.7347336722650653e-07} {"commit": "747fa98c7a9ec7906dfba44e4860d300825eee39", "message": "Drop Py2 and six on tests/integration/modules/test_key.py\n", "proba": 3.2392520665780467e-07} {"commit": "2cd327f8dea00003ad64d09342ee3257048b2581", "message": "\u0423\u0431\u0440\u0430\u043d\u043e \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0441\u0442\u0440\u043e\u043a \u043a\u0430\u043a \u044e\u043d\u0438\u043a\u043e\u0434, \u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043f\u0430\u0442\u0442\u0435\u0440\u043d \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u00abcalculate\u00bb", "proba": 1.7432081733659288e-07} {"commit": "c7c5ee45e8fbc472b2c16add3e30130f3380474c", "message": "update: Changed sticky note message format.\n\nSigned-off-by: Peter Polacik <927ef618bd890d9f68b62aecc616c68ee7ccb4b9@gmail.com>\n", "proba": 1.1528705101682135e-07} {"commit": "adcaed54fd4888958945676da33322dada17cbb5", "message": "sourceTypes can also be None (RBL-7750)\n", "proba": 2.5262693270633463e-06} {"commit": "be2a2ab6a67beef97e3c3cf42bd5eeea6c4e55cf", "message": "[tests] fix - use rpc_timeout as rpc timeout\n", "proba": 2.3552290429051936e-07} {"commit": "8b467db1bdbcff7bb366f367c83126d395059b02", "message": "API: Adding a convenient runtests function in to run all TVTK and mayavi\ntests like so::\n\n from enthought.mayavi.api import runtests\n runtests()\n\nThis is convenient for developers and users.\n\n", "proba": 1.3796436348911811e-07} {"commit": "509356ba0354ce7f93c856fb6f261bf8ae14fca1", "message": "added a routine for loading DNN saved in HDF5 format", "proba": 2.465797876993747e-07} {"commit": "46b0616f6835918d3048edb875af378eba846f75", "message": "Updates\n", "proba": 6.962063707760535e-07} {"commit": "25b4cdc5889b93493e5a255804efdd79df9d7a97", "message": "[TH] merge the va output types\n\nVA has a number of cities that sort of act like\ncounties for election purposes. This isn\u2019t a great\nlong term solution, but until we\u2019re prepared to\nhandle these properly, merging them allows us to\nuse the cities as well.", "proba": 1.1216957318538334e-07} {"commit": "20858991b873a2c5bafd4ef97f766677ee7556dd", "message": "flake8 fix\n", "proba": 1.4749981858130923e-07} {"commit": "5452d49dac395a785785e0429b5922c9eb05e1d4", "message": "Python 3.3: When value is omitted, do not default to \"0\", an exception is now raised in that case.\n", "proba": 1.550305483988268e-07} {"commit": "0621bdcf3df68507501d54d821b976d3b50e610d", "message": "allow skipping matching in photomosaic() to rerender with different settings\n", "proba": 2.1194099986132642e-07} {"commit": "23708c294925cd7d012ca9ae0ba1250a6516aa0d", "message": "Fixed a typo reported by Alex Koshelev ", "proba": 1.1951439660151664e-07} {"commit": "6140507068c7a42a988bad951c1a6f120de741fb", "message": "Update cam_timeLapse_Threaded_upload.py", "proba": 3.973927675815503e-07} {"commit": "92da0d7f1b254ed9760716ec47115064ec89919b", "message": "Fix one edge condition when changing the unpack method to iterative version.", "proba": 1.1949319400628156e-07} {"commit": "16fca36c2032929589a718507a74c87bee52c161", "message": "move planarAxiPotential to top-level\n\n", "proba": 4.264328481440316e-07} {"commit": "0a4265282f240dc52acac4347636417a14274ada", "message": "update dict list in mixfeatures\n", "proba": 1.9760669545121345e-07} {"commit": "198e5256063d43006b5c245866604f5bd746cfcd", "message": "Success: Allow the plugin to be loaded from a query\n\nCloses: Sf#3513915\nSigned-off-by: James McCoy \n\nConflicts:\n\n\tplugins/Success/plugin.py\n", "proba": 2.973605432998738e-07} {"commit": "b73886423bf5b5e3f9656a18d4621235cac7c46f", "message": "Specialised CXX_HAVE_EH flag for windows and linux.\n\ngit-svn-id: 5b21af815eabb73dc5820112928ed0bea355bed4@115 9ffc3505-93cb-cd4b-9e5d-8a77f6415fcf\n", "proba": 2.3624259029020322e-06} {"commit": "27b49dd56167a30f9c4f5dd483a337d7bd43247d", "message": "removed import of unicode_literals to prevent errors with Python 2.7.5 (as supplied with major Entrrpise Linux distrbutions)\n", "proba": 1.1679106393103211e-07} {"commit": "9c62f5fbd1dcf9295fb90553eef30299eec85b1d", "message": "Cleanup of security docs.\n", "proba": 1.2080977285222616e-07} {"commit": "a69b437af705dc8fa4e1b38b86ddad77d6dedb54", "message": "Cleanup for the json property\n", "proba": 2.5217508436981007e-07} {"commit": "9858a44f53dbbec806a6e26598b26aada6abbc5e", "message": "agilent53230 driver: fix possible ValueError\n\nif there's no data, it shouldn't crap out parsing the data, just\nreturn an empty list.\n", "proba": 1.4124874780918617e-07} {"commit": "6a3862863dc4f1ada5afaadca48daac342a75771", "message": "More checks for order integration tests\n", "proba": 1.1718746861788532e-07} {"commit": "bdb854e6d4003733a1ebd10382ab79382cb5cac3", "message": "Don't attempt Rate-Limiting if app.redis is not set\n", "proba": 3.047433096980967e-07} {"commit": "4c084313d2e27a620f194e6282a51aa1e94f7a35", "message": "Change chunk so it only takes an int\n", "proba": 2.3688851342740236e-06} {"commit": "002aa415c8711eb484688cd867a8a70907e5e545", "message": "Remove _py_version_switch\n", "proba": 0.0005492456257343292} {"commit": "30a581f8af6efe7a6d2ff3ce803b728558bdce1e", "message": "Fix message\n", "proba": 2.1098258002894e-06} {"commit": "706b877019076a8696e17855297f66b05a2ab062", "message": "added vary_size to prepare_tile() call\n", "proba": 1.4077028254178003e-07} {"commit": "c5bb3551e675a7998eb8c2bf67cc2e5f6a9ea01a", "message": "Add dns.unpack_name improvements and related tests.\n", "proba": 1.1190715554221242e-07} {"commit": "a9482327727be721ba74c0251ec17f63f79fb1d7", "message": "fix faulty merge\n", "proba": 2.048944679700071e-06} {"commit": "230ee932113c1fc26c72f8f4edb7dcb3e5fdb516", "message": "change node view\n\n", "proba": 7.863031896704342e-07} {"commit": "ba81a24a03441f4029327934cdccd22a3c5a6eeb", "message": "Generate correct icns\n", "proba": 0.9999994039535522} {"commit": "64658a376ddba7541530d8520c6efb258466e099", "message": "Tune export list\n", "proba": 2.8494361004050006e-07} {"commit": "1976ed931a530a101e18ff3625117662734f056a", "message": "minor doc fixes to docker_user\n", "proba": 2.0106033105093957e-07} {"commit": "d8d9b294d58c1001cfaa1c92e221c2322004070c", "message": "more permissible input types for segment intersection\n", "proba": 7.725280738668516e-06} {"commit": "942e3b183859623d2f2a6bf874f8d763e960ea5b", "message": "Print AST during integration test\n", "proba": 1.4728097994520795e-06} {"commit": "790e71455f1aea2134a96d1e374897ce87b96dec", "message": "Fix spacing\n", "proba": 0.00041526646236889064} {"commit": "e561026d01aa36b316edf3cbfdb26d3db4b2e5bf", "message": "Add custom Hateoas links\n", "proba": 1.7196735768720828e-07} {"commit": "3d90587f909a7746be107bf11870a9a00f1d08c5", "message": "external/devlib: update to latest master\n\nremote: https://github.com/ARM-Software/devlib.git\n", "proba": 3.25538991319263e-07} {"commit": "0a6f38c9fd9a4b9396065b3a8da6f6029ef8dbbf", "message": "Mimic the default behavior of weechat.buffer_get_string() in tests.\n\nIt returns the empty string by default. We should do the same for tests. This\nrevealed a bug in one of the tests, which this commit also fixes.\n", "proba": 2.2495923701626452e-07} {"commit": "e032136bdb5dbc8dfede3dfef8f4ede735cc5f3a", "message": "fix spacing\n", "proba": 5.388021236285567e-05} {"commit": "9dd0158073608e71a36cc802766dfb6acadf8303", "message": "pylint\n", "proba": 2.1026107788202353e-06} {"commit": "a3c5de2585b44b8b697161dfad2859dd2ffbb536", "message": "Handle None in protect path.\n", "proba": 1.613403668443425e-07} {"commit": "194cb5e6db50d667b037de49168775189f350369", "message": "Make ip6 share a reference to ip's proto dict, not copy it.\n\nThis incorporates the patch from issue 99, thanks to liulk.\n\n\n\ngit-svn-id: c24decc6cc9e43397d358c131c6d3542a5bd9019@85 30ee8f51-df1a-0410-9115-614dbba9287e\n", "proba": 7.861704602873942e-07} {"commit": "15f34051eb2206231c7940ecf32d43c9d194ed82", "message": "Force reboot on uninstall on Windows\n", "proba": 1.3768639064437593e-06} {"commit": "45007d21640d25b4b937b16b8ec32f3e82fa7611", "message": "only order first few (currently 10) returned rows by the search results\n\nOtherwise two tests were failing with 'too many SQL variables' error on the generated query\n", "proba": 1.7233182006748393e-05} {"commit": "34b375ce88e621e3d4472021f21bdc3e9c8d541d", "message": "Separate background draw into a function\n", "proba": 7.1606755227549e-06} {"commit": "9fe8cfb7ff0abd431381d5d09171f23f94334d22", "message": "compare against version, not all info\n", "proba": 1.6235010491527646e-07} {"commit": "da5b802351bdce797e7efbdc279100cb5e575c52", "message": "screen update in fly game\n", "proba": 2.8450807576518855e-07} {"commit": "a9dfc31026c5305c54f66df7733e6c6db03f4c58", "message": "Addition of pre-existing image_id\n\nThis commit adds instance_image_id which can be used for conditional\ndecisions with-in the anisble playbook, such as potentially skipping\ninstances that already have the new image deployed.\n\nChange-Id: Id430d89e98ff277553c2ecf8f26df28ee6439adc\n", "proba": 4.292217909096507e-06} {"commit": "688c7cab9cc9259c7e6f7544fb85cb622f85b3e5", "message": "WIP: GUI dock widget styling\n", "proba": 1.3656394060035382e-07} {"commit": "5e879e5438cbd1338b89fd6224844289ed80bad4", "message": "Does not replace g++ by c++ compiler name.\n", "proba": 2.4840949208737584e-07} {"commit": "9b1f3705e21ebcc76a1edea101379391f2681910", "message": "char rank export added\n", "proba": 2.2397388477202185e-07} {"commit": "4fc0162c73178678281c0e09cf32ffefa4b7b923", "message": "client: Handle unavailable server\n", "proba": 5.24581423633208e-07} {"commit": "7dd10d88b89da4a10db45d6393fd05d0d2dc718e", "message": "Change get_check_by_name optional argument\n\nFixed grammar\n", "proba": 2.5816339075390715e-06} {"commit": "763a02cba9f14fceaa41157ee1e373e711477341", "message": "[FIX] l10n_es_aeat_*: Evitar problemas en campos related no readonly. Fixes #290\n\nCuando se tienen campos related, aunque el valor no se cambie,\nOdoo lanza una escritura en el objeto relacionado cada vez que se\nguarda el objeto principal. En el caso de la moneda asociada a la\ncompa\u00f1\u00eda, hace que aquellos usuarios que no tengan permiso para\nmodificar la compa\u00f1\u00eda (la mayor\u00eda), falle en la creaci\u00f3n del modelo.\n", "proba": 3.1068034900272323e-07} {"commit": "864f998ba1e0146f1ab8756490e20b187acd4ef1", "message": "Updated ctcsound.py for spinLock\n", "proba": 1.8241085797399137e-07} {"commit": "1f770780fc5b5039f750323f12e55f3a30b7706d", "message": "Added a test for code coverage\n", "proba": 1.221513343807601e-07} {"commit": "b0706ce3d5320de0a5caccbd77ca44b379cfac0b", "message": "At least make the magic work a little better...\n", "proba": 1.1357170137671346e-07} {"commit": "522dcc5f4be7271f85736160f10664a3983285b4", "message": "delete events typo\n", "proba": 2.2476317099062726e-05} {"commit": "e9ecd6faa44983c022529f2af0da76cb8430f224", "message": "Fixed minor mistake\n", "proba": 1.6085994047898566e-06} {"commit": "3e1ebbe5c6f41f27349481f3d9e5735ecd8fe5a4", "message": "Add true nesting of loops to the template processing. The previous attempt\nwasn't very useful. Loops can now be nested within each other using\n/**begin repeat1 and /**end repeat1**/ and cousins, starting with the current\ntags for the outermost loops.\n", "proba": 1.203759723011899e-07} {"commit": "b44ef97773465737118d551e6ce9787c88c82938", "message": "- typo\n\n", "proba": 2.366000262554735e-05} {"commit": "ebd031c047f40abd0989643c341dcfb7ee2e7c30", "message": "Revert \"Fix bug\"\n\nThis reverts commit cbe9461809fec8eb78ec79249161e34f32db50e6.\n", "proba": 1.2249196856828348e-07} {"commit": "aa1645320d831842222defbf3612ecfb206ade11", "message": "tempfiles for cluster jobs are now made using tmpfile=`mktemp -p %(local_tmpdir)s` in the job statement.\n", "proba": 1.0884504320074484e-07} {"commit": "ea374dec3c4af5bd2a598e7fb58485c14ca61058", "message": "Updated 'or_lookup' tests to give example of more compact syntax, for the sake of autogenerated docs.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%402897\n", "proba": 2.4348616989300353e-06} {"commit": "0dd41b65aaa0798a7a72a0d61d746bfa29bc3aad", "message": "Allow POST of fly and worm donors", "proba": 1.4270727888288093e-07} {"commit": "98c84798c62cc94d29133f8935cbece4232f0071", "message": "Making sure we got the realpath when using an absolute path\n", "proba": 4.258371006926609e-07} {"commit": "63e799d2b854ba313146a40a6fb9d1b9d3e6d38a", "message": "Added print for back sensor\n", "proba": 1.238661440083888e-07} {"commit": "5cb0f8bb28951f09beec7036601eab8796ab5d03", "message": "Removed cc_dynamic from libraries list for Gnu95FCompiler (darwin).\n", "proba": 1.068218651312236e-07} {"commit": "e4ba03301c51be7b0fd75bda44f952f30a97f0b2", "message": "MAINT: flake8 changes to ocb_scaling\n\nMade PEP8 changes as suggested by flake8.\n", "proba": 1.0290745677821178e-07} {"commit": "1f951ef641a3dc5ec52af2f59cd75a407de6ea8b", "message": "STAR dm: more stripped code\n", "proba": 7.310089245038398e-07} {"commit": "af1868452ee6869b32eed9dc355a8cfee7c81814", "message": "Filter out non-music on the flattr top list\n", "proba": 1.9044786313315853e-05} {"commit": "778e1e0eca8629706b05b39ae573002ec07a7624", "message": "added documentation\n", "proba": 1.860227740735354e-07} {"commit": "ba9e42016cb005735b3f8ec1d935c2a422914df5", "message": "+ update parameters tests\n", "proba": 2.183763427865415e-07} {"commit": "74845a4a4d91792ebd6f7bc660d13207df01dfb4", "message": "Delete piaa_output.py\n\nDuplicate file, accidentally committed twice after changing file name to be more informative.", "proba": 1.0107461889674596e-07} {"commit": "b9133e2fe7444b4449ab67f4d726c20ce5e21cd8", "message": "clean ups in presentation of names\n", "proba": 6.819447662564926e-06} {"commit": "b37be61807159443442f1df738c1caf16849a40c", "message": "Import installer module directly in tests.\n", "proba": 1.1067683658438909e-07} {"commit": "af18499e0d2c2017a01772153dbfa78c962458fa", "message": "Make sure source is a sequence of nodes before calling isfortran.", "proba": 1.9605320744631172e-07} {"commit": "1ebd0809af810c497655386b2991fd5241a2e60f", "message": "Small simplification in the views base class.\n", "proba": 1.0629810276441276e-07} {"commit": "88fc9f9fa06ff79934ab2aa0cc65e1080eb8f845", "message": "add: improved feedback - show the started action name and traceback\n\n- At the start of each action, declare which one is being run\n- Run all action work inside a try/except so that the traceback can be shown,\n instead of nothing apparently happening, and no reason given for it.\n", "proba": 4.546775755898125e-07} {"commit": "59da9b84c491fd5ca4f4c7add5891d5e9ee4b405", "message": "Make it work with astor 0.5 for now\n", "proba": 3.939288717447198e-07} {"commit": "b9fa08c1585561bf09d612be308d6f82637fa805", "message": "TrackhubCreationDirector abstract base class, documentation\n", "proba": 1.2545467598101823e-07} {"commit": "4ac7e5d15d3fba11ae37e5826ca6c7181539804b", "message": "Disable nested types tests affected by IMPALA-2295\n\nIMPALA-2295 causes tests combining paggs/phjs with collection types to\nintermittently fail because of memory corruption. This affects\nnon-scanner nested types tests.\n\nChange-Id: I63893fbde87189485455cf95a7f63eb7e8aa95f3\nReviewed-on: http://gerrit.cloudera.org:8080/747\nReviewed-by: Tim Armstrong <2f8e34250f03a653da3dc27f7ec203eafdde80fc@cloudera.com>\nTested-by: Internal Jenkins\n", "proba": 4.879295261162042e-07} {"commit": "b9fedd77784b1dbf46e9e6539cedbd552a9f40a5", "message": "facto\n", "proba": 4.014129899587715e-06} {"commit": "171fe9a53f4186fc8baecde4f27e4abfe0c975af", "message": "Check origin flag in Hixie 75 processor as well as HyBi 00 processor.\nReview URL: http://codereview.appspot.com/4528097\n\ngit-svn-id: a751b5b3dcfba0ee4592a85c40d2fdd063ca0d53@479 4ff78f4a-9131-11de-b045-6380ec9940d4\n", "proba": 9.042658462021791e-07} {"commit": "f5f0cc6998f28bee7ccdaf304d3bc5e7e45ab9a6", "message": "save memory allocation using kwarg `out`.\n", "proba": 1.2242668390172184e-07} {"commit": "bfad5885ca4daf26c47620508e42df1798988aff", "message": "[FIX] Fixed import error on git library.", "proba": 1.0640114567195269e-07} {"commit": "8c17d2076d54864094c3cd8ee51d514bc806c913", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "3d9afdeffc6c71734b04501d8b91252c9790dd8b", "message": "Migrated tzinfo doctests. Thanks to Stephan Jaekel.\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@13887 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 6.65807078803482e-07} {"commit": "6cf8166afeca96237abfd336ffdf5ab4a7b713dd", "message": "tweak idaho creation script\n", "proba": 3.803001220603619e-07} {"commit": "4d015197b897adf9f48f8a529163d11606d86509", "message": "use chainer.cuda.elementwise()\n", "proba": 3.1873659622760897e-07} {"commit": "d27ea9cddb1d30d2ea6112a57e8354f64e03e0fa", "message": "add bbox test for WGS\n", "proba": 2.10064754924133e-07} {"commit": "e3c00b821c959ae6699b695157ba6e63c56cd201", "message": "api.py - change sort() call to sorted() to address python3 error\n", "proba": 3.1045169635035563e-07} {"commit": "3021274b1360bb2e9fe42b1c3aaca4ffcb984d5a", "message": "sort opcodes by where they are implemented\n\n\nFormer-commit-id: 1d1e51b6cac5423672639a959851a23f7aea1460", "proba": 9.882292943075299e-05} {"commit": "20698e75bcee179d93d6ae8b60286139b9c454d5", "message": "search commands tests: fix opening files on Windows\n", "proba": 7.2816706051526126e-06} {"commit": "5f9751744e9a871019b69487aeb1089cb3e739d3", "message": "Separate funcitons, make login function which orcestractes\n", "proba": 5.494598735822365e-05} {"commit": "6218a251209093ba12889117d2ee6d56d4f7deba", "message": "Fix truncation conditional length, keep non-ascii chars\n", "proba": 4.658088437281549e-05} {"commit": "aabd5c8c549490759eb91df5174bfe89db42c118", "message": "added missing io import\n", "proba": 2.4696998934814474e-07} {"commit": "cf9299a3572c8f13d842b8b4adbc0c919cee703a", "message": "Fixed error in help message\n", "proba": 2.0235725628481305e-07} {"commit": "13a6e37a5c64caa363b22fd7239be4fe440b9f39", "message": "test_get_protein_sequences_for_human unit test placeholder\n", "proba": 1.3062943253316917e-05} {"commit": "7ba77209687ae1bb1344cc09e3539f7e21bfe599", "message": "Improve test of csvstack --filenames.\n", "proba": 1.4094275968545844e-07} {"commit": "950569ad12946b4421634a8c6f74fbc6c48537c5", "message": "recurse munge into list\n", "proba": 2.4545492124161683e-05} {"commit": "b2704503d4c6694deb0d94c535a43803a3d7fe06", "message": "Delete dropouts.py\n\nFuncitonality for adding dropouts was moved to genotypeArray objects.", "proba": 1.0408952277884964e-07} {"commit": "9289ca22940976b595cfd6c08d7a739cf04dd0b2", "message": "methods required in HTML5CanvasImplIE6\n", "proba": 6.925661750756262e-07} {"commit": "9341936fdcc9583ff5f01fddf7837f274d9f10fd", "message": "removed unfinished error message\n", "proba": 1.1167192042194074e-06} {"commit": "8f24132a627b20a19ba3181ffbfe23cc5e791b43", "message": "Added check to SingleSeriesProblem.evaluate\n", "proba": 1.351058216414458e-07} {"commit": "e98e7529d420c610daf3fde54be7180df4f6de19", "message": "Remove u'' or '' in output of pipenv uninstall and clean\n\n", "proba": 8.063520340328978e-07} {"commit": "2f2114b47618ef6435543c05d941d3191ef44d5c", "message": "refactor Valuation functions\n", "proba": 6.890925578773022e-05} {"commit": "c2352029dce5b886b604ed8a41a8cced8c6886ca", "message": "Add a message to talk the user away from reporting\n", "proba": 6.139438255559071e-07} {"commit": "fdad787681d06ea37c452dea02c0b7b8a72e519c", "message": "Graceful abort in case of an invalid option in configuration file\n", "proba": 4.380296445560816e-07} {"commit": "b2485d7879ea00aa745ac735beb786e3dd51cb3b", "message": "Refactor LDAPClient.bind() so it acknowledges completion of the request.\n\ngit-svn-id: 554337001ebd49d78cdf0a90d762fa547a80d337@167 373aa48d-36e5-0310-bb30-ae74d9883905\n", "proba": 0.00017076982476282865} {"commit": "241407f63bcda57499bf58e3b755df8052ecb3aa", "message": "add old nb urls and witch not found to 404\n", "proba": 5.934440991950396e-07} {"commit": "e796958b591a5c84c973eabaed39baf59930bf2e", "message": "Resolves #63 - fail gracefuuly when using make file and there are not updates\n", "proba": 1.0549422313488321e-07} {"commit": "e4bdc34aa37b8a639c547a084921e8eb873e1ac1", "message": "Add implementation to 'dtool readme write'\n", "proba": 8.648848961456679e-07} {"commit": "324bc231a65263ea1a7aaf16b027ca3f5179cd03", "message": "Fix nop filters for request documents\n", "proba": 3.5044112678406236e-07} {"commit": "b0e1ec8fc99f29ee63764a6201e211fccc0ced63", "message": "Extend Controls template to allow Standards.\n", "proba": 1.082529053064718e-07} {"commit": "1923b81dd9ec5590b15ada416c81b34d20dd34a0", "message": "Adding better error handling of badly formatted/dirty TAFs\n", "proba": 2.685854667561216e-07} {"commit": "6ff7389f85485b8aa2848aa0e7420569c0c06f37", "message": "Update pluginLoader.\n", "proba": 1.4794048297517293e-07} {"commit": "7ab2fc172931e3ddba61abc4d8d814a755c709df", "message": "cambios en el formato del taf\n", "proba": 6.455710490627098e-07} {"commit": "44f1560a05df53bb17f45b1d99c8a6bd9c7411c7", "message": "...and handle want read/write for Python SSL write.\n", "proba": 1.1580110026443435e-07} {"commit": "bafb41e671cb1369bdbd3dfdcb0f470616fe8420", "message": "schema: Always validate arguments\n", "proba": 5.577965112024685e-07} {"commit": "d8bf4fbf4f7852e5852264a1135ab3e1e062e898", "message": "Add functions for parallel MCMC. Not yet tested.\n", "proba": 1.1237493424687273e-07} {"commit": "c7d5bcc5a77e231052606cafd2248daaeddc245d", "message": "initial pass at including namespaces for leader typing\n", "proba": 1.4415515181553928e-07} {"commit": "091bb56ad160a8736beda34796ea644da0501d49", "message": "Removing old proccess checker\n", "proba": 4.5758815758745186e-07} {"commit": "fcc248de3a726922256443dff2ee62ca7d91428f", "message": "Code style.\n", "proba": 2.12452775372185e-07} {"commit": "0450b63541fb1d6390c6478e5741d04cfa12c547", "message": "Encoding bugfix\n", "proba": 9.057408192347793e-07} {"commit": "b38497b06d52f230f9688e59a107349b4867810e", "message": "fix -- output to stdout, not to stderr as by default..\n", "proba": 1.124047344092105e-07} {"commit": "ba1e665c977cadd1a0ae91fc9f4098e0981f5494", "message": "Refactored total volumes to reuse methods\n", "proba": 3.856094963339274e-07} {"commit": "a650c650012d2f39fdabd298b24c6864946584a0", "message": "15 time steps\n", "proba": 1.923708396134316e-06} {"commit": "26a8804046258aa7551523f5f627f465b625d1d5", "message": "Delete odi_scalestack_process.static.py", "proba": 4.001745764981024e-06} {"commit": "903acb713f28b4d1d0ce1f2c76b3b8d1753906c8", "message": "dashboard cleaned\n", "proba": 1.5647475493096863e-06} {"commit": "60f3c4e1bbd25d781cfba5993aac647d937c64c9", "message": "add BillSource to public interface\n", "proba": 1.9144370355661522e-07} {"commit": "5c02b7d29095e5fdbf907cb1cf89e6b37a2bf86d", "message": "[FIX] base.ir_edi: value of function fields should be exported on EDI Document ", "proba": 3.839193993826484e-07} {"commit": "8355c3be34b215a722539bcbf4ce67f2313970c4", "message": "[FIX] netrpc_server: close as soon as possible the socket, and do it after a communication-level exception.\n", "proba": 1.1085366224961035e-07} {"commit": "479a6cfaacd34cb6cda02ebaeba057fde593341b", "message": "Set default headers value in parameters\n", "proba": 8.356061016456806e-07} {"commit": "05aecd10b0da5062f609bbbe31c958bc8346ed8a", "message": "Allow adding services to interface 0 in nodes with more than one interface\n", "proba": 1.7302873800417728e-07} {"commit": "e235e98c6d9ec235a5c846751eb733547958f6c0", "message": "Back to get_surface_boundaries 2D\n\n\nFormer-commit-id: db59476d1a2de9d47a148adb590aec288db7bb07", "proba": 1.0262613159284228e-06} {"commit": "1bf616e0b0af2c55dc7adadab1db8a56cb99e337", "message": "Fixed extract/rupture [skip CI]\n\n\nFormer-commit-id: 2186a8f658c07c04c190a8739235d222c5dc94f8 [formerly 2186a8f658c07c04c190a8739235d222c5dc94f8 [formerly 5cf53c0b5294c9ef63c5a31cb90a7c7dbb5d0fd9]]\nFormer-commit-id: 85dab8b265b2533a581bc961f3005b6085dd7a93\nFormer-commit-id: f725aa0f99f8ebaf4a505c894193f9d5ab9328e2", "proba": 2.640187858560239e-06} {"commit": "b97f5973527c1b08702512b0f3fc73cf17030861", "message": "[skip hazardlib]\n\n\nFormer-commit-id: c488411d495836c8e2de1fd23acad01f211428c3", "proba": 3.803022821102786e-07} {"commit": "b3d278794dc16673c7f544fde17ee97a044dc6bc", "message": "Added a comment [skip CI]\n", "proba": 1.0967487185098435e-07} {"commit": "586bd9d3bec038aed36f3d190d311e0cf83fd38e", "message": "Edited comment [skip CI]\n\n\nFormer-commit-id: 3ed0f4c9ba3c7aa946d3e35c9a350fc801465b71 [formerly 4c029c55676e467a69f19bdfca5ea3f9b53f7e6f]\nFormer-commit-id: 9a2f4cb3fade59372cff00c06a55d64d13d1e887", "proba": 3.0907213499631325e-07} {"commit": "e893a7691b79737987523dc81da62ef1c1f16dca", "message": "Fixed a misprint\n\n\nFormer-commit-id: d0bcf5cbe65d90408157a33f170bb769fbd3a451", "proba": 0.00240769749507308} {"commit": "f57013feb375742256a84f247d0b5e1e9ca6ffaa", "message": "Better logging\n\n\nFormer-commit-id: e28135606dcb7188c791891b8f3c56dd063a84ae [formerly e28135606dcb7188c791891b8f3c56dd063a84ae [formerly 96ecc90fa5d0d304e042705aa37831bd15ecdfa3]]\nFormer-commit-id: 79b730bd2e2c2b574582dc9c92a8583489574894\nFormer-commit-id: 3d966d1acfc46d9776436721f92ddf9acbca2778", "proba": 2.0994771148252767e-06} {"commit": "2e786189580adefd3a68363fe219d6ede0b01985", "message": "Removed accidentally added code [skip CI]\n", "proba": 1.1067177041468312e-07} {"commit": "7058c7d468b4cbddbd8e00a61b72f59c806a2bff", "message": "Cleanup [skip CI]\n", "proba": 1.362569292950866e-07} {"commit": "498091830aebded959b9954fba209fd708586013", "message": "[skip CI]\n", "proba": 1.5403239217448572e-07} {"commit": "d52132ea28fad48b07263c8ad57a98e4690ec852", "message": "fix cranberry schema to have unsigned int for temp\n", "proba": 6.894175612615072e-07} {"commit": "db78888cda154e04ed8421a1ee1838ccda2baa77", "message": "Cleanup [demos][skip hazardlib]\n\n\nFormer-commit-id: 87b70740d7fa6499d0444909242f8149e130159f", "proba": 2.6885146553468076e-07} {"commit": "ace9a33cfe090f5316be90d28c277ec6e0db1be5", "message": "Fixed docstrings [skip CI]\n\n\nFormer-commit-id: bf5abedce46b516f0bd7d2bfe5ee84df7c8b9c7c", "proba": 1.28960971323977e-06} {"commit": "d58238bc49d598f2bfd3e523c914ab7bc31f2f45", "message": "more Knapsack\n", "proba": 9.915272585203638e-07} {"commit": "a646724812c60a0da7c63a7393bf569e062af5f2", "message": "Another renaming [skip hazardlib]\n", "proba": 1.1827599166736036e-07} {"commit": "3371ee4dee37796e0c4343fe91755cc0ae239ad8", "message": "Better logging [skip CI]\n\n\nFormer-commit-id: a2b775da22c25ec5ee6faa35838e65333ead2e7d", "proba": 4.1863339106384956e-07} {"commit": "47d6064eac847c316fab9b5e5fa76dfce505c10c", "message": "Less sites\n", "proba": 1.7291411325004447e-07} {"commit": "583319f89a3f0321d360b776192ce9867737c47d", "message": "Added a log message\n", "proba": 1.3511613872196904e-07} {"commit": "71891fc34296117a104397cefe92a0dc4e4b0678", "message": "Cleanup [skip hazardlib]\n\n\nFormer-commit-id: f601fd96774dec23e710508159884c5854012ec0 [formerly f601fd96774dec23e710508159884c5854012ec0 [formerly b674861872b91eb01e7da3ecfd02f4d3dbfa1e36]]\nFormer-commit-id: 21fc0d4cc3256246d70357ef6227c1a805647fa4\nFormer-commit-id: dbaaafdc09802f367cea5509f1603b9a44f815ff", "proba": 8.96701862984628e-07} {"commit": "fb3d5c987f5583502719dc03a91510c970a8ecf1", "message": "Added a correction factor of 0.1 to point sources\n\n\nFormer-commit-id: aa850811c2fcdf2ab85db621dd94a6bb399c2329 [formerly b9d6a002011d30c242dc423715ed6f3fc2ff97fe]\nFormer-commit-id: 246ac1f2c3db09868d3f2831b8506cce57d4d1be", "proba": 3.1312351893575396e-06} {"commit": "01915f63d02eae95d1abac17ff0ee5ff5b87892a", "message": "Tried to remove the projection in _GeographicObjects\n\n\nFormer-commit-id: 2437124ff88f9a08cf66a5d94e324bb6df33fcf5", "proba": 5.378127525546006e-07} {"commit": "ce16570fd77db183c1fcacffa3e534af988b9675", "message": "Added method ContextMaker.filter\n", "proba": 2.3219187994527601e-07} {"commit": "61cde7b98908fc309f6763cf29c0a1c10eab3503", "message": "Fixed engine test\n\n\nFormer-commit-id: 0816830d22ab79cde4f0249b86d5cab7f368d608 [formerly 0816830d22ab79cde4f0249b86d5cab7f368d608 [formerly b4dff11579cb95b09554da3a0ec6c729077c38c3]]\nFormer-commit-id: d7fed944691b6b450bb2e78bbe3390445cb717d5\nFormer-commit-id: 7df005c12695da5f259aa36ce6344660944ee06f", "proba": 1.1595353726079338e-06} {"commit": "5232597d574f7089f592aac0a5f25efd1ff7763a", "message": "Update test_blt.py.\n", "proba": 2.0775370046521857e-07} {"commit": "edd7e080a5b7e22370633dac4a31f79a214f89f5", "message": "Fixed a typo in a comment in the tests\n\nChange-Id: I738e1fc7ce4f70de5753b391e3a9fbd29f51d510\n", "proba": 5.211952611716697e-06} {"commit": "454519e01f89629e70b6e6a75993b46f65d89b74", "message": "Corrected wrong arg names.\n", "proba": 1.8323745507586864e-06} {"commit": "ff63f077fe68ae18b409598a3860d0abbc7442e3", "message": "HdpWrapper: fix num_topics property\n", "proba": 3.53195764546399e-06} {"commit": "86ecac7514067e5de81221d3d730e5e7bb694b48", "message": "first pass on replacement_handler() rewrite\n", "proba": 5.370808366933488e-07} {"commit": "42b91df81f4362461785f037ea9061a163ccbff9", "message": "shortened call_replacement_handler() sections in scrub()\n", "proba": 1.5379577007479384e-06} {"commit": "3a247b72ba39bb2f49099905c435127aea424fe0", "message": "Remove unused variable\n", "proba": 1.4636463674833067e-05} {"commit": "454a5939346562e0719809189fa7b72efb2b7c45", "message": "params\n", "proba": 3.754961653612554e-06} {"commit": "46cea9e23c069149335d512bd6a6d193089b501b", "message": "DOne.\n", "proba": 3.587529420201463e-07} {"commit": "6cd9af9d1c2f6b7e366c4bcc0b7c7422d4f776be", "message": "Add device events hook to app engine app.\n", "proba": 1.2534083282389474e-07} {"commit": "7b41e6c219a200ac91229dd54e4be313f3f29d99", "message": "Added in and out length for the request\n", "proba": 1.3047736047155922e-07} {"commit": "1e951be1e80272680123a3c42e924115fb882e24", "message": "major fix in appier session infra-structure\n", "proba": 1.7600397939077084e-07} {"commit": "38f2a163bb39fc869577d966be762604bc25c88b", "message": "reactions: tweaked the data model so theme to reactions is one to many.\n", "proba": 3.8185191897355253e-07} {"commit": "f10797b4b39c262fdb8a250386f7c61e7922005a", "message": "Check for CLI updates (from private pip by default)\n", "proba": 1.088446310859581e-07} {"commit": "f6be63484b083c07b09616c8e3dd2f916e0a4488", "message": "Change folder path of patches' tfrecords\n\n", "proba": 1.9662955708099616e-07} {"commit": "50c607d0870a230c89098adb27ffc650c35da75d", "message": "Issue deprecation warning on package import\n\nThis will let users know the package is deprecated when they import it.\n", "proba": 1.1655517084818712e-07} {"commit": "5434a9f93073ec9953e2a04263fadc6375a2a573", "message": "Passing message directly to graphics\n", "proba": 1.579330302092785e-07} {"commit": "3c33c48095a006905338df03b7005d81f328b783", "message": "Fixed typo\n", "proba": 1.2940510032422026e-06} {"commit": "8ce52602c0804d7888bcf50ce85050e085e0797d", "message": "environment: Raise environment.BuildNotFound if we can't patch up to the desired build\n", "proba": 4.819295895686082e-07} {"commit": "d48895bd53ffc90099beb76cf154c50a1ba23742", "message": "fixed word level extract features for roberta-xlmr\n\nSummary: Pull Request resolved: https://github.com/fairinternal/fairseq-py/pull/933\n\nDifferential Revision: D18783780\n\nfbshipit-source-id: fa0a27fab886a5fa5be8d5f49151d1d9dd9775f1\n", "proba": 2.2244505089474842e-05} {"commit": "0e9eaa2e1ecf1f9b4ea57fb327a23e8206a1498b", "message": "\u4fee\u6539DataRecorder\u7684\u5206\u949f\u7ebf\u65f6\u95f4\u6233\u4e3a\u4e0d\u5e26second\u548cmicrosecond\n", "proba": 1.368124031841944e-07} {"commit": "20baf365e7f359c94d933cdfe786924e30da3563", "message": "removed unused import\n", "proba": 4.2686903611866e-07} {"commit": "dc52f7ed5e733e4a8b322ca0e2f3092658b24014", "message": "Modified ipython banner\n\nThis is a squash of all the commits found in\n\n `https://github.com/ipython/ipython/pull/8773`\n\n - updated banner\n - updated banner again\n - fixed type\n - modified ipython banner\n - attempt at fixing rebase issues\n - modified ipython banner\n - fixed git screwup\n - updated banner\n - updated banner again\n - fixed type\n - fixed accidental deleted gui_reference restoration\n", "proba": 0.9994865655899048} {"commit": "2f58df1673e873dd58cbc51e57ace97fdd7d0305", "message": "removed old many2many function field on product.product\n", "proba": 5.974480927761761e-07} {"commit": "1db691c0e4838f72b753dd89c00efa052aed77e6", "message": "updating DABSBLANK to always be a warning\n\nFixing an unrelated comment\n", "proba": 6.509185936920403e-07} {"commit": "e4b383a79d89b13083477517f06c606ebe98878f", "message": "Remove py3compat cast_unicode from utils/path.\n\nin Python3 os.environ will always be strings, if you need bytes you\nmanipulate os.environb\n", "proba": 1.2421016435837373e-05} {"commit": "93adc7aa39a1cd172b4038085d8fdd65a3b02052", "message": "Uncached Emitter for the API\n", "proba": 1.819738741914989e-07} {"commit": "f2e9566287d844e6a0f23cbcd79023726a1cad75", "message": "More cleanup\n", "proba": 1.3239740326298488e-07} {"commit": "cb2d71bae482aca689f1b8781ba127df4770f81b", "message": "Also install x509-scitokens-issuer-client out of development if we're doing osg-tested-internal\n", "proba": 1.2701704577011697e-07} {"commit": "f749e6a4402b7e62e368e86d988fedb7e4c9b7de", "message": "Back to development: 0.0.19\n", "proba": 2.038018465100322e-07} {"commit": "a071cb16218c3f9179629b6920494b4e4d2e15c8", "message": "Improve variables name\n", "proba": 0.0005759416380897164} {"commit": "1acb4836fbac0546af996dc9e3a85905a5b12be3", "message": "support empty (not uninitialized) repos in gitlab\n\n * Empty repos[1] are repos with a commit history, but no files in the\n worktree. These repositories should be readable by WaterButler,\n but a workaround for a GitLab bug involving nonexistent directories\n broke this. Special-case the root directory to avoid this\n workaround.\n\n * Uninitialized repos[2] have no commit history and continue to not\n be supported. Initializing a repo is outside WaterButler's\n jurisdiction. Instead, WB will detect this and throw a 400\n response with a relevant error message.\n\n * Release an unused response on error\n\n * Fix an incorrect link to a bug report\n\n [1] Example: https://gitlab.com/fitzcos/wb-empty-project\n [2] Example: https://gitlab.com/fitzcos/wb-uninitialized-repo\n", "proba": 6.067523645469919e-05} {"commit": "66608b724112680075d6e41edda7e631da69301e", "message": "add stop_id test\n", "proba": 1.4665642993350048e-06} {"commit": "a8145f318b4659802d5f9e244354f23b5ed32fb3", "message": "fix import error\n", "proba": 1.2652659506784403e-06} {"commit": "53afee9fe63dd485f61aa21dc98af3d35ce37395", "message": "Add test to check response for disponibility type different than 'work' or 'job'\n", "proba": 5.642462497235101e-07} {"commit": "4466d74b031ca665ef80af5b48f5241aa244468b", "message": "Fix dumb indexing error\n\nTake the last two characters of the state code (the state) rather than up to the last two characters\n", "proba": 0.0012287140125408769} {"commit": "e95a30c4a8b2f948380d288d5d67166f31972875", "message": "Remove unused DEFAULT_AUTOSCALING_MOVING_AVERAGE_WINDOW import (#3028)\n\nI incorrectly rebased/merged and left this in by accident", "proba": 1.3742071303113335e-07} {"commit": "b9848aba428c1c7c99a1fef64ff56b940abb9eb9", "message": "Remove num option from fetch_recent tweets\n", "proba": 2.4540435333619826e-05} {"commit": "e302b3b0f3f08ae65d83e7e7b89e21e0e862e64f", "message": "Exposing DML builders through the Database class\n\nThe `insert`, `update`, and `delete` methods of the `Database`\nclass return corresponding builders for the database.\n", "proba": 1.2032191420985328e-07} {"commit": "8932cdadaaece12aea2ef985b8ce68c9e8c6eeee", "message": "Neuron annotations: make sure the correct relation is used for annotating\n", "proba": 2.05133983399719e-06} {"commit": "2f8758cfadb0eb5fc78ac2013ad0bbab369057d1", "message": "id added to catalogue admin\n\ngit-svn-id: f54940f5b1e2c10e4cf70ac4665d32f7812f0db1@179 ae8131d6-8856-0410-bc7a-a2090b84ebb2\n", "proba": 2.736040300987952e-07} {"commit": "1cf3003518ceceefcc7d518ca4afbc5571bc18e7", "message": "Use get_or_add_addon\n", "proba": 1.7236008716281503e-05} {"commit": "d1137d8f4ee889ab4d40056175cae9d55c53ffe5", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "bdfd834472980d0151c6a20eb51cf2dceb236648", "message": "Improving comments\n", "proba": 2.6044563128380105e-07} {"commit": "49a5ab2fe6c016143231fab20e1497e68f88d981", "message": "Fixed an issue where existing atoms were not being added to new nodes\n", "proba": 2.532862026782823e-07} {"commit": "ec9430dae7027ad299aa33ec690f707613777880", "message": "[Fix] Default selling settings not fetched on customer quick entry form (#10243)\n\n", "proba": 9.915162024753954e-08} {"commit": "72dcb5663ee5259d33b5ab8a575d7f7d6552d516", "message": "cli: auto-load all subcommand libraries\n\nPrior to this change, every time we added a new sub-command, we had to\nlist the sub-command twice in main.py.\n\nUse pkgutil.iter_modules and importlib.import_module to import all the\nsub-command modules dynamically. This reduces the copy-and-paste\nboilerplate and makes it easier to scale this tool to more sub-commands.\n", "proba": 1.2802240689779865e-07} {"commit": "a3bf5f386b089ff2f1ad253355e52a18b141d3a5", "message": "Update util.py\n", "proba": 1.1862057363032363e-06} {"commit": "fda19eae8abd54dcfd5dd2d4e878a4e969528261", "message": "update FAIL\n", "proba": 0.00036223451024852693} {"commit": "dba298be54afecbd001a4b425d3341538f8f2b6b", "message": "Set HTTPServer class variable allow_reuse_address to 1, so restarting\nthe server after it died doesn't require a wait period.\n", "proba": 1.1376237551985469e-07} {"commit": "406acb3d42d60e8b2d2f6a7de430a6d52901ecc6", "message": "Display helpful message; print repr() of return value so the whitespace is clearer\n", "proba": 1.1301973472654936e-06} {"commit": "f897af469c35154731c92682f538f6e6b3229829", "message": "Bug reported by Jim Robinson:\n\nAn attempt to execute grid_slaves with arguments (0,0) results in\n*all* of the slaves being returned, not just the slave associated with\nrow 0, column 0. This is because the test for arguments in the method\ndoes not test to see if row (and column) does not equal None, but\nrather just whether is evaluates to non-false. A value of 0 fails\nthis test.\n", "proba": 1.1744014045689255e-06} {"commit": "9cb10ef23ac0390cce9bad69532436471353181f", "message": "Fix invalid code in clean-up on error situation.\n\nreviewed by: Andoni Morales Alastruey\n", "proba": 1.0310967809346039e-05} {"commit": "2c6a495351de52fe1de0b36d73f22e777ef3d08c", "message": "fix sqlalchemy url with sqlite prefix\n", "proba": 0.001026722020469606} {"commit": "88ff7efa2ce27ea9aaa2b5eae27c3ec0ac60cfc5", "message": "cosmetic changes\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@1850 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 7.155653065638035e-07} {"commit": "f4a773dfefa470f3b10cb08e7138e0962f32d376", "message": "Skip Python dependency if can't determine name\n", "proba": 2.900707386288559e-06} {"commit": "d74baf75f0057ff58c2f12f108616821f1d40617", "message": "I left some debugging junk in here; removed it. Also replaced a few\nmore instances of the bizarre \"del f; del m\" ways to spell .close() (del\nwon't do any good here under Jython, etc).\n", "proba": 1.1740795002879167e-07} {"commit": "bd5e3332e33671f697bcef3be8a556019dd1d60b", "message": "Fix \"refleak\" by restoring the tearDown method removed by accident (AFAICT)\nin r62788.\n", "proba": 1.074854836247141e-07} {"commit": "df1bdcb9602be6c10cd62f7dcc2677bff3644986", "message": "This should fix mktime test on Windows\n", "proba": 2.200843709943001e-06} {"commit": "f3fbd62fde02f44d3518700826e8346f5e1fa396", "message": "Some unit-tests to verify stuff.\n", "proba": 1.0537316086356441e-07} {"commit": "c5ca01a24c557878faa90648aad1ece1729fc66e", "message": "Change lipo voltages and timer interval\n", "proba": 2.428208176752378e-07} {"commit": "f06cd5a307159dbbb7e069980c32c2e011e8f681", "message": "Sleep time now in seconds\n", "proba": 2.8552756248245714e-06} {"commit": "9b997f347b6fb386e8f01790b36469bbd47d2665", "message": "Added reset method, moved summary result and screenshot related counters into reset method and called it from constructor and teardown method to reset counters for next test run\n", "proba": 1.2180352371160552e-07} {"commit": "9ba72f78977f11e1f26ba0d3ee6663a7c029857a", "message": "[Fix] get_approved_leaves_for_period module import failed\n", "proba": 4.1352467405886273e-07} {"commit": "abd7db1e4210dbca1f8764d81180fbd632b65a49", "message": "Refactor aggregated kinetic model to use new\npandas-based rate matrices.", "proba": 1.1239830399745188e-07} {"commit": "2d38d6a462998bc822dffbdb992cfcc9b8da878c", "message": "TST: unsortable only on PY3, #11138\n", "proba": 8.88036822743743e-07} {"commit": "926df1bc4dee9fc613f0fb31bb8c579943008645", "message": "Update plot_label_propagation_digits.py (#22725)\n\nCo-authored-by: Guillaume Lemaitre \r\nCo-authored-by: J\u00e9r\u00e9mie du Boisberranger ", "proba": 1.9082376923051925e-07} {"commit": "ebddb1005d3eda45f11eef08d83c271a657443b2", "message": "Add functional tests for volume set size\n\nChange-Id: Ie369c6366e1d0632ab1892fd019f5b12528c195b\n", "proba": 5.377756224334007e-06} {"commit": "5388e5fbf6cece25693edca4fa80f257564ef734", "message": "reduce iterations to make travis build not time out\n", "proba": 5.218231535764062e-07} {"commit": "eefb60a8e9a87468d9c45a8d6a685e9a2e608a06", "message": "change test to VV integrator\n", "proba": 2.151759446178403e-07} {"commit": "a3ba4dc77ba13c014448f340788246ac5aaedb3b", "message": "added 1.2 to list of convertible formats, as that seems to be working\n", "proba": 1.2770719592936075e-07} {"commit": "481e1489d1e8824e7d602e88fc1bfdd8ca140c5c", "message": "Added a local cache to NavigationMapper - avoids some unpickling costs.\n", "proba": 1.0426796137608108e-07} {"commit": "e5cec95596f95437d0fda3d60b3e1fe094d96fa3", "message": "quiz functions added\n", "proba": 1.7569841759268456e-07} {"commit": "3284f18168ce274516dc51293376571f5dfada18", "message": "copy the hasher from FrozenPhoneNumber\n", "proba": 1.5519192686497263e-07} {"commit": "fdada0eac27ae532cbac20306ef571382b77b4ca", "message": "Make table output of DAOStarFinder and IRAFStarFinder consistent\n", "proba": 0.00013726664474233985} {"commit": "37ab1184394b75108873c053d32a0495fcf9f83d", "message": "Waveform and feature data lim\n", "proba": 1.382869498911532e-07} {"commit": "86364b9d4c1f3aa59825405ee6b7427ecc72ab1f", "message": "Fixed bug in waveform test.\n", "proba": 1.2125242676575e-07} {"commit": "727927dc47cd6a5aafe2209bf1e70a352294a984", "message": "pier14/opc-client: Cleanup the existing playlist\n", "proba": 1.2296669638089952e-07} {"commit": "be8ea8d47b4dc7e263e3d35b911954bee147b37c", "message": "Change the error to a warning when a connection can not connect, such as no listening IPv6 host\n", "proba": 1.6370738649129635e-06} {"commit": "fe6da72e141d7cbf431f9b66f23b4b03a8d456a4", "message": "fix hanging aggregator\n", "proba": 6.831234600213065e-07} {"commit": "d91f4a3e978714d4aa9676f4861b0ff3eaa46649", "message": "RemovedInDjango19Warning: The django.contrib.admin.util module has been renamed. Use django.contrib.admin.utils instead.\n", "proba": 1.1408864253326101e-07} {"commit": "5cfd54994a78b1f4135de9b601cd3dd2a38e455b", "message": "Django 1.10: validate is replaced with check.\n\nSee\nhttps://docs.djangoproject.com/en/dev/releases/1.7/#modeladmin-validators\nfor explanation.\n", "proba": 1.0666408201132072e-07} {"commit": "5b9f9885ba5021abdf62bba85cb350f24d93f56d", "message": "Added format option to DateTimeField.\n", "proba": 1.2224479917222197e-07} {"commit": "ad295e8d3eab03aeea8956929046ef73edcbd69d", "message": "Code review: succint and pythonic statements\n", "proba": 1.7751956420397619e-06} {"commit": "873dc4651eeac68c724e19380e4e610c94b0168d", "message": "Reinstated explicit code definition of Aggregate.Created class.\n", "proba": 2.2191809989635658e-07} {"commit": "e897144ccc1fdab63ff9918f608eaa5dbdda8c7b", "message": "Removing nullable from manytomany fields", "proba": 3.766754446132836e-07} {"commit": "28bd8ddb530aeb7dd3b1899c28e88ae7569ff17f", "message": "centered RMSD instead of correlation coefficient in 1-1 plot\n", "proba": 1.8417493663491769e-07} {"commit": "ed00c3d71f93fdf47850dac6f157629ec2f4f4f7", "message": "Revise the OH imaging script for all lines at 1.5 km/s, and over the whole disk\n", "proba": 3.8577650229854044e-07} {"commit": "b1e6b7f169c8a65b54b0712f37c6baf7ce491b9b", "message": "[bugfix] correctly transform actor light\n", "proba": 1.246900296791864e-06} {"commit": "a4ad58d3bcaea8e5063cc5e23f8bedb0e662f900", "message": "fixed error in loading table\n", "proba": 4.5467541553989577e-07} {"commit": "5f875f4586239864b5809abc2a3b829751829e32", "message": "Added rest of printing\n", "proba": 1.1801976995684527e-07} {"commit": "dfb63860ca9f6b8b10fc4879a21a25733e0277c1", "message": "psi stat expectations with slices\n", "proba": 1.6039548711432872e-07} {"commit": "a0f882002db32903c640d7d6fc00f3dffae959b8", "message": "default values for Enum in test_message_spec\n", "proba": 5.492895525094355e-07} {"commit": "89b52e3498777b58c77fd6a660e71d79c4de1565", "message": "Removed sys import (move to text.py)\n", "proba": 1.3282094357691676e-07} {"commit": "81a0b947ac28d3e6f02081466fca2cf135419575", "message": "UTZTMGRSET: Report test OK for patch # > 999\n\nOSEHRA-Id: http://issues.osehra.org/browse/OAT-69\nChange-Id: I71b92da79bc692a3f8467a99d328e9757a426fa3\n", "proba": 1.3675487764430727e-07} {"commit": "b5b5d9b6b3db924638e7d33ec557b0a658f1e05b", "message": "Fixing the same import problem\n", "proba": 0.0008764454396441579} {"commit": "61610e7024be54fc3ba9a67c03db7ebb0a88270b", "message": "Changing the default view graph to be 229", "proba": 0.9999980926513672} {"commit": "bae214dd6bf94480ad5d89dc0fab3492c596f1ab", "message": "slight tweak to the turking module\n", "proba": 1.3712616464545135e-07} {"commit": "59e491f7872970c2b5baf644106d96574d502e00", "message": "Strip possible blank before submit PCD information. \n\ngit-svn-id: f3880c1fc5096ce2109c8aec392d8e07f619f417@1725 c2973edb-eda0-4c78-bc6a-9341b269661f\n", "proba": 4.794358574145008e-06} {"commit": "b64ec26c4d87e46b49648e548ebb558c847624f4", "message": "Bug fixes\n", "proba": 6.413791311388195e-07} {"commit": "008ce8eb60ccf6ce0ebea4ee9ca9c6249291d5c6", "message": "abusehelper.contrib.malc0de.malc0debot: Added description \"Malware URL\".\n", "proba": 1.0201961231359746e-07} {"commit": "bbe09074c896cda631b6460ff74b014457929851", "message": "\n[IMP] redundant processes has been simplified one conditional\n\n", "proba": 0.0004101355734746903} {"commit": "8b5e5f8b323eb70d1960e1d9b8be1bb8a86b886b", "message": "[MERGE] merged the branch with refactoring of method action_move_line_create on account voucher\n\nbzr revid: qdp-launchpad@openerp.com-20111017101015-4h2m4ovaoo6z71mr", "proba": 3.377701318640902e-07} {"commit": "56150b1aef230cd7a7fb4cd8f44dd8884934d716", "message": "[FIX] Purchase: set value for field expected_date in purchase.order\n\nlp bug: https://launchpad.net/bugs/1016372 fixed\n\nbzr revid: cha@tinyerp.com-20120622113237-88laaa8603jr0k73", "proba": 3.943272872675152e-07} {"commit": "eef52352363ba1b5f12ecb04e9ecbf076235fa8d", "message": "Working on modifying 10km aggregate output script to calculate percent different between aggregated standard net flux and sensitivity model net flux.\n", "proba": 1.0127164529194488e-07} {"commit": "142a4d6c10605856a00ae3780e371b4c56c90fc0", "message": "Add test to check for a partial update clearing out tags\n", "proba": 1.8406150559258094e-07} {"commit": "f82928aaef7859b260508bb1441a1214d5963ea1", "message": "fix OptEditor for macOS\n", "proba": 2.944230175216944e-07} {"commit": "f7ce28e7fed9c3d7ca6a8162832442ccb71a7fa6", "message": "Added config_file argument for autoconfigure\n", "proba": 4.6979022272353177e-07} {"commit": "3ed29452717322c4871025c8956a80556f97388e", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "45f34dc1bdba427a1527bed0543c50449845cbc1", "message": "Changed headline of plugin list view.\n", "proba": 1.1911296127209425e-07} {"commit": "db62b4b5332474abbe39c97066b1970e58f69b0a", "message": "[UPD]\u672c\u5730\u6d4b\u8bd5\u5df2\u8986\u76d6\u4ee3\u7801\uff0c\u8bd5\u4e00\u4e0btravis\u662f\u5426\u8f93\u51fa\n", "proba": 1.769322892641867e-07} {"commit": "bf0c06a7f605c8051253afc6e6b04596ecdbd382", "message": "Prefix imported database board models\n", "proba": 2.0711374304482888e-07} {"commit": "1cdbd1cf28f15f13c0767ebc841b7ca195028a53", "message": "Adding root url redirect\n", "proba": 5.589776037595584e-07} {"commit": "3f4eabeca3182034a1a798397286da2930f10448", "message": "Grab javascript files via nginx\n\njs is essential for our app to work correctly. Since the live server\ndoesn't serve it up, grab it from the normal place.\n", "proba": 1.0367521241505528e-07} {"commit": "708f916be9060d6df17f53ee0e4acc59fd742c9c", "message": "Add kwargs to websocket message constructor (#1328)\n\n", "proba": 1.2434311713604984e-07} {"commit": "4b7e6d7df8a447873bc57adfedfb6013b915190c", "message": "Fix Node.namespace_uri for py3\n", "proba": 0.0007648964528925717} {"commit": "d0a3cbb95721808de4c73cd8e4d3ef8879d1f8ca", "message": "Updating installer for syntax on python2.6 and fixing error message.\n\nSigned-off-by: arbennett ", "proba": 1.2016961647987046e-07} {"commit": "698c6403952eb82ec28a59c02e8bde03f2598198", "message": "fixed typo\n", "proba": 2.684115770534845e-06} {"commit": "d4366fb4cac93cfb189beb80b571970f0c959d36", "message": "Added FeatureSelector test to nose test suite. \n\n", "proba": 1.0388404803052254e-07} {"commit": "7c806b37000689c0e923250b9c03cb80f49b6ecd", "message": "Fix mapping of the Arch table\n", "proba": 4.249391167832073e-06} {"commit": "2d71eb3f59ff0836f9c93414d073b8ee3f695afe", "message": "Minor changes\n", "proba": 3.7887019743720884e-07} {"commit": "e821270f00467d587344d38fd9d6ea4f5d5e4c20", "message": "Change all the remote_side argument to use Column instead of strings\n", "proba": 4.45459590991959e-07} {"commit": "92fdb7cab2ef8b14e8106e17a057ebeda041e314", "message": "Add DEFAULT_FROM_EMAIL to settings.\n", "proba": 1.201875079459569e-07} {"commit": "3a42b4458f85d8f2640c34fce79c9a99a79f5323", "message": "Revert \"add second db connection to coastdat\"\n\nThis reverts commit 179eeb46de10de72c52b8590e575a8106a3f706f.\n", "proba": 1.1679173184120373e-07} {"commit": "14a7d5305a3e5dfc73834cb6164def4c0706e740", "message": "Fix : cmdline GET output\n", "proba": 1.6397912077081855e-06} {"commit": "900b37fee45db789b413d55b497d87992c3dab00", "message": "Remove Welcome! Flash\n", "proba": 7.640662261110265e-06} {"commit": "f3385adda724516b8bbd0815ae156c4457c1e20b", "message": "Updated best feature weights\n", "proba": 3.233486722820089e-07} {"commit": "0bac51a8c3de81a35d6bf03e2457af532a3383fd", "message": "add more logging to reanalyze\n", "proba": 1.436288812328712e-07} {"commit": "b713095814420750c04221c01d339d19ad1ed097", "message": "Fixed call creation parameters\n", "proba": 4.4672395915767993e-07} {"commit": "94419ad59aa936fef5a9fb7c2f3cb1dbd13d75ca", "message": "rename to shiftLeft since slt is a global function for SLT opcode\n", "proba": 5.289590490065166e-07} {"commit": "49152781ecbfb4f51707e6e54641301038eba80f", "message": "set varchar length\n", "proba": 6.75867049722001e-05} {"commit": "e347c7a721f362375ce1be759e094033f3225505", "message": "Updated time encoder 'n' and 'w' to match geo.\n", "proba": 1.6633205746074964e-07} {"commit": "b7fc2bbd2ede1c82cdf19dccd186babfc1d8a3be", "message": "Commence canvas widget\n", "proba": 5.117804562360107e-07} {"commit": "063649fdd8525bdd3dcafccabe0366803645b2e6", "message": "fixed /quackless command again\n", "proba": 1.5136475894905743e-07} {"commit": "3efd544bee562f040bdf7ead6399d6eafbeab8bb", "message": "export url has export or Export\n", "proba": 0.0006303885602392256} {"commit": "9217cdf5aeafb4c37f91ac70146596246c13cecd", "message": "Multiprocessing\n", "proba": 7.634141070411715e-07} {"commit": "1bf9e2df33fac0270015e80ec92421f9cdf64e04", "message": "[lldb] [test] Watchpoint tests can be always run as root on NetBSD\n\ngit-svn-id: 4c4cc70b1ef44ba2b7963015e681894188cea27e@363551 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 5.204742592468392e-07} {"commit": "4137f9cf4ca939da93887bdda9350121f46a2533", "message": "fix making access for EditorItems\n", "proba": 3.5446788615445257e-07} {"commit": "366be686ac7c4de1bec7da5aa812f1d5feba0db0", "message": "Bumbed version to 1.1\n", "proba": 2.788216306726099e-07} {"commit": "810e8f081fcbd73f64acc3add709e404edc1393a", "message": "small cleanup\n", "proba": 3.856771684240812e-07} {"commit": "a1fa3f0d0a77916b15b02bc5b7fd164766568065", "message": "Add \"--enable-console\" parameter to monitor progress\n", "proba": 2.6693587642512284e-06} {"commit": "be64473a39c9def5c3bddf31d7b948bddcac1014", "message": "updated message\n", "proba": 1.4733701902969187e-07} {"commit": "4795eb8f7b59c915a15afef6ac884e46e2682564", "message": "Revert \"suppress error\"\n\nThis reverts commit 617b011ca4f733ca797fbfaf7524f93b36be255e.\n", "proba": 1.2945703531386243e-07} {"commit": "3e20f85dec66f9672b91ba52b858b2baa254a1d1", "message": "Fixed typos\n", "proba": 1.3044516435911646e-06} {"commit": "75dc65bc72e7c4467bba82275992fb6346dc2e05", "message": "dont import wildcards\n", "proba": 6.692944793940114e-07} {"commit": "e032e93be829144189f0f0aeb330cf0ad2170390", "message": "Fixed various small issue\n", "proba": 1.9337664980412228e-07} {"commit": "9812b64d58b3ed8fa3592825b76545fa30d5d6ba", "message": "Scopes bugfix\n", "proba": 3.9982413113648363e-07} {"commit": "dd492a940fb37fa4ba42f39b9ed52846ebe9aae0", "message": "Updated track parameter name.\n", "proba": 1.2533413951132388e-07} {"commit": "c21cd301244e0b781cdd1ac8dc4530a4c431156d", "message": "Fix bug in elastalert-test-rule with build_es_conn_config\n", "proba": 5.035549293097574e-07} {"commit": "2572230851d1b5a16101196399b52eab79d2d334", "message": "Add missing severity argument\n", "proba": 0.9996269941329956} {"commit": "b40ae3422ed5a5da8387d9c21bd25ae7ccf25ff6", "message": "use in keyword\n", "proba": 1.6596585510342265e-06} {"commit": "93db3543a576ccde905fc77d7c3ad825f6a100a1", "message": "change threshold\n", "proba": 1.34854974476184e-06} {"commit": "853bf17363c9e8a1c49d0ce807aeab5394cdd3d9", "message": "removed the slices parameter as it immediately produces ndarray\n", "proba": 6.537990770993929e-07} {"commit": "b76a4a988be03b3a925f0e1b6290dd26dc6d25da", "message": "adding ldflags_pre just in case\n", "proba": 1.9950023499859526e-07} {"commit": "f79f8cec538202f3a1e9a96c853dccf2adbbf19f", "message": "fix api content rating handler test\n", "proba": 4.451945869732299e-07} {"commit": "fe469911641169be81fc5c80d0932a256257a733", "message": "Added fix to temporal bug in eventlet\n", "proba": 1.8420480785152904e-07} {"commit": "df88bc165e0a505b07c84aea4a29bf3c048895ac", "message": "replace OSError with FileNotFoundError when appropriate\n", "proba": 3.902869138983078e-05} {"commit": "d53812272e8de3dd45cbb8feee9c936cd0c56be9", "message": "When creating preferences, make sure the user exists as well", "proba": 4.5824671701666375e-07} {"commit": "b4ee175bbc03fee987227dff2c05a622406f8cec", "message": "use 'is None' instead os '== None'\n", "proba": 0.9991846680641174} {"commit": "35109c4e3a4de821dc8f27ae7e1f460a71cb6643", "message": "reorganize code\n", "proba": 0.998976469039917} {"commit": "5d1f9d3eaa27c0abf555fe3c79e9c11f9f7167ae", "message": "Fix redundant warning about 'file_name' config value.\n", "proba": 2.396773766122351e-07} {"commit": "f7936df10402400b816dcf0863d14a6ea45a24b9", "message": "Make EvMenu nodes-options' 'exec' callbacks able to return a string for dynamic goto replacement.\n", "proba": 1.1494442020421047e-07} {"commit": "6ede2f93cae791a62855206845371143da3b7c2c", "message": "add error handling to watch\n", "proba": 2.6686714704737824e-07} {"commit": "26a68aa22be2fb632ee7dd47dfb7d71ac91b2b7b", "message": "Using ilike for case insentive search\n", "proba": 2.7895616767636966e-06} {"commit": "146ceb81cc688edcb71a6feae26a7966f63a606d", "message": "Remove superfluous close_menu call leading to two exit-cmds being called when exiting via custom end node. Resolves #1428.\n", "proba": 1.0256062665803256e-07} {"commit": "8f6c714b24f808ebfdfaed36131ccda125c5d825", "message": "Changed output to log, rather than /dev/null\n\nBy default, the log sends its output to /dev/null, but it's easier to\nreconfigure the logger to print stuff than what I had before. Plus, with\nlogging, when it does print stuff, doctest doesn't complain with a\nfailing test.\n", "proba": 8.020907671379973e-07} {"commit": "a324051e28d359a1591dff48fa4bbb32c3caf44a", "message": "add loaders __doc__\n", "proba": 2.114971039191005e-06} {"commit": "eed04b86c1832e67065c7b6b44b954ffa7380146", "message": "Change decimal column to use currency, add a decimal converter\n", "proba": 3.129202013951726e-05} {"commit": "bfe6c752aa2a95cc28109f4819cf6a9e88e7ee4b", "message": "remove unnecessary comments\n", "proba": 3.3880348837556085e-07} {"commit": "cddc3df37dc5ed7b6027d8fb58020fc3d4042b31", "message": "Return ValueUnset if empty\n", "proba": 0.9997040629386902} {"commit": "58b81f722ff0f0d1aca42ef1a5ccf40d09bdf85b", "message": "Also set the start_date when switching to custom day\n", "proba": 6.528196649924212e-07} {"commit": "856856a3da2f2927b4cb981273ce4492613c3f61", "message": "Fixes a comment typo in ComboSearchFilter.\n\nChange-Id: I0109fd27accabd505cb408af5147a3fb94260a4e\n", "proba": 7.903373625595123e-05} {"commit": "d8536c9f87fb6601379f3bd43caee1e11f94648c", "message": "Add a mocked test case for `salt.modules.virtualenv_mod` python argument.\n\n* Updated the `virtualenv_mod` mock test case to patch `salt.utils.which` and `sys.modules` at class level as opposed to every function.\n", "proba": 1.1287050227792861e-07} {"commit": "f451dca52bb6dd24a0b8033f7146b4a7cbdf57b0", "message": "Fixes small commentary typo.\n\nChange-Id: I826c51169298d91283b886a6c5b92a054c741b20\nSigned-off-by: Jo\u00e3o Sampaio <91b71a8e14ab7a3245dfc25734c50d4517e07311@async.com.br>\n", "proba": 1.7685501063624542e-07} {"commit": "23cc4d09bf6d0ac2110af24414971616491184f6", "message": "Improve documentation (a little)\n", "proba": 2.4216404881372e-07} {"commit": "d5d9179b09275b4bbd3fb6389371fea0d12f751c", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "e09826e7e22fe586e62d23a05840b4b1fe67eb6d", "message": "Fixing something for unit tests\n", "proba": 2.9919979738224356e-07} {"commit": "d88e8fa9017fe478fc36c0e01dba629c5c7b567d", "message": "MAINT: rename", "proba": 0.9990718364715576} {"commit": "9fe79171186e9e98aab266282c055a90dac9de18", "message": "Qt: Remove unused color from color scheme", "proba": 3.2899052371249127e-07} {"commit": "2904e8b2a3f855fa9e752e5d7571245c65717b4f", "message": "Test many-to-many with order through position field in secondary table\n", "proba": 2.2798182897076913e-07} {"commit": "d97bb53f74c11b654f506f7e14342e7b3582a4c4", "message": "Fix duplicate test method names.\n", "proba": 1.284694008063525e-05} {"commit": "bcaaaf39d86f2706d793bad0f8253cbc4451548e", "message": "Documentation\n", "proba": 6.194427442096639e-07} {"commit": "244915653392ee62d463b23d2904a1701d2ada1c", "message": "minor change\n", "proba": 5.548630497287377e-07} {"commit": "de7e99f866e37c94dacdccd4c16dea4eabe2fdbb", "message": "Preserve original stack trace for UnsatisfiableSpecError\n", "proba": 1.5120301668503089e-06} {"commit": "47543c5fc62ff14c063ab123fa6770b52c21e40f", "message": "testbench function\n", "proba": 1.4430551118493895e-06} {"commit": "be0b85f50b8cd4f7323d5c6def5c388c7a8fad36", "message": "fix webhook\n", "proba": 1.6589794540777802e-05} {"commit": "384685444f2d64f2731a22252cfe42d83c877175", "message": "added hidden option for manifests\n", "proba": 3.1093586017050256e-07} {"commit": "7581bd9b435c53b09d8ecb7683fd63b5d1399a2e", "message": "Switch to the next dev version.\n", "proba": 1.0725815968726238e-07} {"commit": "ab0a5001113af9d8d084e9b345d5d60f81c7fe5d", "message": "Fixed config file\n", "proba": 7.436977398356248e-07} {"commit": "b54f1bd990572ec62689580c6af0a4f2a9144b84", "message": "moved Image definition from image.image module into image package\n", "proba": 4.98841586704657e-07} {"commit": "3cbc728bc541bb2399b5c0e41732bf42f4dc2a74", "message": "Bump version number\n", "proba": 2.1583066427410813e-06} {"commit": "ae99e958a6f1b021e445a0ba4c665df4be13671d", "message": "Load config from file system\n\nThis has certs and other private data, can not be on wiki anyway\n", "proba": 1.3286110345234192e-07} {"commit": "842d2d25a827dd2311ed98d1e4cd8af078bf10bb", "message": "Add back 'team' (users) reporting\n\nTemporary fix until we've thought out what to do with tags in the more general case.", "proba": 1.1276334532794863e-07} {"commit": "8b67f858449e64e75892ce279e0fe2a3d445532a", "message": "Convert libcurl and openssl builders\n", "proba": 9.267077984986827e-06} {"commit": "12e4cc9c9f0eb3bbc61734cf07c2d1f9341be056", "message": "Specify multiple nasm paths, and select the first existing one\n", "proba": 5.883487688151945e-07} {"commit": "b1a226271cd5d2b3dd803c1e70ef6081ffa24531", "message": "fixed #113\n", "proba": 3.9854768374425475e-07} {"commit": "abead201b383cc3a07ebe400d00debcaf5b87767", "message": "Da finire dumps\n\n\tmodified: easyjson.py\n", "proba": 6.384150879057415e-07} {"commit": "ce3c8e98841eba3c263e4d1c68eb1c9fc161f1b4", "message": "\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0441\u0442\u0438\u043b\u044f \u0432 utils\n", "proba": 5.501422492670827e-06} {"commit": "4787c9e1b895b5ce0bdd0fedeb537a971fab5933", "message": "add management command to benchmark get_direct_ccz\n", "proba": 7.912717592262197e-07} {"commit": "92f6910cf0841273e4abc3c68b215ec727d6a622", "message": "Complete logic for island posters on Treasure Island resource\n", "proba": 1.9571508858007292e-07} {"commit": "35bbd65cfb02ad1acdb5bd2578400495bdb73578", "message": "Increase scale to avoid having det=0 matrix\n", "proba": 1.2954265002917964e-06} {"commit": "f2c08336048552b1204c83b7cd3b6e3750041346", "message": "Remove the inappropriate use of parameterized axis\n", "proba": 7.271080539794639e-05} {"commit": "5948a96cd541453c87abe267cb20230706bc5bad", "message": "fix comment in cutensor test case\n", "proba": 2.5198062303388724e-07} {"commit": "db356499cf079ec9284baf16817d3c3054d8688d", "message": "Add source_added tests\n", "proba": 1.293804189117509e-06} {"commit": "38acbe3bb460442f86ec37ec19c22baf90ab3d54", "message": "Test recursive get of Links when Links are nested\n", "proba": 2.0437660452898854e-07} {"commit": "e341339fcf20d28624cff02d602ba4ae00899fee", "message": "seperate out the tests into its own test\n", "proba": 0.00036689022090286016} {"commit": "6d68022a274df2e19205d7313034cf6eb619f346", "message": "[py3] Removed filename encoding in file_uploads test\n", "proba": 1.7052660439276224e-07} {"commit": "9d60eebeb52ed3c266ab8e0cc6871ebeb08a5bc1", "message": "up (#13536)\n\n", "proba": 2.0727260618969012e-07} {"commit": "8ca2ef1a8b3dbe60330915e2150f4e415225f01e", "message": "[svn] more appropriate naming\n", "proba": 1.5836815236980328e-06} {"commit": "585317f3a03f55f6487a98446d4a9279f91714d2", "message": "Add a test of the linearity of scalar multiplication\n", "proba": 0.0028275628574192524} {"commit": "75fba0f53d6151d6762caadd9d34b9821ed6a5d0", "message": "unit tests: Fixed node manager test, to reflect code changes.\n", "proba": 1.0712710718507878e-07} {"commit": "0ea51c1c83054dec6c8f06ee3da997ac08e6d4c9", "message": "Fixing unit test that looked at publishable field instead of publish_status_id\n", "proba": 2.8993747491767863e-07} {"commit": "fe52a4dac4440cbce9df7c3a54badb799286791f", "message": "Removed redundant \\\n", "proba": 1.118793534260476e-06} {"commit": "7c10ba907b122d312cf7a3e9fe63b4076629f91f", "message": "Added API accesses to the report (they were being filtered out).\n", "proba": 1.0424648166917905e-07} {"commit": "cecbb5951ef806c5b4b7b6894c05e4d086730fb0", "message": "[REF] order fy descending (newest on top)\n", "proba": 1.1847728131897384e-07} {"commit": "3c85f1b42649f9cf9ddbf4f6dc483c020ab64145", "message": "Use rename_table in geocoding\n", "proba": 2.1489861410373123e-06} {"commit": "63ece25786663906384ad079f14ee0b6c1c8a402", "message": "Restore the dropout flags.\n\nPiperOrigin-RevId: 330802226\n", "proba": 0.0007405758369714022} {"commit": "1a17737ff85234fc0a2aa588df8044376cb7db9f", "message": "Remove unneeded env.manage() and add correct return type\n", "proba": 1.2002947187284008e-06} {"commit": "16f2a9d0fd53af37003a6c3e7d1cbca0d5379b51", "message": "Do more work towards console properties\n", "proba": 1.3445261970446154e-07} {"commit": "cd31afb989b513acd64423576328fa8e01a04fd3", "message": "Fail gracefully for markdown errors.\n", "proba": 2.2106367225660506e-07} {"commit": "01d191405d195426bf9ff5ba878b585879fc6b51", "message": "code_generator: Add generate_assign\n", "proba": 0.00011462078691693023} {"commit": "9ce421d723d2764755ed39c62d5ce5d0cf7089e0", "message": "Add colon notation parsing.\n", "proba": 3.287695335529861e-06} {"commit": "04817383726db59e32ebbaba0f50669e9171a04c", "message": "Make sure directory structure exists for example_encoding_datset creation.\n\nPiperOrigin-RevId: 337202316\nChange-Id: I188dc893e6d06b115dd1a767cab63da185085a60\n", "proba": 0.0001670424098847434} {"commit": "079692dd3d40b009edaa7bdad9270d58fa4d3994", "message": "minor bug in dbManager replacement\n", "proba": 2.091845345830734e-07} {"commit": "313771c73492882044ee47678d74193e895a9290", "message": "Improve grammar in build log error message. (#5214)\n\n- \"1 error found\" instead of \"1 errors found\"\r\n\r\n- don't print any build log context if no errors were found; just refer\r\n the user to the build log.", "proba": 3.955381089326693e-06} {"commit": "e6fb62fef4c5842dd02e80573a816a3898b9e4df", "message": "Preprocess silence\n", "proba": 9.197655685966311e-07} {"commit": "f0d2f623a2ba79d817ad881dc3c2cdd465280a1e", "message": "Tie application life to window life\n", "proba": 1.2550935934996232e-07} {"commit": "01e8dfb26e4942752531488b892103c0f0b60c03", "message": "First working version\n", "proba": 1.5139131903652014e-07} {"commit": "e10b85af7c8607489e7a42cd2cef1d7067430742", "message": "Corrected the docstring for method_decorator().\n", "proba": 8.351074143320147e-07} {"commit": "93c5cf3a31658c87e71ab64ceaaa8e04a641a8a8", "message": "testarch: fix LUT init param\n\nSigned-off-by: Alessandro Comodi <622632e70fd6771cf2cd943f69e5e51ab66adef8@antmicro.com>\n", "proba": 1.2011359729058313e-07} {"commit": "39768f34d15f78e6d6e8a251dfbddd40ddc3ad21", "message": "add new alto typing to parser\n", "proba": 1.8169951090385439e-06} {"commit": "42ca6c8bfc2b7598acd880a013f7898db5245004", "message": "Add dependency prefixes to CMAKE_PREFIX_PATH\n", "proba": 1.8677628759178333e-06} {"commit": "8b71644cde5dcb77f64a54039c08359c6d395df5", "message": "D'oh, don't set the attribute. It is calculated!\n", "proba": 1.2829362106003828e-07} {"commit": "62babcd3f85675411070fa01f499f1995bd9bcff", "message": "added similarity with respect to, fixed predictive of bug\n", "proba": 1.5598322988807922e-07} {"commit": "7e4d62488e6e29db806d9003da3e4a89feefac6e", "message": "Tweak pagination.\n", "proba": 1.6268643321382115e-07} {"commit": "82a58fec48417375ba94164d3e09db7ff429a291", "message": "Dequote possible quoted target\n", "proba": 6.726784249622142e-06} {"commit": "da45b7f13f101c230244efcc3d92a774cbf5997a", "message": "Column order retained for SDF exports, changed SDF export from rdkit to pybel\n", "proba": 1.258376443047382e-07} {"commit": "39401512db1302a84f5dca807ee2f838403a6953", "message": "Append translated raw frame directly into numpy array, to save memory.\n", "proba": 1.072088693376827e-07} {"commit": "42a655e1134d3b150998baa535f13741e277005c", "message": "Working on making Unemployment in django\n", "proba": 6.12247049502912e-07} {"commit": "450ecdd76c79fa18146ded0d303b4d42c5312f7e", "message": "Bugfix: check for metadata section count\n", "proba": 1.7630939908030996e-07} {"commit": "6be06d85e598e4fda6f3d35084e1c5cccb30cee5", "message": "fix double is_none()\n\nI added an extra is_none() by mistake the other day and for\nsome reason it sneaked past flake8. it's breaking all the\nbuilds so get it back in\n\nChange-Id: I17b311341169571efa856e062c6be7e8f362618f\n", "proba": 3.6662504498963244e-06} {"commit": "9f844049839116c4e36c95ca896023cd673bca29", "message": "* set up hooks for boto3\n", "proba": 1.3005571020130446e-07} {"commit": "76dd60ceebd52cf3b1d49b2c199a461878ef5c7b", "message": "GATK: don't assume gatk bioconda wrapper present\n\nAvoids confusing errors if bioconda `gatk` wrapper not available on\na machine. Thanks to @bwubb\n", "proba": 1.222055630023533e-06} {"commit": "d3c390aef6b00e0ba4f8cb3a3c6d2e4dc9512c42", "message": "now fstart doesn't require the admin to actually be in the game.\n", "proba": 9.89145618746079e-08} {"commit": "0f9bfe2d2ab0ec16e183618d33fbcde6386d7afa", "message": "mandatory field\n", "proba": 4.920204901281977e-07} {"commit": "4a2e11f351ea4d10552f5d22e9b932459f340b17", "message": "solidtango: update to make it work on their sports page\n\nthey have updated their site to use a better api stuff\n\nfixes: #1467\n", "proba": 1.1516057440985605e-07} {"commit": "f2c7b74b1250a61d6f1784a2c264da6d83144e66", "message": "data flow from_,session_id\n", "proba": 3.910119630745612e-06} {"commit": "4355f50f0988323cfa039db3304616e915db026d", "message": "cfg/bubblesub/qc: use proper video size\n", "proba": 5.110849201628298e-07} {"commit": "5f3364c14c62adc97028d6083fcbbc181530a7f4", "message": "restructure linear's backward to reduce transpose times and make it more friendly to do optimization(also aligned with convolution, relu's implementation)\n", "proba": 1.1715673764456369e-07} {"commit": "03bb5f7524063b7fe3efa253b90e3123d83a0b0b", "message": "Start from 4th number\n", "proba": 0.0006542702321894467} {"commit": "6e8f1d94ac04ceb05791e0dcc58eeb78dbc38cdd", "message": "Minor logging improvements in alert\n", "proba": 1.6711975092675857e-07} {"commit": "63628b82836a5496a600f8663948a2cc2d16c61e", "message": "[#183] added None check for keys\n", "proba": 2.7389694423618494e-07} {"commit": "2fa70703ea0e1c23f2e5fc4a93a46a392d3bda61", "message": "picard front-end command for bamstats\n", "proba": 2.385087896072946e-07} {"commit": "143ba91daacd01cf37738d447faa92272088f1a9", "message": "Refactored solution for issue #43\n", "proba": 1.283942339114219e-07} {"commit": "8841113ff238e2859c6e653e884b5fcbd3a2cffb", "message": "to avoid downstream errors, return context if Site is not linked to any Community\n", "proba": 1.4948949456083938e-06} {"commit": "9a5881f5b78ceb347feeeb9624bd8a46993fdd3c", "message": "Skips None keys\n", "proba": 3.7222423543425975e-06} {"commit": "bd68187d4b1e8058ea5da0cdc8302ebd30712e75", "message": "Mention app id in error message when no versions found\n", "proba": 1.9638217452211393e-07} {"commit": "f13009ad215c570810abfa2275a0d04abae6d37e", "message": "Use server side searches.\n", "proba": 1.3217788819019916e-07} {"commit": "1ca6f746b6be0ef56886581487789cddbaeb18cb", "message": "More tidying up", "proba": 1.593863458992928e-07} {"commit": "4d15a19366533f75ec78ee271ec806145a3d458e", "message": "deleting simulations from web server memory when files are deleted\n", "proba": 4.0353532426706806e-07} {"commit": "45feb9326f359fb94ebeb17867bcd098ba6fd4b4", "message": "Make sure _start_event and _end_event are initialized", "proba": 0.008759130723774433} {"commit": "b8eb0c7694b0a1f84dd0ff2920ea0b9626005872", "message": "Output OpFunction return type in the same way as for other instructions.\n", "proba": 1.1264956810919102e-05} {"commit": "69c1a615f6bb7282998067f5c58c5d7249fcf5ce", "message": "Less confusing help txt for archiving command's --no-statement option\n", "proba": 5.038061203777033e-07} {"commit": "605a22f14dffae5669cc0776993017babc34a4e9", "message": "cleaning up unused code.\n", "proba": 2.0046680049290444e-07} {"commit": "2fedc43c50bd933924046b6f79633687a452116a", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "c0b7e14cb2adf5e686a46d5d25c4aed63bac9f53", "message": "[VRRP] T1362: quote VRRP password strings to avoid config parse errors.\n", "proba": 1.0655915616553102e-07} {"commit": "2c47518393aafc60129c840090552dcc8bf089f7", "message": "[nacl] manage each request separately so one thread does not cause all filesystem access to block\n", "proba": 1.6833863014653616e-07} {"commit": "4abb0749091d365ce506f0c646545c8061b467cb", "message": "inline rules\n", "proba": 1.1577939176277141e-06} {"commit": "cbed6f4d838890d50d1d27032d5e831a0fb3cdbf", "message": "handle modifiers and sub-patterns\n", "proba": 2.983535409839533e-07} {"commit": "2d7fffe94a60a0375dfba6b6104e30410ee23fe8", "message": "Renamed 'decay' to 'ratio' (to match expectations), maximize deviation after mixing it with the old value\n", "proba": 1.663779949012678e-05} {"commit": "cc6fa6fa1607b5006b0db95f1cbf1a894c5eb2a0", "message": "report message l\u00e4uft\n", "proba": 7.673322670598282e-07} {"commit": "76253383162c317b5a526867318f43a63818c2ee", "message": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438\u0437\u0430\u0446\u0438\u044f \u0433\u0435\u043d\u0435\u0440\u0430\u0442\u043e\u0440\u0430 \u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445.\n", "proba": 1.6341977016054443e-07} {"commit": "b070297632853bf8dfdef6bf36aeec20e27eea66", "message": "LIKA-399: Fix parsing of getDistinctServiceStatistics response\n", "proba": 1.8448750438437855e-07} {"commit": "3a341516387d52b88eaa9437eabde24436d9b6fd", "message": "Identification requise pour supprimer un carnet\n", "proba": 1.982818730539293e-06} {"commit": "c4583367f447b0407b2f64989e0a0140bb4c7dd1", "message": "typo in cw tutorial", "proba": 4.964543904861785e-07} {"commit": "4eee2227354a673d1c0753c76e7ca5da4d1574c2", "message": "fixed bug where wrong clas type was used in super call\n", "proba": 3.254952218867402e-07} {"commit": "7a15fa253f744af3418fd8aeba99235b43dff362", "message": "Bounding box return value should be a tuple\n", "proba": 0.002459531184285879} {"commit": "302e789aa4ee33c8bbe00b90330901d500cfed97", "message": "Tests: Print used feeds for more easy debugging\n", "proba": 1.5541394304818823e-07} {"commit": "cfa3c0bee54aeb64269ad6ab86fb868477fd47fe", "message": "Fixed loop.\n", "proba": 1.726037055505003e-07} {"commit": "99db5bb018b4010b927c5ceaaf6d547c969fe482", "message": "Add more controls for the colormap input\n", "proba": 1.6949074677086173e-07} {"commit": "af8f58618a6150f4d50ebbc0d61367074b3bd4a0", "message": "bug fix: hopefully\n", "proba": 1.521258400316583e-05} {"commit": "f48601ceacbf9d05412aa5f45b6d4f9bb46d266e", "message": "update the script for GMC\n", "proba": 3.604855862704426e-07} {"commit": "d7baf900a39e9a209a737b4370b65e8e67902da0", "message": "Version bump to v3.6.7\n", "proba": 2.663672660219163e-07} {"commit": "f5e2e7cbb494fc111efcf4abd5c744091e9ee8aa", "message": "Fix function name error\n", "proba": 0.0023836088366806507} {"commit": "14609f9438afe1e4869624781cd73b7de1816d42", "message": "def articles optimized\n", "proba": 7.416119274239463e-07} {"commit": "f1a4ac5c3741517763d3d73bc4bc91eea5f0aed2", "message": "eospac: add version 6.4.2beta (#20681)\n\n* eospac: add version 6.4.2beta\r\n\r\n* eospac: clarify EOSPAC \"beta\" versions\r\n\r\nCompared to 6.4.1, EOSPAC 6.4.2beta contains only one change, a fix\r\nfor an inability to read some SESAME files in ASCII format. From the\r\nrelease announcement,\r\n\r\n EOSPAC 6.4.2beta has been released for general use as the latest\r\n (i.e., eospac6-latest) versions. This is a small patch to the\r\n previously-released version 6.4.1, which was requested by an\r\n affected user.\r\n\r\nBut the \"beta\" label can cause confusion, especially when a beta\r\nversion is the new preferred version, as is the case here. As\r\nsuggested by reviewers, add a comment clarifying EOSPAC's use of\r\n\"beta\".", "proba": 1.4599011137761408e-06} {"commit": "97551dba6caa9e7b3a5f3a7837e5dd33235b6f49", "message": "Updated from Brython Server: 2/9/2016 2:36:52 PM", "proba": 1.1525308707405202e-07} {"commit": "6ba01511dd8a9e0fd02de9553e5646e0de7aae0a", "message": "Version bump to v3.6.8\n", "proba": 2.6596163138492557e-07} {"commit": "9f02cb1275a6cf792b011ec7bf23b9b570426202", "message": "Close audio stream in fetchThreshold()\n", "proba": 1.38483457590155e-07} {"commit": "f403786b1aac307965804e32f76407d8356ce66a", "message": "Updated from Brython Server: 2/25/2016 2:13:40 PM", "proba": 1.1394446630674793e-07} {"commit": "8f3ea7bf45fa5e329c3d9748dfb9abd941a08b90", "message": "Fix hue NA warning. (#245)\n\n", "proba": 1.7165162091714592e-07} {"commit": "a647ae2aebe8038fdc34ca76460145ed62ea1cf5", "message": "HiPACE++: FFTW+OpenMP (#24575)\n\n- change the default compute backend: we just start to add OpenMP support\r\n- FFTW: prefer with OpenMP acceleration for OpenMP compute backend", "proba": 2.7788723855337594e-07} {"commit": "c7ccb3f6b9f7721005a61dae98c160e7325d6b1a", "message": "upload sampling scheme\n", "proba": 3.185026287155779e-07} {"commit": "1c03070b1cc5aaf325a00322f302b63e13a773b8", "message": "Improvements to aggplot.\n", "proba": 1.190814984397548e-07} {"commit": "e69542c01959e7cf874c6ca1ae5c94d0c9a0ba1f", "message": "Fix tarball URL's for htslib (#5993)\n\nA recent update (#5907) to htslib added a different URL for an old\r\nversion of htslib.\r\n\r\nNow the package is using that URL as the pattern for the newer\r\nversions too.\r\n\r\nI have a vague memory of running into this before, that it's a known\r\nissue.\r\n\r\nThis fixes it by adding an explicit `url_for_version` routine.", "proba": 1.1427931667640223e-07} {"commit": "2062ab37ca5ef89376d94a4de0b71a563ee1c10b", "message": "new bytes fix in password generation\n", "proba": 4.943123599332466e-07} {"commit": "a33f52cfb09cf840b00bef6f52b07ab43b53e0bf", "message": "Fixed minor issues from Cmake conversion (#5024)\n\n", "proba": 1.0474416001216014e-07} {"commit": "a08e787e968888e18743133993bdf6525b0b9baa", "message": "new eventfd support in file pool\n", "proba": 1.7418953746073385e-07} {"commit": "1f8f593dd63699dda75c6fbfc1e56c92258b7fd0", "message": "Added libhio 1.4.0.0 (#6357)\n\n", "proba": 1.0463573119068315e-07} {"commit": "8888a51d81bf4a16e2edfe113a6145181fb48ba4", "message": "ns4 iscsi\n", "proba": 5.33262982571614e-06} {"commit": "a7f8d10de2229d92d77a3b6842742bd9e8ba861a", "message": "added google sql server name parameter\n", "proba": 2.4390189423684205e-07} {"commit": "e1e455ef3fc507d6937b5548a98f257f1fbe5b89", "message": "magics: add version 4.2.4 (#17054)\n\n* Add version 4.2.4\r\n* Update checksum for 4.1.0\r\n* Version @4: requires python and py-jinja2 to build", "proba": 3.157345247473131e-07} {"commit": "13d61da1413a7510c0cb52e38479b41c02af1bc9", "message": "Correct bug in voronoi algorithm.\n", "proba": 1.661201025626724e-07} {"commit": "1a2c69e95eb02010f0a72aebe2554be58db63f42", "message": "Generate name from German title if possible\n", "proba": 0.9999995231628418} {"commit": "10c2e42e0cb4ee76465146de54eb1b09e8911dc6", "message": "Add debug log for ActiveQueues\n", "proba": 4.514495515195449e-07} {"commit": "20a41695ef9e0261847923594396d47cb1550690", "message": "Changed form error message to match acceptance test\n", "proba": 3.322494706026191e-07} {"commit": "1f10ad6b6d32fc0c637cd3da7439094ff7d38c49", "message": "Fail test_url test if request exception is raised.\n", "proba": 1.393512150116294e-07} {"commit": "f1105ce5d5a952407a4ad28f70e2de6cb22a0a83", "message": "add tests for invalid fs names, invalid pool names and nonexistent pools\n\nThese types of tests are added for a multitude of operations.\n", "proba": 1.1751549067184897e-07} {"commit": "9bbaf7e303d981823df0c7f2cb583b80296cbaa8", "message": "Fix new gerber size function. Calculations were incorrect in some circumstances due to a misundersanding of the original code\n", "proba": 4.168258328718366e-06} {"commit": "5d6fdba1738981d216c3f6c545eb7b195ceb650b", "message": "Fixed content-type on specialist API 404 responses\n", "proba": 2.1589063692317723e-07} {"commit": "7f29770766a30bf821689960189e95526eee6bdc", "message": "print python version if using file directly, not as import\n", "proba": 1.4085771908867173e-06} {"commit": "e8ca5f51283582d5149d214de968fa823bf2bd39", "message": "Typo reported by Tracy Ruggles\n", "proba": 1.300232241874255e-07} {"commit": "de2f59184de32e678a64d9b509800f839b323a90", "message": "unicode was removed from Python 3 where all strs are Unicode", "proba": 0.0007234866498038173} {"commit": "8a40f2137267c83192c571478937a8cd2e74573d", "message": "Updated payment url to match docs.\n", "proba": 1.1497193952436646e-07} {"commit": "4e8d87e5cc9c6cc536e4bd919e5f53aa7c3a7c75", "message": "plumed: add missing m4 dependency (#23957)\n\n", "proba": 1.7036860811003862e-07} {"commit": "044e1c98dee9480d69c69e5ad82ee6b5fb0bcc02", "message": "Change default ip_format str\n", "proba": 3.3789140161388787e-06} {"commit": "8774ae0305ec5e62492840ae629d1f48d28b3587", "message": "Avoid linking obviously bad UUIDs\n\nIf UUID is obviously bad, do more to ignore it when linking data\n", "proba": 1.5527512005064636e-05} {"commit": "2996c8e91dc3248c4ca808bde25f63d9fa6ab59e", "message": "adjusting ClipToShapeManipulator.manipulate to safely deal with empty results\n", "proba": 1.215635307971752e-07} {"commit": "da3e6d178c75d28edadb885e345c7c28de531260", "message": "Added subparser metavar\n", "proba": 1.6536172608994093e-07} {"commit": "7833b6fb7eedd7a352ddc1b896bbd845163e0135", "message": "removed debug return of url_root", "proba": 8.911027862268384e-07} {"commit": "9c218079f00e9b3c7285cd94dcc7836531f722a5", "message": "Install RMPISNOW wrapper in prefix.bin for r-snow (#16479)\n\nIf using mpirun, the R sessions can be started with a wrapper script\r\nthat helps set up the R session cluster. Put this wrapper in the PATH so\r\nit is easily accessible.", "proba": 1.0400200523008607e-07} {"commit": "5c7d690902b19b6c333a9fbced80ffa0f1d1b81e", "message": "update cfg_validator tests for breakage\n\nLooks like new oslo config broke the tests. Unit tests\nupdated to account for different initial state.\n\nChange-Id: I7844ec06c50c7c3265fe4d0489dbf418c5a9eac2\n", "proba": 3.4467228715584497e-07} {"commit": "23c3b8c0702b0cb6b0047d430712c5cec0aced8c", "message": "Improved Snap. Now works for root_finding.\n", "proba": 1.0400874828064843e-07} {"commit": "0f4480b3b78bc7c29dc8dd4f15bc8b9dd00a5644", "message": "http://code.google.com/p/lino/source/browse/docs/blog/2012/0509.rst\n", "proba": 2.2949747346956428e-07} {"commit": "00334a9ebb51a9c725b87a094d96b4ec10da41ac", "message": "Add block id to problem response report\n", "proba": 2.7486512976793165e-07} {"commit": "0c792b94d2ef18f7d80a415f0485c0d96a43cfd3", "message": "Making step hooks take an optional paramter\n", "proba": 4.282615293504932e-07} {"commit": "839dad0d336506ac4579b856f7cf2190550c6f82", "message": "Revert mnist_blackbox.py to master\n", "proba": 3.8176162320269214e-07} {"commit": "0ef83452e3efa9b26f6d172aed3e78c6b15c9abe", "message": "Py2.x fix after Py3 char fix ;)\n", "proba": 1.711067056930915e-07} {"commit": "787f89b7db20335704bf17fe81cc3960d39bdda7", "message": "SEACAS: Add versions 2020-03-16 and 2020-01-16 (#15525)\n\n", "proba": 1.1141390388047512e-07} {"commit": "f54b7cc0f13013bf3ea3eb14886d6cf1fd6bd965", "message": "automatic detection of mp-id\n", "proba": 3.0825378871668363e-07} {"commit": "5bcd6824afa544f16519e9d1b7684e8a4eed2a2c", "message": "Printing out tree, found a broken corner case from PCL.\n\nAlso why are there empty strings in the token list?\n", "proba": 1.2079422617716773e-07} {"commit": "6eb080bdb7cdc0f55fa958d5840b718d136b7670", "message": "Use codecs open in DumpFile (properly fix #260)\n", "proba": 1.1360462792708859e-07} {"commit": "17481625d205c0d63a9ebb493d113e1da57d9d4c", "message": "Remove an expensive warning that is never shown.\nCloses https://github.com/cython/cython/pull/4224\n", "proba": 0.00027885069721378386} {"commit": "0b93747e691dffec02036bec45771062cc2e7946", "message": "Serving websockets too\n", "proba": 1.2419486949966085e-07} {"commit": "db91eda89909b6ba894aaa6e64c2e389241cf94b", "message": "linsn_rv901t.py: Update Ethernet and add Etherbone support.\n", "proba": 1.0869877797858862e-07} {"commit": "1e5db2b02d31de1c7a968ef8616e14e9b6bcb5d3", "message": "some keywords can't be decoded", "proba": 0.009629013948142529} {"commit": "b337c2dcd957a9d2257c6d70cabca937eb626a02", "message": "[core] Remove import *\n", "proba": 1.1688956647049054e-07} {"commit": "f0b12974ca072f5c2456f0bb4b847686e7f88437", "message": "Update LeneshteinAutomata based algorithm\n", "proba": 2.380742927243773e-07} {"commit": "f42744558b989f8122f67d24bf65c8514eb516cb", "message": "Use better names for generated IR files.\n", "proba": 1.2071498645127576e-07} {"commit": "054d9074ead2c3f09850f90265818751c5fd01a6", "message": "opt.get_rand_Japprox: sorting inds for very small speed increase.\n", "proba": 1.1375890096587682e-07} {"commit": "bd9740fc7ec8bb4af17444d0dcee2002bf2a0665", "message": "Added all quality restflow processes result variable to the merger\ncreating the output file. Still only the last element in the list of\neach process can be found here.\n", "proba": 1.0156625762647309e-07} {"commit": "7c7178f63df29e481b17d826c2b614f07ca34677", "message": "Updated feature view.\n", "proba": 1.2379150859942456e-07} {"commit": "6beb9d27ed34b45e7b40a1f63f5780b70c277c8f", "message": "conpaas-core: do not abort manager startup if ganglia is not installed\n\n", "proba": 6.825191576353973e-07} {"commit": "f83be24c4b4da60d12e3bec06a5bad0078a94cff", "message": "Fix test\n", "proba": 4.372618604975287e-06} {"commit": "8480c24e910bc246f0b65c5411a83996b0091dba", "message": "py3 fix\n", "proba": 4.453236783774628e-07} {"commit": "a328a1974b985eda47191748e28a69d1e521f070", "message": "\u5b9e\u73b0FREEBUF\u7684AJAX\u9875\u9762\u722c\u53d6\u7684\u51e0\u79cd\u5c0f\u722c\u866b-json\u5e93\u89e3\u6790-\u79d1\u5b66\u65b9\u6cd5", "proba": 1.148114208149309e-07} {"commit": "50b6813e44dc0ec524935b7e0651c3038cd1c4a1", "message": "Less ambiguous names\n", "proba": 0.000240912166191265} {"commit": "40a79b147db6cd0069e98372cef322e33f2bfa91", "message": "Used bash module found on github. Will use it as a base class to make a bigger/class with common commands.\n", "proba": 1.0587923782168218e-07} {"commit": "d0fc39d36d47e2af9ebe70e243d6d401f00715fc", "message": "VirtualModel\n", "proba": 1.196633888866927e-06} {"commit": "9ee8db207a8a289e718bec698d412580759d980b", "message": "Port of Kolibri CORS / Content Security Policy fixes to Studio.\n", "proba": 9.89887354307939e-08} {"commit": "9fef8e38c8a5012a77c9ec46f8df2bc75b813624", "message": "Added default category in form\n", "proba": 3.3379998853888537e-07} {"commit": "301a9df47bd6120cd856fbd1a74388be39c504b9", "message": "odoo connector: better handling of unicode characters in export. Not solid solution yet...\n", "proba": 1.0438456854444667e-07} {"commit": "2152772fe5e72b8ba8db42261308cfe59a7bfa7f", "message": "[RR Cockpit] Fix skipped promotions failing_logs\n\nChange-Id: I5567ebdec15d8aa137f70af63231f5aa1882f006\n", "proba": 5.07028801166598e-07} {"commit": "cd9e8c1595e0e987e2ec0067c9532a9778e64ea3", "message": "Update test_plugin.py", "proba": 3.1791162200534018e-06} {"commit": "74a182a13bae5dde3e2b4fe604a839e5ec05e771", "message": "load palette hoohah\n", "proba": 2.254002311019576e-06} {"commit": "236dfd88af64e42414391b42b6891f06e61ab6fc", "message": "#86 Add Rule thresholds, validation and prep for expressions #74", "proba": 1.162373663987637e-07} {"commit": "f6686e69e71522514f3f9e5f583e77176fdc9580", "message": "Fix step minimum duration field type\n", "proba": 5.393176252255216e-07} {"commit": "2e02e57966980aac12fae47f32262ac4f9225bd2", "message": "Rethrowing exceptions now in a way then retain the stack\n", "proba": 1.4951145033137436e-07} {"commit": "08bd34eddf592b93d18d397b6661a550e54485a4", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "9bfe8aefdea46a326d3dbaafd0549a75d031e2f0", "message": "packaging: Updated usage of product name\n\nChange-Id: I3d8796a4a9a2197e8b5c2ce79693c9097e8c3a23\nSigned-off-by: Alex Lourie <9b6bd04ec8ec26165955e5c2df3f157a49c49dc0@redhat.com>\n", "proba": 1.1708022640277704e-07} {"commit": "1e36d6dd03c8d834e8a31c9b4c85dd57a6535c4a", "message": "Bug 1186297 cleanup - remove ash from funsize config\n", "proba": 1.2150535155797115e-07} {"commit": "09d1c97f5030dbb7779d30ce0c9622321fd43304", "message": "Add tests for Excel styling that were missing (#16313)\n\n", "proba": 1.1141411704329585e-07} {"commit": "21b7f13f28eac255e5a04c7806d9dde439baa871", "message": "Documentation\n", "proba": 6.194427442096639e-07} {"commit": "e6d5ea018e7cb9f80eecf92fe9362f921e57a1ca", "message": "release 0.99.2\n\nUpdated docs and beginnings of unit tests.\n", "proba": 9.874716511149018e-08} {"commit": "649acea56774c9f235d1df76989a2052454b1e7e", "message": "changed method to insert to table through SQLAlchemy", "proba": 2.9255809863570903e-07} {"commit": "ff99ed308edd661db7b692cb92eb3c6465843204", "message": "Add JSON parser\n", "proba": 8.360894571524113e-05} {"commit": "a8532a241ac9f0a9d05448a4b397ef18244daf21", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "c0a27796c5200209c144fb072d3165989667bd9f", "message": "For merge\n", "proba": 2.021957243414363e-06} {"commit": "bcbba5dc02d3c683685a67b6380dab9e0060d41d", "message": "Added email field to Anonymous class.\n\n* Email always equals \"unknown\"\n", "proba": 2.9647819133060693e-07} {"commit": "8ab05b98501e7a5e51b999960bc7e9904b6754cf", "message": "made image a required field on the image model\n", "proba": 4.3163814211766294e-07} {"commit": "c8a7118d7440ccd2cd56c6c3a79abce9618847ce", "message": "fixes in functions\n", "proba": 4.990785669178877e-07} {"commit": "4241a815fdb5a18a2a6cc4e89d57c6a366af5a72", "message": "TODO tag on extension for pogo mismatch option, processing pogo input files\n", "proba": 1.2767455359607993e-07} {"commit": "220983a4cf75f4e27f5491812de9ff04f4104510", "message": "fix butter_bandpass\n", "proba": 3.780548468057532e-06} {"commit": "2ead556f174dae8b028b53280103107804f84229", "message": "tweaking num trees limit\n", "proba": 2.521289616197464e-06} {"commit": "b9b08d38e52098634d627473a3e8ac6fdd07a548", "message": "logging cell events\n", "proba": 5.716563009627862e-07} {"commit": "464f994b5bbbf37fd9160c79e590b13352d4fb85", "message": "Replaced rhs() with __getitem__()\n\n\nsvn/trunk@118\n", "proba": 2.2535192329087295e-05} {"commit": "f9dfb3e6cebecc454482f03792a508a1c839d639", "message": "Built out first draft of each method. Preparing to add handling for edge cases, change how intilization with multiple values is handled.\n", "proba": 1.1913000008689778e-07} {"commit": "62a52ea21e41d9a7fb6b9330b3eec5db8c204f85", "message": "Edited and added more functions.\n", "proba": 1.053293559039048e-07} {"commit": "4a4e56a0909d8e89d82462c846f365b0849b3cb4", "message": "add missing import\n", "proba": 4.194788562017493e-05} {"commit": "80d698bf24ff349ae607a5f14eed71fd7eb97eaa", "message": "warning before global kv adds\n\n\ngit-svn-id: 393baad124610c350f916dacdbacb959ff9db386@10 e527132b-a56f-46a9-8d18-387a5c0b1943\n", "proba": 4.927323402625916e-07} {"commit": "a5886f0e47b923a268d68743f04b2befa581156d", "message": "* should now correctly call windows avrdude\n", "proba": 2.471459765729378e-07} {"commit": "aeb5b588dde2f517f107d8e1c8cfb7691744f42f", "message": "chore(Snapshots): Only pin for staff; temporary\n", "proba": 2.1026980334681866e-07} {"commit": "6cf322bbce2bfd4088cc4c5af96cd72cad86ea95", "message": " Add aspect as a parameter of Displayer init.\n", "proba": 1.1531806620723728e-07} {"commit": "c26d2c4ff5d0a24788eb009d48fa08a9c7bd3267", "message": "need this for reverse lookup\n", "proba": 0.0003337464586365968} {"commit": "88c56b7647048fbfb73b58dafae33ea130dea1d6", "message": "Handle 'name' field not existing\n\nSigned-off-by: Reed Frandsen <6ef9ce2b4525130df81e6edb7a6d2f6b4c098d3a@us.ibm.com>\n", "proba": 7.641272077307804e-07} {"commit": "da54f60def189953b9ebbd754200103668e00042", "message": "Handle full result sets.\n", "proba": 1.4814972359999956e-07} {"commit": "ad95918f0a089f4b8a5955e26d008e878fc10970", "message": "Get API from local file\n", "proba": 2.432217627301725e-07} {"commit": "164dcc4cadfe76bbbb1b3d7b6c1f0f4368e41214", "message": "made NMR processing CWL CLT work in Docker\n", "proba": 1.3312948965449323e-07} {"commit": "5d36c6416f2935376c77ccfaaedc15fa7685c2de", "message": "only validate ID Mapping if using ID Mapping format\n", "proba": 1.9156570374434523e-07} {"commit": "fe007b772f5f2ef50d99ce7967df33752f37a17c", "message": "adjust tests for is_advanced\n", "proba": 2.867695002350956e-06} {"commit": "515100756c14bd93b2efc847f62e85de4c668060", "message": "Fail on cases with no person case\n", "proba": 4.1612373024690896e-05} {"commit": "9105326cdb6ad7a6d4d23504ef36beb6303eaf65", "message": "make offset_date type unaware\n", "proba": 4.7177156375255436e-05} {"commit": "ba4396f1868dad9a637ddd3cbf9e935fa8d93cf0", "message": "print Exception error\n", "proba": 0.9995482563972473} {"commit": "806437fd423461e1909d5de0b3d7148525dab7d3", "message": ":bug: don't include ... in usage if wildcards not present\n", "proba": 4.799811108568974e-07} {"commit": "60b1993d39573995d1d46ad095df7f2e0241b87e", "message": "fix upstream tracking\n", "proba": 1.388464966112224e-06} {"commit": "6e06ca3b9f9be9c8122c46b789cfc18002e5a146", "message": "Updated settings\n", "proba": 9.113693977269577e-07} {"commit": "ed3c79e45289a73e5645be316ef9e39b08bb79c9", "message": "expand help for --download option\n\nShow the syntax for requesting a specific version of a patch.\n\nChange-Id: Id72935c715a7b5c17722400dde6175b99e61860b\nSigned-off-by: Doug Hellmann <0798ebecfb7bc4dfb9d0445c2fa030eb64e1fa1c@doughellmann.com>\n", "proba": 3.5887956073565874e-07} {"commit": "e46250769315c180118161786fe6086c9429a49c", "message": "Vinkesh/Rajaram| Added tests for melange-manage db_sync and db_upgrade commands\n", "proba": 1.292205809022562e-07} {"commit": "665d2991bbf8ac9d11cd7211ef9123863689adff", "message": "remove redundant module sys, add begin/end timestamps\n", "proba": 7.19664001280762e-07} {"commit": "63a63825fb6a2d904b91de3ebc3a2610b5e6cdd5", "message": "Various eval improvements.\n\n- Switch TB tag format to not include split. The split is redundant because the\n TB summaries are written to a directory including their split. It also\n prevented metrics for different splits from appearing on the same graph in TB.\n- Log out predictions and targets during eval.\n- Remove log_pred_target as it was unused, apart from writing out decodes which\n has been factored out into a separate function.\n\nPiperOrigin-RevId: 258971456\n", "proba": 1.4744456393600558e-06} {"commit": "13d36238951daa3e42b145f025009b82b9d98631", "message": "changed settings for static files\n", "proba": 5.563716172218847e-07} {"commit": "3f64c794f7340b5a97cb7573826ff1fe5a9429f4", "message": "#337 fix payment required payment page\n", "proba": 1.3661865239100734e-07} {"commit": "0e41f4d5a84947cef71e25e38b4bd0cb1caae95a", "message": "fixed bug in openstack poller that would cause vms to be marked foreign when they are not\n", "proba": 1.1950390899073682e-07} {"commit": "cadf61287b9b68af5b734b4ab2fefd9c758cfc26", "message": "Update skiptest\n", "proba": 5.186004159440927e-07} {"commit": "0d9045df21c6c4b9cdcdcc9eddae80f1d1b078c6", "message": "Beginning process of updating code for new GSOD metadata format\n", "proba": 1.9814829954611923e-07} {"commit": "6e7a20675cd66d9ca7d4a286958404198369dece", "message": "Validate ReplicationTopology data\n", "proba": 1.0586404641799163e-06} {"commit": "996bbe44906aa72b09d5c3a6a47f023e816acf75", "message": "task.percent\n", "proba": 0.9996644258499146} {"commit": "710f639cdd2eaf97690012ad675c038755d3ca5f", "message": "[devil] Re-add the reset_usb import to unblock the catapult roll.\n\nDisabling the USB reset is just an experiment.\n\nTBR=bpastene@chromium.org\n\nReview-Url: https://codereview.chromium.org/2293143002\n", "proba": 1.5868064906499058e-07} {"commit": "12ca4bef094b03fa5a049fc38739bb24ebdde5b7", "message": "use constants\n", "proba": 2.0165682144579478e-05} {"commit": "ced640d52c016948a2f74ebbbd50f4388590b2f0", "message": "use setUp/tearDown\n", "proba": 1.2645373317354824e-06} {"commit": "cf8edb6619a4806842b661b758495e55e299128c", "message": "Fix for bug involving removal of all geounits from a district\n", "proba": 1.167301491022954e-07} {"commit": "875f714a67289cd8747e9f783190e3854715a2c8", "message": "[#8167] allow blog post edits & deletes when feed_item does not exist (eg. if tool/proj was private); create feed item upon re-edit if needed\n", "proba": 1.3382170038767072e-07} {"commit": "9c4b693a7d275b00c1f9fb566fa2a412f0aa54ec", "message": "Luke: impl find_stream_definition\n", "proba": 4.258679109625518e-05} {"commit": "1820001e6ec6960014b5e9cf23eb7a2f8b90c213", "message": "Remove a broken test case from decorators_test\n\nPiperOrigin-RevId: 182176090\n", "proba": 1.5278417777153663e-05} {"commit": "1974a03d6f3d89659599105c0ac64f524c6175fa", "message": "Update ir.py", "proba": 2.0401296296768123e-06} {"commit": "c28f59748726e58c549532c80fb7b53ab314e2b7", "message": "Set email_contact to \"\" if None\n", "proba": 0.9999994039535522} {"commit": "b58d296373ed4ba75d0e6409e332e70abea76086", "message": "add more axes labels\n", "proba": 2.494611806014291e-07} {"commit": "573e9ab2ade2503f40cdb9ef26a1e45dfde8d982", "message": "Grammar fixes\n", "proba": 4.974287435288716e-07} {"commit": "b8399e48872271ccac6431d9f875238ff509a03a", "message": "Increment number of JS files in test_js_load\n", "proba": 2.5639214982220437e-06} {"commit": "83b6e177fccaef7d62682c25a0e82f29bcba01e6", "message": "Remove autofilling \"GSSAPI\" mechanism in hue.ini\n\nSigned-off-by: IVarha <74064dccf8363527f5303cb13894485ba37cc6ac@maprtech.com>\n", "proba": 1.103059190654676e-07} {"commit": "4de58371ab2a7c54083ba8e9f592d9c739e6d372", "message": "Removes all_projects tag\n", "proba": 5.319949423210346e-07} {"commit": "cb9ec7513a8547185f740d44be9c09059bcab39d", "message": "add show_newer options to be able to show when a newer version is installed localy.\n", "proba": 9.990107230350986e-08} {"commit": "2e1cbe0ace927430c5fb13bce0637181de42e5b6", "message": "check if EDITOR environment variable is None\n", "proba": 0.9999992847442627} {"commit": "b9e8e95932f3c477629a806fa17a9e43c376e0b7", "message": "Removed whitespace", "proba": 0.0014399044448509812} {"commit": "13bf2bcbbfd079c75b84a993a86086493d2e6dee", "message": "Cleaned up output #2\n", "proba": 0.9984976053237915} {"commit": "188df3f5f7415f69d89610128d984761e71d6746", "message": "remove old file name\n", "proba": 0.0005226572975516319} {"commit": "03da7eb07a1b056099142ea6fee1c2a806201a94", "message": "Switch the input usercache processing to use bulk_insert as well\n\nWe already saw from the profiling\nhttps://github.com/e-mission/e-mission-server/issues/408#issuecomment-248065051\nthat lots of individual inserts are slow, and we fixed the\n`clean_and_resample` step to use bulk insert instead.\n\nWe use bulk insert in the user cache move to long term as well, although that\ndoes not show up in the profiling since we start with entries in long term\nduring testing.\n\nLet's pre-emptively change the usercache to use bulk inserts as well\n", "proba": 4.41300289821811e-06} {"commit": "8651e1bf4da1c433693ed6ebf6ec96c0b13417e3", "message": "fix: USE_LDAP flag is used in ldapsync command\n", "proba": 1.08060089587525e-06} {"commit": "b1f155e14411ff91b9aa75338fd3fdeca8861deb", "message": "Removes the check for kerning group names in normalizeKerningKey()\n", "proba": 1.3381760766151274e-07} {"commit": "f4c10394363244a18795f0ce4c663ea30322241e", "message": "Commenting out failing tests to merge, will back out in this branch after merge.\n", "proba": 1.0414115081402997e-07} {"commit": "eb00e499c0ce29c69422fbda07faf16812c98dce", "message": "colorLib: factor out LayerReuseCache class\n", "proba": 3.055543515984027e-07} {"commit": "c082616c6f3a06fb3bae4f3f427719c195c2282c", "message": "Make hacky uniquifying thing more explicit", "proba": 6.509268132504076e-06} {"commit": "0b5c75a9222fa399b8db45f67bfc514e7fc226f6", "message": "[features] fix typo\n\nhm, looks like we are not testing this path..\n\nhttps://codecov.io/gh/googlei18n/glyphsLib/src/master/Lib/glyphsLib/builder/features.py#L47\n", "proba": 2.2198415535967797e-05} {"commit": "d27eb5fc20e880740f508657b11f673b6e33867b", "message": "Implement head table\n", "proba": 0.0012513876426964998} {"commit": "2c34a87e13577c335e9dc8202accf820adbc52dd", "message": "Implement maxp table\n", "proba": 0.0022652908228337765} {"commit": "737adf50f39aafd59e56f47c0ede31c214530959", "message": "Fix NaN handling\n\nCloses #5\n\nBonus: add some options for skipping validation.\n\n:tropical_drink:\n", "proba": 1.3800199383240397e-07} {"commit": "778cc9ea6a0be515f19c23d50351373bb86e134e", "message": "Fix test errors\n\nSince the FilesystemProducerImpl has been adjusted, the tests need to\nfollow.\n", "proba": 1.3060956405297475e-07} {"commit": "0dc6ee0eb0d95d56ab8c17a98876aa92110eec68", "message": "bugfix pipeseed data class\n", "proba": 3.382652948857867e-07} {"commit": "65c768b126fc3feae84988027c5a22def6ed0bc4", "message": "Created the WarningLevel QCodes parameter\n", "proba": 1.725344276337637e-07} {"commit": "1f28839ca6be261e14292d512194d3afa8105007", "message": "Errors are send as an array of json texts instead a single array with all error attributes of all errors\n", "proba": 2.1087747370529542e-07} {"commit": "2395678c317b03d03bb8128f567d9d864f297953", "message": "Changing the python shell id to match the id specified in enthought.plugins.python_shell.\n", "proba": 1.2315258857142908e-07} {"commit": "a44d2a9239e755b9e5726521b11aca9734b89180", "message": "Fix crashing when Authorization is not set\n", "proba": 4.4384833017829806e-06} {"commit": "75defde940ec5e88bde607b8633dd0e85052f972", "message": "fix: fixed user creation bug in student\n", "proba": 2.8745239433192182e-06} {"commit": "5a344576b84c4451048ef7922399d91ba6c62169", "message": "[minor] Address fix (#12025)\n\n", "proba": 1.5116077634047542e-07} {"commit": "1a7551cb4ec43276d769833c2951b306af884287", "message": "accept only longest match for overlap\n", "proba": 7.958318019518629e-05} {"commit": "ac2db60de0f024d52e693a0c65f7d69a3074f389", "message": "fix bug about number token\n", "proba": 6.071118150430266e-07} {"commit": "99bbffc00778428bf9e0fec1edf94de063bb1740", "message": "remove unnecessary function\n", "proba": 0.007671179715543985} {"commit": "be55ef03c6be6002c60fc76e6271774c355f7c53", "message": "wip - link wizard - multi - choose category #1136\n", "proba": 2.1954069495677686e-07} {"commit": "a3dcc53cdb983fe5c1df8fd5208cf20d6f96b1f1", "message": "Issue #58: test_callable_fail does not work and was only passing due to test order, mark as skipped for now\n", "proba": 1.1044971159890338e-07} {"commit": "0380a404ef0e785e6ff031f8d5d11f8ee838059e", "message": "removed mindless_simple_set and mindless_retrying_set_get_and_delete from system_tests_common.py\n", "proba": 7.153565206863277e-07} {"commit": "9687b6079a092786a716d187e431ef78ac4274fb", "message": "Added example storage configuration\n", "proba": 1.2734162169181218e-07} {"commit": "1625d673df84691119c72011a74fffd9cd59b4bf", "message": "Skip inactive or EOL'd collections in PkgdbConnector.request_collection_table\n", "proba": 1.7248818551252043e-07} {"commit": "36025468a1d60accbb4e76bf7b4dfabb0f6b45a7", "message": "[fix] #9899\n", "proba": 2.3260454895535077e-07} {"commit": "444bf22736daddb7ce879559cb78a4660b9480eb", "message": "DOC ENH Simplify the example code; Add plots for n_clusters = 3 and 5\n", "proba": 9.7164127510041e-05} {"commit": "f4736c3a2134a0a5a2d14395f47edbbf58dcb74f", "message": "biot_parallel_interactive.py: new --save-inter-regions options, save options\n", "proba": 4.1733747480066086e-07} {"commit": "d0c235bb803b7e251093247d64e119aa7c6fe578", "message": "test_pgsetting_gui: Prevent expanding the first row\n", "proba": 2.503654513930087e-06} {"commit": "521da6add8a77c371098a8477cb59865360a806b", "message": "fixed linter errors\n", "proba": 3.316998800073634e-07} {"commit": "052cc89b3c37e4d4c2b1edfa99568766e4088cf0", "message": "email inbox v7.1 fixes\n", "proba": 4.462147273898154e-07} {"commit": "486de42a98cc690688c44f95869d438b72d624fa", "message": "adding binary reviewed column; reporting full auth name\n", "proba": 2.2151488110466744e-07} {"commit": "af1154c55fb7c40ce51e6c0699a3f23475862be6", "message": "more bugfixes -- unfortunately calculating determinant is not differentiable in pytorch?\n", "proba": 1.0820852480719623e-07} {"commit": "dba78b02daa5674769cccf56b867f5266d6ec0f1", "message": "Add voluptuous to locative (#3254)\n\n", "proba": 1.972024438146036e-05} {"commit": "46c306685dc8719ae272f4048366b256f40ccc19", "message": "Move imports to top for hikvision (#29417)\n\n", "proba": 1.0553668516877224e-07} {"commit": "d5912f41fb45bb5a43ff0e0d0dac726c34331806", "message": "Added play media to squeezebox (#3306)\n\n* Added play media to squeezebox\r\n\r\nThe squeezebox component can now add a URI to an existing playlist or just over write it to force a stream to play.\r\n\r\n* Cleaned up flake8 issues with formatting. \r\n\r\nSpacing... The end of the world! Fixed. Once day the tools will fix this on the fly, one day...\r\n\r\n[x] ./homeassistant/components/media_player/squeezebox.py:307:1: W293 blank line contains whitespace\r\n[x] ./homeassistant/components/media_player/squeezebox.py:366:1: W391 blank line at end of file\r\n[x] ./homeassistant/components/media_player/squeezebox.py:366:1: W293 blank line contains whitespace\r\n\r\nUpdated SUPPORT_SQUEEZEBOX to add SUPPORT_PLAY_MEDIA\r\n\r\n[x] ./homeassistant/components/media_player/squeezebox.py:13:1: F401 'homeassistant.components.media_player.SUPPORT_PLAY_MEDIA' imported but unused\r\n\r\n* Updates from review\r\n\r\nUpdated the comments to indicate they are developer / API comments and not for end users.\r\nMarked the private functions with a leading underscore (_)\r\n\r\n* Fixed Lint issues. \r\n\r\n202ERROR: InvocationError: '/home/travis/build/home-assistant/home-assistant/.tox/lint/bin/flake8'\r\n\r\n203lint runtests: commands[1] | pylint homeassistant\r\n\r\n204************* Module homeassistant.components.media_player.squeezebox\r\n\r\n205C:322, 0: Trailing whitespace (trailing-whitespace)\r\n", "proba": 6.532450788654387e-05} {"commit": "b61375e5cb45d4e5e63d96a0a83da69a37619f6b", "message": "Add configuration_url to Waze Travel Time (#60376)\n\n", "proba": 1.1346538997258904e-07} {"commit": "4b7bf9878ce259090c3fc65dacc86cb26b6c558b", "message": "Actually that test already exists on the discover_changes test case.\n", "proba": 1.033839467368125e-07} {"commit": "2bba898bd8a7314f0441760ef8c19e0fffc43678", "message": "Skip except on Linux.\n", "proba": 1.2027372520151403e-07} {"commit": "fba0c80a11b130d7b824889bca7324c0c6e2b55a", "message": "moved Privilege to module\nbugfix in Userlist.request\nmore flexible handling in User.getInfo and User.setInfo\n", "proba": 2.267915277798238e-07} {"commit": "06277ea30094ff6669537f2365b6ad9f5a19642b", "message": "Update laundry.py", "proba": 1.3739780797550338e-06} {"commit": "f7f2808aded2d1cbe5ce84755cd8388a4a386320", "message": "Revert \"Cleanup of GenericNetwork: added flatten functionality to several methods, expanded doc strings\"\n\nThis reverts commit 21dfce50e2cceb7b69765f7439687432e3f8bc80 [formerly 63333a322a24baf09a19bee940d21c12941acde3] [formerly 61cd2029f298af74f802973eeb9d64193b437c78].\n\n\nFormer-commit-id: 691db877745435e4b56911240794ef147681cb0d\nFormer-commit-id: 00f58d3cb1a3bad9262dd48cc86ac86695b1e2d5", "proba": 0.00012794484791811556} {"commit": "4844ba065d86fdce3f01b7b191ecc6a4ef43661e", "message": "Add autoclass directives to Visualization/__init__.py. This will enable Visualization module methods to appear in function reference.\n\n\nFormer-commit-id: 889320760d8af5c089915b7afbdeb165724bb33c\nFormer-commit-id: 66a341fa629930698977b992434f8015e372f3ea", "proba": 3.429768548812717e-05} {"commit": "4c58ab25b2c5d2a3504e633f43dcde6566ab5833", "message": "added a -t option to run test suite allowing specific tests to be specified\n", "proba": 2.155594103214753e-07} {"commit": "58fe1a3d6906d808361ddebf1917dc042e2efe30", "message": "add ips print for language_model (#4887)\n\n* fix ptb_dy time print for benchmark, test=develop\r\n\r\n* add ips print for language_model, test=develop", "proba": 2.026801837473613e-07} {"commit": "6e6ccc8566fe90323d900fd0ebd38f45ad4d0b63", "message": "Update TipCalculator.py", "proba": 2.5470930609117204e-07} {"commit": "3ac74e38eca78d4f4afa68d56cb3c3961f7e2764", "message": "fixes; changed the size to 300x300\n", "proba": 3.2830048439791426e-06} {"commit": "953ce15f2a3b2ffdc0e27d95afbe4f8cda2cdbfd", "message": "set default behavior to add datacenters\n", "proba": 3.694617305427528e-07} {"commit": "560636f530786705ad351427649c223d990a0fdd", "message": "Convert --disk options to be a list\n", "proba": 0.9999891519546509} {"commit": "5a36ed263276f110b5527ea45b7e5f3f5544cb05", "message": "Corrected mean_cov doc string.\nRemoved unused import.\n\n", "proba": 1.116487595709259e-07} {"commit": "e50bfd37c09ddaa7a1abfe466994c65b105cea8c", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "704b2fb59857d6a59bf2223830236a4deb31d3e6", "message": "Update test code", "proba": 6.20846719812107e-07} {"commit": "0aa8334dcbe25b6000b0492128d338be6e47edf7", "message": "remet en place la behavior action follow\n", "proba": 3.2992053888847295e-07} {"commit": "7f81711e7561286d0235eb1e5ce938d3e64117ca", "message": "Another local folder / S3 folder name tweak.\n", "proba": 1.0675954342787008e-07} {"commit": "8bedfd402ccd1336f2b40fad58cd5833cecb9638", "message": "Update test_get_python_sdk_name to supported python version (#12950)\n\n", "proba": 1.1329627369605078e-07} {"commit": "c176f1daa8a8bf13dab59b271ecd8cf960478e1f", "message": "Update account_invoice.py", "proba": 6.95451888077514e-07} {"commit": "4f899f17d40859e0d0c0a66993555fd66d4b408f", "message": "[IMP] crm : add related fields from subtype to avoid override create method\n\nUsing the field inheritance to avoid patching create method. So the\nres_model and iternal field are directly related to subtype.\n", "proba": 1.0673694106344556e-07} {"commit": "e08f706b11fddce1a067d5d6bcc13ec3cd1dec1c", "message": "[FIX] mail: translate message of copied object\n\nWhen duplicating a record, the language is set to None in the context\nwhen copying a record\n\nnew = self.with_context(lang=None).create(vals)\nself.with_context(from_copy_translation=True).copy_translations(new, excluded=default or ())\n\nIn mail.thread, the usecase of no language in the context was considered\n\nif 'lang' not in self._context:\ntrack_threads = threads.with_context(lang=self.env.user.lang)\n\nbut not the case of a language explicitly set to None\n\nThis means that, when duplicating a record, the tracked fields mesages\nwere untranslated.\n\nFixes odoo/odoo#35213\nCloses odoo/odoo#35331\n\nSigned-off-by: Martin Trigaux (mat) ", "proba": 0.9988977909088135} {"commit": "61345addfb054ebcaddfde817192e7e0025fcc7a", "message": "Relax proposal create form: allow missing tags field\n", "proba": 2.1835656127677794e-07} {"commit": "54a3c639d1b153c4ba62f092899035da4c7887c6", "message": "Clean up some cruft.\n", "proba": 1.2175230779121193e-07} {"commit": "1c31d23dd95fb4ca8a5daaf37aaa7d75472f1d24", "message": "fix run time error: list indices must be integers not str (#611)\n\n* fix run time error: list indices must be integers not str\r\n\r\n* fix another condition\r\n\r\n* response\r\n\r\n* shorter version\r\n", "proba": 1.3999011571286246e-05} {"commit": "8ca95300057c175ff63f0b5acd2ca17dc5f13a08", "message": "Remove enable collective ops tests\n\nWe now have multi worker unit tests so these are already covered. We should test\nthe API, not the implementation.\n\nPiperOrigin-RevId: 344128126\nChange-Id: I83e237e0620d65b7b6cfc84df2c686bd6b55a019\n", "proba": 2.045764176727971e-06} {"commit": "4f8c11c5e8f24b48faa494d90ee54d97b017b898", "message": "Deprecate VectorDiffeomixture.\n\nPiperOrigin-RevId: 284076415\n", "proba": 1.220310991811857e-06} {"commit": "2043e2eac94d88cb0c6d5b5e26aae4f1f1e33d13", "message": "added patients selection test\n", "proba": 1.230438897437125e-07} {"commit": "cdd28cba2c6299e18b5d5221f8d10b8649c1faed", "message": "Use numpy\n", "proba": 5.968250843579881e-05} {"commit": "3c662fc807cc3630a08966c614d0f5d4ff1d4841", "message": "Fix flake8 errors\n", "proba": 3.7471238556463504e-06} {"commit": "9323df973584b86355e19229f4beb8ebc7981693", "message": "remove `gamma` and `Decoonvolution`s\n", "proba": 0.00015125624486245215} {"commit": "b2e0812f6946f88cef2cdffb0be603b4b769033a", "message": "HOTFIX: rename run_test to execute in streams simple benchmark (#4941)\n\n", "proba": 1.1281239409299815e-07} {"commit": "0f2a8fd6a1b67fd4c768afcac707ebc676147a6e", "message": "tests\n", "proba": 2.351589273530408e-06} {"commit": "d39e82520cf92b876b92c0c9a3bc2769b7c3e088", "message": "\tmodified: convert_2_magic.py\n", "proba": 1.320474075328093e-05} {"commit": "d1fa13bdf3ca7d1c4eabdaace5758d6b031ef909", "message": "Set up the download url, which I forgot about.\n", "proba": 1.1342459771412905e-07} {"commit": "5cd9cbe3066834fd773187ffdb3178e0374fdf6b", "message": "Render empty form message, if no fields have been declared\n", "proba": 6.29492149073485e-07} {"commit": "b2d06e36c99c761b15c521492342b5afced1c453", "message": "Test selective applying of discounts\n", "proba": 1.394932240827984e-07} {"commit": "bbca6345002a4233583701d05b52771555193c94", "message": "Update HDR file. There is still some bugs to be fixed.\n", "proba": 1.0435908848194231e-07} {"commit": "e94dfcee0d9826f614606f88791f46cd416ccd4f", "message": "Add python test for inheritance structure generation\n", "proba": 2.8850506623712135e-06} {"commit": "e891984ea7673d31dd68ae5979cef2d84c2bfaf2", "message": "update\n\nadded improvements to certain functions and how they orient themselves\nin the filesystem - instead of using os.getcwd() to get current\ndirectory, i used, when available, self.address which is in all classes.\n", "proba": 1.0413241113838012e-07} {"commit": "9971ff5ac14ad61d52ce6173d57aaad335cedb07", "message": "Added camelliaException. Changed compilation-error handling (III)\n", "proba": 1.098700153079335e-07} {"commit": "5b1eefb315cd9094de8c8827e0f3a8c0eeefe95a", "message": "delete view: make sure item is closed before it is removed from storage\n", "proba": 2.867454895749688e-07} {"commit": "e83d48d6cba0878c24697acc1ca22cd1b9eae1f9", "message": "Replace magic strings with constants\n\nSigned-off-by: Micu Matei-Marius \n", "proba": 3.4417178540024906e-05} {"commit": "0e62b01cacd2b60e334acec422e945a595b1ab55", "message": "rename \"NON-INCREMENTAL\" to \"full\"\n", "proba": 0.9985522627830505} {"commit": "1596b1b782b96c89f0a06710dd3e75b65defc3d8", "message": "Fix validating no parms for led_matrix methods\n", "proba": 1.7081744090319262e-06} {"commit": "b636d15a5c60eaf7bf326430ee29b2d00d8b0f38", "message": "updated batman class\n", "proba": 2.8083513825549744e-07} {"commit": "aa5259efac8f7fbe8e2afd263198feaaa45fc4c3", "message": "Change test for running on Tingbot\n", "proba": 1.8952394498228387e-07} {"commit": "998fe3252403553efb3bf022510b12c0a219f355", "message": "Test coverage\n", "proba": 6.675936674582772e-07} {"commit": "62a1740b34216124375e9f1397fe22012de65677", "message": "Small fix in io\n", "proba": 2.557932816671382e-07} {"commit": "808ce13f918cdda1b55a2baa73e81128c4f8fdd7", "message": "Check file size during initial creation\n", "proba": 3.8294379578474036e-07} {"commit": "d26ad3b7fd80c71fbab44e648d2cab144c86488f", "message": "Optimize cached backpack load\n", "proba": 7.922979534669139e-07} {"commit": "093cec82b1c30129a2ac96c631acd8563fff9cf7", "message": "Update blacklisted plugins\n", "proba": 6.514961228276661e-07} {"commit": "477a46cbd8fac084ff95f8649bdb44723d8d32bf", "message": "Include users shadow table entries with the use-cases setup logic.\n", "proba": 1.0775418246566915e-07} {"commit": "0029ff80389199d8618fd9c8ca7c6ec5dafec77d", "message": "Auto-committing 'PedidoCadastrar.py'\n", "proba": 4.109705969312927e-06} {"commit": "10ea617cf9c5dc704e15c38588e12d5a69a217a7", "message": "Fixed example script\n", "proba": 3.242342927478603e-07} {"commit": "87ce1a593a57d7358bcb672bee8e4478d8b09ea4", "message": "Create serializer for past Pokemon types\n", "proba": 5.941383847130055e-07} {"commit": "63e28ba358fefbe3b3b5389dc9dabf3284588270", "message": "Revert \"Just use ckminions in batch mode.\"\n\nThis reverts commit 6c5f3f8d2eb8a810d3ec02982656c7ffe5fd46cc.\n\nWe can't use ckminions since it is a gauranteed superset (not the exact set)\n", "proba": 1.287129833826839e-07} {"commit": "bb10f370e87628ba3903e2faa01a4bbad5e06f11", "message": "Added a dump option to the job command.\n", "proba": 1.2521370251761255e-07} {"commit": "175b0c8ece7a01b4ec3b56a5e39eee5a6c18c5cc", "message": "empty models\n", "proba": 2.457736172800651e-06} {"commit": "0149456820061eb3466e3ef29e912747473d221d", "message": "Added documentation and skeleton function for new SMC interface\n", "proba": 1.427310962753836e-07} {"commit": "6f0676877f5c23c0e6d04422cb8365e16958eb82", "message": "document potential for streaming", "proba": 2.3754857636504312e-07} {"commit": "08c264e2f9d25ba8c41d64e57f878ca4d80ab333", "message": "only return early from comparison validation if base values are equal\n\n--HG--\nbranch : yt\n", "proba": 3.522061433613999e-07} {"commit": "5c173e6cb28584172fb2c43dfeb7421ce1521acc", "message": "new database stuff\n", "proba": 2.7699292104443884e-07} {"commit": "2c40b80b828fe702099319e72b3d76d900249849", "message": "more error checking and corrected subject retirement\n", "proba": 1.1616123885005436e-07} {"commit": "b6e3268437b93ced3f26b7026e3e8cd550b78609", "message": "fixed a bug tht prevent working #748\n", "proba": 1.3913636109919025e-07} {"commit": "bf1e0a1c2b1a80e9893d9300db8fa90d07584e73", "message": "Basic calculation & plotting of posterior\n", "proba": 1.411442553944653e-07} {"commit": "646f490ab9196fd4542fb093c158d30dbcb9653a", "message": "Check if the release_config file exists and warn the user if it does not. (#531)\n\n", "proba": 1.414336878724498e-07} {"commit": "81bddc61405039fd23d4eff806dbbd74812fa068", "message": "repair data passed into the state check function\n", "proba": 2.3684529537604249e-07} {"commit": "137a99d43cfcc04c58143cab2fd954b4907f8389", "message": "Start documenting functions, and enable plotting of timeseries with no GPS timestamps, using expected logging frequency.\n", "proba": 1.0597602084772006e-07} {"commit": "bc79e93700b3b8259c8300a852a48ecbf943738e", "message": "[LOS] calling right function in tests\n", "proba": 3.4831003858926124e-07} {"commit": "944966bc214f99caaf29f2512d76adce21483119", "message": "Updated from Brython Server: 9/23/2015 1:40:03 PM", "proba": 1.0900106417466304e-07} {"commit": "69506523cde3f1117a68c67a0e8004da940a66e8", "message": "controlled_by is a list\n", "proba": 1.359385350951925e-05} {"commit": "237d0e38c95dc3e1f409c61c0fd93573be3feed9", "message": "new data fragmenting support\n", "proba": 1.717894946295928e-07} {"commit": "8a7436d9a6d9f2d8f9d8ed561561a50adec3820c", "message": "SQL UPPER_CASE\n", "proba": 0.0012463973835110664} {"commit": "db0e2a26bde1667b3332ab1671560beb536cc447", "message": "Change datetime modul to Datetime and new function\n\nNew function: getDescription \nCan add description into ical", "proba": 0.00022277205425780267} {"commit": "1dbce0278d75829389e5390a7f51fb60f0102ef6", "message": "(1, 1) is the new (0, 0)\n", "proba": 0.9999604225158691} {"commit": "9dff9854b141dc8a75f0c60c2d24341433909b11", "message": "lots of changes...\n\n* reformat_chapter will remove
tags and create proper paragraphs\n* extract_meta_data just extracts what it can from naslov.html and creates a dict\n* create_cover_page uses the meta data to create the cover page\n* --azw3 command line option will invoke `ebook-convert` to create an .azw3 e-book\n", "proba": 2.40537673334984e-07} {"commit": "8d9224bd09435dc9f24559a55738e2a28c297739", "message": "Catch timeouts too\n", "proba": 2.3892221179266926e-07} {"commit": "b9c30ad66d63d0e074a47fa6ccb0bb888e7f7f9a", "message": "scaleddeltahinvri1\n", "proba": 1.1156972732351278e-06} {"commit": "ac89f9232e731b3e56b4a2110fd857bcae74e61e", "message": "Simplify and regularize calc_X_stiff() functions\n", "proba": 8.914308637031354e-06} {"commit": "cb4d934ba52ed3b6624077bfe701b5944346518a", "message": "viz: fix reversed stats_logger label (#3475)\n\n", "proba": 1.360857737608967e-07} {"commit": "99a2e21ddc437f5f61043ceecd9b77c478b83a91", "message": "old psf library\n", "proba": 3.449639507380198e-07} {"commit": "b3377cd947dd7d15ddb50efd55822b7308240f7f", "message": "support for current stream operations\n", "proba": 1.6259306789834227e-07} {"commit": "6cce83bfcaf2072f57f15fb8d05e89c6d8ef56b6", "message": "load from credentials.oracle, not credentials", "proba": 1.8686339899431914e-05} {"commit": "da65cbb338400a9b29857d8e0e818e4bed3c9318", "message": "New failure:\nhttp://build.chromium.org/buildbot/waterfall.fyi/builders/Win%20Coverage%20(dbg)/builds/1517/steps/compile/logs/stdio\n\nLooks like .o's added in which need to be ignored.\n\nReview URL: http://codereview.chromium.org/661210\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@40171 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.0896131925619557e-06} {"commit": "baa5fb7f9912b149ff6d26deecd7c92de201be5d", "message": "remove unnecessary copies", "proba": 1.7853699318948202e-05} {"commit": "f1b3b755bb148b8c033a22cedc69838041af26ee", "message": "fixed parallel labels\n", "proba": 5.38240158221015e-07} {"commit": "37e2813d2b972100e7a562fe99cde72c99f5a544", "message": "Add handler to create token when a user is created\n", "proba": 4.945330260852643e-07} {"commit": "a4ec40ee564d5f16925aec2e2a383ec37640dd2e", "message": "Keep rspecs for delegated slices in sync w/ PLC\n\n", "proba": 1.2637353563604847e-07} {"commit": "3c1742eb58e7e18c3a6c46cefa4ebd748e15ec4a", "message": "Fixed stupid bug in echo_top_tracking.py.\n", "proba": 1.1382423537042996e-07} {"commit": "fac04b67598884afe9e1d6bb6b0b33ee6b0a1e70", "message": "Adjust linux start path.\nShould fix the \"zero percent coverage\" problem.\n\nReview URL: http://codereview.chromium.org/3396024\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@60554 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 0.0017304741777479649} {"commit": "541222cd5cfb1b0b2d1f64be7f1c634ce876c984", "message": "fix scaling of near scale, and when it shows on page\n\nneed to multiply rate by 100 to show as percent on page.\nonly show near scale when needed - digital spindle-at-spped\ntakes precedence so you don't need near component.\n", "proba": 1.1609788685973399e-07} {"commit": "bcf990740904e6354c1fb725b80de101baff0fb3", "message": "add enable/disable user functions\n", "proba": 2.3296870494959876e-06} {"commit": "4c33755105c31d88e21d644abf85a36799644921", "message": "32 bit compilation error\n\n", "proba": 6.352351533678302e-07} {"commit": "a687a8de095474f633bfdeda6c9ecbd9b58b2832", "message": "Tweaked plotting code.\n", "proba": 1.2571409513384424e-07} {"commit": "77bed459ee06c1d931c1055f1a991eda6b8d4f97", "message": "improve table formatting to remove extra space due to

\n", "proba": 1.2396564841310465e-07} {"commit": "28d27274336ca4c84d732418b86292fe0f8b2634", "message": "Update pseudocolor.py\n\nmin and max values don't need to be integers", "proba": 1.8732428088696906e-06} {"commit": "9b237bc260d4f78ddc97b8d678d36076d22178e6", "message": "use custom vm\n", "proba": 4.860430067310517e-07} {"commit": "67d53c6b1ee55f614c0fdeb20fb1d9b15f84b326", "message": "More if processing changes\n", "proba": 1.58904470026755e-07} {"commit": "f0b8a461f3eae183b1b43f2d60983816f74a7723", "message": "pncconf - fix typo on shared limit human signal name\n\n'Z Both Limit + Home' was miss spelled with a Y\n", "proba": 1.0319073453501915e-06} {"commit": "5f46c92ccaeb273e0d3422b65f983aaf327e8f5a", "message": "drop more unused code\n", "proba": 1.491134469233657e-07} {"commit": "1833878cf4f8312e9fe75e57c9af182ea8cfd23b", "message": "Move Alfven speed unit check to final line\n", "proba": 1.5427465882567049e-07} {"commit": "167c162b1f0516716ddb67b5fff51473ba97359c", "message": "Implementing n_queens\n", "proba": 0.0004292377270758152} {"commit": "e95d1185e9c594d9df172a9e5be37dc9720c0e10", "message": "Add grpc-java 1.17.1 to interop matrix\n", "proba": 5.187106921766826e-07} {"commit": "02108a25a87942d09a6c1a46e1faf953e31a5296", "message": "Update __init__.py\n\nsmall changes made in the url pattern /ncert_partner changed to /partner", "proba": 3.1883678275335114e-06} {"commit": "cf79d6330c2942c663a4e34de84343b6039499ec", "message": "adding hide_grids argument to img_plot() and contour_plot() methods so that users can override the default behavior of hiding grids\n", "proba": 6.126319362920185e-07} {"commit": "48a30aade7e606e671db44e8ee69092c0e67b363", "message": "Complete lc051_n_queens.py\n", "proba": 0.9991604089736938} {"commit": "5723b0c913c402facc494d4ae5a02cb5c4a0ea6d", "message": "Generate the classification data-set programmatically\nThis will allow us to see whether CircleCI can be coaxed to run the\nexamples.\n", "proba": 0.0021515400148928165} {"commit": "70a8fcb5544389d9da1f246c7d1e6e14ab41e104", "message": "Set node-id in respective thread's prior_node field while announcing course\n", "proba": 2.0729416405629308e-07} {"commit": "a2e7b19e827ada52aafd87fe0eed9e3bf10290bf", "message": "Python 1.5.2 portability.\n\n\ngit-svn-id: 7892167f69f80ee5d3024affce49f20c74bcb41d@799 fdb21ef1-2011-0410-befe-b5e4ea1792b1\n", "proba": 0.00013125639816280454} {"commit": "5d2b9123329d1a8637dcc6ff7f46123ef28ca4f3", "message": "Update - code improvements.\n", "proba": 1.1284402745559419e-07} {"commit": "ea698ebc9c603cf8b78c33604314624e3cf76224", "message": "delete_node() [delete_gattribute() & delete_grelation()] - Common method written to delete node(s)\n", "proba": 1.7825571774210403e-07} {"commit": "691f096780168d15560c00719cac0fa0bcb6346a", "message": "import pada inside function\n", "proba": 5.841901042913378e-07} {"commit": "ef38e1e8a87c859aabfb2646a83866126734e908", "message": "Made Graph into a class; split common prefixes into legend title; configurable line style, other cleanup and tweaks", "proba": 1.2919186076487676e-07} {"commit": "aba442462e445b779d606b9b17f0b6fda6234e20", "message": "thread node preservation on announce.\n", "proba": 1.1040106073778588e-07} {"commit": "bc0f921329f28b2c281c4e683456d0a698d4257f", "message": "Fix broken test.\n", "proba": 6.794170076318551e-06} {"commit": "46eb29739d3811e595fc1a5ad6315cde49395ff5", "message": "parameters for grid search", "proba": 4.280328766981256e-07} {"commit": "741c5b18167d0fd92785d1ae82ad8520e6c874f9", "message": "move attachments to message-logs\n", "proba": 5.451194056149689e-07} {"commit": "7be8a79bd47553c95c5e8f828eb4e88620575cf6", "message": "start supporting Wii U errcodes\n", "proba": 1.8735379114787065e-07} {"commit": "21f6e393e489ba12d16b604330a82954cc20c16f", "message": "missing import\n", "proba": 0.0014933461789041758} {"commit": "4beb14dee1c3b183a22b21a40d9411b0db19cd4a", "message": "Fixing up auth\n", "proba": 7.06598802935332e-05} {"commit": "3b72ea1d00545dd49ab1f1356d1700a2e0d5d503", "message": "Update - added command line options in \"exabgp_conf.py\"\n", "proba": 1.2112367642203026e-07} {"commit": "13364377d1b95636adeeed9577ccbfc752f58d46", "message": "DOC: Comment out comments. Add savefig directives\n", "proba": 1.4307316575923323e-07} {"commit": "11f734e4118d972e047943548b501d5e2a295493", "message": "'fix' callback example\n", "proba": 1.7428736782676424e-06} {"commit": "ea101fa28aa5b42061b8454a4390fbd034789d3e", "message": "[IMP] base_location: Improve tests according to https://github.com/OCA/partner-contact/pull/1180.\nTT33047\n", "proba": 5.87742533753044e-06} {"commit": "16c1ae09e0288036aae87eb4337c24b23b1e6638", "message": "Clean up some unused imports and comments\n", "proba": 1.2376258951007912e-07} {"commit": "d9f0d580dcdb9be8218da735059a3600eb03b3bf", "message": "Disentangle analyzer from classifier\n", "proba": 6.625709261243173e-07} {"commit": "b428275cef238f6af8c5de2d18cd68a80c641a35", "message": "Clipped high quality blur in skia has been fixed.\n\nReview URL: http://codereview.chromium.org/7840032\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@101091 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 4.731498108867527e-07} {"commit": "8ddac86b91278165ac93db935929f0af18069457", "message": "remove timeout (thanks @jerith)\n", "proba": 2.203961599889226e-07} {"commit": "2c9f63f9b1825cac7ef4ce5f48a375e626c8f7b1", "message": "bd_api: Import cleanup\n", "proba": 6.891493171679031e-07} {"commit": "4f3d1e90ec4af618ada415f53ddd9eec42bafb38", "message": "Indent with 4 spaces, not 3\n", "proba": 0.9981575608253479} {"commit": "f2873863b5f039db47d3a77ce1eeab39ee8e64bd", "message": "Removed old header information.\n", "proba": 1.1537537147887633e-07} {"commit": "df2a1e0d03c15942ed3d65fc9638bb914266ffec", "message": "Update wagtail/core/tests/test_page_permissions.py\n\nCo-authored-by: Matt Westcott \n", "proba": 1.1789512655013823e-07} {"commit": "82f648557d3c14568811038a63d766d3d84a9b79", "message": "Fix dataverse upload bug\n", "proba": 6.048366003597039e-07} {"commit": "7696c8607c476b5129670a9cfda3b376365aee07", "message": "tweaked sorting\n", "proba": 6.276794124460139e-07} {"commit": "7b0a6d27389f8e4abde77b2ed76dac795c33cfab", "message": "Use url_for\n", "proba": 0.0003541924525052309} {"commit": "efde0e82cf8c73d2abf0e3971acdae478967d821", "message": "Add default operator to PROJECT_TEMPLATE and THEME_TEMPLATE; fix pep8\n", "proba": 4.3222223666816717e-07} {"commit": "62b52bd1e194f0fd7eb4d4eb9c1426e554b542d1", "message": "added chemex_bootstrap.py and preliminary implementation of n_fast_cest\n", "proba": 1.968058995771571e-07} {"commit": "24db517eebe415727c15dade1bde6d22f7d775a7", "message": "Fix pyflakes warnings in coverage_doctest.py\n", "proba": 4.911864743917249e-05} {"commit": "dd249ca665f21f574d9ff992e0cd3e78433c7fa7", "message": "Use printf-style String Formatting for output\n", "proba": 6.141549420135561e-06} {"commit": "8b40b6ea2e81446528c1bbfcbe391f9028814d24", "message": "BibReformat: chunking of updated records query\n\n* Instead of a single sql query for updated records, we split it\n in multiple ones with a limit of 5000 records per query.\n\nBibReformat: bug fix\n\n* Prod and master differ in their format for bibrank_start_date\n This patches is to handle the difference between branches\n", "proba": 1.9949528962115437e-07} {"commit": "6662067dd688a61417252712b4f8cbdf8da74798", "message": "Version bump 0.1.29\n", "proba": 3.2680688377695333e-07} {"commit": "e031b9c8ad5219cab56b4340a0e782a926b3691d", "message": "Use tqdm stuff\n\nhelp im trapped in a bedtime factory\n", "proba": 1.332695944711304e-07} {"commit": "68b2e1cb5a914d408761229bd27677e80967f5ff", "message": "Remove unused import.\n", "proba": 1.433858187738224e-07} {"commit": "64b2a828c0b16368810d15c6fff1640e33a34125", "message": "fix evaluation bug\n", "proba": 4.4518353092826146e-07} {"commit": "c11e360f505010acbe29a4513d4d6295657ae38f", "message": "PY3 get_email support in method ticket_from_message (if message isinstance bytes use email.email_from_bytes(msg) else ..from_string(msg)) ... clear\n", "proba": 2.757141714937461e-07} {"commit": "6876fc6339fe91ea21b573dc23cb989561f6192a", "message": "Use lazy util to refresh img-list in event model.\n", "proba": 1.1060465965329058e-07} {"commit": "94653e7a752903858832f6a0e31d991d62d1db73", "message": "Cancellations check inside event model\n", "proba": 1.752696476842175e-07} {"commit": "cfb10029209396ae8594df8378e0b4c6599fc3ff", "message": "Use new DeviceClass and StateClass enums in daikin (#61340)\n\nCo-authored-by: epenet ", "proba": 1.2685168826465087e-07} {"commit": "ac85a3ce64ea815fd3530085c085e384cf8269fb", "message": "Use pydeconz interface controls for button platform (#74654)\n\n", "proba": 1.0261345551043632e-07} {"commit": "a8e2f9cbb7fc8f8a493761975db3ceddf78845fa", "message": "Remove configuration details\n", "proba": 3.99435407416604e-07} {"commit": "e54e35367649ff875934795ed1cac3c73d044981", "message": "Temporary Shelly hotfix for 2021.12.6 patch release (#62885)\n\n", "proba": 1.0055467214442615e-07} {"commit": "0dc5a4f34a994be270d38ef37d581274cb2cc88d", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "8c657d4254a1f64f2b8efebef429d0e685fe0f26", "message": "use the input stream codec as the template for the output streams (#22747)\n\n", "proba": 1.1333388272305456e-07} {"commit": "69ac5baff1b0567be8a8a9837c0e8cec384a7ae7", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "fc36ae17176082f972401652f7645f24f0c890fa", "message": "fixed missing :\n", "proba": 2.2292502421805693e-07} {"commit": "157f145ea9d97525ddb687bfd1832661b9b0d220", "message": "vicare: Fix dynamic unit of measurement (#64782)\n\n", "proba": 1.2686959394159203e-07} {"commit": "7c5f2af4458fb2bcf158d31233608f961291221d", "message": "Detect lustre devices even when their block device wasn't reported\nby storage plugin\n", "proba": 1.40412964810821e-07} {"commit": "fc13ebe4cae60575a7aab5e2936253c8de20b5ee", "message": "Adds universal IonObject serialization for this test\n\nThe test is extended to test a specific case but the other tests' client\ncalls aren't through the encoding layer so IonObjects remain IonObjects\noutgoing, this patch attaches a serialization layer to the client calls.\n", "proba": 1.7277481845212606e-07} {"commit": "9b529f2ba00c4ee76b571ef1c27faada89e4bc29", "message": "Add full compatibility functions.\n", "proba": 1.2513562808180723e-07} {"commit": "b241f242b6eae6c2c19a6fe0336933c22998f262", "message": "deal with negative RAs\n", "proba": 2.0085381038370542e-05} {"commit": "f37b0c6fadb9dc0b4134ebe844645d44f78c146d", "message": "ENH: Add a benchmark comparing block to copy in the 3D case\n", "proba": 1.2780040492543776e-07} {"commit": "782fd1b18a577852a76e6597c1b3887c94ba869a", "message": "better verbosity\n", "proba": 1.8269171050633304e-05} {"commit": "faf669bc3c88e5483ba3706cecc1642094e5f05e", "message": "Updated aldryn config\n", "proba": 3.087145046265505e-07} {"commit": "114d7bc6b45d18f528a7ed5c12e1938e35efb93c", "message": "Update hash_db_password.py", "proba": 7.148537406465039e-05} {"commit": "3224a95d79f6e3166e235f4cfc857a48d1b17c52", "message": "Revise docstring: memoization\n", "proba": 0.9987629652023315} {"commit": "f040e34adfaf67590c009ef85240c85939374c2b", "message": "move to StreamReader and StreamWriter api for asycio\n", "proba": 1.3369783857797302e-07} {"commit": "6553865d792acafedb155d87f807013614470bc9", "message": "removed buggy line in readers.py that made pygame mandatory.\n", "proba": 1.0933651140021539e-07} {"commit": "e2627ae70801093954fa0ae20f324f4278324721", "message": "Fix name spacing\n", "proba": 0.9988571405410767} {"commit": "70627c35500448dba73db30b08a48abf9f8f7084", "message": "refactor code and fix test\n", "proba": 2.491212399036158e-06} {"commit": "72dbe8f25cc7577518bcbd8c684463e83c89885f", "message": "Timezone is now per-session instead of per-function\n", "proba": 2.3095954304608313e-07} {"commit": "e8a4aabee925bcd0bb639b1d3a8f9eac78ab4041", "message": "Remove _setup_timers, as it is not needed any more\n", "proba": 3.339764020893199e-07} {"commit": "cecc108f679c146fb5d2823b26b36670675741ed", "message": "always use default localeconv\n", "proba": 2.3061443243932445e-07} {"commit": "547730ba30c8c8f7782ef188a9e3db3ab324ca61", "message": "Prevent datacursor from being garbage collected until figure is. Fix for issue #50\n", "proba": 1.7838392807334458e-07} {"commit": "85fa0205b4aa9da0c7c59ab5ce1bc100c53115ba", "message": "Added test for JSON-LD :root graph\n\nChange-Id: I336eecc730324c6f08c48f82b5a8d4d2207812ae\nReviewed-on: https://gerrit.franz.com:9080/13158\nTested-by: Hudson \nReviewed-by: Vsevolod Domkin <691a77cd21a31b1b144537311a05b0bb5ff8fd2d@franz.com>\nPTEST: Hudson \nReviewed-by: Ahmon Dancy <8f7d8ce2c6797410ae95fecd4c30801ee9f760ac@franz.com>\n", "proba": 1.737309816007837e-07} {"commit": "2ac49aacb0f9e7c15b48119bff13be45e9b3616d", "message": "Switch to compression to blosc as its faster than gzip\n\nPiperOrigin-RevId: 425762169\n", "proba": 1.6725623197544337e-07} {"commit": "705c47402dd9b665d467322d3b85fcb7f76c4507", "message": "\u4fee\u590d\u4e00\u4e9b\u95ee\u9898\n", "proba": 8.21806588646723e-06} {"commit": "858e84f336f76a1e65b730834ad8ffb346ee6b0f", "message": "fix logger singleton to work with pyjd\n\ngit-svn-id: 6db40d0534cac73ba019dccfebee869402ecad0c@2075 7a2bd370-bda8-463c-979e-2900ccfb811e\n", "proba": 6.762017619621474e-06} {"commit": "0e1f4f8de57b4462f8d41c64de1427c5c1cf7e8f", "message": "[clang.py] Add tests for Type.is_volatile_qualified and Type.is_restrict_qualified\n\n\ngit-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@150971 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 7.58948260681791e-07} {"commit": "91598f7a678afc689ba36d6ec677f084c3e4436f", "message": "dont stop watchdog\n", "proba": 8.37557593058591e-07} {"commit": "4584066afa43ab8ddbfb2a7d0c43c74e2cc6cee5", "message": "converting flowcell lane ids to str for barcode checking", "proba": 2.4615408165118424e-06} {"commit": "9bbad92a8aec5e52781fab42d913156c8d62a451", "message": "Fix output\n", "proba": 0.9999994039535522} {"commit": "873c1ee5993d7fdd4894685677187dc77b09a840", "message": "Decouple Connection from the driver and don't require 'driver' attribute to be\nset.\n", "proba": 1.136220717512515e-07} {"commit": "7db9f0d2c2ffb31a9ec6aa41d8104ae86cc3b5a1", "message": "Updated example to use cascaded=1, and fill=white\n", "proba": 2.610170213301899e-07} {"commit": "acd0ed2f7947d07f2a21ad8089615b000501a83d", "message": "indentation change\n", "proba": 1.6451010651508113e-06} {"commit": "f10dcd822f72e86d0eb0071acf7d38e81cfe32da", "message": "Add a blank line\n", "proba": 0.9999995231628418} {"commit": "c7ad50beb33d3324ad5ef4f4eb362bed322f918b", "message": "clean should allow running tasks again\n", "proba": 1.5570129789921339e-06} {"commit": "b1acae34064b4d5726176170b4f6d630034dbe50", "message": "PR comments applied.\n", "proba": 1.1668240063045232e-07} {"commit": "35d6d780bddf72ab5ff216a7603bd89f980c8deb", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "e511da2cb7b73891f26b93e684d9fba80042f3cd", "message": "fix syntax\n", "proba": 2.335806129849516e-05} {"commit": "83c411b308e7d8ddb8897e922d6f985e9b92f68f", "message": "\ud83e\udd45 Logging for start/pause/resume/cancel print\n\nAlways logs responsible user or plugin to comm INFO log.\n\nImplements #3766\n", "proba": 1.0856969367978309e-07} {"commit": "86c05a948cd3356b3b02bd900fcca72d696dd989", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "c1126a925c1796da74e64824bc43189567dce510", "message": "highstating should not happen in the launch step\n", "proba": 1.0517693453948596e-06} {"commit": "3fe6352ab075ee302a5067b656013974077e27b3", "message": "When rendering raw file contents we should not also render the page template. Closes #1801.\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@2215 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 1.4669700476588332e-06} {"commit": "dcd657cb66f6d1f4df78c23bffeae01bf8a88ec3", "message": "Revise edge case & memo return positions\n", "proba": 2.057531219179509e-06} {"commit": "0be4e6437e83c5d8942eeac7d8147018c68fcaeb", "message": "Mudan\u00e7a de formata\u00e7\u00e3o e fechamento de arquivo de resultados\n", "proba": 2.3199399379336683e-07} {"commit": "9ea9f148668479d2ec8685ec6c65592d873acddf", "message": "Lint main.py\n", "proba": 1.2155661579527077e-06} {"commit": "72e7944993ccd3415d8aa493a8b4651b7861faaa", "message": "misspelling\n", "proba": 0.9998458623886108} {"commit": "2aa663135139124ef506ee81a45faf42d8273299", "message": "fix roles migration\n", "proba": 7.402227879538259e-07} {"commit": "778f9039fb09f4bcbf6e8c29bbc94269470a6048", "message": "supportRepetierTargetTemp being true is a too broad expression, also check for TargetExtr or TargetBed on line\n\nSee #486\n", "proba": 1.2583332420490478e-07} {"commit": "eeafa015a6c87d385d6c6b5e4d9c57aaaa8acfc2", "message": "Make a cosmetic adjustment\n", "proba": 1.2904233699373435e-05} {"commit": "dbef88a2f4263c9b72205637ff9081caef92dcd4", "message": "Limiting max frames\n", "proba": 5.83745702442684e-07} {"commit": "32a25968f488efa82869f805a91f810a3e3981e7", "message": "Fix for Issue #217. Modified update() in user_name_mapping.py\n", "proba": 2.613400909012853e-07} {"commit": "e73d48bc675ed068db0cb8f61bf5ce0d12ae2008", "message": "Render a transparent ghost of the selection when things are selected.\n\nFixes Asana issue about layer view\n", "proba": 1.2340689181655762e-07} {"commit": "6ee7a75f4f359adb557cb1b31423d9669db56ba7", "message": "upload to recorder fix: set Content-Length header explicitly to use LimitReader, avoid chunking (#206)\n", "proba": 1.0652298243485347e-07} {"commit": "c73ee3b1afd23f7676d70bda31b8cb0edf2a9793", "message": "adding some documentation for later\n", "proba": 1.5217283078072796e-07} {"commit": "dac7436edfa779b07499d66ee0af4878503427d6", "message": "Fix inconsistence with -b --error-test\n\n", "proba": 2.694816794246435e-05} {"commit": "a1b6205497ac079da24201478d76f3435857dd7b", "message": "Add a default height for the traits view\n", "proba": 4.3243827008154767e-07} {"commit": "525a14100be26a89185421657989616c3711eedc", "message": "make username/passvoid better findeable ;-)\n", "proba": 4.442667432158487e-06} {"commit": "45010a7a870dbd14e57c149cfd3883b4fe43f161", "message": "patch the attribute names\n", "proba": 1.181065158561978e-06} {"commit": "c726cd9e0474b72c7e7fedaec892b02aa1fa6fe3", "message": "get_info documentation\n", "proba": 2.95451087595211e-07} {"commit": "1819bb10d60882b048577a13a48a590b61905901", "message": "Parse attachments in the order they arrive in the XML. Refs #585\n", "proba": 2.1943183980965841e-07} {"commit": "a37ef33eb13808f6ac32239b95d9a44f9c15dd8a", "message": "Change name of class to avoid conflict\n", "proba": 3.747148866750649e-06} {"commit": "8e8991f847f20d1acd850e2d366008c0a3d95c9f", "message": "documented resize_box.py\n", "proba": 1.2136549685237696e-06} {"commit": "2dac5ca92685eade89eb31928f53f3ffb84d0069", "message": "Removed debug statement in iperfcommand that was accidentally left in\n", "proba": 1.2951062444699346e-07} {"commit": "9c26ad3e022c253f6fe23f1529f73f7154fda273", "message": "\u4fee\u6539\u9ed8\u8ba4\u65e5\u5fd7\u7ea7\u522b\n", "proba": 3.313830632123427e-07} {"commit": "47dff0bd0c7d4be641268845d70d08228a621108", "message": "Make players moving more smoothly, add ability for recursion\n", "proba": 6.342569349726546e-07} {"commit": "0d68fbaef300c53db407f6296c00e493e4b040bf", "message": "use xdg-email by default, fallback to xdg-open + mailto uri\n", "proba": 2.2237740893160662e-07} {"commit": "a54fa32dc8cd8d3bc2cec9488773d20926f63537", "message": "Issue 10365: Add and replace comments; condense defaulted attribute access.\nCode patch by Roger Serwy.\n", "proba": 1.003757006401429e-07} {"commit": "e0f15c59828bc95c7de56475f036b8867f85d3f6", "message": "Add WaitForPortCreateEvent in BaseOVSTestCase\n\nWhen a port is created, the test case will wait until the IDL event\nis raised and the port is effectively created and the local DB\ncache is updated.\n\nChange-Id: I660baccde67a040731538276fc6dff05a10efb68\nRelated-Bug: #1910717\n", "proba": 7.338994123529119e-07} {"commit": "16d43f6252579ab6417c7f777355d2750c81403f", "message": "Fix input with extra 1's in the shape.\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@2895 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 0.9999994039535522} {"commit": "71d96c771d1694d938857064eaa49f923718eae9", "message": "Before calling traceback.print_exc(), call sys.stdout.flush(). This makes\nit much easier to see where things went wrong.\n", "proba": 1.587775244615841e-07} {"commit": "79170005aacdfb8b7ae03a429f2c7e5606431925", "message": "Issue #15314: Tweak a pkgutil test to hopefully be more Windows friendly\n", "proba": 1.080713616374851e-07} {"commit": "8bca62116d53faf6bd4e1d32319f4c3e67dc1ea0", "message": "Let the O/S supply a port if none of the default ports can be used.\nThis should make the tests more robust at the expense of allowing\ntests to be sloppier by not requiring them to cleanup after themselves.\n(It will legitamitely help when running two test suites simultaneously\nor if another process is already using one of the predefined ports.)\n\nAlso simplifies (slightLy) the exception handling elsewhere.\n", "proba": 1.2759069534240552e-07} {"commit": "4cb7c52ed53477a9f53f8219b05ac37317f9476d", "message": "- added a second version which uses the builtin file class and its\n read method\n", "proba": 1.3650416974542168e-07} {"commit": "edf678989b7eeacd1120e6849ed9bc5befe4c3be", "message": "make sure the uid entry in a slice has a gid that solves\ntake care of root's and slice_uid's .profile *after* the account gets created\n", "proba": 2.2762270646126126e-07} {"commit": "2c4628cc5433b979e4a41346cc99b683ba3e9db3", "message": "Fix indentation and add a skip decorator.\n", "proba": 1.215688740785481e-07} {"commit": "51e508d2df0ca80b6b493f48e64fa85ae8f8a195", "message": "cvrptw_to_json: adopt JSON 'time_window(s)' fields names\n", "proba": 7.217814527393784e-06} {"commit": "d99988b5b49082cbc26cf8b28c5c687104fd7b3b", "message": "fix syntax error\n", "proba": 2.7736614356399514e-06} {"commit": "2c024a4d96660080fb869243c2c42c4276d2303d", "message": "Add missing one_hot method on Feature\n", "proba": 4.9876725825015455e-06} {"commit": "935df1c04e2aa412fe23140241cf1b30dc442a25", "message": "fix read_griddata_fits docstring\n", "proba": 6.0493625824165065e-06} {"commit": "94a2c41a24c9eaa1c818551fa78bd7f2a2d0cb04", "message": "Lowered the benchmark sample amount\n", "proba": 8.475048502987192e-07} {"commit": "ae410723e9136204aebb75c2bab63aa5c60875fb", "message": "android: Run upload results script from the parent of src/\n\nMatches other ports.\n\nBUG=310981\nTBR=dpranke\n\nReview URL: https://codereview.chromium.org/40253002\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@230730 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.21736786695692e-06} {"commit": "7cfccc1d518b793e69f3834e5b7b826f58ca5481", "message": "Needed to reset any settings that had been changed if the user\npressed Escape to dismiss the Advanced Settings dialog.\n\nsvn path=/trunk/; revision=3372\n", "proba": 9.689460057416e-06} {"commit": "77d20d287cba04ff16483df83fdd393c6224ba51", "message": "Add AWS credentials to buildbot aws steps.\n", "proba": 1.2276761651719426e-07} {"commit": "652094d6d5dcf449578aef9f4c3096d6dd530061", "message": "Revert change to long description\n", "proba": 3.2465864023834e-06} {"commit": "8178b8083e29b2f9930e8e72e9f0d80beb847ba4", "message": "Implement file upload on server side\n", "proba": 7.471248864021618e-07} {"commit": "33212310d27981f1c37ce12a0141a9874ea72f14", "message": "Enlarged the default page range to handle holiday weekends.\n", "proba": 1.5014371967936313e-07} {"commit": "447a7c56401dce19f5bdd412e5f66ba40180b665", "message": "refactor take_catty_corner to use parse_analysis\n", "proba": 1.772093128238339e-05} {"commit": "f321366fdd486dd0cd49c15a5040b54e33e4aa8f", "message": "Update comment and docstring\n", "proba": 2.1231099367469142e-07} {"commit": "50afba8cd7f65a72de28c459b110cefbd2af5ff4", "message": "Changes in detector.py and designing Mask object\n", "proba": 1.421471154117171e-07} {"commit": "ea8f8fe44b5b7163720eb2c6526cb1ed3c72a939", "message": "real last\n", "proba": 5.993775857859873e-07} {"commit": "b49a20bcfded19fd5b4859322ad250ae0c0837c8", "message": "[#7540] ticket:816 Fix tests\n", "proba": 4.4221644657227444e-07} {"commit": "91571d066a61f98392eb28b898de4c6a2234862c", "message": "Update admin to add group info\n", "proba": 1.4589126351438608e-07} {"commit": "8273bcdfad1d4cd1e152ae2615c09770d1f24a42", "message": "add search and display fields\n", "proba": 4.5828954853277537e-07} {"commit": "9eb64c6c3c2fa7caf801ed8b217fb38ff72e7a15", "message": "add six_name to session import script\n", "proba": 4.16599874597523e-07} {"commit": "d40c71fedefcd523c2a7a26619ebc0f72bb3758f", "message": "Improved comments\n", "proba": 1.6222196563830948e-07} {"commit": "a71bd1642e6e19ff8af74a2892c5d1a3b57173e0", "message": "Strip penalties\n", "proba": 5.251615675661014e-07} {"commit": "8fb201b866c0eabc99c370cf3ccc993d2de06264", "message": "Update version 0.10.1\n", "proba": 7.806344797245401e-07} {"commit": "ffa551d8e4519005791f42bb2862f0411c54ced3", "message": "Update projectfiles_unchanged script\n", "proba": 6.9796345769646e-07} {"commit": "bbe43817fdb7d60b5f9cfbcda858fadd4ad88304", "message": "Update create_img_item.py", "proba": 3.3287599308096105e-06} {"commit": "fc9d8dac3494f56ef47f2a1287a7ed66a81d3da9", "message": "#16 #260 test for PhysicalProperty", "proba": 1.3363600714910717e-07} {"commit": "ddaf8b71d8a2f874fe301525878edb7528c714df", "message": "Don't build ConfigurePythonCarbon and ConfigurePythonClassic any longer,\nclassic Python is gone.\n", "proba": 1.0904390279620202e-07} {"commit": "bfb8da0e4359fea65e5bbc3d00f3ed8c65464d74", "message": "added CoreGraphics to build list\n", "proba": 1.673174949701206e-07} {"commit": "4e62d7d9514449be5afc5a27b15726a254077e89", "message": "Remove dangling argument\n", "proba": 2.1137524527148344e-05} {"commit": "90d16c270a6aa9acf4bb445c4666ed2631bb1267", "message": "Revert \"Add regression test for bug 1550919\"\n\nThis reverts commit bbe88786fc90c2106f9fae0156ee7b09ece9a83b.\n\nThe new tests are racy and causing a modest amount of\nfailures in the gate since the change merged, so it is\nprobably best to just revert the tests so they can be\nrobustified.\n\nChange-Id: I18bd68ba6e59aba4c450eb85e6f4450d7044b1e9\nRelated-Bug: #1806126\n", "proba": 1.5887734434727463e-06} {"commit": "31290872fbde6688abee2b14d783101f2583a9ee", "message": "NXDRIVE-170: Typo\n", "proba": 5.301635042087582e-07} {"commit": "7a406d44176d9a74bdfaf9a4a8eecf06771a0ddb", "message": "Cache site config per-request to reduce DB queries from template render (#23791)\n\nARCHBOM-1139: We were seeing about 150 queries to the django_site table\r\nand over 200 to memcached just to load the login page. A lot of these\r\nare via mako template rendering, but there are other sources, and this\r\nwill hopefully nip it in the bud.", "proba": 1.0603566380495977e-07} {"commit": "92d3117ab87103d7b36f08068cb583c9317c8a9e", "message": "calculators/hazard/event_based/core_next:\n\nFixed a transaction issue that was causing GMF results to be discarded\n(due to the use of the BulkInserter).\n\n\nFormer-commit-id: bd05212e7010dc3494cfbb4cfed43964c5b33a0d [formerly bd05212e7010dc3494cfbb4cfed43964c5b33a0d [formerly 2173ea21f99844214812790ff98b403d80ba9cce]]\nFormer-commit-id: 77131e774976067d3e3c54373c86fe84df8a7fab\nFormer-commit-id: 357c07d79ca3f886aef020816b4c968264f8e253", "proba": 1.5942852769512683e-05} {"commit": "d1f08df329da7561142757ac292fd426782f0608", "message": "Fix exceptions_captured manager in i9n tests\n\nRecently introduced manager handled only 'bad' failure scenarios when\nSelenium became non responsive and caused again cryptic failures for\nfailures that were perfectly reported before exceptions_captured\nintroduction. Now both kind of (responsive and non responsive\nSelenium) failures are addressed inside it.\n\nChange-Id: I564b5e8b35fb2e84c27374bcac8a49cb6262b058\nCloses-Bug: #1545042\n", "proba": 3.149554686388001e-05} {"commit": "48fb7f68b0ad108f1e568d56eb04dacac02e5738", "message": "more debug\n", "proba": 1.390716164451078e-07} {"commit": "498f94668da2443df191e11bc39442208a778016", "message": "Keep all_finite tensor on CPU when using PyTorch Frontend (#5371)\n\n", "proba": 1.3427194289761246e-07} {"commit": "2e071c0e37fac657955de70fb7193b3e46ba2aef", "message": "Update subscribe_speakers_to_talks.py", "proba": 4.737340759675135e-07} {"commit": "aa11fe5dec452bda1393954c6e6f43b74a3b8edf", "message": "FIX flake8\n", "proba": 2.62407723994329e-07} {"commit": "18f8a30305683d280e2b2b147dd598cdb50a0cb3", "message": "TupleVariation: add scaleDeltas and roundDeltas method\n", "proba": 1.5915941276034573e-06} {"commit": "708b847ac799d35eaf0b15f91f08cb132f182354", "message": "Checking for subtable format (Formats other than one don\u2019t have .ligatures attribute, so throws an error here and return -1). Only Format 1 seems to be wanted here, so checking for it.\n", "proba": 9.99226017484034e-08} {"commit": "db3c50a342507aa4b079c6d020f0f325627b8584", "message": "Minor: remove debbuging print call with no more use.\n", "proba": 1.0657500837396583e-07} {"commit": "025da327fde5b20a4f8bf8edfea6a322722a54bb", "message": "Check nodes changes before updating\n", "proba": 2.5761713118299667e-07} {"commit": "b0ebaf28dc670a34d647be18cf9060ad52ef7f43", "message": "windows fix\n", "proba": 8.218380571634043e-07} {"commit": "79f062b4565e53c0819649be3bd6d253f85c4aa8", "message": "Minor\n\n\nFormer-commit-id: 018ce6c4c0df31983a88a568de708bebd6eb0286 [formerly 4a9af27dbf187164a8d86a6431eb28df35a0cf08] [formerly b51afeeee391211bca697ec5458b00b46d1f64af [formerly 100cff5f87bc5d2b651b5f5bb41988df19fade91]]\nFormer-commit-id: dbec3373a82c1241ccd7de9eb265d7389fb5e352\nFormer-commit-id: 0629de6dd23b551e3f9b83f910a221b3ea9408ca", "proba": 2.052333911706228e-06} {"commit": "069100c9f4a117c76403567fd3862f0139d701bb", "message": "converted power plot into plotnine\n", "proba": 0.9999887943267822} {"commit": "b116ee909e0a8112ee539cd19452a470d1e7550f", "message": "if recursion log the error and continue the sum\n", "proba": 3.0231522032408975e-06} {"commit": "bcebeedffb87b3c22fd993b1ee2c86d45dd6f83e", "message": "suppression\n", "proba": 1.7598611520952545e-05} {"commit": "b986a451a0463f39fe24ddba9edd87ca92402136", "message": "not use syncbn in single device (#2442)\n\n", "proba": 1.1018984480415384e-07} {"commit": "08c574654d5089ffdbe8230e9cef4e9f56a02035", "message": "csvImport\n\ntakes in CSV file and creates a 2D array that represents it\n", "proba": 1.738244606031003e-07} {"commit": "196ec47735550018a674c5f7ad7bb50f1c62941d", "message": "Attribute meta_tables was added, keeps data from custom tables\n", "proba": 1.8828701797701797e-07} {"commit": "17593bd75e0fb70c2e5680851138b5df407843ed", "message": "allow custom fields in the report\n\nSee the note about custom fields at the end of [the field list](http://www.bamboohr.com/api/documentation/employees.php#listFields) for details", "proba": 1.5746350356948824e-07} {"commit": "11fc8df2a00cbd7cbb6daa8e5c356792207d5f19", "message": "CLI argument handling for mini REPL\n", "proba": 2.614836773773277e-07} {"commit": "cb40dba604594e996a1b87f0507ae2256a691abd", "message": "Reorder imports for PEP8.\n", "proba": 1.1143090716814186e-07} {"commit": "50266b417208f562e7fe430d5ab2906b56c323ca", "message": "mod: remove alpha bleeding debug\n", "proba": 2.692060547815345e-07} {"commit": "2c9f508b3cc0e0d0d6477c2ca4a79919cf0a7338", "message": "+ reverted by git.\n", "proba": 1.2085517653304123e-07} {"commit": "46f75b1d3418f0a6f0cbc10fb7143f5dce71c138", "message": "a hack (hopefully) temporary to download all the tour content\n", "proba": 1.1176210534813436e-07} {"commit": "47d1ad81872915f9d48e9d6aa8209410990cfcd3", "message": "disable pathos\n", "proba": 2.0002082692371914e-06} {"commit": "0d71c57420c8d910780648fd295727cb57ff3ac4", "message": "maya builder to turn off 'inheritTransform' for constrained objects\n", "proba": 1.6173922290363407e-07} {"commit": "390cb484e418ea82ac33113ff363e01d5f8c5ebc", "message": "changed to function\n", "proba": 1.3728982594329864e-05} {"commit": "57dc84dc71967fd57f4ca8daa5cd5d931615f31a", "message": "better usage description + python3", "proba": 3.9088881749194115e-05} {"commit": "bd94e4811ea30af52d03ad8d20d507fc81cdb0de", "message": "Avoid calculating max by calling min()\n\nThis should make it easier to simplify expressions such as\nMin(a, Max(a, b)).\n", "proba": 0.00013019087782595307} {"commit": "ea245f90cf0fb18cc0894d4b959ce7c3a75cf0c5", "message": "align librispeech\n", "proba": 0.9984007477760315} {"commit": "fc09c2ceef75728881f4d4cc1d385f64d2f373f8", "message": "Sql broken\n", "proba": 6.962628503970336e-06} {"commit": "6eb9b6ad8acb12d89629894338e01b192e7c9089", "message": "Remove baseclasses.py file.\n", "proba": 1.4652569291229156e-07} {"commit": "b679e3b479f4889d045f56530448161523cb6290", "message": "fix syntax issue\n", "proba": 1.1509232535900082e-06} {"commit": "187fef12e5cdf7ffeb8257146cbd93a82c11e348", "message": "Fix regularization for ThreeMesh. First example run\n", "proba": 1.175001898445771e-06} {"commit": "40479800bd1fb67a0f9f3bd67a5eed0570434629", "message": "Getting closer to a working server.\n\nStill plenty of work to do before it's ready.\n", "proba": 1.0271097039549204e-07} {"commit": "aa263480f281be2c2c6dd4565c0b2fffdf1917a1", "message": "Reverted yesterday's change setting noneDisplay; it is no longer needed due to a\nfix in RO.Wdg.OptionMenu (and stui will work with RO 2.9.0 because the defaults are \"\").\n\n\ngit-svn-id: 4d114f4a1c9258ead4d7d86efa00e8a26ab98215@126188 b00c9580-4927-0410-8824-811d448ea4c7\n", "proba": 2.251299747513258e-06} {"commit": "0925c643ba8d79deda836a2ebfb885a1340f21de", "message": "EXProxy view requires ToU\n", "proba": 1.8543967428286123e-07} {"commit": "f73fa54b8f93ed7eb5681339e267432556e16e0b", "message": "A proper fix for bytecode overflow (PY-23022)\n\nIf offset becomes more than max byte value we need to insert additional EXTENDED_ARG instruction like Python interpreter does it.\n\n(cherry picked from commit 928a965)\n", "proba": 1.3103900187161344e-07} {"commit": "843121f8c0e4c0f2a533540633c62060bb676ea1", "message": "remove unnecessary dependency\n", "proba": 0.0004125674022361636} {"commit": "a276b1b575fe3559e4a11e57e92efffcd4f91fb6", "message": "[FIX] Dependences\n", "proba": 9.442325676900509e-07} {"commit": "54171939068b355e6705fdc54b7656d12807aabe", "message": "Removed not implemented tests.\n", "proba": 1.2417935124631185e-07} {"commit": "e49beb0e1523e14af2b00e89745b4a0c332975c6", "message": "[FIX]stock_partial.picking: rounding issue with same or different uom in partial picking wizard (Case: Ref 577140)\n\nbzr revid: skh@tinyerp.com-20120724114233-rl1da0slx8t23mfu", "proba": 1.460873022551823e-07} {"commit": "bb876a73d6adf3026e69492ba5a38a63dd2b69d6", "message": "Don't crash if a window no longer exists.\n", "proba": 1.282576533867541e-07} {"commit": "37edb43b6060bc9e7285e4a8b66baf08f6e2fe09", "message": "ROMFS: Strip README files\n", "proba": 2.0075033546618215e-07} {"commit": "ccd3d132d0ade749afddf5ab2dfc8b9c608ef1cd", "message": "Fix album track listings when it contains non-songs\n\nLike /al_18055.\n", "proba": 1.376138953901318e-07} {"commit": "c902e793f8e5f661f68f86b039abdc3299710c7a", "message": "Typo fixo\n", "proba": 2.2661258753942093e-06} {"commit": "17852fd1dbe46bca0e0100d3e92a27f3d8e3acd7", "message": "Clean constants\n\nAdd [x] onLine checkbox to select online or offline (e.g. for use of\nimages and web fonts)\n", "proba": 1.0935278282886429e-07} {"commit": "aca74e3dba514153ff307500392cd9c09a9e6902", "message": "onerror parameter missing for Window.create_window()", "proba": 3.2788642556624836e-07} {"commit": "8d66648ef1c3c70f83cdd23fc1d241b5dec30293", "message": "Allow multi-analyze to make directories\n\nFixes #1055\n", "proba": 2.901549009948212e-07} {"commit": "dcfcbd5e51a67916d21e948827b7547d300caca7", "message": "Fixes formatting\n", "proba": 1.160508872999344e-06} {"commit": "c5673bc2b0d3dfdafdcfb08614a7c6fe006c0d1a", "message": "[FEATURE] Recreate all container with \"volume_from\" configuration on redeploy\n", "proba": 1.6120348789172567e-07} {"commit": "09facb67ebbfd53bbfa192866e1690cb83a21876", "message": "fixed synonym test\n", "proba": 5.0513290261733346e-06} {"commit": "2edf4c170809ffcc925a4b24d6ae9a9d01003be5", "message": "Better debug output for better diagnostics.\n", "proba": 3.141100251013995e-07} {"commit": "1fda883dc7f9ac22a2eb8e43dd010ee7b18660fd", "message": "Cleaned up docs from old iptables state.\n\nThese docs are no longer valid for this module.\n", "proba": 1.073856878974766e-07} {"commit": "6a79d15a620adec5e4e3145a6ef7399cd07b6df8", "message": "Initial commit of singular Puiseux series expansions.\n", "proba": 1.0271057959698737e-07} {"commit": "35c5fd2606682827e43f707400d726f84f41104a", "message": "Fix for issue 11.\n", "proba": 1.112970835492888e-07} {"commit": "01642a136cf2332c84a87764d54a640aeb94c3f2", "message": "person sitting\n", "proba": 0.000145735772093758} {"commit": "281ae6c9bf29aef8d9c07a1ec14ff5fedeca2e32", "message": "Replace `tf.train.warm_start` with `tf.train.Saver` when extending graph.\n\nThe former verbosely logs too much information, and may be more brittle than the ubiquitous `tf.train.Saver`.\n\nPiperOrigin-RevId: 228517312\n", "proba": 9.653796587372199e-05} {"commit": "8e2413eabfecc9ef4c3baa3991e96ea0e62393d5", "message": "Removing redundant script\n\nSee get_geoInfo.py instead.", "proba": 1.1850383430100919e-07} {"commit": "9f4982e351e36d7f3d248e0d2fbee24617cd4509", "message": "Fix install so organizations have vote.prohibit permissions set\n", "proba": 2.1815736772623495e-07} {"commit": "801ead866ea94d9b144758198f121b0a10caeb82", "message": "Remove deprecated kwarg\n-Breaking change from \"master\"\n", "proba": 1.0913545622770471e-07} {"commit": "7f68cd982ea123fc9efbaf64a7655d1d0611b284", "message": "removing factories, only one standard way to instantiate the client\n", "proba": 2.447967233365489e-07} {"commit": "c96a7a1232151facc4f954201b625af48f88fc1a", "message": "Minor fix\n", "proba": 4.2334357885920326e-07} {"commit": "73705e28030c6e244c041fd6e758bac7180ca6f2", "message": "(Update)\n", "proba": 1.7179606004447123e-07} {"commit": "39586c1bfdd588e258a88f7b900ae9faedd1b15b", "message": "cmis_web_report_write_alf 14.0.1.0.1\n", "proba": 6.726468200213276e-07} {"commit": "9060bf590d255e9f38c261c7925c1fb2ad6513fa", "message": "fixes cms registration, added tabs localization\n", "proba": 1.295649809662791e-07} {"commit": "78dd9bb220a8e1a03b51b801e023e4401a351892", "message": "Support animated pngs\n", "proba": 2.59800401636312e-07} {"commit": "0afad4211d307273997f41436d3f33b2d0419939", "message": "Turn off debug.\n\nNo need for RPS to allow state shifts. This is one game whose state\ndiagram I have pretty well covered.\n", "proba": 1.0349640433560126e-07} {"commit": "502ea534e96b4dbcfc6da7800bff49961b5546c8", "message": "Fix submodules are not walked through\n\nInstead of walking through submodules as repos,\nthey were included as directories.\nRefs #37\n", "proba": 2.309580122528132e-05} {"commit": "fb2c32645aac66b5b029d85ba5fd072745ee4f64", "message": "process 'article' and 'index' tags\n", "proba": 0.022477328777313232} {"commit": "7aecc3ccfb94f0e99034139f901a87fdbbe3eeb2", "message": "The 'menu' word added in regExRemoveNodes\n", "proba": 9.941168173099868e-07} {"commit": "1a051feda19e3dc2550903fb5056edcf0dfd9ed3", "message": "fixed mtg plugin\n", "proba": 4.3814495143124077e-07} {"commit": "574e2e3d70ea6a25d07f205cec85c56e8106f62e", "message": "Increase the amount of osu! top scores to 100 for now.\n", "proba": 5.851156856806483e-07} {"commit": "9f211783cd623d080f4a1275bafdce7669eef0cc", "message": "magic_read should ignore possible pesky \\r characters on Windows", "proba": 5.127832537255017e-06} {"commit": "fcd2c798996b481f9fde19fc3f5febac1b812d6e", "message": "Fixed more shit\n", "proba": 1.2847935693116597e-07} {"commit": "29985caa1efe001492a85828d122fdf94c00fe7a", "message": "Added exception handling\n", "proba": 1.6660702328863408e-07} {"commit": "b4cfc2d59761a657c18f49bd7d75a06c4a7550df", "message": "Added \"now+/-\" way to specify \"at\" time\n", "proba": 2.7858880002895603e-07} {"commit": "0ed887fbfeca80accd99aa2b05d83dfe60ff30a1", "message": "Fix message indentation\n", "proba": 0.0009335713111795485} {"commit": "9b19ac7b89ccd16fea205b139afe96c6a6b33dbc", "message": "Move x and y parameters to tuple\n", "proba": 5.8686833654064685e-05} {"commit": "80f4c1d7496f7525afaf51fb74dbc919bd723152", "message": "skip another failing test\n", "proba": 4.2381500975352537e-07} {"commit": "eafe5c77a05d0f6d24bfb61c2be3a7d46c411b25", "message": "add new projections.\n", "proba": 1.2363376811208582e-07} {"commit": "44db9815aeaad8b23eecebd3e761466ffdf854f4", "message": "Vcs: Normalize target dir, ensure we have target path.\n", "proba": 1.1623880880051729e-07} {"commit": "981aea6180388d078aa9a98ef0f04b8f63a29b7a", "message": "contract name change\n", "proba": 3.0083635920163943e-06} {"commit": "d00d809735210f53c3da71195107f1991814eb52", "message": "fix minor bug most likely due to merge error\n", "proba": 5.781681693406426e-07} {"commit": "31e2a646495ee94d3b1ccc8483d47622851c9f00", "message": "random renaming that did not happen fixed\n", "proba": 3.9705255971966835e-07} {"commit": "fa2f9645125659ccde614ee25bfdcb3cfc51ca22", "message": "Made densities easier to edit\n\n", "proba": 1.2417673644904426e-07} {"commit": "02d6e904fe02a4c53b1878a3f6c44c074de47d79", "message": "Add __str__ to Decorator\n", "proba": 0.9999978542327881} {"commit": "fe235ba8a384306fe3dcf06bab3d2862aaa19a3b", "message": "improve pull request data test\n", "proba": 5.741039217355137e-07} {"commit": "791fc2e07691b29912506d6a0b51b0bd11766321", "message": "Added docstring to NoLog\n", "proba": 1.7240924421457748e-07} {"commit": "53829f5a65727ba5ba0b69785bd74bf77d3e2ecf", "message": "Remove bogus shebang line.\n", "proba": 3.1144512036007654e-07} {"commit": "51687e240e8ce9d03c821644273fb7671fd25ecd", "message": "fix for CryptoPro CSP 4.0 R3\n", "proba": 2.6456370960659115e-07} {"commit": "f3a9d03e30a0cf17078c048f6f90be218a738b51", "message": "Specify static_argnums with proper int\n", "proba": 1.1809845091192983e-05} {"commit": "eaa011f412c41e48c24a18241073c88c574f1d19", "message": "do not require psutil\n", "proba": 3.184186653015786e-06} {"commit": "79533f8d1561edb403fd7e14f70e8745219275f6", "message": "Removed unused deepcopy.\n", "proba": 1.2102680102543673e-07} {"commit": "c2b5dace65722ee3500cc52078e890272a38a3a7", "message": "copying ref is enough\n", "proba": 1.4335234936879715e-06} {"commit": "2ab5feaf68ed9d4237fb57a9556c72f769ddecb6", "message": "added alts() method to AltitudeProfile class.\n", "proba": 1.0941057126956366e-07} {"commit": "6b456abd912ed322a0b9ef789fcbf24f514cce2c", "message": "Add support to call dip.main from python command\n", "proba": 4.146774301716505e-07} {"commit": "6590c83fcf8a7d923e1eb821df8d9c4373d9a1d5", "message": "Fix bug with branching an article to a branch where the article already existed\n\n- To reproduce this bug do the following:\n - Branch article\n - Delete branched article\n - Re-branch article\n - The rebranching would fail before this fix.\n", "proba": 0.00021702110825572163} {"commit": "667e700ce86ac1202b557b2aabff770223a28e8e", "message": "expanded the error message on the Attribute to list unsupported args on exception\n", "proba": 3.543600996636087e-06} {"commit": "d4f4f52a8cb8fd0504de64fc6f1de24260280dc2", "message": "#102 fixed bug that experiment name was no longer numbered for cv after cloning in lab assistant.\n", "proba": 9.832167080503496e-08} {"commit": "17bd106fc3266b4ef62708f8e6231e55f215d4ae", "message": "A fetch doesn't make sense locally, but that's okay\n", "proba": 6.829542144259904e-06} {"commit": "fe3d7bbc7d11ea8c46939296bd271ceef419ca00", "message": "tried fix assertion\n", "proba": 6.058201506675687e-06} {"commit": "543562d588f4aea74eacb80b404e0994e97cc7ff", "message": "Add method to convert set affine=False in all BN layers for PSPnet\n", "proba": 1.2217818039061967e-05} {"commit": "230bd726e3833c93444d35f825a77a783e430c2c", "message": "Refactor a bit, updates for typing, etc\n", "proba": 1.2903289814403252e-07} {"commit": "de6154c5494e5b4c8ee722f802508b4f8e7429e7", "message": "Added extra assertions to whitening functions.\n", "proba": 1.0906200031968183e-07} {"commit": "8dfb0497e334f33f74f2e3b98c21b48c58c53c3c", "message": "no fix needed", "proba": 1.4088892385188956e-05} {"commit": "a5471a4af3b02c055c6b22e2ae022140e4dd05ec", "message": "[Validator Run] Add return code management\n\nThe validator run command will now raise a CommandError exception if one\nor more validations have failed.\n\nNOTE: This patch re-applies lost commit during the revert of the CLI\nfrom tripleo-validations to python-tripleoclient.\n\nSigned-off-by: Gael Chamoulaud (Strider) <68646863a1a9108d0246eb96cb6356f9fa9a34f3@redhat.com>\nChange-Id: Icdf4b59e0e2ac192806334085be86f26ac68118f\n", "proba": 2.491792201908538e-06} {"commit": "b55cca2e9dc58044eb8953088db15f7b78df53a1", "message": "ScoreEngine v1 use Round object\n", "proba": 1.8004446644681593e-07} {"commit": "5e5ec182b5b6e1bd57aff0b15b89a7cb92a7880a", "message": "Don\u2019t put * in XPI file names\n\nThat\u2019s just asking for trouble.\n", "proba": 9.832655223362963e-08} {"commit": "70c63f4130c27cf10912cb6a4bc2f4817a448819", "message": "Adding proper plugin cleanup so that buttons and menu items are destroyed when the project is unloaded.\n", "proba": 1.0321529231305249e-07} {"commit": "32d1797fe24702a2a4ad16393afb095a205020ba", "message": "Coding formatted\n", "proba": 1.3978840797790326e-05} {"commit": "4e556da88b35ec6d1343c8240bfb2546eca20d20", "message": "[UX] Align to left the table for the validations run results\n\nAll the PrettyTables are aligned to left and this patch standardizes all\nthe tables.\n\nNOTE: This patch re-applies lost commit during the revert of the CLI\nfrom tripleo-validations to python-tripleoclient.\n\nSigned-off-by: Gael Chamoulaud (Strider) <68646863a1a9108d0246eb96cb6356f9fa9a34f3@redhat.com>\nChange-Id: I20ffc213057558d10c2f195caf4d34c83472404c\n", "proba": 8.074963488979847e-07} {"commit": "014c2a20bd7830832ad90f3a50a6219afe87f4b6", "message": "pasta bridge", "proba": 2.217388100689277e-06} {"commit": "ce4bb7905281f4ca2a5af49ffc01c650a9371389", "message": "update tset to use get_user_info_extension\n", "proba": 3.6828993188464665e-07} {"commit": "8752fcf4e37094d39e15ee7b5d3b366d8b22cf98", "message": "improved result display in ipython notebook\n", "proba": 5.375989076128462e-07} {"commit": "06575ba4012d8b5a8002d1213af97a84a944983b", "message": "plugins: Remove 3.0 and add 3.3\n\nThe matrix needs to be updated with the release of 3.3 and new\nstable-3.3 branches.\n\nRemove the now EOL 3.0 column, while still keeping the 2.16 one, as it\nis the last 2.x version that can be shown.\n\nChange-Id: I090c29100b1b925b62a41ec93fe10902c4bc82a8\n", "proba": 1.975847681023879e-06} {"commit": "cec10599a0d9ef4f202be8274a0e8618fed40056", "message": "Added Global properties dictionary.\n", "proba": 1.1246113018614778e-07} {"commit": "b18cf4f3e07bbf68f2ca5460bb11b150b01db0e5", "message": "retirado a depend\u00eancia do sale_contact", "proba": 1.4055135011403763e-07} {"commit": "ea853f65aa00738ee34da05b23473ff750a465d4", "message": "disables pylint for problem statement\n", "proba": 3.6154460758552887e-07} {"commit": "c97992688641bcbf2075c9da532522f289e02c71", "message": "Add response code reason logging", "proba": 6.650569730481948e-07} {"commit": "458e8254f89db1735187748d6eee471eef645f2a", "message": "Minor updates\n", "proba": 3.2755136203377333e-07} {"commit": "12852816650a0d844993bb5e761e834837f1c039", "message": "Luke: Dataset Management Tests\n\n- Patched tests\n", "proba": 1.23957846653866e-07} {"commit": "d6cfe773b8daaa6aae9ced6be87ada4539284447", "message": "Rename skylark->starlark\n", "proba": 0.00032952477340586483} {"commit": "c84ee8f26e92a8a4f2d51489faadc3ee6b8bdffe", "message": "Support complex option names.\n", "proba": 1.657711408142859e-07} {"commit": "2a290bbfe18929fdd00e24d937d9dfc6530eb874", "message": "tools/pyboard.py: Move --no-exclusive/--soft-reset out of mutex group.\n\nThe --no-exclusive flag was accidentally added to the mutex group in\n178198a01df51b5f4c5ef9f38ab2fb8f6269d5f4.\n\nThe --soft-reset flag was accidentally added to the mutex group in\n41adf178309759d5965c15972f04987a2635314c.\n\nThese flags can be specified independently to --[no-]follow so should not\nbe in that mutex group.\n\nSigned-off-by: Jim Mussared \n", "proba": 6.033358772583597e-07} {"commit": "92bb3c278819f55cc5caf27ac1f12bcf438b7e49", "message": "Fix grafana CALLBACK_VERSION\n", "proba": 0.0003367540193721652} {"commit": "5e101d86ba5d7c3131679c1b0bb1aaaa537ab9b0", "message": "Reimplement existing UI opcodes using ZUI.\n", "proba": 1.2108036173685832e-07} {"commit": "a427e10dbd476b70d9cdfb3d9352253b966fda6c", "message": "moves get_foia_activity() method back into digest\n", "proba": 7.334753604482103e-07} {"commit": "d7e6db61a0100e69b9a18c17a906e094e91ce7b3", "message": "fix wrong keyword param (passws) to MySQLdb.connect\n", "proba": 2.571680124674458e-05} {"commit": "59d0d848454c53297d846f6bada55efd4dfd98b2", "message": "added special case for looking up Black Hills State\n", "proba": 1.1167090718799955e-07} {"commit": "7b0c74739498fe039fa03d6309677ebcd08827de", "message": "To make get_user_notifications() compatible with the ComputedListAttributes framework where it can get called for general resources\n", "proba": 1.2871790033841535e-07} {"commit": "e8c62897a3497c86fda4777ce83df7e9658f702e", "message": "Don't attempt to get anything outside of the date range.\n", "proba": 2.0349479257220082e-07} {"commit": "69dfbd58dd022327fa3affa176762a1332829bd7", "message": "update ascmini.py\n", "proba": 3.465790996415308e-07} {"commit": "3e6e74d4e4bee19e84b8d5d20ccba6989e079d58", "message": "hsa.openflow_parser: fixing uniqueness of port ids\n\nHSA assumes unique port ids -- this is now ensured\n", "proba": 1.2860868991992902e-07} {"commit": "7c4f48ffde20c009f8107d949ca1b0aa81a2ce26", "message": "Added missing import for subprocess module\n", "proba": 2.8543098551381263e-07} {"commit": "7d480a683cc37f768ab5502c81eca3746bd7df45", "message": "renderer: Allow tracks to request hard transitions.\n\nIt's based on the _following_ track, which may be a little odd.\nThis could change in the future (making it controlled by the\n_preceding_ track).\n\nCloses #239.\n", "proba": 1.3627901296331402e-07} {"commit": "da8034f1f7b562322c4dc2ea95c0e842cb084549", "message": "renderer: Allow auditions to be rendered to stdout\n", "proba": 8.272236300399527e-07} {"commit": "d39b86111071d18c095d742f5294e95642bc488c", "message": "Fix SamsungTV sendkey when not connected (#55723)\n\n", "proba": 1.0839216457725342e-07} {"commit": "21f09aca847bbfaf4aee10b78e9093930f772786", "message": "fix integer texture filter, rename enums\n", "proba": 5.306683306116611e-07} {"commit": "4baba777801765b0ce9025c9ef170d3465d874fc", "message": "Add state class measurement to SwitchBot signal strength sensors (#79886)\n\n", "proba": 1.1522011789111275e-07} {"commit": "2ca5a47ac1ebefcac8a926f96f2280205c5d7bd4", "message": "Add linestyle options to step_plot\n", "proba": 5.731640726480691e-07} {"commit": "3e151388afc5db8f55593546d4de90ad86ebe4c3", "message": "Small touches.\n", "proba": 1.3967427037187008e-07} {"commit": "63d7b33ece78303ff66b159c5db7be373e69dfea", "message": "Fix comment\n", "proba": 2.1542624040193914e-07} {"commit": "363a0559e918b03b1cd03492f497d8aad7f7af7f", "message": "Fixed bug in Kibana configuration\n", "proba": 2.464838644300471e-07} {"commit": "b570d11237e699acb99725a8cf57998ed0b9b1a1", "message": "generate a pointer to ProxyReq structures\n", "proba": 8.42440215365059e-07} {"commit": "ae567462d36729637e17944f604ab90ede9c8d9b", "message": "fixed issue 1611 (scheduler's migrate should follow Auth's migrate behaviour)", "proba": 1.0546403927946812e-07} {"commit": "9b35779a4dced3030656fa13b8f0b68fb165d883", "message": "rearranging the order of the device description elements for UPnP 1.1\n\ngit-svn-id: be7fcf8b57a85a067d5bd030757d140cf5159929@1258 8402a193-bf1e-0410-a7e5-8246bfde4f7d\n", "proba": 0.9999973773956299} {"commit": "53947b514936390378ca3aef59f47b46df79b36f", "message": "dont sys exit for registerfacility cmd\n", "proba": 2.251562705168908e-07} {"commit": "80b51d6b74fd217b078754b6f8499fdab8071510", "message": "adjust group size\n", "proba": 7.337874308177561e-07} {"commit": "fe7a54e47162b9b3546015fd56fdc9473c7c6a08", "message": "fix import\n", "proba": 1.1673153039737372e-06} {"commit": "c305d1337a8a523c77714a6e61201039323803d1", "message": "Fix some long lines.\n", "proba": 0.0019411386456340551} {"commit": "b5975985b41f31b8c353756a53c59faff458a376", "message": "Fixed issue that wasn't displaying completed status of other talks on the talk page.\n", "proba": 1.0219741852779407e-07} {"commit": "3b9994fdec9cc5870455d27078074fd8e23981d1", "message": "Se permite ingresar el token NFC de manera manual.\n", "proba": 1.2004706206880655e-07} {"commit": "73ff711881475b8e18b7a569e9b6fc3e024b0119", "message": "Update design-twitter.py", "proba": 1.545554937365523e-07} {"commit": "019c58e09181d5df83ded09a407facc3f8711bc4", "message": "Increase the refresh rate for the downloader.\n\nThis allows it to respond to failed downloads faster, which is\nuseful when we have a lot of downloader processes.\n", "proba": 1.0342694167775335e-07} {"commit": "a551ad9bc5ef5fee5a321a1246660e91ac0d4711", "message": "Expedicao View prevendo melhor solicita\u00e7\u00e3o nula\n", "proba": 1.6539500791168393e-07} {"commit": "1194bbdb55fa0168bdfbd2857e8586d5d77b92bd", "message": "Minor fixes in utils\n", "proba": 1.8121654932201636e-07} {"commit": "449ecd6c02f799e6fd57ad3b1866fa80c8d527b1", "message": "Simplified code in Result class\n", "proba": 7.982037459441926e-06} {"commit": "46e5a5d0c525997a1602783f5909d46c7d0c9432", "message": "RB cal_seqs fixes\n", "proba": 3.9097474768823304e-07} {"commit": "2e164c5fe2e3a208dbdcbc51f287a9e5b7cc34a8", "message": "Add package_data entry in setup.py\n", "proba": 8.083292755145521e-07} {"commit": "8af15356eff115bec61e5a98bd49ebb16074d7ee", "message": "handle possible error running PoGo command\n", "proba": 1.0570395261311205e-06} {"commit": "82e735dabd789139ded53bcb4b1dd5af1065d7ef", "message": "fix a module name in setup.py\n", "proba": 2.0120807675994e-05} {"commit": "477eb911db0b94f7a488dfdd8b32b3dcac9e1e4a", "message": "tests: improved maintenance script\n\nChange-Id: I3d9388002961e22e7b67df49703a38249be857a1\n", "proba": 6.868843342999753e-07} {"commit": "5c572b3147d18518e4f2c294a56c09bc58c0ce84", "message": "Comments\n", "proba": 4.2012280232484045e-07} {"commit": "2567c9ad08050bde73078d26452cecd1969fcf87", "message": "Initial commit\n", "proba": 3.003353299391165e-07} {"commit": "b5dd1fc0780e6dcce05d123ce05f3c942b16b550", "message": "[FIX] After remover mail.thread from object there not reason to keep track_visibility in the fields.\n", "proba": 1.0450768428427182e-07} {"commit": "64c50a273c3e113affdb700f137bda78fd1a684d", "message": "update examples/progressbar.by\n", "proba": 1.9310131449401524e-07} {"commit": "f8bd4073beb50f9fb750170e79804d13ea50db0b", "message": "DOC: update example\n", "proba": 1.4082452537422796e-07} {"commit": "b5f1b21023879f01f0dc6b8a8a7df7d419df045f", "message": "Added status as a progress measure\n", "proba": 1.8112255872893002e-07} {"commit": "d6fea270bc02fbde346dd20065e4db0a43f94cc2", "message": "begin a cleanup of the onesample code", "proba": 8.40490997688903e-07} {"commit": "2fe555e71d0b428a85c63c39dcfeecb30420f9b1", "message": "Handle SIGTERM by raising SystemExit\n", "proba": 4.08340355306791e-07} {"commit": "b5cbf1d7fc72e7080207280e63e6ef4e1d01ceb4", "message": "Fix jsonrpc so that it doesn't actually need the TaskFactory (although it\ncontinues to work).\n", "proba": 1.197635839389477e-07} {"commit": "a961262406f5cfae54550f44be1bfc67c5dbc388", "message": "making evaluate work\n", "proba": 7.933625965961255e-06} {"commit": "ae13a865f23f479f577d407d284e60d218b1973a", "message": "geocsv improvements\n", "proba": 4.570246971979941e-07} {"commit": "c9d28c6f6105807ce20eabdd4867d825b1a14890", "message": "adds US Standard Region mapping to make print statement clearer.\n", "proba": 1.1078813599851856e-07} {"commit": "9e62859b5e7489e25053b214ec3dc51e47e735fd", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "eb9045d9dcd7ca3cb6c7a87568cceb94229cf92c", "message": "First try creating tables\n", "proba": 4.0330178308067843e-07} {"commit": "f9c2fb47154bfdaf28a1a603780be1480ec326d5", "message": "setervoll -> croft\n", "proba": 3.408945872251934e-07} {"commit": "3ff57d98666bbe5b098ba829d6833c504071aadc", "message": "Modification to the output\n", "proba": 1.5393400190077955e-06} {"commit": "74d9a72ddf1b1f4a08384837bf7bfa624f62b514", "message": "Accommodate publications with no authors (Fixes #2)\n", "proba": 1.104440272570173e-07} {"commit": "9f8a9f1ac7d283decc57e7779efeb8cb351cb646", "message": "handle case of no records to save\n", "proba": 2.793395879052696e-07} {"commit": "4fb812463bd9af16fbf70442d1626e7f275a8f0f", "message": "add BADCOLUMN to fiberbitmasking\n", "proba": 8.384691682294942e-06} {"commit": "6af4af51665832e3655412c962bba27b97875a99", "message": "Fix inline discussion cohort display when no longer cohorted.\n", "proba": 1.2478503208512848e-07} {"commit": "03caa0c7a5ed131ebb3c511fbf9664d759c19281", "message": "enable specter ex2d nsubbundles option\n", "proba": 5.904965973968501e-07} {"commit": "1c287a2546c305010d45f0239f3f13bce184c54c", "message": "[svn r37971] This was there for a reason that we don't want to have different pylib loaded (there was even test for that, apparently killed)\n\n--HG--\nbranch : trunk\n", "proba": 1.9466038736482005e-07} {"commit": "3960ed2fec7ef58411a785050bee3fbc3b9e40ec", "message": "support running scripts/syntax.py standalone (w/o generating interface files)\n", "proba": 1.1145024814140925e-07} {"commit": "f52ae4d1dbe2505264b7242c7af8e5c1587b68a8", "message": "speedtest module: fix error when clicking too fast, closes #2060\n", "proba": 2.0603121697604365e-07} {"commit": "4baf0f0e150ad68f880be2032ad53a63e54b9657", "message": "sysgen: Detect invalid number of arguments for keywords\n\nNow terminates process with an error message if there is a mismatch\nbetween a keyword and the expected number of arguments that follow it.\n\nChange-Id: Ib1902161937cae482e52be449c89789f8ff816a5\nSigned-off-by: Allan Stephens <1038bc33971d2c23c8e2eee8dd6938c077db52dc@windriver.com>\n", "proba": 6.13634711044142e-07} {"commit": "8cdf41b47a0e5690130d3a5b45e1c59f809583bc", "message": "py3 compatible\n", "proba": 5.859398584107112e-07} {"commit": "73df9dc36f148885bcbc076a553826da4b60643a", "message": "Add Missing Data Imputation Methods #146\n\nFirst imputation methods (used in temporal hierarchies)\n", "proba": 1.0778419579082765e-07} {"commit": "5da88c648e338d21b782a8a36a69e873da6c04ae", "message": "cli: use --http-socket rather than --http for uwsgi\n\nUsing --http enables the HTTP router \u2013 which is not used here. That router\nprevents the chunked tranfer encoding to work.\n", "proba": 1.0215143220193568e-07} {"commit": "6f3dfc94a79a73976ac3d81f142ea9e3a32a8832", "message": "Simplified parameter/return value type handler instantiation, via special __new__ methods.", "proba": 1.1248344122805065e-07} {"commit": "53b97f2dcad44a7593fde2bfac24d507c9c92b7d", "message": "service: log version number at startup\n\nCloses: #634\n", "proba": 1.5717904489065404e-06} {"commit": "f8bb295bf1d10410d36a8a8880ff96303bbda451", "message": "Update announcements.py\n", "proba": 3.6784311419069127e-07} {"commit": "1bf57485bbe3a56d6ad11fed65231d659ef844a5", "message": "Implemented the filings filter in Django\n", "proba": 7.924181204543856e-07} {"commit": "166e362492d09262354cf2f26dfd3fa51bb886d8", "message": "Remove all apps.\n", "proba": 1.773492073198213e-07} {"commit": "c36e712e46437c7e7b58800ffa1f47b5059fa8ad", "message": "grammars.py: add generic handling of stringification of directives\n", "proba": 6.378929242600861e-07} {"commit": "702e8bd28f73eae0a2aa36a97fa279393c7e80d9", "message": "deleteZnodeRecur: add notUsedValue variable to unpack tuple properly\n", "proba": 2.9756932917734957e-07} {"commit": "d35c6124c60ce0ef7edd7291db5787f18b9e4374", "message": "Fix hostname logging for connection created log in pool_logger\n", "proba": 7.409714726236416e-07} {"commit": "4629cca16399cb262b3c2ff605b23a273868293c", "message": "export shaply to shapefile added\n", "proba": 1.6099239985578606e-07} {"commit": "3629d80ba6179220f98a066ac9c87db998ee5e5e", "message": "removed token required\n", "proba": 4.2430312419128313e-07} {"commit": "7a112c2c5a5fc3f946f21153a79a436300b3a5fe", "message": "bug with jinja2 breakpoint log is fixed\n", "proba": 1.6000589653231145e-07} {"commit": "37bd5193dd25c3cd64d956d967454f3a781a979c", "message": "Update chainer/training/extensions/log_report.py\n\nCo-Authored-By: crcrpar <5d40c5c70d3d1edb83028cb0acf367584fd843d9@gmail.com>", "proba": 1.126216915281475e-07} {"commit": "7e4d8caa0ef9ce6a71d27484241b77561fe4ed12", "message": "Fix: updated genesis config in json rpc tests\n", "proba": 3.093743998761056e-07} {"commit": "5aa743a9783426542656e93761c85584811a05d9", "message": "Docstring updates\n", "proba": 6.125998197603622e-07} {"commit": "960d7a5eccac4db789a9a30a542e2d9b16b4fe4d", "message": "DELETE for single job queues\n", "proba": 6.231494467101584e-07} {"commit": "d7a4948b8ee015ad918dac473114b728c65418f8", "message": "feat: add total number of assignments to progress API (AA-816)\n", "proba": 1.1103585961791396e-07} {"commit": "946a0743e39389ca9ed7342f0a589752efe1f5c5", "message": "cleanup coadd fibermap columns\n", "proba": 2.466479998020077e-07} {"commit": "c5e13436d7d453bd851e39591f82e2ef0d740d92", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "f755f9857020cfceaeb3cf9607e96cef66ccb048", "message": "update dev version after 0.21.1 tag [skip ci]\n", "proba": 1.0261639715736237e-07} {"commit": "fa8431c5f3d80e1788a29fcab75cd43367e7f69e", "message": "improvement(kubernetes): use latest Helm version\n", "proba": 1.3547392541113368e-07} {"commit": "2e4236842ecd4bce6af07d7bc03717c9918f9b78", "message": "make VoronoiNN cutoff dynamic\n", "proba": 8.52366974868346e-06} {"commit": "c48490a079a9ecc2010130c9778684f4f70361c9", "message": "Look for number of processes automatically.\n", "proba": 1.8816423619227862e-07} {"commit": "47527996fe967d8ef713ff8814f71d49ab539fd8", "message": "update version\n", "proba": 3.3994695058936486e-07} {"commit": "d0ab7f9a161b493cd746c6325b2ca25dcbccaed7", "message": "Move accept header check to a validator\n", "proba": 5.266260245662124e-07} {"commit": "27bb8c2fd25cafe291b2c8db046bf8a5c4200e7f", "message": "changed a error log stmt to debug\n", "proba": 3.5171140666534484e-07} {"commit": "4044b778c4f939f21c948be48c4059f823a2396c", "message": "remove more plots of individual images\n", "proba": 1.704357117660038e-07} {"commit": "b493082352de19ed8d3d52c8eda838064957bbc2", "message": "bump version to 1.2-BETA2", "proba": 2.097404632195321e-07} {"commit": "3d112aa75c836c36b200612d19c5ef92ee377565", "message": "Add loop controls.\n", "proba": 1.5911540174329275e-07} {"commit": "6e4edcf050191b28e6f28ae8630716339436e0ba", "message": "Cleanup after int exchange object test\n", "proba": 2.2362492302363535e-07} {"commit": "e69de4707303d17e3308bdb0d53d5c33fdb51cd9", "message": "tidy reading checkpoints\n", "proba": 2.4086202188300376e-07} {"commit": "24b302c6c1c12c6cc50578acb4e1b8de0f98820a", "message": "Proper conan config install hooks management\n", "proba": 1.7758902970399504e-07} {"commit": "488c3767a29da9080b7937904684d5ee377a9eb1", "message": "nodes: report failure to load PNG\n\nIf the getTile function returns a type which wans't PNG report an error.\n", "proba": 1.1838636027050597e-07} {"commit": "d925cb082b00561bbceae6786f678c0cebc4eb82", "message": "Ingestion update\n", "proba": 6.562189582837163e-07} {"commit": "19cfe70c69b026429454fb8361ec3e8d6f1a0505", "message": "HtmlPreview: add show/hide requested signals\n\nThis let IDE automatically show/hide the preview pane depending on the file mimetype\n", "proba": 1.9401836937049666e-07} {"commit": "f4a4334f20d16b053094f12e4ebd950a4dff7cdd", "message": "get_library_name missing\n", "proba": 1.1166722288180608e-05} {"commit": "73827beafc363a2f345e3dd4216d7ef3c2c17c3b", "message": "Add module prefix to StatEntry\n", "proba": 8.276229550574499e-07} {"commit": "32a3964646b97e0fa9c8684e2f56319db8f581a3", "message": "oops, fix just-plain-wrong negative-flux-hurts-chisq-improvement code\n", "proba": 3.561492485459894e-05} {"commit": "ada67ee74975a1a7d2f9d9d1d970c069a3158652", "message": "Python3 compat fix\n", "proba": 1.7595614565379947e-07} {"commit": "a5ceffe0765d04d9574437cdbd74ad32e03b2b37", "message": "json schema help class\n", "proba": 5.707923378395208e-07} {"commit": "9bddcd98a50f1e1ad1dc4299391de4982785cf26", "message": "Remove an unused import", "proba": 1.4117078990238952e-06} {"commit": "2893ecbf08eb02cef4a345d632033633128365d2", "message": "split large blobs within a CLUSTER mask into sub-blobs\n", "proba": 5.471566510095727e-06} {"commit": "b10101d0c5d16c3f56c6f746235e2cc55a0b3c91", "message": "TST: Robustness for `mangle_file_dates` option\n", "proba": 2.610294700389204e-07} {"commit": "932a38b1009546007eebf5d33d6ec1f90b3213ff", "message": "Linter problems with previous commit, fixed\n", "proba": 1.1906866603794697e-07} {"commit": "d428bb582c6fe71e39bdedfbed1b355421f48139", "message": "Fix that\n", "proba": 0.9999994039535522} {"commit": "76611b7e6e97089b93626b472f91c04f16644034", "message": "Fix up some comments\n", "proba": 0.00015337567310780287} {"commit": "befb09aebaa0bbee4f38af04b7ec7ad29d637371", "message": "rotomap-view: ctrl-click to zoom\n\nTo make it easier to see what's really a mole and what's not, add\nsupport for ctrl-clicking on a point to centre on it and zoom to full\nresolution.\n\nPress the space bar to return to 'fit image to display' mode.\n\nTest Plan:\n$ ./meta/run_tests.sh\n.. view a rotomap using 'mel rotomap-view' ..\n", "proba": 1.1733687443893359e-07} {"commit": "e7894f8aeeaf4a485f3eea3f6d6809c4296bc2aa", "message": "replaced test dropped during merge\n", "proba": 6.428843448702537e-07} {"commit": "59fafd9d784135332a6aa437cdac74d3c61b217b", "message": "circleci error, forcing test again\n", "proba": 1.540907135222369e-07} {"commit": "e451ea4d698450813bd11fed6b501b839cd477a6", "message": "Reformat runworker a bit\n", "proba": 1.5419833232499514e-07} {"commit": "ad9cee21c1f74cfaa4c6182a9a162491b75c78c6", "message": "dpms: minor fixes\n", "proba": 1.5486134543607477e-06} {"commit": "33fb480ba089cae579ed1b9a061c8f5f2fd72a61", "message": "make regex raw strings\n", "proba": 0.0038398068863898516} {"commit": "9ef13def7e7756147b0b91c59ea4bd007f9cc0b4", "message": "TST: update getitem tests\n", "proba": 2.3057947373672505e-07} {"commit": "a0dc76eed42e44cfcb2ce6983e3f58d7abf22f71", "message": "let range accept a 4-sequence of ints\n", "proba": 0.00013670496991835535} {"commit": "820e0731ba350a84a67140aa60bc07556d0af105", "message": "imap module restore original new_mail_color to color_good\n", "proba": 4.151767996063427e-07} {"commit": "68fc8093c1dee71526644b7caababd9f655b6939", "message": "Turn `Image` methods into functions\n", "proba": 0.00014226000348571688} {"commit": "df3adebe37c7ca1a0ecc3305391c44a738c71b2a", "message": "STY: flake8\n\nUpdated flake8 PEP8 violations.\n", "proba": 1.0755972823517368e-07} {"commit": "f980f4b557df7cb4984cb428dd4bebcfe7ca7bc6", "message": "imap: use urgent when you got mails\n", "proba": 1.4023324013123784e-07} {"commit": "083e369d261f21ddc20c9ff9cdd94b5e45d0ea8a", "message": "initial wvvvo commit\n", "proba": 3.3693527257128153e-07} {"commit": "01fbcce4c2daccd72774f331d725e5ca7333cd00", "message": "bumped version\n", "proba": 3.022702799171384e-07} {"commit": "fc20b4b8544a2018e47e147be46852f2ce33ab8c", "message": "fixed IOB\n", "proba": 4.718214654531039e-07} {"commit": "3495c5f5e5fe5b6b2cfa44c933876138b3b88bf6", "message": "small coda bugfix\n", "proba": 3.112319291176391e-07} {"commit": "335fef5ef8d3791ab6987f859db5ee4c44d9cbe8", "message": "(from AES) Fix misplaced return statement\n", "proba": 0.0018263185629621148} {"commit": "eb9aa5b5836eafe3406591e8be071c086d0530f0", "message": "DOC: calculate: Add default for fake_points kwarg\n", "proba": 3.394762302377785e-07} {"commit": "efe20b0e3537e91f6339e00e3b40c7f8accebeb8", "message": "fix: Add TopBlocks to Feature Pyramid Networks (FPN) (#2899)\n\n\r\n", "proba": 1.1496426566282025e-07} {"commit": "6a427e2e67d4e4c58a93df2b2cf4ec15fa1c28dc", "message": "handle annoying performance trick used in stdlib of introducing\nglobals through default args\n", "proba": 2.1302267327882873e-07} {"commit": "596f9752a7956c259217b0528bed924812d0631f", "message": "Add admin filter to filter attendees with children.\n", "proba": 1.1081181128247408e-07} {"commit": "c3e43b4d144468d900eab4d37369c1872336aa59", "message": "Fix to uiGetFile\n", "proba": 2.103537553921342e-06} {"commit": "00978d7cdf9a938d861e3383888e03c50556d095", "message": "Minor language/grammar/type fix\n", "proba": 4.4127784804004477e-07} {"commit": "001f58a97ee6d01fb4a1a254808dd84daf82c89d", "message": "LA-1696 Fix conversions for C_Verify\n\nProblem:\n Uses to_char_array, which can cause confusion with\nconversions.\n\nSolution:\n Use to_byte_array w/ from_bytestring to explicitly state\nwhat data types we are expecting\n\nChange-Id: Ifb75f9f83b0f1217cfaa63ad092dbef45adbf995\n", "proba": 0.00010494170419406146} {"commit": "48de6a3c5bbccf2e791de560a20a8078f11bb564", "message": "feat: quantize a whole graph/modules (#1618)\n\n* feat: quantize a whole graph/modules\r\n\r\n* feat: python supports\r\n\r\n* fix: delete unusage\r\n", "proba": 2.35065357401254e-07} {"commit": "eec071e7a62a9fa2f74112eba6b26ea227c7f539", "message": "pep8 fixes.\n", "proba": 1.2504186486239632e-07} {"commit": "fa954bd778962cc3c23006abc7a25b30afc1fa89", "message": "non working version of essential tests\n", "proba": 1.642569458226717e-07} {"commit": "90c33132d502eb04839e64ca7182bcfa1302446d", "message": "finished work on config object\n", "proba": 4.4563847723111394e-07} {"commit": "9653db780d82b7aaf67798bd09c99ceec6d22c98", "message": "Graph doc (#1275)\n\n* Add Input docs\r\n\r\n* fix bugs\r\n\r\n* meet code review\r\n", "proba": 1.1903619423492273e-07} {"commit": "5c0ed62cf8c669efb0f046c60b81700d93f010ce", "message": "Document exceptions raised by parse_requirements\n", "proba": 4.105437767520925e-07} {"commit": "15e9c67b70244a657ad61f321cd2dca0c148441c", "message": "Added changes to fix issue 559\n", "proba": 1.5960766575062735e-07} {"commit": "ba0b6c19c5e5c06d8463f1d1788db60295b2670d", "message": "commit on 26/01/2018 at 12:12\n", "proba": 1.1299479041326776e-07} {"commit": "947f475790b3158a8c77a9fb351fc04352d84739", "message": "updated to new decorator and g.json for #52, also optimized lookups\n", "proba": 1.2316880315665912e-07} {"commit": "346343cb08f3800e133ccda0d79a43c49f8ab4f0", "message": "commit on 01/05/2018 at 19:41:16\n", "proba": 1.1021633383734297e-07} {"commit": "1b5b43542fe3ba8f85076c6b6cb1e98a4614a0c6", "message": "reformat JobGroup to match other tables\n", "proba": 5.049788569522207e-07} {"commit": "af1d42801bc136973a60b3bcc0f55e9adec8e048", "message": "Removes unnecessary print in Gui_element\n\n", "proba": 1.5232731129799504e-06} {"commit": "06b31b40c337b9ef2ce0f7870cebcb79c9452295", "message": "commit on 21/05/2018 at 15:52:52\n", "proba": 1.1188495818714728e-07} {"commit": "4ccc4a74b1247ebc7cf34026d0f53b07924f3b9a", "message": "Refactor\n", "proba": 5.142872396390885e-06} {"commit": "4bb274669f2f3b53d1b3f032269fd5704572e9d5", "message": "Don't use reserved word \"file\" for variable\n", "proba": 3.5671253044711193e-06} {"commit": "9619c45d40279f14a7cd3ef6f645c0f8893366a8", "message": "#2769: Fix journal in path mode rendering broken domain URLs\n", "proba": 1.4485453903034795e-07} {"commit": "9801345043972715e3d6cdfcce09d61f3b6c7d46", "message": "input 1: commenting out keys\n", "proba": 0.9999974966049194} {"commit": "f7a8163bffd66435660329b3da28ac455b37f5cc", "message": "commit on 02/08/2018 at 10:08:04\n", "proba": 1.1051103854242683e-07} {"commit": "58868ea5aa429dbdef2d4d0e77580a8a0148317b", "message": "force submission of currently entered parameter values when hitting add/apply closes #1083\n\nr11426\n", "proba": 1.320000251325837e-07} {"commit": "cac33e14cc06cff6aaca2a061e1e78d278a571d3", "message": "[FIX] base.export.lang: properly return action to second step, now that web bug has been fixed", "proba": 1.4666774461602472e-07} {"commit": "e1eb568b130dac02e7ce7042022d57737fad4e89", "message": "Bugfix: actually get agent, not just the query\n", "proba": 8.76024273566145e-07} {"commit": "c5c11ff54e31d18fbf8dcb3e8a437fbf84f165f6", "message": "Added default review form.\n\n", "proba": 1.1662366716791439e-07} {"commit": "db0e91e2e0ca8c7283581d372536b1ef61e76d1a", "message": "debugging\n", "proba": 2.4004323222470703e-06} {"commit": "380fc53b0c5eebce50f3d77ed3b96db6748cfb57", "message": "Factored out the \"No Record Available\" message.\n", "proba": 0.00020227018103469163} {"commit": "fe21950554a7c6c84bd63714511d79429e726192", "message": "Don't assign agents to job with unmet dependencies\n", "proba": 2.9589293149001605e-07} {"commit": "483f2ac914ef66f744e7e6a8bcfde822af33fdba", "message": "0.5.0.dev17\n", "proba": 5.880015123693738e-06} {"commit": "d63049e8c3901386570ac4324786701d67dbf0dc", "message": "Add a redirectLegacyRequest response\n", "proba": 4.1011136886481836e-07} {"commit": "67999d6e429b10bc58ea82660f789e5b5e0934ab", "message": "PY-24191 Fix hanging of the debugger on performing os.exec*() while handling debugger command\n", "proba": 1.1791732958954526e-06} {"commit": "19fb26710167efd8ca485bcc074372b4d63393d9", "message": "Don't refine entry/exit away when stop condition on at ends of trace\n", "proba": 1.7701852073059854e-07} {"commit": "b5cd79b135b73a6f98a0304f9d85914c21e0db9f", "message": "Don't show empty lists in /user/roles\n\nPatch by: Sverre Rabbelier\n\n--HG--\nextra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%402090\n", "proba": 2.1212156298133777e-07} {"commit": "bfb419204864d6eece8799d38d747d293b29a834", "message": "add time machine!\n", "proba": 1.2015269703624654e-06} {"commit": "833f6487e44daecbd221ba1be916b01209f069ee", "message": "testing check_X, check_y, check_X_y\n", "proba": 0.0018526909407228231} {"commit": "853878cbf218728608a783260ae74c408ef4b8a2", "message": "fix the wrong format\n\ntest=develop\n", "proba": 0.9999635219573975} {"commit": "27776ef0f5aae12d8557fece37930635ae9d59bd", "message": "- some cleaning up\n- don't create an ImageData instance every update, just update the one in-place\n\nProblems:\n- still pretty bad performance on large-ish resolution files (480x204 (SD) is fine,\n but 848x352 (480p) is definitely not - the quicktime player has no such issues)\n- we're leaking textures on the ImageData instance, but deleting them is a *significant*\n performance hit (performance halves from 60 to 30 FPS for a G4 powerbook)\n- still need to put in correct detection of video\n", "proba": 0.0006675192853435874} {"commit": "3d6066e9b6bcd24d1ece46f80689b1ff0fcddea3", "message": "[SPARK-21094][PYTHON] Add popen_kwargs to launch_gateway\n\n## What changes were proposed in this pull request?\n\nAllow the caller to customize the py4j JVM subprocess pipes and buffers for programmatic capturing of its output.\n\nhttps://issues.apache.org/jira/browse/SPARK-21094 has more detail about the use case.\n\n## How was this patch tested?\n\nTested by running the pyspark unit tests locally.\n\nCloses #18339 from parente/feature/SPARK-21094-popen-args.\n\nLead-authored-by: Peter Parente \nCo-authored-by: Peter Parente \nSigned-off-by: Holden Karau <6be69bb5cf6cb8dd624e7f174d5aba3c49eb4343@pigscanfly.ca>\n", "proba": 2.072636561933905e-06} {"commit": "95f31cedfb5e0a383dce0db164bbbb282a51212c", "message": "Closes #791: CSharp: remove unneeded \"|\\n\" from Comment.Multiline pattern\n\nBecause CSharpLexer enables re.DOTALL flag, \".\" also matches \"\\n\".\n\"(.|\\n)\" slows down matching speed significantly.\n", "proba": 1.6398226421188156e-07} {"commit": "6b3829393af81e350e112080b0cdb6e6529e0056", "message": "qitoolchain: better handling of cache\n\nEven better: always print 'Adding package', print something\nonly when it make sense (extracting package takes a long time,\nso we must let the use know what's going on)\n\nAlways add the package to the list of knwown pacakges, even if\nit was not extracted\n(this can otherwize leads to subtle bugs)\n", "proba": 3.261272354393441e-07} {"commit": "8c16bf1d736aa5c4f8b8fbbff0d58e7532348ed9", "message": "Add version info to F# lexer.\n", "proba": 1.082785132666686e-07} {"commit": "041d527335664aec697fa1b91522d6849fa3c862", "message": "Fail the build if openssl.makefile fails\n", "proba": 8.206562051782385e-05} {"commit": "e656d218db8472c0bf53b7b5a221ecec71459a86", "message": "more noncapture and switched to multiline mode to get prettier tokenstream\n", "proba": 1.2581195107941312e-07} {"commit": "662aaa79305cbbbceeba8d46f9a7e543621f45a3", "message": "Add harvest edit view\n", "proba": 3.657177956029045e-07} {"commit": "e83a592256f84f684a984d6d4d84546801d00011", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "83115f3110a965a22268f44d5ebb5469953042d3", "message": "updates actually take effect\n", "proba": 1.2228093737576273e-07} {"commit": "41477cc85208507be55f8db4e412ad78eae764eb", "message": "bridge: T4579: remove duplicate code path already handled by base class\n\nInterface() base class already takes care about VLAN creation/removal of\nnewly added or no longer required interfaces. No need to code this logic again.\n", "proba": 1.0063602928767068e-07} {"commit": "bf1a225ecda497d1e40a9ff96121340fe7f8bb84", "message": "kinda hackish work around for ['element']\n", "proba": 1.2606056998265558e-07} {"commit": "c48ccacb83e1c09015b48933c8fde342f2d68b94", "message": "heaps of keywords\n", "proba": 1.8212543295703654e-07} {"commit": "98a7852494d84ca8d3816009e5d4e34eacffd12d", "message": "Log skipped hosts.\n", "proba": 1.710553050315866e-07} {"commit": "19c80efdc2170c7e5ae9840a8ca2935daa75a4cc", "message": "* made sure (again) that repair takes precedent over update - also in this branch\n", "proba": 1.1335052363392606e-07} {"commit": "64124f9633976d6c6334fb9b6105f267c3b0525a", "message": "Globally ignore '*_excluded' keys for MSVS Settings\n\nThis extends validation of MSVS settings to ignore any key found that is suffixed with '_excluded', but still verifies that the root key name is a valid setting.\n\nPatch from Eric N. Vander Weele \n\nR=scottmg@chromium.org\n\nReview URL: https://codereview.chromium.org/175873002\n\ngit-svn-id: e7e1075985beda50ea81ac4472467b4f6e91fc78@1858 78cadc50-ecff-11dd-a971-7dbc132099af\n", "proba": 4.894730409432668e-06} {"commit": "dca5301379ea16fa1adbbace699e623b0abd1c58", "message": "Add util method to get subsystem counts with postselection", "proba": 2.983660749578121e-07} {"commit": "5f874f478889e548d577fac6f179ec7b6d1530dc", "message": "Add new lines\n", "proba": 9.797114034881815e-05} {"commit": "473318f665c850e1e05019995dc4f18a8395fdf5", "message": "Issue #87\n", "proba": 1.2349295275271288e-07} {"commit": "8364e884ccce5be4ded90651c7546181169daaea", "message": "Backport v4 Style fixes for VS Manager\n", "proba": 1.3248393315734575e-07} {"commit": "c278d218c0a4d6376ce19b68dd6bec362d6ecb9e", "message": "Further improve parsing of titles from Gaussian input files.\n", "proba": 1.1578188008343204e-07} {"commit": "cc1c2f477bcf5e28f88542ce124e17109be64416", "message": "update the class to compute static deilectric constants with DFPT in VASP\n\n\nFormer-commit-id: cac8118a60b2183f721985f5ad6bdc141587c4d6 [formerly 95a18a11e5d41d0432daaae225409c8bf6417b6f]\nFormer-commit-id: 571aed0513fea8268f9c57697a7becf2b7b5191d", "proba": 8.276318112621084e-05} {"commit": "145c026c0b8072ffc8dc21445c67a854f34af1a7", "message": "fix mutable default arg\n\n\nFormer-commit-id: e5f9895e464bc10ed9341fb97fe566a1f6d55478 [formerly c882cb4c52641735b554f94b1a2476cc6d3ece85]\nFormer-commit-id: adc16c0807d735f85b461327648cf5e9b6646296", "proba": 2.1553078113356605e-05} {"commit": "38f9cc93f4f329b8f68c3bf0e2ae67ae1f26e32a", "message": "Cleanup vaspioset.\n", "proba": 2.0789541110843857e-07} {"commit": "8a041c44b98d720ae0e517ea8f115edda67c8d4f", "message": "Fixed bytes concat error\n", "proba": 3.031565825040161e-07} {"commit": "86db1f1e6af420174de5fef9d9ce387f7cbffbb1", "message": "removed unnecessary AxShowPixelValue class\n", "proba": 3.526525063080044e-07} {"commit": "8a48c98b334185b87e840e30c533346329af00c8", "message": "PM-207: Have the log size and rate estimates actually pay attention to instrument record length\n", "proba": 1.080396216934787e-07} {"commit": "f59d37a53c26e2f64177807d8d9968cd91f09834", "message": "Slight refactors\n", "proba": 7.115897346920974e-07} {"commit": "f4106e3025c5dbb3136db94081b9998a052c8e70", "message": "Bump version to 2.0.0-alpha2\n", "proba": 6.579234081982577e-07} {"commit": "eff0b85032885baa18f1c12ff7fbe7edd9e92967", "message": "TST: test import of xarray attrs as meta\n", "proba": 2.7280856329525704e-07} {"commit": "cb69b95f505fba0ceed8ba2dc8ef97c2ebd4529d", "message": "Added run_tropicalize function and change visualization function to get\nseveral tropical figures", "proba": 1.1962683288402332e-07} {"commit": "2aa98c286e5abb7da424e5f3b305df765b5f7a4e", "message": "Remove dependency on webkit_strings from webkit_unit_tests.\n\nTo test this, it was run the following command lines:\n\n$ rm -rf out/Debug\n$ ./build/gyp_chromium\n$ ninja -C out/Debug webkit_unit_tests\n$ out/Debug/webkit_unit_tests\n\nBUG=338338\nTEST=see above\nR=abarth@chromium.org\n\nReview URL: https://codereview.chromium.org/382113003\n\ngit-svn-id: bf5cd6ccde378db821296732a091cfbcf5285fbd@177964 bbb929c8-8fbe-4397-9dbb-9b2b20218538\n", "proba": 0.9999988079071045} {"commit": "6990f6c57737a01debc398b8de42f375e84672e1", "message": "Use with statement around open() calls\n", "proba": 4.833582920582558e-07} {"commit": "03ba7fe1ae2b6f052b4e8c73b0a6cec481a4a387", "message": "oopsed on the translation by AZ\n\ngit-svn-id: b62a74e6a85b74e782ead772f54cba8e909798b9@335 6e728def-ac18-4b39-bad8-e7d984b3b6fa\n", "proba": 7.033839324321889e-07} {"commit": "5334317146ac1d987d32f0f308b660b9e8ae96b5", "message": "PyPi release 0.2.0\n", "proba": 4.38230614463464e-07} {"commit": "52ea239baffe7fb6262d2bd8162682f2ce7f971d", "message": "added patch by thomas.vdburgt to fix cancel button in save menu\n", "proba": 1.5943287223763036e-07} {"commit": "d96aac74b32a166ec724234540dc93a8ea526a3f", "message": "fix test error in windows\n\n", "proba": 9.01135649655771e-07} {"commit": "6d6ba9e84c0b53cc05cec36047c8e701493d826e", "message": "Update rules\n", "proba": 8.060537197707163e-07} {"commit": "6c1a417f86e8aa2d8ec0a44310fc034d48484cda", "message": "python-pkg: fix: if the connection is lost while using async code, the loop should not block infinitely\n", "proba": 9.015870091388933e-06} {"commit": "d1097e72ae96288e31372bf173fe3ea7a072ce2d", "message": "pep8 libunihan.conversion\n", "proba": 7.475639449694427e-07} {"commit": "163b2ffaf1fbc99940528c1dc6d94dee9d4cbcbe", "message": "fixed typo", "proba": 2.684115770534845e-06} {"commit": "af9c725ade589e8f3c1e07953a69c3c71cc5cc64", "message": "Constrained slider positions inside range by default.\n\nThey can still be dragged outside of the slider range by holding down the Shift key while dragging.\n\nFixes #99.\n", "proba": 1.034865420024289e-07} {"commit": "3b71839638e29d08583376326273bbf2de5d4537", "message": "Explicit comparison to None. Fixes #21\n", "proba": 9.864811545412522e-07} {"commit": "8d8eabbcc7cbf8d2887a2707db33fed3cda292e5", "message": "Use six.text_type.\n", "proba": 3.459019126239582e-06} {"commit": "66298ec728e4e6a89760ae06b3c8a8be1c08b5d4", "message": "Fixed file path bug.\n", "proba": 1.3011897692649654e-07} {"commit": "8145387134f5fde97bc487e82dade0b283233918", "message": "commit on 16/05/2018 at 13:50:11\n", "proba": 1.1197975169352503e-07} {"commit": "0df8cbad8b67163c3e4a0274b6bb22b8927a36ff", "message": "add example API map route", "proba": 3.6666139635599393e-07} {"commit": "8dc08d3733461ebe0ea770d0af07fdd4cfa00b64", "message": "Use mujoco function instead.\n", "proba": 1.9004122009391722e-07} {"commit": "e19134e0cc0b6f143bb31430765c3fad82d2f54f", "message": "add cost function in v2.layer\n", "proba": 7.950288818392437e-06} {"commit": "518ef4c0b3d523225582f7defeff2b8c3bf237d8", "message": "[serve] Increase timeout waiting for HTTP server (#8286)\n\n", "proba": 1.2131708615470416e-07} {"commit": "fdbbeb6524e901c2ca406f3bad2c105a9bce1269", "message": "cache setup new tests\n", "proba": 2.550588646954566e-07} {"commit": "adb0c2bd97c6c4ca7272d764b669cef90f81a5bb", "message": "Allow non-dev logins to dev builds\n", "proba": 4.0026631609180185e-07} {"commit": "056aa282e095ebaa865dc05d22365bd45a7ed837", "message": "Cleaning up.\n", "proba": 3.298846706911718e-07} {"commit": "128415790be5a5e6da2977da58f8afa740e24a2b", "message": "Fix sensors in the aggregate endpoint\n", "proba": 1.998872721742373e-05} {"commit": "2a39d0ef87e9071c346264116ed24d99fae7ab1b", "message": "Updated documentation on pydevd_file_utils.py regarding who's the client and who's the server in that context.\n", "proba": 1.1171265867915281e-07} {"commit": "418c1f481aa56565a225539cb98c7e7ead7cd435", "message": "Add a logger for TWLight.\n", "proba": 1.4497670974833454e-07} {"commit": "64713296cf4f4f3772a1ac23248d4fb930ee23ff", "message": "Bump to 0.3\n", "proba": 0.00019756706024054438} {"commit": "27606e071629fb7933a433ec006a1c55f12586f5", "message": "Get rid of driver/test code.\n", "proba": 1.1630900331738303e-07} {"commit": "72b5a07f3fbfc67f6bc84b25b7f643fe8d35b964", "message": "call: on error, print more descriptive message\n", "proba": 0.0003124257200397551} {"commit": "0d4f7c7cf5a630f2f4ff69103c6f2c3f9022d7ff", "message": "delete untarred test file\n\n", "proba": 4.4569159740603936e-07} {"commit": "d84022e0e334e49fba0a62832cdee6500f95ecdc", "message": "Lift out base information for date-like classes\n", "proba": 4.3290538087603636e-07} {"commit": "4e0ce68baefe932e8d3356bdb4c1f31a7016debe", "message": "Only Total column merged vertically.\n", "proba": 1.2897385204269085e-07} {"commit": "36d6bf1100f8916250af0e376b9ec975a701c33e", "message": "\n\ngit-svn-id: https://subversion.assembla.com/svn/threedhst_internal/trunk@306 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 6.851232114968298e-07} {"commit": "25f0b204bf9a202919bc0072156d6a33b8e3aef5", "message": "Added QUEUE_REDIS_CONNECTION and QUEUE_REDIS_DB settings. QUEUE_REDIS_CONNECTION is required but QUEUE_REDIS_DB is optional.", "proba": 1.0897778679463954e-07} {"commit": "85725ae31d73dec4f17332169fdaabd2f50363d6", "message": "It would probably help if I imported the correct thing.\n", "proba": 2.8509364824458316e-07} {"commit": "eca0f168061df3ffe9f6560b3a2391c8b0b59f7f", "message": "bug fix data may be referenced when not set\n", "proba": 2.3178611741059285e-07} {"commit": "d5b5e12540a46359cbc801856822f768128dd124", "message": "\n\ngit-svn-id: https://subversion.assembla.com/svn/threedhst_internal/trunk@324 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 6.950971283004037e-07} {"commit": "822cb21825bf1d03a2bd72b2e24d24da094d2689", "message": "added file transfer by using babun linux command\n", "proba": 2.6095381144841667e-07} {"commit": "83f35ac8eb5fc7e612b59c59140d95582e4c83f7", "message": "Fix bug that occured when items had no description\n", "proba": 2.9210005436652864e-07} {"commit": "6b2f3b76b14214dc1ff6bfc3a0a679b775a5c12d", "message": "Add json response option\n", "proba": 2.0430876247701235e-05} {"commit": "dcd84fec03daee62f05a70b93753d88cb356f196", "message": "catdumps: add skipping of empty lines\n", "proba": 3.503130574245006e-05} {"commit": "ab440d690f7d98ff45770681f9f8375ee81ca9b2", "message": "Added a link to the inventory\n", "proba": 1.8126148404462583e-07} {"commit": "bec04eaaabb77d9f9ee89e2a946b3a40564f3c27", "message": "ignore ssl errors\n", "proba": 1.942525386766647e-06} {"commit": "5470a55b83b58479b474def46179f6c862a30728", "message": "Remove deprecated code in conftest.py\n", "proba": 3.9126920455601066e-05} {"commit": "5f191397d125c97fe454bf6ea1f60f184867418f", "message": "Plug in map widget\n", "proba": 6.577571411980898e-07} {"commit": "5a669c4663ef2d6768f02e59f132b3ac07a5d1b5", "message": "ENH: reset RX and SRAM just before scan()\nENH: reset of SRAM not necessary every readout (improve speed)\n", "proba": 1.1619591333555945e-07} {"commit": "427f443d4943db89d7cd79dbede7a0ebeb22c581", "message": "Be extra careful with anitya error panels.\n\nThe only 'list index out of range' errors I see in the logs all come\nfrom these code blocks. I went looking for them while trying to fix\nissue #43, but these code paths aren't related to that issue.\n", "proba": 1.0654899540440965e-07} {"commit": "f8bd960d587b2aa676f4067aa183ca507b136e9d", "message": "just learned about from __future__ import division\n", "proba": 5.088553734822199e-06} {"commit": "e63ceeec7ab372133f38cfa56135713ff3325993", "message": "Fixed typo.\n", "proba": 3.5226929639975424e-07} {"commit": "1c9b42b352a7f1b1eb8ecd289e2a81d0abe2681a", "message": "Fixed TOU marking schemalocation\n", "proba": 1.900118604680756e-07} {"commit": "edeacc9f2cdc4b8340abd10f32930d19d9e5714d", "message": "[#3262] making property to method\n", "proba": 2.0544946721656743e-07} {"commit": "8817e03e148ee68d9c6680cc49045419c2bd4cee", "message": "moved charset generation to __init__\n", "proba": 2.469209903210867e-07} {"commit": "0a1e10d7569344beb2d1559e90624ce2f8a5038a", "message": "Multiply 'fatturato' by 1000\n", "proba": 0.9999833106994629} {"commit": "7873e1b425efd255649ca177fff38a5333b53673", "message": "more information from logbook records\n", "proba": 1.1704160129966112e-07} {"commit": "5a84102606af1fd1da81f84e73fa975ad9b16cba", "message": "fixed form an api loading when there is only one property defined\n", "proba": 1.7566391363743605e-07} {"commit": "d77fcc9c4be59ff2ea4bc7bbb085df6367211646", "message": "fixing tests\n", "proba": 4.7325497121164517e-07} {"commit": "c8ad2256570afdd750d93764cfe965542e7c2dad", "message": "Descriptors3D should not have migrated into the Descriptors.py file\n", "proba": 6.182057745718339e-07} {"commit": "b3f7e0c2c06db8317757f0d8c3a32b0724e5830b", "message": "Fix cond comparing to None\n", "proba": 0.001420479384250939} {"commit": "97a5f8c6cf4a127cad74dead4aa60e6df2f05863", "message": "dynamic_data: delete unused method\n\nI was wondering why the fs variable was used before assignment. It's\nbecause the DynamicDataWrapper._update_file_cde() method isn't used.\n", "proba": 3.026604827027768e-05} {"commit": "d988ff580e7bee13792bb43663eb7492e1f622e2", "message": "Standardize datetime search-filter format to the isoformat w/timezone\n", "proba": 0.001093068509362638} {"commit": "cfe2f404c141d8e12e421e15b6c691dd71fe3cdb", "message": "Add sorting of students\n", "proba": 9.449640288039518e-07} {"commit": "688d83652bb408d4175528d1cd813f87c22c9078", "message": "use slug\n", "proba": 1.8298063878319226e-05} {"commit": "6cf4809657fa3103c04619267db7c3279708d1d2", "message": "Get most abundant element in grid cell\n", "proba": 4.2135383182539954e-07} {"commit": "e2a918588f17ffe699599f5bf72545f4e9d32ae4", "message": "queue tools can print info about slow and default queues\n", "proba": 2.609652653973171e-07} {"commit": "0b8870a4f862f7a3ddc4f96d65167565516fa62d", "message": "Feedback to the user\n", "proba": 2.906074030306627e-07} {"commit": "6dd405eaf625f52def7a87032b77106064289777", "message": "Added parallel for scalar uniary\n", "proba": 1.4720977503657195e-07} {"commit": "c4bf44677a5e9957141d797e9fc6361513a7bb0f", "message": "Fix an error of exporting dict value as Excel (#3323)\n\n", "proba": 1.180888375529321e-06} {"commit": "712f300bb3b735ad38c95334581523859825bf73", "message": "increment the right names\n", "proba": 0.9999994039535522} {"commit": "10e73e4870e03fb8df4d25ee1fe5cd765f181597", "message": "Added session db for sentinel\n\nThis will allow to specify a db number when using a redis cluster.\r\nCurrently it will default to db=0.", "proba": 1.0132091432524248e-07} {"commit": "3475aee89ef5b22a92a674400ea37430f8255924", "message": "handle Appengine Datastore Key Type\n", "proba": 3.286944831870642e-07} {"commit": "36153e67b2f21b01e4b5ff4552dcbaf59ccb52d9", "message": "Fix conflict between attributes and methods\n", "proba": 0.00011597373668337241} {"commit": "455c2ffe0361b9e741a2ea701e47d94d96ea5e3a", "message": "codestyle", "proba": 1.249137881131901e-06} {"commit": "3bdcbec4b22c7ce45e7196876448e321becb1caa", "message": "Added support for threaded subprocess execution with \"graceful\" timeouts", "proba": 1.4539263304413907e-07} {"commit": "b744c421d9d912ad6de5f7f6f0f5296d8af02c0f", "message": "Test for `collections.Sequence` instead of list, better enumerate, remove sort\n", "proba": 5.207930371398106e-07} {"commit": "20e8c3ee751374011aad631e4bd97ef70bd2f3c5", "message": "Fixes bug with deletion of linked instances when the API client deletes a session.\n", "proba": 1.0538924044567466e-07} {"commit": "5ff15c26a847cc2882b9109801732b332922ebcd", "message": "idiokit.socket: Add fromsocket()\n\nAdd idiokit.socket.fromsocket(socket, close_original=True) function for\nwrapping \"native\" Python sockets to idiokit's socket objects.\n", "proba": 1.3309343671608076e-07} {"commit": "44b2af31d61c8e406ea6a6f2feca9a09e8276181", "message": "Roll back changes to emoji. Not rendering correctly. Will move to config for customisations.\n", "proba": 1.0478991896434309e-07} {"commit": "d2193ad1c6ce2d8aa258ab3bbfdde0a25997b6f0", "message": "removed dict comprehension to better work on python 2.6\n", "proba": 4.2508725073275855e-07} {"commit": "d594cea2d94f0144ab9c70f4d7bbd1040d3947e3", "message": "fixup : cleanup_on_failure need to store a method as first argument, avoid bad exception on http_post_collertion() failure\n\nSigned-off-by: Nicolas PLANEL <244ce39d37817964ca53cc0ca092758c054bad15@enovance.com>\n", "proba": 5.846337671755464e-07} {"commit": "9aecbb442d471c757b700fff2a5dab5aa54b0b47", "message": "refactored initialization of pybrain\n", "proba": 2.564307806096622e-06} {"commit": "dc81bb599d4ef378545b2d8cedda9a9ba985a68d", "message": "Don't show average %age for row percentages\n", "proba": 3.6636359368458216e-07} {"commit": "530844a16a573ab49850a22631f97d8ad89465c9", "message": "Clean Up NLU state\n", "proba": 4.712840677711938e-07} {"commit": "c5e1db44bc577e7aa85d937d581adcdd62acffb2", "message": "Updated module docstring", "proba": 4.652464724586025e-07} {"commit": "45182f662a1b58ee503d1051bcd2dffabd5c594b", "message": "Fixes the packer failing on temporary directories\n\nIn addition to the configuration file, the packer also reads the trace\nto pack directories in which files were created or that were used as\nworking directory of processes. However these might have been temporary\ndirectories that no longer exist; in this case, an OSError really\nshouldn't be allowed to propagate.\n", "proba": 1.949288161995355e-07} {"commit": "7d82320b7f63ed268159da28bb3a77a80d16f8ad", "message": "Mention the service name when complaining about lack of endpoint\n", "proba": 1.3760914953309111e-05} {"commit": "a1241876ba9539f7e2f9a344fef620b5f0ea96fe", "message": "Working on codegen for if nodes.\n\nNeed to motify the way BBs are created. I should create them with Block() and\nonly later insert them into the function with f.basic_blocks.append...\n\nThis ensures properly nested creation of BBs in case of nested conditionals,\nthe way it's done in the C++ code.\n", "proba": 1.6582522732733196e-07} {"commit": "a6012c1b24929812fd5772fd477ad5fe8a2f44d3", "message": "will be dropping verticals\n", "proba": 1.2457426237233449e-06} {"commit": "31f5b4ce12e50d1c81678fbc20ada4df54f1afc3", "message": "Fix name setting when applying SVN settings in patches\n\n\"name\" is passed in as a function argument, but its \"redelcared\" in another iterator.\n\nYay dynamic scoping.\n\nBUG=\n\nReview URL: https://codereview.chromium.org/258173002\n\ngit-svn-id: bd64dd6fa6f3f0ed0c0666d1018379882b742947@268593 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 5.345195859263185e-06} {"commit": "27f2ea6eeb538719bcad7c5c4a391e9d53a4968f", "message": "chimaira: fix available job detection\n\nsbatch only uses the hints regarding HyperThreading for allocating\nresources, not for executing the bash script itself. This gives us\n20 available threads instead of 10, when allocating 10 cores.\n\nTo avoid this, we need to wrap the pprof command inside a srun\ncommand to generate a separate job step that explicitly masks the\nHyperThreads for us.\n", "proba": 1.0979920261888765e-07} {"commit": "142d3ebf66e31aad2363fc0c421dc573dc9b1157", "message": "ci/utils: Simplify current_service() function\n", "proba": 5.765027253801236e-06} {"commit": "9a7c0a07d14b81b134963a9459326ffdb53cf28d", "message": "Disable fe build", "proba": 1.1340949868099415e-06} {"commit": "84556b2480f7d49843a6e42edbc9415980837308", "message": "Remove an unused variable\n", "proba": 7.136863132473081e-05} {"commit": "a9f2e333944b7b509e270e54b6f2254ed25ca64f", "message": "Change running 'look' to just displaying the node text.\n", "proba": 1.1216315698447943e-07} {"commit": "037527c028e2b6326c930f4390cb754f110d6450", "message": "Fix bug in test helper function clear_clipboard().", "proba": 1.3488593708643748e-07} {"commit": "0b3e7e239d74798f2267bee0e7dcb7c729faf210", "message": "Fixes #151.\n", "proba": 1.2198846377486916e-07} {"commit": "89766874e7ef17bdce4cfa7cae9898336928c19e", "message": "Remove satellites from JSON\n", "proba": 3.1892739116301527e-06} {"commit": "0af7c7ce8fb673cb05921ca6575abc85b2fd421e", "message": "solve_neos.py supports PhantomJS in addition to Firefox in order to run tests in Travis.\n", "proba": 1.0984444998030085e-07} {"commit": "679830154c49692a98d26ece6655a3e4aa4cc0b3", "message": "Added `with ... as ...` block.", "proba": 1.1174505232247611e-07} {"commit": "538c8640648c0054a5670dd24d501bbf4dae95bc", "message": "Rearrange functions in the file\n", "proba": 2.0632962787203724e-06} {"commit": "54259e5502cc10627653a517c7a32e957781472e", "message": "remove duplicate event listener\n\nNote sure how that remnant view event listener remained in the source,\nbut it needed to be deleted.\n", "proba": 1.0516474446831126e-07} {"commit": "03407167bc819cc28bc0b21d628d2665ea7fe02c", "message": "Fix missing commit\n", "proba": 0.9990838766098022} {"commit": "b61bf6db18a5ed1ebb5d1a1a37f41baa5eec628a", "message": "Test BatchTT innerproduct same batch size\n", "proba": 1.5847830070470081e-07} {"commit": "b57a0ddb650634efd06081e0b285bafbfa60672a", "message": "Use get_wch() to support unicode input in the CLI (#1609)\n\nThe CLI interface should now allow non-ASCII characters, including those used in non-English languages.", "proba": 1.233563011737715e-07} {"commit": "6f6d3c8cdc850e7cd0cb65887d58f3498c87eadc", "message": "remove: onehot\n- already onehot-ed\n", "proba": 0.9999535083770752} {"commit": "093fa9dad0b7775de9afbd18f8491d05077657c1", "message": "updates to entrez and hgnc classes to support rdf\n", "proba": 1.280496491062877e-07} {"commit": "2838de938ae9a7658b2ae4695c0a8311c70b36ff", "message": "Song Retrieval dataset (subset).\n", "proba": 2.60147743347261e-07} {"commit": "cbbe36af16bf65edce00f671adae5832a2be4f80", "message": "fixed serial implementation to only report done() when the dataset is actually done\n", "proba": 2.1628713398058608e-07} {"commit": "22125ce56cd1264821072b691e21a50b0a1ed332", "message": "Need to ask laurence about the content_md5sum\n", "proba": 4.667459961638087e-06} {"commit": "afb69364ffcc360ac59e85acbfdc5e72b4e9e2f1", "message": "discover.py: no FetchError() on 400", "proba": 6.015008580106951e-07} {"commit": "7cf7f10d52263ab0b0ccb1da918d31c34e589856", "message": "in a new file\n", "proba": 8.829229045659304e-06} {"commit": "67caf90b277abe2e3b2834579522ebea165aa9f2", "message": "tweaking remove empty periods\n", "proba": 1.0911189747275785e-05} {"commit": "38c5ca6777e75a1f9cd0e9b4fd2f672cb15c13d9", "message": "Improve \"colour.colorimetry.sds_and_multi_sds_to_sds\" definition coverage.\n", "proba": 1.4651577373570035e-07} {"commit": "513eadec62060babc7cdc9ec36e73b2c9215a70e", "message": "Added the 'allow-upload-to-s3-fulla' policy to the Mongo Data Warehousing Node\n", "proba": 1.3390595654527715e-07} {"commit": "3685715cd260f4f5ca392caddf7fb0c01af9ebcc", "message": "Add in comments for orgs and places too, remove limit\n", "proba": 1.272233873805817e-07} {"commit": "01419c80a14af09a9c073d65c42bbbcdb411930f", "message": "added copy image to api bug fix\n", "proba": 1.865641223730563e-07} {"commit": "c4b6fcaca8308be56315db1f7c13748b983b821f", "message": "moved to tests sibling dir and renamed\n", "proba": 1.47952903262194e-07} {"commit": "b2f9dbdeddb728f6d10713897aa1cf3f4a8f11b2", "message": "decorator cleanup\n", "proba": 3.6135193681730016e-07} {"commit": "a991771f1b49ba7f865f6aa46b23d9ed5680d5f0", "message": "fix types for rpccalls\n", "proba": 2.904389475588687e-07} {"commit": "f95d93650b84ebaf449dd886b467e6bbea1d344e", "message": "enforcing date order\n", "proba": 1.6915042579057626e-05} {"commit": "ae5dfba06bd69c0722db15e857fca1a5bd22ad33", "message": "another annoying print statement...\n", "proba": 1.2910713564906473e-07} {"commit": "35c1b48864858ee4aa38ce39d69f52a7fbf73fc5", "message": "classify.py: Allow specifying path to read dumps\n\nThis should make it possible to read the commit comments dumps from\nworker node hard drives. This probably needs to be run using MPI since\nwe can't make MapReduce use specific worker nodes.\n", "proba": 2.099155551604781e-07} {"commit": "e6486d2be906e3ebd87b54a4cf6b348c2e6370ed", "message": "Make sure we don't use the cached headers when resubmitting an url.\n\n--HG--\nextra : convert_revision : svn%3A90f377ac-1a04-0410-ba68-e473ea136fe9/trunk%4014\n", "proba": 2.016671032833983e-06} {"commit": "103fc335339f18999503868667df243ddd5150f6", "message": "fix(system_pay): Evite les erreurs 500 sur les annulations de paiement\n", "proba": 6.911297987244325e-07} {"commit": "f375bef2a4f98abdc1ded20474d6b2538d3ed8c3", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "6520a0ac5ea8033bd9feba8ac7610ef6dda38091", "message": "add warning with instructions for creating a key\n", "proba": 6.553159437316936e-07} {"commit": "b7ecc01e8a1dfe0a36f0da101244beb00b30aac8", "message": "Make AirflowConfigParser._warn_deprecate as staticmethod (#7816)\n\n", "proba": 6.209378966559598e-07} {"commit": "fe998a48be769f6a957611584145706b71385cc9", "message": "Fix airflow jobs check cmd for TriggererJob (#19185)\n\n", "proba": 1.1142155642573925e-07} {"commit": "9845befd961f295134e744557b9b8c67549b8a89", "message": "Added the pk of the object into the dictionary of values passed to the string formatting for cache_filename.", "proba": 1.0833511510099925e-07} {"commit": "d266de64cbcc7ed8672e9bb61cdb966870fccfdc", "message": "Use random.choice() & reduce len() duplication\n", "proba": 0.0006772962515242398} {"commit": "0ae40c4bd1b66a34e5f4ce64e1d807c060929985", "message": "Changed order of urls to avoid special cases\n\nIf 'update' or 'delete' tags existed the urls would not work.\n", "proba": 1.6039960826219612e-07} {"commit": "e23ad612d22c4907cd98ae2893e61142bf430b95", "message": "Improved matrix generation\n", "proba": 6.252877824408642e-07} {"commit": "e34f7a2dd2621a99e5f6ce1c0ce0829f201dceb1", "message": "Remove unused import of core.flow_decomposer\n\nChange-Id: I6a74821c51e0cd6d78cda4fa24691f3f6a9f8e57\n", "proba": 4.6778421847193385e-07} {"commit": "d1c16f90ca86bc1bd11a81f021d8317a82902a69", "message": "print annotation\n", "proba": 9.478880201641005e-06} {"commit": "d64e836a1ca913717a3305bf0fa62a27a1f4275d", "message": "add com_github_golang_protobuf to go_grpc_repositories()\n", "proba": 2.6973157218890265e-07} {"commit": "9fc165ed3fb097af5600776023a3804e89c19fc2", "message": "Move ureg def to module level to fix def file loading issues\n", "proba": 2.4236413764811005e-07} {"commit": "b38555ff465f59333f32c2bb556f6b7a236e288b", "message": "[tv] disable traceview for now\n", "proba": 1.1488513251833865e-07} {"commit": "45b55f29b957ae3712cd3cb6460137f1d9d9173c", "message": "get_absolute_url", "proba": 4.106997948838398e-05} {"commit": "0f24533cdf81b7c030811e2b629c9c11dac3539d", "message": "Fixed index purge method in indexes.py\n\nTypo in purge method causing the purge method to explode when used.", "proba": 1.0803343997167758e-07} {"commit": "62a1aa6ca97f840f07945efb66fda3f61d0c5b1d", "message": "New organisation for gibbs.py. It contaion only SaTePr class now.\nSaTePr takes SA, t, p and creates a STP object with all functions converted to methods for this object.\n", "proba": 1.011185872812348e-07} {"commit": "57b5aa4acb3878916368eeb24d62f1508c9a9a43", "message": "Remove useless staticmethods.\n", "proba": 1.6316373603331158e-06} {"commit": "87fecc3c1ed8d25ce20159ff000e3c4228333642", "message": "Use whichever autocomplete we currently have, since it's better\n", "proba": 1.3700318959308788e-06} {"commit": "44c0be2ff7e0e26e58152092d90fde4d6a994171", "message": "Fix logging typo\n", "proba": 5.1678121963050216e-05} {"commit": "09469b0eda773ac8b3d733e25660015dfbd6a5cc", "message": "http://docs.lino-framework.org/blog/2014/0407.html\n", "proba": 1.4006442938807595e-07} {"commit": "14b0c7046b36718ef99e15f920d4e0abbbc68516", "message": "add check function for tw stock number\n", "proba": 3.998706574748212e-07} {"commit": "181dfee480cc3a3972402474ab41084a691ca1ee", "message": "Generate slugs on new story insertion\n", "proba": 0.004458262585103512} {"commit": "2ec5c38ae7c08bf0d9a77afcada30518b3e6cbcf", "message": "Views clean up\n", "proba": 1.2003619076494942e-07} {"commit": "49784009d538a686e8b47455b5e4c83d7b95ae9e", "message": "Fixed incorrect doc string\n", "proba": 7.026658295217203e-06} {"commit": "b8d95d5d3827121bc23515a3f86923d887141121", "message": "melhoria no fibonacci\n", "proba": 7.680146154598333e-07} {"commit": "f22d9d1ba0fa47ac88df7f8114ba683ab00c12de", "message": "Updated api functional test\n", "proba": 2.01306306735205e-07} {"commit": "f9e9ca55257465c34c5d4dd0d8d38538ae0b8797", "message": "minor fix\n", "proba": 3.935496124540805e-07} {"commit": "1fb6dbd0fa674119d360a42cebdd77a421eae9f1", "message": "Add log message if core threshold is used in fallback policy\n", "proba": 7.177660563684185e-07} {"commit": "b5241e62cb7cc09b5d469f1cf3908fa1d7cedc21", "message": "Tweak the settings.\n", "proba": 1.8182745975536818e-07} {"commit": "4b4120ef98567094dd022ca7ced2a4ea22773dd8", "message": "Updated docs\n", "proba": 4.153740462697897e-07} {"commit": "2050017ced613f5c0282dcfaf07494b8dbcc8e41", "message": "Update ipc_lista2.05.py", "proba": 3.720272445661976e-07} {"commit": "83a86206d07fa3b253b3c9aebb532e0a8107e1ce", "message": "Add client options and code to read clipboards from daemon.\n", "proba": 1.0882698120440182e-07} {"commit": "7e3a362e377173264e474f85afc71192c3c4f585", "message": "Issue-489: Added more comprehensive test steps for es_indices()\n", "proba": 1.1754014650477984e-07} {"commit": "ff25cf86ab99403d6e6c2cc6a2a763513d94cc5f", "message": "Add a test for destroy_node while spinning (#663)\n\nThe execption coming out of the spin thread when `rmw_fastrtps_cpp` is\r\nused is actually caused by the call to `context.shutdown()`, and is\r\ntherefore expected behavior. We should make sure it happens that way.\r\n\r\nSigned-off-by: Scott K Logan <8c724d14625be4be480086a9212b212477a303ef@cottsay.net>", "proba": 1.8437282278682687e-07} {"commit": "33ccff73f3065528f76d27ce2c6e73bd278a9b31", "message": "Delete ipc_lista2.18.py", "proba": 3.651396582426969e-06} {"commit": "efb82b4dc64d52bade248aae0d7ddae0e366b031", "message": "Updated comments to mention new 'noiseTools' + ciphers\n\nUpdated comments to mention new 'noiseTools' + ciphers", "proba": 2.3152453820785013e-07} {"commit": "5d972c40dcb2a153e2f78fe121ff7f4a37e77d80", "message": "Dont index punctuation, fix min word length, and add stop words\n", "proba": 6.088041118346155e-06} {"commit": "e1fb17476770620546d0bd244b35591b99ba6ea7", "message": "Revert 7392f01f for pkg_resources/extern. 3.3 is the right signal there.\n", "proba": 1.148325523558924e-07} {"commit": "f3da1fab9af2279182a09922aae00fcee73a92ee", "message": "Fix imports for Django >= 1.6\n", "proba": 3.8917463029974897e-07} {"commit": "2ca78aed2083104dfc313c027b801783070ee350", "message": "attempt backwards compatibility in cairo\n", "proba": 5.478984235196549e-07} {"commit": "473d4c16d7865e608bc3732ba82e448e245d8339", "message": "Version Bump\n\n", "proba": 9.025367262438522e-07} {"commit": "eafebcef233490b0ff4d790571d24b0637bb593a", "message": "properly support providing a cairo context\n", "proba": 2.2237093162402743e-06} {"commit": "b777f6d74cb8b06ee0ba651ea9c23ea3358c9830", "message": "No need for codecs in Python 3.\n", "proba": 5.672018232871778e-06} {"commit": "cdf1bed02da48d9baab9212baba5deebf6485f2b", "message": "fixup last commit\n", "proba": 1.5841784772874234e-07} {"commit": "11a2da38842c656f952817573ebd303316d44eff", "message": "Show title on cfp on ghopher\n", "proba": 1.5102777695119585e-07} {"commit": "e8b757973c342e5afde3cc178bc812db2fd411e2", "message": "fix \u4fee\u590d\u81ea\u52a8\u4e0a\u62a5\u4fe1\u606f\u6e05\u7a7a\u8bbe\u5907\u7c7b\u578b\u548c\u72b6\u6001\u4fe1\u606f\n", "proba": 3.9101840343391814e-07} {"commit": "59223d2e694530f6f779054e68bf5cf02a4c210e", "message": "fix pep8, localflavor/br/forms.py:41:83: W291 trailing whitespace\n", "proba": 1.4982704215071863e-06} {"commit": "91178909bab31e9db42d86d5783152890f65795d", "message": "update cms\n\n[fix]without () back to \".as_view\"\n", "proba": 1.0525926086302206e-07} {"commit": "0306c5b360b2129e7068e7714ce2cef562269a45", "message": "fix functoin call\n", "proba": 0.0002613434917293489} {"commit": "1d840af3c1cbea1ecc4e7e97ca326bf7943dab3f", "message": "Coerce to array type in write_array if required\n\nFixes https://github.com/drj11/pypng/issues/65\n", "proba": 5.503923148353351e-07} {"commit": "1e6697fbeb6cf404d9a542287184c981c3c9e6aa", "message": "Add gzip flag to count\n", "proba": 2.5098842115767184e-07} {"commit": "b7d29e2a67c314b5d1aff343eef1a9ca2c3b0cbe", "message": "add dbl integration\n", "proba": 2.965901728657627e-07} {"commit": "4a0bc49d5c646bf303d7cc7faa4848ed8fc02c25", "message": "Added Charinfo\n\n", "proba": 1.9118208172130835e-07} {"commit": "83e04552cab3933fa26b82084dc716342c0cf26e", "message": "c o m m e n t s\n", "proba": 1.08566155176959e-05} {"commit": "5cd2230630c7ef1c4e1c85d65161897f31d506b9", "message": "catch end\n", "proba": 1.309516119363252e-05} {"commit": "3e4eb64de6d72710d777d42cd967656fdbd19256", "message": "Now getting the loggraph tables out\n", "proba": 1.374019831246187e-07} {"commit": "2cfd7e07149f920bacb5d3a21befb69d80e29c9f", "message": "Revert \"Revert \"mute command changes\"\"\n\nThis reverts commit 9b5f5656ccaa6860949de0df21641621223122e4.\n", "proba": 1.2109896374568052e-07} {"commit": "ab802105ff4209752c994335b647fbee4637f6c7", "message": "`?softban` now requires just Kick Members not Ban Members\n", "proba": 1.5075163162237004e-07} {"commit": "47500843bd8c20ce9d6e97c68fa45e3cca00ef32", "message": "Add binary content type to apigateway invocation\n", "proba": 4.504801722760021e-07} {"commit": "da9f66dc6887895851132190cc82d51b42d57b6f", "message": "Add normalize_space option to StringField\n", "proba": 3.6016158446727786e-06} {"commit": "0b16c74ec614bbd027020b8917d224bb7f97b5a1", "message": "make accessor be called\n", "proba": 3.609940506521525e-07} {"commit": "1493f6152699359971f366516357bc1a9ad0ac0e", "message": "[FIX] company_webkit css", "proba": 6.047372608009027e-06} {"commit": "3ad986995d153ef49d65050bb31f26f4eccc34b2", "message": "resolving merge conflicts\n", "proba": 1.071394308382878e-06} {"commit": "d2cb428bfc6e4287fe27b8239681ee26ab7f23c1", "message": "Event Profile: Page breaks when new project enters acive event\n", "proba": 1.4024072925167275e-07} {"commit": "1212966326eb096e10b52277b0c6b53126262e3b", "message": "Improve messages in example\n", "proba": 2.792857776512392e-05} {"commit": "80d86bb3665042a7243b1b6ff9e5e31fd2699518", "message": "Removed code!\n", "proba": 1.4328821862363839e-07} {"commit": "ad51d94cf43649b3543638bcd4368216c2ae7065", "message": "Always raise on convert failure\n", "proba": 9.503685305389808e-07} {"commit": "9b5dc2f9998d374263b2e1d35d6b5cfc7a831b1e", "message": "undo setuid on return\n", "proba": 1.6412759578088298e-06} {"commit": "23f7de97a48a50ad0afc3568211dcbafb82b1d18", "message": "failing test\n", "proba": 1.4722517335030716e-05} {"commit": "1f76d88745256e23d739a8d97d584f8e07f1afbb", "message": "Changed ValueError to IOError because this fits a lot better\n", "proba": 2.8034037313773297e-07} {"commit": "51882c49842c873db75c1f260091349c6295af28", "message": "Fix formatting\n", "proba": 0.05716899037361145} {"commit": "8b0929bb57164667ecf2509df94d0dac423e4600", "message": "updated dtype to doubles, fixed issues with cli arg parsing\n", "proba": 1.580219191055221e-07} {"commit": "3c5b44608529b70267b79266945020bc4c45ccb2", "message": "fix lack of dest folder\n", "proba": 7.107512828952167e-06} {"commit": "79dc0088b5b316a71a31e52a45244d6fd8ef6c82", "message": "logging for VIES system calls\n", "proba": 2.0780483112048387e-07} {"commit": "bf104cb1d48da0eda31ff01873e1d359f83dd1c6", "message": "Fix reporting tests\n\nThey require staff users now\n", "proba": 2.268334924337978e-07} {"commit": "3a35a3ac655b20aea7535144926196f670051517", "message": "Enh: Pylint - C0103 in realm.py\n", "proba": 6.218944008651306e-07} {"commit": "10fdd01dc8ac58d2beb25e4eb689e4a90d7362ac", "message": "fixed runner.py and added -v and -quick options\n", "proba": 3.7005381159360695e-07} {"commit": "986c6debb01dec07ba3030591d40a9701fa779fc", "message": "add AjaxCapableProcessFormViewMixin to PasswordResetFromKeyView\n", "proba": 2.739575677424e-07} {"commit": "30b49a57c78d53a890b62ee7abbb6f34a2c334e3", "message": "dealing with quiet\n", "proba": 2.608701947792724e-07} {"commit": "5ab3f3d06216381b697781d80069354745110de1", "message": "utils: make yaml put out unicode\n", "proba": 6.325989670585841e-05} {"commit": "8996be55063b4d8cb9ae5ace70042c185e608d75", "message": "Adding an NMR shielding tensor dataframe which includes the nmr spectra plotting method.\n", "proba": 1.0186308685433687e-07} {"commit": "8d48c6fa85b61e4c270ffa4a659a0c4a6fabaf59", "message": "hide a spurious finalization issue\n", "proba": 1.3819534387948806e-06} {"commit": "85eeb90ef22d31cef1197d64a27c63c0a72ac395", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "3277b7b3b81afb7696ac6fdae76a5bf5f0377b30", "message": "Add description and public to example.\n", "proba": 1.1013269585191665e-07} {"commit": "95b04c46d2576bbf8611ad92dc4c9a7adeed87f6", "message": "fixed issue where non-required endpoints would fail\n", "proba": 6.624919706155197e-07} {"commit": "8747525f85ddb683851a334f56c20c3fb024cda6", "message": "Log additional request context in custom WSGI handler.\n\nTest Plan: Check that request logging for bin/inbox-api is still sensible.\n\nReviewers: charles\n\nDifferential Revision: https://review.inboxapp.com/D490\n", "proba": 1.6868044383500091e-07} {"commit": "819f1957f2575f24d9d9a99cb5999415f7e1247e", "message": "Add get_results_path() and get_child_experiments() to the experiments module.\n", "proba": 1.2820579797789833e-07} {"commit": "776acc8db3a53b4662adfb2f13e225167cd9a225", "message": "let reaper send \"408 Request Timed Out\" in certain circumstances\n", "proba": 1.2641692137549398e-07} {"commit": "ebbb481d0dce9936c2b55edf9c5bebdee74f42b7", "message": "[INDY-1861] fix onBatchCreated\n\nSigned-off-by: Andrew Nikitin <3988702a677b83abef1980fca266e406bb150845@dsr-corporation.com>\n", "proba": 1.079648441759673e-07} {"commit": "97bb9be16257d9b8a75e14a359bceb0db610ca03", "message": "Don't fit NII, bug fixes\n", "proba": 1.7850391031970503e-07} {"commit": "16bec17e7337fd1cbaef12934cfeae05a563719f", "message": "fix var scoping bug\n", "proba": 4.6367932782231946e-07} {"commit": "093e17cb829ad0c0bbf888197c281ff9d939de13", "message": "dump counts into separate families in expression.heterosis\n", "proba": 2.9704808639507974e-06} {"commit": "efbb08d2de03ad9d84c5a3addae9d9dacbf082d8", "message": "paste storms in the map\n", "proba": 4.837124265577586e-07} {"commit": "ec4272b0aee6ed3173d13a9ac07512bf8450c1c5", "message": "Bugfix for sort only\n", "proba": 1.3732193338000798e-07} {"commit": "849424c4c17d7ed95c2dd1b330c609f6ccfe4f0c", "message": "modern use of env\n", "proba": 2.6476462267055467e-07} {"commit": "b1d3552b957df099e7e19beff14dcc62e0de6f67", "message": "[ci skip] Tweak the docstring on with_user_may_delete.\n", "proba": 1.0755439205922812e-07} {"commit": "e3235d94f722838d224c1347fa49acd34a3a2266", "message": "Updated object instantiation in constructor\n", "proba": 4.1785162352425687e-07} {"commit": "201a9d75e9c4a2c84372fe58a674977f2435130f", "message": "chore: update fastapi example.\n\n", "proba": 1.5144705400871317e-07} {"commit": "ba084db6c16e5dee9e9ff06a3bee02f4dbfb5c82", "message": "Add environment variable to control use of UNIX socket proxying\n", "proba": 2.4544189614061906e-07} {"commit": "ae8b1635ea8828efa5525f2673b133d1e62d1ba1", "message": "Python 2.5 compatability.\n", "proba": 1.594447212482919e-06} {"commit": "abc5a5c12ae4560255085e75c7909ee474fdd8fc", "message": "CFG_ACCESS_CONTROL_LEVEL_SITE is located in the main config file.\n", "proba": 1.0564342289853812e-07} {"commit": "0e2c67dbb4de1ca04323acd2dc0adeea63994277", "message": "BibUpload: fix missing cgi import\n\n* Add missing cgi import to batchuploader_webinterface.\n", "proba": 1.071130100172013e-07} {"commit": "edd2902eb41f4a0ab42def941d5c80ea0d6f4e79", "message": "Minor: notes.\n", "proba": 2.1948542894278944e-07} {"commit": "1e49383e8cf87efa9225adbb0591c8b17e0addff", "message": "TrivialFix: Remove unnecessary future import\n\nabsolute_import has been available from python 3.0.0\n\nChange-Id: Ide2069e50368859a20153cef99a033db14aedf28\nSigned-off-by: Goutham Pacha Ravi <23768c94a9ff9c3948f2b1373d75b7bec9121063@gmail.com>\n", "proba": 1.226656820563221e-07} {"commit": "1fb79c9822bb95e32a27e458529af61fa4940585", "message": "remove \"main\" from plot_snakes example.\n", "proba": 2.662737870195997e-07} {"commit": "33e693337ab646eaccb724b9c4b3eb3352c6e412", "message": "fix pagination\n", "proba": 0.9984713196754456} {"commit": "00b522510c397e80c775cae3bf872f8f7520fcaa", "message": "Don't need to call show(0), since that's done automatically in the\n__init__() function.\n", "proba": 2.8464538104344683e-07} {"commit": "2bcf9b3d67b320665f540d5f3465c7e0535d4a01", "message": "Get rid of some trailing commas in tuples that might have eventually caused\nsome trouble\n\nsvn path=/trunk/; revision=3439\n", "proba": 3.675804327940568e-05} {"commit": "15104ee34d78002231d51a465d02f8807da3cfc0", "message": "remove unused import\n\nsvn path=/trunk/toolkits/basemap/; revision=3156\n", "proba": 3.2247269245999632e-06} {"commit": "b5b8d8f1fc14dfa4aad4fe8fda152aad7c2df2b0", "message": "updated check for image file to use dicts, way faster now\n", "proba": 1.1463308879910983e-07} {"commit": "6c904d765c7b6114f5598e8570252ab758b190f3", "message": "Encode query param as UTF-8 before making an image search with it. This resolves our current i18n issue, as far as I can tell.\n", "proba": 1.2931069193200528e-07} {"commit": "043ddee3a9f81dcbd93e30b5e754980a2092261f", "message": "grumble grumble reverse-snake-brain\n", "proba": 0.0027200535405427217} {"commit": "c7679393ae11766cc9da4474f4db1d0dbe50ac91", "message": "Bump to 0.11.0\n", "proba": 4.204296419629827e-05} {"commit": "c346d02c2301d2b5539bc3ae82766868c62c148b", "message": "sending data to collectors implemented", "proba": 2.0394728039718757e-07} {"commit": "815fecf36f9c0114a9aa8594b58226ead223b313", "message": "fix type bug\n", "proba": 7.963028565427521e-07} {"commit": "efc86a5547988e5a540373e099e6e6cc7e7aa1c3", "message": "[FIX] incorrect upate of partners if company has changed;", "proba": 3.8030373161745956e-07} {"commit": "9b9631aade65c9be7fa632d5ae00060b2609224f", "message": "Load result JSON.\n", "proba": 1.9164683351391432e-07} {"commit": "1a68116d00009f89ffe6c3639e155075950a8c60", "message": "release_tool: Dynamically import Jenkins params instead of hardcoding.\n\nThis fixes the problem we face every time a Jenkins parameter is\nadded, that the job triggering stops working because that parameter is\nmissing from the list.\n\nIt also has the nice benefit that when changing defaults in Jenkins,\nthe defaults will be reflected in the build parameters that the\nrelease_tool presents.\n\nChangelog: None\n\nSigned-off-by: Kristian Amlie <505e66ae45028a0596c853559221f0b72c1cee21@northern.tech>\n", "proba": 1.7926132045431586e-07} {"commit": "b0dd7879fbf2000c86a2f77995495d480c890713", "message": "Add search by location\n", "proba": 3.4829611195164034e-07} {"commit": "a692fb8a9373f4811ebc848b084703a28b48a6db", "message": "UWaterloo: Adds scraping for terms and some log info\n", "proba": 1.2449642383671744e-07} {"commit": "8e7ab8fa02348df71f1ae9ac00e3b31121551e74", "message": "simplify serialization\n- automatically generate serialization opcodes encoding\n- remove VERSION opcode because it's not needed for execnet\n", "proba": 3.906198799086269e-06} {"commit": "997cd53d1d045840118876227b9c5588e153195b", "message": "fix not equal override. thanks @hodgestar\n", "proba": 1.789420707609679e-06} {"commit": "3cf358571db669b3569d9a8bd255f68974485ed8", "message": "updated unittests\n", "proba": 3.4899898082585423e-07} {"commit": "095cd9dbc390b4e642a10d2270bd152968fdb914", "message": "Add some comments and clean code.\n", "proba": 1.073367528192648e-07} {"commit": "8f8d39d7d695f8a5f0facff14e90fc4221ce1400", "message": "added a page_rank_NetworkXStats as a json object to be reported\n", "proba": 2.1515153036943957e-07} {"commit": "02281abdefd50cef6d3a74aae8ab3e410a6b2ee7", "message": "error in baseviews\n", "proba": 7.503724646085175e-07} {"commit": "dbfb095f6b90c2517416652d53b6db6b5ee919a4", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "9af3cea52084309e0aefc73045ef4744b77a8508", "message": "Remove the tokens.counts column, which is no longer used\n", "proba": 7.590244877064833e-06} {"commit": "5b0050d2427b1ef32251e16dc73ef1c71b22de21", "message": "Add docstring\n", "proba": 5.426874849945307e-06} {"commit": "5d3deee041d18ee9a5c7d667a46393542b89732f", "message": "a trivial model for nucleosynthesis\n", "proba": 3.332401661282347e-07} {"commit": "7f1ef09b1e186738de1fce6f6d9f9ad856950e30", "message": "ran isort\n", "proba": 2.0653733372455463e-06} {"commit": "10214a552a6b3a38c59315854aee2bcd5276abf0", "message": "Simplify ICMPv6 handler.\n", "proba": 4.581885946208786e-07} {"commit": "16dfcd19f3442f0a5c28dbba07dad24a2ec7bc84", "message": "Tidying: Fix some flake8/warnings/docstrings/tidy imports\n", "proba": 2.882215994759463e-07} {"commit": "8fd033aa6de12f5e06249717a3f1cfd20f3bb0bb", "message": "Add docstring and handle exception\n", "proba": 4.429339810485544e-07} {"commit": "d8b01645f2cd84222f835521b69ae225a717b1cc", "message": "Don't propagate affordance visibility changes to other directors\n", "proba": 1.2172850460956397e-07} {"commit": "4562bf04c7304cd09b498e9a27c4c311c328a520", "message": "Fixed bug in predictor, wrong arguments for postgres db.\n", "proba": 1.0647016779330443e-07} {"commit": "6106b962a2be1d401e2e476cd2260d7baf0ec177", "message": "build: delete bad builder/ symlinks\n\nIf builder/ is a symlink but is not detected as a directory by\nos.path.isdir(), then it is a broken symlink.\n", "proba": 3.0914779927115887e-06} {"commit": "fb2903b823d980e92da125f1f5d1b7c35bbf8c92", "message": "identation fixes\n", "proba": 4.748037554236362e-07} {"commit": "7df2b133fc8f9366f24ea1fe3fbbe30aa1f74d26", "message": "faster swing on stairs\n", "proba": 5.510262326424709e-07} {"commit": "41957e45af518ed03a3ebbd80f1335f0aff06690", "message": "improve premiumize.me connection error handling\n", "proba": 1.8230373655114818e-07} {"commit": "9c4a529f5b27555aceb2a2d4e234a3094863b960", "message": "Fix gradle builds without flavours\n", "proba": 1.776942468723064e-07} {"commit": "e1e140c55bfba6dca7d02553e92db9bb14340318", "message": "import pyvolve package\n", "proba": 7.11082293491927e-07} {"commit": "dc49ce292d4e0669598abb7f45ba389efde0dabc", "message": "Fix testTeleopPanel\n", "proba": 6.74195234751096e-07} {"commit": "4cd263d5983ed5867916f4d6919fd12b1fb13486", "message": "Fix latestapps stats, broken in 59cde15ad1\n", "proba": 2.7092960408481304e-07} {"commit": "06f58d067a020080ea9d968c24e03cbb7b1b673c", "message": "Updated preparehtml.py", "proba": 3.5635036965686595e-07} {"commit": "315d825b8f30e2d6acfe6e4333951b41a0d4150b", "message": "updated docstring for addional info\n", "proba": 1.2607259236574464e-07} {"commit": "196cb8f449efeeb34508e9b5b01aacf05f17ef7b", "message": "melhorando c\u00f3digo\n", "proba": 1.4313677638710942e-06} {"commit": "e5f422315fbc3eb28f99d2be5f50232f4b081f85", "message": "make ERT materiality list_editable\n", "proba": 0.0019085301319137216} {"commit": "7dc0601635217bbb137e6cb8d4cc68c4e5dc286f", "message": "Populate the web.core namespace.\n", "proba": 2.448041232128162e-05} {"commit": "6c623574608806d70382319405e0dd4f6fc85c05", "message": "Optimizations.\n", "proba": 3.0833524533591117e-07} {"commit": "517f0ca6ad3e0a1827e33214459891181cba1ce1", "message": "utils.py: writing calc_sig_levels\n", "proba": 2.3239533675223356e-06} {"commit": "f8f8c470bae828d765e22c25c7c3086cd7dc4bab", "message": "Updated 245:'and' test case as per recent addition of record #96.\n", "proba": 1.0049600263073444e-07} {"commit": "9ccaba1cdbc998ca0315ef574f4a033e3f8badae", "message": "WebSearch: more complete API regression test suite\n\n* Enriches Python API and Web API test suite with more tests related\n to /search and /record URLs with TextMARC and XMLMARC outputs (full,\n filtered fields only, subfield values only). For example,\n `/record/85?of=tm&ot=100,700`, `/record/85?of=tm&ot=700__a`.\n\nSigned-off-by: Tibor Simko \n", "proba": 2.3486123268412484e-07} {"commit": "fb8206996d8461fbcf3c48ff6fb89541bcf4d722", "message": "only use the selections for pipe_text if they are all non-empty\n", "proba": 1.2362813322397415e-05} {"commit": "28c2bc0c6d0d4e0890c0a8598f24d2f6ea20aca7", "message": "implemented unstructured function in dropin\n", "proba": 1.916065912155318e-06} {"commit": "44e9e408c3c70f5f5bfb3e22a4522d017fd85261", "message": "clean up a little\n", "proba": 1.999708501898567e-06} {"commit": "0d056e041f141391b115aef1f1cc5aa684876535", "message": "save signature saliency", "proba": 2.2520781328694284e-07} {"commit": "d8c9b5431b05550ee3a232e95af50a5e3d9ce4b5", "message": "python: provide better error message for wrapped C++ methods\n\nIf you successfully export a C++ SimObject method, but try to\ninvoke it from Python before the C++ object is created, you\nget a confusing error that says the attribute does not exist,\nmaking you question whether you successfully exported the\nmethod at all. In reality, your only problem is that you're\ncalling the method too soon. This patch enhances the error\nmessage to give you a better clue.\n", "proba": 3.7538731589847885e-07} {"commit": "f747d2dfbc53c3a5a020a32e2cdaf09428971b22", "message": "Glad I ran the tests :)\n", "proba": 1.3915679630827071e-07} {"commit": "a0d658e1a9f29759dd9504a08a750e82c561a5c6", "message": "pmconfig.py: simplify predicate check a bit\n", "proba": 1.619830982235726e-06} {"commit": "28968ca117fc18dfe513c06ce4ead2295830fd94", "message": "remove redundant parenthesis\n", "proba": 0.9999994039535522} {"commit": "73c8def37eaa4ddb9fcf3d5d7c0825559a22cf81", "message": "Add 404/500 handlers", "proba": 6.230436611076584e-07} {"commit": "6f224c23219c2c6c574a92a89f6054608f78aa93", "message": "Updated all function calls to have the same results structure\n", "proba": 4.7192452257149853e-07} {"commit": "b754ee143ed0a022706bfeed287e392e11dd0e28", "message": "Update to work with python3\n", "proba": 1.9074553847531206e-07} {"commit": "ecf7f30be8a509ac4fccd5430fcf2817864e8bd7", "message": "Try three times to get the CRL.\n\nI've gotten reports from multiple people in recent weeks that their fedmsg\nscripts fail and exit when *something happens* and they are unable to pull down\nthe CRL. We're not sure why that's failing yet. It may be a network blip, or\nit may be a proxy issue. In the meantime, we can make fedmsg try a little\nharder to get that file before it blows up on the user.\n", "proba": 1.2437443785984215e-07} {"commit": "aba9a4dce1c10b975fcd5d33acc9d4636310ef4a", "message": "move translation fields to bottom of admin detail page\n", "proba": 1.6864778729086538e-07} {"commit": "b24ca1b92d78fc15fe167680b4bf3554e72d7ddf", "message": "* fixed cleanup\n", "proba": 1.3036765267315786e-07} {"commit": "0d5f8ab05b9f971edb1591e3d80d6972732430fe", "message": "Owner: Remove side-effect of renaming test.\n", "proba": 1.3629539807880064e-07} {"commit": "bd4c1acfa30d9a3b364233b7f766752f8ebf4cf2", "message": "Remove from models\n", "proba": 2.1199699062890431e-07} {"commit": "a500a9917787dec5c54c8d15949454ffb4a775ff", "message": "Remove unneeded RESPONSE definitions\n", "proba": 3.4630854770512087e-06} {"commit": "ee8ef8bef9d6b01bc2c66fa9aa49651f626ef306", "message": "This patch changes the parser to allow file names used in an $INCLUDE statement to not have surrounding quotes.\nRFC 1035 doesn't explicitly say that the file name must be surrounded by quotes and bind supports the no quote format.\n", "proba": 9.974893799835627e-08} {"commit": "b778c3284896b4ef0f73c2c0a29189113d5224d5", "message": "Adding temporary ping command for role reminder\n", "proba": 3.4132727932956186e-07} {"commit": "7746f8df9be258335f8edf4bc21476e6b6838027", "message": "fas2: Drop the override on my email address\n\nA while ago, I wanted to use my @fp.o alias for my RHBZ account.\n\nI haven't been doing that for a while now, and there's apparently a\nhotfix on pkgdb that removes these 2 lines.\n\nThis commit removes the 2 lines, so that:\n\n1. the hotfix is not necessary any more\n2. I stop receiving emails every time there's an update and the hotfix\n hasn't been applied yet\n\n(Also, wow, that gmail address has been closed for so long!)\n", "proba": 1.2867899101820512e-07} {"commit": "c440d97a42a8962f9a7c6375c5641818c2e2d203", "message": "fine, have you whitespace\n", "proba": 1.9596174752223305e-05} {"commit": "138b464e293ed906bf25b328d80c293117c2a443", "message": "* refactored _group to have all the \"projections\" into one list\n", "proba": 3.053903583349893e-07} {"commit": "d01f9300afc5b174212945226ea97b32a1acf2e3", "message": "Warn when users log keys with empty names (#781)\n\n", "proba": 1.4582839469312603e-07} {"commit": "79e2044380d2d5a9568b76777bc7b1950dcaaeb8", "message": "Bump version to 14.1.0\n", "proba": 2.4528887365704577e-07} {"commit": "a7df1cf797f49cd358d629261b8777416b7340d2", "message": "call serializer create testing\n", "proba": 2.546316011375893e-07} {"commit": "352b628955809e19a7ba6f78631d79afcc85d94a", "message": "test: Fix code coverage in mpi4py.typing\n", "proba": 6.239110007300042e-06} {"commit": "ae321500b2181b8d1d571d5d58e63db1452e84e3", "message": "missing import of datetime for uptime\n\n", "proba": 5.420488741947338e-05} {"commit": "8c212b60fe19b5051082e3b7d75366d0e205208f", "message": "Minor isy bugfix\n", "proba": 2.5195733996952185e-06} {"commit": "a4657b56184375d374c71dd39b3d6a2531c95a32", "message": "docs: remove wrong TODO comment.\n", "proba": 1.1971265223564842e-07} {"commit": "ace536e265299ebe814fdc2c597534891f39d89c", "message": "redo masses to be the same as the ML masses\n", "proba": 6.863892849651165e-07} {"commit": "f91c49359a0821a6ff2fce306332086be5063b16", "message": "BF: uncommenting test clean-up (TODO: move to setup/teardown)\n", "proba": 1.073140296625752e-07} {"commit": "a8b5e1f7c12fefed913b0e222f5c19248788a0ae", "message": ":leaveserver commands can now leave the current guild of the incomming command\n", "proba": 1.832687530622934e-07} {"commit": "7761f8a3ac013f5cfb17f211f86a5738babf5070", "message": "Fix wiki on the public bot\n", "proba": 3.177232792950235e-05} {"commit": "6c6c103c8aa78bbd11cfe97fe2c5ffc381c66df4", "message": "put back correct other iterchain\n", "proba": 1.0325128414478968e-06} {"commit": "c0db5cc952d2d29cf8cacd044c5150de6cc9713d", "message": "GIBS-1257 Fixed world file not being copied during TIF to PNG conversion", "proba": 1.1576565128734728e-07} {"commit": "8d312336a9311f5ca19b291cea222e04fdb20b2a", "message": "Fixe path for package secret file in webapp\n", "proba": 1.9460692612938146e-07} {"commit": "d1c6e8182f30b155b06268d5246ec35e5d079f7f", "message": "removing ids from serializer as causing issues during POST /api/subregions\n", "proba": 2.0122875810102414e-07} {"commit": "725785c59ca6aca23338b0f727dd2c492cb166df", "message": "fix a silly bug\n", "proba": 0.0007531267474405468} {"commit": "185170791eb44c52caa651e78f4294bdf2ddc35e", "message": "don't bother calling db.hasTroves if no relative changesets exist\n\n", "proba": 3.988895116435742e-07} {"commit": "4f17ae1ca5bc4385699e2f5d7a5d6a674cf512e6", "message": "Raid messages are saved upon being sent.\n", "proba": 1.0565047858790422e-07} {"commit": "619189c8cf1810eeb14bfbafb8b9b8cef501cd97", "message": "Don't mind connection errors when checking the guid\n", "proba": 1.5952595333601494e-07} {"commit": "777cc6352eaf4770104aba812f572ad7863ab483", "message": "ensure media serving\n", "proba": 1.9345448265539744e-07} {"commit": "a51bfb2ff391facb85af113e779b54f364d895ec", "message": "GIBS-408 Improved sigevent integration with mrfgen.", "proba": 1.0094284164097189e-07} {"commit": "b054b1732414cadea4bf97f1e827073155183704", "message": "Travis fix no one likes bare excepts - hope someone like this except\n", "proba": 1.3550183552979433e-07} {"commit": "7009e1f0b316da5f17247786810676f70d282f93", "message": "Add assertion.__all__\n", "proba": 0.0026375427842140198} {"commit": "0a79307cc5a0ece09a72faf2a530c768fe72311a", "message": "Fix scope of keymap\n", "proba": 6.138120625109877e-07} {"commit": "bc0bb73972761cba45890b764b9da146690be28b", "message": "proper pop command\n", "proba": 1.3962213415652514e-05} {"commit": "0f34d5d685c844dbf1fca2cf60b27d75726fa14b", "message": "Adjust internal imports\n", "proba": 6.347815997287398e-07} {"commit": "6d84f21083646a1056834347577cd3f923c15419", "message": "Initialize managers before requests\n\n`RequestFactory` uses the `core` attribute `evm`, which is initialized\nduring `_init_managers`, so we need to do that first.\n\nRelevant log lines:\n```\n2017-07-26 23:23:28 CRITICAL 'Core' object has no attribute 'evm'\n```\n", "proba": 2.835913619492203e-07} {"commit": "f9756c1d7e24541eb0304dc6b2e33ab042ec0787", "message": "need to unify repetitive functions\n", "proba": 0.9999994039535522} {"commit": "3595e5fdbf5b6705349e2c11362318de59b796dd", "message": "changehost: limit 'applyhosts' to those with the changehost.applyhosts perm\n\n(cherry picked from commit 12a85092990743d46808544e35a787e5e048ab8c)\n", "proba": 2.17763670207205e-07} {"commit": "3876130a94f3a43a6b34dd3be22ef963238bda3b", "message": "[UserSettings] fix migration\n", "proba": 2.997561523443437e-07} {"commit": "a3df6b8b4be3dd24fd0f4b797781f40286c59814", "message": "Fixed bugs with loss function regarding int_positive_mask\n", "proba": 4.892015113000525e-07} {"commit": "993e357fd2895973ecdd5dda762f92529f4e6f78", "message": "[core.cache] use sid in keygen if available\n", "proba": 1.5565987609988952e-07} {"commit": "e9e40fb40f36b052e205217670a35799b9707b30", "message": "added replay command\n", "proba": 4.2718588133539015e-07} {"commit": "feef0752189baa9994dd77ce640407a82bef63ec", "message": "protect against missing ST functions.\n", "proba": 3.421018845983781e-07} {"commit": "532d036bf981ff60497499b819b65a7226d25bef", "message": "connector_importer: load mapper options on each chunk, log values debug\n", "proba": 3.8590934536841814e-07} {"commit": "364df48a0e23e78993e06ece0a3a738822101dda", "message": "[grids.rect] add more information on grid structure to RectGrid\n", "proba": 1.2589501352522348e-07} {"commit": "0f622f14d50314e30a7fc96b6a7d6ddabdb769b6", "message": "change back to datetimes\n", "proba": 0.0006665809778496623} {"commit": "fe0dd7b42a64a64f2271d16f49c30ddafb509fc9", "message": "Trigger typing in book command\n", "proba": 5.478545404002944e-07} {"commit": "06c07e4dd39cf713240e06477b66495619adfb64", "message": "removed graph.py\n", "proba": 3.2724180982768303e-06} {"commit": "82e1db985de2466d33b7a31a811148abe9fb3cdf", "message": "Removed helper for readme generation (using retext, much better).\n", "proba": 1.0130042937817052e-07} {"commit": "cabbdd91de59927eedd1a382261ff10a3cfb6374", "message": "Fix `TypeError: Failed to convert object of type xrange to Tensor` in python2.\n\nPiperOrigin-RevId: 310591934\n", "proba": 7.676582754356787e-05} {"commit": "2f4bb77de703c242f7be891a87256252b379ad9b", "message": "Added support for display names, cars, teams, and points.", "proba": 9.752341156854527e-08} {"commit": "75350250b6208e09c40a988436cad1b33cc163dc", "message": "fixed bug with comment url generation\n", "proba": 2.0475332007663383e-07} {"commit": "664f6368d2d4c686e15d10321aa2549d9f93afc8", "message": "fh-fablib 0.1.5\n", "proba": 1.3194179473430268e-06} {"commit": "2cd5be09fd16f0465810d0808dfe1c56e8135a96", "message": "docs: Update copyright as years range\n", "proba": 1.267822682393671e-07} {"commit": "5c50d3fcda08da468b2f6b5e61fa1777cc08b17b", "message": "FIx test.\n", "proba": 2.4084388883238717e-07} {"commit": "210153ed4ef6e355963fe03f1a5163331922141b", "message": "pyflakes\n", "proba": 1.7359694766128086e-06} {"commit": "c801389e8eefe8b52f4630f2ee05366fb34ea59a", "message": "[tests] don't test for comparing w negative tolerance\n", "proba": 0.0006831552018411458} {"commit": "debd789f1f48b5d6f2d921711c041a5a34329ce9", "message": "config.py: accept a list of config files for the read method\n\nThe Config Parser object can compose the set of configs from widest\nscope (low indexes in the list) to most specific scope. For example:\n\n ['/usr/share/lib/appname/default.conf', # application default\n '/etc/appname/system.conf', # defaults set by system administrator\n '/home/user/.specific_use_case.conf'] # config for an instance\n", "proba": 0.003499786602333188} {"commit": "697aeaf835f3f83dcf98491484504e0d371ec381", "message": "Fix incorrect \"StringIO\" access.\n", "proba": 3.990652203356149e-06} {"commit": "b410cbc1d58c5dce85b1bdff85fa881de58bf299", "message": "fix BadArgument\n", "proba": 0.9986090064048767} {"commit": "70ce1df2bd9107abed51a48cba29672ce74a17cc", "message": "Added function `build_tlist_sample()`.\n", "proba": 1.097887363243899e-07} {"commit": "38a80c6b106159373c6a39b33b3cd772f56b3f95", "message": "Example windows: Clean up base module\n", "proba": 3.815345053226338e-07} {"commit": "9edc2426e3b143db4e212e773849e7a120ab315a", "message": "Undid line change\n", "proba": 3.966876647609752e-06} {"commit": "a48b854e8a4154e0574d80512d19604f7557c464", "message": "try to fix error in saving geolocation object\n", "proba": 1.148735691458569e-06} {"commit": "d3278b070c79f717fccf95bfc7c5934dc1e18fbc", "message": "cleanup debris from basicAuth and certificate handling\n", "proba": 1.2150488259976555e-07} {"commit": "6c3e9d0295913a5bfef54ddf45e6896d133df2a6", "message": "Changed documentation to use hamcrest.__version__. Retagging as 1.2\n", "proba": 9.622536936149118e-07} {"commit": "ecea6015daae252305d329728ee2656f136bf5f2", "message": "do retry incase service is in STARTING state\n", "proba": 1.7464842585468432e-06} {"commit": "9686d89e7086547263cc0391d73be6e2a0eb6fd9", "message": "add missing models to `clean_user_db`", "proba": 1.89171458941928e-07} {"commit": "28e17d4bd338ddbe263ec08e6152f058255324e4", "message": "minor lexer/splitter cleanup\n", "proba": 1.36681990170473e-07} {"commit": "a42656415c0d770c9a4fb51aabb2e8335c55fcc6", "message": "Update memes.py", "proba": 7.535795134572254e-07} {"commit": "234a6ef374f6794ecb210dcc1d4f9887505666d8", "message": "- Added TaskI (a base-class interface for standard NLTK language processing\n tasks)\n- Added PropertyIndirectionMixIn (so each task doesn't need to implement\n it separately)\n\n\nsvn/trunk@1881\n", "proba": 7.504883683395747e-07} {"commit": "da24bbaa4346984014f642d33b29ce02215e9a4e", "message": "Typo\n\nSigned-off-by: Andrew Miller \n", "proba": 1.3231914408606826e-07} {"commit": "4ee33661035bcae63df8772601976d81250f0844", "message": "fixed targeting_specs name\n", "proba": 5.644427005790931e-07} {"commit": "08cb7b6d6ff7131fd378ff75a2de624d349dfd30", "message": "doc: Change version to 2.9\n", "proba": 9.204026127918041e-07} {"commit": "10dc79820eba4a36ebe12966e42b52173e807e8b", "message": "correction for alert widget: wasn't showing operation problems\n", "proba": 6.902445420564618e-06} {"commit": "6031ccbda23993a5104b8a9724c2d994c23d0051", "message": "python: Grab all keys before zeroing\n\nTo avoid a potential race with the key zeroing modifying\nthe next hash key retrieved by the loop in `Table.zero()`,\nretrieve all the keys in user space first before starting\nthe zeroing loop. See discussion on #780.\n\nTested with `funccount 'SyS_*' -i 1` while running a heavy\nread/write test application (`dd`) in the background for\nseveral minutes with no visible issues.\n", "proba": 1.7720820721933705e-07} {"commit": "d6aa0942f283dac13a9cb5cff5019f9a5f8d6a9d", "message": "Convert PostGenerationContext named tuple to dictionary for pretty printing\n", "proba": 0.02536487579345703} {"commit": "de1bc77ea044abe85034105c7f19ac6eb1a91e7d", "message": "Fixes #1556, by ignoring starting Gherkin keywords.\nThere is a known bug. This is the comment in code:\n-# When we change non-gherkin to gherkin, the keyword changes too.\n-# The workaround is not to Rename keyword, but only edit field.\nBetter code after Janne's review.\n", "proba": 1.0552319906764751e-07} {"commit": "e895d13853c5555113ed9dc1703e988651673a74", "message": "Add blacklisted models for channel importing\n", "proba": 2.3916638269838586e-07} {"commit": "34c7e99c21b79b1fb817849cb4cbade498308799", "message": "added close command\n", "proba": 6.6465054260334e-07} {"commit": "d45f8c91a11c31c3a9a600d181836950259b8668", "message": "remove error prints\n", "proba": 1.403878059136332e-06} {"commit": "8ced50c63ec78adf0c7c39c3e6c9ec4dfa1397ab", "message": "changed ftol to 10\n", "proba": 0.9993113279342651} {"commit": "5fc54a62b8cb9b5fd4e52c5999ab0cc13724f698", "message": "coeff calculations moving on\n", "proba": 1.7912546468323853e-07} {"commit": "ff187458dd4302adb1f027b6a1a3d852d5471d73", "message": "doc: tune config\n", "proba": 5.441740995593136e-07} {"commit": "26936b784dfa0c88086f212501ce915d7bbc2f66", "message": "cockpit screen: hovering for mo/po/do widgets\n", "proba": 5.209569735598052e-07} {"commit": "3f992536542105bd659114ce7ff555af82c0f0c8", "message": "If X509_CERT_DIR not defined, try /etc/grid-security/certificates before failing\n", "proba": 1.3704657249036245e-06} {"commit": "05420898451e11e31458557f2f074ab9246073c4", "message": "Simplifying revision context manager\n", "proba": 7.750471695544547e-07} {"commit": "39ae493e4210620ae9a16af87ba639153b1bec2f", "message": "Added funcs to utilities\n", "proba": 1.6760304788476788e-07} {"commit": "4358013424332c3a80914f5af07d9d870d0e2c29", "message": "[FIX] Corre\u00e7\u00e3o do campo UF do veiculo\n", "proba": 2.5014011839630257e-07} {"commit": "164f8e665dd2a292dbfe44ba98989725c209990d", "message": "Update radio.py", "proba": 6.65138145450328e-07} {"commit": "fb3e4df0e2022129332aa2917ceead93e2b64005", "message": "[metrics handler] update tag name in tmp stub metrics\n", "proba": 2.5207674525518087e-07} {"commit": "76f699b91aacfce180268be32fe0689ae7b4bd47", "message": "Fix up doc-strings and line-lengths\n", "proba": 0.004543208051472902} {"commit": "e08fe060133816f530c4737521af7112928806d7", "message": "updated sphinx conf.py file\n", "proba": 5.02271973346069e-07} {"commit": "457722e70afc88a783073d8f3dba19e30afc6d9b", "message": "makes fields read_only in django admin for financialaidaudit objects (#1258)\n\n* makes fields read_only in django admin for financialaidaudit objects\r\n\r\n* fix to read_only fields (not hard-coded)\r\n", "proba": 1.0876410527771441e-07} {"commit": "9359a6597f6e59ff4c195657735a8e027c88bf2e", "message": "Fixed a bug in the parameters printer\n", "proba": 4.6390226771109155e-07} {"commit": "5c09ede3ac4eae3814aa7be9e797682d8557b867", "message": "new translation strings for cockpit widget\n", "proba": 3.4689952599364915e-07} {"commit": "2a8d680b267922300ed0008fd355093a979e1a82", "message": "Allow curators to be blank\n", "proba": 0.9997349381446838} {"commit": "be2fa9e2a2fc8deac2d9fb86bced8934cf528e5f", "message": "Added keep_open parameter to execute function.\n\n- Added parameter keep_open to execute function. This keeps an external\nproject window open if the process exits. Should be for debug purpose\nonly.\n", "proba": 1.220665524215292e-07} {"commit": "48d34695282ae2219a68b45708baa674510dda96", "message": "Check both extension and mimetype while uploading or unzipping file\n", "proba": 1.8438372251239343e-07} {"commit": "1a83696454d5be09b07d1e1e6a23ea76c77012a9", "message": "Fix global imports\n", "proba": 0.005989106837660074} {"commit": "bb6e016ad21c09f5ea34a4697cb95f10a5d0453d", "message": "Update radio.py", "proba": 6.65138145450328e-07} {"commit": "0e6a06339193f55c0fc8ba604e6258a637b28101", "message": "Allow dict's as schema definitions\n\nAll negative testing schema's will be moved to dict format. Therefore\nthe framework must support files and dict's. After all test are ported\nto dict's file support will be deprecated.\n\nChange-Id: Idb094f2817e7ed007a0ea47cf8f8602b5aeb6268\nPartially-implements: bp api-schema-unification\n", "proba": 4.013340003439225e-05} {"commit": "dd052b98d73bc57769a91f13f6bd94c4c3840a3c", "message": "changed to sphinxdoc theme\n", "proba": 4.083964313394972e-07} {"commit": "bd5a42ab0e872a98f3cfb716ec49faae41a1d88b", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "e10c07ec3f39dd38b055c3e4f7d0640315739806", "message": "* GCE provision\n", "proba": 1.8369046017596702e-07} {"commit": "a29fd6eb7e6b12758c64228129a530105299b99b", "message": "Added onResetMotion hack to Grabbable.\n\nsvn path=/trunk/libavg/; revision=3906\n", "proba": 8.146186019075685e-07} {"commit": "4c9aa539b9150a7b96c83c326ba375ccef9f2b75", "message": "root redirect to apigui\n", "proba": 3.690919641030632e-07} {"commit": "1a6516765f7d95d8a3d89449dc181a9de27cb868", "message": "Shove the input into the main method\n", "proba": 0.9998737573623657} {"commit": "348010b6f145a0af63e358065cf240173cfcd9c5", "message": "Enhance caching of users on /deaths\n", "proba": 4.3082999923171883e-07} {"commit": "1c69832452c1d4e31875f95ea9fb809c83f0d4ff", "message": "Fixed some stupid spacing in template/aac.py.\n", "proba": 1.0554171581134142e-07} {"commit": "ab41e806eaf94f7d3a12f08204cbed530e718f3c", "message": "fixing conf for rtd\n", "proba": 3.324821307160164e-07} {"commit": "3eb22cb9e3c80574b4038492ad4764341ec7bbd0", "message": "Improve django-modeltranslation integration for inlines in admin\n", "proba": 3.5996683322991885e-07} {"commit": "a8887844f17eb584914284a67796e71fac0e9c18", "message": "Minor cleanup\n", "proba": 1.8076914898301766e-07} {"commit": "81673ccb585c094b899e307a02438021759d7d19", "message": "Automated merge with https://robotframework.googlecode.com/hg/\n", "proba": 7.598252977913944e-07} {"commit": "918a168b53e9f026393aaa17347fc855f7e4a70a", "message": "add background task, remove extra roles code, use .format\n", "proba": 6.867965680612542e-07} {"commit": "6e423458fe6e37e9ff358322cabba0e835048773", "message": "Fix spelling error\n", "proba": 0.9998970031738281} {"commit": "b56c6957f2878ae2c57898a58efc5cb57db234ef", "message": "/guildinfo and /guildmembersa are now subcommands of /guild\n", "proba": 1.4062268860470795e-07} {"commit": "8f44abb60138dbae82067f30dfea2cd97a74a3e3", "message": "Generate proper gsoc_program survey links\n\nCurrently we generate links to program surveys, even in GSoC programs\nthat should have 'gsoc_program' links instead.\n", "proba": 2.8589568046299974e-06} {"commit": "1ef987757f0264f55958c60d8baea29a87760546", "message": "get DEBUG setting from env first\n", "proba": 1.8230755927106657e-07} {"commit": "12009e3c725b256026668d4df89650000b367609", "message": "Factored much of choose setting commands into a superclass\n", "proba": 2.7164753646502504e-06} {"commit": "67ae8f5d03c97976479ff49b19db9f42854fc3bf", "message": "Enable intersphinx extension\n", "proba": 4.385755403291114e-07} {"commit": "7cee6081c46d46419f1e06e8713d34bdd26dcb6c", "message": "Add get_stats routine\n\nThis fetches and returns the full acq_stats table to the user\n", "proba": 2.1696641283597273e-07} {"commit": "c6e22b024108047bd39926eb5dd2fad0f2aedf32", "message": "changed defa\n", "proba": 3.8272360143309925e-06} {"commit": "2bfd9abbe4cf67d780358139e5b78964b55f8074", "message": "Fixed some issues in the ber template when handling the OBJECT_IDENTIFIER.\n", "proba": 1.1710993419455917e-07} {"commit": "a4374b4dbab68212cfaa46dd4f7f65ed7499486a", "message": "Too wide except\n", "proba": 4.7097583433242107e-07} {"commit": "a4f69decb2b22822660033265a6517510c8a2eb5", "message": "clean up some\nconvert some strings to fstrings\nuse fewer imports\n", "proba": 0.0005233320989646018} {"commit": "194401fc22bd8d8eb344b3a8c2fee93b3f30be4f", "message": "TranslatedObjectMixin should be treated with @python_2_unicode_compatible\n", "proba": 8.029594937397633e-06} {"commit": "4dd1e851831ae675f5b73f54bc4879034323a9ad", "message": "Fixes a rather nasty bug where this project doesn't work outside of a project\n", "proba": 2.6791471441356407e-07} {"commit": "f38bee68337e8a8dc1dd231281df05d7b02b6a65", "message": "mocks for rtfd\n", "proba": 2.152767279994805e-07} {"commit": "8256a1cc5dd03144914880ae4fb3a24d0ee1d40a", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "927d429da6573943d4cfc0c36c4838ed699e6fd7", "message": "IMDB Now featuring proper URL encoding! yaayyy\n", "proba": 4.38254164691898e-06} {"commit": "60b9bf7c88da8f34e68e8340af92f4d8e753385d", "message": "log output changed\n", "proba": 4.072866431670263e-06} {"commit": "76c7341994706ead061bfdb6689ae4d179752f24", "message": "dummy desisurvey module for documentation builds\n", "proba": 1.6720871087727573e-07} {"commit": "3c28ef6ad771b4060e139ab3bed8b1e9f77a8c65", "message": "Some refactoring after review.\n\n--HG--\nextra : convert_revision : svn%3A79c32731-664e-0410-8185-e51b9e89f9fb/trunk%401003\n", "proba": 1.4456460348810651e-06} {"commit": "8215e8ab2d972dbc4737c3dba0eece4db2a13b26", "message": "Fix KeyError: 'url' issue\n", "proba": 0.00020264410704839975} {"commit": "18696f61ce24e3c96dcebadc0314fb448452e522", "message": "Add checks in ./commands.py to make running it directly more robust\n\n- Check for an active virtual env\n- Ensure minimal set of dependencies are installed\n- Always insert runcommands project at front of sys.pth\n", "proba": 3.7825932963642117e-07} {"commit": "1f69f5e53b402d1a5de67d3371d1a71c18ec9842", "message": "Don't generate a module index.\n", "proba": 2.257012567952188e-07} {"commit": "46b6ffa5f4b4d53fbd632f9ed10646e45705e4f4", "message": "Fixed more release_tag related bugs\n", "proba": 1.1919750164679499e-07} {"commit": "ad4bfd01fafb3eb22ca244ee5230d516a16fecd3", "message": "Use custom post processor if it's provided.\n", "proba": 1.1767743046675605e-07} {"commit": "8c0f1741f015c8ffd475a2639a113abcec8e6bba", "message": "Update copyright year.\n", "proba": 1.319106814889892e-07} {"commit": "ca26358be15da6fdb90113de98493b54965b82ef", "message": "Rename kwargs\n", "proba": 0.0010589129524305463} {"commit": "7942ba799fbc04b4f3bc233a8f1f2b19af194292", "message": "get repo path properly for doc gen generation\n", "proba": 2.1066379929379764e-07} {"commit": "74ecefd4e67112c2a1e7f1a7e5c1ed3b9f441d52", "message": "Remove old call to connect()\n\nWith the addition of support for new configuration settings, Flask-Simon was able to make one centralized call to `connection.connect()`. This removes a leftover call that should have been removed as part of f6472ee.\n", "proba": 1.0615141121661509e-07} {"commit": "0439c35ae0f4aa74b125c20a04e58011bfeaa5b5", "message": "Fixed rtd_theme finding\n\nAccording to https://github.com/choderalab/pymbar/commit/56ff6b04049a6dd4130b78742c45c6bd0c8de84d this is the 'correct' way to include and use the rtd theme. Works for me on three different machines (Fedora 22, Suse 42.1, Debian Sid) with system side installed rtd theme.", "proba": 1.137756129310219e-07} {"commit": "7a05d172d6a37b4bdcfe2abdfa496ae5d2f2afbd", "message": "Refactored to remove flask-exceptional from the reported traceback\n", "proba": 1.39074799676564e-07} {"commit": "fd5cb81b39fd5d9f812dc3f01614f357034a5878", "message": "update docs copyright notice\n", "proba": 1.9247437421654467e-07} {"commit": "923889f40e6706aa6d9f72d32eed94fb74e0e152", "message": "Remove non-existent directories from html_static_path\n", "proba": 5.5895634432090446e-05} {"commit": "59d266e9ff05e8df7a4a90a35ab95470310bbf2a", "message": "Fixed broken import\n", "proba": 5.079285188003269e-07} {"commit": "43d4bd172e174d4a70981caec30d6c3669ea5c86", "message": "Change \"Clarence W.\" to \"Clancy\" to match name used in Clancy's github profile.\n", "proba": 1.7742162583544996e-07} {"commit": "b54d10dbeb5ab2db77fc4c0d4eb1749ff608b013", "message": "removed some rarely used transform types that require scipy\n", "proba": 1.4941851134153694e-07} {"commit": "84a652025bbb0abffd4b0c7b464f267723084cff", "message": "Update TL.py", "proba": 1.1884557125085848e-06} {"commit": "24d5c9a999b7f0f5899cc66e49f67c8758ad230b", "message": "added history to Scorer class\n", "proba": 1.3058715353508887e-07} {"commit": "4a214418dfc08250801c06d3064f03270746c812", "message": "More idiomatic querying of objects\n", "proba": 2.8438597610147553e-07} {"commit": "ba81222c33b4b80c5148c21bb30c60412c85847b", "message": "Fix search query\n\nSome kernel packages are not in section \"kernel\" because Ubuntu.\n", "proba": 0.9993822574615479} {"commit": "babafb52feece46363ace7ea462c418277e8781e", "message": "Addressing Dave's reply on name table rules for NAMEID_FONT_FAMILY_NAME:\n\nFor PID=1 then it will always be the same across all styles.\n\nFor PID=3 then it will only be the same for the 4 'core' or 'ribbi' styles (Regular, Italic, Bold, Bold Italic) and for the others it will be Family + Weight, eg \"Italic\" must never appear here.\n\nExample: \"Family Sans Thin\" or \"Family Medium\"\n", "proba": 1.2569731211442559e-07} {"commit": "494d1af8b84b107ab19977128f17dd721761933f", "message": "Fix timeout error message on windows to not be in milliseconds.\n", "proba": 1.5005052489414084e-07} {"commit": "457f7e65e9489ed7732c97a3f773c1e43a7a904f", "message": "mention the valid 1000 upm value in the error message\n\nfor the \"unitsPerEm value is reasonable\" check\n(addresses issue pointed out in a comment at pull request #1008)\n", "proba": 1.0463074318067811e-07} {"commit": "7cf782864a426afc41ee47dcb6ee4813e122d862", "message": "Changed gaussian plot routines.\n\nDeprecated plot_gaussian. Added plot_gaussian_pdf, plot_gaussian_cdf,\nand plot_discrete_cdf.\n\nFixed bugs where ax parameter was not being used.\n\nAdded docstring for a few parameters.\n", "proba": 1.0697193175701614e-07} {"commit": "523b7e1a79fd7b7135dedb79ab96b7dfa88fed45", "message": "fix rounding bug in xAvgCharWidth expected value calculation\n\nfixes issue #855\n", "proba": 1.3443465718410152e-07} {"commit": "c8d5c339964fe3cdeca6b3f0335d3f60c5c91a98", "message": "raise if failed to unzip a file\n", "proba": 1.4482651522484957e-06} {"commit": "1c17b4b10374129d9e26f7023a93ea587dfe7fc7", "message": "update version number to 1.0.10-pre as prep for staging/release\n", "proba": 1.651176262384979e-07} {"commit": "c81349bf5783f60cdda293e54474b320ae92e8c1", "message": "new checker (show hinting filesize impact)\n\nfix issue #344\n", "proba": 1.290284785682161e-07} {"commit": "2d7a5ab94c429f1ba7f8b50d68a3b042211f54f6", "message": "fix conflict\n", "proba": 0.0317077673971653} {"commit": "2934e1aff217f78dae0f632b0ee312cc8dda5b3e", "message": "fix 'fontTools.pens.areaPen.AreaPen' imported but unused\n", "proba": 1.0378140586908557e-06} {"commit": "8d2beea1cfda198364d307dc67799e5ac0dc6831", "message": "Removes commented out code (#48902)\n\n", "proba": 1.1112378928146427e-07} {"commit": "9e7ce27fb73e39b054a70a48f33e03c60e7e3dcc", "message": "cache more set/get exception in backend\n", "proba": 2.540954824326036e-07} {"commit": "b10f63025600a8d5be31fd68cc63abf67d0f4ec3", "message": "fix issue #936: checking for proper usWinAscent/Descent\n", "proba": 1.379104190846192e-07} {"commit": "71510aa67a518df27d7d0ac350b71939ed20e440", "message": "iam_role - Add option to supress the creation of instance profiles (fixes #26023) (#32527)\n\n* Defaults to creating the instance profile to preserve current behaviour", "proba": 1.4307643425581773e-07} {"commit": "d0ee1301ff85c9975946203bd2b52ba03ddae2d0", "message": "Fix deferred initialization of app object.", "proba": 2.594465797756129e-07} {"commit": "a947621cc129fb226cc826a6e0b9816b92317722", "message": "speed up kgw by 10X\n", "proba": 4.642993644665694e-06} {"commit": "8df2eb7352a4cea5d15338441f6f4232bb9e9dc6", "message": "cache meta_view\n", "proba": 9.764147534951917e-07} {"commit": "eeed61d984dc9cfe9d8aa184512e1826c49e63bd", "message": "collapse some lines\n", "proba": 0.0010178990196436644} {"commit": "35d74f17ea7da6092759b4776264172e50f87b39", "message": "Polynomial_vec.py\n", "proba": 3.9250549889402464e-05} {"commit": "54c51fd88759e2f398d566040200d2c9d51b8e5f", "message": "Fix string formats not compatible with python2.6\n\nCloses #526\n", "proba": 0.0009434852981939912} {"commit": "d516e43e04d51852de6fe4aaeaa00ea75211bda7", "message": "add - api methods to pass along endorse/exclude counts\n", "proba": 1.1788444709281976e-07} {"commit": "359b7f038053bab53e696cf9b50cc5242ea04fa9", "message": "Sketch of YAML dump code.\n", "proba": 1.3251488439891546e-07} {"commit": "e7caa2216cd60107ccb36731cf153b32633566fd", "message": "Address review comment: link to follow up issue.\n", "proba": 1.051426821163659e-07} {"commit": "537f72830546fc4c2e3cf263811124bd9589417d", "message": "Added the species_hardness field to Flooring optemo Django object\n", "proba": 1.7116333594913158e-07} {"commit": "884c7dfe989ce42fe0c41d93d35cef54933edc9c", "message": "add fifo read size option, error checking on headers\n", "proba": 1.4476117371486907e-07} {"commit": "d46b91cf7fafe568026516671213598e63d1e873", "message": "Return timestamps as int as expected\n", "proba": 3.3040440030163154e-05} {"commit": "5492c0de5bd19899dbbd0d2772d3d0f45c2833e3", "message": "no mm map for remote apps\n", "proba": 1.6640011324398074e-07} {"commit": "7e520383154dd6aeb617c681a822b2e4d50e9a01", "message": "\u4f18\u5316\u64ad\u653e\u7684\u968f\u673a\u6027\n", "proba": 2.1912151737524255e-07} {"commit": "8700bcaabc2470849a47383c991c37a886da1b4a", "message": "add profiler\n", "proba": 1.7864077790363808e-06} {"commit": "f671adddf7c31830ed6ae94458e4f77e1eb14a87", "message": "Index in elasticsearch\n", "proba": 5.356129122446873e-07} {"commit": "3ceb5afe5e6d45f7880756172bd32bc6d0b8ecf7", "message": "clitest: print repr() of critical string in exception messages.\n", "proba": 1.2966064844022185e-07} {"commit": "8b566e661de26c67a2d28e6b1c249432b3b54bcc", "message": "migrate default zone preference\n", "proba": 4.1758670477065607e-07} {"commit": "8a9511660acbec3c87b0b662dc9040ce88ead7d6", "message": "debugging\n", "proba": 2.4004323222470703e-06} {"commit": "2cd355195fed8918022288140240626ad5aea0e9", "message": "fw/rt_config: Fix validation checks\n\nRemove unnecessary validation checks and fix remaining so they don't fail\nunder certain combinations of parameters.\n", "proba": 1.0973430164540332e-07} {"commit": "112a790306d282e9173cd0c1098a1d1d7e50d882", "message": "Algorithm change for signing.\n\n- Use HMAC of IP, User-Agent, and app secret to generate sid\n- Compare cookie vs this sid\n- Store expiry in the storage, not in the cookie.\n", "proba": 1.3892527306325064e-07} {"commit": "7c4849c01acfa25e0d3d104f473727002c589a05", "message": "Don't always start at the top of the page but rather at a more relevant place somewhere into the document.\n", "proba": 1.1200858551774218e-07} {"commit": "17b4720ee90391826dc09e6c5030c6f4bfa01fb5", "message": "remove redundant code\n", "proba": 0.9999994039535522} {"commit": "c1f79fb9121b003cc381ed571f679432dd6cf7db", "message": "clean up Sorted docstrings\n", "proba": 3.298667365925212e-07} {"commit": "5cd9641f24ef49e1084b78db3d59cca2370f296a", "message": "Update peer grading comment\n", "proba": 1.593205496419614e-07} {"commit": "34562e5df4e5aeb1f1ebf679be20be64d30109be", "message": "Link to concat from concatenate (#606)\n\n", "proba": 1.3465817971791694e-07} {"commit": "d374766dde75044dc3d37d4a9fb1a6a48524c01f", "message": "playing with scale\n", "proba": 5.33227705545869e-07} {"commit": "98ffaad699fa6813a1eb033a44a8da8d1e863f0e", "message": "Changed `test_plain_text_multiple_words_and()` to include three words\n", "proba": 1.2438678822945803e-05} {"commit": "f7532e354f5d627ec6a6b205711ee1047d53df74", "message": "Use Enum instead of IntEnum for the osu! api, as IntEnum had some issues with comparing mods.\n", "proba": 1.1289935741842783e-07} {"commit": "03c00f4fef997beaa8f199344eda342c2c8e19d4", "message": "Set node peer\n", "proba": 9.05404874629312e-07} {"commit": "61e67ed5740148f74e67aef09afc65ef1c3fd6a8", "message": "Handle commands in a very trivial way\n", "proba": 0.00022009623353369534} {"commit": "8c519c3d91e7bb9acf7f2bfedbf97c7b2a911a14", "message": "feature: add host and port params to Emulator\n", "proba": 4.085569287326507e-07} {"commit": "35c4cd2b7823aebfa2c4e2680b24c8c1e1b93335", "message": "debugging\n", "proba": 2.4004323222470703e-06} {"commit": "6800869153863704abef88f205e5065cfe00650d", "message": "Ditto for WagtailAdminModelForm class\n", "proba": 1.3151550604106887e-07} {"commit": "074ec83e453df92b4b68e7332e7f3511270e007b", "message": "[flax] Fix a string formatting bug, and some other minor issues.\n\nPiperOrigin-RevId: 380749180\n", "proba": 7.411958904413041e-06} {"commit": "8bfbb779ea4b1060a67bd2d714792258ebb4346b", "message": "bug fix & stride 1 version\n", "proba": 1.3030053480633796e-07} {"commit": "1990ee8aacbf58f4bbafee0774405057597838a9", "message": "auto-commit\n", "proba": 1.3224084796092939e-06} {"commit": "244b8103951ea0e56dafecae6bc44b14a1cfcb78", "message": "all tests pass\n", "proba": 3.2994569210131885e-07} {"commit": "46570c9884518893e364f4edeb16ace27df2dbe9", "message": "Don't show revisions menu button on root page\n", "proba": 3.1711056180938613e-07} {"commit": "018a1ec7bdcc483876e0b07b961e25117c6afd23", "message": "more-logging\n", "proba": 2.404973145075928e-07} {"commit": "74a37d0d14f250e105d25f98260174c4aa239bd7", "message": "Don't set content header\n", "proba": 5.092394985695137e-07} {"commit": "164013bd434d3a91b2305bf9238487475d4af352", "message": "When registering user/group permissions, specify add/change/delete permissions explicitly.\n\nThis ensures that we don't pull in any other permissions that may happen to exist (but are not relevant to the Wagtail admin). Also, ensure that we pick up the appropriate user model as returned by get_user_model, as this is the one used for permission checks in the views.\n", "proba": 1.0854546417249367e-07} {"commit": "d8a991add948a2895996a4455ef86b2d9cbde31f", "message": "Bookkeep currently called leaf node\n", "proba": 1.4027149575213116e-07} {"commit": "f0270631dfb8fb2e958fccf53bb8c101f3edcea4", "message": "Update aksetup.\n", "proba": 1.333554138227555e-07} {"commit": "31a227faeff5e7517fa86f9adcc5e2d8e1e82fae", "message": "helpless debugging\n", "proba": 5.726504923586617e-07} {"commit": "655a54e0d4835809bb0d46de03cffe8a1de7fdd1", "message": "Only need to evaluate package location fixtures once\n", "proba": 1.1855334491883696e-07} {"commit": "c2e9f78f63c8dd5dc7bdbde4aae50e38f4797a21", "message": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 (\u0437\u0430\u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f) \u0441\u0442\u0440\u043e\u0447\u043a\u0430 \u0441 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u043c,\u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u044f \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430 \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0442\u0435\u0441\u0442\u0430\n", "proba": 1.0272190138493897e-06} {"commit": "48ba8efc1072ad3a36a4d0f9e824bf61d3b22778", "message": "Fix bug where api.Person.getFromToken(token=token) failed.\n\ntest.login is decorated by static_caller, which takes token as a position arguments, thus no token can be used to issue the API call.", "proba": 1.3245399088646082e-07} {"commit": "83e24a744d28cb6155a1af0245eb068ab1f5ec4f", "message": "Fix save stopover in database\n", "proba": 1.3060026731182006e-06} {"commit": "42f4d72cba97408c03f895d9588f7e2c8e67b8e9", "message": "chore(ContentLoader): Fixes code style issues\n", "proba": 4.0551978486291773e-07} {"commit": "1b6fce14a6f2197611ed74ec675f74b20171245a", "message": "Refactor dumpdata\n", "proba": 1.5889249880274292e-06} {"commit": "9fdb249d05091275fb85bd58a998d97872688206", "message": "added import statement\n", "proba": 1.588278024655665e-07} {"commit": "a41edbc4c9ac67a129eee77d3ec20e9672b34fe2", "message": "fixed bug \"can't compare offset-naive and offset-aware datetimes\"", "proba": 1.1888870687926101e-07} {"commit": "4b15220b27b6553e30e2e49bea712f1c689310e0", "message": "Debuigging\n", "proba": 1.5315688415284967e-06} {"commit": "c18e43769b50dff68defb6a8d55dec89824d3d55", "message": "Use PyQt5 instead of PySide\n", "proba": 3.3716122516125324e-07} {"commit": "bb4703f6097ec1e52fa8b9185e399ecfc82c3f53", "message": "remove jit for unsupported numpy function\n", "proba": 1.4698744053021073e-06} {"commit": "2dd5a8509eb09d9795b5c3ab99a3cd2c3c545bf8", "message": "ENH: Ignore subreports with no elements\n", "proba": 2.7084436737823125e-07} {"commit": "b15c7e22481a7a6ac72978555ab3c150beba7378", "message": "forgot to remove calls to package resources in run_reports\n", "proba": 2.2828315593415027e-07} {"commit": "b227e79d93092f510a7c655f626678273d162524", "message": "fix issue #928: a better hash for font protobuf messages\n", "proba": 2.1296519037150574e-07} {"commit": "067dbb42e6b2744f85eeb8dc5536c283bc8b5270", "message": "refactor: test \"Ensure designer simple short name\"\n", "proba": 0.0004775291890837252} {"commit": "07fbcb14918c69eb200295195885c2005c45f9fc", "message": "fix issue #698: Check whether font's post table has version == 2\n", "proba": 7.397447006951552e-06} {"commit": "ed7c95f556d7e982f96a8e8a77b7562a312e5652", "message": "removing unneeded comments\n", "proba": 5.163520313544723e-07} {"commit": "42fef9a2b0854b612b38f88b884297ce313cd8a0", "message": "add beginning and ending date to update errors\n", "proba": 7.090818598953774e-07} {"commit": "044edef1f7787c0cf3e34b85692b943bb4d59887", "message": "Remove 'author' command; replaced by advanced search tag\n", "proba": 1.1159728273923974e-05} {"commit": "d74bbefb13882f6daf54cdb0b0acfb5602149ab6", "message": "Updated ordering of base_urls generated by ActionMixin.\nAdded initial concept of ResourceAction, this allows actions to be defined as their own entity.\n", "proba": 9.908374920541974e-08} {"commit": "61cf4e2feb3d8920179e28719822c7fb34ea6550", "message": "Add defaults to the ibm RNG\n", "proba": 1.932554823724786e-06} {"commit": "42fb0bdfa2aeb509f767412aed334f91bda2f9b4", "message": "Add argument sanity check for Table.scan(scan_batching=...)\n", "proba": 2.929696449882613e-07} {"commit": "a5da2e63c54d1d39b0ae707e3a71257db2f43edd", "message": "Minor bugfix in ir_hub involving thresh scope\n", "proba": 1.486770884184807e-07} {"commit": "6e624f0d28c16a1ceda6cbc11f21144f854b9f22", "message": "Remove: unnecessary init function definition\n", "proba": 0.007770088035613298} {"commit": "300ac4c89a62dffb0617b08a1acb304cb48063c5", "message": "Fix message language\n", "proba": 0.9999746084213257} {"commit": "776c2992b64911f86740cdf0af4f05c7587430c7", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "d926b67bf19d76a21543db00da1db6e8a5d95ff3", "message": "should fix it, bloddy unicode\n", "proba": 0.9999918937683105} {"commit": "d07fd3122a1b160d3a021c7d9d68460ec4f47275", "message": "Wrap long comment.\n", "proba": 2.024838892111802e-07} {"commit": "6cd42058f3a2054e10b58a1a27a45481e608a23b", "message": "Refactor require.deb.key() to avoid code duplication [#141]\n", "proba": 1.286954329771106e-07} {"commit": "b237321197508612db97596f16d0dad6c9788d0c", "message": "Restored compatibility with py27\n", "proba": 1.402591891519478e-07} {"commit": "b586b11cb5b7cf0012edcf7b14c42a8c2fb79a96", "message": "Fix comment to reflect the code's function.\n", "proba": 1.5299177391625562e-07} {"commit": "c490870c67116387f116528fc8563b8dcba37b3e", "message": "Pass attribute name to PostGenerationDeclaration\n", "proba": 2.446695077651384e-07} {"commit": "ce35b5630d9829a66542d9b8ff16fa4363f5cbf6", "message": "fix algo\n", "proba": 0.9983806610107422} {"commit": "2dce4c7843bcbb9a429e98974c461e3077bcb578", "message": "Remove defunct renew for confirmation URL\n", "proba": 1.9498682490848296e-07} {"commit": "533d14543f908cbd5e4f62198e1f5d6669a3965e", "message": "Checking if the graphs index file exists before trying to read it\n", "proba": 4.149543428866309e-07} {"commit": "de22bd6297bd0224e291b8856e532432f199fcaa", "message": "fix: improved validation\n", "proba": 0.00017093389760702848} {"commit": "c5f91779b400013b95b5ffec7f03dd8d0d89dc9f", "message": "this tarball has the sources in a different path\n", "proba": 7.535055033258686e-07} {"commit": "f48b9809a7a51b4033fa81c68e001c5dc9a874ba", "message": "[fix] [backup] email link to md\n", "proba": 5.131743137098965e-07} {"commit": "f70a1cce3995b1445e590a1dc05baf505cf71f51", "message": "Fixed printpriview\n", "proba": 2.538527894557774e-07} {"commit": "167af2da3525f8d82b35b0e20305d289d8c50dd7", "message": "Can move objects.\n", "proba": 0.0002125235041603446} {"commit": "9064dc6404aa2766b5e325f5b1ad7c7bf0601325", "message": "datalab moved helpers.convert to helpers.utils.convert\n", "proba": 1.40311012728489e-05} {"commit": "61a90e73822f6b143798eb53990b46c4518eeda5", "message": "Marker lengths now supported in instrument specification file.\n", "proba": 1.0226683855307783e-07} {"commit": "de03a4479eec5ec8c8f62857dfec2f978e0c44a0", "message": "add some comments and logging optimization", "proba": 1.4329670250390336e-07} {"commit": "209d23ee4b993ee73e19db76577a804522109cbf", "message": "Added the basic functioning code. Note that it is hacky, and needs to be improved at a later date.\n", "proba": 1.0582068910025555e-07} {"commit": "a7bc77727f972b69052079f613a781c76de8bd29", "message": "fix pep8\n", "proba": 5.926127641942003e-07} {"commit": "0202eeed429149cbfafd53d9ba6281a0926ea9df", "message": "Add labels to account forms and add a NewUserWithPasswordForm that adds password inputs to the new user form.", "proba": 1.2374287905458914e-07} {"commit": "166f2404b702ac91194b13564175869b4353fcbf", "message": "fix #38\n", "proba": 6.799522793698998e-07} {"commit": "9e1500ccd675330b6dff8587d561bffafce71de6", "message": "add _simple_eval as a sort of ast.literal_eval lite, with code from the Cookbook. this fixes CFKs that use primitive types, which is a decent start.\n", "proba": 1.0329249278129282e-07} {"commit": "fe7945f8e60d09c2f472cc82e71450b46b1acf43", "message": "Remove conversions.\nBecame obsolete after MSRBP.\n", "proba": 1.5619103521657962e-07} {"commit": "9ec5e3cd68aec7a2c869e450ed7acf3e0ee718c3", "message": "infer session in grid.bind\n", "proba": 7.103534699126612e-06} {"commit": "60df3e32cc262ae12d8990de5234094279bbac20", "message": "frappe/frappe#478\n", "proba": 6.002447889841278e-07} {"commit": "3712185966d5f632b3a5ffb03ac14c510a15e330", "message": "PM-1595 regex should be in double quotes per standard convention\n", "proba": 1.9148534136093076e-07} {"commit": "2c89a28fe78c8776a2e203d2d8da7beddd68b2cd", "message": "changed domain name\n", "proba": 6.572150141437305e-06} {"commit": "2db84e6c94fdc8de821a98442ce928db9dd73441", "message": "Sponsored event should dump title\n", "proba": 0.9996351003646851} {"commit": "ce31120f0b89d0a8d8b964f5f84d69a9c341d6e4", "message": "customizable version of resnet\n", "proba": 2.2816823275206843e-07} {"commit": "487e1f1d07eb7f2bf16315432e48a3c70681da32", "message": "Fix warning\n", "proba": 8.495023394061718e-06} {"commit": "81a69b996c08c2f5e52a721eb130db08333f012a", "message": "discipline#2\n", "proba": 3.890629329816875e-07} {"commit": "32cb306a2a95cb2636b3f3c97b480d2b8828e3a5", "message": "create_disciplines#3\n", "proba": 4.3271033973724116e-06} {"commit": "b1d4daf638279a880db973dc4f5bde46cf67f5dd", "message": "Increase diff output for theses tests to debug potential issues\n", "proba": 4.080413873452926e-07} {"commit": "47005887f9435908e9a4d1731d20cb9c009e5138", "message": "added ability to ask for current desk height\n", "proba": 1.8623437370024476e-07} {"commit": "a3a2b1e0d11f8e15a318c5088f96b685d1d4ac76", "message": "#1546: Handle no user in request object\n", "proba": 6.882948468955874e-07} {"commit": "39b1b5558713e3aece0d9cf78efe8b1b7efc1146", "message": "add Viking\n", "proba": 0.9996944665908813} {"commit": "b0157af2319bf957a0593302acec72787056414e", "message": "[adls] Fix Python style issues\n", "proba": 6.81697599702602e-07} {"commit": "2000e7155333d34f4f87d3db43e702d7e4ca96a5", "message": "Add decimal precision check in auction tests\n", "proba": 7.705251050538209e-07} {"commit": "846adf9c0b96ab18367258a19fd2c15a9cef7473", "message": "Add fallback\n", "proba": 4.489312232180964e-06} {"commit": "6d0818a12b0164ce101c5d9cb0bcf4a884efa4a0", "message": "optmize\n", "proba": 3.4397719446133124e-06} {"commit": "3059d4773db2057d5a46b0bb48d2733127f838dc", "message": "apps.examiner.simplified: added tests for filters\n\nadded tests for almost all filters, still missing are\ntest_search_filters in StaticFeedback\n", "proba": 7.294556780834682e-06} {"commit": "0c5a52b91b7a388dcbf85ee8f1e30cebfab70ddd", "message": "A change made yesterday caused us not to include any of the toolkit_views rules\nReview URL: http://codereview.chromium.org/115880\n\ngit-svn-id: http://src.chromium.org/svn/trunk/src@17188 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n\nFormer-commit-id: da0d8d717200c6c7c5c3c0c001e4cc97ca9fafec", "proba": 2.2424392227549106e-06} {"commit": "7618839b4fb3d52f1ac083f2ead48eb5f2f4a00c", "message": "Fix accidental tab\n", "proba": 3.457551065366715e-05} {"commit": "95a5618947779f80551cf34e415e3bad77dc1174", "message": "deny put/patch to documents of invalid bid\n", "proba": 2.2180850578479294e-07} {"commit": "a62224491283745884ebf9f3cc17e02cdbf14949", "message": "fix bad merge\n", "proba": 3.6878125683870167e-05} {"commit": "505c5dc1912e65891b2dcf1e4e7289da485b8f73", "message": "Refactored bozorgnia_campbell_2016\n", "proba": 6.470478979281324e-07} {"commit": "e7a8cd72630d772dd034d119a1b1e407c075c6ab", "message": "brown paper bag bug\n", "proba": 7.524357897636946e-06} {"commit": "85cf3ed3a571277a988599ba98304bc889186e0f", "message": "prefix rcomp CLI switches with `--rcomp-`\n\nThis is motivated to avoid collisions or confusion with command-line\nswitches intended for programs that are run via `rcomp`.\n", "proba": 1.055038794106622e-07} {"commit": "1a84e0f8ac3b2aa41a3fe99da9509dbbeaed62c7", "message": "fix failing test_blockwise_inner_join: use assert_array_equal\n", "proba": 0.001890220446512103} {"commit": "9462942d31c30330827e169ca77e7f810b7f242c", "message": "Add diagram of whole asteroid orbit in final plot\n", "proba": 5.904087174712913e-06} {"commit": "a11ccee417f08a6b6947874fdfddcdd18ba35cfc", "message": "Updates to NN visualizations\n\nSpecifically, start showing param vs run again, and also plot the\npredicted cross sections about the predicted best params (rather than\nthe best params found).\n", "proba": 1.0884338053074316e-07} {"commit": "220aec73f089b2ebd43af11408174e7d36b8c828", "message": "update ytb tag\n", "proba": 2.763644033620949e-07} {"commit": "8099c1eec074274c38d9c9afc29f5864829f4337", "message": "FIX (GUI): FREESURFER_HOME test", "proba": 1.6114692868995917e-07} {"commit": "2e9cf84f888d2eab59701bcd304928fa2c516ea4", "message": "Made saved filename be current filename\n", "proba": 1.609100218047388e-05} {"commit": "bd96de552aca4a6908e27ad49edeabf78b5104c3", "message": "\u30b9\u30b1\u30c3\u30c1\u3092\u4fee\u6b63\u3059\u308b\n", "proba": 8.000403113328503e-07} {"commit": "6e0533ff0524b83a458eee13927cf1a4cc336243", "message": "avoid ESA snappy (#1079)\n\n", "proba": 1.3670597809323226e-07} {"commit": "4adc5580e39180de1f94f211a56dea04807c4c21", "message": "New colours to Likert scale\n\nAdded new colours to the Likert scale to easier separate gradients. Hopefully better for colour blindness.", "proba": 1.0060090716024206e-07} {"commit": "4fdcb4f8b5cbcc819c5ad20e6d3421914a56ce2c", "message": "Properly check for ipv6 availability (#5255)\n\n", "proba": 1.5643492190520192e-07} {"commit": "0c0ae78cebc806f647d2504a6d19e95cf872ccc2", "message": "Also don't log in testing\n", "proba": 2.1615475986891397e-07} {"commit": "17be0b68ab30492e25fdd8c6163a64bc8dc373f6", "message": "Remove an old function\n", "proba": 0.028605688363313675} {"commit": "4eb07421cfa802c6feb0d4ad7450a6d92014a680", "message": "New 1.0.2 release\n", "proba": 1.7873472302198934e-07} {"commit": "3db898fa9e61a04beee02fd8fbdc6d570dbd13ba", "message": "Let exception handling middleware split error message and detail\n\nSplitting error message from details like tracebacks allows the front-end to\npresent errors in a cleaner way.\n", "proba": 1.0165152986019166e-07} {"commit": "2492dea9ea1c152ff549ffe0b461a8833e0442cb", "message": "no changes. I just touched it\n", "proba": 1.619647349571096e-07} {"commit": "468ca16319977628bdae2be527514a30b35dd6fa", "message": "Fixed a misplaced parenthesis.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@11746 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 0.9999992847442627} {"commit": "c08cb916a14016b58f26116aa6fa2a802473d45c", "message": "Remove duplicate example output\n", "proba": 0.9992157220840454} {"commit": "8ec95cbee502bf267c5850f28ffb4f5f39dcc3b5", "message": "[py] Only skip tests if driver name matches a directory name.\nFixes issue where cookie_tests.py was matching on the ie driver.\n", "proba": 1.0467685029880158e-07} {"commit": "0396b10e1c5a79e1a45edb048495a93617bfeb0e", "message": "add toggle for adding enterprise domains that will be a part of the ECD feature preview\n", "proba": 1.1639044572575585e-07} {"commit": "73093d987b035b847abac0d34e81997138806770", "message": "Improve handling of ALREADY_HAVE_STORE_ITEM error\n\n- Reduce false positives by explicitly checking the returned error code\n- Use a separate exception object to avoid messy exception handling flow\n", "proba": 2.95378384862488e-07} {"commit": "3c4e65f123dc56255262e38a934b9cacd03c0bfe", "message": "remove debug prints\n", "proba": 1.4093592426434043e-06} {"commit": "393ba677e2d1caf4c5e88b7d1c069ca63b2990a7", "message": "Enable --oll as option.\n", "proba": 1.2975937124792836e-07} {"commit": "4aa3956bdd8d9c4ca9080a6461b7768ba3ebbb02", "message": "sqlite3 backend has problems\n", "proba": 7.362112910413998e-07} {"commit": "294254aad0d798ffcfca6e34b48b4ed704bb5cd0", "message": "Simplify CachingManager logic\n", "proba": 6.6854954638984054e-06} {"commit": "3f261967042561512a23403343a339f3f5dd8b40", "message": "Added a TODO\n\nAdded a TODO. This project is still a work in progress", "proba": 1.3035335655331437e-07} {"commit": "70a96a1acca2521e5b923ed34f5e521e62e02af2", "message": "New update functionality\n", "proba": 2.479737304383889e-07} {"commit": "9beb169be61607133cbde813dbfd86da5e75cb2a", "message": "add import structs to pyads.py\n", "proba": 1.87737589385506e-06} {"commit": "da79975ca417db37068eb889112ec43c1e58693d", "message": "Fixes #130 - validate position value\n", "proba": 1.42092630994739e-07} {"commit": "303843527198c951a8126ca601ab4d7657dd92c1", "message": "Using inheritance for TimeDep classes\n\nThe TimeDep2dRigid class is now a child of the TimeDep class which\nprevents the reuse of code. The only difference in the methods for the\ndisplacement is the use of rigid bodies vs individial particles which\nisa handled by the unwrap function.\n", "proba": 1.3056273928668816e-07} {"commit": "c2fedd9a34f01c5268e13caf48aa57cd80fca423", "message": "OTH: correct error message\n", "proba": 8.789575986156706e-06} {"commit": "a21b9588002013c5efff895e63f29fe362110656", "message": "Spell checker: identify multiple positions of mispelled word\n- precision : 0.05457300369812355\n- recall : 0.6653793967226803\n", "proba": 0.9995809197425842} {"commit": "0cb57a8cd6aa00ee2692e019f78fc6301231d99d", "message": "fix bug?\n", "proba": 1.4023457595158106e-07} {"commit": "7fc1c7f7b3a0d755249753477b667f2120e9073b", "message": "Replace c_uint everywhere with a type to improve readability\n", "proba": 9.029232614921057e-07} {"commit": "46ab5216920dad01b5e19d273dc5a73214b5b710", "message": "Back to development of 1.7.4.1\n", "proba": 2.1486241053025879e-07} {"commit": "c28efa529e6aed646c6b23e28e605ba48ae9cdce", "message": "Enhanced the AST classes.\n", "proba": 1.6199625463286793e-07} {"commit": "a478a7f8706d3798c6170d0a6874f0c6b616f89a", "message": "ENH: added a 30 second backoff before retrying a request.\n", "proba": 1.1092430440839962e-07} {"commit": "e9ed13d8a9881e06365daf84c829d4d9ae4e056b", "message": ":sparkles: \u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u5c55\u958b\u3057\u3066\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\n", "proba": 3.3552279887771874e-07} {"commit": "a9838418f9ba0b52d19da73093fea1cf7bb3c183", "message": "affected labels for output\n", "proba": 8.48886884341482e-06} {"commit": "1fedf4637b3417fd6cbe0816f39b70faa4698d4a", "message": "Properly wrap inner function in pydle.async.EventLoop.run_with().\n", "proba": 2.2156621071189875e-07} {"commit": "466d7be66dce2d25449c736d5eec7446212b969e", "message": "Bugfix: Invalid description of command AddTile\n\nMissing captial letter in description text fixed.\n", "proba": 1.0948426165668934e-07} {"commit": "ac66346ab373cefa8f097520db2f05b1640d3616", "message": "Added ISO 8601 date conversion function", "proba": 4.1531700389896287e-07} {"commit": "8e08df6cd5239b81c2620a6371a4e6c100fd9471", "message": "Syntax error fixed: invalid method call\n\nSelf argument in foreign member call\n", "proba": 8.840164014145557e-07} {"commit": "4348dd1773f172dfc204178475130fd618464cd4", "message": "WebSearch: replace CDS Indico by Indico\n\n* Cherry-picked from 844f1837e60a574cd07861963670727f4803986c.\n", "proba": 1.0505648617709085e-07} {"commit": "c69d413fc9adcd1494c4d2e1b6bd00cd663fbb00", "message": "made path to program icon OS independent, started improving shutdown behavior\nSigned-off-by: chipmuenk <1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@chipmuenk.de>\n", "proba": 1.138652692134201e-07} {"commit": "2a5fbcd2e3da01150c2690c145100270d3f0ec81", "message": "fix clipnorm\n", "proba": 6.551897513418226e-07} {"commit": "a961beae1e6d3607004b8a6b8b565b31cc73fe35", "message": "doc fix\n", "proba": 5.12189103574201e-07} {"commit": "2f01220c562d1d0e05bcf27dcbdbdb3b3b69cb27", "message": "fixed bugs for deconv\n", "proba": 2.361211244306105e-07} {"commit": "d15b50bf946bba2e2a44e14340d17d8931315162", "message": "check arrays in every public method\n", "proba": 3.772171623950271e-07} {"commit": "8585d46423251dd01fb38e09ce6f7bb6342cc52b", "message": "removed netaddr dependency\n", "proba": 6.089569524192484e-07} {"commit": "b11ea894d5b4f46b86a1461a90ae20b01f186bce", "message": "Adding markup_to_html function to the API.\n\nThis new function takes raw reStructuredText and turns it into HTML\nthat is safe to put within an HTML document. It is currently a work in\nprogress that will have to be cleaned up at some later point to fix\nthe way it handles headings.\n", "proba": 1.0787880455609411e-07} {"commit": "640c412fae58129ba93025886583fe85db526a63", "message": "update docstring\n", "proba": 1.2015339052595664e-06} {"commit": "efaee8fdf2516bc49892b672eba619ba36ba6eb3", "message": "Created new file ex6.py.\n", "proba": 1.223899062097189e-07} {"commit": "862485d2182bf812c2f09387a6721f74d1e62800", "message": "support item assignment in Rect\n", "proba": 1.9499240977438603e-07} {"commit": "db3cee63baf64d00b2d2ac4fcf726f287b6d7af2", "message": "Update call to proxy fix to use new method signature\n\nOld method:\n\n```python\nProxyFix(app, num_proxies=1)\n```\nhttps://werkzeug.palletsprojects.com/en/0.14.x/contrib/fixers/#werkzeug.contrib.fixers.ProxyFix\n\nThis uses forwarded values for `REMOTE_ADDR` and `HTTP_HOST`.\n\nNew method:\n```python\nProxyFix(app, num_proxies=None, x_for=1, x_proto=0, x_host=0, x_port=0, x_prefix=0)\n```\nhttps://werkzeug.palletsprojects.com/en/0.15.x/middleware/proxy_fix/#module-werkzeug.middleware.proxy_fix\n\nSetting `x_for=1` preserves the same behaviour as `num_proxies=1`.\nSetting `x_proto=1` and `x_host=1` will cause `REMOTE_ADDR`,\n`HTTP_HOST`, `SERVER_NAME` and `SERVER_PORT` to be forwarded.\n\nSo we will be forwarding `SERVER_NAME` and `SERVER_PORT` which we\nweren\u2019t before, but we think this is OK.\n", "proba": 3.877742358326941e-07} {"commit": "8429e03ede28d1845a1778db2bdb9ddd6a3faa3e", "message": "Teh rest of the fit and contains fixes\n", "proba": 1.1606412186893067e-07} {"commit": "87b2c1f43ced75ea135ba602815627adde80bca0", "message": "Payment/Paypal: Adapt to transaction simpler API\n", "proba": 1.2892887752968818e-06} {"commit": "e7fef27479899e15491256b0581ceb8fca872226", "message": "start rpc tests\n", "proba": 2.9512526111830084e-07} {"commit": "47a11510b7a6897c59e470677ad05c9ebcaab0a7", "message": "Make window invisible in info.py\n\n\n\ngit-svn-id: d4fdfcd4de20a449196f78acc655f735742cd30d@1897 14d46d22-621c-0410-bb3d-6f67920f7d95\n", "proba": 4.0809845813782886e-05} {"commit": "07adce29d6704182137379d7ee42c535819bc141", "message": "@bugfix More gracefull handling of bad pipe input.\n", "proba": 1.0372980341344373e-07} {"commit": "55a6041483aba478e39914c2dfa95f4bae68197b", "message": "Fix redirect\n", "proba": 1.0542025847826153e-06} {"commit": "88bf1a1334ace4195eea5460c08b4ec7b1ff4358", "message": "added namespace validation to mir eval wrappings. #16\n", "proba": 1.6186159257358668e-07} {"commit": "fee4ec26f52c584faa0aa5e35de955972b7c56bd", "message": "fix: return a sorted list so tests can be deterministic\n\nTests on Maple were failing:\n\n```\n def test_retirement_for_multiple_users(self):\n user_retirement_url = reverse('bulk_retirement_api')\n expected_response = {\n 'successful_user_retirements': [self.user3.username, self.user4.username],\n 'failed_user_retirements': []\n }\n with self.settings(RETIREMENT_SERVICE_WORKER_USERNAME=self.user1.username):\n response = self.client.post(user_retirement_url, {\n \"usernames\": f'{self.user3.username},{self.user4.username}'\n })\n assert response.status_code == 200\n> assert response.data == expected_response\nE AssertionError: assert {'failed_user... 'testuser3']} == {'failed_user... 'testuser4']}\nE Omitting 1 identical items, use -vv to show\nE Differing items:\nE {'successful_user_retirements': ['testuser4', 'testuser3']} != {'successful_user_retirements': ['testuser3', 'testuser4']}\nE Use -v to get the full diff\n```\n\n`sorted(set(...))` still produces a list, and I guess we didn't care\nabout the order before, since it wasn't determined. So this should be\nan acceptable change.\n", "proba": 0.9999500513076782} {"commit": "d6fe619e4e19cbadfd970804bad4c3a21529f658", "message": "quit on unload signal. yaay!;\n\ngit-svn-id: 6db40d0534cac73ba019dccfebee869402ecad0c@1107 7a2bd370-bda8-463c-979e-2900ccfb811e\n", "proba": 9.24634969123872e-06} {"commit": "84eff918e2fc2a90670d53a1d125e0ab9d23776d", "message": "move onunload for mshtml so it gets called!\n", "proba": 1.113892551529716e-07} {"commit": "5df1f5528e2f6ccbb032e420b5b978e295eeb218", "message": "More general update for an Issue #421\n", "proba": 1.0350095180911012e-07} {"commit": "4c3658c487a833b03edf7d61b8e41b45023a6d81", "message": "pkyeg: temporarily disable problematic packages.\n", "proba": 1.1927119203392067e-07} {"commit": "e8c6c01e27b8d6f5e219e5f349835149b9ac78ac", "message": "precaution\n\n", "proba": 4.626758254744345e-06} {"commit": "2e06775617c47c11c32ced5518ca26a387240070", "message": "new import procedure for fvsaggregate and condidtion lookup\n", "proba": 1.2382410830014123e-07} {"commit": "64c241fe922e0c99f69f4be9b80a6318c38cffd6", "message": "limiting original UNION query results to only 1 result (potentially speeding things up in some cases)\n\n", "proba": 1.422602196043954e-07} {"commit": "d56cfbf87c01ac496200341a723ddcee88798a01", "message": "Add setup of default translator object so doctests can run when using _. Fixes #509.\n\n--HG--\nbranch : trunk\n", "proba": 3.593459894091211e-07} {"commit": "c0f2a9b9df8287f4ef3f5ac8af034c8cc9488019", "message": "Fixup\n", "proba": 3.4217864595120773e-06} {"commit": "73c4e585d99e91dd6d7aac90b3884ee2a63a35d7", "message": "[svn] deprecated util.get_lang was pointing to set_lang\n\n--HG--\nbranch : trunk\n", "proba": 4.2896499508060515e-07} {"commit": "4db28d9f8ae0c3ad22121226c1ec0b59f4258759", "message": "Update pylsy.py", "proba": 3.548155689259147e-07} {"commit": "613b21ca4daea15494c64dc9eec9c041db12a83f", "message": "Fix 0x LogFill event\n", "proba": 4.294813606975367e-06} {"commit": "36b632d6b52cc55387a4f64ae55de4931030dab4", "message": "small fixes\n", "proba": 3.433956408116501e-07} {"commit": "5bd6d9ec25d9ef43a6284563c96928a8607e1eb5", "message": "changed default tolerance in reduce_poly\n\ngit-svn-id: 4658502d6a5631d0681d7730b53f9627060b5bd8@140 78f3efd8-5644-0410-8aa8-f3833044bd4a\n", "proba": 1.0356518487242283e-06} {"commit": "cbb35e78ad68de2b185d48dc1bed9c7c12847a7d", "message": "random cleanup\n", "proba": 3.788344429267454e-07} {"commit": "2be52b044c3cc86781a2f5746a0c303827702559", "message": "Adjusted client output\n", "proba": 1.8358098259341205e-06} {"commit": "a4f00ca87c72c09909db790ddda30dd73e980457", "message": "temp fix for recommendations\n\n--HG--\nbranch : trunk\n", "proba": 1.530829933926725e-07} {"commit": "ad78e28d4537054a0d19643bb7efb1572dd4702c", "message": "Encode topic heading as UTF8\n", "proba": 0.9999963045120239} {"commit": "c3e3ec3e565bf5b54b10afbf1f0734a4899dfe93", "message": "Return only fields which are defined on the model AND in the form.\n", "proba": 1.0222237278867397e-07} {"commit": "e89ffbb2977215544d7d17dd4ae3758ba37a07a0", "message": "Don't repeat warnings\n", "proba": 4.3918262235820293e-05} {"commit": "ee8463660ab462bdf63995a0220b2b4d9ebb8acf", "message": "ignore waypoints visited after influence area of target waypoint has been reached\n", "proba": 1.262747417740684e-07} {"commit": "f3fd0202f182f5d41692e8583cf21ce1c2a7c8a8", "message": "Add get_simulation_timestep\n", "proba": 2.7939227038586978e-06} {"commit": "ed50dafb10b796a3c85fdad47e96781de6440a5e", "message": "fixed a bug in getMultiple where downloading layers with different sets of fields would cause the second layer requested to fail.\n", "proba": 1.0382778725670505e-07} {"commit": "c3dffbd9c67e3c03ba711272f55fdde8714cb051", "message": "Remove debugging print\n\n\ngit-svn-id: 305ad3fa995f01f9ce4b4f46c2a806ba00a97020@784 3777fadb-0f44-0410-9e7f-9d8fa6171d72\n", "proba": 0.003976726904511452} {"commit": "26d96e37bf76fd02b882e27b45e089bc397a417f", "message": "Guess encoding in \"try\" block because apparent_encoding() reads the whole content\n\nReferences #226.\n", "proba": 2.434046280086477e-07} {"commit": "d492bc3e412b74941697c59aa045dd344b63db63", "message": "passing interval to work method, not init\n", "proba": 4.746937349864311e-07} {"commit": "747d2563fd566a70420a04d3db209fffc813f147", "message": "fix docs/hash-tree.py for python 3\n", "proba": 0.00010990381269948557} {"commit": "2a7a7f1e821739f6268d83eace2e339623d0e349", "message": "Modified the nose plugins to try and avoid all the problems we were having with unit and functional tests. See docstring of module for documentation.\n", "proba": 9.64350448384721e-08} {"commit": "4af8675f69f1e48a37b98fcf1f60d90735627388", "message": "Print datetime before we fetch everything\n", "proba": 2.475231610787887e-07} {"commit": "34c0c6c73a65da3120aa52600254afc909e9a3bc", "message": "Remove unused main and unused imports\n", "proba": 3.546768425621849e-07} {"commit": "a87d03dca9ceb7a078e6038206d7d8f41a18863f", "message": "Fixes #51\n", "proba": 2.768680076314922e-07} {"commit": "ba418388df353637b31d23c6f2efb2a68e0346a9", "message": "Added regex to web.py\n", "proba": 3.173087179675349e-07} {"commit": "e4bf76337a2dee74b9c42a5a28e1c833bbaa3503", "message": "Adding day 4 input and solutions\n", "proba": 5.581302957580192e-06} {"commit": "b15c68543eaf5cc78f3395f1528b0e74a9b830e3", "message": "Fixed missing space while fixing the unkown_kwarg check\n", "proba": 3.7958702137075306e-07} {"commit": "bb1fd5e7110999d5b6de912d8a21f8c1cf3e18a2", "message": "Minor typo in docstring.\n", "proba": 1.5415480447700247e-07} {"commit": "bea0ead3dfcc055d219966c64437652c0eb2cf84", "message": "Update demo.py", "proba": 6.657530775555642e-07} {"commit": "8222c01d327b50a3d99320e1fee36315e7773baf", "message": "Beef up python magic test some more\n", "proba": 7.505828421017213e-07} {"commit": "2ebbe4d1dc74d5b1df2f1a46793d0305b23fa1ef", "message": "Debug\n", "proba": 1.9316410089231795e-06} {"commit": "897d4b9daa55c06ca71a9642a21d179a8c4352ae", "message": "init.py: Removed obsolete warning filtering\n\n\ngit-svn-id: 66fa1fecf8be0db4b7985ec55c14546f21eabb40@220 fccdda4b-c33c-0410-84de-61e1e3e5f415\n", "proba": 1.2471679156078608e-06} {"commit": "93b23628f2ab0025fca8bc5a90869694b5bac679", "message": "Distances must always be positive...\n\nModifications to roboclaw commands so that target velocities are\nsigned, but distances are not\n", "proba": 1.509783800202058e-07} {"commit": "f58f9aea1b123b54f6a024c452810497b348eb8a", "message": "fixed stupid bug in stage proxy service, still can't test locally so sorry for all the commits\n", "proba": 1.306007249013419e-07} {"commit": "902f683018a55afd711a7b1480896fe874ebbc98", "message": "creation of class waiting coffee, Command and ThreadedServer\n", "proba": 1.150970021512876e-07} {"commit": "1ca6ccb50992836720e86a7c3c766a5497cf7588", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "55a66f73e944b7ff92489f368e01fcbc6d9dd92e", "message": "image: Cleanup\n", "proba": 0.9999788999557495} {"commit": "3ee7ba5e1331206ebd9d27efc40208897605127c", "message": "Fixes for addressing\n", "proba": 1.3108525820371142e-07} {"commit": "2030e8f1aaee3ecd5c65c2f747aa5b2dc117ef7a", "message": "Silence positional argument warnings from FCM multicast sends (#2760)\n\nCo-authored-by: Zachary Orr <4676432656499e8aa62fd80e9b33728af0f2dfe8@users.noreply.github.com>", "proba": 1.403761444862539e-07} {"commit": "ba746bbd69ff40dc6fdb7d9a5f51258b2c12b45f", "message": "changed missing field value error message\n", "proba": 7.317077574953146e-07} {"commit": "2686376f1a1fc5a372e417aad7c1235df7f0ad68", "message": "Expected result should be ~decoded~ string (bytes).\n", "proba": 0.004071108065545559} {"commit": "bfc9dc6488a27e11c19df76ba084eb726663b46f", "message": "Add endpoint_name option to generate efficientnet model with specified output tensor.\n\nPiperOrigin-RevId: 271190117\n", "proba": 0.00010381004540249705} {"commit": "f23a94a192058a55af56ce923554f8fd7f878724", "message": "if berhubungan not None, and add Instruksi template\n", "proba": 1.3425623137663933e-06} {"commit": "7b387a0229536ce027dcff6a55704e01bf0c1822", "message": "EBM refactor (#68)\n\n", "proba": 1.353198797460209e-07} {"commit": "63d12d7a0e39c9e7ddef70d8805f24035b4d0766", "message": "WIP symbolic\n", "proba": 6.096629476814996e-07} {"commit": "96874725b98ad0f2944cbb81f154e4f46819bd61", "message": "qmsk.e2.web: fix non-integer preset id\n", "proba": 0.0008197883144021034} {"commit": "87c5f917d9e04a7280dfe11915bb59a566dc3aeb", "message": "removed interval from daemon init\n", "proba": 5.003290652894066e-07} {"commit": "760c04d53fd2d538033d0a11b3702499bf9f132f", "message": "don't have quadpy-optimize hint more than once\n", "proba": 2.5264304781558167e-07} {"commit": "a5a69c89d20a7436f2ea3b4e76798b54f4611615", "message": "Slightly clean up derived arguments\n", "proba": 5.004970375921403e-07} {"commit": "207d04023e86de0bb6f9e40d9784ea33eaafa019", "message": "WIP: Draft of is_lost checking in MPD Player\n", "proba": 2.2490625894988625e-07} {"commit": "e6deb771cebb32b87d982db44ee2ebf225be97ac", "message": "Added non-blocking delay to send commands to allow them to complete, fixes issue #27 and issue #29\n", "proba": 1.334075676595603e-07} {"commit": "85af86d617169b30138df10df85b6c6e76da785c", "message": "Ended is finished now\n", "proba": 1.3721746938699653e-07} {"commit": "58d6f1c6d3c8850a27c5fad57ada90e20de23a94", "message": "QuickMagic fix bug where drop down menus fail after adding site/location \n", "proba": 2.400069831764995e-07} {"commit": "666139c996e5c6e6d5c540858cdd2fbf5b6a0e58", "message": "datalab moved helpers.convert to helpers.utils.convert\n", "proba": 1.40311012728489e-05} {"commit": "6b3f23424cfa4f164f33cfdc0ab44fa26ab22a9a", "message": "Pylint cleanups\n", "proba": 2.798077503030072e-07} {"commit": "1320028a8bd56cfb5b9da08ce6753a00dcc287ef", "message": "\"TODO\" comment removed\n\nThe print statement was suppressed and the TODO statement was no longer necessary.", "proba": 5.153482561581768e-06} {"commit": "aa6a72c419846bc9d1ae5d8f114d214cbc2be60c", "message": "Fix randomize without cache\n", "proba": 4.621003881766228e-06} {"commit": "aa92a8744195a6ce2a44b5e24535764ca771bc7b", "message": "add links\n", "proba": 3.210802788089495e-07} {"commit": "5ecb2a68affeaf0153622a4d25251bdbdf8dce37", "message": "cambios\n", "proba": 5.796223831566749e-06} {"commit": "29d3f5ae70828394e629c91bbfd08e02ca3726da", "message": "add # pragma: no cover comments\n", "proba": 1.5739894934085896e-06} {"commit": "2af54972ebe79f4e9b70c4c4902497a363de9e34", "message": "Revert unrelated change regarding related fields\n\nRemove attribute use_for_related_fields in SoftDeletableManagerMixin.\n", "proba": 1.051743723223808e-07} {"commit": "21315cda4408ba94de95c83508d98e6dae0f7252", "message": "fixed bug that occured on extending netcdf time variable", "proba": 2.0639720332837896e-07} {"commit": "f16d438cba7e85159b9b0c8dc954d98bf9d60489", "message": "Update genetic.py", "proba": 7.48242939607735e-07} {"commit": "072bb9a8f23b07c2abaaa9acbf798f2ae4aa16a6", "message": "chg: dev: cosmetic re-indentation of doctests\n", "proba": 3.773247669869306e-07} {"commit": "bf92a4236fbea3405500271eb022612e51e61206", "message": "Header of the Python file\n\n\tmodificato: easyjson.py\n", "proba": 4.64712638859055e-06} {"commit": "bd55d0abc8e9562c4a0c21440c2b6f452b83c0da", "message": "Blacken\n", "proba": 2.6515324407228036e-06} {"commit": "75cffd9728d2b05c1ad052af77fffe4fed2465c4", "message": "Fix for tensorflow v1.1\n", "proba": 8.312529189424822e-07} {"commit": "f5d0df9438ff41981b92bb738191bda2fdf5e7a9", "message": "cambios\n", "proba": 5.796223831566749e-06} {"commit": "b6c058e50b715dd8ef32d6929a510175ae11c129", "message": "fix merge issue\n", "proba": 7.938294857012806e-07} {"commit": "aa8e51fc8ad969cd04098a5714ff78092b35f58f", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "1b4776ddb6ca0f30e4b61393ac37a8f44cfb2af4", "message": "fix auto-discovering db config\n", "proba": 2.1987395939504495e-06} {"commit": "10cfab51de5c7203316b75c3db82e245ffff31d6", "message": "Long-term test\n", "proba": 5.258062628854532e-06} {"commit": "d86bdec5d7d57fe74cb463e391798bd1e5be87ff", "message": "Update Ghana code to match current Pombola\n", "proba": 3.2133974059433967e-07} {"commit": "b0bacb4d44d3991e0714fd637fbf19eb84c8c474", "message": "Don't retry indefinitely if VM fails to start - give up after 10 minutes\n", "proba": 2.1994598853325442e-07} {"commit": "6ef978bbf76b71a7416ee9d0403153d49e93d845", "message": "Python says that it's better to try than to ask for permission\n", "proba": 1.3149120832167682e-06} {"commit": "a5e1cf243d37b67a4b11260363fc16564ef8bfeb", "message": "cloud_libvirt: add qemu-guest-agent address discovery\n", "proba": 5.301655505718372e-07} {"commit": "69f2618ec6acb5de8abb90780bdbe4558073aca3", "message": "syntax error in docs lookup\n", "proba": 3.72647207314003e-07} {"commit": "a50c914d1f90a00dc8b4de59a6c249be670136be", "message": "Add badword and informal related features in comment parsing of wikidata\n\nBug: T170834\n", "proba": 1.5994426405541162e-07} {"commit": "6cc8b9faa622225a2bcafea0356645817d124261", "message": "Fixed DGL layer", "proba": 3.302983202502219e-07} {"commit": "a134d553cf15ebbe0dbf1617aebc8b54e39b277d", "message": "Only raise 404 when content is None (#415)\n\nThere are valid scenarios when `content` can be an empty string. For instance,\r\nthis may happen when there hasn't been any translations made to the file that's\r\nsupposed to be downloaded.", "proba": 2.0640941045257932e-07} {"commit": "9b75fd09220e61fd511c99e63f8d2b30e6a0f868", "message": "stop using deprecated assertEquals()\n", "proba": 3.3722039916028734e-07} {"commit": "c332d27c0f403847dcc4056c1b890ea83fafc3aa", "message": "refactor(apng)", "proba": 6.1364862631307915e-06} {"commit": "5944c2f8b10af3f21ee49974a4286ff70dcc4f3d", "message": "Lower log level for expected condition (#10825)\n\n", "proba": 1.4469934228600323e-07} {"commit": "a309a935b41ed249985882f64f9bc277b8576bd9", "message": "Update analyze_nir_intensity.py\n", "proba": 2.2652509414911037e-06} {"commit": "0fda04757dcbdf964e6d6a502df212f89e99db82", "message": "1. Bug in NOT_LIKE was fixed; 2. Remove unnecessary new line after EXISTS (...)\n\ngit-svn-id: cc65bc9ed7fa717314bc8890b6f123117eea230e@1569 698dff77-f410-0410-8918-cf622e150f36\n", "proba": 1.071707970368152e-06} {"commit": "9e912939fc787e0457e814758f958777743ce25f", "message": "Cleanup of Polyhedron test mesh\n", "proba": 1.4924306412922306e-07} {"commit": "7293ded2f6713bf2792ac09479424f8bbe7f8ed0", "message": "fixup! Expose container_id in mine.get_docker\n", "proba": 4.570116232116561e-07} {"commit": "cc12869c7cfcc5062ba50af95966ffdc40d9de78", "message": "put in an implementation\n", "proba": 3.899663454376423e-07} {"commit": "9f19b43e146c085d4a7dfadeede0c48c1d33eef3", "message": "No idea why, but git says all lines are changed.\n", "proba": 1.2168555940661463e-07} {"commit": "06acac87912540ba275d0baafc84bee81a1e0fa4", "message": "Small refactoring of Item.generate\n", "proba": 1.340690459983307e-06} {"commit": "605b1962dee18971a227702e53512bc702c0df28", "message": "Adding plasma storage graphs\n\nChange-Id: Ide00b5141fe5afe16d24c718e4441066038ee2d9\nReviewed-on: https://review.couchbase.org/c/cbmonitor/+/171257\nTested-by: vikas chaudhary \nReviewed-by: vikas chaudhary \n", "proba": 8.082243994067539e-07} {"commit": "f8dd02fddb0716e5b1585c51672527a8e880bd43", "message": "pep8 fix\n", "proba": 2.8706645593956637e-07} {"commit": "6edbaa5fb7648aea2de4517c660754c78e7a2baf", "message": "Make inference parallelism a parameter.\n", "proba": 4.316795184422517e-06} {"commit": "76d8f5169c2c8aee31ec3313055f69e05326839c", "message": "ui: aggr duplicates bug fixed. more readability.\n", "proba": 1.0508775005746429e-07} {"commit": "689dce36f45f76ed53ff9c6b826e1e6bd256adb8", "message": "Better WebSockets error handling\n", "proba": 3.459295498942083e-07} {"commit": "501a4ee84e205a2e35124b5d46132899c1ce44ae", "message": "Update function signature for consistency\n", "proba": 2.250592388008954e-07} {"commit": "55fcc155382b0758119a326d0b5d13bfb032e324", "message": "Updated misleading/wrong comment\n", "proba": 2.3121386050206638e-07} {"commit": "14db945e40a3b36e196e955939086648c24e669a", "message": "building stock: relax accuracy requirements for population\n- may need to be further relaxed, depending on expectations/requirements\n", "proba": 1.2358378853605245e-07} {"commit": "fa6c5ed6c06aa97bd217402c42e13828613f7e0a", "message": "see #470\n", "proba": 1.5436886258157756e-07} {"commit": "a1fd0b385fc19d380e55652887ec97998339f959", "message": "Fixed some bugs in archivefs.\n - Mode must indicate both a file and directory.\n - Cannot use getsyspath() within _delegate() without recursing infinitely.\n\n\n\ngit-svn-id: 74b2def6592cf29d88d1a5d33b5c4a2732d8507c@758 67cdc799-7952-0410-af00-57a81ceafa0f\n", "proba": 9.542479347146582e-06} {"commit": "aa5c5c77d93f8c7e55609bb64a5c1a22f889c728", "message": "error handling for missing/invalid key\n", "proba": 9.956586382031674e-07} {"commit": "0b08267a749ae1309e8443aa81d55d7b89163c21", "message": "Formatting changes. Tests currently fail due to tolerances.\n", "proba": 1.051087963332975e-07} {"commit": "84931a659fd173b5cdfdf044740ef3a15bde04a1", "message": "Fixed some bugs in archivefs.\n - Mode must indicate both a file and directory.\n - Cannot use getsyspath() within _delegate() without recursing infinitely.\n\n", "proba": 1.1725666837492099e-07} {"commit": "7a7e66a5be144854099d5ff463fb13944110e752", "message": "Revert \"configure Flask-Login to remember logged in users across subdomains\"\n\nThis reverts commit 45005e5a3dce00a601808a6cf422da0e1b29cc9b.\n\nMore complex than expected, need to deal with multiple sessions in the\ndifferent subdomains now.\n", "proba": 1.2151949135841278e-07} {"commit": "b631b675f8875813a25c73005df516099e4a491e", "message": "\n\ngit-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@631 67cdc799-7952-0410-af00-57a81ceafa0f\n", "proba": 7.467858154086571e-07} {"commit": "7715f5ac5eac9e9915b9f7d2f46166202d5801a3", "message": "Adding debug to elements\n", "proba": 6.26953692517418e-07} {"commit": "bce19fd89fc82f2d18bd1cc210d94255800a2d5c", "message": "Use relative import for Python 3 support\n", "proba": 2.3584252062391897e-07} {"commit": "d01d3bff5672eee9a2c8322fd9711426fe760ca5", "message": "add convenience functions in rack model\n\nadd url photo and source methods in the rack class to simplfiy templates\n", "proba": 1.1639610875135986e-07} {"commit": "96f9e225a8b490bd93e016ed42dfb133290a47f5", "message": "add test\n", "proba": 1.7454851786169456e-06} {"commit": "11366838f9ce6b046f30171bd56646a8455cd640", "message": "Attach cache_key_reg, packer, unpacker to deco function.\n", "proba": 1.1177340297763294e-07} {"commit": "95e32115ec157d9764dd96b693bfe730929b76f2", "message": "Add shortcut imports\n", "proba": 2.125094397342764e-06} {"commit": "9c1ebaa69f0f16f511b2c1af7efcfc8ed83d6b24", "message": "Updated POST, PUT, and DELETE To conform to new group regulations;\n", "proba": 1.0462535726674105e-07} {"commit": "2c755c8c91f1c7c1eddffaf40649535fd6aebd2a", "message": "TimestreamWrite: add regions (#5674)\n\n", "proba": 3.5282812405057484e-07} {"commit": "916ab3f1eb0bcf2e055f5d6fbf6cbd08719af308", "message": "Places raw strings in a constant.\n", "proba": 2.2620276922680205e-06} {"commit": "68d786d2c1319141c06994b4f373258e24d9922d", "message": "Gotta catch them all...\n", "proba": 1.2204304766783025e-07} {"commit": "34ec9593df7fea66224563356bd5ddd7abb08e78", "message": "Remove extraneous param from create_template\n", "proba": 2.4617804683657596e-06} {"commit": "8630a9cb61f8da784cd82ff7ee12e02e9b780a75", "message": "Debug Create Service URL\n", "proba": 2.415083599771606e-07} {"commit": "7ffb9d6c7803152a282858f88f24bd7a796563d0", "message": "Plotting of background subtraction\n", "proba": 5.384044357015227e-07} {"commit": "3374ffc72f06e48443cff5efaa11d144f53d1ba0", "message": "Disabled a failing `contrib.nonrel` which I'll fix later.\n", "proba": 1.0677705120087921e-07} {"commit": "249cc4954010e93b433c5ffbe1e5e06bac12a773", "message": "[#60] Revert previous \"improvement\"\n", "proba": 1.8329463102872978e-07} {"commit": "1b7194478742c7f1dc9753af4a477e74791ef65b", "message": "resolved a python 2.5 issue\n", "proba": 6.684628260700265e-06} {"commit": "ea85a91c8a16267231bcf5565a0ba33bcc5f81e1", "message": "Documentation.\n", "proba": 1.830360929488961e-07} {"commit": "fb0388be99d8836d8a97b0502a1f493a720e9fef", "message": "Update indices.py", "proba": 1.1189567885594442e-06} {"commit": "a149563ac5700949bcb6b94c73044fa23d01a41d", "message": "Monospace: assert panose.bProportion is 9\n", "proba": 0.9999992847442627} {"commit": "b23e93a996f1e769dd64050c35b093275d6b9386", "message": "Update Kitsu service\n", "proba": 1.3776201512882835e-07} {"commit": "6a500569d34c47acab35ff6bf67629b1ebb5f0e2", "message": "some trimming of the skyview plot so it fits better in the page\n", "proba": 1.2435165785973368e-07} {"commit": "97a8a349d26b364e57aaac6f8d920770810aa8d8", "message": "Correct localized strings\n", "proba": 0.9998865127563477} {"commit": "ca2a6d06f09f5f2d511d6cf676fdd9a8f6c411cf", "message": "remove cruft, bump heroku\n", "proba": 2.3676737725963903e-07} {"commit": "b5eb29f478d4103c735bd20439551a35fccca5ce", "message": "bssid analysis\n", "proba": 4.951007213094272e-07} {"commit": "6e06ce0e8a01b34fab94bfaf8f0894b3acabe039", "message": "Now allow events to ref scripts from diff. areas.\n\nNpc events can now reference scripts located in any area.\n", "proba": 1.0336620448470057e-07} {"commit": "0d267d97fee25dd9b592f03bf0e73c41f6c737ef", "message": "Fixes #2075: Enable tenant assignment when creating a rack reservation via the API\n", "proba": 1.2660804316055874e-07} {"commit": "5526f8e3dca2f84fce34df5a134bada8479a2f69", "message": "Fix dumpdata ordering for VRFs\n", "proba": 3.838022450963763e-07} {"commit": "9fbc634e149b2958cac7b2ab74bf33daa5595da2", "message": "Fix MultiGraph() docstring to reflect input flexibility\n\nThe existing documentation on the MultiGraph() constructor function says that it can only take \"an edge list or a NetworkX graph object\" as well as a few third-party formats. This isn't true, since the data is just passed to the to_networkx_graph() function, which can actually accept a far wider variety of input formats - including dict of dicts and dict of lists.", "proba": 1.456339487049263e-05} {"commit": "d1b6a3d728a60244706b78b2622535b422b15206", "message": "add. rate aggregator for blocks. pep8.\n", "proba": 1.2285136108403094e-07} {"commit": "e0c046abe14d7666d9fea54dc0339579f2b0ba98", "message": "Fix indentation\n", "proba": 0.0172440055757761} {"commit": "0ff23013dcd9ec74e5a428de72fdbf8234723227", "message": "Retrun the bookmarks saved during the last 365 days, starting from the date of the most recent one.\n", "proba": 1.2754726697039587e-07} {"commit": "29c7e28e56e6affb60a71364a0e55ad47baa0952", "message": "Add dependency for number of posts on archive pages.\n\nAdding new posts should recompile the archive pages, if they are\naffected.\n", "proba": 1.1444509340208242e-07} {"commit": "f61c71e885778c477a67356d7cf193675a9969f3", "message": "ENH: interface to use spm_coreg to calc transform\n", "proba": 1.9666761374992348e-07} {"commit": "e5daf5df6363288ce741062183d0fa24fd9cf4a1", "message": "Instead of invoking Popen, use CommandLine\n\nCommandLine already uses the default encoding to decode the\nstdout/stderr of the command, so take advantage of that functionality\nrather than re-implementing.\n\nFirst try was to implement decoding pattern seen elsewhere - then I\nchanged my mind and used a CommandLine object from the interfaces.base\nmodule.\n\nFirst Attempt\n-------------\n\nDecode the stderr using the default encoding\n\n* Fixes TypeError bug for PBS jobs running on python3.x\n* Fixes issue #1959\n\nSecond Attempt\n--------------\n\nUse the nipype CommandLine class instead of Popen\n\nRemove unused modules\n\nIgnore exceptions in qstat CommandLine call.\n", "proba": 2.9529812195505656e-07} {"commit": "cf5a9c73160a177c44db8c3973a6b973acc8362d", "message": "Add back an add target stub\n", "proba": 6.841666504442401e-07} {"commit": "1a482e9df8488044fc93d8478eea73701ea8ec67", "message": "Run Flask in separate process\n", "proba": 3.7917456552349904e-07} {"commit": "3e1b0f268cdb56a2d363390bd5bb438caa442e28", "message": "Use partial\n", "proba": 1.3664214293385157e-06} {"commit": "873613828d05baa5d0370d58d8a7c8a920ddeb38", "message": "Modified predict.\n", "proba": 1.7910341512106243e-06} {"commit": "fe0691595eea7197db07f3505446e1553df3d188", "message": "Bump version number after merging pull request.\n", "proba": 1.11918254219745e-07} {"commit": "4e74ba40f442dd27ddd29464b518c2a06ad1019a", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "edc57b75e6be704dc4a936ece04dbd1b817a7fd5", "message": "Detects extraneous data from given dataset\n\nDetects outliers from the dataset with respect to large variations AB Magnitude in different bands of a particular spectrum.", "proba": 5.673483087775821e-07} {"commit": "bbf5ba5b87acb4a2dc858b15030eef8abae6b52a", "message": "Can't raise a string\n", "proba": 0.9999994039535522} {"commit": "046e6980a2f22573d085395db08783913b81e97e", "message": "Yield match's name\n", "proba": 1.6455686591143603e-06} {"commit": "7a14b44e2a50030a9a045d94c0d3c3ed3ce150e5", "message": "added auto reporter assignment to theft-reports in REST api\n", "proba": 1.2282183092793275e-07} {"commit": "6011cf6d892d4ca941c47b578fdaebc80672f532", "message": "Raise an error if the run was cancelled.", "proba": 2.84749660295347e-07} {"commit": "de77da3ea6a40d6685d702a564155de01646274f", "message": "framenet.py: full-text annotations, pretty display of POS tags, entry point methods for annotations\n\ninvolves new classes: LazyIteratorList, PrettyLazyIteratorList, and PrettyLazyConcatenation", "proba": 3.1394620236824267e-07} {"commit": "74d877abfad21b8d2865ac2491cbd1babb5fd82b", "message": "Make sure if this pattern needs repeating that we do it properly\n", "proba": 4.203769208288577e-07} {"commit": "14e4b5e031934b6d75427f037a5cecff9cc1667a", "message": "Remove check for creating a draft from a registration. Already taken care of when get_node is called.\n", "proba": 9.907354581173422e-08} {"commit": "b6dc48b9a5a875024d0550f8f766cd471b07f219", "message": "Removed some testing code from bin_of_week.\n", "proba": 1.1888258200087876e-07} {"commit": "580c133c09758050aae30ae3aa453ce3c5b22e56", "message": "refactor python\n", "proba": 0.9999828338623047} {"commit": "863d60f458fc0d3c1f29324c89509983b9898b2f", "message": "fix list inputs not parameters issue\n", "proba": 2.6931106731353793e-06} {"commit": "b7b3279a9914f39ae839ce456827cac366318896", "message": "Factor out update, initialization logic\n", "proba": 5.776573016191833e-05} {"commit": "d262df36b9d898f68acb84ec019e34cf66dacddf", "message": "\u30e9\u30f3\u30c0\u30e0\u306b\u8aad\u307f\u8fbc\u3080\u3053\u3068\u3067\u5b66\u7fd2\u7d50\u679c\u304c\u6539\u5584\u3059\u308b\u304b\u306e\u304a\u8a66\u3057\u7248\u3002\n\u7d50\u679c\u306f\u5909\u308f\u3089\u305a\u3002learning_rate\u3092\u4e0b\u3052\u308b\u3053\u3068\u3067\u6539\u5584\u3067\u304d\u305f\u3002\n", "proba": 2.2655719078557013e-07} {"commit": "9c03df30fc70fac44e49ec579cb54498a4f52dbb", "message": "Fixed bug still refering to jaccard index in overlap function\n", "proba": 1.4109768642356357e-07} {"commit": "4b0d4a8868204e8cc794669f8a51a9a4fd017c89", "message": "Implementing xpath RPC helper\n", "proba": 7.2333210709985e-07} {"commit": "343fa1849457202a393ccfdc5b86075cc1b0b88c", "message": "add observables\n", "proba": 0.002089673886075616} {"commit": "c437019a887ac3ffca9871d4b3aa8d3428f9736b", "message": "Reorganising and fixing constrained integrator classes.\n", "proba": 1.1543271227765217e-07} {"commit": "79897d7c14f2bfd4137b04038f1e073a247b2168", "message": "[delete doc] delete a list of docs\n", "proba": 5.285357019602088e-06} {"commit": "aa7bbd84fa16105417ceb7f9e06d392a4e54fdc6", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "3ae96c7dfd0ee906c4ba24b0afe86eecc48c0668", "message": "unicode errors and databases without samples\n", "proba": 2.690879910005606e-07} {"commit": "d45defc9f55a3a7f4f23c61d34bcf95fe81c4f5b", "message": "clean up docs\n", "proba": 5.315066005096014e-07} {"commit": "d962ff9bbd3ec199b2ca0dd0742ebbcc69cd6c03", "message": "Releasing 0.4.28\n", "proba": 3.495745772852388e-07} {"commit": "d281884aeaf040fa86f5b3b9599bddf70bb76611", "message": "parser: Parse arg lists in for statements\n", "proba": 1.2261391475476557e-06} {"commit": "36af0f7b24233228e31c3c2ab5b8c66204525aa2", "message": "Update projecthoneypot meta\n", "proba": 2.7555276460589084e-07} {"commit": "0247a9fe805594185626ee4968c55852d1e28fc6", "message": "core now uses declarations and defines the numpy backend\n", "proba": 1.2790489734015864e-07} {"commit": "3867bffcb51083f23db82ed00ef8abe94949f875", "message": "parser: name of pointers and fields for struct printouts\n", "proba": 2.89721896251649e-07} {"commit": "f59da23fc66c24759d202ca30d6c407954db757c", "message": "fix openbsdservice\n", "proba": 4.14714559155982e-05} {"commit": "515b2fcc156b9e0252e5bdb29670495a1cc1676e", "message": "Improve read group set generator close #1316\n", "proba": 2.6910748829322984e-07} {"commit": "c340c1b92a3d82a25ce2e43b19603ee58de0b146", "message": "Improve celery logging\n", "proba": 4.790441380464472e-06} {"commit": "d4a89c2a2400e984bd74c27cc9bf5cb5222f8226", "message": "Adding a waiting time\n\n\nFormer-commit-id: ef7a7c964c120687864d0cc11b0a3ee86bf802bd [formerly ef7a7c964c120687864d0cc11b0a3ee86bf802bd [formerly fa039394e7a3bd61548444155c8fe376f5f5e042]]\nFormer-commit-id: 4b6a67d0de3522a3b6d21283ff90df6dc30d40af\nFormer-commit-id: f1e804b1e900277fbb990a51c273efa3fdbca37a", "proba": 0.9999526739120483} {"commit": "acd4229efaa2dd05a339dec8c9c571f9126e9b43", "message": "minimizer: fixed vanilla energy count bug\n", "proba": 3.4510543400756433e-07} {"commit": "dcd02084ce08176347d954e54053539d17dba715", "message": "new download functions and other improvements\n", "proba": 1.1289720447393847e-07} {"commit": "8414668c97c359a39cf96a37819cb7e37b54c670", "message": "Fix new Pylint\n", "proba": 2.5164534235955216e-05} {"commit": "5859e7102654e016dd836e2cb9428f5b2daac35c", "message": "Support mixing generic and non generic inlines\n", "proba": 1.4914061807758117e-07} {"commit": "d786d0a0fe612d5c9d4782d5896dd887a084fbaf", "message": "Tweaked tigerdile URL regex to allow missing trailing slash.\n", "proba": 1.0902747504815125e-07} {"commit": "37b92516cfdc35171efbf7fa011460cdb6d6fe86", "message": "\u0424\u0438\u043a\u0441 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0430\u0432\u0430\u0442\u0430\u0440\u043a\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u0433\u043e\u0432\u043e\u0440\u044f\u0449\u0435\u0433\u043e, \u043a\u043e\u0433\u0434\u0430 \u0433\u043e\u0432\u043e\u0440\u0438\u0442 \u043d\u0430\u0440\u0440\u0430\u0442\u043e\u0440.\n", "proba": 7.496500415982155e-07} {"commit": "7507250148bedb2dfa1767330b7da327a7710a4b", "message": "Cleaning\n", "proba": 3.396809916011989e-06} {"commit": "a1f77c93704fa7294c42bd0eb0b361165fad2637", "message": "Fix spelling of file.\n", "proba": 6.477528950199485e-05} {"commit": "8433323b2bc8f5bc4489826cbda52195490eb50b", "message": "Fix URL for ez_setup.py script\n", "proba": 3.502530944388127e-06} {"commit": "51e2237a35dcfc9872d985b270fd09fc6254cd12", "message": "Update rasa/server.py\n\nCo-Authored-By: ricwo <4c5882e218a344c6b88075675f2e61ce609cd98e@gmail.com>", "proba": 1.1714020331510255e-07} {"commit": "5cdf7357c6cd459d51296c1e1d4b4f427f13b6f2", "message": "Reorganize code, make description.\n", "proba": 1.3862116929885815e-06} {"commit": "8e3f8774014a3d07a4590c137954b81943830593", "message": "Added TODO to fix imec mode\n", "proba": 1.4038042195352318e-07} {"commit": "03f8dff5997c5187294598a1efe7ee7aed4c7ba6", "message": "map dimensions stored on the map generation\n", "proba": 2.2888569617407484e-07} {"commit": "79bd750f3fc15b3c50b416c9f429d59a32771d4d", "message": "\u0418\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0431\u0430\u0433\u0430 \u0441\u043e \u0441\u043b\u0435\u0448\u0430\u043c\u0438\n", "proba": 1.123142396863841e-06} {"commit": "c8df242ed423717891f5b5fcd061cf702990c362", "message": "MOX-197: Fix serialisation of unicode values to XML\n", "proba": 8.426744898315519e-06} {"commit": "a2c6ee3313a52311b804a9e47a1568206a45add2", "message": "pmatop.py: make exception more specific\n\nUse OSError rather than Exception for last change.\n", "proba": 1.1501262520141609e-07} {"commit": "29db0d301eef525c676a7aaae433e1729ea63018", "message": "Removing space at end of line\n", "proba": 0.00010425337677588686} {"commit": "fae195bc06fab7d8a5ec97d76a2293a9a3805535", "message": "empty dict if gap sizes file is not present\n", "proba": 6.08064397056296e-07} {"commit": "9ff5f3ee16fc29eb12a8661b79b72e68b50e4a44", "message": "Bundlebuilder list_files: Better error handling #635\n\nDon't fail on trailing slash of the directory name\n", "proba": 1.656940185057465e-07} {"commit": "92b8939055072a5461284e8f33ce7724544a5f19", "message": "Remove NotAttachedError from hoomd.operation\n", "proba": 1.505575255578151e-06} {"commit": "771860a6a9176dc6627f25f5faac960ab3edcc50", "message": "add expand user\n", "proba": 1.7901700175571023e-06} {"commit": "e3402325eb7337fcf207d4bc3abf2bb1a3d8ad0c", "message": "added loc check\n", "proba": 1.7032134280725586e-07} {"commit": "b2e996f62694841438117c05741514c3dd874905", "message": "export slight reorganisation\n", "proba": 1.9269347717454366e-07} {"commit": "fedb4f726ce795c3d22c96a020569c1a29b448ff", "message": "fix #876 xsd:normalizedString", "proba": 1.020845729726716e-06} {"commit": "ff4ebc169392d8768cce4be39765682dbba64e8f", "message": "game/spells: Return a Glyph() in Spell.getGlyphLearned()\n", "proba": 0.00028065856895409524} {"commit": "6cb788193fe7f68f419569d5a6db607bb548dde7", "message": "Minor DLM edits to optional arguments and usage information; removing a couple excess print statements.\n\n", "proba": 9.859209626483789e-08} {"commit": "4152eb9715b9d5d6ceea7b2f86176149e8ab11d0", "message": "Added CardAction class\n\n", "proba": 2.576871622750332e-07} {"commit": "8d6bb6ae85a60d9e498e5fab67d485abf4e83417", "message": "ignore warnings regarding partial indices on postgresql schemas\n", "proba": 1.4865695163734927e-07} {"commit": "49bb1568fbbd39316ef1d9775a0407a142e6c8d3", "message": "initial location agnostic PostalAddress model\n", "proba": 4.178611732186255e-07} {"commit": "8f2e3a575feeeb04cccd781b42531a1bf3ab037d", "message": "added NotAttachedError class\n", "proba": 1.9596384959186253e-07} {"commit": "375e644883c27e096dd918191d0d5530b26d44e7", "message": "BRANCH 4.4: more small fixes\n", "proba": 2.852181921753072e-07} {"commit": "b1597cf3ecc3016ee32548e75ad26bc8a16820d0", "message": "Postgress\n", "proba": 4.577213985612616e-06} {"commit": "e854a13c8fe7a029d413a884d6760dc602a5e01a", "message": "Status check covers authored logic - removed complexity.\n", "proba": 1.123944457503967e-07} {"commit": "9d7a8514abe0058c8e83930771259baf41655a1a", "message": "support for nested references in object schemas\n", "proba": 2.1440513364723301e-07} {"commit": "809fe44b43decc6f271d3eedd1f637db4149f24c", "message": "Added a __raw__ parameter for passing query dictionaries directly to pymongo", "proba": 1.18057755571499e-06} {"commit": "217e453a68dbec38b9c178dad7e088f6030dfbed", "message": "Fixed a few spelling mistakes in a docstring", "proba": 0.0001657616376178339} {"commit": "5e09ef98f9a9f515cb9a2ab4b70b26230e9a06e8", "message": "Added update flag to PipelineSaveCbk\n", "proba": 1.791644166360129e-07} {"commit": "9e6dc8e6a199d9771dd47bff8eebb91233fe3d6e", "message": "setting timestamp as index for dataframe\n", "proba": 1.4348802324093413e-06} {"commit": "64cecfb1ada97d1aeb5987289772fd2200da78d7", "message": "fix creation of view\n", "proba": 4.035626375298307e-07} {"commit": "f7e98026c1c5ecbc6e4aff175621d443fa37fcf2", "message": "Change isinstance(x, list) to isinstance(x, Sequence) -- when linen freezes module attributes, it converts lists to tuples.\n\nPiperOrigin-RevId: 489353347\n", "proba": 6.49628645987832e-07} {"commit": "0623e40d339f6980e57526fe76849af03fb2a1d2", "message": "Apparently some funcs are passing tuples to cmd.run_*\n", "proba": 2.9200032258813735e-07} {"commit": "bf343d7d1d4774cd0e75dfd8afb50569f0856660", "message": "Refactoring code\n", "proba": 2.8780677894246764e-06} {"commit": "d379c2bb9076f12f75517cb431a54a4d77f47009", "message": "Sectional returns in Async\n", "proba": 3.487820663394814e-07} {"commit": "7ebdf23890e83ffa45f75cf35c53c350288b8a38", "message": "Finished constructing note for check-in\n", "proba": 1.1868095128875211e-07} {"commit": "f320654e5fdd26e72fd5310e114e103f342521ad", "message": "[defaults] fix typo\n", "proba": 0.0002472797641530633} {"commit": "df29769bf3eaca1de2fdc9da2ca5d0c3a75ebdad", "message": "add two new functions: repeatBands and arrayNonZeros\n", "proba": 0.9994407296180725} {"commit": "d304bfbf02382f766db667a5748c85823d985058", "message": "detselect no longer has an effect. replace with msg.\n", "proba": 1.3970623058412457e-07} {"commit": "1eb5fc24571a4a4efce3450b86be0f2593a067e5", "message": "BRANCH 2.4-DEV: more dev on image gallery\n", "proba": 1.0294947117017728e-07} {"commit": "3754945a48c8e3207f67a152b77f30d975e4c43c", "message": "Refactoring: non-public function name changed for clarity.\n", "proba": 2.609065177239245e-07} {"commit": "06a648614d51e2c9f456a33dc164c11021c724a8", "message": "Handle adding to WHERE where WHERE already exists.\n", "proba": 1.48960793922015e-07} {"commit": "9b18db54d64e168231079255334649fb9b503f3e", "message": "Add murrine back into monodevelop-mac-dev packages list\n", "proba": 1.9178689569798735e-07} {"commit": "abda8cbcda409c2175b3b395f4a0ab1f3c414a64", "message": "Make sure rebuild pricing only it does it per site basis. Closes #1167\n", "proba": 1.2672931859469827e-07} {"commit": "bdc83cbbbfac82c5b3a2038098dcfbb5cc1a8cf3", "message": "deeperseq ...\n", "proba": 1.8610013796660496e-07} {"commit": "ddeaa717596798adcc9d113ec6a3bb1f85d6b31b", "message": "gen-art-mart-checkin.py: put datestamp at beginning of PDF filename\n", "proba": 3.5819297750094847e-07} {"commit": "5ca4e1df8fc67f9b56d5ea55cb4e17e78c5c6ed5", "message": "Fix test factory\n", "proba": 5.313069095791434e-07} {"commit": "98ea5604d898d5cd01b2b2b5043c73df1d728a0e", "message": "Trace: Remove the options trace-help and trace-flags\nThe options trace-help and trace-flags are no longer required. In there place,\nthe options debug-help and debug-flags have been provided.\n", "proba": 4.804308900929755e-06} {"commit": "6e9acce78f3e7b0b3143439e35c3371c0c3009b0", "message": "Add a test for the --dbshell arg.\n", "proba": 3.6774346767742827e-07} {"commit": "af1439d8330d79152474708ea8e74fa90d2edc55", "message": "Command line option to print out List of SimObjects and their parameters\n", "proba": 2.3387532621654827e-07} {"commit": "1e4c1c7213763ba70780707e690e37a1c01e6b59", "message": "use cpp to preprocess the input files and handle multiple DGETs per line\n", "proba": 2.44590438569503e-07} {"commit": "25682c18ecf63f458dfd00097898e817d78ac3bd", "message": "Visual studio - generate project files - one method\n", "proba": 4.213695206090051e-07} {"commit": "9d262fe63bcd7c492e6e483d85e8c1b75571db62", "message": "ohm: fix bug where wrong container_blocks were being inserted into database\n\n", "proba": 3.0928384830986033e-07} {"commit": "f76daf38fb8998bbf5d0b663ff64572fb240fd24", "message": "tp: bump Python API version am: 454844e69f am: 07e940c2de am: 19c98a2e99 am: 9bc9e3d185 am: 4289bd8427\n\nOriginal change: https://android-review.googlesource.com/c/platform/external/perfetto/+/1866680\n\nChange-Id: I7cd9c27070c46a81ffa5ec9e21deb897e13eeaaf\n", "proba": 4.757188776238763e-07} {"commit": "886ef35ce6216187a7eb3b9aaaaed072e8fa7fe3", "message": "Fix LXMERT with DataParallel (#7471)\n\n", "proba": 1.4250680635541357e-07} {"commit": "7aec6323fd4afc17990e56514bf65162eb396c5e", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "a6eefa1a3e965cc1412f058dc59c492e78dfa564", "message": "slightly more helpful comment\n", "proba": 1.098796502674304e-07} {"commit": "8165f5fdb3d68cfb98b0ca1962413dc23c76d068", "message": "Added SSL warnings flag to silence errors coming from having self-signed certs.\n", "proba": 1.0353787160966021e-07} {"commit": "8668f6647fa6d0e07b275d4ca48a1828378b634e", "message": "added numba\n", "proba": 2.663619227405434e-07} {"commit": "1a49fafea536a8cdd992ebb6e0ae08c8e0174923", "message": "Update model.py", "proba": 6.608695457543945e-07} {"commit": "4147abc971aa97d91d1bb301ff903591217f4bb4", "message": "Correct some logic in is_new\n", "proba": 0.9999994039535522} {"commit": "8bcbdafede63d8c6149306c7c1bf4fefc3b72b25", "message": "Add filter to display only parsers using zipfiles\nRemoved unused variable in exception catch\n", "proba": 2.2937692278901523e-07} {"commit": "ac5a21f7f63401b0f382e61898e8580a37254e38", "message": "Re #5548: make the sidebar-header link behave like the tree links: if no index page exists, show the folder instead\n", "proba": 1.080235492167958e-07} {"commit": "00d889b0885e0b6420a69d12e120d2d6ffcae71b", "message": "Shape.from_records index can come from dataset or records\n", "proba": 6.510787784463901e-07} {"commit": "e9ccc1e9112bdd8a85147e803440668bd79af722", "message": "#3697 - Fix flake8 error\n", "proba": 1.5556044274944725e-07} {"commit": "5ff44efbcfca5316796a1ea0191b2a92894a59ee", "message": "Fix resolve error\n", "proba": 6.444063274102518e-06} {"commit": "eb42b38e3ddc3026f4fd8356f04f318b2e945e2a", "message": "Refactored predict for zero-inflated models\n", "proba": 2.8570325412147213e-06} {"commit": "18269cb07838246422d5410c6b5d7ec53f20c1b9", "message": "TST: Fix scale in test\n\nFix exogenous scaling to improve numerical stability of test\n", "proba": 2.7412011149863247e-07} {"commit": "db002568899bbebeccef76d9663b2d4f10d480b4", "message": "FullBatchNodeGenerator's GCN_Aadj_feats_op function passing update.\n", "proba": 1.060854302181724e-07} {"commit": "9544fec55c350eddcb4f9e8ab9d801ed1049167c", "message": "[IMP] stock_export. Se quitan opciones y simplifica la funci\u00f3n. Se elimina el error de recurrencia si las listas de materiales estaban mal. Solo 2 opciones all y el par\u00e1metro\n", "proba": 3.907950031134533e-06} {"commit": "ab76223650e6b7827254e0f13a91ffd0e71a0a97", "message": "[FIX] dependency\n", "proba": 1.416972645529313e-05} {"commit": "262a9753a87315152f914a1068e9e689e07339cd", "message": "Try to fix error at Windows + Python 2.7 environment\n", "proba": 2.416929874016205e-06} {"commit": "619d0afd1d2934fec16dd1c3b1c9402516729584", "message": "LB-849 : Add the option to hide posts on collaborators, SMS, chained blogs and user comments\n\nAdd the option to hide posts on collaborators, SMS, chained blogs and\nuser comments\n\nThe chained blogs are now read by the backend and on chained blog source\nall posts are read from local instance through the\ngetUnpublishedBySource service\n\nConflicts:\n\tplugins/livedesk-sync/livedesk/core/impl/blog_sync.py\n", "proba": 5.124578592585749e-07} {"commit": "75ece1dbe7d101948bf8810bc4050764be2aca47", "message": "add explanation to warm_start error for lightfm\n", "proba": 2.2724465509327274e-07} {"commit": "14ee28615dc28eccd4fec027fb352c21b1fd31b3", "message": "[FIX] pmp_landed_costs: Se corrigen c\u00e1lculos con stocks negativos\n", "proba": 3.22720052281511e-06} {"commit": "d8bc23d0e4ab5b52ed9759c378ab5bd73468adda", "message": "Fixed.\n", "proba": 2.9598183459711436e-07} {"commit": "b50a3fb542aa2065f7d1a66f379ec28e7a89a4c6", "message": "Cleaned up detector functions\n\nremoved old qtlab detectors (left VNA as it is a useful example)\nremoved double CBox_v3 detectors (were defined twice).\n", "proba": 1.0286585450103303e-07} {"commit": "fbd5c126f501f2bc44a5f770acaf314fd77c5cce", "message": "[Python] Critical fix to multiplication of absorption/transmission\n", "proba": 2.2081820816310938e-07} {"commit": "2025dae49acd6827d0e961e9be345ad9cb3f1086", "message": "Add pytables to save cosine similarity\n", "proba": 4.958676527166972e-07} {"commit": "c4b1007bf759e24632e61bda2f7a69af15971335", "message": "DenseDesignMatrix doc\n", "proba": 3.161258916861698e-07} {"commit": "4f89e69dffd932d79049110ed35fd48f8280d3d6", "message": "try Vr fix?\n", "proba": 1.4731510589172103e-07} {"commit": "f9fd73d383f4c62fa7300fecdd9f8e25688ff1e0", "message": "Fix spacing.\n\n\nFormer-commit-id: 9fac47412e9c0f9d13f9d6c6e722e72efb267e7f [formerly b90fc2260bc1d6b748008bd0e22f2cdee6058798]\nFormer-commit-id: 50473c6f0ee79669346cd18dbf7cd46877c9c9b6", "proba": 0.9999994039535522} {"commit": "5431f9127ca9a7e1dd6196657d8a265910e66284", "message": "update docs 1 on plot_fermi_surface\n", "proba": 1.4522079538892285e-07} {"commit": "c6c90d20b4efc0c17fa6114e7d24656c3d4d67fb", "message": "made KeepBestModel easier to use when checkpointing based on multipe metrics :rocket:\n", "proba": 1.0341865674945439e-07} {"commit": "22f5390c45b4a5ef0e6e5845e6d02f40bdc7cd89", "message": "Fix search panel background setter\n", "proba": 3.8529191215275205e-07} {"commit": "5e59152ba3f89ef7443716d1cc0edb429984d1c2", "message": "for read queries, do not lookup pure OID arguments at MIB for efficiency\n", "proba": 1.2947629102200153e-07} {"commit": "cd9e4447be5e6ed1de1ad3290fc68eab8c3ae3dc", "message": "loop over that list...\n", "proba": 1.2676582628046162e-07} {"commit": "446bdb2d9906c39b0917dfd1cc5ce35230f78cfa", "message": "Refactor: rename an argument\n", "proba": 0.00012250519648659974} {"commit": "252a675314c1085253b055927ba991626a60a9ed", "message": "(from AES) ad-hoc changes\n", "proba": 3.784938940043503e-07} {"commit": "f5333788fb3d04712aba862a6945c939b605fcc2", "message": "code rebase\n", "proba": 1.2613382978088339e-06} {"commit": "e1f13cf4862e7e731d495821f9bb3164df36fd21", "message": "Support NHWC for LRN and batch normalization, and optimize batch normalization speed (#1936)\n\n* add LRN and LRNGrad\r\n\r\n* add LRNGrad\r\n\r\n* support bn with NHWC\r\n\r\n* support bn with NHWC\r\n\r\n* add batch norm grad\r\n\r\n* support tf bnv2/bngradv2\r\n\r\n* fix uts\r\n\r\n* fix uts\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* fix style issue\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* update python api and docs\r\n\r\n* meet code review\r\n\r\n* meet code review\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n", "proba": 2.463031592014886e-07} {"commit": "c1783b4f68e02c3c0b67a9407f48e827584fe561", "message": "refine tensorflow support doc (#1253)\n\n* refine tensorflow support\r\n\r\n* meet review\r\n\r\n* add tensorflow saver to python api and refine docs\r\n", "proba": 1.128679230077978e-07} {"commit": "07442f8d9a6ae6b78d1f324da20022d1d86fbde7", "message": "support NHWC format in SpatialAveragePooling (#1488)\n\n* support NHWC format in SpatialAveragePooling\r\n\r\n* fix style\r\n\r\n* meet code review\r\n", "proba": 1.066124184490036e-07} {"commit": "aa49c72f0d748ad7de104c765b801eda4d37859d", "message": "New Style classes done\n", "proba": 1.3217650973729178e-07} {"commit": "e384aee40e41d36c2ff32b76a1d4d162e0c9cecc", "message": "Stopping for the night. corrected JsLibraryAnalyser.js\n", "proba": 0.9999963045120239} {"commit": "a5840150f7089b1e00296f12254ef161f8ce93b6", "message": "fix foo(\"bar\").baz()\n", "proba": 0.9998677968978882} {"commit": "a7a7ea3b224252c22422a2f8b11e452f74ea3a77", "message": "Reformat test, remove debug\n", "proba": 2.6139119313484116e-07} {"commit": "f8e9454bcbea3c5c21b81f36a9bd16e821d2218b", "message": "qa_tests/hazard/classical/case_7/test:\n\nCopy/paste error. All tests pass.\n\n\nFormer-commit-id: fe4b4426dec8b168dd1fd05a361206d7e3b995e1", "proba": 6.544418283738196e-06} {"commit": "6f954cce7e900ca15a315d68422e17914d71301c", "message": "The executable file is reorder_bolero_mask.\n", "proba": 0.00023730946122668684} {"commit": "3b2730edbbef3f32aef6682d9d446d8416fc7562", "message": "add setWindowMinimizeButtonHint() for dialog\n", "proba": 2.954192268589395e-07} {"commit": "34683318573037d3bb35f1664b3d1e21beb7821e", "message": "Update rasa/shared/nlu/training_data/message.py\n\nCo-authored-by: Tobias Wochinger <5ab5657415213e16a8561b9cb7fb27e3a8c539ed@rasa.com>", "proba": 1.2008358396542462e-07} {"commit": "b411bfb77d861a550c852ec59172f51dd484f8ce", "message": "fixed ngram doc\n", "proba": 3.843304057227215e-07} {"commit": "633595cb253d8e319b203ba3879d1eba1e09bc94", "message": "removed PsychoPy CountdownTimer object, using instead a custom generator for timing, in the effort to reduce Psychopy dependencies\n", "proba": 1.259144681853286e-07} {"commit": "94d39864ca58704c78d96840ee43d6cf6c23a082", "message": "Generating random string for inline result ID\n", "proba": 1.18659745567129e-05} {"commit": "18cd856b0a4adcae3f9e9e01f40ffafa27d13f50", "message": "lib/s3: switching a warning to error\n", "proba": 1.6282843944281922e-06} {"commit": "460ec2231748e79a9dd8813b7ca95dd7165e1fcd", "message": "printer: Change how we print multiple returns\n\nPreviously we just +='d the string we were going to print, which forced\nme to do two separate things for both pretty_print_search and\npretty_print_info, and with both of them we want to put a '\\n' between\nthe results, but not have an extra one at the end. This was working for\ninfo, but I hadn't bothered for search. Now there is a new way of\ngetting the final printed string. Instead of adding to a string, we\nappend the string to a list of strings that represent the results and\nthen use str.join() to do that without any fancy logic in our library.\n", "proba": 0.0002205615455750376} {"commit": "a08919c24e1af460ccba8820eb6646492848621e", "message": "Bump Version 0.5.4\n\nChangeLog:\n\n- Mute logging output of level debug, info, warn\n- Support quit command\n", "proba": 1.7987800049468206e-07} {"commit": "778f284c2208438b7bc26226cc295f80de6343e0", "message": "Use loop.add_signal_handler for handling SIGWINCH.\n", "proba": 1.3000388321415812e-07} {"commit": "a4d7545110bd97238a73e2dd3940c808280940d0", "message": "remember which screen has focus across restarts\n", "proba": 3.287130994067411e-06} {"commit": "fa57fa679b575ce871af3c4769828f400e6ab28b", "message": "bump version 2.1.3 for issue #70\n", "proba": 1.5135536557409068e-07} {"commit": "062ce0f6fd9f6940b6c9ca45185e98e5d566e916", "message": "add timestamp to masterbugtable\n", "proba": 1.5815678125363775e-05} {"commit": "5648bf0c4f6767b527205bb5b766f15f1b609f99", "message": "Fix user argument to prestoclient\n\nThe port was being passed to prestoclient instead of the user. In\naddition to being incorrect, this was causing a TypeError when trying\nto log the user information if the port was an int.\n\nTesting: confirmed error disappered\n", "proba": 0.001772805699147284} {"commit": "4dd6dbbf35e0141337e2d3fcf8b4e5c166c23aa4", "message": "Optimized a bit\n", "proba": 3.699507942656055e-06} {"commit": "56efb0ba961bdedd109004339aba09b7d003a9ab", "message": "add support for send the password from cli", "proba": 1.9094228775884403e-07} {"commit": "d02b5bb9ad075e96236c37a7abd245b2532681f0", "message": "common.py: Print URL of get_content call when --debug is enabled\n\nUse logging, and raise the root logger level from WARNING (default) to\nDEBUG when --debug is enabled.\n\nThis logging facility can be extended to other functions.\n", "proba": 1.1425817803001337e-07} {"commit": "7805837b1dcfec03c7309f8f44ff0589e503acd0", "message": "Move the general regen_conf after we regen ssh, otherwise there's a non-relevant warning displayed because the regen-conf tells to rerun ssh specifically which is already done...\n", "proba": 1.0808826544916883e-07} {"commit": "3949333599dfcad37799c83e6765b4f75a56bf02", "message": "We need to explicitly ask for the ssh conf to be generated\n", "proba": 6.198634991960716e-07} {"commit": "d5e261b1509344edf22e69a3be0d9430325a7724", "message": "Minor Docstring addition\n", "proba": 1.1426933497205027e-06} {"commit": "bbcf902d5ca6bf630c8a861a1eaf3aa8b2a279c1", "message": "Update analyze_color.py\n\nadded missing info for the \"bins\" input", "proba": 4.2875970507338934e-07} {"commit": "0b42303f94d0662b0b50439b9c2fdfa649633bd5", "message": "Remove newline\n", "proba": 7.301507139345631e-05} {"commit": "964527ecb6a4cc6bb3402eb63746d8cfba24aeae", "message": "Notifications: replaced old models with the Notification model\n", "proba": 7.975105290825013e-06} {"commit": "3cdbcc16450faa958e27f60d5f2adc7a943562d8", "message": "Fix MacOS build\n", "proba": 4.7484627430094406e-05} {"commit": "0782ba56218e825dea5b76cbf030a522932bcfd6", "message": "Remove unnecessary (and debatable) comment.\n", "proba": 1.3788267949621513e-07} {"commit": "3187afe4fa3dd49d7e566e09f9d733914fe88310", "message": "Allow arbitirary node and edge attributes to be written to pajek format files. Addresses #542\n", "proba": 1.2020343831409264e-07} {"commit": "ac471eef325d24578062160f67f5f0b48028ded7", "message": "graphics engine should do better when there are nans in the data now\n", "proba": 1.2514470881797024e-07} {"commit": "f288b18a0f11e1c1ad770a5af44674eb91987b7c", "message": "Changed one beautifulsoup attr finder to regex-based\n", "proba": 1.7448763856009464e-07} {"commit": "ca81d99a1a43f42fed6034ffa9d53db6c967d170", "message": "json.dump\n\nSigned-off-by: Chris \u201cKwpolska\u201d Warrick \n", "proba": 1.1346971717784982e-07} {"commit": "fb9f3ca4e7f980cf299bad838993a2e09b538545", "message": "removed docstring embellishment, added reference to notes\n", "proba": 1.2240147384545708e-07} {"commit": "ddc8581c50d4eefb574cbbc706525d94557fef6b", "message": "Revert: Log `buck kill`\n\nSummary: This reverts commit Log `buck kill`.\n\nTest Plan: revert-hammer\n\nfbshipit-source-id: cbfa2fd\n", "proba": 2.5124802505160915e-07} {"commit": "bf7d986b96cf09b4eb5e759216b051cad7345fd0", "message": "Run `full_clean` on user before save\n", "proba": 4.401044293445011e-07} {"commit": "d1569360ab4388524cd77733547efbd299c38265", "message": "reverting command line parameter change\n\ngit-svn-id: 24f545668198cdd163a527378499f2123e59bf9f@1746 ead46cd0-7350-4e37-8683-fc4c6f79bf00\n", "proba": 2.259483608213486e-06} {"commit": "05e162a7fcc9870e37a6deab176cf3c6491e8481", "message": "add docstrings for methods of PrimaryDecider and refactor them a bit\n", "proba": 1.7564146048698603e-07} {"commit": "9b16037179624b41caabb6d06d8919daeefe8a78", "message": "Change reference to SCJC\n", "proba": 1.39779260166506e-07} {"commit": "7481905b8471a27ad0bf6a958d84ac540a7d9a64", "message": "added more validations\n", "proba": 1.2085840239706158e-07} {"commit": "7ac58c5e817b676193804c1937441eba9e9cc10f", "message": "Update naivebayes.py\n\ntypo in documentation", "proba": 2.242712042743733e-07} {"commit": "911dc17a66043656f73f10da0097269b03ed5606", "message": "Fix __str__ of Structure\n", "proba": 0.9996532201766968} {"commit": "0b01d470bb034b0c0eff5d1d1f0d6b8b5b8cc840", "message": "better default verts\n", "proba": 2.0160960048087873e-06} {"commit": "8f78c04f6e2f21deb02a285fc78c5da907f0287b", "message": "Delete extra print()\n", "proba": 3.2939437915047165e-06} {"commit": "0618bb7b843831b51412f3c76976950003285040", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "fe1d5b55cf926e8b795598de0a40b4332b7f140c", "message": "#35 #28 test for `project_create_repo` url\n", "proba": 4.1601387579248694e-07} {"commit": "ce8c6772b5d0ce6f9541861fca30aeae2463e1d1", "message": "instance attributes initialization was removed from view (it is in model now) (nc-178)\n", "proba": 1.2081818567821756e-07} {"commit": "56aab00603319f13d504be0837c329dc5d344dd5", "message": "#28 test project_edit form posting\n", "proba": 1.2236984048286104e-07} {"commit": "94b1d1a410af6446f66e4f4a751cab6ec159d295", "message": "views\n", "proba": 3.8515375422321085e-07} {"commit": "9a59705e3d85a93a8e82a22cfdde66600d18e650", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "b34bb2b82ef63e8148770bc4e3d1f65475e0e528", "message": "add scripts related to pseudomolecule in projects.pineapple\n", "proba": 6.384619837263017e-07} {"commit": "ad1c1dc10cea97b863c5bad183e2fed9ef09a2d0", "message": "doc typos", "proba": 4.1820990190899465e-06} {"commit": "c53c539fb0a0a74f099d9fd57217867f324e19ba", "message": "Nests a function call for loading and fixing the sample rate of the signal\n", "proba": 1.22812238601e-07} {"commit": "abd44a36625ca052f31ded04f881c7d2ef4ae099", "message": "Look at title further into the document\n", "proba": 7.146937264224107e-07} {"commit": "6cf47cecbfda462a0135b0edd7774548bb193d52", "message": "added getState method\n", "proba": 2.938334091595607e-07} {"commit": "7a10b705b70477501c8b602dc36f66e35767a4cd", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "aee20e4742ec689a0ee2d9db40440bf064d68d23", "message": "disallowed chars extended\n", "proba": 4.499683541325794e-07} {"commit": "55eac8bed7e08c245642c1292ebc644fcbd8e12a", "message": "Add jobs serializers' tests\n", "proba": 2.4396376829827204e-07} {"commit": "0579a133751295229d0e2709f2d4e9ec672960ca", "message": "fixed bad octave in test case", "proba": 4.015360275388957e-07} {"commit": "b9c00364aa018d9bbff2485e61b3bf6625bdbfcc", "message": "Fixed issue where it was always running on stops subset (#114)\n\n", "proba": 1.0949574402729922e-07} {"commit": "16bf079d1b139db08988fdb3cc1ff818cecfc12e", "message": "Add ModelTranslationAdminMixin.\n", "proba": 1.29993210862267e-07} {"commit": "2e917788cc1208f91305b33c7054ce59d732e5be", "message": "Fix bug 1383482: Replace tip with default (#637)\n\nUnify the way we reference the latest revision in Mercurial repos:\r\n1. When determining the repository's latest revision\r\n2. When comparing with the last synced revision to determine what\r\nchanged since the last sync.", "proba": 9.014451052280492e-07} {"commit": "1bbd3e8cf74fe56281e3ffd4582d642c250fede8", "message": "20110728\n", "proba": 7.043680056995072e-07} {"commit": "9515271143c0ae9cbcde98b981f665e8ccda5955", "message": "Clean up jupyter testing.\n", "proba": 1.313523085855195e-07} {"commit": "cfeb26b8c591b6d61f3184de74b2a37a2c2c21cc", "message": "Fix `lintreview register`\n", "proba": 1.7216491698945902e-07} {"commit": "01d65552b406ef21a5ab4f53fd20cdd9ed6c55f8", "message": "support github ping events", "proba": 2.912863692472456e-07} {"commit": "25cdabd101a339dd463e911e432dfc0d6cc3e8f3", "message": "Pepper: Disallow new passByValue structs in IDL.\n\npassByValue structs are complicated to deal with for PNaCl, requiring that\nshims be added for converting between calling conventions between nacl-gcc and\nPNaCl+Clang+LLVM.\n\nThis change whitelists the current structs that exist. New passByValue structs\nwill cause an exception to be thrown when generating headers.\n\nBUG=233439\n\nReview URL: https://chromiumcodereview.appspot.com/15001010\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@200293 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.6601110221236013e-06} {"commit": "c750283085eada658f712f8a6d6fc0d0b2e93369", "message": "refactor\n", "proba": 0.9999991655349731} {"commit": "045dfc6604d4ea350932f629d72996578f51f48f", "message": "Read userinfo cache expiration duration from config\n\nThis also makes it possible to disable cache population.\n", "proba": 1.0999120547694474e-07} {"commit": "bfc42035b7ca88ee35d43dea4608741f4f9fba6f", "message": "Fix a refactoro.\n\ngit-svn-id: a4a6f32337ebd29ad4763b423022f00f68d1c7b7@81192 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 0.9999991655349731} {"commit": "092f582f7efad14b5245956a0211bcc18a825405", "message": "[FIX] A\u00f1adir unique default_code\n", "proba": 4.112409044410015e-07} {"commit": "9524940e949804b47281e69c09311ab8d2519636", "message": "Task fixed\n", "proba": 3.6714947782456875e-05} {"commit": "356b403fbb47740289ae01a96b07a7c6d56f1231", "message": "QARanker LocalTextSet Python support (#1154)\n\n* add scala code\r\n\r\n* add python code and ut\r\n", "proba": 1.2441951469099877e-07} {"commit": "642073d093a124d959aba8119784932f41e64c0b", "message": "Added default option for antenna selection.\n", "proba": 1.16689527374092e-07} {"commit": "d24588f96f1fb02bd1026e7588788d5494954e8d", "message": "Renamed noun inflectional rule to something more reasonable\n", "proba": 5.237619552644901e-05} {"commit": "a22aaf70781eba85523cfb2474c24300ab1eed74", "message": "test=develop, fix test dist fleet geo unittest (#22287)\n\nfix timeout of test_dist_fleet_geo", "proba": 1.9575838905439014e-07} {"commit": "4ecff714f7f7911243748c6b39c4de903402937c", "message": "public studies are being shown in the user own studies\n", "proba": 1.365515771567516e-07} {"commit": "f4a7200decbff0cb1a2ddde0b3f044da5d6c5250", "message": "Return repository collaborators as User instances.\n", "proba": 1.316731328415699e-07} {"commit": "21df3b5bae428073feba20627813f3b9c6e177e5", "message": "added database and schema name to callbacks parameters\n", "proba": 2.6758453941511107e-07} {"commit": "c725a5696224f6e003a5ac6f807d45c291e87324", "message": "Fix unsaved exception in v1 API controller\n\nWhen an exception occurs during exception handling, it lose the\ninformation of the first exception.\n\nWe should use the excutils.save_and_reraise_exception() in this case.\n\nChange-Id: I467c9627fa661421926d50c3e894f80d9b75baa2\nSigned-off-by: Zhi Yan Liu <98cb9f7b35c45309ab1e4c4eac6ba314b641cf7a@cn.ibm.com>", "proba": 3.842571004497586e-06} {"commit": "c999402c2506473a015c3e632583679c464b44a5", "message": "fix a logging issue between different versions of python.\n\nsubmitted by: Kuba Konczyk \n\n", "proba": 1.413715153830708e-07} {"commit": "7594763e5e6167c15fa7898b13283e875c13c099", "message": "Update BotPMError.py", "proba": 5.947188697064121e-07} {"commit": "49a1190a6b84b47dda26f97b2825b8b80ad21e9d", "message": "Support Go 1.15.4, 1.14.11 (#2707)\n\nFixes #2702", "proba": 1.3714851831991837e-07} {"commit": "40e2b841917ea1354403b4ef5be6f092e4102254", "message": "ImportError fix\n", "proba": 7.243089044095541e-07} {"commit": "bec6505195543536cd3952966fcb31702a3c6166", "message": "Add set header\n", "proba": 5.716094619856449e-07} {"commit": "0c17c5aff8d07b216e6a78dd6c575cf54fe08880", "message": "Added command to disable user\n", "proba": 5.031133127886278e-07} {"commit": "7f1dd23a555c8fcddcb6857494fc54ca83bd66bf", "message": "email inbox parsing backdate fixes\n", "proba": 1.7226935824510292e-06} {"commit": "bddfd434600bc69efa9d03a05f8a7399967647d0", "message": "actually accept an alternative acre_service_url\n", "proba": 1.2662518145134527e-07} {"commit": "e1f120a122f835a645c621eb5004f54ede980036", "message": "SmartOS net driver\n", "proba": 3.153526506594062e-07} {"commit": "0d39140f042d87fe26938bc0226aadffe3872d75", "message": "Be more explicit about emptying connection pool.\n\nThis patch makes some code in test_qpid be more explicit about emptying\nthe connection pool. It now ensures that it removes exactly how many\nconnections are in the pool.\n\nThe previous code made a couple of assumptions. First, it assumed that\nonly one connection was in the pool (which is true, but it's still nice\nnot to make the assumption here in the cleanup code). Second, it\nassumed that free() returned the number of connections that have been\nplaced in the pool. This is not correct. The result also includes the\nnumber of connections that could be created based on the max size of the\npool. Use the free_items attribute instead, which gives the exact number\nof connections that have been put() in the pool.\n\nChange-Id: I97378919c2d3e68f224862f07a75529575647163\n", "proba": 2.063325882772915e-05} {"commit": "ca62660968a87650fff83bb9fd7c095d1ec7c3b9", "message": "libvirt: remove extraneous retry assignment in cleanup method\n\nThe retry = False assignments in these blocks was pointless\nbecause we raise an exception out of them anyway, so the retry\nvariable isn't going to be read again.\n\nChange-Id: Ie52044ed9ad8520e3878de60365cdea22596aa78\n", "proba": 6.975093856453896e-05} {"commit": "a3f5eafee63a897981203e384f1c6740c3856762", "message": "Rename 'connection' to 'driver' in libvirt HostState\n\nThe HostState class in the libvirt driver still uses the old\n'connection' terminology instead of the preferred 'driver'.\n\nBlueprint: compute-driver-events\nChange-Id: I942237c329abbb0b857a5363ce71bd4b9377470d\nSigned-off-by: Daniel P. Berrange \n", "proba": 7.232382631627843e-05} {"commit": "87b3122ef1210d419bf58341962c5bdb09b6dbda", "message": "Remove traces of pdb\n", "proba": 2.2052811345929513e-06} {"commit": "6d39fd772de55b35f2723969ee1bf0499275ce5b", "message": "Fix test_gamma on the CentOS 5 libm\n", "proba": 5.119437901157653e-06} {"commit": "7cd32fcacd8a406825e66c8bb521ed6e3d040950", "message": "One more parfor should be created for logistic regression for the inplace_binop.\n", "proba": 1.0621702983826253e-07} {"commit": "4b6c05c65ba1b9c7a80b011b4eb7bf0bb5b67688", "message": "Pylint fixes for anomaly.py\n", "proba": 2.9426891501316277e-07} {"commit": "b49ac333df4de61ca632666cca85f6e9baf788b0", "message": "pep8 fix.\n", "proba": 1.395855804275925e-07} {"commit": "984db08a205bdd9196c3e1cc3415873a853c33ba", "message": "style cleanup", "proba": 3.0264124006862403e-07} {"commit": "cb7f6efbbbe640a2c360f7dc93cb2bc87b2e0ab2", "message": "fix example\n", "proba": 0.0001004236182780005} {"commit": "c68c7eac4b0bea845cb1b122c2cd0c56cfaf28f9", "message": "Bug 802317. Move check_b2g_application_ini.py logic to mozharness. r=aki\n", "proba": 1.4741623999725562e-05} {"commit": "8dc5b661149fe075d703042cb32af7bbc0bd5d4a", "message": "Switch encoding.py to python3 type hints.\n", "proba": 1.2495007695179083e-07} {"commit": "076d874618dcfa361fcff9884a085a2e16b9bd5e", "message": "jukebox: added the artist command.\n\nIt retrieves artist information using the artist and artistbrowse subsystems.\n", "proba": 1.1307035663321585e-07} {"commit": "e6f089c5bf1637dfb10d53fa44ec0e5b76660e40", "message": "Add before/after value chg events to e._setvalue()\n", "proba": 3.44579575539683e-07} {"commit": "323a220a3056f498a36a16826984e804cfb48fad", "message": "Improve docstring for optimizer module.\n\nPiperOrigin-RevId: 276157441\nChange-Id: I5cac879788ecb83f8cab12b1e8da8839b894e97e\n", "proba": 0.001570446533150971} {"commit": "8e3086cd37e180892c503a5238bc2d6ef91c3216", "message": "shipping and billing addresses are readonly\n", "proba": 1.2440219165910094e-07} {"commit": "9bc9137ec22b45b0611b2d786451db890f46f424", "message": "Add `initial` parameter to es.__init__\n", "proba": 1.9231506485084537e-06} {"commit": "513b39318437703bf37362d3b64bff4c54e7083c", "message": "mezclas multicomponente\n", "proba": 4.806306606042199e-07} {"commit": "78a831f5f773c683b7113da204eb56db72c27fbf", "message": "Don't mangle", "proba": 2.9909599106758833e-05} {"commit": "13b49f0c97c8fa7b5a6563d35c8c55c7aaa9f75b", "message": "Check columns table in Insert\n", "proba": 6.234573675101274e-07} {"commit": "e61570e83b9079e782f842fbbc6914d2fd476093", "message": "DOC: remove df from plot docstring (#1860)\n\n", "proba": 1.565252034652076e-07} {"commit": "94e2dafab7d1a504af20675dec517c6609201e10", "message": "Clean up\n", "proba": 1.531641828478314e-06} {"commit": "8c7faf2d3d07a1991fd26a3ceebb29586c3e593e", "message": "only add inferlink extraction if there are some extractions\n", "proba": 4.12088894563567e-07} {"commit": "7757d306eaed772ba65e382841602f2777e736b6", "message": "Include _pending_position 0 (zero) as valid target\n", "proba": 0.00035021547228097916} {"commit": "36d5898c5c68bf7d381cf5d7ade11295d72deffb", "message": "read landmark rules from file provided in the extraction config\n", "proba": 2.861658003894263e-07} {"commit": "b3a906aa5c97bc3b569b1e4d290ef1b36cf21c4a", "message": "Add support for masking in stretchlim\n", "proba": 1.6823271664634376e-07} {"commit": "d48f465f7fe929a06a77e19e28d4c0e1948fe8ad", "message": "Slice to SlugField's default max_length to avoid\n\"value too long for type character varying(50)\"\nerror when slug is too long.", "proba": 1.1170477876021323e-07} {"commit": "015fcfaaed0a3ff54801f5821df4f5527255ab06", "message": "Update SSL.py", "proba": 9.641432825446827e-07} {"commit": "b0a4683670f05ed068a702144814f310586331fb", "message": "fix models error\n", "proba": 6.60157127185812e-07} {"commit": "78ef8bbb721d6673ba576726c57dfae963153153", "message": "fix bugs in evaluate.py\n", "proba": 1.1238602155572153e-06} {"commit": "d07182591830308e0cf69b0f64f1e3cad64b1093", "message": "Reformetr les lignes de commandes normalisation\n", "proba": 3.440820819378132e-07} {"commit": "4856324d50dfb25326c748fad8107271bf9932df", "message": "No special case for clipping to DrawingAreas\n\nMPL 1.5 shipped with the patch\n", "proba": 1.1364721785867005e-07} {"commit": "36698d1ae6e38482af65bd2a0ac9bdc97f2bd04a", "message": "Hack to fix random test failure\n\nWith Pykka 0.16, test_status_method_when_playing_contains_time_with_length\nfails now and then because play_time_started is not initialized before it is\nused as an int.\n\nI'm allowing myself to fix this in the simplest way possible instead of\ntracking the issue down, since I'm already working on a refactor of the time\nposition code.\n", "proba": 1.3286945943491446e-07} {"commit": "6fde297555fd6537cd4dfdbda51b8f7532e70f0d", "message": "LocalServer [untested]\n", "proba": 1.6714254513772175e-07} {"commit": "fbec9b15006eccf86051eaf18148adeff538f662", "message": "Added --version CLI arg.\n", "proba": 1.120028159107278e-07} {"commit": "49d5fba0a59c8292c030b521736cc268edd68429", "message": "Move notifier class attributes to instance attributes\n\nTo avoid accumulating variables in Issue #10 we want to move the class\nattributes to instance attributes\n", "proba": 1.1360766194457028e-07} {"commit": "92dbf0144751b95273fc5712e9927e092ae43483", "message": "Ensure URI is always a string value that can be encoded.\n", "proba": 2.1199335265009722e-07} {"commit": "a1f512fb5c47659f1a0faca9d5b89923dd6b0bca", "message": "Ordered labels\n", "proba": 1.946902330018929e-06} {"commit": "81553167bf49ad57ad57845c023e1c7eda41b780", "message": "Fix for ST3 not working with Cygwin git\n", "proba": 1.3404343235379201e-07} {"commit": "551286288bb99803d23137a59bca94b0a30f47db", "message": "Break finish line into segments for better collision detection\n", "proba": 5.809211529594904e-07} {"commit": "acb794b00a1b04a4f82abeafab0962ed4e6cb313", "message": "manage open files\n", "proba": 1.4141644442133838e-06} {"commit": "2e6c80717099fb6c6ca59d9d6193807b1aabfa8b", "message": "docs: Update docstring\n", "proba": 4.6349720150828944e-07} {"commit": "4990fb5cf3447b956e87bf060420a296b13cedb1", "message": "Fix syntax warnings on CPython 3.8\n\nCloses #444\n", "proba": 2.2234347852645442e-05} {"commit": "607e7d30b0eead1cc8815f21de9db380660b4030", "message": "Disable author keywords from inclusion in PoA XML.\n", "proba": 1.1013983680641104e-07} {"commit": "ef1f303072307f259e8555e0148c29677b4f7d6f", "message": "Fix approve permissions typing\n\nSummary:\nThe typestub for enums generated by `protostub` is really wrong so this is the best we can do for now\n\ne.g.\n```\nclass ApproveRequest:\n PHOTOS: Any\n CAMERA: Any\n CONTACTS: Any\n ...\n class Permission:\n PHOTOS: Any\n CAMERA: Any\n CONTACTS: Any\n```\n\nReviewed By: zbigniew-malinowski\n\nDifferential Revision: D15187862\n\nfbshipit-source-id: 04d92e23fa2d56198f7eeb42d47d60e11212896e\n", "proba": 8.59825831867056e-06} {"commit": "2e1fe2dd5476fe05bbd8c7bed56fd39077d72d7f", "message": "fix exception\n", "proba": 7.229678885778412e-05} {"commit": "4d429855ef423506505661880f22931b7e9748ce", "message": "gevent.monkey.patch_thread is called from run_server\n", "proba": 7.548439953097841e-07} {"commit": "d64ba0a079c4f2387288f543ce3e53e7e78824af", "message": "Update mppinverter.py\n\nadd getSerialNumber", "proba": 2.943351375961356e-07} {"commit": "5654ba01ee098f8c00ade8c4c939b6899161034e", "message": "Fixing mqtt test errors.\n", "proba": 2.8578836008819053e-07} {"commit": "e8bd48ea70e59c426d8434cfad8795cdf3f807c5", "message": "refactoring from Rick's comments", "proba": 1.7621694325953285e-07} {"commit": "71276b8c6e83f37a9d747a86e8fc2a0f03e3348f", "message": "Adding a location_client to Ambulance.\n", "proba": 1.2211708622089645e-07} {"commit": "1f85bbb774c799646a94416982e8c3bd94a6edc7", "message": "Improved message parsing\n", "proba": 9.301043633058725e-07} {"commit": "025ad18a2b6e483c2d44fe84d1b9d1ad0a7288b6", "message": "add njobs cli option\n", "proba": 5.70222141504928e-07} {"commit": "a132246ee8830c14fa75bb43332c5e82cd00dbb8", "message": "Fix bug in accessing class members in mscoco iterator\n", "proba": 4.0465792494615016e-07} {"commit": "816ab2207716f27af2c8d80920bb15be875a9884", "message": "murks\n", "proba": 7.631639164173976e-06} {"commit": "73a23adbf098eb9f90e3b32e45928c48f5321c5e", "message": "Minor changes to examples\n", "proba": 1.3873766135930055e-07} {"commit": "9f0429f1d9275a1521078aa4862ebd4169dacedc", "message": "remove if false statement\n", "proba": 0.9999995231628418} {"commit": "6f1627dc58c36ca5cf102f1139ff9100b1e67fb6", "message": "see if muckrock import works on heroku now\n", "proba": 1.1080948070230079e-07} {"commit": "9f42ecceed0515b53a896ae014b1e79d536c3062", "message": "proper directions\n", "proba": 0.00018440526037011296} {"commit": "04c29db6718f808fb14d9dd1803e49803bdd3fbc", "message": "change when names are stored when exporting\n", "proba": 7.973317792675516e-07} {"commit": "25a7f59a5be38ee6caddc68a3f1d6df8ee4708be", "message": "refactored to put all commands in github_manager.py\n", "proba": 8.358696504728869e-06} {"commit": "5ef79ae26987201e68159b8b72b86f11e0d23c12", "message": "Updated from Brython Server: February 4, 2016 2:24:43 PM EST", "proba": 1.0822544993516203e-07} {"commit": "151e1dadeb63f1e3f27a1bf89993ea17d39e5c50", "message": "Fix with_channel support in setup_conversation (we were trying to add a channel before the converation had been created).\n", "proba": 1.0924041760063119e-07} {"commit": "2a760bd50f2a9ce126d59c77996cb55713c856c8", "message": "added mus and sigmas to the results dict\n", "proba": 1.2277405403438024e-07} {"commit": "61cb93a348879a36902159a6055b7e32b959e1c1", "message": "Fix data formatting bugs.\n\n- Doubly nested lists for coordinates.\n- Forgetting to call `os.path.join`\n", "proba": 2.2558957368801202e-07} {"commit": "7cb9703b1af4138e8f1a036245125d723add55a3", "message": "Fix error handling to return sensible HTTP error codes. ", "proba": 2.2893154039138608e-07} {"commit": "fce7dd8f27db2febc65ddead4db0eee3dfd4565f", "message": "Changed/reordered names of rostopics or TF frames.\n", "proba": 1.0238843373144846e-07} {"commit": "507c8711ce1a260983e36902169af9ab472668f5", "message": "Fix list comparison failing under new unittest\n", "proba": 3.2224014034909487e-07} {"commit": "e1fa3d72e4a2569691aeb9f9003bdac52de7ce3e", "message": "Add unit tests\n\nConflicts:\n\n\tnumpy/core/tests/test_ufunc.py\n", "proba": 1.7967275880437228e-06} {"commit": "c0df1304b5bb0e8057eb23e07910b42a8eed4d8f", "message": "Updated from Brython Server: 9/22/2015 2:47:03 PM", "proba": 1.0888096824146487e-07} {"commit": "056261d3423329cf257398a11a12fe22565f5fcf", "message": "Teach our tito tagger to use vX.Y.Z tags\n", "proba": 1.3175854007840826e-07} {"commit": "2088e1cdcfcf4972a664963ac8979d7138422231", "message": "Fixed MKL detection for recent versions of this library.\n", "proba": 1.0162264629798301e-07} {"commit": "88c571261c1db6d1a490f58c040e20cc24522cef", "message": "Camera exporter uses absolute paths\n", "proba": 4.291139532597299e-07} {"commit": "8c4bfe5974987f5e975082aa5d86fa32899c74d1", "message": "Changed printed warnings to warnings and reoriented wavelength\n", "proba": 1.277098675700472e-07} {"commit": "b4f0bbb8e9fd198cfa60daa3a01a4a48a0fd18af", "message": "Replace assertFalse/assertTrue(a in b)\n\nReplace 'assertFalse(a in b)' with 'assertNotIn(a, b)'\n\nReplace 'assertTrue(a in b)' with 'assertIn(a, b)'\n\n[H204] Use assert(Not)Equal to check for equality. Unit test assertions\ntend to give better messages for more specific assertions. As a result,\nassertEqual(...) is preferred over assertTrue(... == ...), and\nassertNotEqual(...) is preferred over assertFalse(... == ...).\nOff by default.\n\nsee more https://docs.openstack.org/hacking/latest/user/hacking.html\n\nTrivial fix.\n\nChange-Id: Ic21fa755faf218bc1c27dc9c839cf6f99f67d287\n", "proba": 0.00031067835516296327} {"commit": "d98ac8c127caf4b70c8b0da9b6b6415c47f0f3eb", "message": "remove cruft\n", "proba": 4.241955195993796e-07} {"commit": "c0a61b2e16b6909df5d406087ed0fd923d9edfbd", "message": "Update structured_arrays.py\n\nThe behaviour documented did not match the actual behaviour of numpy. Explanation changed and the code example updated.", "proba": 1.1585743209252541e-07} {"commit": "9e240a703756248868a75b85e94c9f6ff13d460a", "message": "nsfw: add post non-repeatability\n", "proba": 8.269468025901006e-07} {"commit": "603c36aec2a4704bb4cf41c224194a5f83f9babe", "message": "Set the module as auto_install\n\nSo it installs when both sale_payment_method and sale_automatic_workflow are installed.\nThis module acts as the glue between them\n", "proba": 9.890330829875893e-07} {"commit": "0d4ad25bb01dc1e303ebaf940853f1b18532b3cd", "message": "update hook\n", "proba": 4.97313010328071e-07} {"commit": "a45f96e068a78ea69dc95637bec4f434f10a912f", "message": "minor fix\n", "proba": 3.935496124540805e-07} {"commit": "a90142fb0ae6282fda3cadaa31a4f8ce73af1352", "message": "modify __init__.py\n", "proba": 0.00016236735973507166} {"commit": "a0cbaffc328ce9e955def430343af0d34c7a35e2", "message": "elasticsearch: catch NotFoundError\n", "proba": 0.0018437093822285533} {"commit": "27b0e86f15a2f89b2f8715dffa5cade17b7f5adf", "message": "Update singletons.py", "proba": 9.421133881915011e-07} {"commit": "cb751cd59dfda86b4c29872ef745d864e2567fdd", "message": "Put a dot between the subdomain and domain\n", "proba": 0.00010099039354827255} {"commit": "3122ad16c927f050e8592c7af1ded77df2b52565", "message": "Add argv to process JSON\n", "proba": 2.7018388664146187e-06} {"commit": "bfd7cb9535ef5a21c6d3708db3c050314127375c", "message": "Fixed get_node_type function\n", "proba": 8.352436111636052e-07} {"commit": "31107980f698a9648a6d4ceab7eb7ef458e31107", "message": "Deal with prefix properly\n", "proba": 7.888576760706201e-07} {"commit": "80fa0f2d3f33b69e2c27a6874bb5d8cbdce196f7", "message": "[account] allow utf8 passwordkeys\n", "proba": 3.2593088690191507e-06} {"commit": "eb4be08f4b7848dd5449df86dacd30b351d295db", "message": "Add method to get payment distribution for a team\n\n(copied from old participant.get_tip_distribution)\n", "proba": 1.2584580133534473e-07} {"commit": "d895c08ee5795d9436b35b0a7e1d9b8f98055d3a", "message": "fix exception-from-greenlet handling, workaround a wonky shutdown issue\n", "proba": 2.4871573600648844e-07} {"commit": "c21847444c3457b16c6b677dd73c3d790847fbf3", "message": "default-width: Update default width to 760px\n", "proba": 6.616199925701949e-07} {"commit": "7d04beacd9b3ca2dcdc85c66b4f2eb01e10b47fe", "message": "Escape HTML for input line\n", "proba": 8.027060403037467e-07} {"commit": "fce884948ac362ad58ab955a18c9f4cecd28e7f9", "message": "Formula for EvaluationLink Modus Ponens\n", "proba": 1.646688190248824e-07} {"commit": "79fc9daffc3659a955209eedff834dc7f2a3d2df", "message": "Update eyecheck.py\n\nadd new eyecheck constraints\n", "proba": 1.9398322592678596e-07} {"commit": "e7ac9bcf0c5d93c1b14329dad9e33416f70bcda1", "message": "Slight fixes and moved utility classes to gui_utils.py\n\n- Fixed some issues with comparing files between input file and output\nfile.\n- Corrected mistake in adding template error to plot when it shouldn't\nbe there for matplotlib version < 1.5.\n- Moved all utility classes to gui_utils so it can be shared with\npyhammer.py\n", "proba": 3.3463061299698893e-07} {"commit": "1571d34a42b97f382f163901737eff70ba28b89d", "message": "forcing a distribute reinstallation over an existing setuptools one\n\n--HG--\nbranch : distribute\nextra : rebase_source : a44844ab6dc54f82f172fcf55d01f78eab25beaf\n", "proba": 8.323864904014044e-07} {"commit": "772eb01a494398f66aee9b5332b7654be6d71e80", "message": "Move statshelpers to openfisca-(country)-data projects.\n", "proba": 1.117548578122296e-07} {"commit": "37e33c661c736d6bbe8a8af63e2613828716ee39", "message": "latest fixes (Darren Blunt)\n", "proba": 1.1341107608586753e-07} {"commit": "07438776d9b117378a495c262c024d0323235d2c", "message": "Adding check for width of array to create based on size of data on donor\n", "proba": 1.9460655664715887e-07} {"commit": "6a6ad3224cbb28a3f109a35413a2e675cdbf1b09", "message": "Implement domain functions\n", "proba": 0.0005050156614743173} {"commit": "f3b22c0614e49d484e8b8866923912e55190953e", "message": "Fixed a doctest\n", "proba": 1.2937499604959157e-06} {"commit": "c9026fad2b4ab0a08bceab18f463cb76b6708c6a", "message": "Another small fix [skip hazardlib]\n\n\nFormer-commit-id: 260909f3c9b3bca16083571c1964c1060c2e2977 [formerly 260909f3c9b3bca16083571c1964c1060c2e2977 [formerly 4bed3a279f4c81dd048e3e13904545da1823f217]]\nFormer-commit-id: 9cacc3748ccd582ea04313875a369a69fa01f56d\nFormer-commit-id: 35d3f472ab39f606a277d5270a5b262be66acb34", "proba": 1.315565555159992e-06} {"commit": "70cbe7e22cb13a6afaa07d2a59fd99f6fe444dde", "message": "Added asset.tag validation\n\n\nFormer-commit-id: 5e52dd728c0a902dc135b0282a19d562beb56e93 [formerly a79e5c64bbcd2b605bdd554adea3d989ad7567da]\nFormer-commit-id: e4e08523f92feb0bab4a5a8d6d136c1315d1c6a5", "proba": 9.225582857652626e-07} {"commit": "b6ed1e8bbc1ee68d4eda00340d8ee18987207a81", "message": "Small renaming [skip CI]\n", "proba": 1.263082225477774e-07} {"commit": "a316512828603561d82da7016d64a1bbda95f466", "message": "Speedup [skip hazardlib]\n", "proba": 1.296861285027262e-07} {"commit": "048ba123f75c8408ca68873cfeb43cfeeed6b859", "message": "whoops\n", "proba": 8.302949936478399e-07} {"commit": "989988aa604b5a125c765294080777c57ec6c535", "message": "Fix bug OppsDetail, add channel_long_slug\n", "proba": 2.582099227765866e-07} {"commit": "22e2b875dddd2324fe99873c252d80bb08da346e", "message": "Check preprint for spamminess iff user\n- is performing update. Do not check sys updates\n", "proba": 1.3530207354506274e-07} {"commit": "5878a9f6102acc466a95d286931fed494c81e571", "message": "Add debug\n", "proba": 2.9426066703308607e-06} {"commit": "6b246f6884473b8ef39ff56e2d24cf9f9a28ffa0", "message": "Remove print statement in PostgresUpdateCompiler\n", "proba": 9.630564818507992e-06} {"commit": "da9a82aedac233cd5411c3edd7be6ac0b0957838", "message": "Fix return issue of testexecutor.\n", "proba": 5.519187311620044e-07} {"commit": "da21d20054b6686ea8de36aa299ce190948ccf9f", "message": "Investigating cases for Issue 4 - added debug statements but that is as far as we are taking for now; investigate more afterward.\n", "proba": 9.666928946217013e-08} {"commit": "eb0e4b90d45b9cccacd56cba871e830b6097e83e", "message": "Missed one function in previous re-arrangement.", "proba": 1.3248657637632277e-07} {"commit": "a0a3462598b23922df937f5b7d925d5f4c397f5b", "message": "Steam library_sync: Use symbolic names for state flags\n", "proba": 3.458190462879429e-07} {"commit": "85ecbc77c3a94a4ba9a5087ec96fe232b640516c", "message": "fixed markets cache timer bug\n", "proba": 3.440886473526916e-07} {"commit": "6307edf5655e9458cf5f49bf3df6c204fabf541d", "message": "feat: load_account from Horizon\n", "proba": 1.9545898055639555e-07} {"commit": "7a93a73a60fad9f102cc939514602eb946e37384", "message": "fixed orgs param\n", "proba": 6.975468522796291e-07} {"commit": "4a6060f476aebac163dbac8f9822539596379c0a", "message": "app: Use current_app.babel_instance instead of babel\n\nThat way we can use Babel.init_app() later\n", "proba": 1.7861431842902675e-05} {"commit": "a06d07e1d947fae010f0c1bebd42ce34df244e93", "message": "Made POST data accept a raw string\n", "proba": 8.451291250821669e-06} {"commit": "4da9a283bfef802c56bd2e11fe1b6cf0cc908187", "message": "Fix f string\n", "proba": 0.9999994039535522} {"commit": "1e73293efb902f223f60b89750d66f953338499b", "message": "better plotting of dictionaries on visdom\n", "proba": 2.369277609659548e-07} {"commit": "58ec62fe47bf6e7acb3302a29fd0df48c4342cec", "message": "Enable break and continue in templates\n", "proba": 1.7730422996464767e-07} {"commit": "5bd4d9adbedaff8218edcb9ed593e0fb98fd712a", "message": "Internal update.\n\nPiperOrigin-RevId: 313298589\n", "proba": 8.269444151665084e-07} {"commit": "7601715b409796838af8b20e0ed7b16b7652c6dc", "message": "Small formatting of normal.\n", "proba": 1.9413793950207037e-07} {"commit": "fcbc7a5a1551c1148ea747a51976c2047a3850a2", "message": "Clean up code a bit\n", "proba": 1.6493552266183542e-06} {"commit": "86465840261a8af2a777c87a6f09a3b4f5390c73", "message": "NewAPI: Check that at least source/dest are bound before attempting to plot\n", "proba": 1.7544927288781764e-07} {"commit": "6f0740fbd94acc2398f0628552a6329c2a90a348", "message": "Allow start and end arguments to take inputs of multiple words such as 'New York'\n", "proba": 6.538870366057381e-05} {"commit": "75a47485629725f9035c7a4aa7c154ce30de3b5e", "message": "Add new allowed host\n", "proba": 3.8597889329139434e-07} {"commit": "424518efd6ae94de2db3eb448863cda9bfc640c8", "message": "use the publication identifiers extraction\n", "proba": 5.0041446229442954e-05} {"commit": "3fe0a520a458a575117fc8d809f21efd133d2887", "message": "Add license file\n\nSigned-off-by: Tran Ly Vu <0555cc0f3d5a46ac8c0e84ddf31443494c66bd55@gmail.com>\n", "proba": 1.2370831825592177e-07} {"commit": "4a4ba4e7f69368ffd6e60d386bf7f4ee6b920348", "message": "Fix a bug where wikitweets would not rejoin the IRC channel.\n", "proba": 1.477129387694731e-07} {"commit": "dc4d46dfa0376e4abf44d519ef5f3d0670a14390", "message": "Update iwconfig current() to handle Nickname field", "proba": 2.0708155545889895e-07} {"commit": "d8d64faf4f985137bfe566ef0d3f25bdaec70c3c", "message": "automatically close ROIsAnnotation when closing the last annotation step\n", "proba": 1.5180104639966885e-07} {"commit": "a4122f26fe7f6c9385ffb9384a316c0e13e268ec", "message": "delete crontest.py from github", "proba": 2.701360131140973e-07} {"commit": "73278a797762bece31df9bd34ab62c57fab2dfcf", "message": "pylint", "proba": 2.1026107788202353e-06} {"commit": "3e818f2d3bb7c2e2fca07d1773f06694553d2106", "message": "added load and save feature in deep_fqi_atari\n", "proba": 2.168873862729015e-07} {"commit": "63920aa7882bdc71e8fe30a773780885424af06c", "message": "BUGFIX: Writing to directory that doesn't exist\n", "proba": 1.873287800435719e-07} {"commit": "27fe502b9e0852bf25227577fe2976a1a6c7d5e7", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "bb18fd1bf35c5842f783e1896c6551ced08c2b09", "message": "Modify to apply a dependency package update\n", "proba": 3.841559816919471e-07} {"commit": "0e49e02b98317cd14c7ceb793c9d57b33f5ca595", "message": "more gchart update\n\ngit-svn-id: 6db40d0534cac73ba019dccfebee869402ecad0c@1541 7a2bd370-bda8-463c-979e-2900ccfb811e\n", "proba": 2.28500525167874e-07} {"commit": "f692535b5df1c5bc645bb9dc40e47cbb79a94c77", "message": "added admins names and emails\n", "proba": 2.608007889648434e-07} {"commit": "25548d56b0e723db5dd904e99debd03dfa1ea392", "message": "Chassis working?\n", "proba": 1.4153434335639759e-07} {"commit": "3d37aa0511a9232bc2b4ea6ffbf4066e1d065e26", "message": "404 for user-feeds of non-existing users\n", "proba": 1.3936330844899203e-07} {"commit": "806d7a7dad04c14a7a32da222c4137a4718f1064", "message": "fixed view name\n", "proba": 1.1262378620813251e-06} {"commit": "2982dfc20971d0805f263204bd84651e4206f3d5", "message": "Adjust form validation so that it does a geocoding check\n", "proba": 4.223757343879697e-07} {"commit": "cf5fee9e571af5999949569678dc9af9292d1379", "message": "Remove LaunchpadBugImport tests, which are now in oh-bugimporters\n", "proba": 1.2548220240660157e-07} {"commit": "eba41b9bffb823dfab92135bd848b66e554c90e7", "message": "Handle unicode in api errors.\n", "proba": 4.785468377122015e-07} {"commit": "4f4f58a1bb6861523f66c7d3b6bb815da9ac41e4", "message": "Minor: improved comments and docstrings\n\n\ngit-svn-id: 033d166fe8e629f6cbcd3c0e2b9ad0cffc79b88b@1214 3a63a0ee-37fe-0310-a504-e92b6e0a3ba7\n", "proba": 6.162456429592567e-07} {"commit": "49021a70448821b28c58b6adda1e5bf8a0c9b296", "message": "On map, put people who haven't yet listed their locations on Inaccessible Island, in the South Atlantic. That way they'll show up search results.\n", "proba": 1.0357974389307856e-07} {"commit": "7a9f3f6cc880d2bcf0cdac8b5193b471eb2b9095", "message": "Refactor Adapter pattern\n", "proba": 2.780022612114408e-07} {"commit": "e8ec681a7bd6485874114b2eec4050e931fd7ee6", "message": "karma: update UserKarma for the new row structure\n", "proba": 3.256470506585174e-07} {"commit": "afe196fcdd7ddbf311ce65a4f82dde5a5fa8c0ed", "message": "config: Added password_command as config option\n", "proba": 8.483442002216179e-07} {"commit": "de6f307912b0ade8e063470f4eb6cf1a6d6c04dd", "message": "Searching for a project nudges you to search for mentors in the language of the project.\n", "proba": 1.1111467301816447e-07} {"commit": "175ab46227b005f22f32570be0c576a48e70308b", "message": "BLOCK_READERS\n", "proba": 5.932230851612985e-05} {"commit": "37a5126f75ef64492c918d6e5f9b84641c7f03c8", "message": "fix import\n", "proba": 1.1673153039737372e-06} {"commit": "081e677f3a618847a1cfb89497df0220a74fa809", "message": "Updates way to add phenotype terms\n", "proba": 1.469717147983829e-07} {"commit": "bc40db9fa1c4663db604cb7890de10ef91d6a65e", "message": "Use correct name\n\nYet Another Bug which wasn't feasible in production due to the\nprotection layer offered by carbon-c-relay.\n", "proba": 1.0307895337291484e-07} {"commit": "af5bd1d0eb151f1a9a7c44cff7486b348af838b9", "message": "early_stopping time_obj_tracker\n", "proba": 9.409637641510926e-06} {"commit": "a8ed608b169b87a37d3f64f164108d6bf2df9469", "message": "napalm major version as int\n", "proba": 8.299435307890235e-07} {"commit": "4e6388d627fcf78d0f5dd4a7565adc186a84d1a4", "message": "OVS-813 Finalized event consumer\n- full test ok\n", "proba": 1.1482160289233434e-07} {"commit": "3c63201d6113d01c870748f21be2501282a2316a", "message": "Remove unneeded import in gmail.py.\n", "proba": 1.2814591343612847e-07} {"commit": "5916a0730f971c8906db0e3e3fa89abfe817d0b6", "message": "use mesos_services_running_here in paasta_broadcast_log\n", "proba": 3.6276449577599124e-07} {"commit": "86ccf56fe8a6c50b154eb170f529e0dbaa3e34db", "message": "Added hash shortener\n", "proba": 2.724749776916724e-07} {"commit": "f7922bef544044f62b49c25b69de5fae8fa6e458", "message": "Update cs2quiz1.py\n\nFixed wrong score out of 25 at the top points summary", "proba": 1.3645302487930167e-07} {"commit": "f5aa2ab4796b258be54112ea87809e7ada4ee3e0", "message": "add advice shortlink\n", "proba": 7.996185331649031e-07} {"commit": "3968276898d89890a8c01ec5ed60ff9750de34f2", "message": "iktomi now is a namspace package\n", "proba": 1.5998666924588179e-07} {"commit": "5aff7fab29abf44ed8f1bc2f9035df763ee4fc1d", "message": "adding :\n", "proba": 4.0996863504005887e-07} {"commit": "236dd4c13d4d2f6cf30428363fcebe3d4cf42e20", "message": "All analysis functions are now implemented in terms of SheetOperations\n", "proba": 1.2464575149806478e-07} {"commit": "4cbf5eb1f0de72b3fa74f094ccd7fd6fd3a49790", "message": "improve function names; add docstrings\n", "proba": 6.581357411050703e-06} {"commit": "331c7a349e2d507ca52b24619ffc9cb1c4570e0b", "message": "Change default to *NOT* run image_harvest\n", "proba": 1.690321255409799e-06} {"commit": "4588a52ebfc3aee127a34a9e10067c0121c4f72e", "message": "add 'tab' and 'shift tab' for down/up movement\n\nSigned-off-by: Adam Stokes <0a364f4bf549cc82d725fa7fd7ed34404be64079@ubuntu.com>\n", "proba": 1.2344821698206943e-07} {"commit": "56799a93b9372e372c523b4f925a536e6290e82a", "message": "Continu even without captions just make it empty", "proba": 8.567559461880592e-07} {"commit": "693849b02dbf9a83227b6323d7058e2e0e09a77a", "message": "imports are already cached\n\n\nFormer-commit-id: b1cd2e01d366defcaf047692fc941bb357bead14", "proba": 3.8156686059664935e-06} {"commit": "c00a87791d6fdffd09ec6f6afb50de9b1891384e", "message": "removes arabic commas\n\n\nFormer-commit-id: 83797bd276bbf25a28af95c4beb92fc289031e89", "proba": 0.9999819993972778} {"commit": "a853d5981252ab14e4010bc49aec99dcf573df88", "message": "whitespace cleanup\n", "proba": 2.594866782601457e-05} {"commit": "c1d1388729415d212051b7ef4249c26284851fc7", "message": "Unit test for import with video data tracks.\n", "proba": 1.0512663806139244e-07} {"commit": "ce6d05097879bc75f23b4253f9a7e07a51ebc685", "message": "Arrgh!", "proba": 3.657254694644507e-07} {"commit": "791fb484937cabeb3a098bcd173db782efe53d7c", "message": "support filtering of Authors by organization and positions\n", "proba": 1.1592894111345231e-07} {"commit": "529b69c83c76f34ff0771003ef26c98604d64223", "message": "now correctly encoding string arguments\n", "proba": 2.9890372843510704e-06} {"commit": "6c7a47cb30c8dce002909faca579524416b77fc7", "message": "attribute correct size to regiters\n", "proba": 4.4254820750211366e-06} {"commit": "d1736a1b7812215791aa0142e45310f4975b825f", "message": "Only support ascii strings for slugification\n", "proba": 1.7720820721933705e-07} {"commit": "71265b648aa9410c0ec9aa250e50bf421dda23a4", "message": "Rename TestCase and test methods.\n\ngit-svn-id: b0ea89ea3bf41df64b6a046736e217d0ae4a0fba@206 806ff5bb-693f-0410-b502-81bc3482ff28\n", "proba": 0.01776084676384926} {"commit": "86f9bebd1c12bbd68f246074971bcbeaae978d24", "message": "Release 1.2.11461\n", "proba": 1.474448225735614e-07} {"commit": "d16622c6ec3175cd9b0c3fa8d8a928aa568d7dcc", "message": "Split resource create into create and check_active\n\nChange-Id: Ib8206f204e8805936defaa3431ecdf34b161e724\nSigned-off-by: Zane Bitter <1899fff8e7db19a598ee9d835aa1a232f82ea264@redhat.com>\n", "proba": 1.8602331408601458e-07} {"commit": "7a2dddf6e1452b9c98a94c2b1d803a78f9e76dec", "message": "DATABASE_URL support added for heroku\n", "proba": 2.169117863104475e-07} {"commit": "8aa52ea8f07f922bc6d5952ca8ad56bedd042a1f", "message": "Bump version number.\n", "proba": 2.152537348365513e-07} {"commit": "bc573e6d77b27f1118b336205bc18d4fcf021252", "message": "Avoid tag duplicates\n", "proba": 0.0008608587086200714} {"commit": "ba2b55cc72261cd360935992ab2e8196ac6a1278", "message": "remove unused cache nonsense from pagegetter\n", "proba": 4.1114364535133063e-07} {"commit": "7b30d170a4c8e411a9a09979e5d14d158519168c", "message": "bugfix\n", "proba": 8.478961035507382e-07} {"commit": "8e3af63c4daaafa8dbdf191fca163a63567b9a98", "message": "spellfix: reccomended -> recommended\n", "proba": 2.2827988743756578e-07} {"commit": "76655fd33d7db4215ae2c4245b43a60ffeac579d", "message": "test: Allow \"tuned\" audit messages\n\nReviewed-by: Stef Walter <8a7fbf0f15d3ad982af54ef28f5c117d2494b76c@redhat.com>\n", "proba": 1.328981085180203e-07} {"commit": "24ed0da3731b2cadef35ef451aab5c37d84405da", "message": "typo in dimension reduction\n", "proba": 9.029120519699063e-06} {"commit": "1085c00f4372a0ab63cf8b597983adecf3f5ad76", "message": "Refactor conversion to float array.\n", "proba": 1.4411747883968928e-07} {"commit": "6c62e9a67a0cbd4a38ab36c98160cb6321a7f67c", "message": "Stuck in the past.\n", "proba": 2.2995602932951442e-07} {"commit": "0ba69be32f3d51d57f4b69cc0c2441735d8887bd", "message": "search, state emoji\n", "proba": 0.0006837141118012369} {"commit": "67f6cfa89f8099096bea2fa67f4477db6c7ac63e", "message": "Minor redundancy eliminations.\n", "proba": 2.812020341025345e-07} {"commit": "fb223397ccdee519af7e17dc73db864fe0120e8b", "message": "Create a random HDFS folder for unit testing\n", "proba": 3.542630793162971e-07} {"commit": "5aa1dc04976a155cd27572c2c890a1dbbf36a71d", "message": "Fixed ViewMap overlay method\n", "proba": 2.203743036943706e-07} {"commit": "4057b518337d9916689f9dc327543913c8add0a6", "message": "optimize CrossEntropyBinary cost function (via Bas)\n\nfewer assignments (possibly better GPU compounding)\nfewer operations (no more negates)\n", "proba": 1.3446722846310877e-07} {"commit": "6384feddd02c193d8b77f090f311a2ec810f707b", "message": "\n ----------------------------------------------------------------------\n Modified Files:\n \tXMLSchema.py -- added getAttributeContent method wherever appropriate.\n\n ----------------------------------------------------------------------\n\n\ngit-svn-id: c4afb4e777bcbfe9afa898413b708b5abcd43877@733 7150bf37-e60d-0410-b93f-83e91ef0e581\n", "proba": 5.990957288304344e-05} {"commit": "c297da4df91758b38df7bd7b73a118188fdde651", "message": "pass through the timeout for calls to lock_parent_directory", "proba": 7.985523780007497e-07} {"commit": "6b2935379f46429b125ba3a786324a6617296ef0", "message": "Adding \"LinuxMint\"\n\nMoving the Nvidia fix just broke another PR here on GitHub. This is the original commit:\r\nhttps://github.com/Ultimaker/Cura/pull/909/commits/8b750cb27c509b8d16f72c34c05de7f6784eceda\r\nThanks to @Nihlus\r\n\r\nWhy we are still listing all the distributions? - Still it isn't clear whether this problem is a \"Debian\"-specific bug or not.", "proba": 5.623779998131795e-06} {"commit": "a8be42471c88479be9d3df3c2d7cfe29ec6d83cd", "message": "Prevent files being opened with '+' in the mode string. Fixes Issue 129\n\n\ngit-svn-id: 74b2def6592cf29d88d1a5d33b5c4a2732d8507c@814 67cdc799-7952-0410-af00-57a81ceafa0f\n", "proba": 2.375747044425225e-06} {"commit": "a4674432a17fc7e5a2b731cd184ea992d7a89c0b", "message": "Fixed undefined variables in ViewMap sample method\n", "proba": 2.073236231581177e-07} {"commit": "a0b6a236ca1da1e6b22aed2f2329dca2d2252bb3", "message": " ----------------------------------------------------------------------\n Modified Files:\n XMLSchema.py -- required another condition in getItemTrace,\n need to check if at or ,\n also added some info to SchemaError throw in checkAttributes.\n Now provides namespace/attribute and the Schema Item containing\n the offending attribute.\n\n ----------------------------------------------------------------------\n~\n\n\ngit-svn-id: c4afb4e777bcbfe9afa898413b708b5abcd43877@777 7150bf37-e60d-0410-b93f-83e91ef0e581\n", "proba": 1.3486729585565627e-05} {"commit": "db33f2d1e14c48cd2c73ae3e3c835fac54f39224", "message": "sympify: lower bool priority, raise int priority\n\nWhy was it necceessary to have exceptional case with high priority and slowdown\nsympify(1)?\n\n %timeit sympify(1)\n\nold: 23.9 \u00b5s\nnew: 21.5 \u00b5s\n", "proba": 0.9999871253967285} {"commit": "58a2bf41a19e825752dcc1bd643d8280aa792d15", "message": "replaced fs.path by os.path\n", "proba": 0.01584681309759617} {"commit": "4dac601f24556f3949e7a0e711d1a1b56215beac", "message": "Bump version for release.\n", "proba": 1.1316949866113646e-07} {"commit": "2d1beba48610718d4e5afb5bf778b41d2132d0ce", "message": "Fixed lbrt return type when None on ViewMap\n", "proba": 5.171247039470472e-07} {"commit": "e5bea031515eafd24a8b86abda0a03bace55f78c", "message": "Use title() instead of capitalize() to properly capitalize hyphenated names\n", "proba": 0.00018403252761345357} {"commit": "faa86163d2d4914bff0355d42f76cf96b3beb004", "message": "Fix repr for TraitMenu\n", "proba": 2.1954697615456098e-07} {"commit": "6b414e906dad9118aa7362f26a0250d8dbfd7681", "message": "Fixed a name error in symsynd\n", "proba": 8.541323381905386e-07} {"commit": "bafedeed31b4674d67520ce7843e962a350e148d", "message": "Advertise the next USC as part of the 21:00 tell_time\n", "proba": 1.6750813358612504e-07} {"commit": "3256a619e99696602223dbdd400732a660fc0aee", "message": "skip group builder test.\n", "proba": 1.240777720568076e-07} {"commit": "4cca4817c9fab9596174f5afd22c34525d816edb", "message": "ignore OSError (e.g. a file has gone by the time 'chmod' is called)\n", "proba": 1.3051992198143125e-07} {"commit": "51344669f5a98848573ed6db6da5cd57b1e7f6ff", "message": "Update connection.py\n\nRefactor of get_connection() in order to fix the SSL problem when run the restore-backup.py script:\n\n\u00a0\u00a0\u00a0 self._sslobj.do_handshake()\nssl.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)\n", "proba": 0.00017304017092101276} {"commit": "926bf60c77673571cb8f6d12e3754507f41b9e80", "message": "add optional args\n", "proba": 1.140374479291495e-06} {"commit": "1b7ec47a0df39395fa550fb53a2f6518f4a90f9a", "message": "Made important parameters configurable.\n", "proba": 1.4701251416227024e-07} {"commit": "2573d4ba20649d0ed506b34bfe8aa932f17a6bbe", "message": "Fix handling of CTRL+C on Windows\nWindows doesn't support os.killpg\n", "proba": 1.055785219250538e-06} {"commit": "37168c0163326cda4abcdefa7ec33cb0d8c35f08", "message": "Adjusted printMouseEvents argument\n", "proba": 9.613565907784505e-07} {"commit": "088f6ae6ec284161a42092c4679faa70a8ce813d", "message": "Add context to search_read_all\n", "proba": 3.071788887609728e-05} {"commit": "12b98d4bac66aa2833f7fd14bcd9d5fb5158cda8", "message": "update_from_wiki: return whether update succeeded\n", "proba": 0.9992567896842957} {"commit": "8a8f502da3c452dbccda86e2c6a04ff10220cf62", "message": "and another comment/cruft line\n", "proba": 1.1331831473171405e-07} {"commit": "ccd52229f0cb4ca0a9029c9706eab6ec7e9767ed", "message": "minor alteration\n", "proba": 4.2508318642831e-07} {"commit": "8038f54b175e694841ee7846c1468dbe4379aa89", "message": "fix for basedir == None in Ingest\n", "proba": 0.00014174575335346162} {"commit": "87682ae2417614bcf87cd964ee2bba8624729a58", "message": "FIX proposed for S3io\n\nWhen I tried running this code, type(outputs[key]) was never == list or == str, so the method, self.s3tolocal, never got called.\r\nWhen I tried debugging, type(outputs[key]) turned out to be ", "proba": 9.608434083929751e-07} {"commit": "fc8121eb53272e378e525340297b4d8aed280e66", "message": "[Fit] Add \"do 10 times\" button\n", "proba": 7.015777896413056e-07} {"commit": "acd31dad2248092d49b63ba6c4a619c714ae4b89", "message": "fix for os.name env marker\n", "proba": 5.412642849478289e-07} {"commit": "bf7e6fe58ba8ffc2aa92febd431e6867c467f047", "message": "Update charsets\n\n- add all digits to setset\n- add upperset letters to alphaset\n- set vars must start with alphaset char\n", "proba": 3.5401382092459244e-07} {"commit": "b7429befa5016032480b64625895171263f559fd", "message": "Small change to bottom text\n", "proba": 7.397718491120031e-07} {"commit": "b524b8047467f0282e303aeec090833baf16dfd9", "message": "MAINT: Use comprehension instead of map(add, ...).\n\nThis is more straightforward, and toolz.curried.operator.add requires\nthe latest toolz, which isn't on travis for some builds.\n", "proba": 1.1204982541812569e-07} {"commit": "f7aea1c1a7872f6f0bfdfbdd0cda923a639d0dde", "message": "Remove test_decoder.py\n", "proba": 0.00010651404591044411} {"commit": "923538be415d2667e113fdca447d2d92d2de06bb", "message": "Add a test for missing bg color attribute\n", "proba": 6.332572866085684e-07} {"commit": "2ac5760c405cdd9cc642887ba02ca16c8edb11b6", "message": "Added SemCor 3.0, resolves issue 530.\n\nsvn/trunk@8564\n", "proba": 4.3397804461164924e-07} {"commit": "ccfba7fc4c4510406aa0a6d58ffbf1a9159bd07a", "message": "Remove funny chars from comments\n", "proba": 1.5455991331236874e-07} {"commit": "acf0e9484eeda6db8657767ebee6c6acd386511e", "message": "Added custom log handling test case\n", "proba": 1.754949465748723e-07} {"commit": "68cf8281b512ea5941ec0b88ca532409e0e97866", "message": "Fix circular import\n", "proba": 5.261072146822698e-06} {"commit": "24ccd1990e989b7360b2b71456307c39435f99c8", "message": "Done with basic integration and should test subset\n", "proba": 3.184479453466338e-07} {"commit": "a0de7f59f4d0b3b4e66f36adb71b208bed5f1c00", "message": "Transpose based on EXIF orientation\n\nTranspose the original image before resizing based on EXIF orientation\ninformation to display image in the correct orientation. If someone\nuploads an image from an iPhone (for example) the image is currently\noften rendered in the wrong orientation.\n", "proba": 1.2446318464753858e-07} {"commit": "d623e1bb8969fda4fa36c2a5765931768b02a741", "message": "Add a test for diff/file_diff with ignore_empty=True\n", "proba": 0.9992086291313171} {"commit": "a67a25b80c70450c3a68a3f8f6c2925a64a735b6", "message": "version bump and ug regen\n", "proba": 3.161892152547807e-07} {"commit": "fa1f80f2cb99cf44c7584eed85a04fb8dee56a38", "message": "Move the encoding and shebang to the first two lines", "proba": 0.00030354762566275895} {"commit": "1b62f6d6a5b65a746eb7de939ad9f0deb6cdb141", "message": "Add profile selection combo box to header toolbar\n\nSigned-off-by: Dan Yeaw <2591e5f46f28d303f9dc027d475a5c60d8dea17a@yeaw.me>\n", "proba": 1.2220773726312473e-07} {"commit": "7337a8c0f3397afeed20912787f3bd862a2fdf64", "message": "FIX clear method\n\ncloses #65\n", "proba": 1.426483606792317e-07} {"commit": "04aa968a70b8065c9c9cd013d1266f8988c4220a", "message": "Cleanup: remove accidentally committed maxDiff change\n\nThis will be restored in a separate pull request\n", "proba": 2.1494849988812348e-07} {"commit": "70a8ccef0fbf389ca4f726edd57fd212d2005b55", "message": "return count, results, next, prev\n\n* This returns /api/vx/hosts/ to having all the nice response items like\ncount, results, next, prev. I had \"chopped\" that off by explicitly only\nreturning result.\n", "proba": 1.1100770080929578e-07} {"commit": "38f03ea32f31de3ddfd7222d0d173cc163460dab", "message": "Allow auditors to see same /api/v1/config information as admins\n", "proba": 3.160767505505646e-07} {"commit": "cc0521c2f72c534e2fa94573f90e9ec2bb169405", "message": "use utc time for timestamps\n", "proba": 0.0001049751226673834} {"commit": "2691ddd63a0b31f8e7c5f5eca7e7731d1e7191b8", "message": "fixed database.UserDb code documentation\n", "proba": 2.8606265800590336e-07} {"commit": "ca6e6136165af1fef98473148381933eb304d642", "message": "fix: error when fetching tags for above 1000 songs #102\n", "proba": 5.462101739794889e-07} {"commit": "e14a8280deb6ac4c4cea902f04f1280ca16013f5", "message": "Fixing boolean syntax error for python\n", "proba": 1.3398070223047398e-05} {"commit": "0a724d3a2859b50d672c9358f212c8d26400b562", "message": "Fix is_package_installed method of YumRole\n\nThe previous implementation could lead to not expected behavior.\nEg: role.is_package_installed('gcc') would match also to 'libgcc',\nwhereas 'libgcc' doesn't depend on gcc, the method would return True\neven if gcc isn't installed.\n\nThe new implementation makes use of:\nrpm -qa \n\nWhich is a very strict match.\n", "proba": 0.9995545744895935} {"commit": "e1438455c0e03bfeb33866bbbc89cb5218e0f8ad", "message": "database.py changes\n", "proba": 1.299170321544807e-06} {"commit": "dc3754d8ffeb5e17a93d397e9c633b8b056dc482", "message": "Temporarily skip Vake - health district units\n", "proba": 1.1862527315997795e-07} {"commit": "85d1934fc28eced611ea8486de3541b9922485b0", "message": "features.py: Sorting\n", "proba": 4.6492800720443483e-07} {"commit": "d39bea62dfd44d68d79ff0fab5355b87a4b0203b", "message": "pick any item, not necessarily the first\n", "proba": 2.149035253751208e-06} {"commit": "ef839abe0ee9a2fccd9087ddc11d90820530a0bb", "message": "do database commit after model creation and make a drop_db method\n", "proba": 2.706331656554539e-07} {"commit": "bea45c998710fdfc8c03ba8ae9223a8eec8d8f92", "message": "pep80\n", "proba": 3.4939628790198185e-07} {"commit": "e2a26a6b8ad05a06e0b1a3e3c920b44fba0a8dfd", "message": "* indexes on tables\n* try catch for 0 byte files\n", "proba": 2.1770532043774438e-07} {"commit": "ff8d2f5b4922ede81d74a64bc44ce57b84827bba", "message": "convert_currencystring() in try except in CostSaleLeadsource\n", "proba": 8.097767022263724e-06} {"commit": "c003d26d6e48bb94a5d94ccd6f2d5bc767e741c2", "message": "Leadtime does not return full list by default\n", "proba": 4.1313955989608075e-07} {"commit": "d472faedfd58c2619583672ee5807bf62495a571", "message": "[IMP] cron_stock_catalog: formateo de fecha con / y redondeo a dos decimales\n", "proba": 2.365574829354955e-07} {"commit": "c72b28ece7fe5313c7eff5f26d9ef0baaad1bad2", "message": "Update denormalization command\n", "proba": 4.297669420338934e-06} {"commit": "74c4c832b5f99643ac23ad3885f22f7a493016f7", "message": "Update denormalization command\n", "proba": 4.297669420338934e-06} {"commit": "159c80c8ae5a9e28c421129dc9df53a5ac2a3f63", "message": "reformatted simulation info times\n", "proba": 2.5353222099511186e-07} {"commit": "955537f9165ffda39d6686584e76916828a26662", "message": "replaced --protein with --everything\n", "proba": 0.000552294310182333} {"commit": "9002ff94b2411fad33ddbdab978bc0e828a32604", "message": "renaming for better name.\n", "proba": 6.143353857623879e-06} {"commit": "14c307165a973275b65ee6996d4a9ad3629373d4", "message": "small bug fix relating exception catching (was trying to post result\ninto exception log when result might not have been populated due to\nexception causing it", "proba": 1.5329862890212098e-07} {"commit": "6bde70ef9b468dd6c5af01bcf75c0b15160f3d72", "message": "Improves IMDb ranking\n", "proba": 2.3945147404447198e-05} {"commit": "eb7658a8da70e1617c8cee118a6d9c8ad0760207", "message": "Allow creating fragments from the `tag` object in `markup.builder`.\n\ngit-svn-id: 35afe1d183cbd4849519a30d21151995795e8f1d@145 de761a21-4c15-0410-92fa-db90950b6ec0\n", "proba": 0.0001636816596146673} {"commit": "7c876cdce0a720bf189e824ccc73ff98913ccc8a", "message": "HttpError has empty body by default\n", "proba": 6.729825599904871e-06} {"commit": "5c4191184aaaa5b02814882c537f3658e72d34b7", "message": "update bottle.py to v0.11.6\n", "proba": 2.074062734891413e-07} {"commit": "7ebf1beec0912273317ed094e1c3806b2e910600", "message": "Remove commented lines\n", "proba": 2.198612634174424e-07} {"commit": "376c849e4964c847e8f4d48ede984b96d5e9d3e2", "message": "make role optional in Person constructor when used w/ primary_org\n", "proba": 2.1992354959365912e-07} {"commit": "dd2bc0c135924efd07b6585747f72b4742ac4305", "message": "avoid string concatenation\n", "proba": 0.9828300476074219} {"commit": "eabac56eff7f7ab596c1e4d9cf51f2a990298cd5", "message": "adopt changes to cuts.py from north-south-cuts branch\n", "proba": 1.3268838472413336e-07} {"commit": "bc11af0d6bebfa26d146ccd62b2a188d0e37e08f", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "4256ef2229959996ec55e80fa7dff51da6f10283", "message": "deprecating having to fix DR1 target types. We broke backwards-compatibility with DR1 a while back.\n", "proba": 1.3169598389595194e-07} {"commit": "3ce6e8e9ba3bcaf99d52e4487c5188f70c4e41f0", "message": "changed default setting for A_pb\nSigned-off-by: chipmuenk <1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@chipmuenk.de>\n", "proba": 1.324949181480406e-07} {"commit": "1170298deefac499ef7b258bc66da4c19110dd38", "message": "less memory usage as not all time step are stored\n", "proba": 9.293338507632143e-07} {"commit": "f8d72496a394e1e21334f764678b4b8f9762bb32", "message": "didn't import enough files in __init__.py in py_lapack before so I fixed that.\n", "proba": 1.220997347672892e-07} {"commit": "6de362b2dc3c29051e52f98b97b3ca14c5d6f353", "message": "Performance improvement: direct acces to articles in the database (without using the User object).\n", "proba": 1.0222978374940794e-07} {"commit": "bfe66de2fc279955cac279f860ce9fde1c9162d4", "message": "Also translate prefix to module-name for types\n", "proba": 2.919819621638453e-07} {"commit": "6785219c9e4e4bfd1d28e4802e992b84000a7f63", "message": "pyatk.channel.uart: increase default read timeout to 5 seconds\n\nDoesn't increase read delay in normal operation. I'm not sure why I originally set it so low.\n", "proba": 1.342024233963457e-07} {"commit": "a98d53c904bc766d3a98fae5f2c553d177bd0b15", "message": "const fixes", "proba": 9.020419042826688e-07} {"commit": "4c7d19a3a5417944c6a13e5a80a4c0bcfc24b7ad", "message": "chore: CSRFProtect instead of deprecated CsrfProtect (#1980)\n\nCo-authored-by: Yurii Biurher <86413a8612cd1c0466757303a18e8e511bf6005a@zorallabs.com>", "proba": 1.1190672921657097e-07} {"commit": "a959329f9d5d19bf34b33df11f3cce9bf1f955ed", "message": "add a static delete method\n", "proba": 1.6889966900635045e-06} {"commit": "fb496b95ef03152f328bb489f19a256394284906", "message": "added header debugging tool\n", "proba": 5.159995453141164e-07} {"commit": "5e02a4c3c7664d58375ec4af980e25322f98eb3c", "message": "add missing converter functions\n", "proba": 1.7901768387673656e-06} {"commit": "e542033896fc8dd4d13a5d5536c0ef5d0ce92c1c", "message": "DOC Also displays median in bootstrap analysis.\n", "proba": 1.1256027931949575e-07} {"commit": "ec9bc89372670e623dbe98c34591fba62a0ee64a", "message": "Rename merge to pack in postp.\n", "proba": 1.0730563815286587e-07} {"commit": "a99b7289b36f7930891abc8a476c4e0d1cd52461", "message": "provide more debugging info\n", "proba": 1.2400136029100395e-07} {"commit": "ef628bcdd79ceb28e2b320059c9b00e52372663a", "message": "Improve the error message when PyGMT fails to load the GMT library (#814)\n\nWhen PyGMT fails to load the GMT library, it raises an error:\r\n```\r\nGMTCLibNotFoundError: Error loading the GMT shared library '/opt/GMT-6.1.1/lib/libgmt.dylib'.\r\n```\r\nHowever, it's still unclear why it fails.\r\n\r\nAfter this PR, the error message will contain the original error\r\nmessage. For example:\r\n```\r\nGMTCLibNotFoundError: Error loading the GMT shared library '/opt/GMT-6.1.1/lib/libgmt.dylib'.\r\n dlopen(/opt/GMT-6.1.1/lib/libgmt.dylib, 6): Library not loaded: @rpath/libnetcdf.15.dylib\r\n Referenced from: /opt/GMT-6.1.1/lib/libgmt.6.1.1.dylib\r\n Reason: image not found.\r\n```\r\n\r\nCo-authored-by: Wei Ji <9490087a8b98c7de12813b2e194ef86ac3043a88@users.noreply.github.com>", "proba": 0.0008107511093840003} {"commit": "0c1e64418952c016780b9edc1e8e0654a8bf8923", "message": "fixed show to put - if a phase hasn't been run\n", "proba": 1.7385262651714584e-07} {"commit": "28f4fa3812acf3354f7990d457b69af488ba808a", "message": "for fill_ugcs in county mode, don't use firewx hack\n", "proba": 1.332882817450809e-07} {"commit": "456fa874703f77489307d77c9bedffd7af2d1c2d", "message": "Formatting/pep8.\n", "proba": 1.688378432618265e-07} {"commit": "d3bc063cc35f5b7bc806c83cd23780108c509fb6", "message": "Disable checkin in embedded mode.", "proba": 1.208574786915051e-07} {"commit": "0f9afd07b34f1e0e4116b7b0611be80b3e3a879b", "message": "added notes to docstrings\n", "proba": 2.2689665968300687e-07} {"commit": "454abe8f3081e8186b29d677e2bca88ca10112c7", "message": "Add support for a GYP_DEFINES environment variable as a way to pass in\ndefault values for definitions.\nReview URL: http://codereview.chromium.org/62128", "proba": 1.402154481411344e-07} {"commit": "8dfa55e2346cfe4c55f5a1e20f506fb18fbd36dc", "message": "Do not use shell for tools take defines in the command line. Angle brackets are passed in the value of GR_GL_CUSTOM_SETUP_HEADER breaking subprocess.Popen when shell=True. \n\nCode review: https://chromiumcodereview.appspot.com/10836144/\n\nBUG=chromium:141132\n", "proba": 5.4041815928940196e-06} {"commit": "e3633007ca02c151ca8fe3b048347585ce0eb67d", "message": "Minor cleanup.\n", "proba": 1.4735500997176132e-07} {"commit": "8ef9d43f2c25df37dbf25096b6a1f568765ccb27", "message": "Minor cleanup.\n", "proba": 1.4735500997176132e-07} {"commit": "8468ea59586b3f3e0ef20a9d46f94d1502c2c75f", "message": "Fix dangerous bug in POSCAR printer.\n\n\nFormer-commit-id: 0f8eda973036fd66d8e01d0e1bca632660e9fe1f [formerly 47935c383dd5ca4b7680ba5cbae1880fb1e1b59c]\nFormer-commit-id: 5abf9bff8d48f0c9cf075d414ae48219496ec2c7", "proba": 0.9999555349349976} {"commit": "301b2ca9cdf33665312e092937c63b1db7db888f", "message": "utils: Add missing imports\n", "proba": 9.477298590354621e-06} {"commit": "20d41656488ea43978f749e2e34303e49981695c", "message": "mzn: fix imports to include OR tools\n", "proba": 2.1707651853830612e-07} {"commit": "ad5d91c76f02e1dbd0a760354d9d14e39a2d974b", "message": "minizinc: remove solver dependency from preliminaries\n", "proba": 5.17115836373705e-07} {"commit": "28590f9493a742b5dda6feb073c79d39217b5f2a", "message": "minizinc: fix problem with arrays of enums\n\nFixes #38.\n", "proba": 1.1394022436661544e-07} {"commit": "8e260d6e2d401c06a6dcd599f986297d8f35e58d", "message": "Update robust.py\n\nAdd ability to return outlier masks for mean and std\n", "proba": 3.47360639807448e-07} {"commit": "2e327d136925a0dbceb85469f21d1591d70fa5e4", "message": "fix bad paste/wrap\n", "proba": 1.1662849601634662e-06} {"commit": "3648ed172a5e4a07e62c02c76628d87c0dcc5d25", "message": "[gamma.makeSRTM] check nodata values and only use one for all hgt files\n", "proba": 1.2157975959325995e-07} {"commit": "baa3a70ff75179bee131c9a83c862f8c68b4315a", "message": "Adding sparse lattice to weights builder\n", "proba": 2.6593170332489535e-07} {"commit": "f5d080368eed6c93941a822e33a2189aec0e5a27", "message": "Change BNG generator to call new expr->str function\n", "proba": 5.917306111768994e-07} {"commit": "4be1f0737ef7aff1dfa6fb5eff03495de3305680", "message": "tropicalization working and algebraic differential equations\n", "proba": 2.5464930786256446e-07} {"commit": "f611ef0895422fd2ed811b2062f8651aac7537f4", "message": "rm print\n", "proba": 2.34952567552682e-05} {"commit": "9395ef840d9dd9194b2f89e2a7240bb951662e0b", "message": "add missing imports\n\n\n20060509175555-b59df-0be77e1dfb9950a8dd1f8bf3611b4c0250377b79.gz\n", "proba": 0.0006049814401194453} {"commit": "caef05a8994246011bd3a7f21ed4766061e7680a", "message": "transitioning to making the write method a profiler as well\n", "proba": 1.7695928988814558e-07} {"commit": "3cd595fb0a2f1d027aefe70b59e235ef3dd14d61", "message": "update basespider download\n", "proba": 2.2298625879102474e-07} {"commit": "090b95aa4ee87bb3f7a725e5cba3bdc242353170", "message": "More tests.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 1.1015496426125537e-07} {"commit": "550236bf7c2c60b85397d60c3f5db6668d62cbcb", "message": "minor fixes to the mechanism file generator\n", "proba": 1.5883901482993679e-07} {"commit": "8bdc17c01e840c39baca1bcf67104fbb5b9fbcbf", "message": "Consolidate constants\n", "proba": 3.136519126201165e-06} {"commit": "0d14e45f92f39a6cdfb555902f682e2509119d5d", "message": "added additional display methods to Perf and Group Stats\n", "proba": 1.2863752374414616e-07} {"commit": "d47b7248ecfdded1203071c81889ffd2b5cd9bd9", "message": "prefix 'private' method with _\n", "proba": 0.02300320565700531} {"commit": "b6a4872fcd891593c95dfdc862e1302c5fbbc181", "message": "added geomname param to geojson import\n", "proba": 4.1836361219793616e-07} {"commit": "b8933c732f44b2cb2bf8ef2549abeaf0b0256dd1", "message": "Added testing file\n", "proba": 2.434733517020504e-07} {"commit": "e49b32c2f14ae589bf46d4826a1fd25f4276565a", "message": "step_size() implemented as a (callable) instance variable\n", "proba": 1.7377916492478107e-06} {"commit": "3d9575c5509089614eb2182bfeca80c2356160cf", "message": "Show related items on document changelist page\n", "proba": 1.7525528051010042e-07} {"commit": "27b11e75cb7ed0eabb32ce9ebb0e4094cf455468", "message": "modified: tananda_os_builder.py\n", "proba": 3.282746945387771e-07} {"commit": "8d2a93e927397b80133e605c11787fec1a46f6e5", "message": "Only call _populate network if the member port is discovered\n", "proba": 2.1023129193054046e-07} {"commit": "3110e8ee08181b464caf613129a437cf86d950b2", "message": "Add test for multiple self-join.\n", "proba": 2.2077398398323567e-07} {"commit": "c00682918f481451858ee2c79e75da6dbe6d1186", "message": "correct function for masking (thanks to Claudius Wehner)\n", "proba": 1.1263652055504281e-07} {"commit": "0347d00d0e0c2aa21ce54f8884cdc9fad35fe665", "message": "moving dox from jd\n", "proba": 2.3372665509668877e-06} {"commit": "ac1fe67e09366e8db7723c5b7052d1dc33220cc6", "message": "listdir() catches and ignores possible OSError on a non-existing MIB dir\n", "proba": 1.5404883697556215e-06} {"commit": "09abe5d4544518c00cfea0d247ab56909c31a1cd", "message": "Fix mysql test failure.\n", "proba": 2.9814984827680746e-06} {"commit": "19743b9bf55de17ffb48dfcf9bc52babbe25ac21", "message": "added cassandra-driver to requirements\n", "proba": 1.398796740659236e-07} {"commit": "9d8967430cc47bc78dc839f0fdb217684d0618f4", "message": "better dolfin error message\n", "proba": 1.0307094271411188e-06} {"commit": "89530b9c77d6e4b330c8c0888f27287c58637b28", "message": "MibBuilder.loadModules() now fails on missing MIB files\n", "proba": 1.800448075073291e-07} {"commit": "975b8b606ff99ddc08a0d721797a13735df26b6b", "message": "Support for more bindings\n", "proba": 1.2060210963227291e-07} {"commit": "49f81c36f6bfcd3ae3727f01d7d162131e2363c4", "message": "rz_clone()#on_success: formatting, doc\n", "proba": 1.2088414678146364e-06} {"commit": "80bc283676be51ef67fe7924bcc32adaa93fc985", "message": "Change timestamp format\n", "proba": 0.0001615793735254556} {"commit": "7c81e7dc96fc66c0dc82b2d431e07167c6a97557", "message": "Add failing tests re: Parser.ignore_unknown\n", "proba": 2.4689887823114987e-07} {"commit": "9ff4e2eb4814d3efeca8961a369fdb92709be03b", "message": "Add specific version numbers; Move the CloudBioLinux Installation under args.install_tools condition.\n", "proba": 1.0488349744264269e-07} {"commit": "2f4eec739a30210fd89159c32ae893be83622adb", "message": "Added yaml to trilinos variant that we want\n", "proba": 1.0834462216280372e-07} {"commit": "f860a306b4c9fc583a83289ae2a6ecf407214e38", "message": "Add more checks to avoid crashing when input files are missing\n", "proba": 2.3975624685590446e-07} {"commit": "e43fa4a0897d5dc909c4f8d77068c87393d1c03e", "message": "Remove print\n", "proba": 1.5574403732898645e-05} {"commit": "f84d873f6221ad4e24b97750a41fdd9b5fe5b166", "message": "rm unneeded import\n", "proba": 1.0500034477445297e-06} {"commit": "c09353efff2d2b8f05c0990e0cdeab5b46107e2b", "message": "- added temporary screenshot on failure functionality due to issue: https://code.google.com/p/chromedriver/issues/detail?id=816\n", "proba": 3.412524165469222e-07} {"commit": "342faeeeddae30e6617e5e0c31be62175fbae5bd", "message": "Remove trailing whitespace.\n", "proba": 0.0008654757984913886} {"commit": "b9ade0de49c1c583b3c135ec0f0242bc0862ad14", "message": "fix push_command\n", "proba": 7.494880264857784e-06} {"commit": "2339b82c54ac62fc4710d68ba40d45c1554ea681", "message": "targets/atlys: Removed unneeded comments.\n", "proba": 1.11298994909248e-07} {"commit": "531a712fa9a51c3c8a7cefe58ffbdd0fe2d73133", "message": "Correction because I'm a dumb ass.\n", "proba": 3.412338571706641e-07} {"commit": "748d54cb46782fc1f6a5c46f8d270ddd516cf3c5", "message": "fix code style of test_dataset.py\ntest=develop\n", "proba": 0.0004485261451918632} {"commit": "aad3fd7c625195e307aae08f8a0dfcf1c423bdce", "message": "If some downloads failed, say which ones.\n", "proba": 1.3606994286874396e-07} {"commit": "5481e9ce00e15c682cc977f970eaf8f0342e97ef", "message": "Load transaction: Fix accelerator keys\n", "proba": 1.0647804629115853e-06} {"commit": "c08021cd8734b3cc183e7f65312d14cdaa8541b7", "message": "[SPARK-26776][PYTHON] Reduce Py4J communication cost in PySpark's execution barrier check\n\n## What changes were proposed in this pull request?\n\nI am investigating flaky tests. I realised that:\n\n```\n File \"/home/jenkins/workspace/SparkPullRequestBuilder/python/pyspark/rdd.py\", line 2512, in __init__\n self.is_barrier = prev._is_barrier() or isFromBarrier\n File \"/home/jenkins/workspace/SparkPullRequestBuilder/python/pyspark/rdd.py\", line 2412, in _is_barrier\n return self._jrdd.rdd().isBarrier()\n File \"/home/jenkins/workspace/SparkPullRequestBuilder/python/lib/py4j-0.10.8.1-src.zip/py4j/java_gateway.py\", line 1286, in __call__\n answer, self.gateway_client, self.target_id, self.name)\n File \"/home/jenkins/workspace/SparkPullRequestBuilder/python/lib/py4j-0.10.8.1-src.zip/py4j/protocol.py\", line 342, in get_return_value\n return OUTPUT_CONVERTER[type](answer[2:], gateway_client)\n File \"/home/jenkins/workspace/SparkPullRequestBuilder/python/lib/py4j-0.10.8.1-src.zip/py4j/java_gateway.py\", line 2492, in \n lambda target_id, gateway_client: JavaObject(target_id, gateway_client))\n File \"/home/jenkins/workspace/SparkPullRequestBuilder/python/lib/py4j-0.10.8.1-src.zip/py4j/java_gateway.py\", line 1324, in __init__\n ThreadSafeFinalizer.add_finalizer(key, value)\n File \"/home/jenkins/workspace/SparkPullRequestBuilder/python/lib/py4j-0.10.8.1-src.zip/py4j/finalizer.py\", line 43, in add_finalizer\n cls.finalizers[id] = weak_ref\n File \"/usr/lib64/pypy-2.5.1/lib-python/2.7/threading.py\", line 216, in __exit__\n self.release()\n File \"/usr/lib64/pypy-2.5.1/lib-python/2.7/threading.py\", line 208, in release\n self.__block.release()\n error: release unlocked lock\n```\n\nI assume it might not be directly related with the test itself but I noticed that it `prev._is_barrier()` attempts to access via Py4J.\n\nAccessing via Py4J is expensive. Therefore, this PR proposes to avoid Py4J access when `isFromBarrier` is `True`.\n\n## How was this patch tested?\n\nUnittests should cover this.\n\nCloses #23690 from HyukjinKwon/minor-barrier.\n\nAuthored-by: Hyukjin Kwon <2680965ad5aae29275c8fb10150cb10f5554e78b@apache.org>\nSigned-off-by: Wenchen Fan <563f5923eae9a92c8a3f34a26b67fa348a303ed1@databricks.com>\n", "proba": 0.9999980926513672} {"commit": "be6d7c1809652468f1e1b77c51b751ecbf91c27c", "message": "Another test\n", "proba": 3.856863713735947e-06} {"commit": "c3527f5526ee96398760cbef11d7de48f41fe998", "message": "Annotate NormOP test to skip grad check (#21894)\n\n", "proba": 1.1064602034593918e-07} {"commit": "dbc1df293f283367526b3a80c5f24d71e5d46be1", "message": "fix bug abort is undefined and return 204\n", "proba": 9.575964213581756e-06} {"commit": "2e110e1a3b9a30c30e6083d5f6fbba0ea4b8f095", "message": "Players have own icon (shoutouts to thijs :100: )\n", "proba": 1.062908054905165e-07} {"commit": "e3ccf6797d9d17857e1fcf020aaf7aa258f03837", "message": "prevendo DATA_ENTRADA_CORTE nula tamb\u00e9m para mapa semanal\n", "proba": 3.0039950615901034e-07} {"commit": "5b96bfe8264cfea02fc119c133dab111f98a606a", "message": "Change to use multiple inheritance\n\nInstead of forcing the hiearchy\n\n CommandCaching -> CommandReport -> CommandProject\n\nswitch to use multiple inheritance. ie subclasses will\ndecide exactly which of these 3 parent classes they wish\nto use. This allows reuse of the CommandProject class\nfor things which are not reports or which dont want to\nbe cached.\n\nSigned-off-by: Daniel P. Berrange \n", "proba": 1.1765678209485486e-07} {"commit": "c367cd64ad6d7f44845ab5e47546a7b054addefe", "message": "fix #1906\n", "proba": 1.0773646863526665e-06} {"commit": "fb34eebd253727dcc718e2387cb6f4ac763f0bae", "message": "Add DateTime Completed Field to Task\n", "proba": 4.580343784255092e-07} {"commit": "8edc9d0330c94b50e01956ae88693cff4e0977b2", "message": "[SPARK-1468] Modify the partition function used by partitionBy.\n\nMake partitionBy use a tweaked version of hash as its default partition function\nsince the python hash function does not consistently assign the same value\nto None across python processes.\n\nAssociated JIRA at https://issues.apache.org/jira/browse/SPARK-1468\n\nAuthor: Erik Selin \n\nCloses #371 from tyro89/consistent_hashing and squashes the following commits:\n\n201c301 [Erik Selin] Make partitionBy use a tweaked version of hash as its default partition function since the python hash function does not consistently assign the same value to None across python processes.\n", "proba": 6.681236186523165e-07} {"commit": "5c49071a6f03cc07f520ab57d71eccade4620261", "message": "enforce whitelist\n", "proba": 1.3572366697189864e-06} {"commit": "b0e9fd7fa0907baacefdf2e5f9d666962b942b40", "message": "mypy: Specify type of decorator correctly in test_logging_handlers.py.\n", "proba": 1.2240788294093363e-07} {"commit": "1e457cd0c215e5011b01b0efe9153d0e8d4b5884", "message": "input validation for perform()\n", "proba": 4.449891264357575e-07} {"commit": "6162224144fac4d6d0592f30613a4ede7c87d779", "message": "Fix pep8\n", "proba": 9.687063311503152e-07} {"commit": "f4fff0375f238a21ccbe5a5a4316f848c4af401e", "message": "use 'params' instead of url quote\n", "proba": 2.7339867301634513e-05} {"commit": "17bf035125a58a5941f96a7bef9f40b3f98d360a", "message": "Hide console tab by default\n\nAlso:\n - Move tab toggling menu items to new \"View\" menu\n - Refactoring\n", "proba": 2.4719949465179525e-07} {"commit": "dad37a48f8c376df32b124da242e0728bfb4700e", "message": "Did GitHub just start enforcing this?\n", "proba": 1.315907809384953e-07} {"commit": "6db0dccc5643cb2af254b0bf052806645f7445fd", "message": "fix regression on qibuild deploy\n\nChange-Id: Ifbecccaa4003dbd24d0119386f9112e4353e99c1\n", "proba": 1.0954061053780606e-06} {"commit": "6753e2aad3c37545bbfcb3f0a9ae7d1c07037b7d", "message": "Fixed an ugly bare ``except`` in ``put_detail``. Thanks to dlrust for the report!", "proba": 9.977557624551991e-08} {"commit": "547c1d5d1ff2ced0969a86eda6e0094f8b76d94f", "message": "Bump to 0.1.1 with setup.py fix\n", "proba": 2.2794638709910942e-07} {"commit": "3101cb4098ef72757c4a05b43a5567c301bdc413", "message": "test for positive constrained lasso added", "proba": 2.0973386938294425e-07} {"commit": "5b9ba0967b1b4b02f6d3109d57f717418348596d", "message": "PubSub: Add system tests for PubSub clients (#8277)\n\n* Add system tests for listing topics, subscriptions\r\n\r\n* Add system test for listing topic's subscriptions\r\n\r\n* Add system test for using PubSub snapshots\r\n\r\n* Add PubSub system tests for managing IAM policy\r\n\r\n* Add test for creating non-default subscriptions\r\n\r\n* Remove flaky PubSub snapshots system test\r\n\r\nThe PubSub backend does not give any guarantees about when a message\r\nwill be re-delivered after seeking back to a snapshot, it will only\r\nbe delivered \"eventually\". That causes flakiness in the snapshots\r\ntest.\r\n\r\nSince the test cannot wait for an indefinite amount of time, this\r\ncommit removes it in order to not randomly break the CI builds.\r\n", "proba": 1.8619707020661735e-07} {"commit": "e4d53c3e8364bb2a29b00578d018b06a0896d769", "message": "api-set error handling\n", "proba": 1.1359915106368135e-06} {"commit": "bbfa9e7d91db5a4bd7bc0a76b6039e77697d5f9f", "message": "simple docstrings\n", "proba": 1.2275946801310056e-06} {"commit": "1a151ca36b24ef397fd4bb03f05b153cd9048020", "message": "uncommnet, remove print\n", "proba": 0.00011485842696856707} {"commit": "93c3acdabe53a28fe8278f124df1fd821f1378f6", "message": "Add missing import for time\n", "proba": 1.2837969052270637e-06} {"commit": "d7bf56edff9620c6554ab918046d4b3aac7b9b04", "message": "Use simple_bind_s instead of bind_s", "proba": 7.068180366331944e-06} {"commit": "9d54afa04f4b247a0f700ad750d78d1cb5445014", "message": "fix search: column number\n", "proba": 0.00039084802847355604} {"commit": "4c459bfcfdd7487f8aae5dd4101e7069f77be846", "message": "removed trailing whitespaces", "proba": 0.0012731058523058891} {"commit": "e455fbeb5918e2235ba9166eb0596640309fe385", "message": "move conary web code into repos.py\n", "proba": 7.634468488504353e-07} {"commit": "8a9e44aaa5afc230e67aede7c63535f45fab03f8", "message": "Add implement_reform() method to Parameters class.\n", "proba": 1.365496160588009e-07} {"commit": "153ca9e97f69bfba81f97cff0c7cdf1d1239b157", "message": "export csvs for attendances\n", "proba": 1.9686389407524985e-07} {"commit": "be1d70133d78a885ddae6582189a634438d9e1a9", "message": "disable bigtable system tests (#5381)\n\n", "proba": 1.1651627573883161e-07} {"commit": "4bb8a61cde27575865cdd2b7df5afcb5d6860523", "message": "TEST: Add weird SLP orientation to get_world_pedir\n", "proba": 3.257358685004874e-07} {"commit": "1e8a0a76bc8022b74d818a9b0dba602c2eefac5a", "message": "Fix pep8", "proba": 9.687063311503152e-07} {"commit": "f4cab090f785b0f88bea3354027e24d65e5c7cb7", "message": "Merging trunk", "proba": 6.656299547103117e-07} {"commit": "72e70cf1a100bd3a052af0130866c6c5118697af", "message": "Raise minimum sympy version to 1.7.1 (#1368)\n\nCloses #1367", "proba": 3.34990772898891e-07} {"commit": "7d79ecce73fd213f65ba0d61e7583a152ee87a4c", "message": "do not display default label\n", "proba": 7.136740691748855e-07} {"commit": "a000639df558ef43a82957e71c8dff07b61b4258", "message": "deploy: Respect main branch\n", "proba": 5.866829724254785e-07} {"commit": "29ebbcd5b684fbb3d46159858710bb8c49c37063", "message": "Switching decorator order to be able to validate all metric parameters for #45\n", "proba": 1.622618839292045e-07} {"commit": "a059a7e8b751fbc49bd1f363378d630d774ed2c1", "message": "set subtypes to None if not supported in this TAXII version\n", "proba": 1.2279928114367067e-06} {"commit": "dc2ccb95848c330eeb8e6fa55bf487c54e03a3c3", "message": "Review feedback.", "proba": 1.477323792187235e-07} {"commit": "11ff24b0f46ba642b79fd1073b18fa2fabbe988f", "message": "update twistd logging\n\ngit-svn-id: e708176fa5849e93621a462fffec999e77d999e6@260 511b6515-856b-012f-224d-303ca1f27614\n", "proba": 2.6929950536214164e-07} {"commit": "8c8b2fde8670bd3d19f86b642de71b22e0c8fb23", "message": "Spelling fix.\n", "proba": 3.403245329991478e-07} {"commit": "deb1da6b614bd45a6db03b870dd1e59a245b59ef", "message": "Updated integration test with new tracker version\n", "proba": 1.3224899930719403e-07} {"commit": "5993463bc6be0b69ff493f53172d4f3420668076", "message": "new style class\n", "proba": 4.87370527935127e-07} {"commit": "ca4ec92d7fc75c89c695c46ecf3ca2944c84f195", "message": "tiny change in docstring for Component.new_attribute to keep sphinx from complaining\n", "proba": 1.751837572783188e-07} {"commit": "bfa66827e5afd175c15640b1678fbba347009953", "message": "Fix unit tests\n", "proba": 5.235026947048027e-06} {"commit": "068f31c6cd3eff68f08ee597f7296e4f6e47388f", "message": "Don't send a SQLAlchemy model over rpc.\n\nFix bug 933584.\n\nI noticed this when Qpid blew up because it didn't know how to serialize\na SQLAlchemy model. Fix it by making it only consist of primitive types\nbefore sending it.\n\nChange-Id: I63eb4bbabdb75fa7b277428bbd1aa2c2e1383383\n", "proba": 2.065341959678335e-06} {"commit": "c6d5d8e4128a8eb8a6f73d414b303000362135ef", "message": "Fix up logger for celery 3.x\n", "proba": 0.00022066084784455597} {"commit": "4868226f4a93485c295f1a9aee747e58f7cd90a3", "message": "Update basicTypes.py\n\nAdded Java-like methods on DOMString", "proba": 2.3125400616663683e-07} {"commit": "89211b6ca669035334a314df01a8bd648de4bb72", "message": "Port _validate_time() to Python 3\n\nThe change Ib342ef6640efbc3d76c4bafc622ccfdfa3d16ade added a new\n_validate_time() function for API v1. On Python 2, the function\nrelies on the datetime module to get a ValueError for datetime with\nyear older than 1900. On Python 3, the datetime module accepts years\nbefore 1900 and so we have to test manually.\n\nChange-Id: Id1dbf98ecf23e401f696a575dfea80fac2e297ed\n", "proba": 0.0002029348979704082} {"commit": "4c39d5144c022f0e05ebb1eaf146198a6b131a9e", "message": "Define image state during snapshotting.\nName snapshot to the name provided, not generate.", "proba": 1.6962722781954653e-07} {"commit": "c97422a7c2af7c430d92a82c37a16027cd4f38c5", "message": "Drop completestep mypy workaround\n\nSeems to not be necessary anymore on latest mypy.\n", "proba": 1.0217344481588952e-07} {"commit": "0ae6ec39b01dfa837bfc1e6f68f13b09208e5170", "message": "remove unused imports.\n", "proba": 3.088458413458284e-07} {"commit": "64ae27862ad0240ac5bb6dec78a6eb7337fb277d", "message": "few more tests: gis functions, starts/endswith\n", "proba": 1.3512747898403177e-07} {"commit": "0dd84ed8d7ed8a372afd3bcb77fba0f3f084fd84", "message": "Bug #694880: nova-compute now depends upon Cheetah even when not using libvirt\n\nOnly import Cheetah when needed, as we do already with libvirt and libxml2. This ensures that users of other virt backends don't need Cheetah to run nova-compute.\n\nResubmitted with pep8 violations fixed.\n", "proba": 1.0087644142231511e-07} {"commit": "1ca1137a57c16b1141e167ac8210ca3ac9014e2e", "message": "remove unnecessary import\n", "proba": 3.7424066249514e-05} {"commit": "486339f2f3a2428618484270d94ca3e97e6ac088", "message": "speaker tweaks\n", "proba": 1.1263496162428055e-06} {"commit": "077d311204efb0f947a8fbe57419ced0fc1769ff", "message": "migrate (#10144)\n\n", "proba": 1.9617515079062287e-07} {"commit": "ab9d8d658eadde45c9de156850d2e6a47e754296", "message": "pyvcloud/vcloudair.py: add params for creat_vapp\n", "proba": 2.81527195511444e-06} {"commit": "bf61b38f683c69b670630381d8118e43c4ad69a4", "message": "Add metadata to RawBTi to enable crop method\n", "proba": 2.0431443203960953e-07} {"commit": "eeaf49b47dc183642aa17b13e5d48de7a45c03da", "message": "Marosijo updates reports instead of overwriting them.\n", "proba": 1.1085028006618813e-07} {"commit": "3682d5809191ed5c4a6a08707117fa0b95dfed89", "message": "Fix get_service_type cannot detect standalone vCD\n", "proba": 7.625380362696887e-07} {"commit": "3e42a9ff25493008a39ec8a018e2b6ae4a104b2d", "message": "Add import to fix:\n except pyauto.pyauto_errors.JSONInterfaceError:\nAttributeError: 'module' object has no attribute 'pyauto_errors'\n\nReview URL: http://codereview.chromium.org/6909017\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@83836 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 0.9999710321426392} {"commit": "aeac46411b69147755e9976321f2973949eca927", "message": "Support Go 1.15 (#2599)\n\nFixes #2598", "proba": 1.3007753807414701e-07} {"commit": "bcecb95434e61ca0252b1e08c28d864f674bda12", "message": "add kwargs to thrift.load docs\n", "proba": 5.549387083192414e-07} {"commit": "81645dd07ae963a099c63969fc2c7d24bd0631c2", "message": "Catch and log API warning messages.\n\ngit-svn-id: 9a050473c2aca1e14f53d73349e19b938c2cf203@6012 6a7f98fc-eeb0-4dc1-a6e2-c2c589a08aa6\n", "proba": 4.938382699037902e-05} {"commit": "c7e9ea888bbbcef9e7ae29340c45e9aaf211d1da", "message": "Testing: Fix tests\n", "proba": 0.00010271802602801472} {"commit": "efac3c253dcd71be2c6510b5025ddedbb9a7358e", "message": "work when there's no RAVEN_CONFIG\n", "proba": 3.522589395288378e-06} {"commit": "a3e8c27be953194df2d1b84c5c35b4b6d56f9268", "message": "Use common functions. Add deep sleep logic\n", "proba": 0.0005560011486522853} {"commit": "bf0930121a53ea2df3a7b851256cb47ce86aec00", "message": "fix non-integer index error\n", "proba": 0.025431104004383087} {"commit": "420319e3f9687ed8133c409291970f7b60c97c80", "message": "Extended the documentation for these baseline classifiers, and added a concrete example to PriorClassifier. Example code has been tested, so should run.\n", "proba": 1.0792798832426342e-07} {"commit": "3a6df4c78468b4a976784e9375052b0953f829cf", "message": "Fix attribute validation with DOM-style input\n", "proba": 3.624671307989047e-06} {"commit": "8077f07c3948169ab91ebd347c80e2bb20348759", "message": "reverse_geocode back to Python3 only\n\nPython3 lacks 'unicode' type. Need different approach to catch unicode\nstrings in Python2.\n", "proba": 3.7950119349261513e-06} {"commit": "f584aba4f97c22ab89852afbe2770e40c56a785c", "message": "ENH: fix bugs, change shape\n", "proba": 2.7368963628759957e-07} {"commit": "8d2462140195bdc933d9473db9be1423ab2e7a1e", "message": "Code revision after review\n", "proba": 1.5015244514415826e-07} {"commit": "f49559323e29c1ac6ea151faee93524b16704e3b", "message": "DEV: change pos from json file for srx\n", "proba": 2.342661957754899e-07} {"commit": "9fe0e4e71045bc8233fdebf4b14183647a0cb2e7", "message": "Have just a single account function.", "proba": 1.200936594614177e-07} {"commit": "a224a91cec39690c4b27fa6c58e9251c285fc0e3", "message": "Update core.py", "proba": 8.660932735438109e-07} {"commit": "9dc4bb5dbfbd4702487b00fda9f267e19dd9d4d6", "message": "rename local to werkzeug\n", "proba": 0.0009900607401505113} {"commit": "4f223a885d62c4d3002b34b26565d7d603aff4b5", "message": "adding use_unstable\n", "proba": 0.0009509287774562836} {"commit": "4422795d981847276b6d05f71e2bb184402992d8", "message": "Addressing @ElDeveloper's comment\n", "proba": 1.2808750682324899e-07} {"commit": "8d39a477ac97a2f93f1d235f45d8dc8fa27cfa8e", "message": "* Added dirty method and return cached query\n", "proba": 1.2357637046989112e-07} {"commit": "e0b9a9396fcbfac30f1218b7777628660d99e1af", "message": "fix a typo in the name of a keyword argument (#85)\n\nIt looks like I mistyped \"parameters\" as \"paramaters\", then spread that mistake through copy-pasting and autocompletion.", "proba": 2.163654471587506e-06} {"commit": "69fa8ee99c997dee5fbda4a853a3c579676e69fb", "message": "make it work with python2 too\n", "proba": 5.343727934814524e-06} {"commit": "6e25b80764e8c05dd65cc359a58e8d0eab89861e", "message": "Rename to num idx dict class\n", "proba": 0.998711347579956} {"commit": "dd70c4a7fdde0ba5c221d7c3268827b1d6a38aea", "message": "Jormungandr: Add param show_codes to v0/Ptref\n", "proba": 2.1423221596705844e-07} {"commit": "5eac1ced5c76c30390de9c77910b75db4892c9e5", "message": "Bump version: 0.0.23\n", "proba": 8.373187938559568e-07} {"commit": "471753ea2613d29e5582d1e6fdaa151ab8b40fd1", "message": "changed method name for scope trigger checking\n", "proba": 5.501005375663226e-07} {"commit": "54cc2a0f5ca9d3f1a342f026f2c3e93afc6fde61", "message": "address comments hopefully\n", "proba": 1.2952249051068065e-07} {"commit": "c3bfc7c07bba06c9334350111df0b9444b85b31b", "message": "modify tests for calculate correlation results\n", "proba": 1.979996397949435e-07} {"commit": "60b58d67f076d9554ab4821101b1031da461b054", "message": "Use enumerate.\n", "proba": 2.1319909137673676e-05} {"commit": "7fb5e946062dd36a84801e4a03012a3c032a70db", "message": "Added headers parameter to InfluxDBClient (#710)\n\n", "proba": 1.0918917325852817e-07} {"commit": "460f218c2ed71a0a7aff5bb3353bca01a4841af1", "message": "Update Homework_Week4_CaseStudy2.py", "proba": 7.085255333549867e-07} {"commit": "a0567cce82cae05478564ddbf43d1336eeca32f3", "message": "no check a boolean value with None value\n", "proba": 0.0002521261340007186} {"commit": "1cc4dfbbd032a5ac8eb154bdd571c5bc25768fe4", "message": "Updates for matching work.\n\n\nFormer-commit-id: a625fce4504501928526cae548c26df55f01ba76", "proba": 5.985207849334984e-07} {"commit": "8a9c888f4b9c149ef8ac832d052f6241b185a3a2", "message": "fixed bug in multiplayer\n", "proba": 5.640810627483006e-07} {"commit": "e9e40dd4d9d5357069261653cd1a432e99e8e1aa", "message": "Remove unexpected dummy code\n", "proba": 3.703240872710012e-05} {"commit": "6cb9a09ee92f3be6a5d807e9c5af41bac4796435", "message": "Remove loading of env file in development\n", "proba": 4.42092471075739e-07} {"commit": "c90fce44f30398fef0c20ec08f761ae19951308a", "message": "Delete unused pipeline settings\n", "proba": 7.9082815318543e-07} {"commit": "1b31068b735229dc99fa6ae0e7c715c9fd7985bd", "message": "Hook up binary send message\n", "proba": 1.4456433063969598e-06} {"commit": "416fd3570488d8e9f1fc2a82e559a14ef994ed23", "message": "Storing 3000 nodes in memory before saving to database.\n", "proba": 1.153067330506019e-07} {"commit": "b1e2835f65302455f2999b50294875a6d3fe593e", "message": "add known_failure decorator for CASSANDRA-10867\n", "proba": 2.6045256618090207e-07} {"commit": "69cbaf941d3bc81e67fb4cd6052b6827621763ed", "message": "[dup] Fix tatebarai curve\n", "proba": 1.970610583157395e-06} {"commit": "f7bbc7ded8886566c6da5287980a3e42760a4049", "message": "[ncua] there's no 2015 page yet for audits, deal with it\n", "proba": 1.1193277060783657e-07} {"commit": "297b19f3f5bf7741fd28521075c21b52a711589e", "message": "catch dynamo table error to res\n", "proba": 1.965024551964234e-07} {"commit": "72ab7cee8093dd5425f585f5fb41a3a4dc71b8a1", "message": "Modify auth.py to no longer use lower functions\n", "proba": 4.6242959683695517e-07} {"commit": "8f2d2cd55ed6d92ad51484bf0566fc8a9585e531", "message": "Add _getPostWithTagQuery method and modify getPostsWithTag to use it\n", "proba": 2.1437263342249935e-07} {"commit": "adeff45af91ab5a5f7bc54698ffbc8fe69af763e", "message": "changed naming convention\n", "proba": 1.386830604133138e-06} {"commit": "6e3fd75730321758eec195e6c1289d62258b3e33", "message": "add more metrics\n", "proba": 2.646646350967785e-07} {"commit": "8409c3a630274f2d69f7cf3c50581c3501fbfdf5", "message": "Made status lower case to comply with John's new WSDL.\n", "proba": 2.21468397398894e-07} {"commit": "b353921af8ff30fcdb9ee9687ec0af070ae86f69", "message": "get releases first, then download url\n", "proba": 1.363238624207952e-07} {"commit": "458ee4bc3320aec6c1966e7ee1c589c3cb8bc4be", "message": "Slowly consume food when attacking to gather resources, increase the hunger penalty; both proportional to hardness.\n", "proba": 1.7020524012423266e-07} {"commit": "8fecaa5d07eb7eb406c2f220bf57a9a966a7e76c", "message": "Add private message handlers\n", "proba": 9.38356322421896e-07} {"commit": "aebe75a786617d9fb0fa138393edfc5c9f0ecdb3", "message": "STY: lib/bot codestyle fixes\n", "proba": 2.0124603850035783e-07} {"commit": "23de5f62313c222fb5f44890cb68e276429a865f", "message": "Don't even try Linux-specific code on non-Linux\n", "proba": 2.2588244519283762e-06} {"commit": "9e70b602dd729ddde23174d6c1077b3acb5d3bbd", "message": "moved toward append-join flow in dict_to_dat\n", "proba": 5.717746489608544e-07} {"commit": "c83e8d7d83b9395b5b0428dcac2909b8d6762fe4", "message": "make Tool work without invoke scripts again\n", "proba": 1.9843290033350058e-07} {"commit": "295e930a7959260d476c5949182f21f261b7ffdc", "message": "QB V1 not working due to missing attribute parseCmdBuffer\n", "proba": 3.076582117955695e-07} {"commit": "f7e0d6d774c4863a620f53ecf9ed56f07f091b0e", "message": "AbstractDictionary\n", "proba": 1.1209231161046773e-06} {"commit": "89057827a1d301715f9275dafb6a3936c8fa170d", "message": "Fix breadcrumb path\n", "proba": 0.9997491240501404} {"commit": "dead25b5e27053a504218f373ac0fec45b7c102f", "message": "Revert \"Add another newline\"\n\nThis reverts commit 5f48a779b1d2f3a14c42dfe89ba37a919acef364.\n", "proba": 1.352961476186465e-07} {"commit": "f8b99c82b736d61c6cd1e62fcd939545942a7788", "message": "Some small change\n", "proba": 1.2117524192944984e-06} {"commit": "c06ceb1c3f06bb08e9adb84d82d33325e54ec507", "message": "Update accordion.py", "proba": 7.365455871877202e-07} {"commit": "eaf390b065944a64a3b74c1b0e43b1df60d4e88f", "message": "Reimplement deduping hurr\n", "proba": 7.172501454988378e-07} {"commit": "2f688b6946a455aaa47995e40789b93aa0bfb49a", "message": "Be more clear about what file we're coq'ing\n", "proba": 2.912960894718708e-07} {"commit": "c82fd2c003cbed17a38f075171c6ca261ea03f9d", "message": "Skip entries with @ when dumping json dict.\n", "proba": 1.1837506974643475e-07} {"commit": "483e8451fbd2dbdc9bab3392045d564eda1d8211", "message": "Add some compatibility code for tmux 1.6 and 1.7, this isn't working yet\n", "proba": 1.6265819624550204e-07} {"commit": "8ebf30dac03f1f6036da7b8198e76dd0d988895f", "message": "add Bandpass object\n", "proba": 3.7422844911816355e-07} {"commit": "07087f8c99e2200b19d190b41b4ce062386313c3", "message": "improved biplot generation stability\n\nRemove all-NA rows and columns and disable unavailable completeObs function.\n", "proba": 1.0094207425481727e-07} {"commit": "375d12ab7486f6bb0d57232d48c556e6c0eda0c1", "message": "Update P05_stylingExcel\nfixed PEP8 spacing\n", "proba": 1.1930873711207823e-07} {"commit": "46fe5a5d8290244d799b9b0ab09f5e4eff4cd591", "message": "Can now import temperature from rtout file to a new model by filename reference", "proba": 1.247524323844118e-07} {"commit": "6f8fae7550e8f8aedbcefc3afa0ca91cba5bc622", "message": "\u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d bug#2\n", "proba": 3.1343495265900856e-07} {"commit": "6a64274ed314050450acb98e849cac40f8c05d51", "message": "small fixes\n", "proba": 3.433956408116501e-07} {"commit": "3c48547439ae2abfd0095f31cd71be0748e7c0d7", "message": "Syntax cleanup\n", "proba": 1.5370134178738226e-06} {"commit": "6c5ba5e42f06abd78cd52aabf84e0ffb0c1d6b09", "message": "ios-cmd tool commit.\n", "proba": 1.3752166694303014e-07} {"commit": "e7e5781f636ecbad11d37b03f2c615066f3bc7eb", "message": "better format", "proba": 0.017719965428113937} {"commit": "d5593e1e5734f1c4ed47e9028b3486ec3dba2978", "message": "Fixed indent\n", "proba": 1.0087015880344552e-06} {"commit": "49233de0ab7b97488c91053f02865dda77100b24", "message": "Always return functools.cmp_to_key when \"negating\"\n\nWhen performing a comparison with a `functools.KeyWrapper` it is\nnecessary to compare it with another `functools.KeyWrapper`; a\n`functools.KeyWrapper` should be returned even when the value is a\nfalsy one.\n", "proba": 1.7058370360700792e-07} {"commit": "91bfb6801a55e7656cc0fe0ab49cdff6fde6d7fc", "message": "purchase_request 14.0.1.5.0\n", "proba": 1.0207687410002109e-05} {"commit": "17793c9b3ceecc206aab1d1c34c0d3dc69892cbd", "message": "Use ArgumentParser to enforce required arguments\n", "proba": 4.4090680262343085e-07} {"commit": "8edd2f4ab7ba96b7999d8de3ab14d60d9a7fc25b", "message": "Added new regex for nigger\n", "proba": 2.57540023085312e-07} {"commit": "98b30843fe573ba04ab0e1d5ce5ee724e17a1908", "message": "Mamba love\n", "proba": 5.895180947845802e-07} {"commit": "2d437e93f33f105d08f3d0bb19705d26c49ff70f", "message": "relative import for py3\n", "proba": 2.2575335378860473e-07} {"commit": "284945c2ea518cb7d83b2d8023ea3acec630f238", "message": "Tokenization code simplification", "proba": 2.0406359908520244e-05} {"commit": "b74e1a2e1ddb29171bb6a130928342614d892120", "message": "copy-sdss-slice: don't cut to subregion\n", "proba": 1.909420689116814e-06} {"commit": "e10483b82a7e4e44ed39aad4d9fb69f04461ef81", "message": "Add a touch of Sentry logging.\n", "proba": 1.1976084124398767e-07} {"commit": "81a4b04173033d7e678ad6c4b4efae654af9ac11", "message": "Use a threading local object to isolate MongoDB connection between different threads but reuse the same connection in the same thread\n", "proba": 8.404829827668436e-07} {"commit": "d37e0547930269c69d4a40f2e6d9160f2481f560", "message": "reenable crossovers on origamipartitem closes #61\n", "proba": 1.2362657741959993e-07} {"commit": "7810cb5988ddd53e8be5d9e9a61de5604ececbc8", "message": "Added main() helper and etc\n", "proba": 1.2886455635907623e-07} {"commit": "874291a48dc4dfba0954daa962426975e5543b8a", "message": "BBCode link at end of answer", "proba": 4.915191311738454e-07} {"commit": "996d0a1a7e26a31216bf67d9a47dd46122c216d3", "message": "updated animate docstring\n", "proba": 4.274719742625166e-07} {"commit": "66861a84c3e1f3d0c90a8bc209f0f704cabdbd6d", "message": "Add tests for jwt-knox authentication\n\nAdd several tests for jwt-knox authentication.\n\nTests implemented:\n- A received token can be used afterwards\n- The current token can only be destroyed (logout) once and may not be\nused again\n- Other tokens may be expired and they are successfully expired (and\nours is not)\n- When all tokens are expired, every one requested is expired\n- The verify endpoint returns an OK status code on success\n", "proba": 0.0035918920766562223} {"commit": "cb74c6053ccf6b7dfcc80f2ad61edfcb4665cc30", "message": "test.__init__ logging.disable\n", "proba": 0.0003403645823709667} {"commit": "d5027e4c4a1848948bb8910ecbf2a96a59e9deb1", "message": "timeout increase\n", "proba": 2.5788212951738387e-06} {"commit": "aa9143302b376e1274c8c11b53687771d0444b5a", "message": "Remove now-unused isInt code\n", "proba": 0.0004444048972800374} {"commit": "c2bb5b878c0131fcee2b351f1175a702049d4259", "message": "! Watch IP 107.180.1.245", "proba": 1.1812719691306484e-07} {"commit": "f021922dec168a4bb97516eb6b7a7ca5fe3bfb96", "message": "Use HostAddressOpt for opts that accept IP and hostnames\n\nSome configuration options were accepting both IP addresses and\nhostnames. Since there was no specific OSLO opt type to support\nthis, we were using \"StrOpt\". The change [1] that added support\nfor \"HostAddressOpt\" type was merged in Ocata and became available\nfor use with oslo version 3.22.\n\nThis patch changes the opt type of configuration options to use\nthis more relevant opt type - HostAddressOpt.\n\n[1] I77bdb64b7e6e56ce761d76696bc4448a9bd325eb\n\nChange-Id: Ib0f90935ccd548a3ec21ed4b6ba45387f6ed5ee4\n", "proba": 9.357200178783387e-05} {"commit": "5f4e77471775c2715a20e756775909f51341678e", "message": "google client keys changed\n", "proba": 7.628435128026467e-07} {"commit": "6fc8344228d70207330171291451af819178abc3", "message": "import\n", "proba": 9.398250995218405e-07} {"commit": "40f3f9dc4585877e77cbeaabb0c2f97284bdc82c", "message": "tools/bp_gdb.py: add pretty-printer for boost::intrusive::list", "proba": 8.613799309387105e-07} {"commit": "64957818df75ba59860c803e26c294a658508c8b", "message": "Log ignored exceptions in CCID connection attempts\n", "proba": 2.8165345611341763e-07} {"commit": "79e3769eaabf896575026b2747dc191b75d5b7e2", "message": "Convert domains to IDNA, close #2217\n", "proba": 0.9992509484291077} {"commit": "d6d60dc64d307d16f848ce3e8a235eb78336c620", "message": "Hopefully fix bug in bgp worker/lookup thread\n", "proba": 1.2399591753364803e-07} {"commit": "790fc9ed04d6134c61d755280c1c56b1dd694b03", "message": "fixed wrong case of pyfda_lib\nSigned-off-by: chipmuenk <1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@chipmuenk.de>\n", "proba": 1.2424355588791514e-07} {"commit": "89f6abe86c20e2c31ac87474076a02a1da0ed53b", "message": "fixed glob dependency error\n", "proba": 4.523308518855629e-07} {"commit": "065d4f74915bf26a16f5cd5042ceda5b1713ce78", "message": "fixed syntax\n", "proba": 3.115965682809474e-06} {"commit": "c1265e192acb56092e0fb12a240e2c15e465322a", "message": "today's crop of sites and products", "proba": 1.1103035291171182e-07} {"commit": "2159e6c2b550367d456e3d743b7757c59636a3c7", "message": "update dictionary on ramiro's desktop to use starmon data\n", "proba": 1.439190242535915e-07} {"commit": "3927fd757ff404af61e609cc1728d1f3fe398230", "message": "Fix on error text.\n", "proba": 2.0897516606055433e-07} {"commit": "4577565153ad27633953b1a01168f3d8fe1d171d", "message": "Some Menu work\n", "proba": 5.970692882328876e-07} {"commit": "b63a815dd0fa713c0c4dbedee37ad08b7a2302e1", "message": "+computouchinc", "proba": 4.095395809144975e-07} {"commit": "6f876a7f14f0b172860005b0d6d959d82f7c1bbf", "message": "Remove old Python 2-specific code\n", "proba": 0.031770575791597366} {"commit": "316773150dd65e77f49ada619dd0768ca1312530", "message": "LA-1127 Default to empty string instead of userpin\n\nChange-Id: I793fc4bbb0633265c75de1d0b09b76a8f9f2d544\n", "proba": 2.0937521185260266e-05} {"commit": "a4ffe2a8ea2c2c85d3deb021d2226c7e757df3a3", "message": "Add missing but irrelevant app name for keyboards\n", "proba": 3.618769915192388e-05} {"commit": "db6c4a250d7b94ab843f898e35a5db0f806e4cbd", "message": "Properly reject a gateway that is not an AG or UG\n", "proba": 0.014039705507457256} {"commit": "adb13fca858e75c5f749a9514c1e937eb7b6764d", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "f47468aeeec29b307babdaae04f0e96c9c512183", "message": "Yet another attempt to handle comm errors from Garage Door\n", "proba": 1.1521758835897344e-07} {"commit": "d6e6bdc64731ce98580a68f820d333bbed18f2f3", "message": "When removing code blocks, keep tags --autopull\n\nCompletely removing code blocks sometimes leads to false alerts about repeating characters or words, since the blocks separating those chars/words are removed before check.", "proba": 1.1414534384357466e-07} {"commit": "6f0f49c85b478281b668c46c9e64c3b0c199a711", "message": "Merging changes from Steven Walter\n\nMerge commit 'steven/master'\n\nConflicts:\n\tsrc/transmageddon.py\n", "proba": 1.7546666697398905e-07} {"commit": "9266315a1f01b7e36946a1266d22c730586ac212", "message": "middleware: Stop shadowing top-level logger definition on line 33.\n", "proba": 1.1021885626405492e-07} {"commit": "3ad0c26de2481c62dd052d56583c6cc9f20e7993", "message": "Call strip() on raw channel names before splitting them.", "proba": 1.0825435481365275e-07} {"commit": "73529579a6abaf1b33e6135d4abaa2c892dbfa3c", "message": "checker.py: exit with retcode when called directly\n", "proba": 2.2445949809934973e-07} {"commit": "a09af4d52fb402951f59e711978c2f0b8d1f6998", "message": "pylint\n", "proba": 2.1026107788202353e-06} {"commit": "698b5637a7340a6ff824f6b0c0a2bdbfb52283d0", "message": "Improve lastEditedBy field in AbstractTimestamped\n\n- Relates to #111.\n", "proba": 9.909470577440516e-08} {"commit": "7bc41a3eba975313514803ab100142890e732ee4", "message": "thanks for sharing + link + short answer", "proba": 1.1092790686006992e-07} {"commit": "2d92e69d00a7419a23bcb38ab7c55ccc533237df", "message": "Fix artwork size\n", "proba": 5.538458935916424e-07} {"commit": "30ae1c3463e377f53c8e8d471a6cc1463a01826b", "message": "Blacklist a few more statsd paths\n\n(imported from commit 893b3d6c25e3a626b2948e69566fe5bd0db59813)\n", "proba": 1.4490939292954863e-07} {"commit": "26c285f24edaf54dc79b7543eec76768deca37ce", "message": "improve pid file handling to fix locks and better handle problems deleting a stale file\n", "proba": 1.8615001806665532e-07} {"commit": "0dd432a1720a79b7ac37e33f2c09f4e3351c41b3", "message": "created a function download tweets given search query\n", "proba": 0.00012589017569553107} {"commit": "b94851e6e5dd65c60d3982682c9b8825390e0079", "message": "Conditional unicode wrangling.", "proba": 2.991475867020199e-07} {"commit": "7a489d5a82d61414d8abf445bbf85a2b3df27e57", "message": "changed order of functions\n", "proba": 5.6128254072973505e-05} {"commit": "1460bde5302d1ff2b300e46cf621f62d33b3a069", "message": "! Watch NS cetpajobs.com", "proba": 1.2848512653818034e-07} {"commit": "ffa199f5cd9e47c7ddda023395a7d9a779afa4f2", "message": "changed the copyright statement\n", "proba": 1.8088025171891786e-05} {"commit": "a747399bbe75191caaafebe44380778c9e43858e", "message": "Backport ComponentHost logic.\n", "proba": 1.3556685019011638e-07} {"commit": "e1e25bc1166efa9a39fdf769f1081fafd08dd937", "message": "handle unknown source country, add recovered\n", "proba": 2.812551258557505e-07} {"commit": "0557c5acd21ec96eb43fc5384162e556e62bf9f1", "message": "catch IndexError when creating thumbnail\n\nhappened on broken PNGs\n", "proba": 2.480553291661636e-07} {"commit": "e538d32730c094e7265d10d2667602f466a50589", "message": "refactored mktree_from_iter\n", "proba": 8.010061719687656e-06} {"commit": "d378c98e03ccc78d17a4b5aba4dba156e4eb662c", "message": "vinso\n", "proba": 4.037880898977164e-06} {"commit": "4bf6db1a0fa9f0e3273ee6806639b3f44dc20358", "message": "! Watch Cloudflare NS pair neil+tricia", "proba": 2.734809072535427e-07} {"commit": "32f95d986e8826a88437597676a5fe43468d6def", "message": "Add support for reserved arg names\n", "proba": 2.0149452950590785e-07} {"commit": "be5aaac60bbcf8ce3ddaeaed0d126372b2b8e8c4", "message": "Remove quicktime fullscreen cruft.\n\n--HG--\nextra : convert_revision : svn%3A14d46d22-621c-0410-bb3d-6f67920f7d95/trunk%402361\n", "proba": 1.1091897249571048e-06} {"commit": "5069aa7796ac49793da16dd290e84a6ca5bc00b5", "message": "Pass instance around for inflate\n", "proba": 2.1924483917246107e-07} {"commit": "8bdc67364f59946dba1d3c3b3d44554a6a6afe1f", "message": "Fail on missing dot in NS entry --autopull\n\nTests will fail if the dot is missing on a blacklisted or watched NS server name\n", "proba": 1.7590329548511363e-07} {"commit": "79540d923f4568ff179b9043814774840cbe98d3", "message": "[NB] Replace command handling w/ message handling\n\nReplace deprecated command handling logic with new\n`execute_request`/`execute_reply` message handling.\n", "proba": 1.2232433732606296e-07} {"commit": "c8d839743e82d9673ea823f74fbfd5fe2e868caa", "message": "Removed message property of Exceptions: is deprecated in 2.6 anyway and\nOpera extends the message property with debug info\n\ngit-svn-id: 6db40d0534cac73ba019dccfebee869402ecad0c@2211 7a2bd370-bda8-463c-979e-2900ccfb811e\n", "proba": 1.1928093954338692e-05} {"commit": "f8ea36a10732aa4c0b2269166d70352491fb34d0", "message": "Rework ESAggregationMixin to wrap view.index\n", "proba": 1.3223866801581607e-07} {"commit": "27b8e627b0a76538946a0ad632ee92c8fd200d69", "message": "+unstopableshrine.webs.com\n\nReported in Teachers' Lounge by TimB.", "proba": 9.911815368468524e-08} {"commit": "7427adb86b23ece7d7b577754c771e1b31429eab", "message": "return to default queue if deleting current queue\n", "proba": 1.415442170582537e-06} {"commit": "ea07c07604232e59d238ea8f6b1605bad1124b8c", "message": "add kwargs to __init__ of CSVData\n", "proba": 5.692364720744081e-05} {"commit": "d62fd67b31e51cd9312858735245081016247740", "message": "Added default templates back into project.\n", "proba": 1.0995596255725104e-07} {"commit": "563e1cc5378496f8310d9cf8cc4dea94a57e8220", "message": "Fixed CLI tool\n", "proba": 4.3288844153721584e-07} {"commit": "658ec7d31e3ee6a08cc4a7ff99643299e339801c", "message": "Import key codes and layout file\n", "proba": 2.2955636325150408e-07} {"commit": "931832adb97c383806421d268cf345e6d3b0642c", "message": "argarg\n", "proba": 9.625630627851933e-05} {"commit": "d7941a7cf2a8963f1cf188a79c490a6118a9ac19", "message": "probiotic pattern", "proba": 9.088982437788218e-07} {"commit": "e9409089f954bf090889c67573622f2d772e0145", "message": "Fix another problem with abiobjects. But I am giving up. I just don't want to\nsupport pickle.\n\n\nFormer-commit-id: 8361b50639ba9d38bbe4c665c1624a7241965c07 [formerly ce34fd4ed54c8417d57c2665098dadfc3e6f00a0]\nFormer-commit-id: 910b4c6b2f7d48d17303328c00e0e23e7001838e", "proba": 0.9996781349182129} {"commit": "13f26d9007629be019140aa3bedd5f6fbfefe69b", "message": "delete all() method when apply document filter\n", "proba": 6.466844979513553e-07} {"commit": "18e6e9acfe16d7503c3f3634b9d2b18226a9f13f", "message": "Remove print\n", "proba": 1.5574403732898645e-05} {"commit": "0a062a421ed0cdec70df02f3864c8f2385492ab2", "message": "Extend keylime tenant tool to pass in file signature verification keys\n\nExtend the keylime tenant tool to enable a user to pass file\nsignature verification keys. The new option --sign_verification_key can\nbe passed multiple times for multiple file signature verification keys\nthat need to be used for a particular host.\n\nSigned-off-by: Stefan Berger <5c96973112e540fb909b13997fcd087e5bfbee96@linux.ibm.com>\n", "proba": 1.5873210656991432e-07} {"commit": "e0a23be85c9f7af85057f5e7b890c2ce744dc7b8", "message": "finspam.py: indentation shenanigans\n\nAdd r\"\" in front to make a visual indent and still appease flake8\n", "proba": 1.9614726909367164e-07} {"commit": "b4644d374bc307dbb0bf8dff4bb86bf2947acc67", "message": "launcher fixes\n", "proba": 5.728509790969838e-07} {"commit": "deaee894589a2247b9322ba5cdb94e4c127c35bd", "message": "correct docstring for KeyringLocked class\n", "proba": 3.790306664086529e-07} {"commit": "be4e4146c01208e90845476ccf55e8bbf36c98f2", "message": "+tonaderm, lumagenex --autopull", "proba": 1.243715814780444e-07} {"commit": "c32aef173b878b1bb744d13d12b85d88b665b332", "message": "Remove mutable arg in Kpoints.\n", "proba": 1.6985822526294214e-07} {"commit": "3dacbf5418c0d1a9972a2849f184940466a36d13", "message": "Added blacklisted website. --autopull\n\nAdded musclezx90site to the blacklisted websites.\n", "proba": 1.0109968684446358e-07} {"commit": "27070a6c7284020021cfd8e5a762353725951b2f", "message": "update become target order and change font\n", "proba": 1.8635215326412435e-07} {"commit": "2b5399607684ae84568a6076a2b4b57fb678168d", "message": "add sanity check upon reloading blacklists -autopull\n", "proba": 1.9981098375865258e-07} {"commit": "05ae6364f1a4f7fc005fc2fb0129206258aa5cf1", "message": "Added update_pairwise_corr\n", "proba": 2.466211697083054e-07} {"commit": "f9be06632d320f4dd5e65d6395790d6d8a866336", "message": "Changed logic of array layout inference to raise an exception when an unsupported layout (A) would be selected.\n", "proba": 1.065723651549888e-07} {"commit": "31abefa1009ee8f176a7fcd9311935ea806bc1a0", "message": "Correct default timedelta format to 'long'\n\nAugments 9327e0824a1bbed538e73d42b971988f8214b490\n", "proba": 7.470211858162656e-05} {"commit": "63acf0207c7bb9c0256de8e7eab6f07b93608a9f", "message": "Removed a Trailling WhiteSpace", "proba": 1.702209857512571e-07} {"commit": "1b71629005bbbef960bd7eeaa6d8f85ebc032742", "message": "- fixed import induced error\n", "proba": 1.3433854917366261e-07} {"commit": "321153f599954117975a4993413ea9a7b0404dbb", "message": "Remove un-needed attribute lookup in 1.2\n\ngit-svn-id: 77a43f9646713b91fea7788fad5dfbf67e151ece@5143 94b884b6-d6fd-0310-90d3-974f1d3f35e1\n", "proba": 1.0151325113838539e-05} {"commit": "299c769ce276e84007c46254ff357de3bda0e7f3", "message": "Changed D_pad controls to be more natural\n\nDPAD_UP is now UP and B + DPAD_LEFT is now change tab...\n", "proba": 1.0457448240686062e-07} {"commit": "65c84c8aec742476a9ca59fa0ed8f1af80ff54d7", "message": "Admin: update 'committee meeting' endpoint to work without joined table inheritance.\n", "proba": 1.1924184661893378e-07} {"commit": "ea7213c97b3269982a224ed236d61e72075c4fbd", "message": "STY: lower case\n", "proba": 0.9999768733978271} {"commit": "9830051692caf87c81119a68f25781cf41a34a10", "message": "refactor : DRY\n", "proba": 5.172377859707922e-05} {"commit": "1335a86e922cdab7a3267f551f3c87f8cd895e5f", "message": "Add `NoConnectivityError`\n", "proba": 3.329648734506918e-06} {"commit": "36e4b6f60480333d03acda7e173351215ef8ba9a", "message": "Fix Traceroute\n", "proba": 8.644002264190931e-06} {"commit": "26fc3b3e084d31f3aa07739925cbf46951bdf224", "message": "Corrige alinhamento da logo na horizontal distribuindo os itens abaixo da logo\n", "proba": 9.379527909914032e-07} {"commit": "6c087037dc0f5d366ad9f7d7d6d721318087a77c", "message": "fixed ping route\n", "proba": 6.03148293976119e-07} {"commit": "89f204f372a7dca365fe853448948455dfc4acd7", "message": "Fix update non-empty ORCID profile tracking\n", "proba": 4.7162402552203275e-06} {"commit": "15f45377dffa2e267464b38f5f87ffe9526fa8f6", "message": "Update support to jax (#585)\n\nThe change is minimal since jax tries to mimic numpy already.", "proba": 1.0660367166792639e-07} {"commit": "40671c32598557026f28d94819470e933aa51946", "message": "Reformatting + docstring", "proba": 3.3214556083294156e-07} {"commit": "4e280094687d8c369a1eee3c8b7bb246549898eb", "message": "Update utils.py\n", "proba": 6.909024250489892e-07} {"commit": "67d7fcb60d4ae759a005ccc2c1dd583842ca9f62", "message": "lots of code for remaining buttons\n", "proba": 1.233312474369086e-07} {"commit": "de46daf600839cf8250f88a7b88fbfb89fbf7bc6", "message": "added n_newest function, trim old zips from ftp\n", "proba": 1.234199515920409e-07} {"commit": "5d01ad1abb2a2945eddc4ef0ec1e3a4a6844df6a", "message": "[layers] subpixel act\n", "proba": 5.333172339305747e-07} {"commit": "cd4e7c5bc10c8e946ddf31d99a249a5a97b2dfda", "message": "Update get-observations.py\n\nStore data as a dict with observation ID as keys.\n\njson.dump() coerces all keys to strings, load back in as integers.\n\nWalks the pages returned from the API and continues until no entries are new.\n", "proba": 1.0882013157242909e-07} {"commit": "0e3984da08d5b15bce14c7ea0409fa1fe408ff5b", "message": "Updated from Brython Server: September 22, 2015 2:35:14 PM GMT-4", "proba": 1.0900709668248965e-07} {"commit": "f681b59f6c75b3eea81e638d7710a1be56a34c4d", "message": "Improvements to ui.py\n", "proba": 4.4576302116183797e-07} {"commit": "274332e9466c1479a103df9e08ffdb826284e3a2", "message": "[docs] poollayer\n", "proba": 1.7264288487695012e-07} {"commit": "04d0dac931a5005a48d0deae015058b6be0269f0", "message": "Fixed python-sdk's TLS support (#60)\n\n", "proba": 1.1316863179899883e-07} {"commit": "b01ece756cf177deeb970ebace1637ea5c74ac8d", "message": "Implemented client_authentication_required\n\nAuthenticate request only if required by RFC.\n", "proba": 1.06349411055362e-07} {"commit": "05a20644d94c342e618450998b72b963691ddcc4", "message": "Replace graph with sess as the default entity.\n\nThis is default in newer Tensorflow versions. Sess can now be initialized before the graph is build and the graph can be obtained using sess.graph. Hence the changes offers better workflow.\n", "proba": 1.0883508139158948e-07} {"commit": "dcc1410d834b8c2302af9cc705c0df68cdac892f", "message": "Improve logging in http_post().\n", "proba": 2.3122048276036367e-07} {"commit": "167baa9fcdab93c3ca4db46e2756f694318a0341", "message": "Added `S3_PREFIX`\n", "proba": 1.2716661501599447e-07} {"commit": "e1ce5c6ddbdd53d9f66f684261fc47d9d5f680f8", "message": "update version 3.2.2", "proba": 1.1732237226169673e-06} {"commit": "1b18e4a777b387af072afec4d3df4d3b71b4042b", "message": "version bump to 0.1.1\n", "proba": 9.7782844932226e-07} {"commit": "8cfc66e38875a93d262eef01ac9d9c10ff7e584e", "message": "Fix typo from merge.\n", "proba": 4.4403361698641675e-07} {"commit": "c00d5e20e58044def3c78c769556abd800536053", "message": "modified the AirtimePins model to recognize mobile networks and vend airtime pins when supplied with a valid phone number\n", "proba": 1.1530849519658659e-07} {"commit": "1a12e3d1138ff1fa56b92b3033146a8c6fbc39b0", "message": "Fix listing of compute resources with unavailable images.\n\nAn image of a single instance no longer available (for whatever\nreason) caused the entire listing of compute resources to fail. The\nproblem was that the code requested details about the image by its id,\njust to retrieve the id from the details. This can be avoided by using\nthe id directly.\n", "proba": 1.8969265624946274e-07} {"commit": "07a42a69b828860a45305a80e2ce2cdf7876acb4", "message": "Build CrashReportClient in shipping for tools as it is required by the staging process\n", "proba": 1.2244747438217018e-07} {"commit": "3169f9cf7d40ec7844052bf3ac962db1067864b8", "message": "OpenConceptLab/ocl_issues#303 filter concepts by collection version only\n", "proba": 1.0321726051643054e-07} {"commit": "952b520f7f2e23bd23f364496f4c8e63467e5c55", "message": "Senna unicode error fix, take 2\n", "proba": 2.3635459456272656e-06} {"commit": "8ad4ea71d6f56d51a247173556587a4bf6ee345a", "message": "rearrange tax params in all tests except those using cached tax funcs\n", "proba": 2.6378219786238333e-07} {"commit": "dda6472412d83316ad3d6a9604cdd7bb68324836", "message": "Added error logging for individual flask requests\n", "proba": 1.8857939210192853e-07} {"commit": "a5db9041787fa802f8e7726a6b3da01ce4487292", "message": "Undo temporary changes for testing.\nS3 uploads happen again, undoing 35487a48f3112\n", "proba": 2.4396470621468325e-07} {"commit": "7140c83c47159975a2085d3b1c6499e96d9cd98c", "message": "Added instance type argument to openaddr-run-ec2-command\n", "proba": 1.9616392421539786e-07} {"commit": "aee22b95f25bdfaffdfbdb0fbd10dbf6797b4358", "message": "[MERGE] Forwardport of fix from 6.1 revision 4334 that sometimes caused an import error when starting a cron\n\nbzr revid: cbi@openerp.com-20130322143046-xcdqdm8dfxngvo4o", "proba": 1.372533375842977e-07} {"commit": "d50d6cd2ee2d1a62ec4b82bd799af0d5b494f569", "message": "python: added attribute \"local_port\"\n\n", "proba": 2.405069494670897e-07} {"commit": "28013a50488eb02086fa2f591f11c7c0d2bc49b9", "message": "Polish code\n\ntest=develop\n", "proba": 3.4453564694558736e-06} {"commit": "7b18c55b1663bc3fc25818c7ecaf0c3e143ed352", "message": "fix the document of ones_like, zeros_like (#40233)\n\n", "proba": 0.9988744854927063} {"commit": "a7b16cfb045a0c925b00bad3fd2193c712faa34f", "message": "[project @ server.server: misc docstring tweaks]\n", "proba": 1.1605825989136065e-07} {"commit": "1378acb58f227a7045a409288680b68c18c92526", "message": "Update poses.py rename posescores to pose_score", "proba": 9.007799803839589e-07} {"commit": "9f00701c053a2f5e6eb14be119577bb7e1b4a5f8", "message": "Delete the mapreduce context at the end of the handler execution.\n\nWe don't want this context sticking around beyond the life of this request (into other requests on the same thread). Code that runs both in and out of mapreduces may be confused and act as part of stale mapreduces (or be confused when the context doesn't reflect an execution condition they could ever normally see, with missing variables, etc)\n", "proba": 3.5558926470002916e-07} {"commit": "2ef7ec2df52e529531f7fb27712f92ff62444e5b", "message": "Update Chain.from_endf docstring: Support Evaluations\n", "proba": 1.8934761669697764e-07} {"commit": "bf349b5f41e3b7edb4efbe279f79ded856320388", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "75a499bbead2aca3d41f81da4cf2db288657649e", "message": "removed 0 as lower energy group\n", "proba": 2.724242904150742e-06} {"commit": "b61a2506f5b74e6d659d2bbc0ba1822d04f0254b", "message": "fixing rebase error\n", "proba": 4.5271710291672207e-07} {"commit": "5c203eada26d6f7b78eb2048438d7157cd4a05be", "message": "messagebased: add a read_bytes method\n", "proba": 0.00010596576612442732} {"commit": "30d19f7d8ea3b0d37ec2411cd2040ba3fe3abc67", "message": "Resolve more tournament mappings\n", "proba": 1.3504553919574391e-07} {"commit": "4b215e192a31917e47dcfc98cc93a4bb0a4b3acd", "message": "add paris cmap (#4408)\n\nCo-authored-by: Matthew Treinish <4efabb057cc143e1042444743947010c1661479a@kortar.org>", "proba": 1.0735497113500969e-07} {"commit": "7b6b05a300cbd2a53242e6f6b99f6f18d4aecdcd", "message": "add falcon (#3840)\n\nCo-authored-by: mergify[bot] \n", "proba": 1.2389804737722443e-07} {"commit": "630603db522fc1e99a33958a7011f2c7470d9e72", "message": "Modify widgets.py to accept .S*P files\n", "proba": 4.0087562069857086e-07} {"commit": "0e9e72807c85539e67ee2b94b94b354db48bbc39", "message": "Bugfix\n", "proba": 8.038198870963242e-07} {"commit": "e3aeac7f22c44f8d8d580a0b244aa1c767549ea6", "message": "added missing parameter translation\n\n\nFormer-commit-id: c2dd3aa06267e11f23cb126e9c7db39d48baf366 [formerly 2827d14738e9a9e5822d4ad680fc8536361fae7b]\nFormer-commit-id: 5083367c6b16f82264750d45b19dda2d71585b28", "proba": 6.346535883494653e-06} {"commit": "1a8a4eaecd9d494ad08510fedb92a3015d174b83", "message": "kvs/tokens.py: added a key generator for BCR block result\n\n\nFormer-commit-id: 6ee9634f475198e0ae73e00666ae9ea479813bcd", "proba": 1.4362383353727637e-06} {"commit": "0fa68e8f4d19c0b5f48265cd75e9cf9eb3dcd2fb", "message": "Made callbacks abstract.\n\n\nFormer-commit-id: ce5d4f6e033b2d2f79133c83f232095ccb491eb1 [formerly 80b20fd56499e007efa9559efd574a51ce2ae4ca]\nFormer-commit-id: 07c14eb50c1d48a3f018be4f44179a14ac01b1f3", "proba": 0.006287315394729376} {"commit": "0d0445cbde9cd2958be1824f4c0d5d6ca1a45f30", "message": "connect signals post save `redirect_generate` on sender Link\n", "proba": 2.2550568701262819e-07} {"commit": "d52bbb41ee6d5760e94b5414b74750cc6c308e0a", "message": "Fix cache middleware key prefix\n", "proba": 9.523932021693327e-06} {"commit": "765339658cde4efa130eb224c3b91fa7cfd18fc0", "message": "Show release log\n", "proba": 2.649798318543617e-07} {"commit": "c76c909976346441480fbed631689ffcc9dc9884", "message": "bumped version number\n", "proba": 2.2809651909483364e-06} {"commit": "23aed8f012c92940e985254fa699f9fdd03174c1", "message": "Use which instead of type to check if a binary exists\n\nFor example if mvn is a defined shell function but mvn is\nnot installed the method ensure_exists will return True even\nmvn is not installed.\n\n% type mvn\nmvn is a shell function\n\n% which mvn\n/usr/bin/which: no mvn in (...)\n\nChange-Id: Ic751660c030e687ca6bc53656fd49c5563cfc71f\n", "proba": 0.004350210539996624} {"commit": "b72b3add9f20cc9a64a858d5ab70c3d90846c460", "message": "Stop inventory constantly giving containers new IP\n\nSee bug for further details, this was affecting pike after applying\nthe backported patch.\n\nAs the bug mentions, some containers were constantly given new IPs,\neven with no changes to user_variables yml files or\nopenstack_user_config.yml file.\n\nFurther to the bug, I think that the code in master/patch will\ncause containers to receive new IPs when network settings are\nchanged (bridge, mtu, type) rather than just updating that setting.\n\nChange-Id: I0a757e9f503d3f604b2ba2c3409b4a4507d5edff\nCloses-Bug: 1756091\n", "proba": 7.426576758007286e-06} {"commit": "22863b91f2e4404899f74732613ec4bc66bc07ae", "message": "minor fix for when the preprint has no sup node\n", "proba": 1.8383416033884714e-07} {"commit": "833f8ee4b18ca3023ef42cd690c4de054c9f73cd", "message": "Use a builtin for quoting shell arguments\n", "proba": 1.0777674788187142e-06} {"commit": "28683bdb108dc679f4cc477cbab130ecb5a60d2f", "message": "made format changes to comply with PEP8.\n", "proba": 1.1457177606644109e-07} {"commit": "3ca05190dbaddf96471c1b640ddf8aaa5c13a362", "message": "Fix: DebugLog.on_result_judge() KeyError: 'judge'\n", "proba": 0.0007841449696570635} {"commit": "f238a7d227036510b91ea4a7e1e9178ea60b3997", "message": "Update imagecodecs/__main__.py\n", "proba": 4.9739023779693525e-06} {"commit": "971980873e2cec4cde37d1f8bfc80511b1f69674", "message": "Fixed umlaut issue by search & replace in the HTML diff.\n", "proba": 1.02733700657609e-07} {"commit": "04d156a9ceb7a5fb1aee47a4d495543a12599637", "message": "-Transfer.transfer_along_ray\n", "proba": 5.926618541707285e-06} {"commit": "90437c119d89a5bca330796348663ee256ff3570", "message": "Updated ILIAS data matching message\n", "proba": 1.6745829611863883e-07} {"commit": "0daf08fe726b448dd0560c15697527f120301d1a", "message": "detect upperpathnum during the recursiion, fix typo\n", "proba": 0.00023155788949225098} {"commit": "3f0f3b41747ddcf176d0ce12d4bf3de021bd5e30", "message": "removed lightbreather\n", "proba": 5.953913273515354e-07} {"commit": "b61cdc0af3383598b560f4c865d3c1e6ace48ff2", "message": "Docs: Explain handling Popup in KV\n", "proba": 1.305906351944941e-07} {"commit": "4a749f42ca7c646933f5b75efce9fc28985b5dde", "message": "did a rewrite of authentication method and AddRecipient method\nAlso created ApiResults class which every API call will fill with HTTP status and XML response\n(it will be up to each individual API call to parse the XML response into something more meaningful)\n", "proba": 1.0387512361376139e-07} {"commit": "ed490ef11e4d382327f362b7fa37e11b3dba675f", "message": "Make sure Django < 3.2 uses BigAutoField\n", "proba": 4.5449851882040093e-07} {"commit": "c4c953abcf0b0b0981ef62a72ba7c74cbe721f9d", "message": "chore(qip.circuit): adding to module\n", "proba": 2.271387984364992e-06} {"commit": "2af301cf69cb0a9c3c22d57f290f4962868f7d05", "message": "Add liwc entities to ElasticSearch index\n\nLIWC entities present in the FoLiA XML files are added to the ES index.\nAt the moment, the name of the entity class to be added (i.e., liwc) is\nhard coded. This should be made into an optional parameter.\n", "proba": 1.063220267383258e-07} {"commit": "d2a1ad8cb4d26c6d74bad126347248770a828260", "message": "add log:push order to tgw\n", "proba": 3.9919243022268347e-07} {"commit": "f06bb3ff205d8a885b73a1f2ea62effd09c53666", "message": "extract method isEmailDomainAdmin\n", "proba": 0.9999948740005493} {"commit": "8b0cbde6806c30e094a1c48089a5dbf2b8e863c7", "message": "Remove X-Bounce-Url from report email headers (unused)\n", "proba": 1.2908311930459604e-07} {"commit": "13b60b3d1bafd64c2a65018cd428b315596aabba", "message": "minimising overall lines changed\n", "proba": 4.887212412540975e-07} {"commit": "ccc20cdd0cf487a7fc617d66c4d42282debe1fa8", "message": "fixed bug in plugin discovery\n\nSigned-off-by: Steve Loranz <749f95e2748aaf836ea2a030a8b369f33fe35144@redhat.com>\n", "proba": 1.0713405629303452e-07} {"commit": "d9e7843c58c7495ff21a9bbc0da1a89f435230a8", "message": "Need temp name that doesn't collide\n\nWhen connecting to seed servers there is no GUID known so assign temporary GUID 'seed[index]'.\n", "proba": 1.2494531631546124e-07} {"commit": "e6c75b55ef361c584aaefb6fe3c5ef5506aad945", "message": "added None check to forms app, reminding me to load the bloody fixtures.\n", "proba": 1.0024598395830253e-07} {"commit": "b988f46580a0ca284b1dcd55f01e55382042bd9c", "message": "audit events: add Outcome and BriefResponse to AUDIT_OBJECT_TYPES\n", "proba": 7.260440497702803e-07} {"commit": "7d2c8a3471ae554605e18e9339cd9463a367c5c8", "message": "minor (endl in eval)\n", "proba": 1.330528220933047e-07} {"commit": "07c9ee083853c45416408b69937fd70652044a9e", "message": "[sale_order_requirement_project] all service\n", "proba": 1.0498640222067479e-05} {"commit": "98e8d812f323886f3312fb233aca601a5a96351b", "message": "Fix swallowing up trailing comments in an import block.\n\nFixes the remaining failing test test_imports_dont_delete_trailing_comments.\n", "proba": 1.5720392809726036e-07} {"commit": "be4277dfd4219a69d48507282b48214d0af55d5b", "message": "added some comments\n", "proba": 1.3571664680966933e-07} {"commit": "4b1ebfa6d1a83af8854b483c0f03e54275f1f523", "message": "[refactor] using Pool.map() intead of Pool.apply_async()/close()/join()\n", "proba": 2.7963433240074664e-05} {"commit": "2da9afa436aa59a6cedcf12216492dd14ef36d4d", "message": "Pass background_rgb parameter, useful for generating images for print\n", "proba": 1.296868674671714e-07} {"commit": "19aeea42cfcccfba6abc8baf328b9d242f708f7b", "message": "More consice naming\n", "proba": 1.4937975834072859e-07} {"commit": "496ffb3743abdfff33c44948383dac3fb485393c", "message": "[refactor] reading image block with unpack_from\n", "proba": 2.5337124043289805e-07} {"commit": "af2d4999afb2f99875eadab4cd2ce6cbe72df9e1", "message": "check works on dev versions of scipy", "proba": 1.5732690883396572e-07} {"commit": "1e38cb5479fd567b344e43334942b0942c0e5b07", "message": "Formatting fixes in help strings.\n", "proba": 1.2855069542183628e-07} {"commit": "e7c25c99999084bcb9e3c5097b594ea17debf6cf", "message": "Remove reset button being on all the time (for debug)\n", "proba": 1.2020493045383773e-07} {"commit": "922ac0b5ec8cc06b6c22088d74bfe659a4d45bb4", "message": "Corrected a mask name\n", "proba": 0.03176701068878174} {"commit": "d73804341f19f577ee68a45e38234e9097b827aa", "message": "DOC: Improve summary\n", "proba": 1.9048576405111817e-07} {"commit": "43e8b090d806d615a8153d1e14063cc6d274bb25", "message": "Update issue 130\nNow I also applied the fix :)\n", "proba": 1.041661832346108e-07} {"commit": "ce7d371bb0f58f83574b8132c98fa843b0b2a1d9", "message": "Renaming gcp_kms_key", "proba": 2.3057493763189996e-06} {"commit": "01d257525a8921ee52252d26b6ee06e259900463", "message": "version control update", "proba": 5.981897857054719e-07} {"commit": "6da26e52c3a0a4fff81229f978f6d6fe34d0754c", "message": "added dataset base parameter (a user-specified base to resolve relative FROM IRIs)\n", "proba": 1.170742010003778e-07} {"commit": "25da9f2d050f64e2a7c54bf891f71d710fcfff7f", "message": "Updated manifest.py\n", "proba": 5.258597184365499e-07} {"commit": "abdfbf0dadba7f9745d9b29e019bc42b0c9db999", "message": "remove resize code from prev. trained model - Did not work with all model types\n", "proba": 5.000704845770088e-07} {"commit": "d6d8ec061c7e31f26018356643e97e83870e7e68", "message": "rdrf #1370 If the display name is missing, a validation error is raised\n", "proba": 2.4601604309282266e-07} {"commit": "67281e2a02bd7a3a3006699b689d066f46693bf6", "message": "Whoops, code was already changed due to a pull request...\n", "proba": 1.0392110283419242e-07} {"commit": "4db6b611df8d81b1616496d54af140a7e49e3746", "message": "Fix flow id\n\nFix #117\n", "proba": 1.8994047934484115e-07} {"commit": "e22a222865f19099e73b1294000adb4dd624d9fe", "message": "Use is_callable_object function from kyoto.utils module\n", "proba": 4.1787143345572986e-06} {"commit": "7ddb150b4f9b2c400846465b9ad83f7bdd4c3541", "message": "Only checkin the first flight segment\n", "proba": 1.8444141858253715e-07} {"commit": "318457d727eece813cc1dd0b5037b6df89734ec5", "message": "Use Domain objects for CNAME symlinking", "proba": 2.249764037287605e-07} {"commit": "1be7814856e88bfb7336d7b2db8fdf29ebb2ba71", "message": "redirect user to post if submited ", "proba": 2.256407896084056e-07} {"commit": "75e7fc2af1578132223591817917af6612d5525e", "message": "Just use git refs for lkcr and lkgr\n\nR=iannucci@chromium.org, martiniss@chromium.org\nBUG=640251\nRecipe-Tryjob-Bypass-Reason: None of the affected recipes need safesync anyway, will manually roll\n\nReview-Url: https://codereview.chromium.org/2268893004\n", "proba": 2.3091462253432837e-07} {"commit": "e7f4221859295ac0909847b1bfed0d53ddf442b1", "message": "updated setup script for pulling a relabeled desikan atlas.\n", "proba": 1.0421944551808338e-07} {"commit": "4d36d4a38180b9c3470626a54f3d9b04adbae901", "message": "Add logger\n", "proba": 1.9623366824816912e-05} {"commit": "04a779e4b0c5f3bc4efac0561a5bf911d76ce1b8", "message": "more robust to old versions of showhide\n", "proba": 1.8899275744388433e-07} {"commit": "1c2c7f9b8f31820c27bc8f4db45bc859687c532c", "message": "wav -> mp3\n\nHemmaal mooi\n", "proba": 4.936481445838581e-07} {"commit": "17e40e4b1f38ee90b47733015dbe5e841e16aad2", "message": "Fix dictionary size change in music player reaper\n", "proba": 4.721946424979251e-06} {"commit": "70ba010a96c85cac76d77ec7baa791631ae7a646", "message": "Better plot\n", "proba": 1.951236981767579e-06} {"commit": "687653b71ad48404107d7f5f7f2fd23b2d717682", "message": "Resetting default sst model to 0\n", "proba": 6.09696712672303e-07} {"commit": "ea5a1e0c5bd2856791b345f8d21bb07b119a9b51", "message": "Plot center\n", "proba": 6.366634579535457e-07} {"commit": "0035200543a7b226a095d2fb4ec880e0dd8732fd", "message": "Rearrange test data\n", "proba": 2.573088204371743e-05} {"commit": "58b56875e77be6c2b6b65bbec7300a16c6fd5573", "message": "Clarify SFTPClient.open() docs re: actual behavior of BufferedFile\n\nCloses #2000\n", "proba": 1.32319655676838e-07} {"commit": "61dde60fe12c44b053d6b8de8cf7d09b463dcdf3", "message": "clearer error message when Particlefile is open on interpreter shutdown\n", "proba": 2.845058872935624e-07} {"commit": "6a082139487aa24699924cdd696d183c95c01326", "message": "retry with pg_basebackup if one cannot get data from WAL-E.\n", "proba": 1.1197120386441384e-07} {"commit": "1ddce5cf0b87cb999fd25f8ca52d168679ebc2ac", "message": "Add plus character into allowed flag characters\n", "proba": 5.184006681702158e-07} {"commit": "95ea1d7d6564bcbb2e3b8d2ba254ccd2c1c38436", "message": "Add import for focused stuff\n", "proba": 1.5411363563089253e-07} {"commit": "b98429f96e228eab675a97cd5f15f473360a7155", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "3020df141affe4ea338bd7dda89f6dca0b26d553", "message": "Whitespace changes, made manager views use get_object_or_404, rather than returning redirects\n", "proba": 1.8959879355406883e-07} {"commit": "9a221409b77a50e5df545c294e1160b63a67df63", "message": "Adding lists is expensive(-ish)!\n", "proba": 3.9432276821571577e-07} {"commit": "655dca1a2e316ad6b6621bf4f57a2bae7b8a9488", "message": "Renaming option checkpointMethod to checkpointMode\n", "proba": 3.7408858588605653e-07} {"commit": "d3b3e9af722ac00b21bf36706f4e0ab7cf94af00", "message": "chore(release): bump to v0.6.4\n", "proba": 4.482560029828164e-07} {"commit": "e47041d1b7d339e7fc960bb63be9dc44b0a8016a", "message": "device-specific messages\n", "proba": 8.937811912801408e-07} {"commit": "59400100aa2f35bfea52b3cf049ef8d0f958527d", "message": "Fix error when reaching a dead end in the markov chain\n", "proba": 6.293052592809545e-06} {"commit": "a8630f7090f1b74b1007d45117902517ecc4becc", "message": "Sync ledgers for non-commtrack projects\n", "proba": 1.7445951527861325e-07} {"commit": "da3738c2e1559acb2385773728f63f244570bf63", "message": "makes debug a parameter instead of a local variable\n", "proba": 7.494770102312032e-07} {"commit": "810cb6d4840ca95ebcd90b51d2ae61ead537ed9b", "message": "Refactored \"CSA practice\" serializer\n", "proba": 5.528058295567462e-07} {"commit": "2dd34b7b8a81c26d416f4480d3dd1d4f523fa9e5", "message": "adds function to plot histogram of hurst exponent\n", "proba": 4.7318232532234106e-07} {"commit": "9d4b001c1f7a1155d02d93a3ddccdee7007f6d46", "message": "AuthToken objects now deleted after use\n", "proba": 1.374938705112072e-07} {"commit": "914ffb00fe4c47e4352922160c53d35c5faca866", "message": "fixes formatting of references in documentation of examples\n", "proba": 1.5114463280951895e-07} {"commit": "7ccb52897e82629e4bbb0298dba4de76bc6a63db", "message": "Add a deprecation warning\n", "proba": 0.0011628951178863645} {"commit": "9327e46164802a96155dca95085f56192bec88ff", "message": "adds warning message for too small input sizes (WIP: has to be confirmed)\n", "proba": 1.1087227136385991e-07} {"commit": "b1276b12eb7845a67e7f3b16e2b966ea45918e98", "message": "pattern.web small fix to Crawler queuing\n", "proba": 2.2080894268583506e-07} {"commit": "0f263a09ec6ce1cfa41fd8603ad0bfeac81380e5", "message": "When converting from a function to a class, we missed a few instances where we should be referring to the object's values.\n", "proba": 1.5161150201947748e-07} {"commit": "2a90573d5eed19a0d56e12473045dab272ff653f", "message": "cleaning up the code.\n", "proba": 4.238829092173546e-07} {"commit": "9ec2ddf1db6cd84ceded89707f27f0264ce56432", "message": "Added default exclude to empty in forms\n", "proba": 3.8573088545490464e-07} {"commit": "6f55fcc1d92578206c1cd0055e9b4302a8ac178b", "message": "adds info about other reference implementations in documentation of hurst_rs\n", "proba": 1.29840074691856e-07} {"commit": "03b2fb8788d439e7026b2751e0e8b7f37e7d0383", "message": "Fix Issue 118.\n", "proba": 1.3062712866940274e-07} {"commit": "ae04e81d91cd15bc16fd25013172393a8530a58d", "message": "Verifying Facebook Graph API Calls\n\nVerification with appsecret_proof can be used: See https://developers.facebook.com/docs/graph-api/securing-requests", "proba": 3.837019733055058e-07} {"commit": "b1250002320e7d5950d88934c95368ad9199eac1", "message": "random.seed uses current time when no argument is given.", "proba": 1.633699042713488e-07} {"commit": "df462112871db49295620b35c0acdc1dca9ea575", "message": "let people know if a host isn't responding\n\nsometimes you get an unresponsive client\n", "proba": 2.7903763566428097e-07} {"commit": "12dac769152ebd074ed2b415d3980729bdbe3e46", "message": "Make nonexistent warning more obvious\n\nRather than just writing to stdout that a file exists locally but not\nremotely, use logging.warn. This will emit a nicely colored message.\n", "proba": 2.5925243107849383e-07} {"commit": "ea9395dd4770e3f630c0571207940191126e91f4", "message": "Oops, definitely don't dropdownify all the Media records\n", "proba": 4.563200377560861e-07} {"commit": "dbea9b8fdbed54b44f79b6e75d60601f0926f1ac", "message": "think i added particles to Darksky correctly.\n", "proba": 1.1513279218888783e-07} {"commit": "7d6d678e8d96ecbc4adc7aadfddc7ae859d3ccef", "message": "purchase receipt return entry in dashboard\n", "proba": 3.490016524665407e-07} {"commit": "368a4a4a3d33ce2a0c305bdb20deb02207c92df0", "message": "Delete not-free-tests.py", "proba": 3.873967580148019e-05} {"commit": "f6746e8d945b1675f200a170d49b9427940ff7c0", "message": "Fixed coveralls.\n", "proba": 2.1738560462836176e-07} {"commit": "cfb09353b02dd230546775d18dadb1ba7ed2acc6", "message": "Refactor submit_comment tests\n", "proba": 1.675467871109504e-07} {"commit": "3ebb1413b7bb3ee02e1b547fc6aeeca4a19d2a61", "message": "Change datalog to emit grouping terms before aggregate terms in groupby.\n\nI believe this is expected by Myria. fakedb also expects this.\n", "proba": 1.7350910752611526e-07} {"commit": "959061107b72937eefd48db93ddd249edffe3560", "message": "unused import\n", "proba": 7.379109661087568e-07} {"commit": "7e0d9a1c6c4d45fc5866a5fb02c46e1746b024fa", "message": "cosmetic\n", "proba": 1.343016947430442e-06} {"commit": "17c8aee520d506eea349f2958f75523e245f2e94", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "9efa2ae307668529e1e86cb5d12794fe3e8c5ab7", "message": "removed\n", "proba": 3.1444810133507417e-07} {"commit": "cea9ff1718502cb4ebf3b31e446cfcebf4bc1035", "message": "Do not automatically fuzz Windows Clang builds yet.\n", "proba": 1.0727187316206255e-07} {"commit": "6d2c03401315c01a8b0431e9e5eb4930b0d8d5af", "message": "agregando pais\n", "proba": 3.2265634217765182e-06} {"commit": "51d09d6cbd45af8283959a55afe7ab6e369cddef", "message": "when run is in progress, show individual runs\n\ngit-svn-id: abd770af2affaf62930f25b244f6edafe8ddae5b@230 164481a5-15cb-f69f-4b93-856c5b7754c5\n", "proba": 1.1326185358484508e-06} {"commit": "215a6b8d4828eceaa5801ff79c06a53b86f63aba", "message": "Fixed serializers.\n", "proba": 1.6902585286970861e-07} {"commit": "93bc5b4b182769e808f0785eed4d31f67268dd73", "message": "Added `rename` method for moving files on server.\n", "proba": 1.0639018910296727e-07} {"commit": "c494a43f33e6960c1317babececb3e35ad3050a5", "message": "Fixed a buglet on the log view: when looking for the revision log\nof a path which was deleted, the mode correctly switches to \n''Show only adds, moves and deletes''\nbut this was not reflected in the mode selector.\n\n(discovered while browsing [https://ssl.bulix.org/projects/zwe/log/trunk/php-include/core/session.inc.php zwe], \nbtw thanks guys for running a bleeding edge version of Trac!)\n\n\n\ngit-svn-id: eda3d06fcef731589ace1b284159cead3416df9b@1706 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 4.861969046032755e-06} {"commit": "81f97a4b4bfec9a07a65f45017752f064ddb4976", "message": "The correct bug number is bug 1148880.\n", "proba": 0.9999994039535522} {"commit": "ca4c739aa609438e399ae47958c37b92b45843ed", "message": "Move BasicModel into datastore.\n", "proba": 1.937631992632305e-07} {"commit": "99ef9e8dc86d7b907c1febd80d6dea3a1736cdfd", "message": "Replace double backslash in destination path with common slash\n", "proba": 7.039247520879144e-06} {"commit": "7fde507a2f01b2eb0ef2a169d4f93f30dae58d15", "message": "login test\n", "proba": 1.7767199551599333e-06} {"commit": "339bc8510f8b00554556241c7b4f41d753ac8278", "message": "Delete old, moldy, sessions.\n\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@672 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 0.0005762397777289152} {"commit": "29e491c5505d2068b46eb489044455968e53ab70", "message": "Add tests for strait and fjord\n", "proba": 7.464429018000374e-06} {"commit": "edc855c41d72bb4df38ec7c6c1b4d0d7bc4b9da1", "message": "compute: tweaks to vm_mode APIs to align with arch/hvtype\n\nRename the 'name' method to 'canonicalize' to make its purpose\nclearer. Also add a 'is_valid' method to check validity without\ndoing canonicalization. Make it use a specialized exception\nclass instead of the generic 'Invalid' class.\n\nRelated-bug: #1348629\nChange-Id: I4bb972aeafb69be594bff40eded3cfeec22f0bef\n", "proba": 0.004290326032787561} {"commit": "f30d38f24d06e72a473ade91b534a131e2623a1d", "message": "Add a comment in case anyone wants to bisect older revisions on Windows.\n", "proba": 1.0984906140265593e-07} {"commit": "83c03aa6675e30d818c25923462f761fcc71c3a2", "message": "Remap column IDs again\n\nMessed up the column IDs once more, I was doing the function backwards!", "proba": 1.1945878952701605e-07} {"commit": "942f254501037012c16c098d233432818ca0632b", "message": "db: fair attribution of Connections\n\nThis changes the logic of the pool into a true FIFO behavior: if there are already waiters, a thread will just wait and not preempt the waiters, unless it came there after resuming from a wait, in which case it should always get the connection.\n\nFixes #9111.\n\n\ngit-svn-id: 30ec3c1a2098df185a8733d0352d646269562639@10002 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 9.006322216009721e-06} {"commit": "e3a0f7f85d3ddd750d9755f8044d75cfab71599b", "message": "Make InvalidInstanceIDMalformed an EC2 exception\n\nRename InvalidInstanceIDMalformed to InvalidInstanceIDMalformedEC2\nand add ec2_code attribute to make it proper EC2 API exception.\n\nImplements: blueprint ec2-error-codes\nChange-Id: I8841f79890e087b850801bf71da0512bd329d5df\n", "proba": 7.572343292849837e-06} {"commit": "6eea1f2df66782b0559cd948a9c82d9b4633c814", "message": "Unbreakage fix following activation of ECMAScript Internationalization API in the js shell by default.\n", "proba": 1.0257667071300602e-07} {"commit": "a785b0d70c4e04c73ce2f6e35f485a4c7c01fea9", "message": "Testing\n", "proba": 1.8708933566813357e-06} {"commit": "83781f3b2f1cde0aab913ff4d64de45cf9b798be", "message": "Update snooper for multi-spline qp controller inputs\n", "proba": 1.9433299769389123e-07} {"commit": "5cc73b805b2a7949a62a3b5e5563a7a00dbefd21", "message": "1.0.11dev: Fix indentation using reindent.py\n\n\ngit-svn-id: 50cd48c816abc7a9f40e8e03a4277466cb30a3e4@14747 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 0.0002857219078578055} {"commit": "9aa1c0d7b26c7ba794abd69bee94ac7342bfc40d", "message": "Compute: Catch binding failed exception while init host\n\nWhile compute starts it will init all instances,\nif an exception is raised from one instance\n(e.g NovaException during plug_vifs), then the\ncompute process exits unexpectedly because of\nthis unhandled exception.\nThis commit changes the NovaException to more\nappropriate VirtualInterfacePlugException and\ncatches it during init host, as well as the\ninstance is set to error state, with this change\nthe compute process can be started normally even\nif this VirtualInterfacePlugException is raised.\n\nCloses-bug: #1324041\n\nChange-Id: Ia584dba66affb86787e3069df19bd17b89cb5c49\n", "proba": 0.00016578345093876123} {"commit": "7838ed66de47cd43b4a8771e2b0e1bf25cc5e2e2", "message": "Issue #127: 'Redesign the permission management for project creation' (solved bug)\n", "proba": 9.894569075186155e-08} {"commit": "26deb25c71c9fa5c27958f16f312f9a390774a43", "message": "fixing done\n", "proba": 5.910413847232121e-07} {"commit": "a5cfdc30650a46a46b2b6ab0deb35b099a5f5023", "message": "Reduce strace log sizes.\n\nRemove signals from the logs.\nReduce whitespace usage in trace lines.\n\nR=csharp@chromium.org\nBUG=\n\nReview URL: https://chromiumcodereview.appspot.com/16092003\n\ngit-svn-id: d5a9b8648c52d490875de6588c8ee7ca688f9ed1@202563 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 0.00011524779256433249} {"commit": "b70ee2dbb238530a7b0a1426de34c1098ef57270", "message": "Check ephemeral and swap size in the API\n\nValidate that ephemeral and swap disks passed in trough the API are\nwithin size limits for the given instance type. The validation is done\nin the API layer.\n\nCloses-bug #1218977\n\nChange-Id: I96c6e651e4b221313c39dfc41e79d536585fb955\n", "proba": 3.102966002188623e-05} {"commit": "46b70413ce14527fba5c22d4603837fabb03e16d", "message": "ugh, the pawn stuff is giving me a bad feeling and there isn't much time left\n", "proba": 3.1559272883896483e-07} {"commit": "cdf545cf9385a0490590cd0162141025a1301c09", "message": "Use argparse formatter RawDescriptionHelpFormatter, maybe temporarily\n", "proba": 4.927389340991795e-07} {"commit": "0f550ef0d4c79dfcbed43fe2cbd7596e34638b40", "message": "When a claim is rejected, explain why\n\nPreviously, the Claim class offered #test which would return a Boolean\nbased on availability of memory, disk, CPU and PCI devices.\n\nNow these tests are performed from the constructor and if any test\nfails, an exception is thrown. All failure reasons are described in the\nexception message. EG:\n\n \"Insufficient compute resources: Free memory 8192.00 MB <\n requested 16384 MB; Free disk 45.00 GB < requested 50 GB; Free CPUs\n 16.00 VCPUs < requested 17 VCPUs.\"\n\nChange-Id: I5bf9c81bba747a6c164144e60a92dc6da2f98f4c\nCloses-Bug: #1212768\n", "proba": 0.00011758482287405059} {"commit": "f1eb85f23783ea944d2a05dbffd1beee1402a832", "message": "progress on server stub\n", "proba": 3.979100142714742e-07} {"commit": "d9ad36482f114ab37e32f538901bb9794782e5b4", "message": "InstanceGroupPolicyNotFound not used anymore\n\nInstanceGroupPolicyNotFound is not used, remove from\nexception.py to clean up.\n\nChange-Id: I195aaa0829c400d5e5799a7ea3ed8dbb41d71dc1\n", "proba": 9.792114497031434e-07} {"commit": "7380fdb4db02354013eaefccf14bd5d289d45b7c", "message": "Removed obsolete code.\n", "proba": 2.4343974018847803e-06} {"commit": "1beee4ba2f688687af4e596b000edc58bafaec3b", "message": "adek20 dataset\n", "proba": 4.921270146951429e-07} {"commit": "27719d718fd47599bd16602664567b922bcece8b", "message": "Made sure there were two newlines between each class declaration\n", "proba": 1.6139558738359483e-06} {"commit": "2756d131582d112d963b45847b58875b150def9d", "message": "Fixed `integers` by defining function type passed to `get_http`\n", "proba": 1.1692791446193951e-07} {"commit": "9276fde39a738299bc4c1534ceff1afc17ad04fb", "message": "Typos\n", "proba": 1.7046078937710263e-05} {"commit": "af1a382652cba85932cf309aeaf364eed1c2f6b5", "message": "Fix off-by-one error in translocation variant export\n", "proba": 0.00029623741284012794} {"commit": "148d4c44a9eb63016b469c6bf317a3dbe9ed7918", "message": "Add documentation for Permutations class\n", "proba": 2.2527784437897935e-07} {"commit": "f2e14108374d0b6afe67cd6c310804144016af5e", "message": "Fix numba.test() after rebase\n", "proba": 2.1751349777332507e-05} {"commit": "874c6a97c53b9a285d4e298af02f658060d98b52", "message": "Randomize order of atoms for proposals and account for this in the logp\n", "proba": 1.7934151230747375e-07} {"commit": "67d22ee27f9cc7f60870c50f26afc3f7f8bc5461", "message": "Ensure buf is bytes in GZip's decode on Python 3\n\nOn Python 3, `BytesIO` avoids a copy of `buf` if it is already of\n`bytes` type. So go ahead and convert it to `bytes` in the `decode`\nmethod. If it is already of `bytes` type, then this is a no-op that\navoids a copy on Python 3.\n\nUnfortunately Python 2 copies the result regardless of what type it is.\nSo simply make sure to take an `ndarray` view onto the data on Python 2.\nThis will ensures that `buf` is something that satisfies the buffer\nprotocol. That way we do not introduce any additional copies beyond what\n`BytesIO` will do on Python 2 anyways.\n", "proba": 5.565038918575738e-06} {"commit": "396b022ba688955934374e1f4f101065193b54d8", "message": "Added Hartree energy value\n\n", "proba": 1.3151775135611388e-07} {"commit": "c9dde7a80b17cf94ee03ed1cc8412f30b6c70880", "message": "Adding __init__.py\n", "proba": 0.0004275148385204375} {"commit": "db7e02827c77d60af07abe8ad0471c70e4da4671", "message": "add numeric.ceil\n", "proba": 0.9992197751998901} {"commit": "22754fa1978d823d66a3457cccfd85e28a897939", "message": "update NVD3Chart class doc string\n", "proba": 2.047855360842732e-07} {"commit": "b9a901594a4be3bc01b318ba489f406f7796ae63", "message": "fix unicode issue #1717\n", "proba": 7.378289865300758e-06} {"commit": "1063e406590efcc3dc2d303cf16686cda956f201", "message": "Remove unused imports\n", "proba": 8.691937409821548e-07} {"commit": "8b9f68514d78851f3b445f996f3eaf607831d352", "message": "Add more descriptive names to variables and functions\n", "proba": 8.334691870004463e-07} {"commit": "06c68a4be1ab0ea734f9d46e5146b80c7d1e644a", "message": "seed_type_label setVisible\n", "proba": 2.015385871345643e-05} {"commit": "56c5e1e9e2294b4782c8d927239531f308cd5ea8", "message": "fixed keyword name for blob units\n", "proba": 3.83600621489677e-07} {"commit": "de62a69ea362d9bd4b98fb138650c3de780f14a6", "message": "Added Volume Boot Record (VBR) class\n", "proba": 1.2665489634855476e-07} {"commit": "fbe905623992834a7fef32e2a1f94c8aae97126b", "message": "[#1311] Refactor validation tests.\n", "proba": 1.1630400820195064e-07} {"commit": "fa539dda28fed05c6b437723c5d14c680e96231c", "message": "fix override defined __table__ in sub model class\n", "proba": 1.5594021533615887e-05} {"commit": "34cb1f6620dbaffe963c89eba1e0d8e65bd48539", "message": "simplify install wizard\n", "proba": 1.6507698319401243e-06} {"commit": "1816593109470646a13862e75fdd66d8731af684", "message": "added API bits for NCMC switching\n", "proba": 1.8719306638104172e-07} {"commit": "8eb3c5bb5d438d5f4da448819cb051d0fa8143cd", "message": "Bumped minimum piccolo version to new 2.3.5 that to use new p2.3.5 -i flag for sane integration diffs. Changed postreview number to .7 non-dev release.\n", "proba": 9.926023381012783e-08} {"commit": "75927e1356144a7c97da398c5f94bed52a657a33", "message": "Commit from jeff\n", "proba": 4.251748180195136e-07} {"commit": "c4d10f6d639707591c43e9c8c21465c503f01fbe", "message": "fix: wizard 2of2 (cosigning key)\n", "proba": 2.6524733698352065e-07} {"commit": "9c17275084daa6c08bddf6c81260b45a8a289da2", "message": "treatedaudio - set environment forframemd5 logs\n", "proba": 1.3525060182928428e-07} {"commit": "aa257cf9dbb38cb0bbae45f738c3924f884aec27", "message": "Have --debug set the debug level on the logging module.\n\nWhen running with --debug, the logging module will now also be set to\nshow debug messages. This is useful in particular for hg right now, as\nwe'll get more useful information out of it.\n\nReviewed at http://reviews.reviewboard.org/r/2997/\n", "proba": 1.5553463583728444e-07} {"commit": "74947af21eb578ae05e4fbe4d056f6c688445213", "message": "cache for throttled request\n", "proba": 3.3593133252907137e-07} {"commit": "4e318a7ab055f4c1bbb29b4116d60f6f01ee96ab", "message": "integration motorkit control\n", "proba": 2.1825599105795845e-07} {"commit": "a2f4cb5567a92fb7ae14165c5d477259b014f6b8", "message": "little modification\n", "proba": 2.584878302513971e-07} {"commit": "3b7b75c6c48c721f4981e25c7c5bf9c23a8c5d12", "message": "Unbreak jsfunfuzz fuzzing on Windows by having the runtime ICU libraries at the proper place.\n", "proba": 1.0821162277352414e-07} {"commit": "6cd5289487422ea6e84ffc5c43268e37c92babb4", "message": "Fixed get_attribute bug. Refined text output\n", "proba": 0.0004114071780350059} {"commit": "5fe9357414b879fbc064bf7763f5b3b64c7ebe88", "message": "updates default parameter choice for nvals in hurst_rs in favor of higher n\n", "proba": 1.8103585830431257e-07} {"commit": "eade0d9eaa54c5f0385c55e2d339779065f3ccad", "message": "Mutually exclusive options\n", "proba": 2.1368497016283072e-07} {"commit": "2519c8660fd821e7839c1443742cf79774a6e27d", "message": "Fix issue 1650: GetConformerRMSMatrix not working with some conformers removed (#1651)\n\n", "proba": 1.0537496564211324e-07} {"commit": "bd1bf0248b394c6338946c62585c858890fa6f4f", "message": "pantilt integration\n", "proba": 3.2905893476709025e-07} {"commit": "063792eaf0ee96c7953c45bf9454b62595402c26", "message": "commented print in views\n", "proba": 1.9289278441192437e-07} {"commit": "0700037da87702c7e1c4964ad6088666661f3603", "message": "making error message more useful\n", "proba": 3.414408809021552e-07} {"commit": "5f62247699a3d59381cb0f88400ae4484ebaf21f", "message": "maint: remove unused exceptions\n\n* nova/exception (InstanceSystemMetadataNotFound):\nUnreferenced since commit 0d417fa73\n* nova/exception (CellError): Never referenced.\n\nChange-Id: I30449748fe1156adf7da03aaace565e63bdac144\n", "proba": 3.7425381833600113e-06} {"commit": "0abe60c805ae763f71a1b04402f259fa0b735281", "message": "remove admin_command_file logging\n", "proba": 2.9635766622959636e-06} {"commit": "51373b776403b94cf0b72b43952013f3b4ecdb2d", "message": "Remove useless codes\n", "proba": 0.00022066253586672246} {"commit": "8e337abb49642e63877766689699b238759b90c6", "message": "Re-added failing tests\n", "proba": 4.5468192411135533e-07} {"commit": "de9e9d0385b5823176c9e54dd18e9e1469c1bf74", "message": "Fixing waveform data setting.\n", "proba": 2.2500729812691134e-07} {"commit": "3a54d3c7ccc3abd2d8fcaf05c3ce399202cff638", "message": "Slugify bug fix\n", "proba": 2.7060370939580025e-06} {"commit": "9cc7569e623304034d261e10237eaac5e9043200", "message": "Improve logging of HTTP errors\n", "proba": 3.386789103387855e-06} {"commit": "669db79c9efdb7fed7b8de072bdb8fc5d9c25481", "message": "Fix runtime linkopts\n", "proba": 2.1232983272057027e-05} {"commit": "e6442f17975c9e4676dede613cb648ae6d85543b", "message": "warn if missing env,sys mode combinations in HybridSysDyn\n", "proba": 3.0481859880637785e-07} {"commit": "74602f028de42f04eb0bef7a5792e57e6ef24417", "message": "changed vt error format to avoid mongodb checks when map/reduce\n", "proba": 2.163461374493636e-07} {"commit": "0fb23c69410371ebd3f06f2f63ca73f277616077", "message": "RDR-1164 Updated authentication backends\n", "proba": 1.4085729560520122e-07} {"commit": "5daa2533f6e105686160586f195eb7bac5d6ea41", "message": "fixed linter errors\n", "proba": 3.316998800073634e-07} {"commit": "79076c83242c802556edf8c85fd63b01bf5877a9", "message": "Added support for holoviews.rc files\n\nThis implementation follows the policy outlines in issue #92\n", "proba": 1.2468439081203542e-07} {"commit": "157f37729ac0893af165e915f773c9c58a8afb9e", "message": "removed rpi.gpio\n", "proba": 1.1169193385285325e-05} {"commit": "2843f1de61338c9967e132544fae48ef5cd31431", "message": "adding branch selection to buffer/address setting methods\n", "proba": 4.839675966650248e-07} {"commit": "e68547d1314ec48e3df6ef0391aa04d677333b14", "message": "RDR-1360 settings: rearrange django apps into non-registry and registry groups\n", "proba": 2.7782098754869367e-07} {"commit": "be6b4b85d9a04d2d854feda27ccbaa761f43037a", "message": "CLIMATE-476 - Add __str__ implementation to Evaluation\n", "proba": 3.5382919350013253e-07} {"commit": "4e5119c6e52e0364a39a7883f9df5db5441607cb", "message": "[IMP] warn when using logrotate in multiprocess\n\nThe built-in log rotation is *very* unreliable in a multiprocess\r\ncontext, which can lead to significant data loss (up to hours of log\r\nmissing) right after rotation[0][1].\r\n\r\nTechnically, according to the cookbook even filehandler does not\r\nsupport multiprocess logging[2].\r\n\r\nEither way, we should at the very least warn that logrotate is a Bad\r\nIdea in multi-workers scenario. Ideally we'd just fall back on regular\r\nfile/stream logging but that likely could & would break existing\r\ndeployments, so maybe implement that for master instead?\r\n\r\nAlternatively: implement it properly in multi-worker scenario with\r\nonly the \"root\" process actually logging to whatever output was set\r\nup, and all workers sending stuff to log to it via a queue or network\r\nsocket or w/e.\r\n\r\n[0]\r\nhttps://stackoverflow.com/questions/34186774/why-doesnt-timedrotatingfilehandler-work-properly-and-how-to-solve-this-issuer\r\n[1] https://github.com/odoo/odoo/issues/16566\r\n[2] https://docs.python.org/3/howto/logging-cookbook.html#logging-to-a-single-file-from-multiple-processes", "proba": 0.9999979734420776} {"commit": "cc62dd2bc8199e28794ac80a5198caa97b683696", "message": "get error information from rucio traces if available\n", "proba": 1.2830255968765414e-07} {"commit": "37e33306b0daa2cdabab2c15f0d38b74056472a0", "message": "creating graph from move sequence is working. added a print graph method\n", "proba": 0.00013468855468090624} {"commit": "8f0c2f42ce4e7c90f2e1a74b6268b53031955594", "message": "Webhook integration\n", "proba": 5.760591079706501e-07} {"commit": "72f314ea5c9e73ee53bb1544996a2b7369cb3478", "message": "add cgi_url\n\ngit-svn-id: 3c7bb21206057e73d8efe613d54762a8e584b8da@36558 d0d07461-0603-4401-acd4-de1884942a52\n", "proba": 3.7041183986730175e-07} {"commit": "13513d3acc9150c292c818595cd323a4c35d7057", "message": "Added generic methods to get/add/update/delete Provider info\n", "proba": 2.202154831820735e-07} {"commit": "995925e6ebbcd76a5d011e0a80098ef2ad899936", "message": "* restoring data from the column vs. returning the raw data, this will allow per-context data manipulation of data\n", "proba": 3.8066332308517303e-07} {"commit": "5506e7229ba0011248dee1d337675c1b780f8a24", "message": "Updated build number\n", "proba": 4.853537802773644e-07} {"commit": "424adb6bc2192ff3ffdb9753d936dd1e9437353e", "message": "Changed readinglist2pocket script to only add read items and to add a Pocket tag for 'reading_list'\n\nPocket's use of tags allows us to specifically tag items as coming from this script (IFTTT does a similar thing). Added this.\n\nAlso changed it to only add unread items from ReadingListReader.\n", "proba": 1.059121643720573e-07} {"commit": "93011775827ef464a44674b13db00867a0c73f73", "message": "remove #except lines\n", "proba": 5.168014467926696e-05} {"commit": "9359e5a61832024515481c9480f75cc4f4718dc5", "message": "Preparing release 0.6.5\n", "proba": 5.206708806326787e-07} {"commit": "5befbba19d856a1a8a1d2ffc26beab1e6da264e4", "message": "fix bare exeception w/ Pauls suggestion\n", "proba": 1.8548831803855137e-07} {"commit": "401d1343cb0279908a748fd0ff27609ccc300b43", "message": "BaseTools/Eot: register MM Module types with FFS class.\n\nThis patch registers MM_STANDALONE and MM_CORE_STANDALONE with Ffs class.\n\nContributed-under: TianoCore Contribution Agreement 1.0\nSigned-off-by: Jiewen Yao <364a90bfebd1f362ebb7b48e4bf8ec010adef203@intel.com>\nSigned-off-by: Supreeth Venkatesh \nReviewed-by: Liming Gao <6480311aeeb4b006862f6d13ebabddc03f51e507@intel.com>\n", "proba": 1.4063341780001792e-07} {"commit": "9e450865a92e21ba1a40c494575b0205ed2c14fa", "message": "Fix bug in CommentSecureRedirectToMixin", "proba": 2.013485556062733e-07} {"commit": "f2a77900a1dde88c92e160df18454f0f4ec79f86", "message": "Support multiple calls in one RPC request\n", "proba": 6.485565222646983e-07} {"commit": "35c4160afed9b3f567dfeb6b283697d63341a93e", "message": "Add -s -r flags to recompute-analyses.py which allows the workdir\nloaded from the YAML file to be changed before we look for the log.txt\nfile. This is necessary because if we move the location of the results\nthe absolute path will change. Here is an example invocation\n\n```\n./recompute-analyses.py Corral -s '/tmp/pbs\\.\\d+\\[(\\d+)]\\.cx1b/' -r `pwd`'/boogaloo-unbounded/\\1/' boogaloo-unbounded/1/result.yml test.yml\n```\n", "proba": 2.295638978466741e-06} {"commit": "74115a09ab3b4e3268b07727e5e138cdd890b042", "message": "Try to post data only if server is defined\n", "proba": 4.058146032548393e-07} {"commit": "53d34397a8df598378820a9115a94097a1e92bce", "message": "use val as the value for the update\n", "proba": 2.739672311236063e-07} {"commit": "8e1a353b6dfa5597c81db4589321423fed53858e", "message": "Switch to a larger catch-all error\n", "proba": 6.0285428844508715e-06} {"commit": "ed48f39c3a95ca32300e1c39a5bef2b4c39ed9af", "message": "Added typing check and fixed fstring\n", "proba": 1.3314827640442672e-07} {"commit": "6288caa954c8834ef6fec0bf24c62a1c8265e302", "message": "fix: Use InstanceProfileName value to remove\n", "proba": 2.5129403979917697e-07} {"commit": "23e3983bcbca81dbc1a5728645f5fd6d4073789c", "message": "OMG new funcionalities in adm page\n", "proba": 1.2580559882735542e-07} {"commit": "069ef4868e1015dda609c0747b988ec99e461f92", "message": "Tweak Badge PDF\n", "proba": 2.5307565465482185e-07} {"commit": "177e0575f6078bbd5b5e8c30725b1b7a5de82ec8", "message": "Test for use of the activation template\n", "proba": 1.888493414980985e-07} {"commit": "5928b1e93ff2b92e36981d3c319ccfec304eb6a3", "message": "Restore the original forms tests, since they still work the same way.\n", "proba": 1.2753096712003753e-07} {"commit": "816e8dc4308b6c12e5b15044cfab7d172df85bc4", "message": "Add MIS model visibility to parameter node.\n\nThis ensures self.ui.showMISDiameterPushButton is unchecked when the\nscene is closed.\nElse, we may see weird None value of the MIS model's display node in\nsetShowMaximumInscribedSphereDiameter.\n", "proba": 1.0791255533604271e-07} {"commit": "f1b08bd72ad9e4e06e2bdb669881d70a7e2359e9", "message": "New merge node\n", "proba": 4.3389073312027904e-07} {"commit": "f4b3e8822e5725cfcdf8a48e795928e246f77c7d", "message": "working on find_users view\n", "proba": 3.5160343259121873e-07} {"commit": "6150bd1236cc17503b5e67555fe287f7bc7896f9", "message": "rename ipc_profile -> parallel profile\n", "proba": 3.4112974844902055e-07} {"commit": "6610ab7d9d4b5c22c7d58337fac6b74062acf134", "message": "changes in docstrings\n", "proba": 3.5740990824706387e-06} {"commit": "272a083dea8a0f763a697f4f0580e3f78886d1f7", "message": "No previous wins -> don't do it\n", "proba": 2.8468821255955845e-06} {"commit": "7006bdb585dc107a3cf0e832794905d57c8e4821", "message": "Impoved exercise 09.\n", "proba": 1.1827351187321256e-07} {"commit": "5cda02cfc275a2b286ff6ee2e3f26b2bdca89dcc", "message": "Only perform the Celery stdout/stderr redirection once.\n\n\nFormer-commit-id: d3e3a0b24b709967329e4e31d02d407d4a96c027 [formerly 678c21e47cebf103acab222aee611ce58275e484]\nFormer-commit-id: 0332dd169388b39dfc1ca289b88798e7d98d0ba2", "proba": 0.000259818829363212} {"commit": "f21204c8828e840dc54c6822348fa9a47bc8964e", "message": "Add model's to_dict method.\n", "proba": 1.562449654102238e-07} {"commit": "fe9c4b15622d8ca54b904a6bb5586b4306af0c33", "message": "fixed import in st2exporter/setup.py\n", "proba": 2.0198321237785422e-07} {"commit": "fa82883576a659d9cd9d830919e744299ac14ac7", "message": "feat: improve show command to show target types, build phase types and filter other build phases.\n", "proba": 1.0238549918994977e-07} {"commit": "93c0deffe1d8edc9a3508a623a4f412261127702", "message": "Remove new internal field.\n\nIt recently showed up in pungi productmd metadata. When pdc-updater tries to\npass it on to PDC, it chokes.\n", "proba": 1.0047070020391402e-07} {"commit": "7ffc06a36262167d14d6dab59a0ca3209a241bad", "message": "Use the variant_uid lookup_field.\n\nIntroduced in fedora-modularity/product-definition-center#11.\n", "proba": 1.0081969747943731e-07} {"commit": "8b2601f0bc8a9d51f2b4f429db84cf17b409470e", "message": "Add rank requirement to worldsync\n", "proba": 3.665771259875328e-07} {"commit": "3b77c15e7c6fbb3fb13c76cd46d9e70cf906fa3b", "message": "change the main process log to the previous name\n", "proba": 4.509595783019904e-06} {"commit": "50908b55e8f6a627209a5cbe6d2dba91bcac414e", "message": "fixing optunity.pipeds interface to the new API and updating matlab wrapper\n", "proba": 1.332936250264538e-07} {"commit": "085e5254845c278e1c16bb48dc8137ad6a648811", "message": "black\n", "proba": 3.7897563743172213e-05} {"commit": "5c461d688b33ce01b2f86de45d8645427654ee68", "message": "added register_listeners method to BeetsPlugin class\n", "proba": 1.9298128961509065e-07} {"commit": "32291f69fdd98b37e00e6cc7ffbd4bb39644cd18", "message": "single quotes\n", "proba": 4.958184831593826e-07} {"commit": "e72ce884ea253899b260d526880e0dd79672c06f", "message": "bugfix: clean up was a mess up\n", "proba": 5.4112751968204975e-05} {"commit": "c757ee1ad8c0cff47bc8a2f03adcf982af769b2c", "message": "clean up assertions\n", "proba": 0.9999830722808838} {"commit": "8dafadea8c5d1e918bddd49470d85db3d92df9a6", "message": "better commenting\n", "proba": 6.774241114726465e-07} {"commit": "fb9d2da9f23c3c26d9c1f8fc7cc91f18058e73b9", "message": "added a bunch of stuff for matching\n", "proba": 1.347044218391602e-07} {"commit": "2f00528907419785fc676070c115de06a06ce673", "message": "Fixed syntax error in importer;\n", "proba": 1.25056899946685e-07} {"commit": "e88662392941fd00a990ad2890d7714744e15c48", "message": " correccion en curso\n", "proba": 5.491800720847095e-07} {"commit": "bf649374e4d2db1950f91877d4a68a2a48b01a2c", "message": "Import from djangae and fall back to djangoappengine.\n", "proba": 1.1037958813631121e-07} {"commit": "da12bb0058cb48d3262eb70469aa30cdb8312ee2", "message": "fix typos/bugs/indexing in block dicing\n", "proba": 1.7479322195868008e-05} {"commit": "0cd47fe1c66186ed715140051abc52d9745fd7ce", "message": "BUG: now only taking the correct data words\n", "proba": 1.2172808965260629e-05} {"commit": "ecc5a0dc1605481435f2f2b72761a9e87647c6a2", "message": "Added a method to scroll an element dead center of the viewport.\n", "proba": 1.0484689738632369e-07} {"commit": "2e13f46d5b4d17fb4bd257281e99a30fdac45297", "message": "Elasticsearch export: flatten documents\n\nNo more nested documents per metrics. A document is now one\nof the metric results.\n", "proba": 1.2025044782149052e-07} {"commit": "3e9f0c19d71f8288c49fe4ea628a00d409ca3133", "message": "Update ConsAggShockModel.py", "proba": 3.113076445515617e-07} {"commit": "5d2301b15e07394e24fed2fac2f258d72554eede", "message": "Add tests for query_geonames, MITIE, city resolution\n", "proba": 0.0001409174728905782} {"commit": "c751e767f6e11241767a957faa6e7d72c61155de", "message": "Fixed dumb bug where any supplied type was defaulting to FileChooser\n", "proba": 1.4911957180174795e-07} {"commit": "2443c891e5f9cccb5c36b02303a3b9b7a94a4c45", "message": "Change Jinja escape sequences.\n", "proba": 1.2979067776086595e-07} {"commit": "26c11b7ae1b059123a35562fc5324d83151fa92b", "message": "initial\n", "proba": 2.26544143515639e-05} {"commit": "4c89ea106e26b535200e02a24cf1257eaf9a01e9", "message": "Workaround for #11.\n\nThanks @mrobb - from https://github.com/mrobb/complexity/commit/912ca3ac2fa97deb427d529a452c805903f686d2\n\nJinja2's FileSystemLoader converts forward slashes to os.path.sep\nautomatically by design. This results in failures when using\nenv.get_template() on Windows.\n", "proba": 2.9984022376083885e-07} {"commit": "18aa5e20a5dbc931f48774c4bf034e6efe022923", "message": "Implement 'force' and 'directory' options\n", "proba": 0.9999986886978149} {"commit": "1d3c94292ea8e9bccdeccdfb79a175abfe6ff2eb", "message": "Bumped release version\n", "proba": 2.4780328544693475e-07} {"commit": "769867371eced48ba73b9e30dbe3185f32bbb817", "message": "replaced hardcode \"https://plot.ly/~\" with config()[\u2018plotly_domain\u2019]\n", "proba": 2.99962067629167e-07} {"commit": "c403741c61db588504d4ccbfaac4c4913aff9b9f", "message": "1.3.4\n", "proba": 0.00016504229279235005} {"commit": "6da8bcbf2946b35188e99474b87d2c79856895a1", "message": "Fare: fix an import\n", "proba": 0.004114752635359764} {"commit": "54e2359ed2cd75b87dc4a8007df6b252af3a3765", "message": "fix typo", "proba": 0.9999909400939941} {"commit": "65049719995b73579b8d7c12c2b8ada17cf3cfee", "message": "FIX:qcpmgadd2D: misplaced parenthesis in readprocpar(MC2)\n", "proba": 1.7268255305680213e-06} {"commit": "1ad9a21131fa58b364c4aa9ee73d4e48b37b00d2", "message": "Remove indentation when showing the body of a type (#416)\n\nWhen a type or class was declared with indentation in its source file,\r\nthis indentation is also shown in the info popups. This is unnecessary\r\nand only wastes space.\r\nFix #415 ", "proba": 2.706130430851772e-07} {"commit": "bb5d7c8840a52d3cb0a80b1311b8b44f0f334a72", "message": "Fixed problem with locale.atof which caused not working conversion to number in some environments. atof needs encoded string, not unicode\n", "proba": 2.8216149075888097e-05} {"commit": "7e8c471dd42a9f788096aafcb3ea76b8b9319e16", "message": "Fix the overhang display angle.\n", "proba": 9.689400712886709e-07} {"commit": "3c7678baa71a10cb45a904d915ba8e29958beaa7", "message": "Add retry to mqtt, allow for start when server is down.\n", "proba": 1.1261170840271006e-07} {"commit": "0f1180ad95b6bacf5a752eff8747f261faeaa0d8", "message": "Rename signals to avoid name clashes\n", "proba": 5.441393113869708e-07} {"commit": "c1b4216e610a46260f52d5ed71267a2ed5fcdd25", "message": "update debug url to account for downloads\n", "proba": 1.5950251963658957e-07} {"commit": "7859378b13624792969fe8e85aaa2b00de41e46e", "message": "Misc fixes to settings.\n", "proba": 1.1259753307513165e-07} {"commit": "2c06c20b8d96274f0dd1da1bcbd33b8b73e5d786", "message": "clean up logging handlers.\n", "proba": 1.5035305978017277e-07} {"commit": "e68307e10e1aebe8a6c527a15bfc34b1158bf0eb", "message": "Use labels in API for #", "proba": 1.6743481978664931e-07} {"commit": "6160e3e5b7dd9515b1ae8f233f39e1e4c656dfe7", "message": "Release 0.1.9\n", "proba": 4.325562485973933e-07} {"commit": "ed7554ff93ded2e1534c944a70d6f458c0ef444c", "message": "CUDA forced\n", "proba": 7.020543648650346e-07} {"commit": "6336756c8a1ff054fdc20795e28c203635e6849e", "message": "fix(tests): test_event_producer\n", "proba": 9.560882608639076e-05} {"commit": "c34b28da08b2d34b2067ee5a8990df0682342376", "message": "Improve resetting lazy properties in SegmentationImage\n", "proba": 8.284236514555232e-07} {"commit": "11a322a9c3438d508fdff483ec166d4e17fcbdc5", "message": "content.py: name of the subreddit shown on selfpost 'url'\nall flairs now have brackets\n", "proba": 2.7926924417442933e-07} {"commit": "c989f14cd3a4c7c3219416b40fbee07ad9ea92e0", "message": "Add support for qutebrowser\n", "proba": 2.3285002725970116e-07} {"commit": "0fb0083d0c3ebd9e971e408a4296896efafd5f2d", "message": "[BUGFIX] added expectation_config to ExpectationValidationResult when exception is raised (#2659)\n\n* added expectation_config to ExpectatoinValidationResult when exception is raised\r\n\r\n* fix merge\r\n\r\nCo-authored-by: Peter Hansen <680e4981b1ea0156a93ff8a3ca0d14f19d1586fd@exploredata.com>\r\nCo-authored-by: talagluck <6eb24f54eaf746d3a75dcf63a64261574d2f3aa0@superconductive.com>", "proba": 1.5742146786124067e-07} {"commit": "50829cfd2672f08f85ca150fdf914424277e3d8c", "message": "small bug fix\n", "proba": 3.1036645964377385e-07} {"commit": "e1949eba41bbccf14f2de29c4b31f56d21ed3c66", "message": "Improved error handling, extended default folder and file type list\n", "proba": 1.566167355804282e-07} {"commit": "9a92f1e214a9bf9bfa33a47eae31c3a626c4377c", "message": "improve backend id for vcloud\n", "proba": 5.742791699958616e-07} {"commit": "985dd6b2e43f112a32be345854d48c7a9174b9c1", "message": "fix associate machine with keys backend\n", "proba": 3.364433496244601e-07} {"commit": "600a19b8a3f6d320b00d1d2b25e5c0f341f821d1", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "5fd7f9eec875e45d512631ca0581a80b5eeb892b", "message": "Exclude ssh_user from machine tags\n", "proba": 1.2703265383606777e-05} {"commit": "ae3b04556c690acb91e2b7bfab79a787488b87fb", "message": "attempt at unscented sigma pts\n", "proba": 3.8466410501314385e-07} {"commit": "cc7d2f2fac8935b642eea117777641d4de334452", "message": "Build View.Zr by enumeration not zip.\n", "proba": 1.083272636037691e-07} {"commit": "6dd02eb03fccb04a1b1bc4a159ad431d9cc97c62", "message": "Fix shape of Observation/spw sensor\n\nThe spw sensor should have one event per change in spectral window,\nmatching up with Observation/spw_index. The existing version had one\nevent per unique spectral window, thereby breaking down in the h5toms\nscript when encountering repeat visits to the same spectral window.\n", "proba": 2.6235468908453186e-07} {"commit": "71d158ca45eadf62e2029afec8e844510e080f04", "message": "Fixed tmp directories - Need more coffee.\n", "proba": 1.0353470969448608e-07} {"commit": "bd0e37c5db382732d8c086869d9da03674cceb40", "message": "Fixed typo in minimal dc function\n", "proba": 3.561974892818398e-07} {"commit": "96bca43a50d3ad7bc46fdb6dc3d4b54a58825eb1", "message": "Fix typo in hook name\n", "proba": 0.0008153057424351573} {"commit": "9ac7da87e82177c1e652465bd1872be2fe937a92", "message": "fix: rename initial_best to initial_value_threshold", "proba": 0.0012650303542613983} {"commit": "5a87dbbb0ea4faa44d743a21a2f7d7aca46242f9", "message": "Document internet gateway properties:\n\nAWS::EC2::VPCGatewayAttachment\n\nFixes bug #1224143\n\nChange-Id: Ia896369f4cfcd5d13d66a2defb120b1c05d71fb6\n", "proba": 3.0768842407269403e-07} {"commit": "c9df20b55abb0f545b82924796ca6ddab4f6221d", "message": "rename ushw to portal\n", "proba": 0.9999954700469971} {"commit": "2db6e4d6cda214ef400a2b782cf93c9436e1d538", "message": "Avoid CompilerError for newlines in stderr.\n", "proba": 3.3583108915991033e-07} {"commit": "270fd76fa0b178071298e441b8cea40351dbe2dc", "message": "germanet: check in Synset.sim_res\n", "proba": 2.034509378745497e-07} {"commit": "77503c0e09c0a520ffdc3b4f936c579148acd915", "message": "Clean up the code a bit\n\nProbably shouldn't have copied so much from the PHP implementation..\n", "proba": 1.0937969108226753e-07} {"commit": "c6226bf9cafa6b2fcafe3049e6edb7008b39eded", "message": "Add configurable scheduler sleep, and push fileserver refreshes to every 6 hours\n", "proba": 1.7460432388816116e-07} {"commit": "39a641594c44509b87503a27db99662288c78b0c", "message": "Reorder functions in humanfriendly.text alphabetically\n", "proba": 0.0002559329732321203} {"commit": "347d5d6bace211079ae5ba8199e1bfaf233fad3b", "message": "[FIX] Adding p_changed to prev commit\n", "proba": 2.175963516037882e-07} {"commit": "d35f2b0f692cd99944d35a4e19c1b0694a01703c", "message": "Set implementation_year on project upload\n", "proba": 2.0161640179594542e-07} {"commit": "49aa5953d2fe5d41ace29538b17012c62a9a21b6", "message": "Save for posterity\n", "proba": 1.3853062341695477e-07} {"commit": "c221cf3e39aba0efe747635e290155e3d2bbc557", "message": "Introduce safety check for unpickling.\n", "proba": 1.139633738489465e-07} {"commit": "86859c518d96d23f9a487b2fe171a96da64a0f26", "message": "disable syntax support for \"yield\" expressions in function argument annotations and default args which never worked and crashes the compiler\n", "proba": 1.2827869966258731e-07} {"commit": "b1e2275b47e70949c018ab276279c9e6b8f6d3cf", "message": "Add debug (#10828)\n\n", "proba": 8.622247946732386e-07} {"commit": "8a10c605069bb14121ebd4c09b727629bed64fee", "message": "Check that the 'type' key exists before checking its value\n", "proba": 4.58409522252623e-05} {"commit": "7499c3d437bf483a7c08b3871db5bed1343f1f5f", "message": "Pruning cdef variable declarations after analysis\n", "proba": 2.3988067709979077e-07} {"commit": "6c875eb2854418f2d92818938b531c28c7a2df4d", "message": "Order country preferences by school, then rank.\n\nFixes #326.\n", "proba": 1.0059361699177316e-07} {"commit": "6858191ca35357e1d74b0f35458c5a67ce7c9ecd", "message": "Improve ViCare energy units (#58630)\n\n", "proba": 1.1703278346431034e-07} {"commit": "ad6b055b53d621addc3565209c7af095b6d6d0e7", "message": "Add .delete() and the start of Room\n", "proba": 1.1373616644050344e-06} {"commit": "52dfb3b81b0d7fa27db9acf8033f28f31f8290ad", "message": "[feature] scale large icons to avoid out of memory\n", "proba": 1.651576297945212e-07} {"commit": "5dc4ccd51d72ac04d3710f2d6478218362cac29a", "message": "Add missing coefficient in surface integral\n", "proba": 0.00933628249913454} {"commit": "cdf210179e41b36127034b65ff399d1a5e04934a", "message": "testcase (werkt niet)\n", "proba": 5.839979166921694e-07} {"commit": "e7ecdf60dd2087a5e754568f118e0600c7c1ddcc", "message": "less interjection on eat as a substring\n", "proba": 0.0012481046142056584} {"commit": "245822bc87accb13423680c4de74cab19f9baeba", "message": "Add group link sharing setting to Conversation\n", "proba": 1.5446973122834606e-07} {"commit": "73db25f2f9d4058230354ef30b6bc672a946ac35", "message": "Adds Pool.did_start_ok: For eventloops to verify that the processes did not immediately exit\n", "proba": 5.242713427833223e-07} {"commit": "1ae34b1a9035ec8813c40477a6f83bfdf10413f3", "message": "Add chkdown in the list of server metrics\n", "proba": 3.6783887935598614e-07} {"commit": "f5471c3ec6477683fa0974898a5b43503ab68196", "message": "add write-off method to API\n", "proba": 2.747319740592502e-06} {"commit": "52e74b14f75ff2f6a75ffc599c51875f636d0df7", "message": "Fixed inaccuracy and added warning to the docstring of Options.marshaller_collection indicating that the returned object is NOT a copy.\n", "proba": 1.0409944906086821e-07} {"commit": "3a2bc7766164a93f91299c123442fb8ebabccca1", "message": "sync schema with models\n\nAdd missing changes in models-removing unique constraint for email_id.\nRespective migration file 9yuk6g899741_.py\n", "proba": 6.781327101634815e-06} {"commit": "fe9226898772c4ff909f9c3f0cb05c271333b73a", "message": "Make auth_url lookup dynamic\n\nIf _get_auth_url() is run on heat-api startup, it can cause heat-api to crash\nin situations where Keystone is not running, yet or temporarily unavailable.\nThis patch converts the auth_url attribute into a property method that is only\nrun when it is needed, thus preventing this race condition.\n\nChange-Id: Ife6d9e51ea9647e4658105c016867efe769e5363\nCloses-Bug: #1550284\n", "proba": 9.492286153545137e-06} {"commit": "6e1b5139de372517fca3dc1302bed95080906dc8", "message": "peony 2.1.1\n", "proba": 5.1694587455131114e-05} {"commit": "8e95a0f2117b35e6326c0c32ee7bb2818f77e1c7", "message": "Add a better error message\n\nThis was \"ERROR\" in the event status description.\n\nChange-Id: I401bbbe1c8e8cafe64a692b7faba63bd2ab38a4c\nSigned-off-by: Angus Salkeld <86b65304d27d8de73dd7d624c33df7e088f8d94b@redhat.com>\n", "proba": 0.9999990463256836} {"commit": "f8e07aebe53238895fed0026d7c84b4e691273a5", "message": "ResponsePort now honoured #4, though Actions still not being used\n", "proba": 1.1777791542044724e-07} {"commit": "1e88460ce8ef6224e7e41dca824d3c1898a00cc6", "message": "Fixed bug\n", "proba": 5.356139354262268e-07} {"commit": "24a11fc9bc21dae468fc74a9a6ee156f75b82770", "message": "The script now fetches the betta branch of pox from the nox repo rather than look for it in opt\n\n\nFormer-commit-id: 100182c5889aaf089297b8dce39faf84cd9e0c4a", "proba": 1.1980486078755348e-06} {"commit": "8cfb6404c3d2b6b4d61063d8a7b389d0a393aa02", "message": "reduce number of times print active process\n", "proba": 1.6413918274338357e-05} {"commit": "34e2d0fcc0c46ea17d8233a715134d1b48ebbd3f", "message": "added timeout to rpyc calls\n", "proba": 3.843993283680902e-07} {"commit": "a79db7cf85dac6d74d7929137f640a0ac10ddf7d", "message": "return from sys.exit for easier testing\n", "proba": 6.553422053912072e-07} {"commit": "83890613c597e309538939e24a48821ec6a6672e", "message": "Updating the ReferenceFields to reference the grow doc.\n\nMatches the kintaro collection with a grow collection and loads the doc.\n\nNewer versions of grow will correctly represent the doc in the `g.doc` format.\n", "proba": 9.868616501762517e-08} {"commit": "a9bc339df31c1daeac8c3630453e8921d368be9d", "message": "Delete duplicate file.\n", "proba": 4.2668671085266396e-07} {"commit": "37b5bd41058589f352f3bb43b9cc7bc6d8772a87", "message": "License.\n", "proba": 2.2264138976879622e-07} {"commit": "7ac77db1dc0886dac3af02d196ae03654125a7df", "message": "Fix dtype conversion\n", "proba": 6.368814524648769e-07} {"commit": "e0f34119025fd7de97261f30e5fb1270d08643ad", "message": "Log manager switch fix.\n", "proba": 2.1378606618327467e-07} {"commit": "4da78e0c1cf4a8a17380cc4fcda12ee5d6bd6fdf", "message": "add more otions.\n", "proba": 1.2811254634925717e-07} {"commit": "25dbb592f0bdcce832e545808f4fac5b30ed0e5f", "message": "changed encoding\n", "proba": 1.0777205716294702e-05} {"commit": "1bddf0e5a5e88c834ffb14feccf9efb1c1af42ef", "message": "Refactored greedy solution to knapsack problem.\n", "proba": 2.9685222102671105e-07} {"commit": "425fb7177e8a704b4872bd9b4636bd149567c4b8", "message": "add support for versions from tagged branch\n", "proba": 1.7516673267437e-07} {"commit": "7943706d0ed43d69230b6ff5f2de8b55706fd3ca", "message": "WHO create channel if neccessary\n", "proba": 7.204825465123577e-07} {"commit": "7a57b2e7c04ceb29274c5adb72961b7d1410ffae", "message": "Extensive changes to docstrings to enhance docs\n\nExtensive reformatting and enhancing of docstrings to\nensure the that Sphinx docs are pleasant and useful to read.\n", "proba": 9.773681597380346e-08} {"commit": "072260ea49f318b97c10d2004f8e94c7514d2f4b", "message": "more robust way of grouping weeks\n", "proba": 4.779530513587815e-07} {"commit": "cc23e1836a5ab911eeaf66f15e023d67edc123df", "message": "fixed keystroke error\n", "proba": 1.424751644663047e-06} {"commit": "2d9ffcd891611dcd2e06185f0d62fcd69effd2c1", "message": "Changed error counting to ensure that errors do not get double-counted in the global error count.\n", "proba": 1.0984193465901626e-07} {"commit": "7ed627991632cf761dfccb553f830a6e9e3c37e9", "message": "fix bitonality test for solid color images\n", "proba": 5.529470854526153e-07} {"commit": "b767143e24f58edd759fbe8c63787476acd7b376", "message": "touch\n", "proba": 9.880733387035434e-07} {"commit": "e85b5189bc505ff2ea2f1710d1213844a1ffe2f2", "message": "adding template argument to improve icon display on dark menu bar\n", "proba": 2.755438401891297e-07} {"commit": "6ff5a3dbbc8e6900a74240763149051007b9641b", "message": "Added log messages for PGnE baseline agent\n", "proba": 1.5858050517181255e-07} {"commit": "c7c75bc23914792663acbde400a3c3e191f84e35", "message": "GATK Tutorial Support for #1-4 working. Alpha testing phase.\n", "proba": 1.0121390658923701e-07} {"commit": "a3bf94360c0ddda8653409c5f8d6e5acc6362415", "message": "addresses pylint errors and revierwer suggestions.\n", "proba": 1.0571377373480573e-07} {"commit": "76bda3f934f00ca55e68f7eef1a50a53f04c0e1a", "message": "Remove compute stats option from bin/load-data.py\n\nThis option is not implemented in this script and doesn't make it\nobvious that it doesn't do anything.\n\nChange-Id: I1a1eff38460fd181c486cfca2840108a58e21603\nReviewed-on: http://gerrit.ent.cloudera.com:8080/1059\nReviewed-by: Lenni Kuff <724b7df200764f5dc1b723c05ee6c6adabd11bb1@cloudera.com>\nReviewed-by: Nong Li <99a5e5f8f5911755b88e0b536d46aafa102bed41@cloudera.com>\nTested-by: Nong Li <99a5e5f8f5911755b88e0b536d46aafa102bed41@cloudera.com>\n", "proba": 1.1175437066412997e-05} {"commit": "4d5889e87399e940ebb08c7513f24466c0a93eaf", "message": "ChannelStats: Remove useless space.\n\nCloses #170.\n[ci skip]\n", "proba": 1.1829359181092514e-07} {"commit": "eb4c7d23181f8986ae5c58e551b491af683802a1", "message": "no message\n", "proba": 2.1470650608534925e-05} {"commit": "caebe8c68bf0b07a413ebe0debdf803ea9181606", "message": "listinterfaces can now list all interfaces", "proba": 2.0142574896908627e-07} {"commit": "7a7eb699bf1b27791364a128e03307fcf093d6bb", "message": "Added additional comments on multibox loss\n", "proba": 1.1967145496782905e-07} {"commit": "af90ab3ca015f070ed40664c3097fd2fc9ad0e47", "message": "refactor a bit\n", "proba": 0.0008795919711701572} {"commit": "350950038755dad0d5f4b3889a7cdbb3658ced35", "message": "Fix subprocess synxtax for smart_otions\n\nTicket: #19385\n", "proba": 1.4110138181422371e-05} {"commit": "2c10e9a33a74fd738a0172370e83f038b2bf6ce1", "message": "include underbars in twitter username regex\n", "proba": 1.4711476978845894e-06} {"commit": "82e5b375d5f638a733c3782d0a8c43526880b5c8", "message": "added logging\n", "proba": 3.9830032960708195e-07} {"commit": "08ec280409fa3cd8c62d1e2f61fe662d9a74a34c", "message": "no message\n", "proba": 2.1470650608534925e-05} {"commit": "8d7bde02f376acfdb4a06335c541133a31f76abe", "message": "Fix unslicable (\"striped\") model rendering and add overhang color theming\n", "proba": 1.6769098465374555e-07} {"commit": "c3a9094dcae20737c4fb21d366972df9ed98ba2e", "message": "Fix file system watcher event handling\n\nMemorandum for me: time.time() returns\nSECONDS... not milliseconds. :(\n", "proba": 9.835644959821366e-06} {"commit": "c45e21a57345007987c54a181ab86326feba4550", "message": "Enh: [ui] add documentation about eval functions.\n", "proba": 1.0931753990917059e-07} {"commit": "b6f2640f0062d6a98622689da4d143712be52bf7", "message": "Sleep after restart", "proba": 1.491649413765117e-06} {"commit": "92c4e6a1ab4d6a35ed889e31fba8fd3f224f47a6", "message": "Add a function to compute key point usage map.\n", "proba": 3.1601452974427957e-06} {"commit": "1dbfad1927036a3f473d8b3040db03d5500f4cda", "message": "Bugfix - Update tests for api changes\n", "proba": 1.2270896831978462e-07} {"commit": "fdcbe4c609a81165f252967f0ea310d8549d2b3a", "message": "myrialang: remove parallel\n\nWe use the fragmented plans now.\n\nSigned-off-by: Daniel Halperin <1a02732a15f637c31107256cbee5819e36aa7c67@cs.washington.edu>\n", "proba": 1.723267217812463e-07} {"commit": "c9c50b4f8cd92eb27c90fb851746dde1e36dc368", "message": "Added subject code to information given for each group in each schedule\n", "proba": 1.2885398348316812e-07} {"commit": "eaac4e45928b7008e6c561e28e9b5ed5dc427587", "message": "fix redis storage\n", "proba": 4.37792010643534e-07} {"commit": "77be1da8cd02ed35fcc899dabfc1b47e47e027fc", "message": "obsync: remove obsolete cmdline options\n\nSigned-off-by: Colin McCabe <7b35906f1d014e74a9dc8c913eb229119df647aa@dreamhost.com>\n", "proba": 5.3803619266545866e-06} {"commit": "36cd155bb317872a43a0e455a012a06cd5b6ffff", "message": "signals: store callbacks in OrderedSets\n\nThis makes the order in which different extensions add scripts\nto the output page deterministic.\n\nFixes #114\n", "proba": 2.201386308797737e-07} {"commit": "e4ac571eb44954254b15857d88bde145e66d297b", "message": "Remove typo\n", "proba": 0.9992924928665161} {"commit": "ff8d374acb8d55e09f9ea4fec5511f3b8c4a55c7", "message": "More imports\n", "proba": 1.3003921139898011e-07} {"commit": "f8adcb06fb0f877cd51aa9e38d20012a2d75625c", "message": "included group site fixes\n", "proba": 2.5008858983710525e-07} {"commit": "1f05136b570319822f965896bc45f05afe880847", "message": "Pretty printing refactor using single approach for all specifiers\n\nImplemented a unified mechanism for generating display strings with\n__str__, __repr__ and _repr_pretty_ (IPython pprint). Displays all\npositional arguments and only modified parameters that are set via\nkeywords in a specified, fixed order. Allows for flat (repr)and\nindented representation (str, pretty.pprint).\n", "proba": 1.0738810942712007e-06} {"commit": "13ffa4113341c13e635896f94a29df5cff5c0348", "message": "Build objects in JSON generator tool\n\n\nOriginal commit 41a78652d2a1c88671f503185bd3312e198b3292\n", "proba": 1.7583699900569627e-06} {"commit": "a4fb3091a75005b047fbea72f812c53d27b15412", "message": "diff: added test to be sure index-vs-working copy diffs are solved properly\n", "proba": 2.0167006198335002e-07} {"commit": "068d9a84a3cb6990e04b8ce349324bec8be8c310", "message": "Added comment.\n\n\ngit-svn-id: b33bab8abb5b18c12ee100cd7761ab452d00b2b0@110066 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 5.29768271917419e-07} {"commit": "d2bcd6b5447d6ed9b5d39f528f52a4ecc76e77fa", "message": "Update doc string.\n", "proba": 1.7788515549455042e-07} {"commit": "1b18756113e3136adbc211b84554c4e9f0d75b52", "message": "Added tests for TypedStorage List & Dict lengths and for the key generation.\n", "proba": 9.845641102401714e-08} {"commit": "e09869b0cc571669db81ec54b17d50ad3205e99a", "message": "Fix some typos on job command\n", "proba": 0.9999626874923706} {"commit": "8ec6662a903aeea9613a53016d4f684a833605e5", "message": "clean up impors\n", "proba": 1.067503262675018e-06} {"commit": "cc754cf4bbbb84ed82cdafbc3818460cdc699ffa", "message": "Extended name column in test results email for issue #35\n", "proba": 1.611324762507138e-07} {"commit": "3f4186ce2c290444f61dda36d9f933fd44164e66", "message": "Removing duplicate user password hashes\n", "proba": 8.364450332010165e-05} {"commit": "d3b3acacd2755d543433756c805c6e1931501543", "message": "Fix Event Callback Signature Format (#3422)\n\n* Rename vars for consistency; rearrange code\r\n\r\n* Decode signature to utf8 string from binary\r\n", "proba": 1.2142147909344203e-07} {"commit": "934ce66899246e1be513f36fd4ca4ee7fef3b225", "message": "Fix starting drivers on android in run-webkit-tests after r156342.\n\nI forgot to update the android server process wrapper; too many patches in\nflight.\n\nTBR=ojan@chromium.org\nBUG=\n\nReview URL: https://codereview.chromium.org/23053004\n\ngit-svn-id: bf5cd6ccde378db821296732a091cfbcf5285fbd@156359 bbb929c8-8fbe-4397-9dbb-9b2b20218538\n", "proba": 6.764668796677142e-06} {"commit": "ec203b1face4fb7e606a60880b6e80b4051bc41c", "message": "Tweak compact help\n", "proba": 1.8610528229601186e-07} {"commit": "43c8a78b44a57f67bde1dd5d03051577e0f2377c", "message": "fixed segment container definition\n", "proba": 4.4152113787276903e-07} {"commit": "537ad2dabb9ec74208a2859512bed0320b8718b1", "message": "Removed direct reference to settings.py\n", "proba": 1.9313078780669457e-07} {"commit": "02e4d3664b4436724ad11f045bbfb631014eeadb", "message": "[Modulehandler] Handle unload errors\n", "proba": 2.501921301245602e-07} {"commit": "deb0c92b31abb1e046e937e57efc07225753290c", "message": "datapaths: Fix a number of rewrite actions\n\nA number of rewrite actions were very broken, accessing fields\nwhich don't exist, ignoring the possibility of VLAN tags, and\naccessing the wrong packet header. This commit hopefully fixes\nthem. At the minimum, it now passes more tests in OFTest.\n\nCo-authored-by: MurphyMc\n", "proba": 4.922368361803819e-07} {"commit": "c48b0ae4331d1d039cb6bc29ef25fc7c4a5df8da", "message": "Bump version to 0.2.7\n", "proba": 5.394081767917669e-07} {"commit": "8d7b0bddca0ba41aa7564c1f96c1b272dfea8f7d", "message": "add a health route to the materialization service. closes #297\n", "proba": 3.163624205626547e-05} {"commit": "149e22dc8f5e27131de71a7fd9f7d2f04efff96f", "message": "updated classmethods on pxrf\n", "proba": 1.827850866220615e-07} {"commit": "dec752edfc0f7f863ad78dfe86b08b5e392fdb19", "message": "task name fix\n", "proba": 0.9999823570251465} {"commit": "779655bceb5654beee40bc58adbf92fe3955587e", "message": "Switching to development version database.\n", "proba": 1.3206121707298735e-07} {"commit": "e492c3fa0f98231884282ea1e261bb4153293456", "message": "Added \"Clear Output\" command; stop the debugger when project is run\n\nAlso tweaked the regex used to detect errors in the console log\n", "proba": 3.025777459697565e-07} {"commit": "788176f726a8a256ff4cd8a0b74a99a504acd52d", "message": "Changed:\n\t- analyse object:\n\t\t- bkgcorrect: 'bkgrange', 'sigrange' and 'separate' moved to D level.\n\t\t- changed 'std_rngs' to 'srm_rngs' for consistency.\n\t\t- parameter saving/loading compressed to single .param file.\n\t\t- calibration loading/saving uses .param file.\n\t\t- calibrate now saves input params\n\t\t- added filter_correlation function\n\t\t- removed old 'distribution_check' and 'distribution_reports' functions.\n\t\t- removed old filter manipulation functions\n\t\t- few modifications to 'save_params' - 'exceptions' part of dict, file now over-writes, instead of appends\n\t- D object:\n\t\t- use of tuples_2_bool and bool_2_indices helpers throughout\n\t\t- removed object specific bool_2_indices\n\t\t- bkg_correct saves parameters & takes care of bkgrange/sigrange/separate\n\tOther:\n\t\t- removed 'more involved' functions at end.\n\t\t- made tuples_2_bool more pythonic.\n", "proba": 0.9991275668144226} {"commit": "353565e0c90f1b0c339459cac8ff89175556d4fe", "message": "Fix issues (tested this time)\n", "proba": 1.2904828849968908e-07} {"commit": "ab670696c9ab12af97ab6be244be6d31122419a4", "message": "fixed filter to remove NaN and to set masked values to zero\n", "proba": 2.290739331556324e-07} {"commit": "53e1a88f1a3d2c9bd27d0c77cbfa1109ab14e5d7", "message": "Testing math rendering\n", "proba": 1.0403787200630177e-06} {"commit": "60a9947cf6a8779fe12351ea0dc58b58fd10c31c", "message": "Add notes about semicolons in svn-layout help.", "proba": 1.2451400266400015e-07} {"commit": "01b7c0f4a445102ac1cd7d1fe0210b2c33573bc3", "message": "Add Piecewise and relational ops\n", "proba": 7.30790759462252e-07} {"commit": "104722ee3fde16b51c90b16ec5af57fd68f5fb77", "message": "Increase pin spacing\n", "proba": 5.203075374993205e-07} {"commit": "903d9b000c4d7b333b5d3000aeb38b7e4d818c27", "message": "weather: add \"Partly Cloudy\" to color_icons\n", "proba": 0.9998210072517395} {"commit": "d9d03079eeb97abb28bf587178835b7267d58062", "message": "Add default_pins\n", "proba": 2.2078966139815748e-06} {"commit": "c2a3ccdce2c02e5ad5b38908ec24422ec5aa6d51", "message": "Always str(round(float,7)) in customjson, even on python 2.7, cc #267\n", "proba": 1.3516707895178115e-06} {"commit": "f4a39adc6513f41dc33c4ecf597f4a80dd846dd9", "message": "rename LdapConnection to DatabaseWrapper and accept configuration as a dict\n\n\ngit-svn-id: b1a559638474b4fd03861be3ce73828307c8b77f@1010 e071eeec-0327-468d-9b6a-08194a12b294\n", "proba": 1.718142243589682e-06} {"commit": "9729d98b470c62bb0e9f63e086d576b773b68047", "message": "Disable some web content related tasks depending on the config file.\n", "proba": 1.1575085778758876e-07} {"commit": "b01bf571ca4c8c34bcffa47f3c2bb70339f05429", "message": "more typos\n", "proba": 3.918167749361601e-06} {"commit": "8933c51e22921f0c7597b455d82865fbe2171a8f", "message": "Satisfied OCD by keeping comment capitalization consistent\n", "proba": 8.167467058228794e-06} {"commit": "734f3500fadc3fed4e678685a80d3c9252a5298e", "message": "minor impr\n", "proba": 8.341299917447031e-07} {"commit": "7aef1922ce25f3bb16f0142b32596902259568b1", "message": "debug msg\n", "proba": 4.604770765581634e-06} {"commit": "06681af798411ad997dfec3f3158267b349d0f04", "message": "s/count/exists\n", "proba": 4.2768755520228297e-05} {"commit": "746d124d4066800f1796502b82ad3334852dcff7", "message": "fixed typo\n", "proba": 2.684115770534845e-06} {"commit": "e5291165ecf1a07ef7e1e764b5368e8699583eee", "message": "added destructor, made instance keys more identifiable\n", "proba": 2.843930531071237e-07} {"commit": "ddeed302bccf4f11aef064b435c0e6a5ed975cc6", "message": "all German and Korean localisation\n", "proba": 3.1265841471395106e-07} {"commit": "6e52ea26ed3f0b08e34ba0fb1a5c27fa2ab3e9c5", "message": ".e01 should also be recognized\n", "proba": 9.77759441411763e-07} {"commit": "e592cdb0abc8b482f6cccfb314ae6a21f404f80d", "message": "Cython Sandbox initialization\n", "proba": 4.663632751089608e-07} {"commit": "faaac82dd7d23f21fa884939a226b3e4fc24db98", "message": "Updated bundled bottle.py\n\nSigned-off-by: Steve Loranz <749f95e2748aaf836ea2a030a8b369f33fe35144@redhat.com>\n", "proba": 1.0676422590449874e-07} {"commit": "701c7b1ffafa81800c5c3d9b00cde328ae5ad63b", "message": "Change keywords Get Url => Get Location and Log Url => Log Location\n", "proba": 1.0665020226952038e-06} {"commit": "17b141da110bca3b586f4090ad416df2b12b6e74", "message": "Added functions\n", "proba": 2.1567436192526657e-07} {"commit": "2853493fbcb243e9b63873bc3094b40951930676", "message": "Camera rotation fix", "proba": 3.0081287150096614e-07} {"commit": "6e1f4fb61ff0ed47f49ef0562e7f9763d10bb546", "message": "Level argument is required.\n", "proba": 2.321912120351044e-07} {"commit": "5ebed8dd5388ac7a70fe94be48539bab62bc31cb", "message": "self support\n", "proba": 6.274495945035596e-07} {"commit": "bd5bc842275e7fa09000d5f39d5d69d3d3654132", "message": "Temporarily slowing donw feed fetcher.\n", "proba": 1.210104159099501e-07} {"commit": "948404c23e3755dadd138cc9687585daa3bbdb3c", "message": "autospec\n", "proba": 6.649174224548915e-07} {"commit": "2dff94f1ae2274231da14ffead3c3f17372a0e0b", "message": "Added comments to new examples.\n", "proba": 1.0661770488695765e-07} {"commit": "932436e16288d7e3620a8e30708d937bc1aa2d04", "message": "codestyle", "proba": 1.249137881131901e-06} {"commit": "1c08ba6a6e2ad1340c5faabf2ad128cfafbc40b0", "message": "replace bioio fasta read with specialized version\n", "proba": 7.234714871628967e-07} {"commit": "a93b16385ca25c71e99ce61619e9a43d72a23494", "message": "Add casts for map, set and object\n", "proba": 1.758294985165776e-07} {"commit": "e3dddcef02aeec1e64dc41e4dbfb8b1d93525711", "message": "fix row reference\n", "proba": 5.099986992718186e-07} {"commit": "cefd6559dbde9f605bfc8985ac6b08867a92eff2", "message": "Removed unnecessary code in Model.get_image that was causing a crash when requesting 'linpol' without uncertainties.", "proba": 1.1505146346735273e-07} {"commit": "e4381302d763a04cbbfe60bc53afdda275bb5efc", "message": "inc producers buffer size to 65535 == asyncore buffer size\n", "proba": 2.892724069170072e-07} {"commit": "faebe4928b4bef33efd6183f97f1ff1396a701ee", "message": "fix missing urls.\n", "proba": 0.00013030314585193992} {"commit": "66b95e2e0b89470993c52998eeb179d9e4926713", "message": "test public list\n", "proba": 1.005799731501611e-06} {"commit": "a97d4affd801fb164e35e84e79c36a6145f12dc8", "message": "lock while prune cache\n", "proba": 3.4614373589647585e-07} {"commit": "1408f2a7e782c0ca059b04cab2526cef558312b6", "message": "go_generate_export_conversations: add comment to explain not extending BaseGoAccountCommand\n", "proba": 2.532866858473426e-07} {"commit": "5327188a0369c408db1594378c0268c322713d63", "message": "Plotting fiducials and lcls time now\n", "proba": 1.2316434094827855e-07} {"commit": "558c54a044e70049183e4dc20fb3f9716878342c", "message": "- histological_type no longer goes through capwords\n", "proba": 5.056294298810826e-07} {"commit": "7b24b4cb7881cfbf234424b4b3e6c300bb4d6670", "message": "REFACTOR: Plot results and textgrid morph call were redundant\n", "proba": 1.882521729612563e-07} {"commit": "b76bdbf8eb2ac07052d05039aff769fd58dc07fc", "message": "SetPaid API return values renamed\n", "proba": 3.842889952920814e-07} {"commit": "bdef12745f5d91bf196139b444b34810b529c38d", "message": "Fix #37: Make subclassing of btuple work for __add__ and __radd__.\n", "proba": 1.6152404214153648e-07} {"commit": "4bc1b660ef3d5e5ff4f16f79ec3ed7dff5fe8942", "message": "Make sure to add hyperPAV aliases to dasd.conf.\n\nHyperPAV aliases enable improved I/O efficiency by allowing parallel\naccess to a real DASD through a base subchannel (device) and multiple\naliases.\n\nUnfortunately, while the kernel recognizes such devices, they don't\nseem to generate any actual udev events so that blivet picks them up;\nnor do these aliases have a device node. Thus, if they are used at all\nduring installation, they are not brought online after rebooting, since\nthey are on the device ignore list. They are not removed from the device\nignore list since there is no entry in dasd.conf, so this patch loops\nthrough all DASD devices in sysfs and adds all detected aliases to dasd.conf.\n\n(HyperPAV support was added in rhel7-branch quite a while ago, but\nI forgot to push it to any other branch as well.)\n", "proba": 1.9600493033067323e-06} {"commit": "8abcd25ccd36d614ad650e0983385fbeb5a1777c", "message": "Add more search engines ping\n", "proba": 1.7139446129021962e-07} {"commit": "a083d66fcb1e73146a681ac4b057c5854b40a1a6", "message": "Made password an actual password field\n", "proba": 1.153508833340311e-06} {"commit": "507cb9e6b4dce4088a82a9dcf90bd72f8b27a8c8", "message": "[ADD] Match with account on creating statement line\n", "proba": 5.840614107910369e-07} {"commit": "0c140965913f869c7e9de8034fc4d025817b8fea", "message": "Inline session wrapper functions\n", "proba": 5.523984327737708e-07} {"commit": "0171843a80ecbb1660d001c5119307c8f7deb242", "message": "Finished first version of setparameters\n", "proba": 2.600266952867969e-07} {"commit": "7331870c8c1efdda5e891b06ed729cbb3a7a9d4f", "message": "impl Shard catch-up logic, simplify exception handling #17\n", "proba": 1.5385988660909788e-07} {"commit": "c5d26439f555e41ed7b46b4107c8617135ba48f6", "message": "Proactively merge infer-deps.txt and report.json files and emit results to stdout\n\nSummary:public\nWhenever infer-deps.txt and report.json files are encountered after the analysis with Buck\nthey will be automatically merged and deduplicated with all the other files of the same kind.\nThis change also emits the results of the analysis to stdout.\n\nReviewed By: jvillard\n\nDifferential Revision: D3064487\n\nfb-gh-sync-id: 3599fba\nshipit-source-id: 3599fba\n", "proba": 3.6846279272140237e-07} {"commit": "3154f0098f9696cd48536599413659e47747491f", "message": "Add api [2]\n", "proba": 1.38117854930897e-07} {"commit": "8b3221e7e36d383ad24ade4ec85fc9e1a4c91091", "message": "bug fixes\n", "proba": 8.304810990011902e-07} {"commit": "fd93a4e7cc23348f8607f71d4614ef4643c674dc", "message": "FIX: missing :\n", "proba": 3.829170964309014e-06} {"commit": "33e71499753295bd8f30df18826928ac30b77795", "message": "ENH: Add plan_mutator to bury complexity of mutating plans.\n", "proba": 1.2363554446892522e-07} {"commit": "aaaacb41f2da63c4a720fb93317a409add9d1f55", "message": "ENH: teach ensure_generator to take a single Msg\n", "proba": 3.6300258443588973e-07} {"commit": "964835b1cf308ee8894b3eeccf0925223bc8c806", "message": "MNT: explicitly cast sip.voidptr -> int\n", "proba": 3.9444313415515353e-07} {"commit": "1f1310e502251b39a079fa042a427238366ad672", "message": "Check blacklist when sending recommendation notifications\n", "proba": 2.4848102953001217e-07} {"commit": "20d47877bf426bc2ec9ac1b8a99ec887faec31c5", "message": "Fix minor problems with mux function\n", "proba": 1.7637979908613488e-05} {"commit": "810bbe1d3fed8ef6bfbe734182d0ff167fb04b85", "message": "[FIX] purchase_requisition_line merge remove duplicate requisition_id by Quentin THEURET lp:~quentin-theuret/openobject-addons/purchase_requisition_del_requisition_id\n\nbzr revid: al@openerp.com-20110117211722-55rmowubim2ihzlx", "proba": 2.10155320701233e-07} {"commit": "5fcb6aa1e92d55a82ae44a9602644e2784e9c83f", "message": "Precompile regexps before using them in a loop.\n", "proba": 1.186674793984821e-07} {"commit": "d98424206f85cec4ecf67939485a5bd680c12244", "message": "changing the location of the full command log\n", "proba": 2.6920602067548316e-06} {"commit": "3d1f02d1b3e38bf9e02ce503d6b071cbb87371a4", "message": "Fix key error preventing master start\n", "proba": 3.331783318571979e-06} {"commit": "39fdbd817e74b63a8fc009afd8ad8efa0f709f40", "message": "Removed port for the Minio service for this moment\n", "proba": 1.0789670312760791e-07} {"commit": "85dbdc6a399c9ad33e6d97aa3f0fc93299e9e42b", "message": "PY3: Make loader ignore .pyc files not in __pycache__\n\nThis keeps the loader from loading a PY2 .pyc file if it is present.\n", "proba": 1.29844664797929e-07} {"commit": "0bc0b285cf74b83d9bf40d59226ed13a95a74b9f", "message": "Extended logging handlers should be loaded from `salt.log.handlers`.\n", "proba": 1.1564747381953566e-07} {"commit": "3efb0a867d0596465668300f7b19796e7398e5c2", "message": "Fix bug preventing minions from unloading custom modules.\n\nThis change no longer blindly updates the __salt__ dict for each module upon module refresh but instead rebuilds the dictionary from scratch. Refs #7691.\n", "proba": 1.0618300194664698e-07} {"commit": "8a54483597d621e33479aaebb710959792d9833f", "message": "Re #269, rename Dummy to ProcessResources to be clearer about the usage\n", "proba": 1.1473611749579504e-07} {"commit": "485385d35f6c2c33710307c364bd228867a1ef41", "message": "Show what grains are being loaded when running debug level\n", "proba": 3.5432728395790036e-07} {"commit": "147e71222285330f8f73b1f1ea1f0d5441b07bed", "message": "Allow the jid to be passed inthe publish clear load\n", "proba": 1.9639996651221736e-07} {"commit": "d4b0186a01960cde4c2213cea049b48a4f95f932", "message": "move the evaluation of what master to connect to from __init__(), to its own method eval_master()\n\nThat makes it callable from the minions main event-loop and with that, enables the minion to jump to\nthe next master on the fly.\n\nAlso add handling for __master_connected event to enable the minion to switch between connected and\ndisconnected mode.\n", "proba": 1.3694973688416212e-07} {"commit": "c98053a8ca35937adb1795bd6e63af8e8ffda83c", "message": "allow filtering by archiveresult status\n", "proba": 2.3587131181557197e-07} {"commit": "de93f766b801ecfc890599947f6d1b5231f7f680", "message": "Extended the XMPPCollectorBot\n\n * Do not use a function called send_message in XMPPClientBot\n as it is hard to follow if XMPP's send_message or IntelMQ's\n send_message function is used\n", "proba": 2.1549405460064008e-07} {"commit": "3d5b872925d37b5d2de7eadeae142c4986443566", "message": "remove extraneous break\n", "proba": 0.9988911747932434} {"commit": "24ae01cdbe826008b35b8f19816cfe4a9c7fbc8d", "message": "add ArchiveResult admin\n", "proba": 2.6788788431986177e-07} {"commit": "3ae377398f17ed98861e851f8f7d8b9a761c32a2", "message": "Modified vector inversion technique\n\nThis new function, invert_vector, is likely much faster than the\nprevious method of inverting a diagonal matrix using\nnumpy.linalg.inv. Here, we just invert the elemts of the vector\nand then form the matrix.\n\nFurthermore, this new method doesn't invert values that are below\na certain threshold, but simply replaces them with zero.\n\nThis replacement led the SVD without thresholds method to produce\nproduce identical trial FFs in some cases, so an additional check\nagainst producing identical FFs has been added.\n\nAlso made a minor adjustment to the logging levels associated with\nthese checks.\n\nI think this addresses all concerns in issue #28 (and thereby also\nissue #14), so I propose that this branch be merged into master.\n", "proba": 2.0459852123622113e-07} {"commit": "8da750eddfecb2c7162e1a33c7c830fd083944bd", "message": "Change allowed exception raising\n", "proba": 2.782844887860847e-07} {"commit": "0c12733ca64c006c2537ca3d024ebfad45d7596b", "message": "First attempt to see a list of concepts. With errors.\n", "proba": 1.1335669114487246e-07} {"commit": "508a0bb06ebd15bcb63407328a5d4747fb10d977", "message": "refactor: Unpack extractors tuple instead of using the index to access the relevant information\n", "proba": 5.360432169254636e-07} {"commit": "8f2e25293dd89854b26bdd0edce9aa1ff2a3f383", "message": "Circular import issue\n", "proba": 2.7026021598430816e-07} {"commit": "b9e60a3d47d38bd3b961cd127c02a4dd5e21ecd6", "message": "add income, rm some comments\n", "proba": 1.2768211377078842e-07} {"commit": "7c3faea0dde53163628462db4fe688fa47cc63ab", "message": "comment fixed\n", "proba": 2.4637668616378505e-07} {"commit": "f88a5e230477aed41846fcd75c2dad68b1c39888", "message": "updates\n", "proba": 4.4353927819429373e-07} {"commit": "c09d6ae145bf415d4aeb0121138808c1879b22b3", "message": "Display the src tag as well for older images.\n", "proba": 1.0692806995393767e-07} {"commit": "813f62c829adc13a89c0c59d9787525b60af5cc7", "message": "Bug fix: merge correctly the namespacedict of nested accounts\n", "proba": 6.109282821853412e-07} {"commit": "1af963f578fa2215d63fce855e488684ab755dc8", "message": "\u79df\u501f\u670d\u52d9\u4fee\u6539\u522a\u9664\u9700\u63d0\u793a\u6c92\u6709\u7ba1\u7406\u8005\u6b0a\u9650\n", "proba": 1.4510617063479003e-07} {"commit": "ff9e3e99e7a5bda1eefdd925960b6b6153a9e10d", "message": "Update messenger.py", "proba": 8.46402315346495e-07} {"commit": "02af249608a23e2c0ee60ef91e4d11952fa22895", "message": "quotes update", "proba": 3.758049444968492e-07} {"commit": "3efd378ed47a88f92b2005c422b09a90df2919af", "message": "Undid def split\n", "proba": 3.586259845178574e-05} {"commit": "160ace499c765c81f14e24c6e5f350f0374417a7", "message": "Tweak what happens when run on non-Windows platforms: set install prefix\nas well as scheme, and don't convert all installation paths (that's now\ndone by the \"install\" command for us).\n", "proba": 1.265636058178643e-07} {"commit": "e6f112b3883c35415821202b792bae1d136e0746", "message": "changed ID\n", "proba": 2.162010787287727e-05} {"commit": "ea505154df0ba70f9426dd5a34f24e700932336d", "message": "[gvar] Avoid a copy in compileGlyph_()\n", "proba": 2.1926408066974545e-07} {"commit": "4689b27316f309581c3c14cf8ada2a9cbe74de69", "message": "Added links to documentation of Resource message payloads.\n", "proba": 1.0653700144303002e-07} {"commit": "89f0c0ce7f0c8f2110da5706e9069da49b1f2317", "message": "Speed up hdmx loading by using custom glyphnamed-list\n\nThe data-structure can be used in more places, but it's most beneficial in\nthis table since hdmx tables can have tens of ppem's, each having a dictionary\nkeyed by glyphnames...\n", "proba": 1.0690992269246635e-07} {"commit": "105a4eba8c13b924f2d487700cc5fc25eac78398", "message": "get_replag() method for Site.\n", "proba": 1.1601520810700094e-07} {"commit": "fb22f64ab1b727c4b622a52eb240c0d3be7708eb", "message": "[varLib] Add TODO item\n", "proba": 1.5484140192256746e-07} {"commit": "7e9a92391b90dfc54c7ed88cc4cce6ab6eba68d3", "message": "Missed another one, whoops :/\n", "proba": 1.2532744619875302e-07} {"commit": "1fc51b90d783fc3d0b94a68171baacddec576708", "message": "yield PASS even when no slnt axis is detected\n", "proba": 1.9767644232615567e-07} {"commit": "79e89e924471ee4b0778cfb39844dbd50e21488a", "message": "Remove unnecessary .strip() call\n", "proba": 3.1656018109060824e-06} {"commit": "a9cc2a04d5448e5b6e7f01cc330879aa9029ee04", "message": "Fix syntax error.\n", "proba": 4.03202056986629e-06} {"commit": "1e930adbfb1714670ad04717401b36b59bf12558", "message": "Bump version to 0.0.2\n", "proba": 9.117405852521188e-07} {"commit": "a24a8685177bda9eeac0c68c15bd33fcb1c05d54", "message": "add doc for save svg\n", "proba": 2.3488071576593939e-07} {"commit": "80d373e8654b923d33ef78b6dd165ee99164d200", "message": "Pyplot does not re-create toolbar in show\n", "proba": 2.0117504107020068e-07} {"commit": "4ab633a6a20969988c57deae0cb07e9539566e15", "message": "customer tests asynchronicity.py: Increased sleep time for slow provider\n", "proba": 1.7459068146763457e-07} {"commit": "112b3b369d05d3c1645195b5c83f1ef45023bc86", "message": "added category to collection\n", "proba": 1.265440658926309e-07} {"commit": "8190d1d1943c57edfb0f929fd9e56052f9cdf487", "message": "fixed player performance json\n", "proba": 6.758999120393128e-07} {"commit": "09e1dc814da2534080093bdf6b96305a16d9d0a9", "message": "Fix concat\n", "proba": 3.818901404883945e-06} {"commit": "55fc6621e3b6a73a3360b84cf2cfb04c96d82f1a", "message": "add linger param to socket close\n", "proba": 6.875915232740226e-07} {"commit": "1e8349eeaa169a5fb3487041676afe5ba511a7c7", "message": "Minor fix\n", "proba": 4.2334357885920326e-07} {"commit": "c46bdfd626a63d9a1188feb618e23f43e3d06e51", "message": "Updated model severity to V8\n", "proba": 2.2488288209387974e-07} {"commit": "9e538d019b38b9549de2b5095556946305af91b2", "message": "Removed unnecessary method core._route2command\n", "proba": 4.317033926781733e-06} {"commit": "61253c18b0485da93bf006a8ce7ab0e3313469fa", "message": "Force serializer to be passed\n", "proba": 3.694737245041324e-07} {"commit": "f26c0362139c6c7e87c6b7acf7c228d4e5ae5993", "message": "missing stdout/stderr PIPE on Popen.\n", "proba": 2.47629628802315e-07} {"commit": "ac6a14055dc48faa67b147b07ab6ab79cedee03b", "message": "[mod] lisibility\n", "proba": 2.6815166620508535e-06} {"commit": "45bfc0cde06f3b199ab5867cb962e3cdc70e394f", "message": "Improved test isolation by resetting the mock connector after each test.\n", "proba": 1.0970165220669514e-07} {"commit": "cd4a7484b957619de9a804dc2d91d1a790169c86", "message": "Fix fuel_6_0.py migration script\n\nWe have wrong approach of writing alembic migration scripts -\nwe have all-in-one migration file, which is wrong, because Alembic\nitself promotes to use a separate file for separate migration task.\n\nThe issue shows us that we can't and shouldn't separate schema and data\nmigration, since they are a whole thing and rely on each other.\n\nChange-Id: Ic1c5c69243211ae9b48088b6a4787a47ce6e5515\nCloses-Bug: #1391525\n", "proba": 0.998610258102417} {"commit": "6b28f11b5bdbab630a5b7ef99e88b107b4573289", "message": "Small ATLAS fixes, major update coming soon\n", "proba": 1.1210048711518539e-07} {"commit": "1babb78de2b74032f10971275a63625ea56bdffa", "message": "Weird bug\n", "proba": 8.948292702370964e-07} {"commit": "24f1c94817bbeeca18d9dd307c1086ad76f9f167", "message": "add missing curly braces for string formatting (#1148)\n\n", "proba": 1.419160327031932e-07} {"commit": "a24724bbe785f73975c2b502e21abd3db3a19dbf", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "4e4a5d7c42fbb8455633064f876bc824ee8857be", "message": "Improved Error Message\n", "proba": 2.820044642248831e-07} {"commit": "edcaeba905d9da6b22a0a45a9fef3e9020b8519a", "message": "fixed version string\n", "proba": 2.064532509393757e-06} {"commit": "fad042588cd9d13e1ff9750c3b75e4819283e239", "message": "Updated plot drawing tool for the atmost presentation\n", "proba": 1.3016602906645858e-07} {"commit": "a8da3e5b3dad0eb0d8b7873e73a8f528501aa145", "message": "Bugfix police.\n", "proba": 1.4539971004978725e-07} {"commit": "1e164942b652aad108f9ccb89f2455819e7dc2b2", "message": "docstring updates\n", "proba": 1.0056280643766513e-06} {"commit": "7599afc99e681d952cb971c7be5e99df44d8c674", "message": "changed version to trunk\n", "proba": 6.602414828194014e-07} {"commit": "649e34402477d1d93efc9be11394d69cf676af1d", "message": "fix indent\n", "proba": 5.98584083491005e-05} {"commit": "e01a06c735d0ac59f7b0827839a5e1bcfd7200bc", "message": "Allow non-integer parts of GNOME version number\n\n`gnome-shell --version` may return, e.g., `42.beta`, so we can't\nassume that all parts of the version number are integers. Change how\nthe version number is parsed so that non-integer components are\ntreated as 0.\n\nAnother option would be to use `packaging.version.parse` to parse the\nversion numbers rather than parsing them ourselves, but that would\nintroduce to this module a dependency on `packaging.version`, which\nwould probably be gratuitous.\n", "proba": 6.816703717049677e-06} {"commit": "4ca15afa56bb0be4e708ce7d65dc40ad0b37a84d", "message": "Adding search by tag and automatic help\n", "proba": 1.732627339379178e-07} {"commit": "dd02dcd1fa56c5aa01dbab0a2936ce2c6bf720f8", "message": "Linting fixes\n", "proba": 2.666087084435276e-07} {"commit": "6c556f6c5e4aa70173a84f6e6854390241231021", "message": "Update the Jinja2Templates() constructor to allow PathLike (#1292)\n\n* Update the Jinja2Templates() to allow PathLike\r\n\r\n* Update templating.py\r\n\r\n* Update starlette/templating.py\r\n\r\nCo-authored-by: Marcelo Trylesinski <5c86bce04fb7a3515a6d5a7f8f4be0d0fd9bf2f8@gmail.com>\r\n\r\n* Update starlette/templating.py\r\n\r\nCo-authored-by: Marcelo Trylesinski <5c86bce04fb7a3515a6d5a7f8f4be0d0fd9bf2f8@gmail.com>\r\n\r\n* Update starlette/templating.py\r\n\r\nCo-authored-by: Marcelo Trylesinski <5c86bce04fb7a3515a6d5a7f8f4be0d0fd9bf2f8@gmail.com>\r\n\r\n* Update starlette/templating.py\r\n\r\nCo-authored-by: Marcelo Trylesinski <5c86bce04fb7a3515a6d5a7f8f4be0d0fd9bf2f8@gmail.com>", "proba": 3.7794492868670204e-07} {"commit": "a2f4d560e2cb71278b31330bc6f3e1b3fe18b2c5", "message": "Finished background support\n\ngit-svn-id: 305ad3fa995f01f9ce4b4f46c2a806ba00a97020@1126 3777fadb-0f44-0410-9e7f-9d8fa6171d72\n", "proba": 3.9920118410918803e-07} {"commit": "eb9deb602ff18312b016508b2ae2b6c8f25307ad", "message": "basis cve scroll function\n", "proba": 3.593850692595879e-07} {"commit": "995e64d68320e02f3f368d9488fd9c3a0b486f18", "message": "gui cocoa: windows available at apple-1 or apple-2\n", "proba": 3.1330583283306623e-07} {"commit": "b9041fb0545213db2229bda3673abe40bac5d76b", "message": "[Update] Main arguments\n", "proba": 2.4403078668910894e-07} {"commit": "a0dfb1ce1a72880da34ad817c8021e54e2ce0e5d", "message": "add fields.\n", "proba": 2.0846719905875943e-07} {"commit": "9b52d1d23e22532a8e63e5161c82bae87d39fbd1", "message": "ddfs: fix resolving of tag attr urls\n", "proba": 1.441233962395927e-05} {"commit": "80fbbb0da2b44422e7f290fb72f8ffbc0bae8d21", "message": "Updated sensor_module.py\n", "proba": 9.150855930784019e-07} {"commit": "2d7b3afaca97a3e6a115c077586d0a9fb9daf8b2", "message": "Fix imap connection lost (#380)\n\nNothing in imap mail backend reinit the imap connection\r\nwhen this one is lost, and then the backend always output \"socket.error:...\"\r\n\r\nThis change fixes that by cleanup the connection object when\r\nconnection is lost so get_connection() will recreate a new one.\r\n\r\nThis also remove the unless utils.internet() checks already done by\r\nMail().run()", "proba": 1.3506579534805496e-06} {"commit": "406dc094ef9db1d21ece149d8a52ce094f724bad", "message": "Be more strict about checking empty database results.\n", "proba": 1.4004292836489185e-07} {"commit": "c0f959446731b8ce2677c56afd5456c2e047cabb", "message": "Change the webapp tests to not interfere with instance level connections.\n", "proba": 1.1845524738873792e-07} {"commit": "0198d425806a960cae7403934b6cfadb70a69f4c", "message": "tidying\n", "proba": 8.614033504272811e-06} {"commit": "9e653b92783d386520206fb2282b29fee6a703a5", "message": "Attempt to fix file descriptor leak on file_checks\n\nThis would hopefully finally fix #7.\n", "proba": 1.153788957708457e-07} {"commit": "aa096411780cb2c02e123e1f4e456d6fb4b3d551", "message": "rz_cli: make it guess etc directory for ease of use\n", "proba": 3.121430154351401e-07} {"commit": "17f1c210c9c8b410cb6888a51ea1d863b74c14be", "message": "Use has_module check in _can_read\n", "proba": 4.885096700490976e-07} {"commit": "f6a2fe4f9e739707b10001fc29f8c5009a7b9799", "message": "support valid padding for convlstm (#1151)\n\n* support valid padding for convlstm\r\n* support valid padding in python convlstm\r\n* change default padding to valid\r\n", "proba": 2.210721135043059e-07} {"commit": "4e99d9ab2acfaf2ebb4b150736590d6a4e33f449", "message": "Fixed config module which forgot to call the superclass's initializer, finally causing failure in python 2.6\n", "proba": 1.877243818171337e-07} {"commit": "6537fb8524ed8cc21a916c09b9a2ea68cabf45ba", "message": "Properly report errors raised by popen\n\nCloses #75\n", "proba": 2.543575874369708e-07} {"commit": "70f1838951460c16b7eb4b8220621c198d4634a5", "message": "remove pdb\n", "proba": 2.42597652686527e-05} {"commit": "929fe5432c8f83bfbf7f9d9386e4f0272f6cb874", "message": "fix attribute doc todos in core\n", "proba": 2.413469530893053e-07} {"commit": "ff1b0080c7c0ec0ad9575648126ea3aa36accc02", "message": "Remove unused imports\n", "proba": 8.691937409821548e-07} {"commit": "04e66ffa6f9508f88ecfe8320e2d1f5851d2c2cb", "message": "If pkg-config runs, but can not find the requested package, we still should log an error and add the default libraries to the list.\n", "proba": 1.0358567692492215e-07} {"commit": "67ad163f293373082c153088c40e11bf5b8966d0", "message": "Changed default config generation to use Distribution.is_pure to know when to run\n", "proba": 3.305220275251486e-07} {"commit": "a249b46a8469c9ae4cea43177769246e911e024d", "message": "missing interface docstrings\n", "proba": 3.5627294892037753e-06} {"commit": "d67c4acd222a6d2809ddbe78feb0bfc7ac10c4ed", "message": "Don't display progress bars in child threads or processes\n", "proba": 1.3946528554242832e-07} {"commit": "ebfc7969fc2559d7f67eae628f00e0465b85e0c5", "message": "Add blur filter to supported URLs\n", "proba": 2.939651437827706e-07} {"commit": "673ec5a1a293696dba289a7ce61b5420c018a988", "message": "Small bugfix in `human_time`\n", "proba": 1.6173675021491363e-07} {"commit": "ffb13ab9ac772ce521f774a5e3e3cd1879353fda", "message": "replaced with an older version\n\nnew version is not working", "proba": 4.585636759202316e-07} {"commit": "ca266be4d60ca8728f8a3284fca93332fb94c3b5", "message": "Remove module class LAMDAQuery for functional form\n\nThe class `LAMDAQuery` was unnecessary since not messages were being\nsent from other classes and no attributes were being changed by the\nuser. The methods in the class have been moved to be simple functions in\nthe sub-module `lamda.core`. Some code-cleanup, de-linting, and pep8 has\nalso been done.\n", "proba": 1.7085658043924923e-07} {"commit": "2649acdb002019398cf87f2f59fcaf7adce9026b", "message": "bug no teste do par\u00e2metro cor\n", "proba": 3.023490080522606e-07} {"commit": "c5330a65fbcf0aa57e8d399bd2c10a0ba63385a4", "message": "For some weird reason, EPERM is returned instead of EAGAIN\nwhen socket is clogued with file descriptor sending.\n", "proba": 1.0044387721563908e-07} {"commit": "2953c1697709721b7146f66d1e0a528beb207fbb", "message": "more wine testing, still many issues\n", "proba": 1.1302561375714504e-07} {"commit": "69ec976428583666be0e901a6b26fd44b18eb8a6", "message": "quick fix\n", "proba": 3.852059364817251e-07} {"commit": "f1d76611b6b7c2f1b1a15c72976e5c1029f3b4a8", "message": "Use the executable bit on AWS callback.\n", "proba": 1.24919580457572e-07} {"commit": "86791effb26c33514bbc6713f67a903e8d9e5295", "message": "Choose a single corpus for a given series,date pair.\n", "proba": 5.936282832408324e-05} {"commit": "7125f65f9f3b4672f753e2597a4fe776fd1ecc99", "message": "[add] database.rewrite to apply CLI changes\n", "proba": 2.4003080056900217e-07} {"commit": "65ad549ed4f3fb249dfcaf5e7257a7a8456978f9", "message": "Give copyright credit to pygdb.\n", "proba": 1.129459832327484e-07} {"commit": "3ec5e8b00156d7cb1a8f86359020baa9eecf39bd", "message": "Changed the error_message argument for BunkAction.respond_error() to manditory and updated error_data.data and error_data.field_errors to be added to the error response if set. Otherwise those items aren't added to the error_data dict\n", "proba": 2.5191070562868845e-07} {"commit": "195925232b47e2c607b95dfaabb46f884f1a1a5e", "message": "options.py: remove extra newlines in usage string.\n\nIf the first line after the \"--\" was a comment (started with whitespace),\nthen we'd end up printing a double newline instead of a single one after the\nsynopsis string.\n\nIt would also look weird if we had a multi-line comment; the lines would be\nseparated by blank lines.\n\n'bup damage -?' encountered this problem.\n\nSigned-off-by: Avery Pennarun \n", "proba": 1.3387264516495634e-05} {"commit": "13b714336e00fd02ea22040aeac23e5232dc2f50", "message": "added doctring explaining url structure\n", "proba": 1.3633491846576362e-07} {"commit": "e4b06b3dbc59f81dc7f4d25df611c2eda9d8b9b5", "message": "HeartBeatThead is now excluded from coverage for testing purposes. To exclude a class, you need to list it through its packages (e.g water.HeartBeatThread)\n", "proba": 1.2147256711614318e-07} {"commit": "00cd014118c4af028579143db73f089a169a0e2d", "message": "Fix error when you provide the wrong arguments\n", "proba": 6.451688022934832e-06} {"commit": "a06ae7800ed358e45a50a853860b1c80b3f82ab3", "message": "Added missing imports.\n", "proba": 1.3077932692340255e-07} {"commit": "c8bdf3b95b2ff8e4049a109f65728619a55a927c", "message": "Add parallelism to generate_departures (that was easy)\n", "proba": 1.5892371720838128e-06} {"commit": "edbfb456e34abaa7e6dab3c87dd321bfc8f941a1", "message": "BUS-TIMES-DJANGO-48E cope with missing calendar\n", "proba": 4.321011874708347e-05} {"commit": "a455af3a1dfdc439c3c7ec2f085e6ab0c956a304", "message": "Working on creating carbon pools in year of emission.\n", "proba": 1.1654850595732569e-07} {"commit": "ece3473288c0a37b85a90656a14ff152cd7f648c", "message": "Made SQLStore threadsafe\n", "proba": 1.7088932224851305e-07} {"commit": "853c9b911dbf2ad9640d334cfc3baa9c1c20661e", "message": "improving code\n", "proba": 2.9127434117981466e-06} {"commit": "5f12f7ce9a5949ef14e36e48a400d68416afc6d0", "message": "Iterate over every region looking for servers that we need to create DNS records for.\n", "proba": 1.0514669668282295e-07} {"commit": "eaa062840c0b56bbd7c47986b77f08528bb39eb7", "message": "Fix typo leading to misinterpretation of the doc in the implementation.\n", "proba": 2.208957141647261e-07} {"commit": "3513ef210d9ac1b7b888e94093a1321d8d9a7c0d", "message": "simplify\n", "proba": 0.9999978542327881} {"commit": "24b1f8b85c4418631414b3ffece54ea446fe1b8a", "message": "bug fix: MeCab Tokenizer tagger option\n", "proba": 5.51212792743172e-07} {"commit": "63251ce530149b25f6e73379e4fd228f15d400b5", "message": "Oops, forgot to remove debugging code\n", "proba": 2.0755587115672824e-07} {"commit": "65386bd03da5f189dad3a465121ffe4175289d3f", "message": "renamed plots\n", "proba": 1.0034151273430325e-05} {"commit": "5f2a09a97746258484c3e6060b657212c0fcde45", "message": "fix(hints_sending_in_progress): is failing with \"No results from Prometheus\"\n\nSeem like the scrape_interval was set to 20s in:\nscylladb/scylla-monitoring@6acafea\n\nSince our query was with 15s, it returned without data we should make our\nrange a bit bigger then the step (we are using scrape_interval for the step)\nin the api call\n\nFixes: #2123\n", "proba": 0.00038780359318479896} {"commit": "1563eeca697c5d06bd6f842fd6525d1a4ea82a37", "message": "missing static files now properly send 404 instead of 500\n", "proba": 2.2414633349399082e-07} {"commit": "123cbb54566b49e2dd4fdbcda00af9f7d503066f", "message": "Fixed missing comma\n", "proba": 1.0025016308645718e-05} {"commit": "e06776cc1bcc1ed2e7e64ad4cafcbb504ff9341d", "message": "Force training of a VDR Parsing Model if one does not yet exist\n", "proba": 1.3147111133093858e-07} {"commit": "14832f54dc83f0c02e93af0d1fb876db07ae6e73", "message": "Handles cases without used entities.\n", "proba": 1.3715545321701939e-07} {"commit": "092e4ae9e84c0a47c1181148f2335d883e42a9d6", "message": "[REF] l10n_br_account: Moved Comments creation method to be also used when l10n_br_account are not installed.\n", "proba": 1.0273605255406437e-07} {"commit": "735ff182a6513cb387e164063681afbbd0a34556", "message": "[FIX] fiscal document unlink\n", "proba": 2.505784948425571e-07} {"commit": "ba1f6be7e86b76a31dc127197b397b36e843bc25", "message": "Moving slugify to the top; Correcting image name change.\n", "proba": 1.1150850554031422e-07} {"commit": "5c346401960f7bdbd588d73b3798dac65e5ce2dd", "message": "[attribute_aggregator] Remove expensive unicode method\n", "proba": 2.7751120796892792e-05} {"commit": "749471d32e18eb14a0d4094ef265dede80cb58c1", "message": "modify name\n", "proba": 0.0008943535503931344} {"commit": "cf823bf6894a00859376cb1c33ea867116cca96b", "message": "bug fixed?\n", "proba": 1.301596910252556e-07} {"commit": "9cd100e4505408ed7da8bf174d4a3f319c5eaa50", "message": "rough draft of sitemap\n", "proba": 2.7562268201108964e-07} {"commit": "1f204897aeef7054191578111b356dc0ea960610", "message": "docs: implicit backtracking\n", "proba": 1.396448396917549e-06} {"commit": "0b60bb19bedfee3f165428c2f6bf04a102a77d0e", "message": "Improved the 'WITHIN' overlap test, following a suggestion\nfrom Greg. Also improved the documentation of the _overlap()\nfunction.\n", "proba": 1.2439531360541878e-07} {"commit": "ef64f076a1c1a8b000560b8147ecac87a2d358cf", "message": "removed variable branch in configuration.py", "proba": 7.204598659882322e-07} {"commit": "6c5281924bcb40881ff72e630128b15196762db1", "message": "Ignore numpy warnings\n", "proba": 9.092329378290742e-07} {"commit": "c3b14a48b63d340fdb5bfaacef439998b09c1711", "message": "Added a logger to log all HTTP requests.\n", "proba": 1.1298746471766208e-07} {"commit": "83b4622add1e6ae10e8397e540998bedb567324c", "message": "[fabric-ansible] print the proper error message for ipam creation error\n\n1. print the error msg for the ipam creatio error due to out of range gateway IP\n2. save the original user input for fabric onboarding as an annotation for UI to retrieve\n\nChange-Id: Ib637cd8b3f7800a4b5c3351bf504bc60810f6124\nPartial-Bug: #1779398\n", "proba": 1.9324614186189137e-05} {"commit": "b01b8f1d74e04b67cb4c04f592b2cf3f60fc5fbb", "message": "Annotation id dereferencing\n", "proba": 4.3227046830907057e-07} {"commit": "c2d543a3de566443a2c61761f9a190e915426fec", "message": "Return stream_client instead of binding it inside method (tests now passing)\n", "proba": 1.0842731512639148e-07} {"commit": "eac0942acd1c499bf6c87128e7f6bcae1f2a0251", "message": "Remove unsupported eb setting config\n", "proba": 5.402308147495205e-07} {"commit": "5bec6f6935d16b9b374b8eb628d26fadaecc2148", "message": "Added missing import of multiprocessing lib", "proba": 1.8449330241310236e-07} {"commit": "f578bfbcf6222b51eedd4e754be53848b92ce3fe", "message": "Tweaks before refactoring\n", "proba": 1.9748688373510959e-07} {"commit": "7c9e208af942bf7812a1fd8a31da4ba3ce4baa45", "message": "Insert debug message", "proba": 1.248854459845461e-06} {"commit": "071f636394793aafa1de33f9b7b55deae5f04944", "message": "Updated ProjectRadarOnVideo to use the new config file\n", "proba": 1.2652994030304399e-07} {"commit": "910167276d551e997bcf1c50d8360bad486b2579", "message": "better active detection\n", "proba": 6.131094778538682e-07} {"commit": "c895a8b62754f5df32aba06cd2231ba43acc9576", "message": "Update algo.py\n\nSet to 5", "proba": 6.9819370764889754e-06} {"commit": "34f2a50d35ff293c5c43ba2fab805143ed5dc44d", "message": "prompt merge message and store it in .git/MERGE_MSG\n\nthe \"merge branch ...\" menu items were removed in favor of this solution\n", "proba": 2.025039833597475e-07} {"commit": "e84dbf8e08dd3377c7771858db13cedce40229c6", "message": "[IMP] PEP8\n\n", "proba": 2.3190605134004727e-06} {"commit": "72756f0d6b21b94487d4b20cdc6621c490350121", "message": "fixed language argument\n", "proba": 3.2458094665344106e-06} {"commit": "fe1ccac975dc44a4faa0d1e194c618d3838693a5", "message": "Flask app will use the same .cfg as logreader does.\n", "proba": 1.1491943041619379e-07} {"commit": "ce75054b46cd96b8b59e05750aa2b31c95f43b4d", "message": "Fixed conversion of MultiDict to dictionary\n", "proba": 2.7215710929340275e-07} {"commit": "9577e8808c6c5596c3bd5308aa3ffb0c446408e8", "message": "fixed bug with game not properly detecting a finished game\n", "proba": 2.684791979845613e-07} {"commit": "315a8ea99240d0eebe2335f25269154475dda679", "message": "Fix broken svn_export test\n", "proba": 7.380330771411536e-06} {"commit": "19a82e151c2b5a5c5a6d42fed0d681931838881b", "message": "minor cleanup\n\n", "proba": 1.7840027055626706e-07} {"commit": "32732990ac1df51597600e90eff5ee58719130bf", "message": "updated colorcuts_function documentation\n", "proba": 1.7459232992678153e-07} {"commit": "d11d24c42033dd31f0ff204cb191f30cd9b4e5e9", "message": "Fixed a bug in testExclaim.\n", "proba": 1.0929752392030423e-07} {"commit": "861b719f12bf454fc48005280e1a1ae7ea7059ca", "message": "save indexed yaml file\n", "proba": 5.206251785239147e-07} {"commit": "a22174dcd9fa8540329f0e69a17f021ccb59b678", "message": "load only first 1000 data\n", "proba": 2.8800508289350546e-07} {"commit": "d05b92b9c39a99162ba7d4a4ec855034fccf494f", "message": "change log message\n", "proba": 9.739103461470222e-07} {"commit": "9526286cea783bbb14d3f4a973f52d6f6175c2db", "message": "Test.\n", "proba": 1.1913925845874473e-06} {"commit": "7af40645756fbe2f1b7d44f0ea357a710d10fd3c", "message": "Use list2cmdline to rebuild the shell cmdline\n", "proba": 2.7346786168891413e-07} {"commit": "066e60897aa931b22ce92776b896912dbec3ccf6", "message": "bump dev version\n", "proba": 2.981811633162579e-07} {"commit": "339fdf6a588fdcd9613015814d3f242d9a0f4118", "message": "Fix minor bug\n", "proba": 9.02184751794266e-07} {"commit": "c3a9c0fb44264e1f2c5af048d05a00fded001bb0", "message": "Add another E223 test\n", "proba": 3.5622770155896433e-07} {"commit": "2a369cb4c8f0488af641c6b8c2e3a5ee1dc66a3c", "message": "add count error handling\n", "proba": 7.967373676365241e-07} {"commit": "7212db8c4a660ae9865c1ba7d756b1baa264d31a", "message": "post-reviews.py: compatible with git previous to 1.7.2.\n\nThe %B formatter introduced in git 1.7.2 while only git 1.7.1\navailable in RHEL 6.3 release, which is still a widely used release.\n\nReview: https://reviews.apache.org/r/22405\n", "proba": 2.556133154030249e-07} {"commit": "bce033d7f898dab20ead5df521fae08aaaec9b73", "message": "default to black-and-white output\n", "proba": 0.0005035001086071134} {"commit": "b8c0018e13e40729b1e8ed69a7289a34f84da61d", "message": "d'oh, fix transcription typo\n", "proba": 0.9999990463256836} {"commit": "58f9676d4b261f50b1efd6938857157aee9203cd", "message": "hashi_vault: fix for : in secret name (#39820)\n\n", "proba": 1.3393686515428271e-07} {"commit": "24428c1a1b8a3c7b157538aa2480330eb6da7e78", "message": "Added warning message if both --proxy and --keep-alive are provided\n\n", "proba": 2.6186998525190575e-07} {"commit": "e4ca50968a9dde6fc49eb8cce19f3b1fdbb96885", "message": "Simplify by removing \"lstrip()\" calls\n", "proba": 0.0006170477136038244} {"commit": "2dd968bb09a3e621b0c11bc272d5c1b220a6474e", "message": "flooring WISE uncertainties: use hypot()\n", "proba": 3.159800030516635e-07} {"commit": "ea45a15b1346b4bc1966620491e4e8535e234a6f", "message": "minor change on assets.py\n", "proba": 2.90135801606084e-07} {"commit": "8b6e7fab7b81ee1488687ab4a2b00ea6f4914e64", "message": "fix iam access json schema (#244)\n\n", "proba": 1.414644401620535e-07} {"commit": "2523abdcdd451f8bf8dd4a5ccb4977335dce7912", "message": "removed reconstruction from CLARegion\n", "proba": 1.7017244147154997e-07} {"commit": "9f4f42eefde54cee28a9d2a2ac9ac63595923013", "message": "catch exit exception\n", "proba": 1.7767538338375743e-06} {"commit": "54c48073dfb8ffd418efe234c0c107f7a5c303a9", "message": "Fix failing imports in Python 2\n", "proba": 0.00019607343710958958} {"commit": "5551e5340a0667c5c4c665ff69e04d0edc8debb3", "message": "improved style of the test coupling\n", "proba": 2.2005214361797698e-07} {"commit": "b71ef8c05a9afa9eb3614c863650c12df0967fae", "message": "document methods\n", "proba": 1.9202075236535165e-06} {"commit": "06b32a00ab5f0c8b0ba96e2c92bf7ee8a741e25b", "message": "PYTHON-1003 Test _list_collections uses one socket at a time.\n", "proba": 1.0003110162415396e-07} {"commit": "30d63e4416618aaacbbe597dcc52690a6532bb15", "message": "+ add some more reads database dump logging\n", "proba": 1.2890633627193893e-07} {"commit": "59940d72bbb12a9bbd555e74225672a554e954fc", "message": "py bindings -- fix linker options\n\n\nFormer-commit-id: 3c1a86aa055cbfa3458f16411eaf1d9ba474b01e", "proba": 3.4424201658111997e-06} {"commit": "80b03e8bb845b6f7c47d9193a517e3ef3560c63a", "message": "Alpha release commit\n", "proba": 2.7433455329628487e-07} {"commit": "9c70b0bfc8f4b0ac30298b3b8bc62ea422f7e94d", "message": "More updates to support Django 0.96\n\ngit-svn-id: 84bf245b8ec830cf55532821ac8e6bb7d4787dc7@472 2dde4cc4-cf3c-0410-b1a3-a9b8ff274da5\n", "proba": 2.6547203901827743e-07} {"commit": "4dc8a38c4baba60a54f396375915427dae4e9775", "message": "moved the location of the 'limit' key in the query object up one level. It now accurately represents a limit for the full search query (i.e. after the 'and', 'or' operations have been applied)\n\npart (1/2) of OOIION-1208\n", "proba": 4.239229383529164e-05} {"commit": "1a27e7ea37fe01c83a37fa164d1fae1945b278a1", "message": "Misc updates.\n", "proba": 1.2761429957208748e-07} {"commit": "e2a0fb602c9de9f988d733a30b466dc400cd9503", "message": "update issue 84\n\ngit-svn-id: 60eb48102d1ca0c284ab3654bef916b01e1b221b@1715 4f84a9ca-5c3e-0410-8a68-0bdf370325d5\n", "proba": 2.9457524419740366e-07} {"commit": "790ae2a305d2e1231f6f418ecc3e9a8ebf35baf2", "message": "Use json redirect.\n", "proba": 1.948215953007093e-07} {"commit": "f486280a264c195c989d59f0b3fa631d9e165a18", "message": "Fix comment", "proba": 2.1542624040193914e-07} {"commit": "53a1ecc1a2cd27cff7547bf184b7b96d9a9d1ae9", "message": "Refactor: use authorization module\n", "proba": 8.49256480250915e-07} {"commit": "a0a2810e52ba27bb2b6eba5d13d8a3bc88bca266", "message": "Complete overhaul because I hated the ConfigParser module.\n", "proba": 1.1996134219316446e-07} {"commit": "f32c834ea5c3ac937ba608985dbe0a4f72b6a21a", "message": "move dangling return\n", "proba": 2.2669992176815867e-06} {"commit": "988831aa77bc655b36c7d6707d55a8bbbda2250a", "message": "Now if config file is absent, it creates one\n", "proba": 2.3154353812060435e-07} {"commit": "648de375f5e9ae1620bc836e5d647688b541690c", "message": "Add atom package\n", "proba": 1.8591828165881452e-06} {"commit": "e875cdfa306aff4a5cfb024034f679645e6c0001", "message": "Adds platform constants in installer.py\n", "proba": 6.203826501405274e-07} {"commit": "89664ec37036553534c07d65f2df2b9fa07bfe80", "message": "Check total weights remain correct.\n", "proba": 2.1374856373768125e-07} {"commit": "c54845b00c2ac9515ad1e4cf66fc169af46bf1d5", "message": "cleaning\n", "proba": 1.01492532849079e-05} {"commit": "c94529a84ea5fe8136a45fbb9e6cc1b720f56ef6", "message": "Avoid copying frozendicts (#8)\n\nIt's not cheap.", "proba": 1.199139916252534e-07} {"commit": "ddf5a966058eab3bfd427223a47cf38f020c5553", "message": "Stub in predicates\n", "proba": 5.396096184995258e-06} {"commit": "5309d9d7da3c0e4cafc402d8c65c904668c70b35", "message": "Revert to revision 180 of nameserver.py", "proba": 3.817586957666208e-07} {"commit": "d6c2c185eed62874de7af9b9e127adaf78f47a6c", "message": "fix tests\n", "proba": 1.2553598480735673e-06} {"commit": "121623746dc0d83970184b9eb1f90a1feca642bb", "message": "Avoid call_interpret for fasl functions.\n", "proba": 1.3875698812171322e-07} {"commit": "245fb01458f7c1edaf3f34323738caf1e9ccadaf", "message": "organize imports\n", "proba": 6.616693553951336e-06} {"commit": "e6103fc7362e35f52a0d47b7926b8749009929a3", "message": "[FIX] Log exception reaching the WSGI layer\n", "proba": 1.521062245046778e-07} {"commit": "463e508b1599dea012ef1f3355fc1240f6550d27", "message": "Fix latex printing of function names containing underscores\n", "proba": 0.00016595884517300874} {"commit": "702e4c815335753d4f2b1cd21f877ce506a909ed", "message": "Delete that unused function\n", "proba": 4.423523205332458e-05} {"commit": "73486aec7b84e2e95e6b24b54c518274d9226598", "message": "shanes work\n", "proba": 6.233865974536457e-07} {"commit": "1a4e917c8d3851a6a1f5b8d9875a9e6d4122f3e5", "message": "Size calculation fixed\n\nImage size must be calculated with the distance of the text from the top of the image in mind.", "proba": 1.1469235516869958e-07} {"commit": "88afbc4bd24a6e109b81e49c1e9b1ce0720a9ddb", "message": "fix get_arity for structs to avoid return [-1]\n", "proba": 2.296089149922409e-07} {"commit": "ccd64710ce57ecd119e8892ec990cfe671130a0c", "message": "indexed: remove IndexedBase.__call__()\n\nThe syntactic sugar is now available with __getitem__()\n", "proba": 8.224674093071371e-05} {"commit": "aa0ea76913eb4cb1b106e1289a7488d3b3f57259", "message": "Remove silly debug print's\n", "proba": 4.363270818430465e-06} {"commit": "b6461a57a1d8b4d22cedc57b03f453dd17ebccd9", "message": "fix log in test case\n", "proba": 7.669796104892157e-07} {"commit": "c96d5ca414b1c91f96cac09b790002f8f2d064fc", "message": "call prop:equal+hash functions for computing hash for structs having that property\n", "proba": 4.601631076184276e-07} {"commit": "3acdd482d5b3898531f5a84f4a6cb60d838f546d", "message": "modified test to handle precision issue\n", "proba": 1.5115082874217478e-07} {"commit": "a9a4c8147ea62f3c64733fffacd85f41dc355094", "message": "[nelson] Changes to nelson script\n", "proba": 3.600787579216558e-07} {"commit": "cc288fa273a252765489830cef36056c373f6aa4", "message": "Don't smash the valu variable\n", "proba": 3.47840409631317e-06} {"commit": "7aacc55ed52868256bad0693ff87ee6c4208c810", "message": "some changes", "proba": 1.030631779030955e-06} {"commit": "4530eea92e37c087b6f25fe3a0e48e54b949b68b", "message": "allow setup.py to work without django", "proba": 5.760031172030722e-07} {"commit": "56e06cc93137fa7e706fc53a00af8faa91e13129", "message": "Fix test with numpy dtypes\n", "proba": 5.365221113606822e-06} {"commit": "ad81c92aa9e68eb3c59c551aedc534b7d1274f0e", "message": "RosterCursor: Write init()\n", "proba": 1.7397537988017575e-07} {"commit": "af798da3e4708510ef3c816724d617db01d7b4d4", "message": "fix translation\n", "proba": 2.8096364985685796e-05} {"commit": "248eb35407115adb5457d8e7947a245419f8a048", "message": "created test new kew function\n", "proba": 2.1795730731355434e-07} {"commit": "17ff71edcfe67884794aa68a611bd882aba227a9", "message": "Add bracket\n", "proba": 3.2604964417259907e-06} {"commit": "1df13ac26cc1fc4e4282fd7796d7a94cf7dddf75", "message": "fixed default is_private value\n", "proba": 8.443049591733143e-05} {"commit": "07522925cef4d9a999907b05d0f4880154544554", "message": "Update cip_const.py\n\nconvert values to bytes", "proba": 1.3217188097769395e-05} {"commit": "ae5e794d3a9d0077db79138aa1e179e0a7ce6887", "message": "django.test.simple is deprecated as of Django 1.7\n", "proba": 1.1979286682617385e-06} {"commit": "23bf10cc281b3aa3458018681f299e50ebaf437a", "message": "Modified syn.store to update Projects when given a Project with the same name, iff the createOrUpdate flag is set (which it is by default).\n", "proba": 1.0575310227523005e-07} {"commit": "f3052d78b6f2b964611ebcef6a3141c27108b99b", "message": "made cosmetic edits to base. should this be deprecated?\n", "proba": 3.001045456585416e-07} {"commit": "43026930c5d0650acfb966806e2e5426a9b53a49", "message": "Update cf.py", "proba": 5.146534363120736e-07} {"commit": "60ea1f56c4edf667ee839fa39addc1f368375be2", "message": "Give kits to access SunVox clipboard\n", "proba": 1.2826474460325699e-07} {"commit": "b4967908c29a05b209f1d8da411b85df45efe51c", "message": "fix(upgrade_test.py): address multiple pylint issues\n", "proba": 7.911042416708369e-07} {"commit": "a45fd8663443ffd1a06301484a14401f90727c62", "message": "add error checking on parent argument\n", "proba": 5.168013217371481e-07} {"commit": "d21665b10ab5dccedc9f266bdf20b330365dbf26", "message": "0.6.1\n", "proba": 8.075605001067743e-05} {"commit": "a3b6306b2288b6dc4a9ec6e04a5962c7fb94699e", "message": "Update addition.py: s/stop/N\n", "proba": 1.308296418756072e-06} {"commit": "829b0c55fbbab0681ab0b988b2b6289dbc40502d", "message": "Complete - task : move jobtree to a local repository \n\nComplete - task : make flatten chain function \n\n\ngit-svn-id: a36550da1b6493884efebfb740573981a7433be5@7117 a8237c23-d22b-0410-ac1a-db40f18c2caa\n", "proba": 0.9995914101600647} {"commit": "8e709b21421a24587d8f0ecfbb864f4f7a934967", "message": "RAPI: Fix issue when replacing disks\n\nThis is another fallout from a suboptimal merge.\n\nSigned-off-by: Michael Hanselmann <68b67885ff74281219b4a4be33cc20fd45078d7c@google.com>\nReviewed-by: Andrea Spadaccini <92d490849ac1b40cd8e8878e4d94603bebdb089f@google.com>\n", "proba": 1.6748735731653142e-07} {"commit": "b36941cb80bc5447e95e3c480b5ea28db90ef912", "message": "Errors in variogram h_function methods. Did not address spherical though. Will you veryify?\n", "proba": 1.4037279072454112e-07} {"commit": "756a75f2506d5a5981c8a202b00fe7c5693a5523", "message": "namedtuple is a thing\n", "proba": 0.0025664162822067738} {"commit": "2abdc46ad1af7e3e8d4b17691165f51d68a03128", "message": "simple fix for botan\n", "proba": 2.2430199919654115e-07} {"commit": "ae3a1ef58ba1769d3812e68217f55028fcfc5f2f", "message": "default node memory config to prevent ccm from using all avail mem\n\nUsers can set custom values by specifying\nCCM_MAX_HEAP_SIZE AND CCM_HEAP_NEWSIZE\n", "proba": 3.2898424251470715e-07} {"commit": "f151c742edede3a2c2338f1fb78acfba3478bed2", "message": "Variable number of device locations, and route-following\n", "proba": 8.115146101772552e-07} {"commit": "f00044117683348dcd8261b2d65d9720ec1a1f97", "message": "Remove mean reductions from IC reduction function\n", "proba": 1.2091159078408964e-06} {"commit": "99d76458256da781fc4b25a75d68a7a6d8c9379d", "message": "Correcting a typo in entries URLConf\n\n\ngit-svn-id: 9770886a22906f523ce26b0ad22db0fc46e41232@44 5f8205a5-902a-0410-8b63-8f478ce83d95\n", "proba": 0.9986067414283752} {"commit": "c4e8a6903c1e346172c864dfdfbc9e35645bc8f3", "message": "fix updating summary temps :(\n", "proba": 2.5549584847794904e-07} {"commit": "50a701cbd68c2f55eca3674d4205a5c9168265aa", "message": "version updated\n", "proba": 2.362833129154751e-07} {"commit": "5295cf039960e239d509cdc9e5b5f23c88cb1fb1", "message": "use the category type for performance wins\nhttp://pandas.pydata.org/pandas-docs/stable/categorical.html\n", "proba": 2.1603295863314997e-07} {"commit": "43a4dcdb2b1ea2a7b74e92ab0953f8d3bd931d31", "message": "warning instead of error since it's non-fatal\n", "proba": 3.518137646096875e-06} {"commit": "a929dc0b4655eb2fe0c88b437314b80848e16749", "message": "Fix up focus handling some\n", "proba": 2.578351541160373e-06} {"commit": "d9a10949e501e76197fcd3166e0b58b224134a6e", "message": "Fixes creating super users\n", "proba": 1.4398683845229243e-07} {"commit": "176f960f9a49810beea45a428fd8213ded6ee00d", "message": "added version check code to ecat7.py", "proba": 2.6990991841557843e-07} {"commit": "f89bc55aebeba0cbf3c8423c97599aa0d334d9c9", "message": "Fix lint error (#113)\n\n", "proba": 6.7685908788917e-07} {"commit": "541822e07634a6dce374fed5b47b34212afd657f", "message": "Fix python 2.4 compatibility\n\nI got overexcited and forgot we have to remain compatible with python\n2.4. With this patch we move from sha256 to sha1 for hmac authenticated\nserialized messages, and we handle both newer and older python, by\nimporting the right module for each.\n\nSigned-off-by: Guido Trotter \nReviewed-by: Iustin Pop \n", "proba": 2.2255997009779094e-06} {"commit": "596fb775e1efbba336ea710894a25c842c1cdfd6", "message": "Ooops.", "proba": 5.317966156326293e-07} {"commit": "8f5f826443e99b876c50562b1d58135bcdf68573", "message": "IAR - class workbench doc strings addition\n", "proba": 1.261714572819983e-07} {"commit": "d2c65daa64490ae6c866679de41f53b7b911322e", "message": "BugsLexer,JagsLexer: pass nosetests\n", "proba": 2.24775888568729e-07} {"commit": "fd0f3733efe9c059ce9ed664e82714e4cc0b9b38", "message": "turn on plotting\n", "proba": 9.181679274661292e-07} {"commit": "7b4531ec867982ba2f660a2a08e85dbae457083e", "message": "Fix new line stripping in admin site\n\nCloses #87\n", "proba": 1.8720876937550202e-07} {"commit": "2856fb74ba990a575eb6e7e4420648893cdea65d", "message": "replacing asserts with Exceptions\n", "proba": 0.000809002376627177} {"commit": "cad29b89d68e8e19446529e9db85009e39cab5d6", "message": "croniter: refine fuzzer (#9002)\n\nThis is to make it work with fuzz introspector.\r\n\r\nRef: https://github.com/ossf/fuzz-introspector/pull/613\r\n\r\nSigned-off-by: David Korczynski \r\n\r\nSigned-off-by: David Korczynski ", "proba": 3.9224746615218464e-06} {"commit": "08a094a087ced8ceb3cc842b42d0f1a12a48c0e7", "message": "[svn] Improve literal block scanning in ReST.\n", "proba": 1.2061636311955226e-07} {"commit": "f824342f14d57fdc389c004018af31dada23c894", "message": "test: Restore NM config and virtual interfaces after nondestructive networking tests\n", "proba": 1.474065953743775e-07} {"commit": "26d88cb40c47c22564fb7a889892921f142cbe38", "message": "Refactor parts of CalcThermalLoads into smaller functions\n", "proba": 2.035982618053822e-07} {"commit": "fbadf817c61c94c3fec01050e853719315a0a39d", "message": "Update is_profile logic to only look for 'History' file, not 'Cookies' also.\n", "proba": 1.0921437620936558e-07} {"commit": "0b9b47b8a84d34902f8801b926e7b49cce8095e4", "message": "removed `Tww_tank_C` from list of output variables\n", "proba": 1.9420253920543473e-06} {"commit": "802032a4d4610d8656b9aac0aec95ff861a69776", "message": "enh: enabled custom comment\n", "proba": 3.387618221495359e-07} {"commit": "e926ba2dbd146e30acaa069c9306c386edb3b80e", "message": "continuing pep8 modifications for code quality - groups.py\n", "proba": 1.1034274649546205e-07} {"commit": "bba7dd4db8f007b6dd6ec35f76ca898715d1f327", "message": "Documented PeriodicWorkController\n", "proba": 1.702998844166359e-07} {"commit": "8dba3e10443e17118c5c9cbfd291526fab41f73f", "message": "Minor changes in sparse.py\n", "proba": 3.1164836400421336e-07} {"commit": "1116d028071f542c3452a61b3f64a2b9f81f94ff", "message": "Fix facts broken by default change.\n", "proba": 1.7535792551370832e-07} {"commit": "be75a3a6c721b36fa173bee4b10940fd859557b5", "message": "Improve docstring\n", "proba": 3.173729055561125e-05} {"commit": "a766f1bb586a429de3b6270aa5bcd9464b8a74ac", "message": "KeplerQualityFlags should inherit from object (python 2 compat)\n", "proba": 1.191944321021765e-07} {"commit": "dc22ebf7945d8606cf1c03a6c198da7bd8d5b177", "message": "update flash cc_rules make to point to the public version of the package script. Should be used in conjunction with the 77up public c++ repo\n", "proba": 3.717846368544997e-07} {"commit": "d72c4d42221680659a05894dd7111c0c97e97ad8", "message": "DCP: Use real xml parser and check files hash\n", "proba": 1.943463416864688e-07} {"commit": "3fe1eab593d2f2ef5125570c297e14b96ad7d709", "message": "Reword get_installation_order docstring\n", "proba": 4.0188004390984133e-07} {"commit": "13052e20ef468b84ed725d91ecaed407933102d4", "message": "function documentation\n", "proba": 1.0509411367820576e-06} {"commit": "8cf2c19708f20a8786c7e161cca78c56386e1221", "message": "fix an exception issue with Python 2.7\n", "proba": 0.00016131138545461} {"commit": "22542d252e946a3cd36b8a6b532f69e7d67b62b0", "message": "Added some test\n", "proba": 1.2487848266573565e-07} {"commit": "1e94330eac2cbe9b834226a932ac8e40401ba41b", "message": "tests: Fix PyLint warning with Python 2.7\n\nFix test_fritzcollectd.py:238: [C0325(superfluous-parens)] Unnecessary parens after 'print' keyword\n", "proba": 2.9956836442579515e-06} {"commit": "dad7ab6d44afee80d938991294b3a760e9f17c6d", "message": "Borre las pruebas que se hicieron el ultimo d\u00eda de clases.", "proba": 3.2964345564323594e-07} {"commit": "0b7ab77ef7d290ef4c9708d0564c474fa51dcc2d", "message": "rename flipoutput method to flip_output\n", "proba": 3.570899207261391e-05} {"commit": "b74cdfd45eb8af55aed0b535e3aeb79e575c9fb4", "message": "Some small changes\n", "proba": 8.319563562508847e-07} {"commit": "00a62f6025421185d28d0735d984311cafb520fb", "message": "add: check and unzip thermal demo image\n", "proba": 1.5138091669086862e-07} {"commit": "2af91316f3ee5174d6183fd376d527e072bebdd2", "message": "Make deleting from form skip validation, because we really don't\nactually care.\n", "proba": 1.206867921155208e-07} {"commit": "a62b7000bcebdbcb3d86f651033094a890e370f3", "message": "Removing runner tree\n", "proba": 7.686388698857627e-07} {"commit": "8f299a5d0e88575638f5959ee014289b50f6f7c3", "message": "-v command line argument does not take parameters", "proba": 4.232089850120246e-06} {"commit": "e6ba3822c554c1527e404c9f191ea7d196f58c68", "message": "Fixes buffer consumed\n", "proba": 6.994373507041018e-07} {"commit": "6e58f2ff5abae9c9d54ff313a17afe4f747b0d2e", "message": "Code review fixes for FittingWidget\n", "proba": 1.6256716151019646e-07} {"commit": "57cec2b03eaa6857bcb1b3780c4de00c3165b281", "message": "Return early if owner\n", "proba": 5.6480093917343765e-06} {"commit": "672c0e9795abeea1d3e9cad38e001a26233aa032", "message": "Magnetism is enabled only for selected few models. SASVIEW-1199\n", "proba": 1.064409289597279e-07} {"commit": "d4a15ee3bdc252f5acbea65600c0fa73afc628f1", "message": "Deleting files that are not be used\n", "proba": 4.4679211441689404e-07} {"commit": "704ce578d88688d82595a81196a9438d5fb0b4a3", "message": "Small change in switch pattern\n", "proba": 2.676261487977172e-07} {"commit": "1c22abd97baa6d06a246fa8909717919acf8622b", "message": "cleanup and many small fixes for labels etc in ds.plot\n", "proba": 1.5345631254604086e-07} {"commit": "951ed2230ced7ef3e9aa5b684dba5d1e4614f091", "message": "bumbed version number\n", "proba": 6.476485623352346e-07} {"commit": "3ffa82661222ec628db0b34bf3ac3dcf85db1b38", "message": "Remove dirty code for test\n", "proba": 1.3077774383418728e-06} {"commit": "bf8847d38f8ab943fde3e448c30f99a7e5802fff", "message": "Added handling for R-to-R and acceleration signals.", "proba": 1.0284760776357871e-07} {"commit": "360984e4473fdb1b51c0cecbe54bb2b662f4d449", "message": "fixed missing brace\n", "proba": 8.109328746286337e-07} {"commit": "7df7aed99640f05a656d8ccbe476d5418568c32e", "message": "Refs #47 Put test back to something sensible.\n", "proba": 1.0586429510794915e-07} {"commit": "090702dbe9459d57b33e92acbcfeeadff94545db", "message": "Added language argument to warning_guest_user().\n", "proba": 1.1725342119461857e-07} {"commit": "42cec96f1e3465d5c2ce0e47d66c4ffa17f6548b", "message": "Fix log method if iotdb_log cannot be imported.\n\nThe existing log method was incorrectly defined as an instance method.", "proba": 1.516453522754091e-07} {"commit": "053ee809324861dc1bec19feee97b47ba1557a94", "message": "fix: add render_mode getter to Wrappers (#2884)\n\n", "proba": 1.0502082403718305e-07} {"commit": "7baa35bae0d87a4d0b8ca9b4d551e761e982b8e6", "message": "Define _have_attachment within node_connect_network\n\nIt's not used anywhere else; this makes it easier to find.\n", "proba": 1.6539212083444e-05} {"commit": "28c314e98ec88586b8c423b0941d8f029e4946e9", "message": "xdg_secret: fix function which has obviously never been tested\n", "proba": 9.020066613629751e-07} {"commit": "c8ba59fdc8834b547633e9278099570a6d52233b", "message": "let all the users use our app for free\n\n\nFormer-commit-id: 4f9d8f9fe6b6bff7412342e7003233d08949439f [formerly 9ed60318e44b2f08e1b065dda6f035398bb7f673] [formerly 745af4fedfab222ca85fa470903db47ee37800a1 [formerly 172e8b282846257f5ed1f5514e5e44ab06c9303c]]\nFormer-commit-id: 8d0f2863a00946c4ba63af4ef113049605852b90 [formerly 2268e408edb0dccc4564939e582465b6310a1a04]\nFormer-commit-id: 665c95561c69d958e9a0b2e522a93e05d1fe4772", "proba": 1.2194221881145495e-06} {"commit": "7d0e8f711033ae484b29792ec7af95a3e6740edd", "message": "\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u043d\u0430 slice \u0432 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430\u0445 (\u0441\u0432\u044f\u0437\u0430\u043d \u0441 \u0442\u0435\u043c, \u0447\u0442\u043e \u041a\u041a\u041c \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u043e\u0448\u0438\u0431\u043a\u0438 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0434\u0438\u043d \u0431\u0430\u0439\u0442 \"\u041a\u043e\u0434 \u043e\u0442\u0432\u0435\u0442\u0430\").\n", "proba": 2.0140616641128872e-07} {"commit": "a19c090dd305fc3e844eb61e8bd09cddd3de1f6a", "message": "Mark some runner params as immutable.\n", "proba": 3.259773393438081e-07} {"commit": "d11ae8d9bff7f7c624897af8e54e50481a66ad39", "message": "Fix tests.\n", "proba": 4.50294606935131e-07} {"commit": "ebd4aa5001e432b9b011a16c0ce9191b0c991431", "message": "Add test that DES works in multi-datacenter situations (#1416)\n\n", "proba": 1.7526063800232805e-07} {"commit": "dd26114a3da500cb45bbb660dcad8b47e59d5c39", "message": "Switched to native documentation. Added user profile page implementation\n", "proba": 2.4815895471874683e-07} {"commit": "d091db29c414000eaa79b82a6c4d4a72e31c2a08", "message": "Remove dead code", "proba": 0.0014967502793297172} {"commit": "383c74620e556909ed26115f32bcaa2c76c56eb2", "message": "* subversion/bindings/swig/python/tests/repository.py:\n (SubversionRepositoryTestCase.test_create): Fix another case of passing\n native paths to Subversion API.\n", "proba": 1.1798510968219489e-07} {"commit": "8f8b4ac51e18983d91be1fb8174e0715d4414c4e", "message": "APR hash unordering: relax a binding test's overenforcement of editor\ndrive order.\n\n* subversion/bindings/swig/python/tests/repository.py\n (SubversionRepositoryTestCase.test_dir_delta):\n Don't check in which order the editor drove the two (sibling) files.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1292296 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 5.074938599136658e-05} {"commit": "4cf1307fe4ce55c3b91a01167e0108f8c4703941", "message": "Add a regression test for issue #4052.\n\n* subversion/tests/cmdline/merge_reintegrate_tests.py\n (reintegrate_symlink_deletion): New test, XFail, POSIX only.\n (run_test): Run it.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1244303 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 3.259261211496778e-05} {"commit": "38f04da551554173030343f98e877d02bfa39723", "message": "clean up sonde.autodetect file handling\n", "proba": 4.4925272391083126e-07} {"commit": "55b379f843bb734cc6801050cefe5208cad53afd", "message": "russian labels\n", "proba": 1.6006434861992602e-06} {"commit": "b9bb705c567eabd00aab45c8f745f89aaf1fa34d", "message": "tweaks to things\n", "proba": 1.2961108097897522e-07} {"commit": "64cf5fa7ce09046fe40bd3da413915aeb072a703", "message": "set current branch from env or git rev-parse\n\nUse TRAVIS_BRANCH if set.\n\nThere is no reason to assume that the subprocess command would fail\nduring a travis build, but since the branch has already been determined\nit might be slightly safter/faster to use that.\n\nIn development, subprocess is fine.\n\nThe git command will return \"HEAD\" if a specific commit or tag is checked out\nunfortunately. But then the links in the documentation will just be broken.\n", "proba": 1.627606138754345e-07} {"commit": "72a552b0b3743cb742122c53ea830f7fcf403ce9", "message": "\"Auto publish v1.01 Build 45.1030\"\n", "proba": 1.1129559851497106e-07} {"commit": "6a9525f9a22cdf47eadbf93b05e104574ab8cb39", "message": "init: Try to use wx version 2.8 if 'legacy' is declared in args", "proba": 8.29949840408517e-07} {"commit": "9ee1feb00c9049e8e2c12d410a3b5d2aceafa55f", "message": "Give the records export data a filename\n\n* Add a \"Content-disposition\" header that designates the file as a\n downloadable attachment.\n* Add a default file name (\"records.csv\"), and take an optional query string\n argument (`filename`) to set a different file name.\n", "proba": 5.1298575272085145e-06} {"commit": "c7d89aa2a153dc31d1958e9bc497663a63696f94", "message": "generalized skysub_radii input\n", "proba": 0.9997199177742004} {"commit": "3a9941746f03e1a9f2ba2a11dd02591f8770dbcc", "message": "speedtest module: document how to run the test wrt #1878\n", "proba": 1.4022521099832375e-07} {"commit": "b3817bed0419dd0011096f41cf1fe851ea39d429", "message": "Added custom errors, and minor pre-request validation. Also, altered method and variable names for clarity.\nAdded error handling for timeouts as well as a timeout attribute, which is passed to requests.\nRedacted support for args, in favor of specific kwargs.\n", "proba": 1.0500720293293853e-07} {"commit": "b5bd2fc6fb07a972efd87520ff5ec8daff073ff9", "message": "Moved timing code", "proba": 4.844885097554652e-07} {"commit": "d6602af741eeaff4eae08a81e839fe60cd3f8e86", "message": "removed save_mapping flag\n", "proba": 6.919568136254384e-07} {"commit": "2d3016ce69e9a40dc5e428a0aa6ea75775c7d84a", "message": "Fix subscribe merge_vars.\n", "proba": 1.3158148703951156e-07} {"commit": "e1a4b0d7f7d9e860dce794e07aadedea193d470e", "message": "Set version to v2.0.18.dev1\n", "proba": 1.1149441888846923e-05} {"commit": "e08ab1b77f72336f868fafc4d87b0ef36d703ac4", "message": "Support alternative lib file name on Mac OS\n", "proba": 2.4472038262501883e-07} {"commit": "67cd68417c4d170a4416eb89536be55464d96d81", "message": "changed Epochs to Episodes (RL terminology) in Learner.\n", "proba": 1.1101637653609941e-07} {"commit": "d5c8d2f5fd4177b6f4980689ae972352563c28e5", "message": "Update about.py and increment version\n", "proba": 1.7693194820367353e-07} {"commit": "e5a1362539c0f1f7cfa73e4f6c21cc52926ddf34", "message": "v isoparm components working\n", "proba": 1.7492533288532286e-07} {"commit": "165e7ccf34b8bb66fe72dfbc446a33e61d26c26d", "message": "Redo the evil hacking. Back out the old code and replace with a finer grained control. Only ignore the known bad objects. Add comments to explain how to fix the problem.\n", "proba": 1.0430098029701185e-07} {"commit": "0cd9035ecb06710e950fb1df2c0f897af2681a4f", "message": " SampleData dev -- integration with BasicTools mesh objects\n --> corrected bugs in nodesID and element tag indexing to allow\n from geof to geof (no proper method for now, but an existing\n and working test script)\n", "proba": 1.034794365750713e-07} {"commit": "d756590f4e64d7439f299f491128906f768fb497", "message": "steal the main code by calling compile() on the file\n", "proba": 4.218088179186452e-06} {"commit": "250437a0efc128467e11b1b57af1ab91200c79aa", "message": "libvortex-1.1:\n* [fix] Updated change-prefix.py to apply some corrections.\n", "proba": 1.0207352119095958e-07} {"commit": "bd494484f5c221c47a222f11705c3a2c490bae4b", "message": "Waiting one second to let the socket clean up correctly\n", "proba": 3.711841429776541e-07} {"commit": "1de093397f6a3237d0ec31dbf1212aecff4817f7", "message": " (Debug) SampleData: remove errors when adding a node already existing.\n replaced with information messages and creation\n abortion\n", "proba": 6.780595072086726e-07} {"commit": "79be31665714968e8c3e189120e90d599493eb2f", "message": "Don't delete items from iterator\n", "proba": 8.009403700270923e-07} {"commit": "17bb7ad8c5b0c433465cd560420e8e5e28a69e3b", "message": "Opt out all for sms_failure\n", "proba": 2.7676009267452173e-05} {"commit": "6deb8bb595ae398fde1bce51867a3d379fa28c65", "message": "temporarily disable verifySelfSignatures due to false positives\n", "proba": 8.060183631641848e-07} {"commit": "79d7ea98b59e7e0841186a6f31b85e8c4bbe5d62", "message": "Fix pydoc for _safe_scalar_div.\nChange: 134115246\n", "proba": 0.000985454535111785} {"commit": "f38de130f980e631992f5e763e86268efc5aee40", "message": "whitespace fix\n", "proba": 6.11306240898557e-05} {"commit": "f218b1113949f83e1a7c0261da5abc7f8cbece0d", "message": "added a serializer for failed msisdn lookup hook\n", "proba": 1.809726910551035e-07} {"commit": "e20b1b56a03b73d6fcab17bdad0c7daf0fd63309", "message": "bugfix: comparing string to intergers resulted in revocations not being considered\n", "proba": 1.8460559658706188e-07} {"commit": "845be624ed0dfb8d942b240034af8b58f7a32e13", "message": "[tf.data] Fix the benchmark warm up code to make sure op that graph is not re-optimized during the timed run.\n\nPiperOrigin-RevId: 330954380\nChange-Id: I0ba44f39cd34ff036b1b91de3d9378adfe506cbc\n", "proba": 8.702833292772993e-05} {"commit": "9880f332553e08a307badca889a60ffd30ea8fd1", "message": "added type checks\n", "proba": 6.270134917940595e-07} {"commit": "8f6e5678843907a281417f7226b934341df3da09", "message": "gltrace: Add support for NV_framebuffer_blit.\n", "proba": 1.207687603255181e-07} {"commit": "0aa167d5959eefdb3509b1b74796741793df227a", "message": "add test cases\n", "proba": 1.0861161172215361e-05} {"commit": "eb0c33c03cd758d895770ff16b81ad2fd1a1e8c3", "message": "Finished testing EnergyGrid card.\n", "proba": 1.1132851085449147e-07} {"commit": "2e64d50571547895ba53032c50b7c3df0822e2eb", "message": "Clear shapes as a temporary fix for freezing\n\nNew shape information in SavedModels (cl/346241008) plus some faulty shape update logic were causing issues. The more satisfying solution will be to not use freezing.\n\nPiperOrigin-RevId: 352681341\nChange-Id: I22d563b4c0de19f937c35396dcbb8bc2a3f67cbd\n", "proba": 4.10771190217929e-06} {"commit": "4e2f5c79b67a86fce622c486a0ea28fca0130015", "message": "clean up default arguments in strip_training_tags()\n", "proba": 1.763215067285273e-07} {"commit": "4ef79a26794c26a45062db6823d69adfe747e0e3", "message": "Cleanups.\n", "proba": 1.9866448042193952e-07} {"commit": "b82996ce03989c38e076679df35b378acdce753e", "message": "fix bug: random shuffle\n", "proba": 1.992685611185152e-06} {"commit": "951d6122c6bfc57f11c9fd404f7f5ebc11a15e2f", "message": "PEP8 fixes on tests/bpl_test.py\n", "proba": 1.3651498420585995e-07} {"commit": "49b899c0956bff21ef157d98faaf97be7995dbb8", "message": "Resize on xlib working now (but flickery).\n", "proba": 1.034421330814439e-07} {"commit": "1489fe5b86114f89ee8dcf513db8964ffae8058f", "message": "Adds traceback output to breakpoint\n", "proba": 2.211550736319623e-06} {"commit": "c37ec46c90c0ec24d95d68b4e5d23efa32552415", "message": "Fix xlib key-repeat handling.\n\nFixes http://code.google.com/p/pyglet/issues/detail?id=24\n\nIndex: __init__.py\n===================================================================\n--- __init__.py\t(revision 562)\n+++ __init__.py\t(working copy)\n@@ -862,23 +862,31 @@\n if event.type == KeyRelease:\n # Look in the queue for a matching KeyPress with same timestamp,\n # indicating an auto-repeat rather than actual key event.\n- auto_event = XEvent()\n- result = xlib.XCheckTypedWindowEvent(self._display,\n- self._window, KeyPress, byref(auto_event))\n- if result and abs(event.xkey.time - auto_event.xkey.time) < 4:\n- buffer = create_string_buffer(16)\n- count = xlib.XLookupString(byref(auto_event),\n- byref(buffer),\n- len(buffer),\n- c_void_p(),\n- c_void_p())\n- if count:\n- text = buffer.value[:count]\n- self.dispatch_event(EVENT_TEXT, text)\n- return\n- elif result:\n- # Whoops, put the event back, it's for real.\n- xlib.XPutBackEvent(self._display, byref(event))\n+ saved = []\n+ while True:\n+ auto_event = XEvent()\n+ result = xlib.XCheckWindowEvent(self._display,\n+ self._window, KeyPress|KeyRelease, byref(auto_event))\n+ if not result:\n+ break\n+ saved.append(auto_event)\n+ if auto_event.type == KeyRelease:\n+ # just save this off for restoration back to the queue\n+ continue\n+ if event.xkey.keycode == auto_event.xkey.keycode:\n+ buffer = create_string_buffer(16)\n+ count = xlib.XLookupString(byref(auto_event),\n+ byref(buffer), len(buffer), c_void_p(), c_void_p())\n+ if count:\n+ text = buffer.value[:count]\n+ self.dispatch_event(EVENT_TEXT, text)\n+ ditched = saved.pop()\n+ for auto_event in saved:\n+ xlib.XPutBackEvent(self._display, byref(auto_event))\n+ return\n+ # Whoops, put the events back, it's for real.\n+ for auto_event in reversed(saved):\n+ xlib.XPutBackEvent(self._display, byref(auto_event))\n\n # pyglet.self.key keysymbols are identical to X11 keysymbols, no\n # need to map the keysymbol.\n", "proba": 0.9999786615371704} {"commit": "6ebdba518707486ddaa9e1ac53a89e4570e3d84d", "message": "Try Except TypeError from e ( validate card p2th )\n", "proba": 1.1663801302574939e-07} {"commit": "7ee3a97da84e44a8fadbc914d8048e13f646c392", "message": "fix menuitem index if tearoff is set to false.\n", "proba": 1.7471658964041126e-07} {"commit": "ba744c32dbb74592dbb501d8fc5b16b2ebcfb4df", "message": "Fix link opening\n", "proba": 2.598670505449263e-07} {"commit": "97155a9154a6ba7b6878537961f8bdbbef5b84a3", "message": "load_p2th_privkeys_into_node -> load_p2th_privkeys_into_local_node\n", "proba": 8.027015610423405e-06} {"commit": "54d8eb67290fc48b8be0f2ec5f437d314c71e801", "message": "Remove option to use different image format for output files.\n", "proba": 1.3829038891799428e-07} {"commit": "8d4ad00dd2a3eb0d6a8806160e7ff18d88a525b1", "message": "param in def\n", "proba": 0.00014237427967600524} {"commit": "c3a0ccfdb69951a1dd147c19535db705f3730b28", "message": "Disabled updates checks from setup.cfg\n", "proba": 2.4169500534299004e-07} {"commit": "a708916f090f833c4da4f462c6ab2f90d7cda275", "message": "Adding test that fails to deserialize a FileReference\n", "proba": 1.0631539453243022e-06} {"commit": "e73b90b43edf5065f0b3b87960ca7b7e00867c33", "message": "Don't create unnecessary tags var\n", "proba": 3.6640761891248985e-07} {"commit": "0a52bf17761d4a89eda10ff7e11a11ed43bd4511", "message": "Fixed filter bug with motifs\n", "proba": 2.2760622186979163e-07} {"commit": "e4bfb6ea5a04f1005ee76b5a4d9a188709317aef", "message": "Changing the gravatar url to be http/https depending on currently used protocol\n", "proba": 1.4704249224450905e-05} {"commit": "fb880127d29d70a37669180a5f4d1b9f55174f39", "message": "expose the uuid generation as a function for programmatic use\n", "proba": 3.0501604442179087e-07} {"commit": "23aa4199b192f49fd925bee3ab3daf8423324ce1", "message": "improved the SVG path data output to use relative coordinates\n", "proba": 3.2106282787935925e-07} {"commit": "e0ff861e26c0f3c73c8f8c55ee5be0ad5a9cd68e", "message": "Fix issues on linux (due to previous commits on windows)\n", "proba": 1.1737122918020759e-07} {"commit": "e8a5a97ea18120915dba74b9a73fdca4eb381568", "message": "Fix indentation level\n", "proba": 0.03554613143205643} {"commit": "17951915f22d12223373bec5e8003b4de666b843", "message": "__main__ compatible with python 3.5\n", "proba": 0.9996649026870728} {"commit": "6f8066972ab1201068687130a098e11c765a1894", "message": "Fixed incorrect parameter list to _upload().\n", "proba": 1.1851219738900909e-07} {"commit": "b909460773a055567a9e17f67246d00457d1a7f5", "message": "Remove unneeded import.\n", "proba": 1.968712268762829e-07} {"commit": "ab6eec62643c2d656ae588f5c752db1459f5ef17", "message": "missed a list_unique\n", "proba": 1.1140716196678113e-05} {"commit": "601865d7f2e2fc569f6c1b057e29e5b810994c4d", "message": "fixed issues with printing, formatting, and variable declarations\n", "proba": 2.2292820744951314e-07} {"commit": "b2b5baf719d62728cc0c881f880ef009678133bb", "message": "Remove deprecated calls to tensor.shared\n", "proba": 1.1709435057127848e-06} {"commit": "f76c6376d8fe2b7fb8c1b9a9ad2566cc22b109fb", "message": "Change dict to kwarg format in test_monomerpattern\n", "proba": 9.886314728646539e-06} {"commit": "2d960ceb5b9b2008c497b479834917c049e6ce9e", "message": "Print which binary are we debugging, and set a high timeout.\n\nPiperOrigin-RevId: 249678286\n", "proba": 0.0007687861798331141} {"commit": "33efe92104ad139f9313d91ae7b2eea8a76da9d7", "message": "fix flake8\n", "proba": 3.947170910123532e-07} {"commit": "46e6bcc1de45528871db79b6b6eb7c7a1c31107f", "message": "Added Method to write to etree object\n", "proba": 1.347208637980657e-07} {"commit": "041bde61537af90a54eee2ae33f4bc3d94a51762", "message": "mel2py: melInfo fix\n", "proba": 1.7120511301982333e-06} {"commit": "34840b50ea41b5795cf5c93fa02a1efc4ccc01ef", "message": "Default to no stdout and stderr\n", "proba": 0.0007917759940028191} {"commit": "ca194eee3d2d40aa1f1afa02b45bbd06f54985c1", "message": "added BestRun handler\n", "proba": 2.1140705541711213e-07} {"commit": "c1743ccd66eeb6dcbf3ac1758826afeb22779397", "message": "fix: find_model_metadata returns abspath\n", "proba": 7.570639718323946e-05} {"commit": "963c787585d0bff471ad082ebd99e9096742d809", "message": "text/plain content type\n", "proba": 1.861466262198519e-05} {"commit": "e7d2af465a4135e92b3505f0d2e69ddba2e27def", "message": "changing clipping toward fixing #81\n", "proba": 2.0219020768763585e-07} {"commit": "4b6117fd4835cbde52e8d3fba79e46c2ec63a637", "message": "Add explanatory comments about the parent-child relationships\n", "proba": 1.8154277370285854e-07} {"commit": "e368ec5471f43e7d53d42e044eb26a8113486430", "message": "changed page titles\n", "proba": 1.0580188245512545e-06} {"commit": "2a998433cee4b61b33f49e161c4d6233cbe83769", "message": "adapting leapfrog to support SF recursive split.\n", "proba": 1.1009951350615665e-07} {"commit": "977824bedf80dd8974e6ceeb53c223b14e8fc35c", "message": "- fixed view naming when shared view doesn't have a name\n", "proba": 2.646060863753519e-07} {"commit": "a8168d672f3048ac883d218dee1c9a15d223e481", "message": "Fixed documentation\n", "proba": 4.01116921011635e-07} {"commit": "44cebe74d2548dc21bfe7192a8f85370a95f52ea", "message": "added clear to simulation_controller __init__ so that random seeds are\nalways set", "proba": 6.870652100587904e-07} {"commit": "02081105d8d478fc065726341dd07ec6b9907775", "message": "fixed skipif expression\n", "proba": 8.418338666160707e-07} {"commit": "7cb60d5709d58d6e443d60c2b6274e779340572f", "message": "chubby: Default repo owner to authenticated user\n\nCloses https://github.com/meetmangukiya/chubby/issues/41\n", "proba": 2.0176143777916877e-07} {"commit": "f9c32f0afee5628229ba720ff7803ff8394b7973", "message": "Add cgiRequest and fileList handler calls\n\n", "proba": 2.634264717471524e-07} {"commit": "6108d2359501a70bec65631dae30f57c95759971", "message": "cffi: use __slots__ for a moderate speedup\n", "proba": 9.783044333744328e-06} {"commit": "dc422e6d3fcc857d41e7ff25e22489adefe29e7e", "message": "Tweaked pstr.string.__setvalue__() in ptypes.pstr to assign its length attribute during instantiation instead of type construction.\n", "proba": 1.0812929929215898e-07} {"commit": "5d94f90126260f147822ba8d3afe9c1c0a85e943", "message": "Discard FASTA headers by default.\n", "proba": 1.1712679537367876e-07} {"commit": "c0824d3cb9cba811ba36c2f8937e91716f5a50df", "message": "Fix lint\n", "proba": 3.219221252948046e-05} {"commit": "eee441315666d15320260c70df72bd4ed0a6c8ee", "message": "Make ROI.py pep8 conformal\n", "proba": 1.220216836372856e-05} {"commit": "06f77b09ce852633be4d63caa0a27e9af06e1aa2", "message": "Implementing discrete withholds.\n", "proba": 3.3721880754455924e-07} {"commit": "c5259ffc2abaf9e757d0d53352ee2d3b99c5b60e", "message": "address #9, OverflowError in xrange\n\ndefine and use `zrange` over `xrange`.\r\n\r\nvia: http://stackoverflow.com/questions/9816603/range-is-too-large-python, In Python 2.x, `xrange` can only handle Python 2.x ints, which are bound by the native long integer size of the platform. `range` allocates a list with all numbers beforehand on Python 2.x, and is therefore unsuitable for large arguments.", "proba": 2.689637881303497e-07} {"commit": "42810be66a3665bae776e2684720635c831d79fa", "message": "core: Simplified getting list of handlers to register\n", "proba": 1.2960403239503648e-07} {"commit": "2d60ef3a9ff53c1623747fd1a00df4d788dd3777", "message": "fix tobler init\n", "proba": 0.00012381936539895833} {"commit": "f03c95345d521b7b47fd36ffbf3ad7a87ca7cda7", "message": "system_vars_ados started\n", "proba": 8.117546030916856e-07} {"commit": "b3816719617f3b3a997ec09e44004788ee462b92", "message": "Moved pubnub library check before feature flag check to prevent unnecessary API requests\n", "proba": 1.5792791430158104e-07} {"commit": "abc40655eee54e6c764eacee82d46ce7198ea15a", "message": "Sort out new interface for adding elements in a draft aware manner\n", "proba": 1.771176556530918e-07} {"commit": "6b24c0dc1644aadc6c1e76a708eee691c9e420bf", "message": "splitting out the functionality\n\ninstead of repeating it, even though its basically the same anyways.\nAt least in this way you could log only the bodies if you wanted to\n", "proba": 3.256914737903571e-07} {"commit": "d1c88387a129d64488a5ca2dee56d7fac36ffbf1", "message": "Disable GCC fallback, add time logging.\n", "proba": 1.181898454660768e-07} {"commit": "3a9ad071e3d413959047db7234d8a839809ebc3e", "message": "disable fullscreen & grid keywords by default (can be used with ctrl-f,\nctrl-g)\n", "proba": 1.265665048322262e-07} {"commit": "22546366cb50eef29c8eae423f54dffb89e98e0b", "message": "Check dynamically linked libraries to find program\n\nChange-Id: Ifee878b108b1d934f4a52666a14c5b2c2d8e7fab\n", "proba": 1.1568237141545978e-06} {"commit": "017fe3e7dfc444f2ca75e89d86dedfc604a3f7ba", "message": "less initialization needed now\n", "proba": 1.6133714098032215e-07} {"commit": "deebd351b09108d95b4759b179ad84b48b6c933e", "message": "Fix typo in random-seed's help\n", "proba": 0.0025494375731796026} {"commit": "4de6d24873e90d33980dff7694397f3d3db717a4", "message": "test processEvents() happens before and after fixture teardown\n", "proba": 3.855977297462232e-07} {"commit": "de9f2b11daf28d9fc67604cdef23a6731c58bf7c", "message": "Detects unmapped (no bai) bam files and doesn't blow up\n\ngit-svn-id: 4561c0a8f080806b19201efb9525134c00b76d40@1725 348d0f76-0448-11de-a6fe-93d51630548a\n", "proba": 5.793785931018647e-07} {"commit": "42e439f2d2d23839e57068ffe86e1def213e4a81", "message": "RecurrentDecoder enhancement (#1619)\n\n* RecurrentDecoder refactor\r\n", "proba": 1.3574150159456622e-07} {"commit": "66de638a8ba67d9cf0e86cccdc8d9b9ca91d0a91", "message": "Support NHWC for LRN and batch normalization, and optimize batch normalization speed (#1936)\n\n* add LRN and LRNGrad\r\n\r\n* add LRNGrad\r\n\r\n* support bn with NHWC\r\n\r\n* support bn with NHWC\r\n\r\n* add batch norm grad\r\n\r\n* support tf bnv2/bngradv2\r\n\r\n* fix uts\r\n\r\n* fix uts\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* fix style issue\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* update python api and docs\r\n\r\n* meet code review\r\n\r\n* meet code review\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n\r\n* fix ut\r\n", "proba": 2.463031592014886e-07} {"commit": "5f3fd7a650b33e9f7418c7595218c5f1e8d95b35", "message": "gave set_power a rapid flag\n", "proba": 1.3424163398667588e-06} {"commit": "67acc01a9e59fda946e82b7b9438f577feda04ef", "message": "Add an API to get node from graph model with given name (#1871)\n\n* get node from graph\r\n\r\n* add unit test\r\n\r\n* add Graph.node api in python\r\n", "proba": 0.001988988369703293} {"commit": "caee8430ec589a9d7f321bd2f195c015cc5ca7d7", "message": "commit on 23/06/2018 at 19:44:16\n", "proba": 1.0877364786665566e-07} {"commit": "2eca98c216a590c6163c8236c392f19ddd8d85d9", "message": "update to 4.4.12\n", "proba": 2.437753892081673e-07} {"commit": "c986507b9c020a2a81a290299f7ce74748641254", "message": "update linkedinviewer\n", "proba": 3.4487118227843894e-07} {"commit": "4f5d81b48a5bb48771b82f30e3853472550ee65c", "message": "add demo about using file iterator\n", "proba": 2.1271998207339493e-07} {"commit": "c6c72152f038a30ad904dcf2ce00df94c5b4285d", "message": "Do not attempt to update with --local (#251)\n\n", "proba": 1.103924276435464e-07} {"commit": "4e6d41554127f52999be99de656e5f7d24d27928", "message": "Migrate media_player tests from coroutine to async/await (#30387)\n\n", "proba": 1.1557381895954677e-07} {"commit": "4fa387ed0ff63307a3ceba8bf266602b9264b813", "message": "Equalize token size by default in TextLoader.\n", "proba": 1.1773861530173235e-07} {"commit": "b25c4910b8c6721b9432dab9da4f1fc0100b5738", "message": "commit on 25/01/2018 at 18:53\n", "proba": 1.1112739173313457e-07} {"commit": "24046234290dae9821e0ece21a3a06664978d0a8", "message": "prevent test from running if path supports no symlinks\n", "proba": 4.644716682378203e-06} {"commit": "82616afa710e76f2e867dc2e4dff78cae2adfe9b", "message": "Revert \"Use direct diff as it fails less.\"\n\nThis reverts commit fdce6b7b6e10652fcad667cfcd59f7bc1251ef66. Using ..\nmakes diffs too big.\n", "proba": 1.567108682820617e-07} {"commit": "37617bf820edaa5a67e8891322e2870c921774eb", "message": "Use svd\n", "proba": 3.5547029710869538e-06} {"commit": "0e0c2ed894eb52127c5e8904c7ffc9ac7c675d23", "message": "fix fee2\n", "proba": 1.8486086617031106e-07} {"commit": "ef7d65875a78d93242b0d7e46c793dee9c529f60", "message": "Added tiny test, exception printing\n", "proba": 1.1990792359029e-07} {"commit": "6ba2186d7aad2f609a2197057f8404d7be30f2ac", "message": "vyos: package: bugfix in validate.py for is_subnet_connected()\n", "proba": 2.477368639119959e-07} {"commit": "a0f2e921edac34b82d3773e94ba88a1a28d296a7", "message": "Fix the expected \"Dot not know how to make\" error message.\n", "proba": 0.0005527170142158866} {"commit": "3e5b228b865e5adf141ee057bcaf1d6f28dd1ecd", "message": "Fix QR test\n", "proba": 7.836327858967707e-05} {"commit": "3b8822f3d28752588545568c2ca2a21eb94f36af", "message": "Trying to satisfy pylint... #10\n", "proba": 1.6621567056063213e-07} {"commit": "a489266f662f1b29d21d5ba3c3439c9ee88cdb4b", "message": "redirecing all old JRPV to rumoaprimeiravaga.com.br\n", "proba": 5.89682315421669e-07} {"commit": "db00a30c62b2a2703bb4531059b4f9d10f86496a", "message": "Adjust curly parser tests to reflect changes.\n", "proba": 1.1728540982858249e-07} {"commit": "3079129ba80e6062428cd034658f857ca613baef", "message": "Print arguments sent to WindNinja\n", "proba": 4.569885163618892e-07} {"commit": "93ab7511113d61126a22a3a6c970d673e27bda04", "message": "lisa.wlgen.rta: Fix with_props() examples\n\nFIX\n\nFix examples: with_props(prop_X=...) should be with_props(X=...)\n", "proba": 1.0136639502889011e-05} {"commit": "ca4821593b8e828200d2a1ca7704b3e7a3b5d9ec", "message": "Remove use of dict.fromkeys\n\nUses same object when generating a dict of dicts\n", "proba": 1.9239707853557775e-06} {"commit": "a654b2e06a37f4f86648b5f86231160f54b13502", "message": "fix int tests after crawl results metadata reorg\n", "proba": 2.2072156014019129e-07} {"commit": "b7eaf5045b5f4e6f7349e4ff5c4baad63ab6e6de", "message": "don't use atexit, causes problems.\n", "proba": 1.707738164213879e-07} {"commit": "d67842c99184304907a30d608dee601e6a751f82", "message": "Case sensitivity in game names is now optional\nThis will probably decrease how useful it is, honestly, but it's a nice thing to have.\n", "proba": 1.015044830410261e-07} {"commit": "61c693005de95557172ff78c85de2d5dc4be66f1", "message": "use N for missing nucleotides\n", "proba": 0.004823070485144854} {"commit": "9c4d3a8d5b9ad607bdb2618fbd05d91c4b2b5d0f", "message": "Accept {text} for FLAT (portaldesc, editstr default) evaluation, although\nwithout interpolation.\n", "proba": 1.0438775177590287e-07} {"commit": "6aead3bfc4ef7a0140238855e118e4017af1ab73", "message": "Change order of tests\n\ngit-svn-id: 9a050473c2aca1e14f53d73349e19b938c2cf203@6720 6a7f98fc-eeb0-4dc1-a6e2-c2c589a08aa6\n", "proba": 7.785581146890763e-06} {"commit": "68e58114919208b69a01880f52e8b8e2918a4edb", "message": "make failing ogr/shape comparison a todo\n", "proba": 3.753640612558229e-06} {"commit": "42965462daaa4598cd438147fcfb1794cfa780de", "message": "fcount -> paircount\n", "proba": 8.633998618279293e-07} {"commit": "086c5c24753858b03277f5309731d91ddbf78f0c", "message": "Use already set values on blockchain info\n", "proba": 1.4998143171851552e-07} {"commit": "df4c8daf641b3ccdb79ccbe3f1caa63a10cace18", "message": "Freezying v0.4\n", "proba": 2.8257977646717336e-07} {"commit": "da5222142edac416d070ca3298daf06595dfada9", "message": "Make -y work with node:all\n", "proba": 5.020066282668267e-07} {"commit": "71d16b97cc750844ced3fe2009b87cb28b18e8a9", "message": "Update WPSRequest.py", "proba": 5.838670631419518e-07} {"commit": "5df0c61c5b3bf044822ed89e90ba94d65c595b0a", "message": "Deleted a block of test code that got duplicated in applying a patch.\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@8320 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : a65c41358807041f5bb8378e02bf6c416260beb0\n", "proba": 6.639277853537351e-05} {"commit": "8e57bac9ca41bfcccfabc8524ddc2a8730ac4609", "message": "Update quality_score_filter.py", "proba": 2.161031488867593e-06} {"commit": "a2e5f365eed873d0b599e30f96e65288a48048d6", "message": "#236: add a test case\n", "proba": 5.25179302712786e-06} {"commit": "9307163aa70b18af32af0b0e7b17245b33569756", "message": "Stop changed\n", "proba": 5.1552715376601554e-06} {"commit": "08bd083e0a539ced11ebfbf2b8e3fcc587002899", "message": "0.4.2 Beta\n\nSigned-off-by: Don Naegely \n", "proba": 1.0931149319048927e-07} {"commit": "128d1f671fcb9dde507eeca2097c666fc60a0c13", "message": "hard coded value removed\n", "proba": 1.5841362710489193e-06} {"commit": "e7fb60cc784eee8f36b01e47145a37027142122e", "message": "[ADD] Catch for non-string\n", "proba": 6.860372650407953e-06} {"commit": "979f524276636c9f9138e3137ba51eb56599f9de", "message": "Tests for profiling\n", "proba": 2.626200341637741e-07} {"commit": "088f8bf60a1ba2e22897c3ae9bd75e65540022d8", "message": "occasionally, the MS implementation will serve a stale cert bundle\n(since GAE only guarantees eventual consistency). Retry fetching\nmissing gateway certificates a few times before giving up, to\ncompensate.\n", "proba": 1.0013017970322835e-07} {"commit": "69c7662fe5853a8ec3ca9f5295a90a09f706d0d9", "message": "Start moving to temporary file objects for temporary files instead of making the user keep track of handles & to-be-deleted files (#8)\n", "proba": 1.1390980603209755e-07} {"commit": "952b3224da2c947eefadbf6f90e67901d57a6313", "message": "alter ListOverwritePrevention class to allow overwriting a hookedup.List property IFF it's the same object. This allows in-place operations iadd and imul (+= and *=) to work as expected. (They technically modify the object itself before returning it, so even if we prevented setting the attribute, the object would already be modified\n", "proba": 6.919535167071444e-07} {"commit": "745e193afebaa6a1933bd6e53c13ca35967c67a6", "message": "test action visibility\n", "proba": 3.159010759645753e-07} {"commit": "197903ffe1c4f649bc89d059d1503b10dec9b0cc", "message": "Updating dm repeater plot\n", "proba": 2.523242415009008e-07} {"commit": "5a686896a3814c6713a8d6952aabe699e69e8ff2", "message": "Unused import\n", "proba": 1.3214352065915591e-06} {"commit": "4e64f0dd597eb1971558be0f23ea8a1d2dbfe6d2", "message": "Improving TestTotalRequestsValidator\n\nAdded test_get_js_requests and test_get_total_size_js\n", "proba": 6.033841941643914e-07} {"commit": "f16fe2a00e9fad1eec8743baf0334db3afc52562", "message": "Rimosso script non necessario", "proba": 5.3151838983467314e-06} {"commit": "e7eb9f3e10128fc368a31e4a1aa8db300cd87bae", "message": "Completed methods koan\n", "proba": 3.3591851433811826e-07} {"commit": "bb2e9f8552b9a02d97273cd85807baec892d32d1", "message": "Manage default editor group on a single page\n", "proba": 3.1334707273344975e-07} {"commit": "0f52842f7dc8d9b2d126adc51b9ce9d5b6a5fe49", "message": "Layout update, css3 link\n", "proba": 1.8900574616509402e-07} {"commit": "f0c31c9de4058f86cf6e8efd314d922f37629ed3", "message": "completed 15 Koans\n", "proba": 1.30491542904565e-07} {"commit": "fa2c69bf4399f3a96505fe33050433f275ff6e0b", "message": "Bump version to 0.0.3\n", "proba": 7.117471909623418e-07} {"commit": "0c454d217e0a5de05455f373ee004ddc61155c62", "message": "removed comment\n", "proba": 1.98248855554084e-07} {"commit": "e4f0fb990f74caf63f33b833eea53f09904b707d", "message": "UserTest.test_add_reminder now asserts that an exception is raised as the feature is premium only.\n", "proba": 9.995500960258141e-08} {"commit": "37a3440d92d48a1f05f0020ef91f9d3ae28a1f88", "message": "added the gtest\n", "proba": 1.6955993942247005e-07} {"commit": "417e701dcbe6bbb5810be6d24b631f2126e14e18", "message": "tidy up imports", "proba": 9.85589736046677e-07} {"commit": "49b1fb5b0c3fc2dd4fdd1eb5f0ebeed06793e795", "message": "Added docstrings according to flake8\n", "proba": 1.2925102055305615e-07} {"commit": "e28519e3ba9cdabeee0b2970a96d4267a1d99c0b", "message": "peek() now calls show() only when an interactive Matplotlib backend is being used\n", "proba": 1.2588972708726942e-07} {"commit": "c0ce81109def9cbc93fa1cda8258e05ca38595f8", "message": "Use newest mac checksum for stamp/prefix\n", "proba": 1.945282548376781e-07} {"commit": "66f3017a0bcb8eeb927099f1b90a8d61ef471c1e", "message": "calfits nose --> pytest\n\n", "proba": 3.0905709991202457e-07} {"commit": "24e00096d965a978e45ccacfc2d599bcf9b4c863", "message": "Fix rotate() after WCS changes\n", "proba": 3.327095612348785e-07} {"commit": "71f991d88fc115d53fd156f3788525e35fcf405e", "message": "Remove dispatch_meta from Payload signature\n", "proba": 3.8687920778102125e-07} {"commit": "bbb911c8d4f512c598451dd8361ac3f64ac9d79b", "message": "Add the diagnosis date.\n", "proba": 0.00022072900901548564} {"commit": "41d39799f297f8701d7b26efca1e27418eee32bf", "message": "Add a FieldHelper (subclassed from defaultdict) to allow for Comp type generation with in-band type values.\n", "proba": 1.0339795153413434e-07} {"commit": "8b9eebee2e85090acd8e9a3e6d3dd773d0925a74", "message": "Add IDS call getIcatUrl introduced with 1.4.0.\n", "proba": 1.0637070602115273e-07} {"commit": "2978f6a8615e748b3f3127c2c97c225bba6abd59", "message": "Geocache: Deal with XMLs not named after objects\n", "proba": 1.8354300834744208e-07} {"commit": "39356cbdbbfe1259b6ad69fd1c04602a25b1403b", "message": "Camcache: Quick referencing\n", "proba": 1.551263721921714e-07} {"commit": "8fde01bb4163d65ec33f6c5ccbc16ad413e74e45", "message": "Added more verbose logging and parameter parsing. Also stubbed out a method to generate LDS.org text urls\n", "proba": 1.7373811544985074e-07} {"commit": "dc69579641b5b5fa525d5091318427f1a7b61723", "message": "fix: SCM_SETTINGS env\n", "proba": 4.54521068604663e-05} {"commit": "20bde08031cd1f9efeb4f98c6e3a1ec9633b9241", "message": "Fixed crash error when running in distributed mode and using gevent 1.0\n", "proba": 1.5597341018747102e-07} {"commit": "87174823f62d61d135dedcdc387792c18d7888e5", "message": "Debugging user fields are not correctly accessed in request.user in IsCreateByAdminOrSuper.\n", "proba": 1.1696293711338512e-07} {"commit": "4cc8c1c5e7cc2696300660fc733de364ff1716c7", "message": "Fixed misnamed attribute\n", "proba": 2.1209175429248717e-06} {"commit": "bf0ad63034faff5d56fe4a86e022ebfed163b86b", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "c28f48ffd63ad3f4247d100452cfcaad86517877", "message": "Changing priority in the isi clearers.\n", "proba": 1.369454167843287e-07} {"commit": "e6aa09168a49ea84fbbe5c389fd7c6726e1a5b13", "message": "Port new urls scheme\n", "proba": 4.4983707425672037e-07} {"commit": "37efd56974cd912613facf37e42df300b41c3164", "message": "oooh, progressive drawing!\n", "proba": 1.1429381174821174e-07} {"commit": "d682fc3a28724428037ed21a8631fc561b26c2d1", "message": "signature change sin get_ldap_group_members\n", "proba": 1.07742937416333e-06} {"commit": "40ff34b290c79bc304e49bfd3d9b78e502d1f975", "message": "Dispatch file reservation changes\n\n", "proba": 2.995538466166181e-07} {"commit": "607953c9f475cdfefe14343518804032e53a1c54", "message": "Correctly use logger.error instead of logger.exception for the error message.", "proba": 1.4089773969772068e-07} {"commit": "89873285b2d2517741fbdffece1c9304be33dda5", "message": "Small bugfix\n", "proba": 3.6653622714766243e-07} {"commit": "176d819559e01125c6fe2a34c86cb47c62f49b27", "message": "Move server comms to OpenSSL.\n", "proba": 1.4880333765177056e-07} {"commit": "f9df581bf6c6edb5e236d400ad02e046414b6b3e", "message": "Implement most of what we need.\n\nTODO: Tests\nTODO: Wrapper scripts for shell programs", "proba": 2.1671177819371223e-05} {"commit": "be1c89f107bb569fce9372c2bc051da84e875192", "message": "chore: Update exception log message\n", "proba": 1.9662370505102444e-06} {"commit": "09cf08e76b056d3473ce83e2a574e32b232197a6", "message": "Speed up regex matching (#11)\n\n", "proba": 5.098759629618144e-06} {"commit": "2304dcf3ebf189d7c3b1a00211a288e359c4cbb5", "message": "chore: Rename signals for consistency\n", "proba": 1.110842185880756e-05} {"commit": "0f5449e1095ed6a18b8279fff67e35108c42e729", "message": "fix bug 1198788 - Handle {{xref_cssstring}}\n", "proba": 2.387158701822045e-07} {"commit": "b58dcf4ce81b234de6701468296f4185ed63a8e2", "message": "Add filters to the admin interface\n", "proba": 4.7283813842113886e-07} {"commit": "719ee03d757bd85b6cd3c682823b7063df48dc05", "message": "It turns out the voting record wasn't useful\n\nThe governance is full of inconsequential housekeeping patches and most\nof the controversial things don't even make it to a real vote in gerrit.\n", "proba": 1.5038173728498805e-07} {"commit": "bfb0028e2a59615233c9c1f8a07b2b1a0e8016d9", "message": "Fixed end_to_end_test.py", "proba": 6.239954927877989e-06} {"commit": "96253069c173bd272b5e0907866d0b26327e9eb4", "message": "python routine removed. all seemed to go well.\n", "proba": 1.5365151284640888e-07} {"commit": "e2e9b905073511d7ba009e19e1b12d4d4f5a6872", "message": "Support of CPS4\n", "proba": 1.4016210059253353e-07} {"commit": "7d77ad80bffd1dbd82ba455e22e60cfb448da9e4", "message": "freq of a and c are the same\n", "proba": 0.00017539500549901277} {"commit": "2f348908d3aadef993747dc461b62eaadd114ace", "message": "Fix to job_unitest to leave the kvs in a more consistent state\n\n\nFormer-commit-id: 4e8be09d5646cb7fc538d36628c63d2b7247a5c7", "proba": 7.67703604651615e-05} {"commit": "7d1b98389e1185de7c65dbdd984dadfb5525c2c0", "message": "pep8\n\n\nFormer-commit-id: b95cb46a003d93ee654136f01e8664cb26ce16e6", "proba": 1.121858872465964e-06} {"commit": "190ffd06e7693e4e8073abb4132ae33096d1222c", "message": "Remove unused load (#2936)\n\n", "proba": 1.5353096216585982e-07} {"commit": "b48e42013d1375ea08bc9400702a0505351a7d7d", "message": "Cleanup unused code\n", "proba": 6.254678623918153e-07} {"commit": "ac2a1bc779ffff2ddd42a8e98ed6eb8c61251ee9", "message": "Bugfix pyjslib.sprintf\n\nPotentially problem with minlen === undefined\n", "proba": 8.290480195682903e-07} {"commit": "1acad641dec11bef63423e64169f3ead359616a1", "message": "test_optional_args was not being tested\n", "proba": 4.13616771766101e-06} {"commit": "1260a29950b33be26e8e00d9aa5502d17c64327b", "message": "ubuntu only\n", "proba": 3.737451947927184e-07} {"commit": "7929d84ba97edb016d8cccaa7549d84b44a916a1", "message": "minor tamper_integration_tests.py refactoring\n", "proba": 5.960975499874621e-07} {"commit": "0864dac7c541e74724b97fb858bff60340736384", "message": "Fixed reference of contact object for admin\n\nThere was no import of the contact model to be referenced in the admin.\n", "proba": 1.0843351816447466e-07} {"commit": "bf92fc3ae20f8dc3de1637b39906c7765c3e9f41", "message": "chore: short circuit\n\n[ci skip]\n", "proba": 4.476358299143612e-06} {"commit": "97560f9849df73b15ed7c749568c05a525ca32f6", "message": "removed the recently introduced global vars from visit()\n", "proba": 1.0599421074175552e-07} {"commit": "2603ba6f79535a64d72ceddc42979f1cd226f3ee", "message": "added Metagene and MetageneError classes\n", "proba": 1.7034537336257927e-07} {"commit": "2eb617eff6db11f617400a316c0add8efb31fe82", "message": "Fixes Python 2.6 compatability.\n", "proba": 1.7823411724293692e-07} {"commit": "afd9aee812bef6603c06b9429e9ea45fa5b0e96c", "message": "graphs for guava caches\n", "proba": 2.1564248697814037e-07} {"commit": "44c11ca2a9e750c083753eade575d77ddfe42177", "message": "MNT: Avoid using name of built-in.\n", "proba": 5.842146038048668e-07} {"commit": "72c1ca89f4d4a1bf646c6d18f779054a82674700", "message": "Test (iterindex_reset).\n", "proba": 1.364657720159812e-07} {"commit": "bd9efa11dca90c8ceea3cc49327d5e1c1a47c423", "message": "Skip image generation tests\n", "proba": 2.2989220838098845e-07} {"commit": "9f44df74ebac632af8896d7002724da89c6dcb9b", "message": "Moved meta messages to midifiles_meta.py and cleaned up MidiFile.play().\n", "proba": 1.0842876463357243e-07} {"commit": "09584946fbea0b8e6ddacc4426e61e0477f96a32", "message": ":white_check_mark: fix test_callbacks_generating_children\n\n", "proba": 8.933457138482481e-06} {"commit": "f2596d6788b5893f6fc56325ec12ff3a6e20f2d1", "message": "implement/fix build-id based image-matching\n", "proba": 6.543779704770714e-07} {"commit": "e4af0228c2e8537aa5f4c484f80f6d5487e64f1c", "message": "Dropped setUp()\n", "proba": 2.8099077553633833e-07} {"commit": "55ad269b70232c13993304605f3253a354cfc8a4", "message": "added CQT and midi axis tickers\n", "proba": 1.3893587436086818e-07} {"commit": "b52e8e9783baa5d8b2a5bf765d0556011b6dd4a8", "message": "A more proper blob tool\n", "proba": 1.026237805490382e-05} {"commit": "04827faddbb94d2b152d3c8db4eb986b1788829f", "message": "Add cleanup to subdispatch\n", "proba": 2.9584609251287475e-07} {"commit": "997a95560ef2126e778a73813082030e83155565", "message": "trim ISTFT to (len(y)/rate) coefficients\n", "proba": 1.0481585377419833e-06} {"commit": "63f63d361acf31f563bd085b63b177c7ac5a9687", "message": "wrap score with float()\n", "proba": 3.9373094296024647e-07} {"commit": "feb9340273ef5122226b324fad3ac8649a5809ff", "message": "a bit fix proxy\n", "proba": 2.0099629693959287e-07} {"commit": "9af9e4bc746f1c652058983edcfb19b5851ec9ba", "message": "chore(core, strings) Rename duplicate test functions.\n", "proba": 1.267285938411078e-07} {"commit": "5c8e12cf118ffbb0eb8e1a8c6fc4fe5a66ff52d2", "message": "docstring audit for feature\n", "proba": 1.8805945956046344e-07} {"commit": "39a6bca741bce664ab88a8e65c744799aa2315b6", "message": "making queue directory creation thread-safe\n", "proba": 3.3824690603978524e-07} {"commit": "629e90768667709f657f75a0326a32ecb1fc419a", "message": "added a car class\n", "proba": 4.37536982644815e-07} {"commit": "cba218d658d3feb5b0953edd44db7f88bd728077", "message": "Add is_default and user current bar id\n", "proba": 1.3104504432703834e-06} {"commit": "c404ffb8d3c48bfdf36757cee33315b4f50751b4", "message": "avoided complain\n", "proba": 2.4153721369657433e-06} {"commit": "0b9743ec6280805db9f0e24848fc25696811e08c", "message": "Improving commentary.\n", "proba": 3.8882367903170234e-07} {"commit": "860c033041a22ac05e1322c3ba657a123cb95f8c", "message": "added features to feature.py\n", "proba": 2.222616473090966e-07} {"commit": "4a1bdb54796295a32f54484de1a6ebc33a6998a1", "message": "need to update\n", "proba": 2.7781989047070965e-06} {"commit": "9a46c614894270b00f4dbc0b6b1f72fa5fb20379", "message": "Add unicode encoding\n", "proba": 0.9999974966049194} {"commit": "a6d037609d659a237783a3504e7090066a02fa76", "message": "make metaval have more elasticity\n", "proba": 1.1236652426305227e-06} {"commit": "41b08d1f4944842859d37e65c091db5f16158ee1", "message": "feita paraleliza\u00e7\u00e3o da busca de twitter\n", "proba": 3.3795123499658075e-07} {"commit": "e79d2db1cce2c54e1da8c85c37660e407cfe1d6d", "message": "Added isexecutable function\n", "proba": 5.517545105249155e-07} {"commit": "4ea4f12fe589d44b2f27f6e8a645f463b15d146a", "message": "Use raw_id_fields for TeamMembership inline to avoid select field with *all* users.\n", "proba": 1.0132420413810905e-07} {"commit": "77554b4a3fee06d91ead903ef4312816cf3436fb", "message": "Codestyle changes in path\n", "proba": 2.828588492320705e-07} {"commit": "c91fa4302bc324cbf009bb30730082f0273df97b", "message": "CA-142451: Unit tests\n\nCovering changes related to CA-142451.\n\nSigned-off-by: Flavien Quesnel \nReviewed-by: Mate Lakat \nImported-by: Thanos Makatos \n\n(cherry picked from commit 2ddae13dad02850e8a8295baea3cf80c05431cd1)\n", "proba": 1.2578915686844994e-07} {"commit": "31a26f259523346d6860dcddeec87e5b4fa27ac1", "message": "[clone_scanner] Bugfix: forgot to actually define the version\n", "proba": 2.102980687368472e-07} {"commit": "d653d4a18ab6b9fcadf7b8d5f40570a5b667f1ca", "message": "fix bootable CentOS 7 efi by using grub2-efi\n\nFirst of all the `systemd-udev` package does not exist in the CentOS 7\nrepository and thus will cause the `dnf` step to always fail.\n\nThe `bootctl` / `systemd-boot` feature in CentOS 7 is very broken and\ndoes not work.\nTo create bootable CentOS 7 EFI images, this commit switches to\n`grub2-efi`.\n\nFurthermore it will fail early if unified kernel images were not\nexplicitly disabled via the commandline switch. They are simply not\nsupported by grub.\n\nThere are some quirks when an EFI image is being built on a non-EFI\nsystem, since grub2 will check for existence of `/sys/firmware/efi` and\nonly create an efi-compatible boot config if that directory exists.\nOtherwise it will generate 16bit `linux16` and `initrd16` boot\nentries, which are obviously incorrect. This is subsequently fixed\nby patching the generated file.\n\nAlso the `grub2-efi` setup requires a more ellaborate nspawn setup,\njust like `clr-boot-manager`\n", "proba": 2.7947334046984906e-07} {"commit": "b08ad19fe02368a4d8266d9bb108e406aa07c249", "message": "emulate callbacks\n", "proba": 2.7028697786590783e-06} {"commit": "3de367aa7db21008dfa938ea091629e86d0a4538", "message": "Speed up slowest test by doing half the work (assuming symmetry)\n", "proba": 3.1739421046950156e-06} {"commit": "a5e89bcd00ec3939cfb1a25ec0616ff36133e6ff", "message": "small pylint fix\n", "proba": 4.3748983102886996e-07} {"commit": "c034fd657e96f9a2f4c19aee6e44bc894e3979f6", "message": "Remove unnecessary WAFWOOF object initialisation when listing WAFs", "proba": 6.50286949621659e-07} {"commit": "7524fef13a33375c1b9c352875e76d70c9807b30", "message": "Add win32 into the list of supported platforms of Dart SDK (#3)\n\n", "proba": 1.252488175396138e-07} {"commit": "7829ce8711860b715372c8ea24fe4a4f8221d243", "message": "Substantial refactoring of BusClient.listen_for_events() into _EventListener\n", "proba": 1.5849144574531238e-06} {"commit": "9244e1dcdc056a7e9c457222a858a852a7965078", "message": "Debian: ensure efivars.ko is installed if uefi is used\n\nWhen --hostonly is used, efivars.ko is missing and thus the bootloader\ncannot get the UUID of the EFI partition and fails to pivot root.\nSpecify it manually with add_drivers+=efivarfs if building for Debian\nwith EFI.\n\nFixes https://github.com/systemd/mkosi/issues/562\n", "proba": 1.2622023177755182e-06} {"commit": "ee4af9ad45acd3bafcb6ead2226b9435bbed0d45", "message": "Update rasa_nlu/data_router.py\n\nCo-Authored-By: tmbo <96835dd8bfa718bd6447ccc87af89ae1675daeca@rasa.com>", "proba": 1.3346304683636845e-07} {"commit": "37f9d51dc1ae9305cb6dd52c163775e0f42129ad", "message": "forgot to add in return in last commit\n", "proba": 1.9407907814184e-07} {"commit": "847fc43b572384f8afcd395ada275b053e24a193", "message": "Fix aiohttp test\n", "proba": 8.588882337789983e-06} {"commit": "ab858a770a5a6f1a3565fb1c006b9a36b968cff0", "message": "Fix test case to kill a job without permission\n", "proba": 6.970434696995653e-06} {"commit": "b1b76128573ff597ce5c5de2f4d04a962c266d7b", "message": "test: numpytest now uses the current python interpreter\n", "proba": 2.3865652565291384e-06} {"commit": "662fa7d8a502b6a4f6b82dd4c2d264bbc45c2815", "message": "fixed bug in custom logger where calling super() on old-style class throws exception.\n", "proba": 1.0562186503193516e-07} {"commit": "9a947f172a4c9e770011543ec90461300d33eb17", "message": "corrected kinox link\n", "proba": 2.0340826267783996e-07} {"commit": "e96418c225f77b8ece1d1b5ddacce1fd49cf42ab", "message": "Write training TF graph to dir in Executor\n\nPiperOrigin-RevId: 334945700\n", "proba": 1.7870097224204073e-07} {"commit": "61969ac21d7eda1162cdedd3f066aa8e396fb5ba", "message": "Fix test output\n", "proba": 0.9887551069259644} {"commit": "296787a0ecf4f61e710c51ba6d3e11d08c4efedf", "message": "extends tests amodel\n", "proba": 5.509164111572318e-07} {"commit": "29fe7454ad042bf937ab9ecc21cf81ab459e7084", "message": "handle feed items in ES that don't have feed element data (bug 1088001)\n", "proba": 1.0776672354495531e-07} {"commit": "7821500c11c6a52bb550b3e97e2cd65006c5a275", "message": "Add missing counter definitions\n", "proba": 0.0002672791015356779} {"commit": "44ce9fbb63a2b764e759c63b3bd6f20d2e506a5c", "message": "Use from-import for ykman.descriptor\n", "proba": 3.292849442004808e-07} {"commit": "78c6e2fcfe7501acbe780fd526af1b473799697a", "message": "Added api call to check the existence of an entry\n", "proba": 1.371086426615875e-07} {"commit": "902ca1caf503a7e394f9f69ad6225b38967ce8cc", "message": "Exclude also sub dirs of .svn and .git dirs", "proba": 3.522592351146159e-07} {"commit": "cf3762369ce98a5d9f8e6b992c81fe7408f02f7f", "message": "dyninst: use spack libiberty path (#25779)\n\n", "proba": 1.093663399842626e-07} {"commit": "8b6cbdbae4dedfbbf025a7ecb20c7d7b3959ed11", "message": "support to overwrite position in border\n", "proba": 4.4445644675761287e-07} {"commit": "6843ebfa674c4508fddf866f385e4c83876be28f", "message": "Fix calculation of directory service call timings\n\n\ngit-svn-id: 0c33e958600270102f91bf5868e396345dde476c@13632 e27351fd-9f3e-4f54-a53b-843176b1656c\n", "proba": 0.004919241648167372} {"commit": "ba155616ddea8e183070aaf5e108d1217ba72a25", "message": "fixed bug in draw_grid\n", "proba": 4.3534558358260256e-07} {"commit": "30fa09c049476ec2aa17811a0521420fca8cae49", "message": "Fix ytick regression (#6944)\n\n* fix ytick locations\r\n\r\n* fix behavior of show_names\r\n\r\n* fix horizontal truncation of imshow\r\n\r\n* simpler logic; single quotes\r\n", "proba": 1.3915891372562328e-07} {"commit": "22705ee15a2777ea23091380456eceada9f5a9f3", "message": "#2347 : Remove dependency_links from Lino.\n", "proba": 1.052365803388966e-07} {"commit": "00fe243e9c39193c2c392b2d38619358bec4c39a", "message": "tests/bugfix: Fix and clean up copied example checks (#23276)\n\n", "proba": 1.0099830660692533e-07} {"commit": "59296d5141dca56b4aea0ed866c0227c2bea95e8", "message": "Removendo testes desatualizados\n", "proba": 8.254969543486368e-07} {"commit": "d5167ac5783d3064af0864a5aea306a310473aba", "message": "Fix draw_grid and submap (a bit)\n\nStill seems to be some issues with submap\n", "proba": 1.2664824566854804e-07} {"commit": "c0f71304243dbf628ea647ade9be70d8e23664a0", "message": "fixed rdfpipe so that input RDF documents can take input from all kinds of URLs. So you can point it at HTTP URLs, for instance\n\ngit-svn-id: 60eb48102d1ca0c284ab3654bef916b01e1b221b@1087 4f84a9ca-5c3e-0410-8a68-0bdf370325d5\n", "proba": 7.280537101905793e-05} {"commit": "08e814db57889a99fa298a2ba2c54ace2e336260", "message": "Fixed missing return\n", "proba": 8.977303309620766e-07} {"commit": "cc8a397becce7258ba89f9d9798ea1c6b2eff4a9", "message": "Few more array test cases (from Barry)\n\n\ngit-svn-id: f6f47f0a6375c1440c859a5b92b3b3fbb75bb58e@3812 afdca40c-03d6-0310-8ede-e9f093b21075\n", "proba": 4.247973265592009e-06} {"commit": "82918552ee5eb37944408f0cd454f13f3df4e810", "message": "Handle Python 2 differences in set handling\n", "proba": 6.337206173157028e-07} {"commit": "1203b8d29f1c98ee0f502339b4aff81166708475", "message": "list-public-ips.py: run on delegates 1-40\n\nSigned-off-by: Nathan Cutler \n", "proba": 1.206713591273001e-07} {"commit": "0c9724a68b36b9b703777160a7c4b68b35431eef", "message": "update to vso show time format\n", "proba": 1.583147053452194e-07} {"commit": "ec6b891d60e371633656f516f5fed7ed52180b61", "message": "RDR-1181 default name for forms list is 'Modules\"\n", "proba": 1.400306359755632e-07} {"commit": "f0b7eea8a603e331be6db71beb2766d022dacb23", "message": "Refactor the method who check for changes in user agent\n", "proba": 9.752201549417805e-06} {"commit": "ccb083422deb85e238e5fd29b1aa128292c9906d", "message": "fix syntax error\n", "proba": 2.7736614356399514e-06} {"commit": "21131498dba6db23d24f6c95d103285610eb2a22", "message": "refine progress bar width\n", "proba": 3.475436415101285e-06} {"commit": "452a693aab98e6eaefe4a0ce078e4c2ef9c08e7e", "message": "Add more ReFrame versions (#27728)\n\n", "proba": 1.0263087801831716e-07} {"commit": "a444fdd9bece1c919a9525210399ea4bf21353f2", "message": "Did that\n", "proba": 0.0243805181235075} {"commit": "29c9278357c617e474ed5c8258cfe6fce52a54eb", "message": "fixed failures with empty lines\n", "proba": 3.1546624086331576e-06} {"commit": "886e072f1da0103dd17e04f9e142e9a8c4a3cc84", "message": "unifyfs depends on openssl (#15258)\n\n", "proba": 1.1339853500658137e-07} {"commit": "a6dfaf911dc9bfc0b918aead7a6a4629928577a6", "message": "Updates to SunSpec data record processing.\n", "proba": 1.1090780560607527e-07} {"commit": "0f76ceddc27775f510c05022422efe8799aa4905", "message": "fixing arg order to glob\n", "proba": 0.00022740778513252735} {"commit": "b63c4c3295f5351eb8731618c9a26f7b77317a69", "message": "Remove amotor and lmotor from non-Ball joints.\n", "proba": 1.3908594098666072e-07} {"commit": "98b2b0455a2fe4f0a4af677123fd244a16d10756", "message": "Update object formatting example text", "proba": 4.828827968594851e-07} {"commit": "b48c16ee0c4b81c6f44e76a0ecb1d542827538b8", "message": "using single config and scanId for all subscans\n", "proba": 1.295695568614974e-07} {"commit": "8c84eb943776c6ea28026a642729459f2c56d242", "message": "arreglo en el error\n", "proba": 7.008308671174746e-07} {"commit": "f2f73df8c4beaeb18754d4479b84e4e467cd80e8", "message": "added mean, median, and max options; added matrix calculation function\n", "proba": 3.531054630911967e-07} {"commit": "cfac614977b54318dbb8f7dbc7696d94b82773c2", "message": "Save the ResultScore in a more logical manner\n", "proba": 9.88126248557819e-06} {"commit": "e87954b4a9340ef2cad48834bed60668c0e6aa03", "message": "Forgot this one\n", "proba": 1.4296800543434074e-07} {"commit": "bc0e021246b53fbb5077008bb8daef01c6945322", "message": "typo for turbidity colormap\n", "proba": 8.641189879199374e-07} {"commit": "2c8dd80a880e5c21e27f32816e8d44d40ae8d7a8", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "8303d6033db092d52d69e2c7075f48f2cbfbffae", "message": "release: 0.8.1a2\n", "proba": 5.575061550189275e-07} {"commit": "dfcada67c7febbff4648617b838e412f57e3937d", "message": "Parse links and images separately\n\nContinuation of 508fdd88fa21573163f140932fe0e55158b92745, this commit aims to try and parse and tags separately in source, instead of using regexp to do it.\n", "proba": 1.0062719724146518e-07} {"commit": "ac646ae90bcf26ac2bcc586e64008ca9907a4dac", "message": "Main Classification Program", "proba": 2.470854099101416e-07} {"commit": "2b7d52369206f6a6b9f0ceb4afe28e73e652e806", "message": "Fix typo s/router/route\n", "proba": 0.9999754428863525} {"commit": "69194d0220a323f5166edc0751f8ad81bc69ce54", "message": "Movendo o null_command para dentro do input e renomeando para no_command.\n", "proba": 2.2085653483827627e-07} {"commit": "b00cb35f21eec06da391b1513065eddb7fb903d0", "message": "The rule plus must be an integer\n\nThe root cause is simple:\nin python 2:\n\n >>> 24/7\n 3\n\nwhile in python3\n\n >>> 24/7\n 3.4285714285714284\n\nSo we just need to always convert to an int so that it works for both\npy2 and py3.\n\nFixes https://github.com/dateutil/dateutil/issues/145\nFixes https://github.com/eventable/vobject/issues/10\nFixes https://github.com/eventable/vobject/pull/11\n", "proba": 0.9999985694885254} {"commit": "ff467a56e0628bc44554f27aa0987eed98c63a16", "message": "Revert \"set cookie domain\"\n\nThis reverts commit 6cea6331493ecad92c9e2ba6c76e38cca6e82adf.\n", "proba": 1.2151924977388262e-07} {"commit": "e01e55ab12bfad3b10de7126ec2b2d1d8ce9dbae", "message": "Adding second test for order().\n", "proba": 2.559255563028273e-07} {"commit": "492b78f4cda9d20b41c4137b66e9f9d8f7dd3169", "message": "Made all duration and relative time measurement values float seconds.\n\nSome of these measurements returned time deltas before the changes.", "proba": 1.0842400399724283e-07} {"commit": "3cccea01075466b71d93aec616c639c6d5016b23", "message": "add new column\n", "proba": 6.765827856725082e-05} {"commit": "facc8bf385894a5ac53ea4b4525d69743cbedc76", "message": "sbml py3 syntax bug\n", "proba": 4.1434498143644305e-07} {"commit": "8ac0e420756bffceb07394853a44b00a0a1f7e71", "message": "print() function\n\nuntested, should work", "proba": 0.00011256948346272111} {"commit": "4a17e5b64af2afb92e28f29d7e308deec4b2a1f0", "message": "a few comments\n", "proba": 2.257772564462357e-07} {"commit": "bcd27b49242a1b20c94f5b617d3adb43578da19b", "message": "coding-style fix in webui.py\n", "proba": 6.068113975743472e-07} {"commit": "cc78aef74876049a4548398133bad64e405351de", "message": "Remove redundant parameters from wagtailuserbar tag; trigger a DeprecationWarning if people are still passing a css path\n", "proba": 2.0081773755009635e-07} {"commit": "80c98599efcd008f5a70c38762a8a16df78ccd82", "message": "Fixed old product.uom to uom.uom in update stock from ML to Odoo\n", "proba": 1.2520726500042656e-07} {"commit": "e31a18540b27b8cb887192989ff302fd841d8421", "message": "test_Exceptions: also test PC/SC excptions\n", "proba": 6.341637686091417e-07} {"commit": "5d4dd4900c622770551148db43d880522d980341", "message": "Clean up\n", "proba": 1.531641828478314e-06} {"commit": "42162048981e26aecb942ca936de86dc1dd82041", "message": "Fix #23 actors.Worker identity sent on polling for activity task\n", "proba": 1.2045957475947944e-07} {"commit": "6daef03836442b19229f00923dfa32f6276d5a1e", "message": "Fija fecha certificado no requerida\n", "proba": 1.8617998875924968e-06} {"commit": "153f7b28e5b4763dd41f95b4840dcf56d9895393", "message": "Update bot.py", "proba": 8.046137054407154e-07} {"commit": "761329a176da16f435b5e94d5e5f4a2d4ef1d574", "message": "Upgrade 1X.Y.21.49, update local stock\n", "proba": 1.16892238111177e-07} {"commit": "0cc4c59db7910e7e5addf7f9a87fea7ab0805353", "message": " Skipping broken acceptance test for now, so we're back to green again.\n", "proba": 1.1045919734442577e-07} {"commit": "47148674264dd4b07ff396f3481bbba203937491", "message": "Updated HEAD and ACL calls to objects to work correctly\n", "proba": 1.5363495720066567e-07} {"commit": "eb83a6248ca8d705754a358e29b0da97c851b5ef", "message": "new learning rate\n", "proba": 7.447311531905143e-07} {"commit": "da8d3a7511461cdc27b2429981d71c01d5f78754", "message": "Cleaning.\n", "proba": 1.114633732868242e-06} {"commit": "7edb3e86b629221df167c1fecfcdf11d250b39a0", "message": "make token runner a callable function.", "proba": 2.2600690385843336e-07} {"commit": "36857328827ef249334c97bd770007d4e588567c", "message": "clean up\n", "proba": 1.0365005209678202e-06} {"commit": "f53f4da20d3cc439f2d0ffaa789bb214dbf9d5b0", "message": "points_taken is now a Value, not an int\n", "proba": 3.366947566973977e-05} {"commit": "6fa51129ffed93a6f10859e0b91ceab65601bdb9", "message": "Code for POSTing vendor.html popup.\n", "proba": 1.1468787164403693e-07} {"commit": "32906d41b9f9a56c69da49a896cff61cdf88ea94", "message": "Add comments to explain complex logic in dispatch\n\n", "proba": 3.1629599561711075e-07} {"commit": "0ca3267b5253c7658cf5a499d6681e292c14c8aa", "message": "Usa filtro en la vista\n", "proba": 4.278965661796974e-07} {"commit": "94cc0b5e5af96c8dc38db0c32d273ec2fad47428", "message": "Some progress on SWORD update\n", "proba": 1.5971242817158782e-07} {"commit": "4b3b780d16b97daacdf6d51655dd5346d4769cb4", "message": "fixed indent and running the new code\n", "proba": 3.358089770699735e-07} {"commit": "44db61941401be8f2d7b89a237117ba8e1a9f200", "message": "slight fixes so that post data is always loaded into the form, if appropriate\n\ngit-svn-id: c74d769ecf1bfbf057d3f10521a721e84271ea06@756 ef98d105-df06-0410-9ba4-9cf3429d62c9\n", "proba": 6.368271442624973e-06} {"commit": "3c703c2c1ef3ade6ec4864e1ac83d061633bbe1c", "message": "Parallel background building\n", "proba": 3.309831981823663e-07} {"commit": "a0360e205a4fb45f58fbde34d5808554bb2ff60a", "message": "Small perf improvement in dispatch\n\n- Reduce size of users generator\n- Do not copy users_on_workers if not needed\n- Optimize _fast_users_on_workers_copy\n", "proba": 9.661387139203725e-07} {"commit": "f811fcd0c85f0044d2ccac19e107d192ab745858", "message": "Provide completion for supported comics\n", "proba": 7.028274353615416e-07} {"commit": "4355141231b4164e03b8c9d6910c7b555070fb8b", "message": "fixed plot style issues\n", "proba": 3.246860558192566e-07} {"commit": "f00b9f1a0852fc4a9dfde3fcede55919afc5aad8", "message": "Comments\n", "proba": 4.2012280232484045e-07} {"commit": "27f3a15358fb094b967fb8e4ca173edb6a94b73c", "message": "\"Merge pull request #381 from john2x/fix-tests\\n\\nFix unit tests\"\n", "proba": 1.0631350733092404e-07} {"commit": "db305d69c401dcf8176f793165028ed78445f6e7", "message": "Prevent an invalid troop id being used in some cases of admins switching back from godlike.\n", "proba": 1.0805301542404777e-07} {"commit": "80a30b0a85d29e989d25d593447f73ca6e628554", "message": "Cleanup Local in app.py before exit\n", "proba": 1.9927624350657425e-07} {"commit": "e9d18db1032be30b9d4bcebc2f73bf13e7de55a5", "message": "Ensures that the database name provided by the regolithrc.json file matches the list of databases available on the cluster\n", "proba": 2.857044023585331e-07} {"commit": "19fea9513f8b5941f7721cd51dc91efba1ace5e6", "message": "changed to Multiauth for Environment, changed authentication/authorisation for ResultBundleResource\n\n - Environment now has the same Authentication/Authorization as all other ModelResources\n - Added same Authentication and Authorization to ResultBundleResource. Warning:\n Authorisation is not fully implemented yet! The old test will still pass.\n\nChange-Id: I2eb663296be172924c354061e80ac24841f716b2\n", "proba": 2.1967849761495017e-07} {"commit": "2174981ec685010d1aabcb9e53c0f89eb1e36120", "message": "Makes the janitor use the correct id so it doesn't delete literally every working directory...\n", "proba": 1.054145712942045e-07} {"commit": "bfcecced97aff8823ec14a706c4dce766f923b51", "message": "remove underscores from RL1/2 CTR1/2/3/4\n", "proba": 0.9999904632568359} {"commit": "bb940401a0451e00a3768d87f48a4dabe4200afe", "message": "pylint fix\n", "proba": 6.362840849760687e-07} {"commit": "47c2dd2101c54fcaac44a5f02fb6d720078d1546", "message": "Changed sample data so that rows aren't sorted numerically at\n\nthe start.\n", "proba": 1.1423126977661013e-07} {"commit": "5dfc440392a5648502fb05a841827ccb4267966a", "message": "Use agent troop rather than player troop for stat tests.\n", "proba": 1.0942998329710463e-07} {"commit": "e7a16f1142fbca7092cc6d3ff9dad59b1b10c2e9", "message": "wrong link in comment\n", "proba": 2.677369366210769e-07} {"commit": "c34a66d487a5f6d719e663c1e2793bb32acb964f", "message": "dsolve: add a temporary FIXME comment for more b=0 cases\n\nI hope its temporary anyway!\n", "proba": 1.2365688917270745e-07} {"commit": "0bc98e3cbab019af6f0543c6618387511e354f5f", "message": "Add unittests for WhisperFinder\n", "proba": 1.5125378638458642e-07} {"commit": "c7f284e710b06af04c0c7142f29a169fff680b4b", "message": "Add a slash at the end of form URL\n\n`APPEND_SLASH` is probably to blame\n", "proba": 4.6466692538160714e-07} {"commit": "a7f3eb634d6472791dc89380843061d7b47fbb18", "message": "Ported replace_address to pydriver\n", "proba": 2.0163536191830644e-06} {"commit": "0dd587372a14387b0f0becd1abb32bdd7775e5f0", "message": "removed the create_worksheet variable from the from_worksheet variable in the cohort_list render context. fixed #165 though the route might need to be refactored at some point\n", "proba": 3.542515969456872e-07} {"commit": "b23718dba1ae614767a34ce95f2786437502f1f8", "message": "wrap the entirity of things in try / catch\n", "proba": 1.0809461628014105e-06} {"commit": "179757870af3e23d705cb17e4573436b29fcd7d6", "message": "login form should not show correct usernames\n", "proba": 0.0014252850087359548} {"commit": "50e5d5c1993b164a3e6035b1572336c7969413de", "message": "Clarify wording based on whippit feedback.\n", "proba": 3.422611598580261e-07} {"commit": "45add497011cebfe1d82253f56cf031ef177378e", "message": "fixed latest week bug\n", "proba": 4.740617498555366e-07} {"commit": "091f960c8f0415acf543b40cb468d8cf33c0539e", "message": "TST: Add name attribute to test series\n", "proba": 1.6136344527239999e-07} {"commit": "a318fed2c0bf66b607b319703d03f81a15b4bd57", "message": "fix sorting of last 20 entries for min/max calculation\n", "proba": 1.8047424532596779e-07} {"commit": "a0a3281575611e757af586c05a8a6cbb0dbc8d31", "message": "Upver to release 61\n", "proba": 1.1395293597615819e-07} {"commit": "ff89630886fdb931576a4a4781340bc0066c2789", "message": "Add tests for Parameters\n\n", "proba": 3.44610810998347e-07} {"commit": "17b405bdb39890bf0ec36e02c5520344c17711b6", "message": "added delete to MarkerDetail REST API\n", "proba": 2.786360937534482e-07} {"commit": "e0af145b3a8a03c1286c18274fea6da86ae4fdc0", "message": "Up to date\n", "proba": 1.59434387114743e-06} {"commit": "855ef58b8bc172afd0bf226b7029483b50392e10", "message": "Added some more tests.\n", "proba": 1.0860262023015821e-07} {"commit": "fdfbf20be66754ca41dd5d506d8f120fb23b5759", "message": "print the repository that is at fault when we run into protocol versioning issues\n", "proba": 2.223130422862596e-06} {"commit": "850b3dea5f11d20714677e621a35b5ddb227e8c1", "message": "correct TwoColumnLayout compatibility\n", "proba": 3.2435798402730143e-07} {"commit": "9e242256229bb0bfd9edf85be65857a65ae739a5", "message": "Update install test\n", "proba": 3.553661827027099e-07} {"commit": "84496f6baf2bd8e64d51c4c32d0233ebf3bf0ae9", "message": "fix description", "proba": 0.020454907789826393} {"commit": "1aa7c69fb76d66e4be2db8b0c8218972ecff1548", "message": "log.info when the hub starts\n", "proba": 1.914882687970021e-07} {"commit": "f0ad93ebe53cfcf438d56bc66febc6a38e24107a", "message": "Fix rebase mistake\n", "proba": 0.0009032212547026575} {"commit": "6cd80e99fdbd8faf0265c9bd3e18155f7ef4724d", "message": "Add another allowed compiler error to test_install_with_args_error_not_hashable (this different error format is used by older versions of GCC, e.g. 4.8.4).\n", "proba": 1.1382911679902463e-07} {"commit": "9e2bdfece7f5cd9e02b15e9fe11c432e10a12418", "message": "update api tests\n", "proba": 6.084745223233767e-07} {"commit": "4b9252a9a98572bec1a2b1942f190faa0ad1809a", "message": "Turns off caching for API calls\n", "proba": 5.525844244402833e-07} {"commit": "0a6dafd6af3288ef9e602959a927bad6dcbbeef3", "message": "finished client side changes for withFiles flag to getTrove\n", "proba": 1.4542702331254986e-07} {"commit": "9db503550e1757ad3fd74f03e62e1d3645d780e5", "message": "header change\n", "proba": 1.071146016329294e-06} {"commit": "898d3ee899e2e12c7fee9f251dc82c6317136c80", "message": "K8sPod: factor out pod creation to util\n", "proba": 6.308100637397729e-07} {"commit": "17171745b9b5ba8f6959edbd98920e127e43c776", "message": "More coverage, which happened to reveal a bug.\n", "proba": 9.844477233400539e-08} {"commit": "d955ae954330ff2b41a6462399901dd2eee9eb93", "message": "check for commas and spaces in version/revisions\n", "proba": 3.172363847170345e-07} {"commit": "22cac15e894e4104ed8686e90da3ce6155968691", "message": "fix: test\n", "proba": 0.9993531107902527} {"commit": "0ac5e400a50efa01ae3e67e1e7ffbeeec1590dd8", "message": "Add tests for new method\n", "proba": 8.227556236306555e-07} {"commit": "ec3426bba501fa8e7c271afbd7131740e8651d89", "message": "Added privilege un/grant commands\n", "proba": 2.0679578938143095e-07} {"commit": "6e66ef456e993ab8f405a4037d0ea8e4f0621685", "message": "finished getting unit tests working after geojson change\n", "proba": 1.4620604815718252e-07} {"commit": "593c793334a119096f79f36e6e73ff22883af815", "message": "[window] Updating window for 16bit data\n", "proba": 4.0492002995051735e-07} {"commit": "1f0530037ecca2b191e8cfa6fea5c1d666ae63b6", "message": "add progress bar when loading loop data\n", "proba": 3.9671343188274477e-07} {"commit": "b81efb2306f85c43707fb5457ce9d2077a91fdb2", "message": "This allows the unit tests to pass on systems where they are run from a\ndirectory with a space in the name. This was a problem on testbed-xp2.\n\n\n", "proba": 1.1298832447437235e-07} {"commit": "36219a501c8483b82317b02a68056fbded19bbfd", "message": "test torque exception\n", "proba": 6.458173515966337e-07} {"commit": "9e37d3076920d889b3db4e9864fbd244ddb7c248", "message": "Fix broken tests.\n", "proba": 4.232465016684728e-06} {"commit": "b045a10929e28fe6ed40c234128f549f01357145", "message": "join some formulas\n", "proba": 6.00196131017583e-07} {"commit": "3cce39992a1c06900811a7302f5c97e31c9f080c", "message": "Include acp log tests into the suite\n", "proba": 1.6898556509659102e-07} {"commit": "69242a3e93964a1b12f8e62a441ab4ba3e418188", "message": "Expect qemu tests to fail on centos_epel due to arch issue\n", "proba": 1.6378517386783642e-07} {"commit": "628a1418e64ba45890daee2d85223277f3a11a54", "message": "insert asset_specific_data into deck_spawn test\n", "proba": 1.3337083828446339e-06} {"commit": "55a822b57370fc700e51b6763ccf0dadc1bd7ab2", "message": "simplify\n", "proba": 0.9999978542327881} {"commit": "dfc2eff217b773e57ade0020400ad89af8c0a350", "message": "Unify database prep with other tests\n", "proba": 0.0002798388013616204} {"commit": "2b53a74e792f1e13c3fddf1ff634b8f3be50c036", "message": "Fix syntax error\n", "proba": 0.0005845880368724465} {"commit": "3915f014006f3a5ea8150b67e083672b6ee2cbd8", "message": "Enh: Tests - Edit default prop for previous fix\n", "proba": 1.3136958898485318e-07} {"commit": "5a5ba195e9d46195ac2d8b316bb0a5df2d873234", "message": "Task locking monitor\n", "proba": 5.342691906662367e-07} {"commit": "ff1d7aecd38028098a49d0ae1d094868d2bb0056", "message": "Fixing flake8\n", "proba": 2.088379034148602e-07} {"commit": "a4a0a4bd28ca72205bfef7062606eb916261ea35", "message": "Remove --replaygain flag when checking bs1770gain availability\n\nbs1770gain exits with error 1 when called without data, interpreted as unavailable\n", "proba": 1.8556829672888853e-07} {"commit": "157596ed02f1d9d3ecafd7cb4047dd5010dc5fc7", "message": "added a context for the apache ports.conf template upload\n", "proba": 3.168541979903239e-07} {"commit": "9321d928f70d7eb09179a78a2126f0bcbab425f6", "message": "Small docu change\n", "proba": 3.565033352970204e-07} {"commit": "95858d46f6d5514e43e99af2e2d08102358aaf4b", "message": "fix test\n", "proba": 1.6747775362091488e-06} {"commit": "ce68bf43b5dc51a96c1ffdcd8736245368caeb48", "message": "remove duplicate test\n", "proba": 0.00040857814019545913} {"commit": "678cfd5d1acb1d1c3ed031deb8afb181c661650e", "message": "Refactor github_hook(): split github_pull_request() and update_project() into separate functions\n", "proba": 0.0001473957672715187} {"commit": "c9b36cc6e2b94b7fbccbeb6fcac91476f28d3e53", "message": "Fixed some bugs, added kind testing\n", "proba": 1.3979072832626116e-07} {"commit": "f0a6db351e8d674d0b613de5de942365790d1224", "message": "s/persistant/persistent/g (#254)\n\n", "proba": 1.918434122671897e-07} {"commit": "0085e36491aa14f80c8979ee25c1ad0039bc3f00", "message": "Extend the 'test_parse_to_audio_requirement_bug' test case\n", "proba": 0.9999181032180786} {"commit": "15174e8ee40d56399cd08df2863e66d0d53ef75c", "message": "Going 0.1.0 now that at least 1 application is runnging wsme. We are still in alpha state though.\n", "proba": 9.81749437301005e-08} {"commit": "d0eb8724810258b50af1187985bbc80e07e5b61d", "message": "fix unit test to use production version of XMLPatent\n", "proba": 1.4951785942685092e-07} {"commit": "254baf7b27a5a78b200ee810c8ca02c990394047", "message": "Removed code that was duplicated in pepapot.py and test_pepapot.py, specifically relating to obtaining an environment mapping constant names to values from a list of constant definitions.\n", "proba": 1.0314877130213063e-07} {"commit": "ea2723c84bfa28a3885060164abd7438d25aabb3", "message": "add doc, fix tabs in compbio.phylo\n", "proba": 2.9455895855790004e-07} {"commit": "f76e2458d0a80afc39fb05840d818adb85924248", "message": "- Added a simple @future test marker.\n\ngit-svn-id: 655ff90ec95d1eeadb1ee4bb9db742a3c015d499@4102 8cd8332f-0806-0410-a4b6-96f4b9520244\n", "proba": 2.1379923964559566e-06} {"commit": "c770aa00f763890300b6cdc88a942fd17da42cbd", "message": "actually match\n", "proba": 8.769663395469252e-07} {"commit": "21d3907e960140f9ac45030af63e8c1721cb1cd8", "message": "Fixed #88\n", "proba": 2.508185161786969e-07} {"commit": "adcb5e25b6204485f3c09bb6086573d3279e1566", "message": "[add]remove account from slave pool once it reaches level 30\n", "proba": 2.3756579992095794e-07} {"commit": "9d8c32599eedb1242c8254a390a8eba8db3527c2", "message": "Serve static files\n", "proba": 2.1434340169435018e-07} {"commit": "6444c64d07473508983c7aa4d1fe4e8f33bda0e0", "message": "Fixes two overlookeds self.skip calls\n", "proba": 5.484756115947675e-07} {"commit": "133060c59782b662e09ddd96933b677c8b7c6a13", "message": "a few docstrings\n", "proba": 8.105563438220997e-07} {"commit": "3c811b3f0a0fd974cdac2e53dfe0a6cb1ee44e55", "message": "update process tests, move to using example_resume.yml\n", "proba": 2.802026983772521e-07} {"commit": "39db6c67fe4fc21abe23d4f801b559a0610b07ef", "message": "fix kwarg/arg order for python 2.4\n", "proba": 0.0046279956586658955} {"commit": "0a7060642f1156dffafb9125bc6a5eda400222fa", "message": "changed version to v0.9\n", "proba": 1.5945840914355358e-06} {"commit": "c39297204aa980d884448e37ef5a8aa78719ee70", "message": "Add failing unit tests to reproduce issue #312\n\n* closes #313\n", "proba": 1.4814435189691721e-07} {"commit": "da82757d82ac237fd78b2dc0014a39c6fdb71b5a", "message": "i think this will actually fix windows\n", "proba": 4.359093281891546e-07} {"commit": "8c9fd02d47c48f9b310a8e3c818509f4e80f422c", "message": "perfect the 13_ip.py use regex\n", "proba": 0.025544367730617523} {"commit": "2d422977fb181ad5179d353116b5f738016b98e5", "message": "changed version\n", "proba": 4.3256284243398113e-07} {"commit": "c04ca08067e351a76c54973185ad4ca0cae8b1ae", "message": "Oh 2.6, you get me every time\n", "proba": 2.293756011795267e-07} {"commit": "84e571de9c93ce0dc8a14e80286da54408a72100", "message": "MotorGridOut can inherit from MotorOpenable.\n", "proba": 1.2675155858232756e-07} {"commit": "0304d648406d1a6d05bb815f104efcfe8fc1d09c", "message": "fix compare dataset name\n", "proba": 7.870236004237086e-06} {"commit": "c73b2fa88a42349f775327ecf441aa2e2e287c8b", "message": "collection requests metadata tests\n\n- added tests\n", "proba": 1.2925595171964233e-07} {"commit": "ee1532cc226987904666eeb0bda61445455d04e3", "message": "Increase test timeout\n", "proba": 1.3647479590872535e-06} {"commit": "2c2382e9c5d175636b0d4cdcf1996ad92cb73b19", "message": "0.54.0-dev.9\n\nNeeded to bump the required dev version of mpf", "proba": 1.3995681058531773e-07} {"commit": "a4ab029c01005749d56abaedbc0a892cd7112368", "message": "Fill in runner test expectations a bit more\n", "proba": 2.0516280585525237e-07} {"commit": "0f2acb5697a1fc93d1a7dbdb21e2b32d19dcf829", "message": "replace pika with kombu\n", "proba": 0.9999740123748779} {"commit": "9466efad73d65861af5aac880ecccdd48dd47f06", "message": "self referral instead of static for run_sample()\n", "proba": 1.1985235914835357e-07} {"commit": "5ce68799d06d30556ec83fbe7497722085bdf671", "message": "Adding a location_client to Ambulance.\n", "proba": 1.2211708622089645e-07} {"commit": "b0067e1bf8c189eb29983a6afee4b6ce9f6995d9", "message": "test no access token exception for OAuth2Service.request\n", "proba": 8.904588639779831e-07} {"commit": "8971dd3bea0ef571b859b2911a1cb7c09a292ed8", "message": "Get user input to choose from results list. Untested\n", "proba": 4.228284160490148e-05} {"commit": "9bbecefe197706d5a4a8c9a31d88c62b125679b2", "message": "Error messages in mqtt\n", "proba": 3.886738966230041e-07} {"commit": "19e5d9a35f45167d3c83f7518afeed90d49e72c8", "message": "Fixed typos and bugs\n\tmodified: tests/test_snanaio.py\n", "proba": 2.3590257569594542e-07} {"commit": "52a35d46cb4126be6f5ea8e4fe35cf6fa04e2b07", "message": "s/datacat/jobcontrol/\n", "proba": 3.8195207707758527e-07} {"commit": "c4b3a09886b146c8e33fec3871b0459e838a2421", "message": "test `get_fixture` helper for doctests\n\n--HG--\nbranch : doctest-fixtures\n", "proba": 2.48841502070718e-07} {"commit": "ecb26e2f35a81180b360c1dfb6c6dc6e26146105", "message": "replace deprecated HTML", "proba": 7.866500527597964e-05} {"commit": "0c231b10fcff5ea970998a9313a2ce25ecc71d7c", "message": "Add test for invalid storage string\n", "proba": 9.717702596390154e-06} {"commit": "dceb59c6fffb71360800922bb625a2956dddad4a", "message": "Added API key auth as the default authentication method\n", "proba": 3.4638577517398517e-07} {"commit": "9dd69d55b676b2715e29e7fc065e9d4e28220a1c", "message": "Allow muninn-strip --force to reactive a product even if archive_path is empty\n", "proba": 3.7754145409962803e-07} {"commit": "8990a209997b76a4f8216be78b0391fae13e9752", "message": "added AMR64 arch\n", "proba": 3.459120705429086e-07} {"commit": "991954c03b9561a411a1e8d6cbd60a35258ca57a", "message": "Added a new test to ensure similar tags are identified as similar\n", "proba": 1.2922390624225955e-07} {"commit": "0c501212bf9dbb9cf5d0fbed3c6a5a2e5b890cf5", "message": "added which library to call\n", "proba": 6.480025831478997e-07} {"commit": "e253ed52c6e7f540b0ef7623b37bc230f50347ab", "message": "tweak timings to make tests more robust\n", "proba": 3.094797591529641e-07} {"commit": "58e44a63b2dc423200fc19bdb7d97acafe505233", "message": "add final test_warn_on_nonexistent_directory_creation_failure test\n", "proba": 1.3823983863403555e-05} {"commit": "c94ee5d045179fb56c172a3f4ebc7d28dfae9585", "message": "add INSTALLED_APP\n", "proba": 2.003801455430221e-06} {"commit": "29d37103f5b38fd821c2f642065e1883b2c5c02a", "message": "Fixed Vagrant tests\n", "proba": 4.247006870627956e-07} {"commit": "700dd449a2fb603499c5c30578a1341e1d4a8409", "message": "Releasing version 1.0.1\n", "proba": 6.144194344415155e-07} {"commit": "227cd37732789dba93f905056e183ee3115f2d7c", "message": "Some more unittests\n", "proba": 1.3587218461452721e-07} {"commit": "d760a04c94cf4080be3b0a319770bf2909c68490", "message": "serve static files from django\n", "proba": 2.195507420310605e-07} {"commit": "e5b3de7ef4b068d1ce01e8fc9aec59b9182d8662", "message": "fix error in wizard tests\n", "proba": 8.22691276880505e-07} {"commit": "c7d3697f5e8a225b705856cf65cdfc04d6c343ec", "message": "Changed open from \"r\" to \"rb\"\n", "proba": 2.142956873285584e-06} {"commit": "02d5927009671b9fb4e93d4787c3e20185111254", "message": "FeatureUnion tests for xgboost\n", "proba": 1.897326313837766e-07} {"commit": "2e4d0753eb2314f14cd39193941ffcae7e14054c", "message": "Fix line length\n", "proba": 0.9999982118606567} {"commit": "5c9a8d27f47710348522f485fda60bf4ba809b0a", "message": "Risolto bug per conpatibilit\u00e0 con MariaDb", "proba": 1.635937962873868e-07} {"commit": "5a604f42f68992d7cc7754e3694edaf6c3cdee37", "message": "Remove now useless test\n", "proba": 3.184200068062637e-07} {"commit": "25d78c83d7f6b9bb7b331803109ae1d717b065bf", "message": "Various improvements for get_route_to\n\nAlso fix #109\n", "proba": 1.277034158420065e-07} {"commit": "a40bc00210a4bc6956bcbc051e0317a5c27b67fb", "message": "change rules\n", "proba": 2.8737069897033507e-06} {"commit": "132a8d8b7caef4b20a02fb29a868894dc274bce9", "message": "Added ZmWalace dataset\n", "proba": 1.3774743479189056e-07} {"commit": "d8b322439a5fdaf31ec52dc7c2a2ff9e18c12316", "message": "solve import error on install magpie\n", "proba": 5.723437425331213e-06} {"commit": "1e2c7e946c6534645dd212718b816edbdaf382e6", "message": "Adding a post processor to send_command\n", "proba": 3.8543561231563217e-07} {"commit": "3d9e6c616ca7789d281843caf2d3dfb99dbf78a0", "message": "saveconfig: compress the backup config files\n\nWe have noticed saveconfig.json with 100 storage objects and 100 targets\n(each holding a single tpg and a portal) consumes disk space around ~500K.\n\nWhich is very expensive, and backing-up such 100 saveconfig.json files will\ntake ~50M of disk space under /etc/target/backup/\n\nAnd at scale like 1000 storage objects and targets, this will become worst.\n\nHence this patch attempts to compress(gzip) and store saveconfig.json while\nbacking-up.\n\nSaved space example:\n\n[root@localhost ~]# targetcli ls | grep -e \"user:glfs\" -e \"iscsi\"\n | o- user:glfs ......................... [Storage Objects: 100]\n o- iscsi ............................... [Targets: 100]\n\n[root@localhost ~]# du -sh /etc/target/saveconfig.json\n448K /etc/target/saveconfig.json\n\n[root@localhost ~]# du -sh /etc/target/backup/saveconfig-20181128-18\\:20\\:43-json.gz\n12K /etc/target/backup/saveconfig-20181128-18:20:43-json.gz\n\nReducing disk usage per backup file from 448K to 12K is very efficient right.\n\nSigned-off-by: Prasanna Kumar Kalever \n", "proba": 0.9999874830245972} {"commit": "9aed55f58522c0d1f5e6ee943f99377ef1adf0bf", "message": "patch linting\n", "proba": 5.428735789791972e-07} {"commit": "5dfcd4ea8633a6bc658cccd654fce2cc7c217269", "message": "Add helpful message to end of installer.\n", "proba": 1.0993876742304565e-07} {"commit": "390fa07c191d79290b1ef83c268f38431f68093a", "message": "Fix import in test client.\n", "proba": 1.2217277856052533e-07} {"commit": "1feb6b5bffdc6efcc2a0bee95b86afef79298c7e", "message": "Moved the gravitational constant out of leapfrog\n", "proba": 2.6635964331944706e-06} {"commit": "3b706a6fb345d1b6c33c3ab8d438949fc35887d3", "message": "NotImplementedException should be called NotImplementedError\n", "proba": 0.9987183809280396} {"commit": "fb47280cf220f198465af5940855c4a869b1f0b0", "message": "Redirect dropbox URLs.\n\nFixes #141.\n", "proba": 1.6249462930773007e-07} {"commit": "1933edf6d27466640a2b9cff7d8fc4ccb60b5c2d", "message": "Use additional filters for consume_tickets()\n", "proba": 1.7219579717675515e-07} {"commit": "38f7912922e44fc942a5e5e24f33edb213bd07cf", "message": "Micro-optimizing encode\n", "proba": 9.985011274693534e-05} {"commit": "910132ad8d6c5841473fd9ed7320128e6b405043", "message": "Add note about test failing with SDK 1.5.0.\n", "proba": 1.0590024857037861e-07} {"commit": "2c001bbc5065271a27e2d3e2633f74fb2f84f522", "message": "Comments", "proba": 4.2012280232484045e-07} {"commit": "7c6754a439f8fa1c7ebe5c12b9c51651c02c35c4", "message": "\u4fee\u6539post\u53c2\u6570\uff0c\u6dfb\u52a0\u5168\u5c40editor\u914d\u7f6e\n", "proba": 1.2471697630189738e-07} {"commit": "8014affe7c8e0afae6612a67bd6a9e46d71aeae2", "message": "i #170 remove config.py from remote repo\n", "proba": 1.7490664561137237e-07} {"commit": "2485d3e6d4eb075b0cfb2a681688e0b25c50eaad", "message": "Change force_unicode to smart_str in csv_view\n", "proba": 2.1649116206390318e-06} {"commit": "7bd2bfa8deb59c97f7630ed10fe70fd7e8bd8587", "message": "Update dependency bazelbuild/bazel to latest version\n\nIncluded changes:\n\n - 50ce3f973cbc96a0326560a31b736a4f0ca8dc62 starlark: allow lambda expressions\n - 337e717489d61418efaf957affdfdc96ba4c5372 Start making distribution dependencies easier to update.\n - 006d0783ae41cabefacd714b571fd31915096223 Starlark: reimplement StarlarkInt.bitnot using BigInteger...\n - 3733065ddd418357e0e74091789ace5884b01fef Add toolchain definitions for Java.\n - b654a974876f3fd915a1e5118ebad57b1d55984f Convert BuildType.SelectorList back to SelectorList in na...\n - ab8849a250e9ca11e656b37e9bea05855e525764 Remove statement about required naming for shared objects.\n - e2363965e9f6ba412fa1b14b17c768f4efd40413 Update aquery tests to prepare for v1 code removal.\n - f3da95f926b299cf80a39aadc6f493000f620041 Add :coverage_suport data runfiles to the inputs of TestA...\n - 88b1cb4dabc5c448ebe6e1c7fb06249841de0a63 Add windows_msvc back to conditions in bazel_tools.\n - d83e662cb5a738f78eba168ae4d064dfa2b2c8d1 Add validation of scope for GraphlessBlazeQueryEnvironment.\n - daaa6cf27cd437657dc3e643ec7325dce721a50f Implement `DottedVersion.Option#toString()`.\n - 453d26358256f555053d4ed94694e0914b2ae7a6 Docs: Add Intro info about where to make edits for shared...\n - 9af5371e88393105144591188e048d5af679e2aa Starlark: \"fix\" RangeList.hashCode\n - 960b7a99af12249139fc08cdcfdf4b2a6b6ae0e9 Adds an api-android target to the sharding API.\n - f8606e5e76579442a1c6563e718ea54c673f1a04 linux-sandbox: don't assume -lrt, -D__STDC_FORMAT_MACROS\n - ace665208d3cf501e0c437992ae8f1d60c68d8f9 Add missing state reset on ActionExecutionFunction.comple...\n - d90f8d2f388893eae39c724f145097f6c6bf0d57 Automated rollback of commit ba5bf5f794750e47f3ccb7b349f5...\n - 5ca20643e54e5cff1eb2939d044f86f96861176a starlark: allow nested def statements\n - fb1c369530bd26f9a13560c5979929a999e585e2 Make heuristic label expansion consistent regardless of t...\n - b858c180d80228460c82d2d88215c3a0ac4dfbd0 Allow `executableArguments()` to be used to set the execu...\n - a06d7e14a23d6fed5c51b4448d571c5ded1b0969 Add windows_msvc back to conditions.\n - 4d9a79b35b4c61013e14edc476dade53a5303bb6 Provide a reasonable warning message when a directory art...\n - 6a3f3fb880bfa0e119b5327c96bd50726d56c5d5 Automated rollback of commit d27e443d5ae0fcb57e1a6a237741...\n - 3becef2571e786c27ff52c4e1d96ba355d791634 Delete experimental_async_include_scanner functionality\n - bf31feb7b8a1428c2ad0e3a4e73c655e7582aa08 Provide clearer build event proto output for Starlark fla...\n - e03cb63e059420847d6578d7cbfe93f05615c95e Update bazelbuild/platforms to a current release.\n - f23aa21e0f30ef0a78ed0abe6298d2abf4edf6c5 Support Shenandoah and ZGC\n - 52457b18bdf5b4af8897e50e2a03486b86d3b2c6 Use configuration flags for //src/conditions:darwin_arm64\n - 364b77ed34afcd07d48313472e8fe3b260a8312f Fix a source of contention in LegacyIncludeScanner.lookup...\n - ba5bf5f794750e47f3ccb7b349f5ed8789324fb2 Add scope validation for GraphlessBlazeQueryEnvironment.\n - 2a07fedf87eae77ce53bc6f0807cc41d1ac743ab Remove ABSOLUTE_JAVABASE in Bazel and remove obsolete doc...\n\nBAZEL_VERSION_REV_ID: 50ce3f973cbc96a0326560a31b736a4f0ca8dc62\nChange-Id: Id3e65cc771c224adb00e8621462b546c7c596135\n", "proba": 6.68715983920265e-06} {"commit": "73d0be7a432340b4ecd140ad1cc8792d3f049779", "message": "Use SelfAttribute instead of explicit lambda\n", "proba": 3.6961540672564297e-07} {"commit": "469d5e545e3c78aed5dad3e4957956cfe0eae991", "message": "Add a missing test for Analysis.wait_until_finished().\n", "proba": 0.00047454339801333845} {"commit": "a9851b0ae882e409f78e161694f25040e7f1eb44", "message": "Fixed variable typo\n", "proba": 1.1435971600803896e-06} {"commit": "9d63815a09ba5345f7f2c6dacef46ccb573687d7", "message": "Better Error When Vertex or Edge Type Not Defined\n", "proba": 1.4006964477175643e-07} {"commit": "bd18e92c95aff577012ccb4df20fb3706661bec7", "message": "Change the get_initial() function to table\n", "proba": 0.9994063377380371} {"commit": "31a9563681be98f3423b3f3b671169b023aea36a", "message": "Stateless seedTask function added to gci_task_utils module.\n\nIt is more convenient, as no new helper object, whose only state is actually program, has to be created.\n", "proba": 1.1164406998886989e-07} {"commit": "1bdffda72a6c5a73d7fb6e1bb5b1064f2224bf69", "message": "Add doctest to verify that the `py:attrs` directive correctly handles a sequence of `(name, value)` tuples.\n", "proba": 1.2612213140528183e-07} {"commit": "5c1a404353a0cdcd49610a21d7d19b79898ac7e3", "message": "make mpi example a little more verbose\n", "proba": 6.899249274283648e-05} {"commit": "5db564b2522d9d106d34c3a37bd2fb783e38a19c", "message": "Test that files under bin aren't replaced by files under .bin\n", "proba": 2.2854594590171473e-06} {"commit": "4f61bb3cd10b3444172b92c21d821c56576c1bb2", "message": "Optional verbose output\n", "proba": 0.00021038619161117822} {"commit": "eaaa11c631646268fbbf8e009975354cb5daa49a", "message": "Fix some flag stomping in tests.\n", "proba": 1.728718928006856e-07} {"commit": "902f67ac8fcb6f5db14c4e1fbfd69fe9afeac40b", "message": "Mock all blockdev's listing functions for populator tests\n\nWe don't want to use the information from the system the tests are running on\nand actually we cannot even grab that information because the tests may not be\nrun as root. To prevent issues and exceptions, we can easily just mock all three\nLVM listing functions - lvs(), vgs() and pvs().\n\n(cherry picked from commit 50e564be5265ff19b6d7efa1fa04f0a0f3388f45)\n", "proba": 1.8645219824975356e-05} {"commit": "74ef80060cf63e11438fcd3d5c07c52131524614", "message": "Updated library path\n", "proba": 5.597948984359391e-07} {"commit": "2554fe73d15ce6a5a1a91f97c44cd11d59a82ba1", "message": "updated year.\n", "proba": 3.240228352296981e-07} {"commit": "ea24bf9209d4ddec416f702ce75cadfa05fdd516", "message": "connection_table_to_matrix(): Added 'sort_by' option\n", "proba": 1.070699681804399e-06} {"commit": "3bb6017897f9b8c859c2d3879c2e9d51b899f57c", "message": "Increase number of iterations for xor neural net\n", "proba": 2.1053979253338184e-06} {"commit": "cfd9244b7a7e52d121c1895a693c356f86753ec5", "message": "Updated get_stats() docstring\n", "proba": 8.454657063339255e-07} {"commit": "02b685acc883733d8fff884695b8e429e8a5b916", "message": "Implemented get_bursts()\n\nCharacterization function for bursts\n", "proba": 1.5014143173175398e-06} {"commit": "d78a37abbf28d0922f00b6c1ad6456fbad5af1f6", "message": "Dev version increase to test jenkins.\n", "proba": 1.0810516926085256e-07} {"commit": "70280d763344124a438d312e1307b0e04a168dd9", "message": "FIX: prefactor taken into account for ICP files\n\nICP style files use a prefactor for the monitor, now data.monitor = prefactor * m0 when ICP files are loaded.\n", "proba": 1.0600533073557017e-07} {"commit": "2c37ed091baf12e53885bfa06fdb835bb8de1218", "message": "Add Bitbucket to skipif marker reason\n", "proba": 1.7923653672369255e-07} {"commit": "44dac786339716ad8cc05f6790b73b5fc47be812", "message": "Remove extra comma to avoid flake8 test failure in CircleCI\n", "proba": 1.1854536978717078e-06} {"commit": "de55e45d5a3a17e1df711c65160c4e3f72262897", "message": "Fixed doc\n", "proba": 4.864538709625776e-07} {"commit": "ee68aab6ad43d002292698920214bb71c5df0d1c", "message": "Addresses several issues in #704\n\n- Avoids shell=True and hence any quoting issues\n- Cleans up temporary directory\n\nThis code has not been run since FILTERS don't appear to be tested.", "proba": 1.0412844630991458e-07} {"commit": "8a7df66d9027284cfd91da11d73344e0c8eaae81", "message": "added remaining missing warning filters\n", "proba": 2.6642874217941426e-07} {"commit": "d912db90ff6f1d5cfd4d3acf863467d6c66a79b5", "message": "fix the tests to use correct urls for v4\n", "proba": 5.351439085643506e-06} {"commit": "a641fc5ca074c9ce9aba6158708ef400e0fb063e", "message": "Add tests for the bind feature.\n", "proba": 1.1357299456449255e-07} {"commit": "18058f1d873388447d0a6a06e24405fb40ea0e72", "message": "updating tests/test_autotunner.py\n", "proba": 3.1466618111153366e-07} {"commit": "cac21e16693a27a7f8c3b4de60e43e316ef8791d", "message": "Remove old, less specific character tests\n", "proba": 0.0001394931459799409} {"commit": "3012e5adc94c4f5446930246086c13178955ea9d", "message": "Added builds with defaults, and corrected tests", "proba": 1.9798321204689273e-07} {"commit": "b447fa44ca1dd2e9d21af4ce61ee6092fe3c94ec", "message": "BUG: Update test_cmatrices to new interface\n", "proba": 1.3026300393903512e-07} {"commit": "a4d3dbb0a4d4a43d97145ad7f97d0fc715299bbe", "message": "update tests\n", "proba": 5.633767727886152e-07} {"commit": "075242368516fdd895591ca4c794b22fd18ae331", "message": "Fixing error with DataContainer import\n", "proba": 2.171063329114986e-07} {"commit": "e91dfda7418cae80ce3a7435efdde781d8027f1d", "message": "Fix docstring, add type check\n", "proba": 4.3142165395693155e-07} {"commit": "fa48dfb7c278fef39dd98e16fef95f3074d2b3f0", "message": "Convert `foyer_kwargs` to empty dict if not specified\n", "proba": 0.9984261989593506} {"commit": "32a6e352e549b1adc19d79d1b67f25f74eafbdf0", "message": "Bug fix for UCASCI for multiple CI roots.\n", "proba": 1.0815095663474494e-07} {"commit": "ab09d44e32ca31a2dadb0f9834d861bdb014662f", "message": "Some wild guessing\n", "proba": 8.887247986422153e-07} {"commit": "ec0c63cdd98bc6ea2153d3844e78481e8ced3dac", "message": "add statistics counter\n\nSigned-off-by: Hagen Paul Pfeifer <4d5bb2d32024e62584022f82eb016d5f4634880b@jauu.net>\n", "proba": 1.1450918435684798e-07} {"commit": "3b408ed7702100b7f1755f819e05bb61b1740957", "message": "add medialab events search- left todo: json and date\n", "proba": 1.8033092885616497e-07} {"commit": "5614e6b4bdde9dfa126d1666104cbe046a4f1cb5", "message": "iterate_jit NumDep()\n", "proba": 0.00046908672084100544} {"commit": "769e6209db066b8b5908426850fd300fd29098e8", "message": "Fix codemirror mode and language name\n", "proba": 3.028634819202125e-05} {"commit": "c517eb40b73151a9b14f46f1991ab692d8b81702", "message": "Add docstring for simulation class methods\n", "proba": 2.9128136702638585e-07} {"commit": "3db3d2c76b15796b55b0915ae8f078f1b56b6985", "message": "get_webhook_url returns None instead of ''\n", "proba": 5.0789909437298775e-05} {"commit": "031f9ef33508db5e73e8bc0d9088cd2f15671b2f", "message": "rename _server_extensions\n\nsince all fields and methods use camelCase, the newly introduced\nfields should too\n\npublic API change possible since all this code was not part of a\nstable release yet\n", "proba": 1.2556155581933126e-07} {"commit": "b646e4f376db710101e2c1825bd384b2727e6a79", "message": "Disable on win32", "proba": 1.515470330559765e-06} {"commit": "0f2bcc2b00fe2c171a252cdde3051392676fed28", "message": "Provide option to get status of single tool job\n", "proba": 1.0357199471400236e-06} {"commit": "6ae5de17e37e4d42f9352b85f03331eefe951ce6", "message": "TST Test attribute-based access for DepletedMaterial\n", "proba": 1.4439468998261873e-07} {"commit": "9033c3e95b07219f49171dd88f55a951852c9b8f", "message": "Reset the beacon rather than stopping it, in the hope that it will avoid bind-related issues & delays on the CI tests\n", "proba": 1.3516149977021996e-07} {"commit": "caa7c8c68a6d6356f5134473b4488ada2a1eebd2", "message": "MAINT: pep8 on test_file_like.py\n", "proba": 9.413499810762005e-07} {"commit": "c0aceb30d377bd60875cfbb4a56d2907b9ba307e", "message": "[#202] Think I found the bug (fig = fig = ...)\n", "proba": 4.786221552421921e-07} {"commit": "2f033c13d8609d25a96c8722a2f1ebbc1aa2644b", "message": "Removes unnecessary print statement in test.\n", "proba": 2.785903689073166e-06} {"commit": "8a0c78ac80df92795f1d3fd654afe1ff98056aea", "message": "reflects change in word lenght\n", "proba": 1.1659340998448897e-05} {"commit": "78320df85a99b309c192a685f16f7c36b8b86c7c", "message": "add test to check that \"in bounds\" lat/lng do not throw.\n", "proba": 1.1450546821833996e-07} {"commit": "17ad68fe77b124fa760857c9e93cbd3d4f9d293e", "message": "Write XML of input file to tempdir as well\n", "proba": 1.5468539515950397e-07} {"commit": "6e67a9e8eedd959d9d0193e746a375099e9784ef", "message": "Use bytes instead of str where appropriate for Python 3\n", "proba": 0.000561102875508368} {"commit": "3fe49fec00b0c45a1ffd2d33ccb46f967045d2ad", "message": "split first define argument test\n", "proba": 6.361323698911292e-07} {"commit": "ca6ef0048ef5c0baaf833683111e8d19a9fe219a", "message": "Yet more cleanup n stuff\n", "proba": 1.1978026748238335e-07} {"commit": "8034a521692d9857b0d36e2efced40bb69f5efda", "message": "Refactor test for and operator\n", "proba": 1.755038141482146e-07} {"commit": "eca6b723742207c578e7e44dbf727a2ada597fe7", "message": "fixed broken pointer\n", "proba": 1.1171761116202106e-06} {"commit": "7b6d14d81885cf4c83f2e3bbaca50ba1c0904709", "message": "added test for pluckable iter\n", "proba": 1.5839187028632296e-07} {"commit": "adff5837935277deae2f9d24afd8db13d7317622", "message": "found source of syntax error\n\nthere was a bad copy and it moved some things around.\n\nSigned-off-by: Nathaniel Starkman \n", "proba": 1.3002967591546621e-07} {"commit": "5ed73133de5bfb665a90388941979a17cd5b67f9", "message": "replaced generic_fst with DUMMY_REWRITE in class init\n", "proba": 2.9356618824749603e-07} {"commit": "5a817413b91adece6f5191d7fe0bf5b4baa430af", "message": "Fix test\n", "proba": 4.372618604975287e-06} {"commit": "d7c68ebe7a262b971d4218f46cd5a422c9f13122", "message": "http://code.google.com/p/lino/source/browse/docs/blog/2013/0605.rst\n", "proba": 2.760435791060445e-07} {"commit": "b7587cd267fee4d6e8a48a8a43376a2850e4b19b", "message": "update ETermBase.make_function() for fortran layout (WIP)\n", "proba": 1.2665972803915793e-07} {"commit": "5c459dcdbb2eb2010f7ef04385ef2c27a3886feb", "message": "Cleaned up mess , PEP8 standards - Fixed indentation\n", "proba": 1.1577304803722654e-07} {"commit": "3744599ed2fe5b11749de8ff59860372c86afa27", "message": "adjust singer message ordering for binlog stream test\n", "proba": 1.7574869559666695e-07} {"commit": "c14dcff9365ae159bccc6685ff760049c763af66", "message": "Few changes\n", "proba": 1.0494138678041054e-06} {"commit": "47a4371fea4427ecf362409acbc4b6b7f8565dfd", "message": "* Upd tokenizer with i.e. tests\n", "proba": 1.1807211564018871e-07} {"commit": "38ac00c29586916c907035e1f639b7fe6cc9c600", "message": "Fixing codacy comments\n", "proba": 1.52538831343918e-07} {"commit": "62330b7bc54503c9f7aa151bb7479bcb59dd3dbf", "message": "Test completion for mocksignature.\n", "proba": 1.2795173631729995e-07} {"commit": "6a9b215b931c82e442312da6367ac2a69b058ae9", "message": "fixed typo", "proba": 2.684115770534845e-06} {"commit": "c5e7ddbc3866fae72bf7a41ffe90fa0787862f13", "message": "mctest: silence the queue if we hit an error\n\nThis a backport of the Gabble commit ee177cfb2a13a8374e2f1037e806b7bc58aa708b\n", "proba": 2.7579592369875172e-06} {"commit": "006e933a44241e30e1e54c24966d0859aa7c853d", "message": "test hub via vanilla, to check imports\n", "proba": 1.1690918455542487e-07} {"commit": "4f2de7a3ef26e26089626ded498e304df328591f", "message": "tests: remove psutil checks (#5283)\n\nLeftover from https://github.com/iterative/dvc/pull/5232", "proba": 3.4769971080095274e-07} {"commit": "82697a72e12952f0733e2d31e82c69b37d2d8ead", "message": "Mock in python 3.4 doesn't support non-iterable side effects\n", "proba": 3.985510943493864e-07} {"commit": "6a33eb08f7360e8d34819d268a85867627ff6ec8", "message": "update test\n", "proba": 5.018525257582951e-07} {"commit": "3abc412812621a0d723081a2b7db73d5b5db5071", "message": "internal: archive mon data dirs\n\nThese can be useful for debugging, and are usually pretty small.\n\nFixes: #2714\n", "proba": 1.8997887707428163e-07} {"commit": "4826758358563bed88eb884c84b63042a2639b8e", "message": "bumped dev version\n", "proba": 2.5358809807585203e-07} {"commit": "13c048fc3432075536e246a3a3556725dcb7e4aa", "message": "do not require email\n", "proba": 2.3584580048918724e-05} {"commit": "eda320020403f66b1bdc386ccc6131fb03945d3b", "message": "Get rid of gis that was added to the installed apps by mistake\n", "proba": 1.221485348423812e-07} {"commit": "0800c1f8585d990995d119f10f3d1f37c9231044", "message": "add tuples and nested lists to config parser\n", "proba": 2.6254315343976486e-07} {"commit": "be627e479f5ca083026c63c40c3dd848089afb71", "message": "Added file types for headers.\n", "proba": 1.209829463277856e-07} {"commit": "f20e76034eef1ea8b7b7f98ace521a3a6346103c", "message": "remove default 0.0.0.0 for ip address to pave the way for a unique constraint on the ip address column. Of course this means that network_id needs to be nullable. All of this weakens this table in a way that is making me unhappy. This can and will be solved with more clever check constraints (i.e. network_id can't be null if ip address is not null) AND by transforming IP address into a many-to-many assignment (i.e. an interface does not HAVE an ip as an indemic characteristic to itself, rather it is assigned after the fact.)\n\n[git-p4: depot-paths = \"//eai/aquilon/aqd/\": change = 648406]\n", "proba": 7.447204666277685e-07} {"commit": "fee884da9c67095633d800c1a93bdf609b4ca607", "message": "Added warning message when not including build_config.h\n\nBefore:\n/media/ssd/nacl/native_client/src/trusted/debug_stub/target.cc: build_config\n line 29: ['#if NACL_WINDOWS'] \\\n line 183: [' if ((NACL_ARCH(NACL_BUILD_ARCH) == NACL_x86 &&'] \\\n line 185: [' (NACL_ARCH(NACL_BUILD_ARCH) == NACL_arm &&'] \\\n line 451: [' if (NACL_ARCH(NACL_BUILD_ARCH) == NACL_x86 && NACL_BUILD_SUBARCH == 64 &&']\n\nAfter:\n/media/ssd/nacl/native_client/src/trusted/debug_stub/target.cc: build_config\n line 29: ['#if NACL_WINDOWS'] must include \"native_client/src/include/build_config.h\" \\\n line 183: [' if ((NACL_ARCH(NACL_BUILD_ARCH) == NACL_x86 &&'] must include \"native_client/src/include/build_config.h\" \\\n line 185: [' (NACL_ARCH(NACL_BUILD_ARCH) == NACL_arm &&'] must include \"native_client/src/include/build_config.h\" \\\n line 451: [' if (NACL_ARCH(NACL_BUILD_ARCH) == NACL_x86 && NACL_BUILD_SUBARCH == 64 &&'] must include \"native_client/src/include/build_config.h\"\n\nBUG=None\n\nReview URL: https://codereview.chromium.org/1214343008\n", "proba": 8.676493962411769e-06} {"commit": "bae05fd5c15e9360d09dd9456b6d4f1122ddf213", "message": "Print the url of dependency JARs being downloaded in buck build\n\nWhen the build is downloading a lot of dependency JARs, there is\nno output on the console.\n\nPrint the URL of the file that is being downloaded.\n\nChange-Id: Id1bbecf3c38818b6bffb23cf0bef13ee00002a47\n", "proba": 0.0006027717026881874} {"commit": "30ec99179c829661f993f38c67081188158d902f", "message": "Check option is enabled when validating\n", "proba": 3.70641856761722e-07} {"commit": "eccd5eb052716e5d8f37c20a821d5398c9fcc14f", "message": "Snapshots/backups can no longer happen simultaneously. Tests included.\n\nImplemented exception.InstanceBusy when attempting to snapshot/backup an\ninstance which is already snapshotting or being currently backed up.\n\nFixes bug 727502.\n\n(Patch Set 2) 3 new exceptions: InstanceBusy, InstanceSnapshotting, and InstanceBackingUp\n(Patch Set 3) Oops. New exceptions now inherit from InstanceBusy\n(Patch Set 4) Tests now tear down created instances\n\nChange-Id: I9614740bba26c04e64b0e27c24fbace12334f4d1\n", "proba": 1.8369131566942087e-06} {"commit": "243ef6ab8faf9bc4ecf179c05dab0d7bb55c18df", "message": "Issue #252: add the revs option parsing\n", "proba": 1.989841678096127e-07} {"commit": "9b44741deb6d85dbaac2932760698aa3df21a90c", "message": "removed logic of throwing exception if no floating ip\n\nfixes 897089\n\nChange-Id: Iaa03c7b75abf67c78b4605c29ef1770c96c6a199\n", "proba": 2.672624304977944e-06} {"commit": "7e14f2d01cb19ef20fadbef73a0f1c8ceaf973d3", "message": "Removing simple python testing\n", "proba": 1.052817083291302e-06} {"commit": "4eb4f23460f8b9b15d0641555ade4aa95d9ad4a4", "message": "Don't + Alex.\n", "proba": 3.06053067333778e-07} {"commit": "a2a97f9c527ea88250b8dcca6feadc64e54179a0", "message": "auto gen fields\n", "proba": 3.9319510847235506e-07} {"commit": "659db558712a49c7d288b48e9f4b47b7f5b41f6a", "message": "Fix PyTorch wrapper\n", "proba": 4.024972440674901e-05} {"commit": "862164684b27714b3383c3d038dcec096197a3a1", "message": "Hack types in dropout\n", "proba": 3.6193617347635154e-07} {"commit": "322944f577479ebf581d35963851224b9a30abb5", "message": "comply docstring conventions\n", "proba": 1.7125933027273277e-06} {"commit": "d4a9cc5885784cee127101296d690bb9446ace97", "message": "Add create_vm() unit test\n", "proba": 1.1328281743772095e-06} {"commit": "5d8b1a62882f37bb79e8d000e2b2ecb69742cce4", "message": "Add API endpoint for generating authentification token\n", "proba": 8.422739483648911e-07} {"commit": "40fe6cf642b8810cd1f6f40b96f10dd8fed27ef7", "message": "Ensure consistent ordering of data and metadata files.\n\nFix TissueMAPS/TissueMAPS#94\n", "proba": 1.1484748938528355e-06} {"commit": "5840d920fba29b04f6fcbdd652503311bd085880", "message": "Fixed the example\n", "proba": 1.7204837376993964e-06} {"commit": "13e6c2fe72f591fbfb224e660b1e98421d9ae084", "message": "Fixed API doc that got broken by adding new commands for stratosphere ssp plugin\n\nConflicts:\n\ttools/apidoc/gen_toc.py\n", "proba": 2.1585400133972144e-07} {"commit": "b856e7ae3cb135508425af89f29a71888b2c0150", "message": "Update build.py: change default cmake generator for Windows to VS2019 (#7945)\n\nVS 2019 is well tested. VS 2017 is not. \r\n\r\nWe should make \"Visual Studio 16 2019\" as the default to not confuse people.", "proba": 1.046477038357807e-07} {"commit": "7f963c2db1896c95084cd563416d97cdcae6e705", "message": "Add Movement.promotion_check\n", "proba": 5.452270670502912e-07} {"commit": "b33e70ee0ba91f3184b9cbee4d6946253513229c", "message": "Handle get_definition error\n", "proba": 1.1269061133134528e-06} {"commit": "2ec21b067de8e801245ecc0f5b867a9343e8d19e", "message": "tools: get_tax fixed typo\n", "proba": 3.1076115192263387e-06} {"commit": "f5ec0df0b58c9a0048994328d1f7e13bf75ef3f6", "message": "sys.version_info pattern removal 3\n", "proba": 1.7936494032255723e-06} {"commit": "e3832f6301ea7e043552502f88c7b3a59e35d3bd", "message": "Improve formatting\n", "proba": 0.6477291584014893} {"commit": "d288910d25fcba6ee8496693ae86845f1d175626", "message": "pi\u00f9 dettagli nei biglietti room sharing\n\n\nFormer-commit-id: bca4e6a2779e13dcf6985450e7bad37218772f65", "proba": 1.6375862799122842e-07} {"commit": "bf5a17c552fee6a2d4140a35a6c0808af05747e6", "message": "Tools: make-new-files bugfix\r\n\r\n", "proba": 6.841059416728967e-07} {"commit": "419f31d8bc247dc833dda2f897da54706a1b7035", "message": "Allow assignments of the form A = A to be created. Don't create entries in copy propagation for these so you don't get infinite loops.\n", "proba": 1.2574598429182515e-07} {"commit": "83e708f7d49ebf126bbc588c8de0ec16d7c343fc", "message": "remove random space\n", "proba": 0.6693766713142395} {"commit": "6ca8b28e7daa3034d5f1719baca7f1a8dabdf62c", "message": "Change from print() to logging.info()\n", "proba": 1.3423690461422666e-06} {"commit": "61d78a1e47dde8d7b153ecdb3546c856047f3640", "message": "add docstring for numeric.assert_allclose64\n", "proba": 4.9593750190979335e-06} {"commit": "b8ad194b7ad6f4c006eb7eeed5182610359a8462", "message": "Changes\n", "proba": 4.367296696727863e-06} {"commit": "4043468de4fc448b6fda670f33b7f935883793a7", "message": "tests: add a test to ensure False is never passed to Git.execute\n\nSigned-off-by: David Aguilar <9de348c050f7cd1ca590883733c4e531ce610bf4@gmail.com>\n", "proba": 2.1375345227170328e-07} {"commit": "b621dd5656ea50592be58d1ac9f195ad8253ae2a", "message": "minimum changes\n", "proba": 2.0374386622279417e-06} {"commit": "833ded55afaf300716c8ab4829f4eebecaf97501", "message": "New prefixes for Spanish\n\nSigned-off-by: Maxime Petazzoni <76f7aeeb2d6ed04ef2b101cc81e4baac9b89c3cf@bulix.org>\n", "proba": 1.5579041701130336e-07} {"commit": "29e875aa3e3a547c8ec0786f7d13ffdc0ece764b", "message": "Avoid dictionary changing size in for loop in py3k\n", "proba": 1.2703852689810446e-06} {"commit": "be395bf2ad1bb5753357994ae7175d6a9b955435", "message": "adding in references\n\nSigned-off-by: buckie <4f3493b2888eb01e508044099860f407e08fb1ce@gmail.com>\n", "proba": 1.1376997122169996e-07} {"commit": "f9ffdec6df8cb4a80dc8f9dcc2e19d98d1801426", "message": "WIP: fix grid vs. tesselation issue #144\n", "proba": 1.901554327332633e-07} {"commit": "89952f6b91be8b7ed5c4695fa8e06aef71496bde", "message": "- dont clear the classes collection here either...\n", "proba": 1.065091694840703e-07} {"commit": "032b89d6be097fc4d5ecbaf8c7465e351ab896ee", "message": "ENH: allow single tuple for nodes_on_bdry in uniform_sampling for 1d\n", "proba": 3.754768158614752e-07} {"commit": "f51395367a13fab69ec9b2dd3ef889292afbb63a", "message": "babel locale selector\n", "proba": 1.3779580285699922e-06} {"commit": "3fdc232352fa348c1a39597cfbcea577afc4e282", "message": "[FIX] fields: add a type to field Id; this fixes #990\n", "proba": 2.936608325398993e-07} {"commit": "ac0eec6c994396708a66546cc9f6c94e3f26f9df", "message": "[IMP] models: in recompute(), only save stored fields to database\n", "proba": 4.1544535633875057e-07} {"commit": "df0733cafb7f565e9288ef01c797f0eb463a864b", "message": "Skip test_multiple_recursive (#3683)\n\nThis test often hangs or fails in CI. Skip it for now to unblock other PRs.", "proba": 1.0045767595556754e-07} {"commit": "b005d052d0e680026f8326cdfca98a80c3e8a92c", "message": "[MERGE] sql_db: autodetect dead connections and discard them\n\nlp bug: https://launchpad.net/bugs/905257 fixed\n\nbzr revid: odo@openerp.com-20130215125313-448n5b0dluei8qm3", "proba": 3.508571353449952e-07} {"commit": "ee4e14df50a3467521eb1faba6d6fdc356e2c6a4", "message": "[project @ Cause oidUtil.py to die on import if pickle.decode_long or pickle.encode_long is missing]\n", "proba": 1.214935281268481e-07} {"commit": "9e05440e193385af562ef1d19922863be01b9d9b", "message": "Must disable amqplib logging througn amqplib before using it.\n\n\nFormer-commit-id: b2c0a0485bb6eb579e13dd74887b24d59bf529da [formerly 21048c9a383588a033376df3fcd6bfcba2ea0c97]\nFormer-commit-id: f55cf90ed43d4198312a01b0dd970fb411c0b2ba", "proba": 5.38369795322069e-06} {"commit": "7eb187a561dcda881bab4a058bc50e9f356eef70", "message": "clean up\n", "proba": 1.0365005209678202e-06} {"commit": "a50136c79ca31513098c3d81ef89d6071fe01ae7", "message": "Wrap a long line.\n", "proba": 0.00038942304672673345} {"commit": "04187bd37216f37d5df931701f743425cf4251eb", "message": "adds basic tests for torque maps\n", "proba": 1.4493247135760612e-07} {"commit": "d8644e55ee22cd5bb64a140d0b9ebac7dabdd2ad", "message": "improve test\n", "proba": 2.261180452478584e-05} {"commit": "52a3f6eb63684fdb10897fcb1f5e236ef0adf063", "message": "test/test_display.py is updated. It includes examples from all possible display modes.\n\ngit-svn-id: 1bfde95fb844a98f7e933e0b8bbdfdc5d3461639@919 5eb3cf9a-c56f-4155-9a08-806ae8551a6d\n", "proba": 4.888628609478474e-06} {"commit": "710a344b0c04d49aac97d397b3c1627f518fb85f", "message": "Fixing tests\n\npy 3.5 issues", "proba": 2.7668929192259384e-07} {"commit": "90f057e0cd2bd0a50f2daed799aa902bdb31eab1", "message": "test(package): fix typeerror with blank reqs\n", "proba": 1.069943323273037e-06} {"commit": "e12e70d67f496143e9fc913853f2d238aacacbe7", "message": "PEP8 fixes\n\nSigned-off-by: Tyler Kennedy <4f8f608ac4aafcbe4fab8dcee1e9c609f99d9332@tkte.ch>\n", "proba": 1.1686169898439402e-07} {"commit": "2271d3d4c5474617d16d32a29e63798ee301895b", "message": "Update unittests\n", "proba": 3.511530337618751e-07} {"commit": "374e10b908fbedf73f3ad40634bb680206da0652", "message": "Add setUp\n", "proba": 1.6052509863584419e-06} {"commit": "090e903d9879f600de6d197f8794c9ee4715c551", "message": "Improve pytest raise check (#18)\n\n", "proba": 1.238212661291982e-07} {"commit": "c6da9ffb4fac015a70f11b9473f8d887d4b7e371", "message": "Isolate tests to discover bug\n", "proba": 2.1926408066974545e-07} {"commit": "8975ad27e8c530aa0069c42f95b98896cebc366e", "message": "[test] use better var names\n", "proba": 1.5012487892818172e-05} {"commit": "78cd9dfdbe96db620fba1b18b08538e16da05170", "message": "re-added test for saving in published activities\n", "proba": 1.183881650490548e-07} {"commit": "7e048c1ba30a959147cbd55435a43a27e455b88a", "message": "Fix unit test\n\n", "proba": 5.463442903419491e-06} {"commit": "7fb60505eee9726beb8a2c5e273feb296e353fd2", "message": "Add tests.", "proba": 3.353596582655882e-07} {"commit": "25c37e980599cc8d6b334e3cf2dd7436968efe5e", "message": "Sophia tests\n", "proba": 1.2656629451157642e-06} {"commit": "7e78b7d704cd7e4d139551f39f0131cf2b00e25a", "message": "Rename suite to test_suite because the function name is also \"suite\"\n", "proba": 1.191409864986781e-05} {"commit": "51f67d940479a29a066cd08654c0d188e6d1e603", "message": "Add locations for the ARNA campaign\n", "proba": 1.7380489225615747e-07} {"commit": "1867a8e0db25c4a79de97185b6765c188db1d97f", "message": "Se agregan las urls de t\u00edtulos\n", "proba": 8.055358193814754e-07} {"commit": "85f9765120cb15c194cb87523b4c30dc3135ad79", "message": "Added BuildPublicDataSet.py (IN PROGRESS, DOESN'T WORK)\n", "proba": 1.0543548256691793e-07} {"commit": "954523ca3c462abb977f1fa744f7278029435a70", "message": "Python asynch file test script exits eventually\n", "proba": 2.0042818960064324e-07} {"commit": "96eaf2e3b00eeaaeabcacbdd6279400df60cb124", "message": "Removed more superfluous code.\n", "proba": 5.39292955181736e-07} {"commit": "cb224b959190ced2c95b5cc35b3606c26959f0b7", "message": "Split out microcosm views from generic views for refactoring prep\n", "proba": 1.3538338862417731e-05} {"commit": "f3f782ab069cdcbe302a28156bf1b30e4df1e7ef", "message": "Bug when not logged in\n", "proba": 2.484620722498221e-07} {"commit": "634172864bc5d862b74e66f58c85cfc7bb2ed77a", "message": "Added check for unrecognised configuration options.\n", "proba": 1.110703919948719e-07} {"commit": "3707ed6b193a5eed9ec4505f6a283fdaff07ad5e", "message": "fix deprecated method\n", "proba": 5.301487908582203e-05} {"commit": "1b36870897893dde56a226a30cdf999665465a06", "message": "fix(io): don't expode on TypeError during collect_input\n", "proba": 9.270933674088155e-07} {"commit": "1095628b8a37cef80c13b3b5f0f465ee186edb5a", "message": "Clean up display\n\nDon't print retry errors by default.\n", "proba": 1.2326657383709971e-07} {"commit": "c4a85ab1d188eacebab14f1fe95b2316e8d7a38f", "message": "Add flush option to disable flushing iptables\n", "proba": 7.631389280504663e-07} {"commit": "dc977d4fd0dc8434468f26098e67134f1ea516ec", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "c0894d3c14b8273364454dfa13c94311578ff698", "message": "update for diverse usage\n", "proba": 2.0863068073140312e-07} {"commit": "e379f35a15956204f09aa593979fe0a0186cf56e", "message": "Update the upload tool\n", "proba": 4.362399579349585e-07} {"commit": "25b6455ba816958b9c5ca15ef218164dc1365015", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "e9bcab9434325ac4ea955a5b1e4515e3251a29d4", "message": "Add support for Foo__isnull=True/False. Also, clean up our generate_param and get_filter_params to only use locally scoped variables for code clarity.\n", "proba": 1.1890208639897537e-07} {"commit": "08b85a4f755b85fdffa67576b71402e70de32364", "message": "[Discord] Optimize blackjack command\n\n", "proba": 9.887427040666807e-06} {"commit": "c4975fd5c85da539b1a66b693d8dd368b0281a03", "message": "Experiment with adding 10 to cost after scaling\n\nSeems to work quite well, actually. Need to understand why.\n", "proba": 1.0562831675997586e-07} {"commit": "f4bd2e4aaf78263aaf41f282760b8f505041ec7b", "message": "xgl-generate.py: add LayerGetProcAddrHelperSubcommand()\n\nIt generates layer_intercept_proc() to intercept all but\nxglInitAndEnumerateGpus(). It is possible to extend the subcommand to get the\nlist of functions to intercept from command arguments or layer spec files.\nBut we do not have the needs yet.\n", "proba": 1.2460760956400918e-07} {"commit": "e3bf17b250151d4be628bd752a0577017bb27f03", "message": "final version of nlp.py code\n", "proba": 3.9566305076732533e-07} {"commit": "17c86b28f6739c470d5c6fb5cb151a7b536ac7d1", "message": "Added optional arguments to UDFs\n", "proba": 2.500261189197772e-07} {"commit": "7e5a9e8591223d2e98540efd3ac5b3c6eed6366a", "message": "removed spaces\n", "proba": 0.0007537409546785057} {"commit": "2b9735555be182e23038f5e9ecd85e3867c85918", "message": "Remove unused `bootstrap_dos` method\n", "proba": 2.96681173495017e-06} {"commit": "e68da815b21e38fcb7763483eae392e40d21e2ac", "message": "Fix again.\n", "proba": 1.5385796814371133e-07} {"commit": "9442f3375ee20baf677cbdcafdce0c1d5c1007a0", "message": "update stopping cluster\n", "proba": 4.5482198629542836e-07} {"commit": "12cae155107b7739b6fec8cecf6c9a1a319a4406", "message": "Corrected mistake in Plot.\n\n", "proba": 1.3372274452194688e-06} {"commit": "040c90d38b7cdc0400f7e73a6884d2c8fabdd842", "message": "Fixed bug in 'AllTogether' plot normalization; previously, normalization was incorrect when there was a mixture of positive-value and negative-value plots.\n", "proba": 1.6238432465343067e-07} {"commit": "0ebdf7e84ea7d98f369ab77e76c585bc098a0ba3", "message": "Crash when training using example code #156. Adapted demo script.\n", "proba": 1.0057558341713957e-07} {"commit": "42920f7250dc420ca0f612c5c0e4f8e0f3b76885", "message": "First attempt at using CS for errors[touch:3]\n", "proba": 1.0817406348451186e-07} {"commit": "5d207a1ee2d6a811f69988a67bdcd23eb921b333", "message": "A cartel is now generated by a function, and can be located in any position we want in the final document\n", "proba": 1.1512038611272146e-07} {"commit": "be25e99d6a178fa9a15cf86a1bcf88161273fad2", "message": "Expose X-Trace-* constants\n\nFor users that want to know what the currently used\ntrace headers are in a progamatic way it is nice to\nexpose these headers as constants that others can\neasily import.\n\nThis makes it possible to do things like:\n\n >>> from osprofiler import web\n >>> web.X_TRACE_INFO\n 'X-Trace-Info'\n >>> web.X_TRACE_HMAC\n 'X-Trace-HMAC'\n\nChange-Id: Ibd9de5dde77b5a0f8b37b23fefc4ed6167f6a00a\n", "proba": 0.00035263673635199666} {"commit": "e5a3a9e047a6e1a663c7a385be2f06089a66cea6", "message": "Delete __init__.py", "proba": 0.0006957629811950028} {"commit": "34d3dd0e44c0c8b9d0c0980958a047d63377dc72", "message": "Removed debug output, closes #673\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@923 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 3.287469553470146e-06} {"commit": "5754cdf74ad4b3dbe260b3962b03d591ec23335d", "message": "Short triggers disagree with rounding\n", "proba": 1.0261086345053627e-06} {"commit": "89aaf2eba12f51f96f623857e51c264508445b5c", "message": "admin: Made `trac-admin` more user-friendly when the environment has not been created yet.\n\nCloses #8920.\n", "proba": 1.0053204846371955e-07} {"commit": "71f9b5adfb8d8f4481948391f22e49f45494d071", "message": "Added docstrings\n", "proba": 2.763543989203754e-07} {"commit": "2ced0a472fd176784498263ee51339e71134d7d0", "message": " * Provide auto-completion for the ''permission'' command in {{{trac-admin}}}.\n * Add the ''upgrade'' sub-command to the auto-completion ooptions of the ''wiki'' command.\n\n\ngit-svn-id: eda3d06fcef731589ace1b284159cead3416df9b@1437 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 0.9982506632804871} {"commit": "82ccceaa26f31d95f5da04cdee6295c2f4e6cb2d", "message": "Formatting Test results by category\n", "proba": 8.471323553749244e-07} {"commit": "3e988a7c4b0d5407989af8c5ece6ed77a3646afd", "message": "Update __init__.py\n\nno interruption of the written output is empty.", "proba": 5.394387699197978e-06} {"commit": "176b0cbfaba516e8be9b893a805f0846ef936698", "message": "Updates to fix tests\n", "proba": 1.743573960766298e-07} {"commit": "620934a18a9f552438f8a254c6db0f644dd71642", "message": "MAINT: fixes from review\n", "proba": 1.6777528344391612e-07} {"commit": "a653631e831c889f1275320af9010a3097876a1c", "message": "Bumped version to 1.6.1\n", "proba": 2.463222244841745e-06} {"commit": "81eace78438487ac9d320bab2840c8c87718ac9e", "message": "Add mixin for pages with sticky navs\n\nFor pages with a sticky nav, to let tests scroll\nthe page so that the element sent is not obscured\nby the sticky nav.\n\nThis is driven by the assumption that webdriver's\nbuilt-in methods for determining an element can be\ninteracted with cannot know when scrolling stops\nan element from being obscured by the sticky nav.\n\nFor example, the webdriver spec says that a click\naction is preceeded by scrolling the targeted\nelement into view:\n\nhttps://www.w3.org/TR/webdriver/#element-click\n\nThe problem here is that an element's position can\nbe within the bounds of the window frame but still\nobscured by the sticky nav.\n\nThis method should let tests be sure an element in\nthis kind of page is not obscured by a sticky nav\nbefore attempting to click it.\n", "proba": 0.9999970197677612} {"commit": "91af11c9f7a73ca6451d71665bfb0ae17b21be3b", "message": "need to expand out home path\n", "proba": 9.06098557607038e-06} {"commit": "aabaaff2756e8d42c1efb0f70c0dc2ea956d2aab", "message": "1.3.3dev: Remove import unused after r16282\n\n[skip ci]\n\nRefs #12879.\n\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@16366 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 2.0572583707689773e-06} {"commit": "913af18b1a163553e74505ec4776697a1c23f5e5", "message": "Bugfix release, thanks to @toudi.\n", "proba": 1.0301841513182808e-07} {"commit": "3d331ecdb9cb0e64050eb3e4ece27242e1714b3e", "message": "Update C_Temperature_Vertical_sections.py", "proba": 7.687606284889625e-07} {"commit": "8cebce3167f3f22834906e566d6c56ec551caf3a", "message": "added data_yaml()\n", "proba": 2.8518991257442394e-07} {"commit": "f6e12cf95f5d56b7d514de6fbeb7a759f480fe36", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "ba17528db01db1f0df9dd828af75894090e9a68d", "message": "Fix MNIST_SMALL\n", "proba": 4.162359346082667e-06} {"commit": "19de646f60d4fb52ddd26d25e06f50f8717fd988", "message": "what did i do\n", "proba": 0.001853122957982123} {"commit": "9b3d301d4f870f2660089f2b772cb3598e6c0c82", "message": "Add test\n", "proba": 5.080644768895581e-06} {"commit": "37c1b83ec5547266f647e130dcd10081a399154d", "message": "Added a test for URL with existing action strings.\n\nWe needed to use existing action strings for the security hashes\n", "proba": 2.1400046534836292e-07} {"commit": "2bcca13d5861c4ad1d65514f06c4d2fddfa473b8", "message": "clyon.py: replace distutils.spawn.find_executable with shtil.which\n", "proba": 8.375608331334661e-07} {"commit": "b2542f8c3625150f9716eb0b1fcb44ee15520ae8", "message": "mod/vim/install: fix path to nvim files\n", "proba": 3.7980572642482e-07} {"commit": "4877f180bfec5c224bfca0e7c619c4719c8f02d6", "message": "Removed 'import admin' from init file. This should be automatically done by autodiscover() or with custom admin site.\n", "proba": 1.0462714783443516e-07} {"commit": "49c3613c2a56322b080c618b29a85b16e28a36cf", "message": "Auto-generate Wisdom\n", "proba": 5.427381893241545e-06} {"commit": "041ed3ef9006b1b663246c85b707ca3a72ba1f30", "message": "forget generalizability right now, just setup for testing argonaut\n", "proba": 1.1770436714186872e-07} {"commit": "06912580de8ef1e781e8ebae46a4b886da38b8fe", "message": "add --verbose, --onetime options\n", "proba": 0.0004034446319565177} {"commit": "bba9cccd8e454ce78bb39cc33f22f0b38ff04862", "message": "Add about\n", "proba": 9.089372952075792e-07} {"commit": "80f0ddc356ac987479ecf1d36f43f681804226e9", "message": "added big gap test\n", "proba": 1.9432965814303316e-07} {"commit": "6d2e66ab5b9b452474701ffc5035e4a8106db637", "message": "Add test_Record unit tests\n", "proba": 5.164416734260158e-07} {"commit": "c9b0c69367821a9be1b9cb7d762b1f2c9bf4711b", "message": "added logfile check\n", "proba": 9.03291891063418e-07} {"commit": "d8f0c7333aff65ec5912b0a2e2bf1048b0c8f6a7", "message": "Change attribute name as obs is a reserved name\n", "proba": 1.6008007150958292e-06} {"commit": "5e0081ded1fac044e84cf578d895d5911bf6c750", "message": "Made the measure_and_analyse_complexity be a measure_or_pref class\n", "proba": 5.118716580909677e-05} {"commit": "c6b57528046f0a3e9c1712cbc6977a1ed3ea6c50", "message": "Adding lifeline to heal list", "proba": 1.6368258570764738e-07} {"commit": "903e9a2cc671d7038582c033ca8a41d011737341", "message": "add OSX support\n\nCloses #61\n\nSigned-off-by: Tycho Andersen <6b523322678240882acbb4da5312a12d8cd0082d@tycho.ws>\n", "proba": 1.1277882805416084e-07} {"commit": "8b2797af9c17890179b29ddf68c82b9ca70154b9", "message": "Updated usage example for ClientPool\n\nSigned-off-by: Mansour <0a138151f0b84cd00a0d46ca219e90c21972910c@oxplot.com>\n", "proba": 1.1279851719336875e-07} {"commit": "36e066ae645eb9b874ff1ce814708bd024c519e0", "message": "ENH: add support to get git revision from toymaker.\n", "proba": 1.0293160102037291e-07} {"commit": "c97eae522ae4f2c0c31695fbea982f6cad184cc3", "message": "REF: parse global options early.\n\nThis is so that we get the command name very early, and use it to decide\nwhether parsing toysetup.info is required.\n", "proba": 1.1234900654244484e-07} {"commit": "1071f39e1dd253fce8c69de98d3d9e459ee966e2", "message": "Adds URL to imip invites\n\n\ngit-svn-id: 81e381228600e5752b80483efd2b45b26c451ea2@8095 e27351fd-9f3e-4f54-a53b-843176b1656c\n", "proba": 6.691757903354301e-07} {"commit": "6439a730cd895ce6657071cf32f68c0f5d99cd69", "message": "scholar: limit by room\n", "proba": 0.00013089817366562784} {"commit": "068e71d7367bff42fa00f7b6e45fdac3c44291b2", "message": "Domains shouldn't be treated as hostnames.\n", "proba": 8.805197467154358e-06} {"commit": "d9407ebda411d49212da35e27f08718dade1cd02", "message": "Fix: Support Info is unable to read package version and git version\n\nIf GitGutter is installed via Package Control as GitGutter.sublime-settings the PACKAGE constant was initialized incorrectly and thus the version number could not be loaded.\n\nThe cwd argument of subprocess.POpen is required only to read the commit hash in case a user is running a pulled master branch and thus is omitted if installed as package.\n\nTODO: gitgutter_version() -> sublime.load_resources() not supported by ST2.\n", "proba": 1.298618741429891e-07} {"commit": "46122012a10a0a1f49c85ec7898bbdc0151fe4aa", "message": "Attempting to fix ampersand problem", "proba": 6.503923941636458e-07} {"commit": "b7efd7b53e5ed3aa54796c4515e3940788424459", "message": "type of batches\n", "proba": 1.8458233626006404e-06} {"commit": "6c2c178d6328b6571052093f115809df61474c38", "message": "refactor: Reduce the number of dict lookups in `add_currency`\n", "proba": 2.1680355075659463e-06} {"commit": "140713f9ae562c9b070c0f8e5ac8f66d3af43867", "message": "Debugging on Heroku...\n", "proba": 1.264996569716459e-07} {"commit": "659bd0a11bb1460784afc50818be376d112bbfc8", "message": "Test _ravel_shape_indices\n\nProvide some simple tests that verify this matches what one would expect\nfrom the intended operation with NumPy.\n", "proba": 2.493398767455801e-07} {"commit": "7fceba23837eb8ceea6909012d0a65bd17058b09", "message": "Fix failing test for rename file log\n", "proba": 1.436139768884459e-06} {"commit": "6a733da267c21074f78bd1cfb7857e16e4e48d3a", "message": "Fix adding lists/tuples to the HDF under Python 2.2. Closes #1535.\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@1845 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 0.003249906236305833} {"commit": "81a45ec1a6bf0e9b82eee1e575fcdac49474ea71", "message": "py26 compat (forgot to use unittest compat)\n", "proba": 1.0865877442256533e-07} {"commit": "fe22e8f12f3fa4d0742d867e998ff57f54de5bbf", "message": "Minor style changes in test_config.py\n", "proba": 4.400548903049639e-07} {"commit": "3425c2c9d19c1d0a54dafde6cc70d571421c82a9", "message": "Fix string app import error for python 3.5\n", "proba": 0.9992238283157349} {"commit": "8dc3bbc2ae5ad830bcbde777228787a5cdd6383b", "message": "Cleaned train_regression_net.py.\n", "proba": 2.1319583254353347e-07} {"commit": "5e32abdfbe2e1d194cbd2d6e4aa5b26c1c14bd8a", "message": "Updated test to work with webassets trunk.\n\nwebassets trunk treats env.updater=False differently now.\n", "proba": 1.193127161513985e-07} {"commit": "6f8744e4bd632f2df2089dfb50921e1df618afea", "message": "Test coverage for push/pop VLAN config.\n", "proba": 1.1325219873015158e-07} {"commit": "84b266fec5b41aa81622ae800f0491ae47110787", "message": "Clean up test_config more\n", "proba": 1.5505656847381033e-07} {"commit": "dc12a3084ba7c90b108357bc41503e18a0acf535", "message": "Jython SQLite support\n\nUse zxJDBC if available in order to support Jython, which lacks native\nSQLite. Fixes google/transitfeed#245.\n", "proba": 1.0424628271721303e-07} {"commit": "dcfda9f906d417ee3a62d3125f052bfad074100c", "message": "Add case-match label\n", "proba": 0.00048318193876184523} {"commit": "1df8efb63333e89777820a96d78d5a59252b303d", "message": "Rename test specific to with gpg\n", "proba": 3.7109955997038924e-07} {"commit": "c4b83a0d870e0eb283540cdb9198839eadf49276", "message": "Only defined ephemeral block devices if the instance type supports it\n", "proba": 1.3035398183092184e-07} {"commit": "642de6f1682c93c0fdee4216b3e0617c2d71a7fc", "message": "Mark this test as flaky (#678)\n\n", "proba": 0.9999516010284424} {"commit": "2a82f1893c9b4bbf34bf70d661413e47d4fbdc10", "message": "Delete test_downloader.py", "proba": 1.0886139989452204e-06} {"commit": "905c4911cefd4f77f71bbaecbe9f6cf205383e36", "message": "fix missed yield from and decorator in cursor tests ", "proba": 1.5797429853137146e-07} {"commit": "7fc5fdba58880c782af54b669070592277b67583", "message": "Test decode binary with negative length\n", "proba": 0.9999964237213135} {"commit": "64dfb4bad666838117dc26687b5954345c1f522e", "message": "Fix error checking so it only checks correct behavior of asbool.\n\nPreviously, it also failed if the value of the value that was not boolean\nwas incorrect.\n\nSigned-off-by: mulhern <7b51bcf507bcd7afb72bf8663752c0ddbeb517f6@redhat.com>\n", "proba": 3.1523647976428038e-06} {"commit": "04ffcddb85a4c76b403697e4a695462a2d9a8e18", "message": "Changed the format of node status and client status.\n", "proba": 1.1911738795333804e-07} {"commit": "7c936ce69a09fc57a3ed8c27cdbcca25ac26ee6c", "message": "Adds del_job test.\n", "proba": 2.8420134867701563e-07} {"commit": "00cd30ff97eaee11a7216d806f2a66bb8495465a", "message": "Use @has_request_variables in json_remove_subscription.\n\n(imported from commit b08b7672959f8773db1ff7e40b53648926b47a09)\n", "proba": 3.865539213165903e-07} {"commit": "274a77b7a17d5eced38aab6b159e1818ced84911", "message": "Fix writing unicode file in tests.\n", "proba": 4.3136941485499847e-07} {"commit": "251177e8cf016d92c07702692a2f0a3d12c6f86f", "message": "Add a server-side check that class/instance names are valid.\n\n(imported from commit 4534239e57b08b4d01d2caa68134e205ce6c225a)\n", "proba": 6.556853691108699e-07} {"commit": "cdbeb65ede103cbcd0e8ef8f5f4a706e6c807dcb", "message": "Run tests more verbose.\n", "proba": 4.0531836020818446e-07} {"commit": "79fbb23356c7d783304b0aa9c3c9dcc7856d49d2", "message": "Return a max_message_id when returning no messages.\n\nThis is needed for an API client to setup a nonblocking subscription.\n\n(imported from commit d978c28994c5e3af4312ffba32c4040e8314c247)\n", "proba": 1.7038209421116335e-07} {"commit": "828ba6472468020e69812420b4b15959418fbd93", "message": "Fix Elasticsearch query\n", "proba": 0.9997724890708923} {"commit": "5413f74a7e7ad0a3f8ccf46de018c8a8bd356ee3", "message": "Allow API users to update the pointer and receive pointer updates\n\nThe get_profile API call now returns a client_id, which an API user\ncan pass to update_pointer and get_messages (note that clients still\nneed to pass a pointer argument to get pointer updates). This\nclient_id is currently the equivalent of the website's session key,\nbut the website might get client_ids in the future to distinguish\nbrowser windows.\n\nThis commit differs from 88f6cf0033c849af88d1b99da3bdc2148dfbb6fe in\nthat it uses request.POST.get(\"foo\") instead of request.POST[\"foo\"].\nFor some reason the latter triggers CSRF errors.\n\n(imported from commit b2a4a7322d16dbf241cd6eef146621c79d84cafc)\n", "proba": 0.0035415594466030598} {"commit": "0de9a0076b773da1e9e12dd6f495ab2cbe519bb6", "message": "test_error make sure number doesnt have trailing spaces\n", "proba": 2.1225969248916954e-06} {"commit": "30d77f9b076210f66887c05a1c72d992cec10ac5", "message": "Tweaked the stash tests.\nAlso fixed test_derefencing not checking that the handler was actually\nremoved.\n", "proba": 1.0110373693805741e-07} {"commit": "c6d1da09b89808b6e18fb6ab076f5aae2a745de7", "message": "test fix to prevent it from running too long.\n", "proba": 1.6186267259854503e-07} {"commit": "b6a2335f9a462fe68d4d0e27c71d6b1e9bbde734", "message": "Tests\n", "proba": 3.041871877940139e-06} {"commit": "1708f452d63bc3ac90defdd3bdf5998bddc1d035", "message": "0.12.9\n", "proba": 1.092539241653867e-05} {"commit": "e211604024f51e0456b15060cfc92a283a1a567b", "message": "Fixed up freeze tests.\n", "proba": 1.2753680778132548e-07} {"commit": "24eb080dcfe3392f36afa07144ffbb78aa330e91", "message": "0.10.37\n", "proba": 3.776080347961397e-06} {"commit": "64491b34416c4e2d8652878a71ead4800cb1e536", "message": "Properly import time\n", "proba": 0.00017434191249776632} {"commit": "a65fc0b08a8e171b9455eb3e8bbcba414e819ad5", "message": "0.12.55\n", "proba": 2.8486745122791035e-06} {"commit": "687d2a880c8aed20b5ed9dc9ee7f8d3aecc37243", "message": "genome tests\n", "proba": 8.47850856189325e-07} {"commit": "84e5871b13df5a42d91c6f4748cbce7bc4d4cd0f", "message": "tests pass\n", "proba": 9.660087698648567e-07} {"commit": "be938ea353445be0db1643c04bc2ee8268672ed6", "message": "Assert on correct stream.\n", "proba": 2.707818339331425e-06} {"commit": "46bc59e8b5d213e373fc71e646451d5c00519058", "message": "Apply formatting.\n", "proba": 2.3084679412477271e-07} {"commit": "baa09d2de66820778ee53a5e4988a5b72834e829", "message": "Rename hybrd -> hybrid.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 1.1740190331011036e-07} {"commit": "5ed5d52f8553010711bd56e1641d545a1cab0bb4", "message": "Automagically swap start and end delimiters of bitfield slices, to enable a more natural use of said slices.\n", "proba": 1.0487829626981693e-07} {"commit": "e6f0bc1f0394e091bfc2311f99d2935932f92aa0", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "baf6f344ff98addc4e00c17097e0d9fdd7f4b70b", "message": "Updates\n", "proba": 6.962063707760535e-07} {"commit": "2df32c1ff74706cfbb04a698d6aa814828469b13", "message": "Annoying assertions.\n", "proba": 1.865043145699019e-06} {"commit": "325e294c03f7987e0e888c96ac14aea8c97dfc40", "message": "Skipping memcache memory leak test\n", "proba": 2.594059935745463e-07} {"commit": "f13d0169df81bfa022dba9a69f16de8dfc34bdb2", "message": "update filename_meshes in tests/test_meshio.py\n", "proba": 5.057827934251691e-07} {"commit": "5192e692e1cba61ef81c7eb07ef9d6a8ccd802c4", "message": "Prevent connection error in test\n -See https://travis-ci.org/CenterForOpenScience/osf.io/jobs/158858235#L3827\n", "proba": 2.301008095173529e-07} {"commit": "80c727b4ccd6e4b5f3256e3e2c1790d9c0b277d9", "message": "Parametrize model classes, not names.\n", "proba": 1.1962842449975142e-07} {"commit": "84edf35f3383c8481395f9cada6b248c639e48a3", "message": "added saving tests to cpu\n", "proba": 2.9461850203915674e-07} {"commit": "c5f44c9dda9905e9aa817c1945d49892e686f9cd", "message": "Fix failing test\n", "proba": 0.00020873398170806468} {"commit": "eefa529cf5c9d459dec467209238a9e89fd09940", "message": "fix the last test\n", "proba": 0.9999737739562988} {"commit": "c387528caf0cbd48c999fe586dbc00e4121126cd", "message": "change tests to look for root\n", "proba": 2.8100203053327277e-07} {"commit": "bb725ad57d9ed9b9540dc09623f32a80f30ab3af", "message": "Bug fixing in model and word2vec reading\n\nBug fixing in model and word2vec reading\n", "proba": 1.6527674517874402e-07} {"commit": "79f119e81ab855164edd83408d0fc344801a2f64", "message": "[skip-ci] fix naming\n", "proba": 1.200406927637232e-06} {"commit": "03ecb32727097b58f702088d8805c0067feb1dc0", "message": "Desirailize with incomplete order data test updated\n", "proba": 3.630053413417045e-07} {"commit": "d73d8700deb1244ef3d96400cfb3cbf79c28e509", "message": "Add test to formalise attribute behaviour\n", "proba": 1.3073796480966848e-06} {"commit": "2fe5f2ed4c396deb7b372bf5a086bdbc646aa7a2", "message": "Added tests for `lark.lark`\n", "proba": 1.605309165597646e-07} {"commit": "60f1a33092f3139bc1e0856db6cc737b601aa266", "message": "Test `a::b = nil` assignments, which are currently not supported\n", "proba": 1.4159443253447535e-06} {"commit": "78776a7eb79ec0960d72e5911a72b9e275c8c653", "message": "Moved duplicate check_gas print statements to an abstracted helper function. Added assertion that all estimates are geq actuals per documentation.\n", "proba": 1.0013437901079669e-07} {"commit": "66eddf04efd46fb3dbeae34c4d82f673a88be70f", "message": "Test the ability to add phone to the person\n", "proba": 3.183243825333193e-05} {"commit": "9cc1ec4ddc146df98238a49180af6c8d8595e302", "message": "more tests\n", "proba": 1.297568985592079e-07} {"commit": "5017ee713fd03902aa502836654e1961fb7575f1", "message": "test form action url", "proba": 1.6510359728272306e-06} {"commit": "d0e4fc19e81d3ca7abe6cc4b002788c280deebc3", "message": "Added a simple test for the command-line interface. This allows us to get quite close to 100% test coverage\n", "proba": 1.168641503568324e-07} {"commit": "79c76168e82d4ee794455da6dfcd526fe026c4c1", "message": "Added a test for a simple model which involves arrays of processes\n", "proba": 1.3857092540092708e-07} {"commit": "8572d78faf5b5032fb494f07a687f1154729c2d9", "message": "Add tests for rabbit driver wire protcol\n\nAdd two test cases:\n\n - send messages using the rabbit driver and check that the message\n gets sent to the expected queue in the expected format\n\n - send messages to a given queue in the correct format and check that\n we can happily consume them using the rabbit driver\n\ni.e. these are tests that check that the driver sends and receives\nmessages according to the wire protocol.\n\nChange-Id: I6a48085585981b17609b31f216bdca438e90e068\n", "proba": 0.9999779462814331} {"commit": "5e2b9410a7db019e4ad1056ec0a3d507374e5e4b", "message": "Make sure that get_user_config is called in replay.dump\n", "proba": 5.422240064945072e-06} {"commit": "568bc8141249826e64c3d2afb48fb063a611a77c", "message": "Added two tests for the transform method\n", "proba": 1.7357166370857158e-07} {"commit": "2892a979f2b58cfa3f119ff95f928bfc82106ca4", "message": "fixup! Fix line length\n", "proba": 0.0020398874767124653} {"commit": "9f7a43e4430f1ad42cb5e365e6165db7d51658b6", "message": "remove direct test of monofit-function\n- required to avoid tests of list-like datasets (no longer supported from now on)\n- the whole test is anyways included in test_rtfits_performfit\n", "proba": 3.6063858033230645e-07} {"commit": "d0a22b8ef594f843be1f7504f6cacc0ec38a3739", "message": "Ensure usage message uses basename of program path argument.", "proba": 1.3146760124982393e-07} {"commit": "289b125fe78af7c51630cc115aa827c310f33497", "message": "Organize error_handler and data_handler tests into test classes\n", "proba": 7.240802369778976e-05} {"commit": "63cca49feda68a36d31f8115ebbe5dda67b986cc", "message": "\"Merge pull request #89 from tflink/master\\n\\nMove check for flask-script before importing ManageAssets\"\n", "proba": 9.976035642011993e-08} {"commit": "a995655ec55f940f1cd3687ad279067795db78f7", "message": "Bugfix in matrix multiplication in output computation in iosys.LinearIOSystem\n", "proba": 6.643849701504223e-07} {"commit": "840691a6cb226472fff4a25d2b255483ab80cb4b", "message": "test: refactor outcomes to helper assertion\n\nSince each time we're asserting the output of the test as well as the\ntest outcome, we can clarify the fields of `parse_outcomes` in one\nplace.\n\nSigned-off-by: Mike Fiedler \n", "proba": 6.959773600101471e-06} {"commit": "080f0ba7a3ec4fc693c7e0903ed0f3a21b082824", "message": "fixed test exponential for linear systems\n", "proba": 5.621113245979359e-07} {"commit": "563bbbbf80514e8b9c41123d0b0b4475ed99897e", "message": "fix stream tests\n", "proba": 1.084029690900934e-06} {"commit": "b406e2dd4f2bae263435e885f70402aed64474e6", "message": "Check for bash on windows\n", "proba": 3.443572040850995e-07} {"commit": "02bd3772fcf20d9dc54bd94c125c2efc6ae01537", "message": "Make sure structs are pickleable\n", "proba": 0.000225421303184703} {"commit": "9594ae70f6d6d3e5979fc952f8cf96bf1410bc5b", "message": "add remote-control option translation tests\n", "proba": 4.132979540827364e-07} {"commit": "28f6af7f84860535a1a82750df286f78320a6856", "message": "Fix monkeypatching\n", "proba": 1.3443084299069596e-06} {"commit": "551e0f44d9da2d5ac39912b8b5787505deb5588c", "message": "remove old tests\n", "proba": 0.0007431523408740759} {"commit": "1aea91a488633b701ecee6200c3b91047f8284dd", "message": "tests: add test for insert_multiple with `Document`s\n", "proba": 2.097460622962899e-07} {"commit": "91a7d5e8bb52ef2b126fa562588c71bb1c7896c6", "message": "Added test for python_script arg into flash function.\n", "proba": 1.0707378805818735e-07} {"commit": "a7e83b2b6a3f4fbc105703e7208d00cded14ba60", "message": "convert some tests to pytest format\n", "proba": 0.9999940395355225} {"commit": "36200dea5889bdf4ad920adc1ab04ae3870f74ac", "message": "Edit varnet model (#5096)\n\nSigned-off-by: mersad95zd \r\n\r\nFixes #5095 \r\n\r\n### Description\r\n\r\nMinor fixes to varnet model (its unit test).\r\n\r\n### Types of changes\r\n\r\n- [x] Non-breaking change (fix or new feature that would not break\r\nexisting functionality).\r\n- [ ] Breaking change (fix or new feature that would cause existing\r\nfunctionality to change).\r\n- [ ] New tests added to cover the changes.\r\n- [ ] Integration tests passed locally by running `./runtests.sh -f -u\r\n--net --coverage`.\r\n- [ ] Quick tests passed locally by running `./runtests.sh --quick\r\n--unittests --disttests`.\r\n- [ ] In-line docstrings updated.\r\n- [ ] Documentation updated, tested `make html` command in the `docs/`\r\nfolder.\r\n\r\nSigned-off-by: mersad95zd ", "proba": 4.123454345972277e-06} {"commit": "0a770d26e77026e8ba524eb21c641a0c1c574e0d", "message": "Fix import of tzutc from dateutil to also work with versions < 2.5\n\nSigned-off-by: Christopher Arndt <711c73f64afdce07b7e38039a96d2224209e9a6c@chrisarndt.de>\n", "proba": 1.1112845044181086e-07} {"commit": "ddd3947514900d99bc644b8a791a92807bee4f2c", "message": "use mock\n", "proba": 1.5598856407450512e-05} {"commit": "984a49ccb98143018bea03f65ec26c1db37ef958", "message": "Add tests for search parameters.\n", "proba": 1.3163320033982018e-07} {"commit": "e0a4459f732d605bc1c3d528078c1ea7fd8eb916", "message": "Add short wait function and call before each test.\n", "proba": 4.2340496975157293e-07} {"commit": "ec72440af0785b449e8a74b3fcadbfa214a4c304", "message": "Extend tests for _spec_signature\n", "proba": 1.0821921705428394e-06} {"commit": "83ac6ecd0850d4110888f2bf838f8adf09affe85", "message": "comment tests\n", "proba": 3.960450953854888e-07} {"commit": "533f46add4ac7499a862ec2f4ffc7e1f946213ed", "message": "\uc57d\uac04\uc758 \ucf54\ub4dc \uc815\ub9ac\n", "proba": 1.2333447330092895e-06} {"commit": "fd61168b3b54cb584441aaccc5cfbd2ba904ae3a", "message": "added new command\n", "proba": 4.875248578173341e-07} {"commit": "bc9087163aa289bb4d30a4cdae4f77b861c97f62", "message": "Completed solution to Part One of Day 4\n", "proba": 1.3334015136479138e-07} {"commit": "5b2070390c4c184dcaf1e039bf8444fde0bc767f", "message": "Adjust the test to show that the store gets registered with the \ntransaction when the register-transaction event is emitted.\n", "proba": 1.206778108553408e-07} {"commit": "ad012469d17bd3b7fab70fdfa4ca552ded0a982e", "message": "Move list of exceptions to catch\n\nSigned-off-by: Zack Cerza \n", "proba": 1.1204298999700768e-07} {"commit": "975d094703f7d4459d982ec27c317eda294596bb", "message": "report: skip if result_server is none\n\nSo that it can be deactivated if running paddles is not required.\n\nSigned-off-by: Loic Dachary \n", "proba": 1.4543299187153025e-07} {"commit": "95a42ca5a25fe48b7d0ca69c75d8a772ff4468a5", "message": "\n\ngit-svn-id: http://dmide.googlecode.com/svn@33 a812e4ac-3740-0410-bb29-cddadda57e64\n", "proba": 4.7269969627450337e-07} {"commit": "872a513045517bb9d0f9745288a5782a1549d05c", "message": "1d-array class is a _lot_ faster than ndarray...\nhopefully this solves drawing speed issues\n\ngit-svn-id: 94173bd64de46a96edb3f322c9878bdd956bcbff@91 40e545cb-b269-0410-8983-4113551e4d47\n", "proba": 1.627135702619853e-06} {"commit": "3e84dcb7b449db89ca6ce2b91b34a5e8f8428b39", "message": "Allow sub- and superscript tags\n", "proba": 5.842553036927711e-06} {"commit": "e569f3590348eedd79b6e8e2b933d9919796c598", "message": "Fix settings\n", "proba": 1.0833093710971298e-06} {"commit": "6bd4f50417f5ed9751212630813b3e762d10cc9c", "message": "Adds default option for environment variables\n", "proba": 7.68747383972368e-07} {"commit": "b3c55b059293d664d3e029b9c3d03203ff4af5a5", "message": "remove ws\n", "proba": 5.3542567911790684e-05} {"commit": "817b9d8b65551748aa3738f43cc26fbcf37f3ede", "message": "Remove unnecessary apps from INSTALLED_APPS.\n\nModules only need to be in INSTALLED_APPS if they provide models,\ntemplates, template tags, or other such things. We have a few entries\nlisted that do not need to be there.\n\nOne of these, djblets.webapi, introduced problems when we added models\nto reviewboard.webapi. App labels must be unique in INSTALLED_APPS,\ndue to several assumptions in Django, which was the source of this\nproblem. (Note that we still violate this all over the place, but it\ndoesn't seem to matter too much right now for the others.)\n\nReviewed at https://reviews.reviewboard.org/r/6085/\n", "proba": 5.868458288205147e-07} {"commit": "9908617a966f990a04bff9dde4c8cafc5498e124", "message": "Added isoform option for finding periodic lengths\n", "proba": 2.3437971208295494e-07} {"commit": "0dab20437e415ef902d039681dab4c9955f5404c", "message": "Added iTunes Overcast app icon to root media collection categories.\n", "proba": 9.941010148395435e-08} {"commit": "066c61080bdc05009d30fe07511f5b0ef07446bd", "message": "Tried to fix cache problem\n", "proba": 4.2358550444987486e-07} {"commit": "351bc34015f162fab488165de97e7c772aa4c64d", "message": "remove unneeded globals, lockfile module, use tempfile instead\n", "proba": 1.4484237453871174e-07} {"commit": "5195b1d7b0f4efc29dd01c8480cb01769904c2ce", "message": "convert search string to bytes\n", "proba": 0.9999992847442627} {"commit": "6578f74771126135c94d7e57ffd31c40931bd934", "message": "Don't need to check keys when using IAM roles", "proba": 4.5644449642168183e-07} {"commit": "0f7013f2da7fe49c404348cd943f12526d99b6d3", "message": "commit die\n", "proba": 1.048460489982972e-06} {"commit": "286cae29d10349022242111e03dd1b4bca60fc2d", "message": "Add custom colorbar axis and units kwargs\n", "proba": 1.7631208493185113e-07} {"commit": "bc46193efa03be12e16d85e79a223d771335e9e6", "message": "update to latest abox.py\n", "proba": 2.434828729747096e-07} {"commit": "db4ccce1518a862cf15ef8be39c2fe7ee6a38eb6", "message": "docs correction\n", "proba": 6.247477131182677e-07} {"commit": "1d6706e648fb98f56e7d9ff82755829599a39e6d", "message": "Fix always-incorrect comparison on object types\n", "proba": 0.032292064279317856} {"commit": "cfeed9ac25dc8e6dddca553930cacbf1366ee907", "message": "Better catching of encoding errors\n", "proba": 1.718027533570421e-06} {"commit": "484212572bf9495e87c990f78e5ef5551b96a0ef", "message": "pretty-printed\n", "proba": 9.600739758752752e-07} {"commit": "96d86eeef0fd8a563f35caaa8b1de19f9865e381", "message": "developing\n", "proba": 1.0944079349428648e-06} {"commit": "2f90839f6620d415b0ad21a3568f4debc3f20379", "message": "Fix quotation marks bug and add contraction of had/would\n", "proba": 3.1643838838135707e-07} {"commit": "0d19580dea7095a4ccef5267bdbb508cbc0dd79b", "message": "pmultiquery makes a dict of named tuples now\n\n\nFormer-commit-id: aa764ab5cf2748da587ab8cc604c3c7b36168395 [formerly aa764ab5cf2748da587ab8cc604c3c7b36168395 [formerly aa764ab5cf2748da587ab8cc604c3c7b36168395 [formerly 88bdcf67e82b20a0b292d30768b008695cfeae90]]]\nFormer-commit-id: 4941292037016e5a1b702d8d2b5e835c65c68bd3\nFormer-commit-id: 7c91a7a44b3bf92b5cf50829fbd0de2c7c662357 [formerly 0ae5b6c321823d6670a6abfc8ffdcc07009d7da8]\nFormer-commit-id: 4ceadd42723cee0472467160edd7e5102e60710e", "proba": 0.0019005744252353907} {"commit": "aeadf9ddc27ad51b270405203cac4fdd551cb63a", "message": "Added info to output video\n", "proba": 1.1290065060620691e-07} {"commit": "ec699b811175bbdd882b46d36777985c8a1d380f", "message": "cleaned up abstract table\n", "proba": 9.858540579443797e-06} {"commit": "788ee3a666d05b926d5f6a5974295c40d4637d1f", "message": "QAO-231 - Updated S3Client.store_file to use the filename to guess mimetype rasther than the file path. This allows StringIO objects to be passed through the file_to_store parameter\n", "proba": 1.2678952998612658e-07} {"commit": "499857e67fb4e5bfc655dd5350fd852f54a0ea15", "message": "Fix co-operative inheritance for ec2 model (#1383)\n\n", "proba": 4.824137818104646e-07} {"commit": "9689f4096fb9ef44c100eadac1b2ea59c553b008", "message": "Revert \"Better explanation.\"\n\nThis reverts commit fd4c7d769653a443b1fdb54da4bc8c71ba09bfdf.\n", "proba": 4.1245417037316656e-07} {"commit": "98a89c84b08c80de8ecad2af911037a6b237bf3a", "message": "added deprole processing, function_filter, US -> UK spell option\n\n\nFormer-commit-id: 3791ea17886824676c8d09d8ff00c8255e6b5d29", "proba": 3.2797242965898477e-07} {"commit": "56cb14754d2084f5660c8c7e16906e13d99973fd", "message": "Fix lstm\n", "proba": 0.0015128041850402951} {"commit": "9337a8c1a658a7447c41f72f4ffb673694a96fe9", "message": "remove Enhanced prefix in connections\n", "proba": 1.5239982076309389e-06} {"commit": "ccaa1b6157d000c620a0c51445259bbd4a2ab328", "message": "add support, git add * & .\n", "proba": 1.1046003578485397e-07} {"commit": "0ac7fae8aa19cc969a5a4dc0bfbc500c8c60fdcf", "message": "seems relatively stable now\n", "proba": 2.357678567932453e-07} {"commit": "32dd33126c9fa0076c8d7c9e8024a709674f8614", "message": "Bump Version 0.0.28 -> 0.0.29", "proba": 2.2913685882031132e-07} {"commit": "25ae4d42a2d3c50007d369c3288c0482037d95e0", "message": "Fix encoding error in ecr/models.py\n", "proba": 6.788493192289025e-05} {"commit": "ded1f583615c70c306553d68235807825292e290", "message": "minor tweak on _parse_filters\n", "proba": 2.609418743304559e-07} {"commit": "8e23e533212cad7a07078ba6f27ada7ff6325556", "message": "fix group display method\n", "proba": 7.082006163727783e-07} {"commit": "9101b5893469316255e86594664e3414d405d9fa", "message": "Need to speficy how we are sorting.\n", "proba": 1.1322433834948242e-07} {"commit": "ab8235b40c7afa36d73fd1713facac937d0df082", "message": "S3 Fuzzer: changed output and failure catching.\n", "proba": 1.0914107662074457e-07} {"commit": "03986df929a2dd59e845bf4be90b1acf3b09e0f2", "message": "Update syntax\n", "proba": 1.5688837038396741e-06} {"commit": "27c7eed060ec0d6f29f6ded97e5c3610f1a5ff36", "message": "Teaches IRCBot to identify\n", "proba": 2.0913785192533396e-07} {"commit": "76396ad0cc23ad11562d8e4585e2ff0979c21aed", "message": "Capture user agent when tracing (#8094)\n\n", "proba": 1.240025397919453e-07} {"commit": "d9472356e5abf33a622a6c69e42d644dd53f6609", "message": "I fail at linting... Fixed my uppercase/lowercase problem\n", "proba": 2.3139043605624465e-06} {"commit": "5fc7ce2ed327e985343f9b2413903f588827d5eb", "message": "Fixed bug in client. Needs parens on if logic (and not on both or clauses unless parens)\n", "proba": 1.1463658466936977e-07} {"commit": "5fb8190d44a115660bb85369dc1f0dd2e7f54b4d", "message": "Ensure batch uses passed eauth token or credentials\n", "proba": 2.2157720991344831e-07} {"commit": "20ec1347805110b362e6349c1f41347598d66875", "message": "Fix usage of logging pylint errors\n", "proba": 4.218776211928343e-06} {"commit": "c97580f1ff53a17f57674fe60752fbcd81d9ee43", "message": "done with create course announcement changes made\n", "proba": 1.1393913723622973e-07} {"commit": "5f5f66fe38f0c6ce12a7464cc8ca2404c8dd72d8", "message": "parse highlighting options only if highlighting is enabled\n", "proba": 6.256659617065452e-07} {"commit": "50ebe9e9741dc446c15671ab7a41d014e50c9bea", "message": "Add note about changed behavior for archive.tar\n", "proba": 1.8269149393290718e-07} {"commit": "c0e6ea98a68cec87a3088a8c4369149411bfb039", "message": "fix network.active_tcp on SunOS (we fake it until we make it) #29232\n", "proba": 1.704682262015922e-07} {"commit": "f7cdc73c18b372e8001ac564af50a07a265f4f7c", "message": "Add missing CLI example to ``network.fqdns``\n\nSigned-off-by: Pedro Algarvio <09cbe6caca393bd5bff64d4c1f1ad660b906a807@vmware.com>\n", "proba": 3.4473284813429927e-06} {"commit": "bc10bd0474105e8257174f31e883ab84cc763b05", "message": "changed _interfaces from private func to public one which returns a dict of interfaces\n", "proba": 3.9606248947166023e-07} {"commit": "67266a37470cc7b435aa6ecdd17a327fdd88bf2a", "message": "Fixes modules.vsphere:\n- removed duplicate functions\n- moved vm related functions to one place\n- added esxvm proxy support for multiple functions\n- fixed and changed exceptions, removed undefined exceptions\n- fixed vm comparison\n", "proba": 2.708564898057375e-05} {"commit": "fa43e4cb471c37ce4ae8cbd6a69df19d66a557be", "message": "Parrallec copy process now without fixed queue done by dask with dask progress bar, and default copy task set to 25 according to benchmark\n", "proba": 1.2127416937346425e-07} {"commit": "de9525f328373e180f8b5793620a0ca217a7434c", "message": "fix setting board\n", "proba": 6.36605761883402e-07} {"commit": "15624a9b1cfe8b9c27a6fd3eeb55b76b3cf29a32", "message": "cleanup: remove remnants of the old ctypes approach\n\nThere's no need to import ctypes, and the data length is no longer needed.\n", "proba": 2.599119000024075e-07} {"commit": "720475822740ffcca58e01a5d800a55a75788933", "message": "add extra_lines_start parameter\n", "proba": 4.9829181989480276e-06} {"commit": "da5434b91002caf90e64728f7f4c10965626be96", "message": "Fix salt.modules.win_pkg.latest_version\n\nThe return dict needed to be initialized with empty strings, as done in\nthe other providers. Fixes #5746.\n", "proba": 1.1844011282846623e-07} {"commit": "7f3f588d8b60a4ceb78a373feb2c41296bc859e9", "message": "Catch adding event handlers that are not callable\n", "proba": 7.334012366300158e-07} {"commit": "56c9bc77fdb1376ac1f60cb7a0f25ec6cbfb04ea", "message": "docstring for obj\n", "proba": 9.466677147429436e-05} {"commit": "2337ea394ee3cd09eb8d485a8ffb253a6b1467c0", "message": "Update docstring", "proba": 1.205138460136368e-06} {"commit": "d0e369fcf43dadf01a2f4d7ba4cd172f2ffebde5", "message": "FIX rounding\n", "proba": 6.684397249046015e-07} {"commit": "03ab9df7f03192dd8d07a70d141b71cad73da019", "message": "Bumped version number for v0.1.3 development.\n", "proba": 1.1247271913816803e-07} {"commit": "99ebc8f510262addb30a57575b63ae523c432e55", "message": "py3 pydsl\n", "proba": 1.5483269635296892e-06} {"commit": "363583654998e404baba9b72860d2465bb3d339e", "message": "Remove convoluted meshgrid statement.\n", "proba": 4.615956186171388e-06} {"commit": "aedc09e03d9079766b1b559245d4fc4002d58819", "message": "Update KinesisFirehose::DeliveryStream per 2020-10-22 changes\n", "proba": 1.1918864117888006e-07} {"commit": "b1da5ab87344976c721100c76cd39369aad1845a", "message": "wake on lan match with grains cache\n", "proba": 2.3670236259931698e-07} {"commit": "7c78f60e4d2db0aba847e7358beef23eb45c3742", "message": "only consider final votes\n", "proba": 1.766871093877853e-07} {"commit": "d9954ec73f7b94d683674dfc7dee07133ca4d434", "message": "fixed arguments for build_rule in insert\n", "proba": 3.716970695677446e-07} {"commit": "b6bd5688b95ac39fa880d91fd9547ecca3676184", "message": "get_real()\n", "proba": 1.5773806808283553e-05} {"commit": "fc6477292db75e6a5814c224605c54d6bb5556b8", "message": "doc update\n", "proba": 3.261732501869119e-07} {"commit": "377b8d6c0f055df7115713df0fe435f0dcb4dd3c", "message": "Share authentication within company only fixes Issue #2\n", "proba": 1.4992694730153744e-07} {"commit": "35ff1a2b83c4251a818ae280db04c5ae4b8cdb0d", "message": "tools: add option to set config file to check style\n\nTo make it possible to be used by other projects.\n\nSigned-off-by: Bruno Dilly \n", "proba": 1.1634116958703089e-07} {"commit": "48d8295acdb0ebb2d4e009a292a580dba9488516", "message": "[FIX] email.template: properly propagate res_id over context reloads in composition wizard\n\nbzr revid: odo@openerp.com-20120323154638-f3o52kb2rka4hcrx", "proba": 3.946060473936086e-07} {"commit": "92e60be800d1d11f30adddfb34fc4eba0ca7ab0a", "message": "More flexibility: Preprocessing and storing are both optional.\n", "proba": 1.0747769607633018e-07} {"commit": "c7181d149856d11067b08b7ebe8593489d9babe7", "message": "Ignore non gpx files in input dir.\n", "proba": 1.341490616368901e-07} {"commit": "89e735106334e0870e7e50c354fd0073a08ade2f", "message": "minor debug message improvement\n", "proba": 1.9653749916415109e-07} {"commit": "9744b1b9f8b38b87901a5f7802b497f4d3509a59", "message": "use general pmap writer (can output hdf5), output only 32b\n", "proba": 5.7150268730765674e-06} {"commit": "2bd2232ae45b0124781d35c09862ebc667c0848d", "message": "Possibly fixed a random player state bug\n", "proba": 3.137154465093772e-07} {"commit": "5846d9689f756d0552fbb887397f853c574c6bf8", "message": "add number of windows to output\n", "proba": 8.382229680137243e-06} {"commit": "cc28757f374edabd5e6589c38f75111dec187789", "message": "cmp not defined in python3\n\n#35\n:\n", "proba": 1.2581195107941312e-07} {"commit": "0b1bcccc1da95d274cd92253fa44af7a84c51404", "message": "\u30c6\u30b9\u30c8\u306e\u30c6\u30b9\u30c8\u8ffd\u52a0\n", "proba": 2.080001308968349e-07} {"commit": "26308673e8ffaea7b0f4b2f47a6537641e223aef", "message": "[crclan] Removed arena logging as it may be causing issues\n", "proba": 1.404204539312559e-07} {"commit": "2da0c539817ee6e98d67a669a6f1351dbae146c0", "message": "fix a spelling bug\n", "proba": 0.0031137841288000345} {"commit": "f630824cf1c84c99f0191d714e776010c770ff65", "message": "Add argument to get_status.\n", "proba": 1.9467040601739427e-07} {"commit": "fb3b3c78b849c2ad078751dfc1e2de6e1aa912eb", "message": "Typo in argument\n", "proba": 0.0027167005464434624} {"commit": "aee80cad74bcb868d1cf6531a209649913f220ce", "message": "Fix write_poscar_from_cluster.\n", "proba": 2.682777449081186e-06} {"commit": "d1da925995de8a4fae070a8c6947985441fbfaa3", "message": "remove localhost db\n", "proba": 0.9998132586479187} {"commit": "7177f7e0263d8a5f2adf458f9bfe33bff12137e0", "message": "fix syntax error\n", "proba": 2.7736614356399514e-06} {"commit": "23dc6f049c55aed09f9b5df8fc3cbaa00c353dcf", "message": "fixed spacing to match original code\n", "proba": 3.771470176161529e-07} {"commit": "06143193a5bc2ba6de355c6689cfff55db6b7132", "message": "wording\n", "proba": 0.0029199281707406044} {"commit": "966c9db87574ea9fadab68576536688a3755f8d3", "message": "nanshe/__init__.py: Change information about building documentation to only include using ``setup.py``. Fixes #234. Partially address #232.\n", "proba": 1.0560172114537636e-07} {"commit": "ebff15a89f8346f63d0583ee5e06dd262adff2ed", "message": "Use integer division on Python 3 for TIFF shape.\n\nApparently we were using `float` division on Python 3, but `int`\ndivision on Python 2 when trying to determine the TIFF shape. This fixes\nthese errors so that `int` division is used in all cases on Python 2 and\n3.\n", "proba": 6.477900456047792e-07} {"commit": "67c92c1b924defe433b2db5af885cf9f84d40003", "message": "forgot to remove unused import\n", "proba": 2.483161551936064e-07} {"commit": "458d61ffb5161394f8080cea59716b2f9cb492f3", "message": "Add error message for not implemented error\n", "proba": 1.2325521083766944e-06} {"commit": "460c6ca46524963f1c17d8773dfced0db14af521", "message": "Version number -> 0.5\n", "proba": 6.664702232228592e-05} {"commit": "86812f90fd7365bd8ae913a11bae16aae3b780a1", "message": "image: Allow undefined global_mean in ImageEndpoint\n\nCloses #139\n", "proba": 4.565352355712093e-06} {"commit": "1cae5cf5b2874eb2bafc9486d4873abfa1a58366", "message": "Add log_to_file method\n", "proba": 7.685270247748122e-06} {"commit": "005cb467a9b87d1fb7f8cdaf6271e958f70093ce", "message": "Fix Message.json transformation - so the original value is not changed\n", "proba": 4.393303072447452e-07} {"commit": "ca5c0dcb46bfd907a6debc99f14457c08bcf357b", "message": "Fix description of SignResponse in comment.\n", "proba": 3.2245409897768695e-07} {"commit": "b4efd418644aa039a6dc645aa77f9d1e5a52dfb8", "message": "Adds check to see if the random DOI service gave us anything back.\n\nIf it didn't, the DOI sampler just returns an empty list.\n", "proba": 1.1433655089376771e-07} {"commit": "89cbeb827921c9be58daf0db236479aed499a2eb", "message": "Fix attribute searches as well\n", "proba": 2.0266394074042182e-07} {"commit": "3c63660c2991e7ea81d927ce454f2297e4d484d7", "message": "dispatch theads\n", "proba": 3.8867020180077816e-07} {"commit": "3ba68d84f632323d6c4ad55e9a56b390a30dc35a", "message": "Split transactions' share for multiple attendees\n", "proba": 8.833742413116852e-07} {"commit": "d3fb3afd2e559749f8aa20147c8f49f63f96fc30", "message": "0.12dev: Merged [7915] from 0.11-stable.\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@7916 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 2.6231435185763985e-05} {"commit": "cf8cc12b9a3bb4cfb550db1c75b1fa24db3c357d", "message": "{{{config.options}}} returns a list in some circumstances.\n\ngit-svn-id: eda3d06fcef731589ace1b284159cead3416df9b@1494 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 0.9999992847442627} {"commit": "3f844b149a9de6999e96d1d56dc1af2a1739a35e", "message": "1.1.3dev: Removed duplicate `resource` property added in [13503]. Refs #11766.\n", "proba": 1.0035694231191883e-07} {"commit": "cf55ff98c05563cb06219d7c11658ddf838377c4", "message": "TicketQuery: take care of fine-grained TICKET_VIEW permission on tickets, for the formats other than ''table'' which already does it.\n\nCloses #7105.\n", "proba": 1.1778634245729336e-07} {"commit": "dda474ecf644d42c01d0b18f18a34bb57b8b850d", "message": "Fix regression in [2890] that didn't allow switching back to ascending order.", "proba": 1.231072701557423e-07} {"commit": "9ff4fbcdf5b21d263e8b20abb0a3d0395ce28981", "message": "0.12dev: Document the reason for accepting only `POST` requests on `/wiki_render`, and allow `GET` requests from `TRAC_ADMIN` for testing purposes.\n", "proba": 1.024362887847019e-07} {"commit": "d06a37a028868327f306cc4417ef68c87b1262ff", "message": "GitPlugin: implemented internal `shortrev()` method to avoid having to waste cpu cycles with `fork+exec` to `git rev-parse --short`\n\n", "proba": 1.2098641377633612e-07} {"commit": "e613d3fbdba976d63a50667a9728439470292f60", "message": "a bug in ensembl API, does not seem to allow the value for 'public' to be a integer in JSON\n", "proba": 6.895109549986955e-07} {"commit": "eace911ac10d166cd4e6301216327e6db239c1b1", "message": "0.2.6 Final\n\nSigned-off-by: Byron Ruth \n", "proba": 1.093807355800891e-07} {"commit": "4104346e1f3c308575f933c1581f74eef237e173", "message": "Added greedy decoding.\n", "proba": 1.2174824348676339e-07} {"commit": "43279359a0f6b174d4c0d5147a9b697282858829", "message": "modified to take advantage of ... support\n", "proba": 1.0808084027758014e-07} {"commit": "13a58ba17be0d7b5f05848c50f90d02c4c69fc34", "message": "Fixing alembic revision\n", "proba": 7.24415940567269e-07} {"commit": "35bfc5fae1e74598153a82a7fe3dbc308b649b1d", "message": "Fixed some more typos in base.py\n", "proba": 1.9082669666659058e-07} {"commit": "aa1eb7e492faa237bb8ad60354dce38fdf0b2a08", "message": "AMBARI-14149. Python 2.7.9 or later fails to establish connection between agent and server. (aonishuk)\n", "proba": 1.1411519551529636e-07} {"commit": "bbc1ca75cfff5cbfb7d8ecd6341e6c8b03aa2905", "message": "Improving wait command.\n", "proba": 2.817076619976433e-06} {"commit": "4aac37a8a03c1efefb0590a68419b35e4dd491e4", "message": "[#2168] Fix tests for Workshop Staff searching\n", "proba": 1.0941203498759933e-07} {"commit": "c19e10806d74ab6c05985d483ea3af466b1bb67f", "message": "Corrected wait command.\n", "proba": 6.411663093786046e-07} {"commit": "17723a0fd1c45bad93c5740b6e6f47b795bec726", "message": "by default, -s local will create catalog to match -f\n", "proba": 2.417666848941735e-07} {"commit": "3976312598a84c479a685616671042eff509f84a", "message": "finally some working single tracking goodness\n", "proba": 1.2252468195583788e-07} {"commit": "1eff2df3852d4634c9706d18c69ba49fa187a99e", "message": "improvement: set saved images to higher dpi\n", "proba": 3.315050776109274e-07} {"commit": "2d2cffb208e1e960774f06cde482e6beb677094c", "message": "Avoid suppressing underlying error when deploy.loadapp fails\n\nRaise log level at the first load attempt. If there is a\nfundamental problem with the environment, a Lookup error\nis not helpful in troubleshooting the problem further.\n\nFix bug 1210236\n\nChange-Id: I55aa11a0e5a37dbef3f0c1b55aa4c9c11bbf55d9\n", "proba": 1.1620622899499722e-05} {"commit": "bb696f7c5b97563339f04206e649b54759fc9c6b", "message": "add transform for in__id to base get method\n", "proba": 5.075842182122869e-07} {"commit": "5062f73ccb1617c4d3264e80f163056a8c84405e", "message": "Configfile now working on the Blender 2.56 beta release (at least under windows)\n", "proba": 1.0037378217475634e-07} {"commit": "d03784daf51666b1e219357f9fa805895381e9a7", "message": "Separate configure settings and create folders from setup_repo\n", "proba": 1.7868256918518455e-07} {"commit": "eeadb417a13ffcaafd3ff4ffa598afb207407226", "message": "The last 2.6.x failure?\n", "proba": 7.617355777256307e-07} {"commit": "47e0b411d7bee8907cfabd650393bbd14aba1318", "message": "Tagging 0.5\n", "proba": 0.00018139077292289585} {"commit": "4eb863cae1383f6301089765d5791e818a9c37e2", "message": "Small fix for ne file chooser.\n", "proba": 1.1196394211765437e-07} {"commit": "ad64a5685ae1c0e649772454c8424d4473a3b24b", "message": "try ... except for reload\n", "proba": 1.5281344190043455e-07} {"commit": "847e513014b6ee8fbf524dc5c08319026ec953fe", "message": "Add additional unit aliases to `Duration` in preparation for parsing\n", "proba": 2.1757227841590066e-07} {"commit": "b3ed474473e5eb672d7736dc5ed17e56ba3c87a0", "message": "No more delete_empty_changelogs task.\n", "proba": 2.695847456379852e-07} {"commit": "61a98de5b069a685d1248715ef15847dfc2aa925", "message": "Added OVERONLY_EXPR to overshoot plot\n", "proba": 1.5242831352679787e-07} {"commit": "18c4d8df301632cc4a167aed78ed0fdc95bfe6ee", "message": "more assertions turned into ProtocolError\n", "proba": 2.6751871473607025e-07} {"commit": "27c1945e21905daa15481252ba87a1854a971869", "message": "zlib encrypted data\n", "proba": 1.274065084544418e-06} {"commit": "7fef583304902f55ba50602a2d2a65910d5525cc", "message": "[Update cali.py]: delete confirm function\n\nThe confirm function was used to keep Windows cmd open after\nprogram finishes or after an error accured. But it's superfluous\nand not elegant, so it has been expired for a long time.\n\nIn the future maybe I will add GUI for Windows users, so that\nthey do not need to use this script at command line every time.\n", "proba": 1.5120100727017416e-07} {"commit": "e1074fbc814b238a8d6d878810a8ac665a169f03", "message": "Fix template name in views\n", "proba": 3.53991538304399e-07} {"commit": "d337795645e0552652998da8654d5e7cd190dbdb", "message": "test toLinear and toPlanar\n", "proba": 1.144049861068197e-06} {"commit": "57ab55659f98fad15312ae58c38a22ad434feac6", "message": "login required for all intranet views, skel views\n", "proba": 1.3336787674234074e-07} {"commit": "44161337282d14a48bde278b6e1669e8b3c94e4e", "message": "Bump version to 0.1.7\n", "proba": 5.422443791758269e-07} {"commit": "1bf37c80a174df22f98b8942a6a6f14fc9ee80ec", "message": "Minor post-merge fixes", "proba": 1.7975966670746857e-07} {"commit": "72a827b8cca6dc100e7f0d2d92e0c69aa67ec956", "message": "change name and docstring", "proba": 2.000732820306439e-06} {"commit": "6b16177f907a5c41402e0a7617b500d98669b324", "message": "Replace except Exception with specific exception\n\nWe should use specific exception instead of except\nException\n\nCo-Author: rushiagr (Rushi Agrawal)\n\nPartial-Bug: #1223605\n\nChange-Id: I95cb7ca0a7d920adbe65ba11493af6c5b32cd4d9\n", "proba": 1.6546676988582476e-06} {"commit": "67caf31cff3d9e8fe4b8645c22499805ea3280d1", "message": "Fix issue with forms\n", "proba": 6.657689368694264e-07} {"commit": "104c81888760e2f5d6460e667e8092d03dcf70a0", "message": "DOC: Fixed a formatting issue\n", "proba": 3.0069068657212483e-07} {"commit": "55132174111c2f719b6fcabc8a7b8dfd0e6251e9", "message": "rewrite simplified using replace\n", "proba": 3.841729267151095e-05} {"commit": "7101d19f8fa5d7d2a76591c6a7ff05806456fd03", "message": "Fixed the infamous _avatar bug. Worked around a Python bug that double initializes a module. Use get_app that safely imports apps. See http://bugs.python.org/issue2090 which Django won't handle 100% correctly, but technically Django is not at fault here.\n\ngit-svn-id: 51ba99f60490c2ee9ba726ccda75a38950f5105d@1040 45601e1e-1555-4799-bd40-45c8c71eef50\n", "proba": 5.402767419582233e-05} {"commit": "7fc79f0ff110cfae7ec93cb56fc7b20bfccb7808", "message": "add transchain arg to Transform, Localcoords, Function\n", "proba": 1.6401509128627367e-06} {"commit": "0c25e96b448c06617075087af5e1b5138b859aa9", "message": "change Rational.totuple, fixes python3\n", "proba": 6.104000931372866e-07} {"commit": "9630adfa1cc04537df0e29ff622dffae9a32f364", "message": "remove period boundaries, allow for empty topologies\n", "proba": 4.991271111975948e-07} {"commit": "08fc5a72d43dc0ced78c34f6223aceff4c2bbbe9", "message": "round doctest\n\nFollow-up patches cause a doctest of `Topology.locate` to fail. This patch\nrounds the result of locate before printing.\n", "proba": 1.0427511654143018e-07} {"commit": "bf55e2cb40c1bd41962faf21276bad564e4e6aef", "message": "change definition of roll angle to be deviation from Galactic xz plane\n", "proba": 3.499428373743285e-07} {"commit": "c8f0be88729bd8b18a7e58c092c17b606feed475", "message": "Stop returning None from judge prediction function (#179)\n\n", "proba": 7.240774948513717e-07} {"commit": "615afef27905729c59a5618c098b9ab093a8dbd0", "message": "Fixing test.\n", "proba": 4.232168464568531e-07} {"commit": "e97b18503871ab18c9d7fc2155d880a3e5a8bd17", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "b44f887e766a66b8f824f7e2c9f3fb3a0bec5766", "message": "Disable OpenSplice on RHEL (#560)\n\nI accidentally re-enabled this RMW while trying to drop what I thought\r\nwas outdated cruft.\r\n\r\nCo-authored-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@openrobotics.org>", "proba": 1.191213669926583e-07} {"commit": "b78ebbe04145ff81d2f254a0e781de14f5a43c29", "message": "Removed deleteTmpFiles constant", "proba": 2.9153508762647107e-07} {"commit": "5d8890c70b512f4fa63a5d7c8da7dae9e9abecb1", "message": "Stray print.\n", "proba": 2.452991623158596e-07} {"commit": "905680d424c21821e02684579d5eb982fed2f85d", "message": "Added proper copyrights.\n", "proba": 1.2518648873083293e-07} {"commit": "ed1f267c438886a11faa6a16defab3d004638082", "message": "BUG: fixed DualBoundary\n\nFixed bugs in the DualBoundary class including:\n- repr output,\n- str output with no datetime data,\n- setting the paired indices with missing EAB or OCB data,\n- cycling paired records with no paired records.\n", "proba": 1.3205189475229417e-07} {"commit": "4723ca802fd7926ad4d26f32097dd04afbdc8938", "message": "Add an fix comments\n", "proba": 2.450940996823192e-07} {"commit": "6d5c7f8aa16552cd73bcff63eaa91fcfa8764147", "message": "spatial resolution for lat and lon can be different now\n", "proba": 1.562549556410886e-07} {"commit": "2b07dd11d8f77bf735d957359fe85c8128ebe48b", "message": "Do not sleep between page requests\n\nThere seems to be very little gain if any.\n", "proba": 1.8963116588111006e-07} {"commit": "140f96ab4cddebd465ad2fdcca4560c683ca5770", "message": "add django-markdown url for tutorials app\n", "proba": 2.628796380577114e-07} {"commit": "7d1d2a8981867a6e6f1b8a4a4ab4457ce921e5b5", "message": "undo-dummy commit\n", "proba": 6.328873132588342e-05} {"commit": "8e975ca214f37c8e5adcd15e943339038c993dca", "message": "ENH: add a cosine window function to signal.windows\n", "proba": 1.5242205790855223e-06} {"commit": "03985fb40759667a2eba24fcc9971a5f553e0627", "message": "add other params to list\n", "proba": 3.3914000141521683e-07} {"commit": "7c77a7b14432a85447ff74e7aa017ca56c86e662", "message": "Make api-tokens view exempt from CSRF checks\n", "proba": 6.153230174277269e-07} {"commit": "4adedc25606f5cd26bedcbd5ab6b93f05b1af861", "message": "Incorrect height for main world in g2\n", "proba": 0.0003389013872947544} {"commit": "3fb3a031dfba872824939565aea7020c282e276c", "message": "Next fix\n", "proba": 1.6293020621560572e-07} {"commit": "f2d38908f53b08ca4d6bf7c35026ba8ff0c4bfa7", "message": "fix spectra III init errors\n", "proba": 6.645763619417266e-07} {"commit": "f888b069595740a95c2307217481f52243263b56", "message": "[imp] added method name_create to orm\n\nbzr revid: nicolas.vanhoren@openerp.com-20110610161002-76kfpwb1xexryfmh", "proba": 3.3832077406259486e-07} {"commit": "dafa96dca360c3ffdb0ae1e8263bb548d889cc5c", "message": "[FIX] removed dead code\n", "proba": 1.3815911188430618e-06} {"commit": "be51bd77f618e457d023fd18ba6bd887866b22b0", "message": "edx-courses scrapper: fixes\n", "proba": 2.4033909085119376e-07} {"commit": "7067421671a0a70a5b7d6d9d9e052f740c0a3589", "message": "[FIX] orm ir.translation get_source to use positional args\n", "proba": 2.6310635803383775e-07} {"commit": "63988959a7750b03096e95a6cd36ce731fbdb445", "message": "[IMP] read_group: added forgottent year computation\n\nbzr revid: tde@openerp.com-20130916114722-4742fhn4ilhf133e", "proba": 3.8038970728848653e-07} {"commit": "69fe8cce71a9046a99932045b1dbe57edc420cae", "message": "add __str__\n", "proba": 0.020581873133778572} {"commit": "86bcca0878f251e4bd3706dcabd49be80ccdc635", "message": "Whitespace & style cleanups\n", "proba": 1.2505260826856102e-07} {"commit": "2ab15be792e10bd5e5e3824f001cf18ce0e1244e", "message": "Logging is implemented\n", "proba": 5.802611440230976e-07} {"commit": "9d431fbbafd25486855ec9daabc7c1be6291b4f6", "message": "Remove frivolous assertion\n", "proba": 0.015350962057709694} {"commit": "d0d7c0022776f9ec518580af66df9ba78905a20d", "message": "Added option to skip adding missing atoms\n", "proba": 7.063093221404415e-07} {"commit": "7a408fdc414e143f74aa9c86be0613ba53580a50", "message": "404 on invalid run id\n", "proba": 9.778779030966689e-07} {"commit": "c08bbb06f4f0398498927181c110e5dbdff4b145", "message": "actualizacion\n", "proba": 1.5210027868306497e-06} {"commit": "2df06f3a480ca2303e402eea305c60454f43febe", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "fb72932a352ed76e659c8f280c13f871ee9e0e26", "message": "fix issue #515 : add a space in the warning message (#521)\n\n", "proba": 1.775705840145747e-07} {"commit": "4c12bd87a9ebe10b7d42d09d25c83abad6103b19", "message": "Fix default arguments for info command\n\n", "proba": 1.710605147309252e-06} {"commit": "52683fae45ccb2ec9352cba5e365ed5689433ef4", "message": "Fix a K scaling oversight, but this script is slow and generates huge models\nso it probably will get deprecated.\n\n\nFormer-commit-id: b7239230abc22d2b051e7897700a683e0ea396dc", "proba": 3.664010000647977e-05} {"commit": "2645159df7cd98fa3577eb8e729b1ed085ca87bd", "message": "Fix BuildHelpers to create all necessary directories\n\nChange-Id: Ica4430469e8088c1e2fddad93a432cc2cd344fef\n", "proba": 2.075611519103404e-06} {"commit": "a7e5024446d8973e1c6c22864ba9213a6cb8e20a", "message": "working on new dynamics\n", "proba": 4.0757001329438935e-07} {"commit": "ec01afef760a509780c4c01ed3ccbaf8b44e8966", "message": "Modified find_items() to handle single-value and list elements, and match list elements on single value or multi-value args passed in.\n", "proba": 1.0201163291867488e-07} {"commit": "8faeb294ae6ae7cc3f4a90915d3660830c76ecef", "message": "Add tests for s-t and longs-t discretionary ligatures.\n", "proba": 1.240172053940114e-07} {"commit": "01fe55ffd79d1320ea696ba5392c91d9ef295060", "message": "Remove net and procutils config from init\n\nRemoves the configuration of the processutils and linux_net modules\nduring os_vif.initialize(**config), since these modules will not\nactually be in os_vif, but will rather be in the VIF plugin repositories\nthemselves (see vif_plug_ovs for an example).\n\nAdd docstring to os_vif.initialize(**config) that explains the\nconfiguration options that are passed to the VIF plugin classes.\n", "proba": 1.2039640751027036e-07} {"commit": "d68f0ffebe9e131ddda986a23b56e30824e2fe0a", "message": "Empty environ variables as unassigned\n", "proba": 1.0095734978676774e-05} {"commit": "3e4da8dc52ccb573731e6d541a9f4909b50fa4a4", "message": "Update node.py\n\nDIS [OSF-7395]", "proba": 1.234240727399083e-07} {"commit": "ac1c2c4a733e20f1c4f0af0e26867d1000a2df90", "message": "make sure we don't follow node links that register their own parents, when recursively registering registration children.\n", "proba": 1.0170971620482305e-07} {"commit": "927a5706661fc9370989e4e8c5d8aed3d92b33a4", "message": "Remove unnecessary exceptions import for Python 3 compatibility\n", "proba": 9.920947832142701e-07} {"commit": "0417707ab0dca78f0daa8aa3b9003913ba90bbac", "message": "Add length and highway attribute to the edges\n\nLength and highway attribute are added to the edges in the networkX\ngraph for more information about the actual nature of the road. In short\nrun, they are going to be used for the generation of the homes.\n", "proba": 1.0429680230572558e-07} {"commit": "c0eb2a2666c2c513100e6125fd1f8ea6e1d047f0", "message": "Add comment\n", "proba": 1.5774051576045167e-07} {"commit": "cb93e8322ad63eb1cb02f0e1e59c05127404d61a", "message": "Break out run-playbooks into something more granular\n", "proba": 0.0001256783725693822} {"commit": "ce6704790dbdfaea1d27e00a09780897eddc137c", "message": "Delete oto-gen.py", "proba": 9.206141839968041e-07} {"commit": "135dac59323225720fd7c1386e5d4f036c3ed5ad", "message": "packaging: engine-setup - Replace hardcoded ovirt string\n\nReplace hardcoded ovirt string with variable\n\nChange-Id: I767cf4dd2bca3bbf38a1a68601fdda31ea2873e6\nSigned-off-by: Kiril Nesenko \n", "proba": 2.796893170398107e-07} {"commit": "ac2008433b0e62395cd768f65dfe1181f4ca2eb0", "message": "src - Add docstring to function\n", "proba": 1.3671588305896876e-07} {"commit": "77d34a7e72b054f893229dd4c43ca9c2cf82f982", "message": "src - Use OrderedDict instead of list for element store in Result\n\nStoring available elements in a (ordered) dict bring serious benefits:\n - lookups are a lot faster (e.g. when browsing through ways)\n - duplicate entries (per class) are inherently avoided", "proba": 6.996081651777786e-07} {"commit": "e5aaa0a050baf1aaa49b0400843047c1bbec76e1", "message": "allow empty file names\n", "proba": 7.215467576315859e-06} {"commit": "e389bd34b906e20d7f01c5001c0c15e52cc6c762", "message": "Do not rely on HLIR to introduce padding\n\nFor non byte-aligned headers.\n", "proba": 1.072066240226377e-07} {"commit": "981715431ae2710fb0c19f1a7caa749bef1c1593", "message": "add comments to build commands\n", "proba": 3.3917524433491053e-07} {"commit": "77fda638105192d0cefb546d65eec57341aa4f01", "message": "Added weights\n", "proba": 2.64971731667174e-07} {"commit": "60b69ba898cb367c7622a9897a873ac7728f3445", "message": "cancel implementation\n", "proba": 6.812179549342545e-07} {"commit": "c9441c4a202dd53d4cb00946943745f580efa084", "message": "Patch up a missed spot re: 2FA plus keys, thanks @mattrobenolt\n", "proba": 1.0786502002702036e-07} {"commit": "6011a756facf88a9932eff81c8e977749a9b5d91", "message": "Codegen: Add function and argument declarations to generated C code\n", "proba": 3.6299636008152447e-07} {"commit": "6d767eb45c8466b0a0350013dfaa92d1ae6097fd", "message": "removing ',' from page counts in results summary\n", "proba": 1.9791366412391653e-06} {"commit": "33d91758f1c665048525f5a1f0e4954014553e75", "message": "Fixing a few cases.\n\nThere are no 14 length pieces.\n", "proba": 0.00031849529477767646} {"commit": "0c20690822ee192889ad3da02ed6f9f2bcf741bd", "message": "Added default config options\n", "proba": 7.420774750244163e-07} {"commit": "eb62d00ca362637a9e5be2406c7713c9098cf84d", "message": "Update models.py", "proba": 4.731647038624942e-07} {"commit": "a0f71f44c0f22bf83532fddbdbe406e30048a032", "message": "created pc_chair_only decorator\n", "proba": 3.4934797099595016e-07} {"commit": "1b88575e79fb5a8a77243fa1c227da9366707d40", "message": "FIX: Null character replaced by blank\n\n-The presence of the character '\\0' was causing an error with some PDFs.\n-It has been fixed by replacing all occurences of '\\0' with ''.\n", "proba": 4.018509400793846e-07} {"commit": "cbef967fbf6c895ae16ec14ed6c0f45805a4654b", "message": "Renamed: LTAnon -> LTAnno\n", "proba": 0.0012734258780255914} {"commit": "07c07164b7f73a2aab69efbbd8da60f7fb2b9c3f", "message": "get_title feature, the other changes.. not really sure :)\n", "proba": 1.7521951178878226e-07} {"commit": "7b6dd8502add0f516cc8da81eb901a295755ff02", "message": "Check if module has a path before normalizing\n\nSeems like some DLL-based modules (.pyd) don't have a __path__ set.\n\nFixes #107\n", "proba": 1.9810061075986596e-06} {"commit": "5a66fe7772ba5714ab5616862a96d44581a892cd", "message": "fixing invocation loop\n", "proba": 6.351625074785261e-07} {"commit": "0b410669bd8d08d536c29da603ae7e2ca7258966", "message": "job: Use dot argument of visualize.\n\nSigned-off-by: Michael Markert <5eb998b7ac86da375651a4cd767b88c9dad25896@googlemail.com>\n", "proba": 3.1093991310626734e-06} {"commit": "f67cbf069fa43d5dc08bcf1d58aea584ac8ab42b", "message": "Changed exception message when pty.fork() fails.\n\n", "proba": 1.2252772307874693e-07} {"commit": "55fdc9d7601584af4d175205df1c9b9698659ab1", "message": "Added \"exitstatus\" to spawn object.\n\n", "proba": 1.0909653269663977e-07} {"commit": "17b76c763a580d2661d95fa34d4478d0400df694", "message": "Cleaned up code. Moved depicated methods to the bottom. Added more\ndocumentation comments. Clarified delay_hack (renamed to human_delay).\nI finally understood the delay_hack problem -- I think!\n\n\ngit-svn-id: f580a16d75958e582a48c01f676462de3ca26b7a@259 656d521f-e311-0410-88e0-e7920216d269\n", "proba": 1.1639538115559844e-06} {"commit": "654ffb932b3e032f6f03a3f53d63773b9590769e", "message": "I modified comments to be compatible with epydoc.\n\n", "proba": 1.0657744553554949e-07} {"commit": "1b354100efc36eb359d224c143e4d46b1ed3b907", "message": "change in fef gen2genepop, os.rename to shutil.move -- former fails when source/target volumes differ\n", "proba": 1.3896516293243621e-07} {"commit": "3b32127da40c2296448041d94330b52eb078eb1b", "message": "[field] Grid.with_values() now supports projection\n", "proba": 1.867049093107198e-07} {"commit": "70f4b476b1bcfd52e71823eb5176c1a25e355d0f", "message": "Added utility functions to check whether we are in IPython and in interactive mode.\n", "proba": 1.0319423182636456e-07} {"commit": "98db315004ae80619a9890a8b772127e011e75e0", "message": "Fix #116\n", "proba": 9.95916025203769e-07} {"commit": "7e9dd7469f88d676959141534809b0bc10fc9a66", "message": "context: Print newline on de-initialization.\n\nTo make sure entire screenful is scrolled up and console output starts\non fresh line.\n", "proba": 3.3393627063560416e-07} {"commit": "4da4c2582019f52621af224304f0f303b5b444f4", "message": "importing edgeR\n", "proba": 2.652053296969825e-07} {"commit": "554661b42a55573c13a55c044746e4f30b86c473", "message": "v1.0.4 Fixed delete errors\n", "proba": 2.6981186351804354e-07} {"commit": "4be08347ea9174ecfb6ea12ade18e1e7bf589306", "message": "initial commit of address docstrings for sphinx testing\n", "proba": 1.3707216339753359e-07} {"commit": "88b419216cbe4f7db274f77c94b79901bdb4ec4f", "message": "New release: 0.4.1.\n", "proba": 1.2353947909105045e-07} {"commit": "c558584640a20f705f59f064295d9fd36f2ab1ad", "message": "Fix importing of ConfigParser\n", "proba": 1.57716897319915e-06} {"commit": "be82066aa795bc73cd6193b5a02310484e0e6e21", "message": "Reorganization / support for contribute form\n", "proba": 1.233335922279366e-07} {"commit": "da5699cd0d2238dcddae4967918a90eb908f0514", "message": "Fix joining search params\n\n", "proba": 4.299620741221588e-06} {"commit": "fa4d8a45afadaad68d54eef189cc45968906a21d", "message": "Collection mode default is -1\n\n", "proba": 0.0002733562723733485} {"commit": "e88b2af4f64d6458438de7837597d1aba37f3556", "message": "Release 0.9.1\n", "proba": 3.616694357333472e-07} {"commit": "d56bf264e778441054982499d392c58785f56b13", "message": "Fix some errors when vim is compiled with +python3.\n\nWhen vim is compiled with `-python` and `+python3`, jedi-vim generates\nerrors because of two points in the code which are not compatible with\nPython 3 (because of the `str`/`unicode` vs. `bytes`/`str` thing).\n", "proba": 0.00010125074913958088} {"commit": "6aa34e7b4f8842c1e7a7b968189706d497eb78b1", "message": "simplifying lolrate\n", "proba": 0.004313881509006023} {"commit": "9ae289d8f59cdd819de22a6010eec60c1808eb69", "message": "Added (reduce), (sort) and (reverse) to RSLisp.\nRemoved (foldr) and (foldl) - real recursion is very non-pythonic.\n", "proba": 1.3287858280364162e-07} {"commit": "d55f20ffb3284b83586bc4782dea8c8910c7a160", "message": "Test2\n", "proba": 4.1125267102870566e-07} {"commit": "9dfd549fd9c86fb36e6c77b6aeaa89f95da44c3f", "message": "updating station plugin with new api\n", "proba": 1.8499349607736804e-07} {"commit": "a97715d5c0380ed75d0622310a1490c0d03f625e", "message": "plugins/twitter: pick a random search result for hashtags\n", "proba": 5.549461548071122e-07} {"commit": "0ba6849b9644c162c9df09a64e4e11f8601a83aa", "message": "improve reporting on bad fittings plan", "proba": 2.531886309498077e-07} {"commit": "f1472ed647b67396a2c2ebb0efb0343c30e10926", "message": "Allow visualization with missing GP.\n", "proba": 2.5029379457919276e-07} {"commit": "69b9e8c956be433d3de4a1e32f31454db6241bc1", "message": "parametrized gold standard reward\n", "proba": 7.260883307935728e-07} {"commit": "1f8ee6bdca08c2187304820ac4ee934c468ad80a", "message": "Removal of diagnostic prints\n\ngit-svn-id: cc65bc9ed7fa717314bc8890b6f123117eea230e@560 698dff77-f410-0410-8918-cf622e150f36\n", "proba": 7.903667551545368e-07} {"commit": "c77c842e9b325aa619e9b121eced0c749ef177bc", "message": "Remove superfluous arg.\n", "proba": 0.00013357072020880878} {"commit": "a691a3b35fc7c197c1809e264fba43a3eed8638d", "message": "Logs warning if broadcasting tx fails not due to connection error\n\n", "proba": 6.898147830725065e-07} {"commit": "7d3e940dee89b9421ba935d65ecf6ff1859de4f3", "message": "fix use of json as variable name\n", "proba": 0.000495540676638484} {"commit": "4adee844d07fcdcbf8d363d723d8c1bee5808bed", "message": "Add STATIC_HOST setting\n", "proba": 2.892481347771536e-07} {"commit": "1a8ab29c9f7a02730cababc077f196f9b21e26d4", "message": "Use own repo slug by default for Bitbucket.deploy_key.all() .\n\nSigned-off-by: Baptiste Millou <1cfd48a9a65a966defdcd720f66cd790094000c4@smoothie-creative.com>\n", "proba": 1.2559605977457977e-07} {"commit": "1d2ab4b1a23d9830e03da91c8662fd8bd17fc2ba", "message": "Fixed pybullet Interface\n - change GUI to DIRECT\n", "proba": 1.2217347489240638e-07} {"commit": "4aeee052bdb2e1045d72401ea9f2595e62c6f510", "message": "Hide stdout in text client\n", "proba": 1.2005341886833776e-05} {"commit": "3e05f77a485b3fa4a352c748ea65769acc5b0b7f", "message": "flush doesn't change most of the stats\n", "proba": 6.516726216432289e-07} {"commit": "ab7c653e1aa3d684ab6730e6e2a0e61f1f5228d8", "message": "Minor fix to make the cut report still get written out normally.\n", "proba": 1.0085258850267564e-07} {"commit": "096bca45f94f663aff878ae84949c283ddceaeed", "message": "fix: missing from check_output\n", "proba": 5.374483953346498e-05} {"commit": "751d599277fd318b5dc4bb8000866f58a2fcf480", "message": "+ added template data parser to collection helper module\n", "proba": 1.4844360407550994e-07} {"commit": "463f36dc3288b3654a380f42ea84d7051cea0283", "message": "A little more docstring cleanup for `duplication_divergence_graph`.\n", "proba": 1.3351716177112394e-07} {"commit": "b5e0f3bd06600fecbb92d03d66f48e6c331a97e4", "message": "[FIX] - Update settings for knee test", "proba": 1.2455652154130803e-07} {"commit": "fa07a7845c035f0e0c6339fd7cd1dec50ece549a", "message": "commit small changes to fmri\n", "proba": 2.106579728433644e-07} {"commit": "3c8b0fd6839e4bea1c360c777e4ec3cecef48da1", "message": "Add in missing spaces at end of line\n\nTrivial updates to log messages that do not have spaces at the\nend of a line.\n\nTrivialFix\n\nChange-Id: I126e7e3535c6b8ecaeffe4210fdad6e6f238a37c\n", "proba": 2.2326988982968032e-05} {"commit": "c9fdcfe471698233c8a7196329e8e9b1c1d09128", "message": "Removed magic\n", "proba": 6.462806823037681e-07} {"commit": "30843082f3847c3117db62cfb5015f7b993292d2", "message": "Add PIP_UPGRADE=True to localrc of ucsm test job\n", "proba": 9.642894838179927e-07} {"commit": "d00ca47db90afdae75ef04e65829a1cbbdee1cba", "message": "zero initializer bias\n", "proba": 0.00029264649492688477} {"commit": "abba3665be36c625fb75903b16ff1fae9fa49e81", "message": "Avoid creating titles inside code blocks\n\nWhen de-indenting some code blocks I found that for the purposes\nof our macros and auto-linking magic, we will consider lines\nstarting with # as markdown headings / titles, even when they\nare inside triple-backticked code blocks.\n\nThis should be fixed, but I anticipate the fix might cause some\nproblems. (Maybe).\n\nSigned-off-by: Ole Herman Schumacher Elgesem <83acc3db0bbeb50452fbe42b153ef7254e562daa@cfengine.com>\n", "proba": 0.0025033513084053993} {"commit": "491bead4408409bd65ef021e9aa7656c2b5f7ded", "message": "Added non-parametric puiseux series.\n", "proba": 1.1925185106065328e-07} {"commit": "f39a7713872b7426df6175ce796daefde3ef9c61", "message": "info() and copystat() functions work for dir nodes, too\n", "proba": 1.1447446013335139e-07} {"commit": "2acb0b7bd25554da98c56653bf557cf02d8f0af8", "message": "current direction correction\n", "proba": 7.766009275655961e-07} {"commit": "adca4573c6d3c5f2a4ddbae20bb52af8eb1856ae", "message": "[DOC] mail: updated docstring of a method taht was not up to date\n\nbzr revid: tde@openerp.com-20140321123029-kbfy73ecxidshnnb", "proba": 2.5873521281027934e-07} {"commit": "d1435318b40ef416e1f4eeff039949eccbe3ded5", "message": "more elegant way to close the files\n", "proba": 1.6786059120477148e-07} {"commit": "d14fb56119d203f18638609b07e06df1b21e2da3", "message": "Fix off-by-one bug in FrameHistory environment wrapper (#33)\n\n", "proba": 1.1332199534308529e-07} {"commit": "85b1cf05b63da5e627f0f37276f80a43781aee4d", "message": "true AsyncConnectionContextManager\n", "proba": 0.9988896250724792} {"commit": "f54174af71717d10ab5904a99644effca5208aaa", "message": "[AIRFLOW-635] Encryption option for S3 hook\n\nS3 gives the option of storing objects encrypted\non the server side. This\nchange exposes the boto S3 encrypt option in the\nload_file method of the\nS3 hook. It also updates missing documentation for\nthe load_string method.\n\nCloses #1888 from kerzhner/master\n", "proba": 1.3062278014785988e-07} {"commit": "ce53d45f48b8ad64dc97c2924f20d639292ecaed", "message": "Fix issues reported by flake8 in vm_manager\n\nMostly using undefined variables.\n\nChange-Id: I74f0c29f822331ba092709a806e1b216f87ef684\n", "proba": 3.334816028655041e-06} {"commit": "6650e5898ca058d1dc8494dbc3d0ba2e2d8c1e4c", "message": "Compute the distance between two points on the globe and determine if air travel is possible between them in the time between when localities were recorded\n", "proba": 0.9989665746688843} {"commit": "5a2445255e21d09faf1ef0cfc0a58233b113f775", "message": "Enh: Pylint - C0103 for constants names in satellitelink.py\n", "proba": 2.3809563742815953e-07} {"commit": "559acbe8a1108c7a0dfc1d3fe92ca83eaf467a18", "message": "removed the self.request\n", "proba": 4.989357762497093e-07} {"commit": "4b3ac5eaea23076efe9cc47f7b605887a49c4aed", "message": "Create and update waypoints.\n", "proba": 1.1603092531231596e-07} {"commit": "0ef3c333a9e307a778fc31b396a69c13ee40a68d", "message": "Adding a location_client to Ambulance.\n", "proba": 1.2211708622089645e-07} {"commit": "798bea5d8c895848ddb4197515030158cc1ccead", "message": "Updating waypoints.\n", "proba": 2.3492215461828891e-07} {"commit": "6ee27c0b8e0ed4e022d4b1ae54c576ba1bb1da07", "message": "Changing name of mqttupdate client\n", "proba": 3.7859499002479424e-07} {"commit": "f87895c7cdc1e4a75832a1cc8b4406fa9fb0708a", "message": "Return displayed element if multiple elements are found, but first is invisible\n", "proba": 1.7575652009327314e-06} {"commit": "97c0303ab4ef06db98ff6d6c08f6d742d55d2329", "message": "Added back-off timeout\n", "proba": 7.639457635377767e-07} {"commit": "806752c92288ec8e64c7371a6316ea2b4e5de246", "message": "load_example('faces') now returns numpy arrays again.\n", "proba": 1.1689670031955757e-07} {"commit": "e99e7334b5a2bef75b8c99b2095628e7e66540f6", "message": "Fixed potential bug in images.py.\n\n- This only happens on some versions of matplotlib.\n", "proba": 1.011245700510699e-07} {"commit": "451c821118eff98d7e92b3a3f46b1a76048abbb5", "message": "add wiki canned response\n", "proba": 2.8936761964359903e-07} {"commit": "22ee7abc059108cd483749fa60b7dd99a643bc56", "message": "Implement InterleaveHI ops\n", "proba": 9.777967306945357e-07} {"commit": "7fd0987a21e7c4d898b8a5735ba288160defb77f", "message": "- **Fix:** Fixed edl_path in edl_importer.send_edl() method for older versions of Windows.\n", "proba": 1.0171631004141091e-07} {"commit": "0d561690eb3a59a50b54cdc2ab36130114a5bea1", "message": "Fix bugs\n", "proba": 3.6897583868267247e-06} {"commit": "a110ed7ea533f53ceb14244b2b7db9a63b2f5448", "message": "Update the pinned versions of the docker images.\n\nThe older versions don't play well with the changes made to handle docker ID issues.\n", "proba": 1.0454316878849568e-07} {"commit": "207602ad5dfe8a612d1c0a0f9719d3b82fd8c313", "message": "Yet more static file fuckery\n", "proba": 1.5156466304233618e-07} {"commit": "831e288d99cb978d18adba26049c91801b8c4473", "message": "enhancement: remove the code to process kwargs because these are done in the parent class' methods already in ini backend\n", "proba": 3.1797938504496415e-07} {"commit": "4f74b5e1d75b570229098531b172f2eb4877f78d", "message": "fix: initialize 'dict_type' keyword argument for configparser.SafeConfigParser correctly\n", "proba": 2.3004204194876365e-05} {"commit": "781a9de47cd1626238102e2af804394916d822ae", "message": "Added more logging to the zombie checking.\n", "proba": 1.0828306074017746e-07} {"commit": "c738eeb71ab69b057492b489998c0001536d4bef", "message": "fix flake 8\n", "proba": 2.4689651922926714e-07} {"commit": "0ce87e4b1fbd3c479a6ed7153824c91c13298e31", "message": "slightly different cuts in continuum and load default Cannon\n", "proba": 1.2464718679439102e-07} {"commit": "e5dcea13a27b90f89469518386a1748f3e141b5b", "message": "Improve docs of doQuery.py file.\n", "proba": 1.3723082759042882e-07} {"commit": "8e95ffa78873271f701336fcd522c15f37ccefa3", "message": "Pass additional props to react (#463)\n\n", "proba": 1.0105573267082946e-07} {"commit": "7243f7a32d7d7dfe7bbcf9817108aa4983bf69e0", "message": "detach prediction window on unfocus\n", "proba": 3.0445690413216653e-07} {"commit": "7a6d62f01e7b69c4f5ded3b7a0d8f7798601b0ff", "message": "Print matplotlib warning on stderr\n", "proba": 2.1116113657626556e-06} {"commit": "a65482a08d993a0ac61a7318d550bbe70ac8b005", "message": "Modifies the recaptcha import in users.py to use the full path. Previously the lib folder was required on the PATH in order to run the dashboard/demo.py script (because of this import\n", "proba": 1.5570189759728237e-07} {"commit": "ca9ea81932b24e5c8f1c032fbcfa949f60f0eb02", "message": "[REV] base: revert 2486259ef99ec85cf\n\nThe commit was for performance reasons but introduced regressions as\nexplained at\nhttps://github.com/odoo/odoo/pull/29779#issuecomment-524346268\n\nReverting until finding a better patch\n\ncloses odoo/odoo#36143\n\nSigned-off-by: Martin Trigaux (mat) ", "proba": 2.1842070907496236e-07} {"commit": "9a38617c2102b6fc0ffe98c8fef36742fe8bcdc7", "message": "small update for known assets\n", "proba": 1.4043104101801873e-07} {"commit": "82e4bb826a6bbdad040a5415f0f7b85c5cb0fba5", "message": "[FIX] ir.ui.menu: safer eval of action contexts when computing needaction\n\nUnchecked eval of a context may fail for various reasons,\nsuch as the use of client-side variables like `active_id`\n\nbzr revid: odo@openerp.com-20130507104025-em6w03pcxeq92az9", "proba": 4.711555448011495e-07} {"commit": "ec884b65f395153e8a76b018bf8b7111f0793b0d", "message": "[FIX]:editing shortcuts from client were not dispalying the changes\n", "proba": 2.702674350985035e-07} {"commit": "13f7bef4caf51d6f177195d04f49e4680c1a92e8", "message": "[IMP] immeditate install, remove old web modules\n", "proba": 1.3904350737448112e-07} {"commit": "0828d8c72ca726fec2081003e1f1f6098935f1a5", "message": "[FIX] Adding module icon after installing now works, courtesy of Carlos V\u00e1squez (CLEARCORP)", "proba": 9.925757638029609e-08} {"commit": "5d4560676ea5c8dafc7414b2c70a5b2a78265588", "message": "[FIX] res_users: action_id must be readable by the user\n\n`action_id` is the loaded (window) action on user sign in.\nIt must thefore be readable by the user.\n\nopw-634402\n", "proba": 6.465630235652498e-07} {"commit": "b2b65175d070633b97941ee76e3a6aa97c812db1", "message": "[skip CI]\n\n\nFormer-commit-id: 034fbb6aab69dbeaca80ed79991eea701d584e9d [formerly fbab15340970c45612dd042658b8215edc0d4d2f]\nFormer-commit-id: 9ce45efb385bde0324e03188f0f39e4bbffafe67", "proba": 5.802816076538875e-07} {"commit": "d37ad0eba41c402b2086a162740f24f3185bd51f", "message": "Updated plot_agg_curve\n\n\nFormer-commit-id: 31c07255026d4795415f0f138e79636215e4cbae [formerly e41982ae414b1d1daea03941a2d237cd52ac76f6]\nFormer-commit-id: f80ced6b694f301429f47ed83e511cfc1882191f", "proba": 1.7618378933548229e-06} {"commit": "7896b9fe0f1d866084c2d15ace45d26dfe51acec", "message": "Better logging\n", "proba": 3.5337967574378126e-07} {"commit": "6d71726ab50a1fc81ff1ee03edbc77de3422bce8", "message": "style: change back _ to unused name\n", "proba": 0.0025024344213306904} {"commit": "fe3e09af2accaf6924fc42b9df6ae5c99a005056", "message": "Remove moxstubout usage\n\nIn newer versions of oslotest moxstubout is deprecated,\nso get out in front of the curve and replace it with mock.\n\nChange-Id: Ib7526bc5f7fc21cda9288e085216997519322010\nSigned-off-by: Charles Short <7c94dc7c24be7082d3924d3b5497ae165e979baf@gmail.com>\n", "proba": 1.2454820819129964e-07} {"commit": "27889e8456b194700cb3bb752f0b080e66d7f174", "message": "agent: rewrote the getActiveUser method.\n\nChange-Id: I187b588c9abe6febd891528cccd0fddf3d7cb2ac\n", "proba": 0.0011491784825921059} {"commit": "e25f31458ce5de450d18dec02b09e969ed342243", "message": "excluded cholmod stuff for now even though Shogun is slower is solving\nsystems", "proba": 1.353253082925221e-07} {"commit": "7a2dadeff3c7b0df5ac9e2e62492655e62b60121", "message": "one too many deploys\n", "proba": 2.4861878955562133e-06} {"commit": "4951a9e44d0ae787f73792902bc86b9c5e27c9bd", "message": "Use full defconfig name in Jenkins bisection parameters\n\nThe full defconfig name is need when triggering Jenkins bisections in\norder to reproduce the same builds as the one that failed.\n\nSigned-off-by: Guillaume Tucker \n", "proba": 2.4768120056251064e-05} {"commit": "c4907587ef2d14ad746baf79b4c52252026b711a", "message": "utils/report: add the test plans list in the subject\n\nPut the list of test plans in the subject if we're not sending\nthe results for all the test plans.\n\nSigned-off-by: Ana Guerrero Lopez \n", "proba": 1.5549889212707058e-05} {"commit": "db2f6f4c2a70875aade3741fb57d0bc1b109ce3c", "message": "Add regexp to create_user form logic\n", "proba": 4.3289134055157774e-07} {"commit": "2a9183d0cb5e9583f6f10d9198f606b78ea0293f", "message": "deployment config/common.py #'dealer.contrib.django.context_processor',\n", "proba": 1.2013559569368226e-07} {"commit": "e39edc54e677fd497e750567259cf25d828fc546", "message": "Handle error_message from server\n", "proba": 5.679676178260706e-07} {"commit": "709ad859e46025fbfb7085cc743bbb8c518e360c", "message": "Path safety for cloud_api\n", "proba": 2.1359410595778172e-07} {"commit": "cad24bb5d84ee842b58d9529fd918ede25f3debb", "message": "Make python script idempotent.\n\nSigned-off-by: Mateusz Starzyk <852a08ab448cfc7b533364fd73d7da3cb43a4d1d@mobica.com>\n", "proba": 3.0506889743264765e-06} {"commit": "bb4f8484945280feec551991462a8ccdc59f1b70", "message": "sleep 2\n", "proba": 0.0009887126507237554} {"commit": "8b10684739a7c047845b57e25bc3a001160e7393", "message": "Added setting extra_info on Book models during import.\n", "proba": 1.0270117911659327e-07} {"commit": "e3f24620b9a69f1eb0652a9ffec2c2c3d6a10b8e", "message": "Fixed links for showing fragments in book text.\n", "proba": 1.0584733445284655e-07} {"commit": "1471b8cd4e69f854e729b4b0f4e009e9062f2dd4", "message": "Updated Repository admin -- looks a bit nicer now\n", "proba": 1.013425645624011e-07} {"commit": "d8610894fb32541c38fe5a41b9c76946adfff7f0", "message": "more intelligent sanitation for xml.py\n", "proba": 3.0095290526332974e-07} {"commit": "6ee28422761aad43b615ff075de97c9a2cd494c2", "message": "Fully documented simple queries\n", "proba": 1.3746266347425262e-07} {"commit": "cb232e73d049971dbdea038395463adc284d2f03", "message": "Don't use identity for strings\n", "proba": 4.628183523891494e-05} {"commit": "e4097fc77139abde6311886c2a7792d675e5f805", "message": "Update merge_intervals.py", "proba": 1.7399589751221356e-06} {"commit": "ef69106ceb6a494cb809bcda1883bfc31cf12ea5", "message": "Move raise_for_status to BaseResponse.", "proba": 1.3375012031247024e-07} {"commit": "cb192f6ff3b8dd159de1255befb249c6e04997f9", "message": "added caching of moon data; Moon illumination constraint is always OK if moon has set; ensured Moon illumination constraint calculation returns correct shape\n", "proba": 2.3678680349803471e-07} {"commit": "be0fc71697a69c5242a8b289d0e58b6517d81f22", "message": "Set write_comment to False for readers with no default write_comment\n", "proba": 2.6092964617419057e-05} {"commit": "c23fd97d54cfde0dc2639029fcef69e28a6542b2", "message": "PEP8 changes\n", "proba": 1.4248357160795422e-07} {"commit": "d97cc52f7319df4a138c965a41744b6797687167", "message": "always set the _wcs attribute of NDData\n", "proba": 6.271450843087223e-07} {"commit": "75dab9ec09c7d537bff5df1fedfccbc95d7174a3", "message": "Bug fix for tasks failure rate\n", "proba": 9.455337703911937e-07} {"commit": "5e11d6766bea9098b89a8c5246518b4a09a163d5", "message": "Add some paramters to the generic REST API class:\n- api_root\n- timeout\n- api_version\n", "proba": 0.9999867677688599} {"commit": "8645a4e593820003f0e48bd4da4009530d74d749", "message": "bug: pysolar is now lowercase\n", "proba": 0.00045332504669204354} {"commit": "484c3caecb3cb5fa2a6d2a4c59071e531378aba3", "message": "Output error if Google blocks ip\n", "proba": 0.9999088048934937} {"commit": "f0cca35b97bc32c26974edd3670c571cf841dbe8", "message": "Make casing of concentration arg more obvious", "proba": 4.499934584600851e-05} {"commit": "0c1cac4bce27eacf84c336ff94cefb959e4b235b", "message": "made acl a Config object instead of ConfigParser one\n", "proba": 1.526567103837806e-07} {"commit": "4cdfffe84f3364e715e820c7041e946e17a9958a", "message": "FIX bad comment\n", "proba": 2.874996027912857e-07} {"commit": "18070afb14176f4b1650265de4e70b8f4ea90068", "message": "Update autoreject.py", "proba": 5.138809910931741e-07} {"commit": "304d7c75f68e999536f610e4e6eecfbfaa8c069e", "message": "make sure that nested calls succeed\n", "proba": 1.0867406672332436e-06} {"commit": "9146482db25d10ddcc953c3c69d23208d54ab703", "message": "Corretto errore su metodo ClearAll di ComboBoxWithPyData", "proba": 1.5352657101175282e-07} {"commit": "05298dfde7365adecc3febd6d9fe1592986c4715", "message": "Fix init trying to copy a __pycache__ directory\n", "proba": 0.00021838048996869475} {"commit": "acbf8b060e2659746d29d80b6bacf5b7a95f0092", "message": "Audit lists of cloud regions.\n", "proba": 1.2578701102938794e-07} {"commit": "9a095580170e4646d763898675b392ad1270add1", "message": "Small fixes in Banner file save\n\n--HG--\nextra : convert_revision : g.bagnoli%40asidev.com-20111003085631-gadnh4lyujos292l\n", "proba": 1.6616557729776105e-07} {"commit": "968cbaa4d9d09b271655a30f5b6a2788d152edc6", "message": "Update Negation of Italian\n", "proba": 3.022109353878477e-07} {"commit": "d00a2606d7e40787f07aa98b84b502b43031cf58", "message": "round number to two digits\n", "proba": 0.9998528957366943} {"commit": "8257da318391fdd14cf79e72ecd3d90178d4c6cc", "message": "Litecoin servers login to IRC with user name starting with EL_\n", "proba": 1.8119408196071163e-07} {"commit": "d8bcddb774d44ba99b07ab0fab16ddfe3b063944", "message": "Better equality check\n", "proba": 2.314547771220532e-07} {"commit": "99ea75e8adcbda606de6ba498e7dcd57449eff43", "message": "Fix: Stop filestree() erroring when dir doesn't exist\n", "proba": 5.322197580426291e-07} {"commit": "4d2816b53bc708160a9101781c7c0c3ef6329c51", "message": "Bakery indicate if any worker is running\n", "proba": 2.77058788924478e-05} {"commit": "f695c2c16a327aff2661b5cfe114faba77ee3f92", "message": "Python 2.6 multiple with clause fix\n", "proba": 3.8176162320269214e-07} {"commit": "6ae48b4f70873d39df080d304ddf7953e868fa48", "message": "batch read, pass through as cursor\n", "proba": 2.074636569204813e-07} {"commit": "8bcc09e4d3d0a14abd132e023bb4b4896aaac4f2", "message": "make imports Python 3 friendly\n", "proba": 1.1728607205441222e-05} {"commit": "dc1bbc3c9061844ae39b4dab813258dea49693be", "message": "API: DetectorList -> ReadableList\n", "proba": 3.120069891338062e-07} {"commit": "10ea95b5a3dab958c13aca0c0efdf5c329a32af0", "message": "total num executors should've been checked in the nested if\n", "proba": 2.2553966516625223e-07} {"commit": "d809ad7b8099c386c2ec9219fde0d6740ce8bf7b", "message": "await workers in worker_count if initial worker count is 0\n", "proba": 0.999822199344635} {"commit": "dd37b58b0dda9b5879e48dadbfbef29bbfae7531", "message": "also raise from unordered collection\n", "proba": 1.1771559371709372e-07} {"commit": "0bbd62943150c20b12439722eddb24d01c19a3cf", "message": "fix issue with charts not supporting server output\n", "proba": 4.325744100697193e-07} {"commit": "0105bd120f00a69ebb242cc03905fe0b36a260e6", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "df9ce6d549d05e58fa38b13ab7c5de7e0496cd9b", "message": "create base-class Biomolecule and move part of the code previously inside Protein class\n", "proba": 1.7679700192729797e-07} {"commit": "bb7cf1407d73e1f393fb930516b644cfe3bde1f6", "message": "minor: let only roulette module handle the !r\n", "proba": 1.9518124361184164e-07} {"commit": "82f6c3af24d2b17f4ea174ad0e3d639c6774ff5a", "message": "Fix broken example in docs\n\nMust specify the primary hash key in local indexes, or you get `boto.dynamodb2.exceptions.ValidationException: ValidationException: 400 Bad Request`.", "proba": 1.1489017026633519e-07} {"commit": "8c2553120ebcd759c998883a533f7819f87ecc4c", "message": "Release 0.2.2\n", "proba": 1.916285327752121e-06} {"commit": "4b6bffdb048aa44b42cb80a54fca9a204ede833f", "message": "Update version to 0.0.3\n", "proba": 7.146882694542001e-07} {"commit": "3d34f5029c90bfab8ac49b1b02c89343aeda3d64", "message": "slow rankdata/nanrankdata should use np.asarray\n\nThe other slow functions do this, and it was causing a test failure in\nPython 3 when called with [] (since it tried to access .ndim, which\ndoesn't exist). I don't know why this isn't an error in Python 2...?\n", "proba": 1.8710588847170584e-05} {"commit": "af8329ac822e79c97835a233baa1e156a3935e53", "message": "Improve Error message when no image set\n", "proba": 1.3829779845764278e-06} {"commit": "b9cd8a6656e3f271b4ca273981ca4a2315ced91a", "message": "Improve warning", "proba": 7.479870873794425e-06} {"commit": "87848d5c5d77caa19f9a42fb51ed02ab28e2a2db", "message": "Update buy_order.py", "proba": 1.192185777654231e-06} {"commit": "81df185279a8d46ca2e8ed9fbed4c3204522965e", "message": "Extend potential life of social media queue entries\n", "proba": 2.7220014544582227e-06} {"commit": "e1aafc85403366dba19963abb1c868bd328a4706", "message": "fix unicode writes\n", "proba": 0.005836897064000368} {"commit": "e30cf45fa5193c872037427dca47813047f39cdd", "message": "refactoring\n", "proba": 5.272031557979062e-06} {"commit": "c97b00eb484f3b637478e0d0f2f4e64037bb9781", "message": "Install latest Selenium version\n", "proba": 2.575793018877448e-07} {"commit": "d31956d6563d0de0149a2abac4da99cc6ef55e5a", "message": "ca_on_lambton: Skip scraping addresses and phone numbers in low-demand jurisdiction\n", "proba": 1.56686354557678e-07} {"commit": "77f4b5b1bc3c30fb454212d3c4d2aa62d8c06ca8", "message": "Update exportyaml.py\n\nopen file \"wb\" - should help for python 2.7", "proba": 1.1498865433168248e-06} {"commit": "127275d450d558649a015d74aaa3faca9e3f423a", "message": "Fixed a coding error in the OSX script, and made the OSX script resistant to network failures on suspend and resume.\n", "proba": 1.0529219451882454e-07} {"commit": "cb8599d43600442a223a484dc75726bfbbec68a0", "message": "Replace removed mimetype argument to HttpResponse\n\nThe ``mimetype`` argument to HttpResponse has been removed in Django 1.7 after the standard deprecation cycle. Its ``content_type`` has been available as an alias from 1.4, so changing it should be fine.", "proba": 3.8909448107915523e-07} {"commit": "c62878bc4e9055bbd14458f15e965881759dd698", "message": "Update fldgen component.\n", "proba": 1.2300540674914373e-07} {"commit": "e301ff9c702bbc0741a74da5634108d0986381d3", "message": "Fix DeprecationWarning when using lz4\n", "proba": 2.4591824399067264e-07} {"commit": "c645d9a67309573cb8a01dfc640fc1ebe7cc0813", "message": "Fixed correlation description closes #91\n", "proba": 1.4138325354906556e-07} {"commit": "6d98ff3af6ca0aad46e2649f1b931b6226b5e344", "message": "Remove testing and add docs\n", "proba": 2.547890005644149e-07} {"commit": "df679af352f156ad4846fbc53a8efc43814b897c", "message": "Update ce.transformer.utils\n", "proba": 5.446413524623495e-07} {"commit": "1a50aaf6be0f866046d88944607802a4e8661c61", "message": "Revert \"Test jenkins failure\"\n\nThis reverts commit c4afdeb3a04d609d06c877fd9cc1ae3f69d40eb0.\n", "proba": 1.215935583331884e-07} {"commit": "0b59da9925c3ad7d855bada666fe20bbe38de643", "message": "Override LOGIN_REDIRECT_URL to avoid redirect to /accounts/*\n", "proba": 1.3434622303520882e-07} {"commit": "512bb578c5c8f6d0af6de8c5d0548a933a4f969a", "message": "log the fact that we were (or were not) able to match an IP to a subnet\n\nSigned-off-by: Alfredo Deza <3ae498813ac9b6992b3bb72690656738fc9b4e19@inktank.com>\n", "proba": 2.1822498297296988e-07} {"commit": "5a652df999f9c6aaf419c2d3b4ccfe559ee1bad6", "message": "Simplify code as t and y are Variables\n", "proba": 0.9999897480010986} {"commit": "64b5550aad0c0a1701c9d06999b63cf6cfbb1ec9", "message": "Converts to datetime.datetime.\n", "proba": 0.999985933303833} {"commit": "219dccb4deb0abc255d80a35c6106ded9f89a315", "message": "Fix typo", "proba": 0.9999992847442627} {"commit": "c00c7e6099269c66b64a15c15318093eadbf3851", "message": "Fix excluded_extensions when ignore_hidden is False\n\nThis is a fix for Issue #5.", "proba": 2.0383430410220171e-07} {"commit": "ce7c6734b06c57296702ab0d709ecf415292254c", "message": "Fix for #283.\n", "proba": 1.205550717031656e-07} {"commit": "628081219bd9647467caf71264cefa715bcb7e18", "message": "Adding optional objgraph import to gctools.\n", "proba": 1.1248408782194019e-07} {"commit": "7e8d1b34992fc9248fa6df0e541b375b5b69a272", "message": "Added .avi mime-type\n", "proba": 1.9838994091969653e-07} {"commit": "7577db5fe6ab14cf20b9295bbe12ffce3933e168", "message": "code refactoring & standardise APIs\n", "proba": 5.995016181259416e-07} {"commit": "9881ad79f671407255629d3988eb7215b881e105", "message": "debug logging\n", "proba": 1.1727136097761104e-06} {"commit": "1eaf825f8860b4192b62fb1d9f5c918008ee1e1b", "message": "Improved some of the API(s) of Timer to interoperate with twisted better. The overall API has not changed however.\n", "proba": 1.1029098345716193e-07} {"commit": "ee9a6d126237679114da3afd6120861474905402", "message": "fix for messaging address\n", "proba": 7.193106057457044e-07} {"commit": "ba2c4a07d28c6bf750a341cd1d48d2647d84cfe1", "message": "new commandline for the new clearly\n", "proba": 3.515061735015479e-07} {"commit": "5981958688c16013e4207d44e0011c2ce5679393", "message": "ignore all hidden files (not just .DS_Store)\n", "proba": 1.3755891359323869e-07} {"commit": "c833ad210b8ec0e42a436633f2701f41354eacdb", "message": "Add hbase site for impala\n\nSummary: Ref T1175\n\nTest Plan: N/A\n\nReviewers: yehangjun, yongxing\n\nReviewed By: yongxing\n\nSubscribers: infra-dev\n\nManiphest Tasks: T1175\n\nDifferential Revision: https://phabricator.d.xiaomi.net/D3661\n", "proba": 1.27294626395269e-07} {"commit": "a6d5ff814fc447075d95a94770b3e2643947544b", "message": "Trap the exception sooner when a download from GCS fails.\n\nOtherwise the exception is in another thread deep in generators.\n\nR=vadimsh@chromium.org\nBUG=\n\nReview URL: https://codereview.chromium.org/1352933003\n", "proba": 3.263106236772728e-06} {"commit": "bba19d09188c75cfda02e0f698fb14181f432e77", "message": "no more XML/XQuery\n", "proba": 7.455789159394044e-07} {"commit": "c08feabbfb3fe9559e3361f5ea10cc7903bc9ade", "message": "\nChange reference to \"Google build system\".\n\nR=chrishenry\nDELTA=2 (0 added, 0 deleted, 2 changed)\n\n\nRevision created by MOE tool push_codebase.\nMOE_MIGRATION=4508\n\n\ngit-svn-id: 35241bd708fe29f1f6c7a4322d322e99ff93b95e@1727 0b95b8e8-c90f-11de-9d4f-f947ee5921c8\n", "proba": 5.917508588026976e-06} {"commit": "0beb296de2beed53f66da13255205d9208455a9d", "message": "\u0421\u0434\u0435\u043b\u0430\u043b, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 3-D Secure \u043e\u0431\u044a\u0435\u043a\u0442 Secure3d \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u043b\u0441\u044f \u0438\u0437 \u043c\u0435\u0442\u043e\u0434\u0430, \u0430 \u043d\u0435 \u0431\u0440\u043e\u0441\u0430\u043b\u0441\u044f \u043a\u0430\u043a \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\n", "proba": 6.202050371939549e-06} {"commit": "e2b64a285d1f16731b1fab3aa7ebcb0f4797eed3", "message": "add tests for mk stopwords\n", "proba": 2.884404750602698e-07} {"commit": "e0fb5c9469b1bef3cdd5bdae7a989c7314559099", "message": "alphabetize imports\n", "proba": 0.005834130570292473} {"commit": "7d5d4a72f0698f8793c872c7c38d34f747f4355d", "message": "MNT: Removing sounding plots, were only added for testing.\n", "proba": 1.0196105648674347e-07} {"commit": "cf70502c48a779a8102e4e0fc5cca2051b2125fc", "message": "Updated comment\n", "proba": 1.4271162740442378e-07} {"commit": "20d7bcdabd930008df1b09c4b512a5c11e21aa9b", "message": "Removed unused functions.\n\nRemoved\n-------\n* Removed the following functions:\n - extent_string\n - origin_string\n - spacing_string\n", "proba": 9.359217074234039e-05} {"commit": "e8f32ab8d1b1032dc07bdff2144e85bdbbd1593f", "message": "added normalised intensity\n", "proba": 1.959053406608291e-06} {"commit": "093d905f6800b9e6b4c0beeeccde55a20f9fa3f3", "message": "Add Colemak lesson #3\n", "proba": 1.3061854531315475e-07} {"commit": "819eae9230e9cc89c9f5a288534f1102ebb2ee66", "message": "Delete sendevents\n", "proba": 7.759368827464641e-07} {"commit": "6c258c699dd1be3d4574c789633f3bd5c97f3f3a", "message": "Style\n", "proba": 1.7651560710874037e-06} {"commit": "f1dd824978ad8581113a088afe1d1bdf99a00802", "message": "Move to dev.\n", "proba": 1.2695625173364533e-07} {"commit": "cab9666d25988d13ac4294d9bc88e46c632ce4d8", "message": "change error log\n", "proba": 1.1894852605109918e-06} {"commit": "6366297a4fd5b1a0c8a23335bcb865dcbfb5088b", "message": "add jump limitations\n", "proba": 1.4030777037987718e-06} {"commit": "64317f9bd9aaa7df24ed7d3b53973d2dff7d95df", "message": "fixed availability of shortcuts in new parsing utils\n", "proba": 1.6869685737219697e-07} {"commit": "9ebc7c3aee73f4a950d4975034f3c41417d59444", "message": "clean up unused imports\n", "proba": 5.22757602539059e-07} {"commit": "e7158050a8e12bcc2b4f0778b58e41019d81e43e", "message": "hard code KPNO location\n", "proba": 2.072590905299876e-05} {"commit": "8c3b20f8aa655a7f8fe1ae485e493aa4a5f24abd", "message": "Remove __getattr__ method from CompositeField\n\nThis causes some weird errors when adding the CompositeField as\nvirtual field to the model.\n", "proba": 1.090732340003342e-07} {"commit": "25c97b3ed1d4f9062f4910bf85a9e281869d9bb1", "message": "createSchema should do a db.loadSchema() if it is needed\n\n", "proba": 8.15667135611875e-06} {"commit": "92df7c7373da64c38867ee97d998b221016bb387", "message": "we can't raise an exception in here and have it get back to the client; we\nneed to pass the exception back in the return tuple\n", "proba": 1.0816783060363377e-06} {"commit": "9329de62748efefc364ca1e6ba0ea36ae0d1df88", "message": "remove excess whitespace from list of dependencies\n", "proba": 0.00037507471279241145} {"commit": "474abe3070518a1c2ad452e031f779afbdad87fe", "message": "tmpenv create logs all specs\n", "proba": 2.0363613373319822e-07} {"commit": "5caf134eedc4ace933da8c2f21aacc5f5b1224ef", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "0a188bfdf15660161faac1dc90176be180728af6", "message": "fix bugs related to logging\n", "proba": 4.1490449120829e-07} {"commit": "a273a8d63cf00aea30eabc06eb83880955cdb2dd", "message": "Fixing brittle Host Ruby version detection.\n\nInstead of using ruby --version we should let ruby print\nit's own version, which is just a string, eg \"2.6.5\" so no\nfancy substring logic is required.\n", "proba": 1.5975020062342082e-07} {"commit": "2614dd4f8ba7c8534367804ac489c0024094b995", "message": "flowprogrammer style fixes\n", "proba": 2.698965317904367e-07} {"commit": "b48a29e1f940f6b9c0305dbcc15e98ea37057232", "message": "Update moscow.py\n\nTests are too mainstream. Fixed very stupid lines.", "proba": 9.956342239547666e-08} {"commit": "bc6f0936e02fe0ac3d366cc24e7d32256b02d798", "message": "Added support of security groups management\n\nPartially implements: blueprint cluster-secgroups\n\nChange-Id: Ic3f5e8db2fce2f594036b124bada2a567259a229\n", "proba": 5.476973115037254e-07} {"commit": "ad979d7f525bc179ebf2cf55ec5faaa8d2013114", "message": "Decode check_output() retval\n", "proba": 0.0008178906864486635} {"commit": "e75f32b3a85ccf50f55145e1733067c0e904986c", "message": "Put spaces around grandsons in the Narrow by collection box.\n", "proba": 1.0782696335809305e-07} {"commit": "cd29436af4f06803cb09a900676a2b6a0f4704cf", "message": "LIFETIME.MNT: Change conditional to print BPMs with wrong attenuation\n", "proba": 3.01832443483363e-07} {"commit": "adb1c2a23e05efb5aafe66c21f91c1b662cc3238", "message": "WebSearch: order author page affiliaton list\n\n* In /author pages, the affiliation list was not ordered. It is now\n ordered by the frequency of affiliations, similarly to the other boxes\n on the author page.\n", "proba": 1.0091262225842001e-07} {"commit": "85985cb9b38f75c017b4c184ff1667232051bfca", "message": "made it impossible to link a motif to itself@\n", "proba": 1.1650772080429306e-07} {"commit": "2a14cdc7c421df02f7ad825920fb6b59d30f6deb", "message": "fixes testing for nishons unicode error in user/contact\n", "proba": 1.5330081737374712e-07} {"commit": "f0b811ac23c9ae39cf97dec916ee94767c118b57", "message": "Use regular JSON/YAML instead of Salt outputters\n", "proba": 1.3102967386657838e-06} {"commit": "89ef796b5e74edc2a9fdd953974ebd8a5672265c", "message": "renaming fit engine on menubar --> like asked\n", "proba": 1.2641716296002414e-07} {"commit": "544fe9d192b3b4b227fab6c91c04cfbbc96730eb", "message": "Get Icons for optionals, managed updates and removals, even when HTTP Basic auth is needed\n", "proba": 1.1633861873860951e-07} {"commit": "4c530a55bf7d5358395d141e515845c123134810", "message": "Added proper group id to theory curves\n", "proba": 1.6097827426619915e-07} {"commit": "ca80e6c8c68c8f64a5dd2273a9e7d2bbf04d7589", "message": "Fixed typo in ML RK4 implementation and HH\n", "proba": 1.5184564006176515e-07} {"commit": "26575862730e287fda211b4d06e69479ae7858dd", "message": "added creamce details\n", "proba": 1.223673820049953e-07} {"commit": "be756f37dc5a18c7b85be889fd93dcd62ec9e249", "message": "print stop event\n", "proba": 0.0001636930537642911} {"commit": "02dabd6f102154a132650c74cca0599c983f2018", "message": "Add debug information of the dhclient process\n\nLog the standard output/error of the dhclient process which provides\nmore information of the execution of the DHCP client script.\n\nChange-Id: I6a057d089ee21ea2898078fb7b11dce00a570ec0\n", "proba": 1.5332333305195789e-06} {"commit": "16845b9b1e10eee4a534c58112ae899f2881bae0", "message": "Fix field\n", "proba": 9.122415463025391e-07} {"commit": "98ad1f34b6a713107e3a26e19c6c9ca8fe6c5add", "message": "Use standard yadis service parsing instead of ProxyResolver().query() in XRI discovery.\n", "proba": 1.065209502826292e-07} {"commit": "7cf388a7e7a9cec78de3acd7e2fd344b9512ffa9", "message": "Better activation code generation.\n", "proba": 1.3352874361771683e-07} {"commit": "98e4a9dfa42264c2dbaa88831d137fda6abdd57d", "message": "[project @ Fix delArg test]\n", "proba": 1.2564863993702602e-07} {"commit": "e0c2aace2e73367536fa03e153b67a2d038cd2b3", "message": "Removed debug print statement from OpenCG compatibility module\n", "proba": 1.6982242811991455e-07} {"commit": "44e4d678db985dbb57d9397de5470e5932972564", "message": "Raised timeout [ci skip]\n", "proba": 2.155563265660021e-07} {"commit": "3dae8f25cda4827397ab3812ea552ed27d37e757", "message": "[FIX] base_vat_optional_vies: Remove contraints on dotted names\n", "proba": 6.2547860579798e-07} {"commit": "5272fb3ab29be32c4f6c08022cc10d2eaeb5b9a4", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "9f8849c8ed311c88dcceb73c74d3ec2206aa6781", "message": "Removed unused code\n", "proba": 1.3536109690903686e-06} {"commit": "d694b4f26fef23a1eb82958940f0353488d5b92c", "message": "Fixed bug\n", "proba": 5.356139354262268e-07} {"commit": "020e4336a2285880c064f675f2c052b9e207d773", "message": "added print statements to tests for debugging\n", "proba": 2.844695359272009e-07} {"commit": "b728205741edbf770bda94be203fb7b24039c2ee", "message": "Add benchmark for sorting random array.\n", "proba": 1.6004206315756164e-07} {"commit": "32c2415a9daa4e2320b75e02648e9caaddcac58d", "message": "Revert \"Raise exception in normalik, since it is buggy.\"\n\nThis reverts commit bd84c962819ecf2858567844075fa9e021125f95.\n\nFrom: cdavid \n\ngit-svn-id: a2d1b0e147e530765aaf3e1662d4a98e2f63c719@307 22fbfee3-77ab-4535-9bad-27d1bd3bc7d8\n", "proba": 5.855132985743694e-05} {"commit": "378714316fe3838ea79049bf3c6c159b407072bd", "message": "MAINT: graphics: make qqplot use MPL helper functions.\n", "proba": 1.1541246180968301e-07} {"commit": "34a5d2c0a378a94b934aa6736f6a33519c67301b", "message": "Trying to run, smooth and create inverse map (slow as a slow thing) to test logic of application...", "proba": 1.0526187566028966e-07} {"commit": "6ca9f8710b8dcd562a3189c00d292c4bb131b35d", "message": "Rename write_hazardmap_file to serialize_hazardmap and fix the docstring.\n", "proba": 1.2376636959743337e-07} {"commit": "31e633afab1e713fd7b667144a98a936994369b6", "message": "modified experiments betweenness centrality\n", "proba": 6.428248866541253e-07} {"commit": "6f600d0b201b15f54e38e6ad818968b3747b8a59", "message": "Added validator map (for choosing validators based on calc mode)\n", "proba": 1.0849889520159195e-07} {"commit": "2dbeb2386d7239a815375e33a97d0bc5dfb39966", "message": "models:\n\nRefactored the behavior of HazardCurveModel. The interface is pretty\nmuch the same, but do this change makes it easier and more intuitive\nto access metadata (via the `metadata` attribute).\n", "proba": 1.0762498448002589e-07} {"commit": "06081f7ddb050696c759441fdb081655d233c749", "message": "extract-target-trees.py: minor fixes, code style\n", "proba": 4.2024021240649745e-07} {"commit": "5ea05d162f2391c831f0a91cec7baf27b367e85b", "message": "Fixed a merge conflict\n", "proba": 1.195772597384348e-06} {"commit": "d0a55c23e5148b6fe090296bf2c903b76704c249", "message": "changes for dmonelli\n\n\nFormer-commit-id: c5f460b3e7c81e8a18b4d89c401be16a8dc8c33c [formerly 73b45794350b4a108b9e4e30eee0fc13e5f94136] [formerly 73b45794350b4a108b9e4e30eee0fc13e5f94136 [formerly f38cad0507b219e6e884c73b0fdfe7c656ffe7be]]\nFormer-commit-id: 6d583c8b5107a2b3033149eca228930209f6603d\nFormer-commit-id: cc6591a3d4b6634f4c71e199c78c51c775547cd7", "proba": 1.9824594801320927e-06} {"commit": "6ed3f5d97fe8f8967df5624f62e69ce2a58a9413", "message": "Add color to pytest tests on CI (#20723)\n\nWhile GitHub CI supports coloured output, the programs cannot\r\ndetect it properly because the output is redirected. Similarly\r\nas in all other cases we force the color output.", "proba": 1.0940451744545499e-07} {"commit": "0760635e1de39f9ae260db28a014e56a353ab743", "message": "cros_portage_upgrade_unittest: fix unit test failure while writing into a pipe\n\nBUG=none\nTEST=run it | cat\n\nChange-Id: Ic0aecbb8dede02c6bd36125852e1558de11829a8\nReviewed-on: https://gerrit.chromium.org/gerrit/34763\nTested-by: Zdenek Behan <483cf2a9a4e071d4fd973db6a5a78c40f490667c@chromium.org>\nReviewed-by: Mike Frysinger <8f3f75c74bd5184edcfa6534cab3c13a00a2f794@chromium.org>\nCommit-Ready: Zdenek Behan <483cf2a9a4e071d4fd973db6a5a78c40f490667c@chromium.org>\n", "proba": 3.8267072000053304e-07} {"commit": "b5b31136ff716b423d78d307e107df4b8d8cfedc", "message": "Add images field on article model abstract, is many to many\n", "proba": 5.8909317885991186e-05} {"commit": "a2a5ae841a963284609af784ab868d87ef441214", "message": "Fixes path to align file\n", "proba": 2.56317321145616e-07} {"commit": "5cf84d646796bf5d2f96c67b12a21dc557532c4f", "message": "SocketClient: move recv_threads checking loop to run()\n", "proba": 1.853558728726057e-07} {"commit": "ae3195429ad828799e23c21fd6d8d7f26ff9fb52", "message": "Changes for ORCIDHUB-428; trimming disambiguated_id and disambiguated_source to remove whitespaces at the start and end.\n", "proba": 1.0327160993028883e-07} {"commit": "9e3436262d14fd90c19c271ae66474ea5eef4ec1", "message": "ifcfg: don't restart ovs if --no-activate is specified\n\nWhen --no-activate is specified, there is a chance that\nopenvswitch service will still be restarted if dpdk port\nconfiguration file is changed. This adds a condition to\ncheck activate and restart openvswitch only if activate\nis true.\n\nChange-Id: Ia5a6d04eb26cc3a6e10caacb8256d6e2d183239e\nCloses-Bug: #1751955\n", "proba": 2.0072684492333792e-05} {"commit": "eb3854f19ca3792906cdc523dbada8d031e542cc", "message": "* blog/management/commands/process_facebook.py: added rolling send\n", "proba": 1.2950198424732662e-07} {"commit": "76ed00b173452089f275843f37f7515316bcb66d", "message": "Return BMI staus on error.\n", "proba": 1.9713606889126822e-05} {"commit": "73d91a6b903497a7ad38aab97f48e51f21a1e5df", "message": "Split generated docstring literals for compilers which cannot handle long strings.z\n", "proba": 4.1606745071476325e-07} {"commit": "50cd57cc5c9375c7c925dc9bd7924e7184dfb92e", "message": "MAINT: Style cleanup of generate_umath.py.\n\nBreak some long lines.\nRemove some line continuations.\nUpdate TypeDescription Attributes documentation.\n", "proba": 1.0250548143631022e-07} {"commit": "2e44812c32b6702dc76411c94000bc4ff461890c", "message": "test shuffle keyword\n", "proba": 8.314344768223236e-07} {"commit": "e2c024bde06a75f5e9e2eceb55b110319efed115", "message": "fixed reparse command to deal with errors\n", "proba": 1.918399448186392e-07} {"commit": "b426f52d8d9685b7390d07a80373b44e1ed0dd55", "message": "Avoid lint warning by using a Python raw string, r'...'.\n\nPiperOrigin-RevId: 316053787\n", "proba": 0.0026024177204817533} {"commit": "5506eb02d7e540cb308448cf0eb2f1e2349650ab", "message": "Flake8\n", "proba": 7.333250096053234e-07} {"commit": "f5433d7481a5832559e655637fee4df457037997", "message": "Fix _br_rmi_ms\n", "proba": 0.9999622106552124} {"commit": "4599ce0bfec28ea4c0f1e57154a3496b17afc38b", "message": "RSA : Corrige la prise en compte des bourses\n", "proba": 4.2050362480949843e-07} {"commit": "15d01770a6665b8bd8c57cc983f0d3304d0b343c", "message": "Fixed check_gsim\n\n\nFormer-commit-id: e52bc94a7e020291e665a768fe5f03bbf10f6bd0", "proba": 3.2291876550516463e-07} {"commit": "6aa92f13673ec49a67b5f9e2970c7751a852c19b", "message": "Fix typos in test_handler.py (#1953)\n\n", "proba": 0.0006003258167766035} {"commit": "1dc1b262d3e4b2c47547aa99c2b64848c53786ba", "message": "We aren't using this anymore\n", "proba": 7.003250743764511e-07} {"commit": "d6811b34bbb7628307f82fbe7ef5284b1fa20172", "message": "Remove orderer's user name, line item count from order database model's text representation\n", "proba": 5.051999778515892e-07} {"commit": "f3434a0f46530a43ea76a2953c060a1b25386be4", "message": "Allow commabd to be resumed on existing database\n", "proba": 2.841425441602041e-07} {"commit": "77094995d946cd66d411c080cc1cbb9aba5a4141", "message": "Branch merge\n", "proba": 1.0758635653473902e-06} {"commit": "23a9643996ea5570c662dbc3be2a305d324695bc", "message": "Added back missing import\n", "proba": 1.4621915056522994e-07} {"commit": "699fa801010e22b6f8e278458703a4e9e5a26ac0", "message": "Using the most recent jre\n", "proba": 1.297268954658648e-05} {"commit": "a25141dca6ce6f8ead88c43fa7f5726afb2a9dba", "message": "Fix currency dialog to match model changes\n", "proba": 7.412923537231109e-07} {"commit": "3af6de3097c864d0674245c5329e5887380f3b75", "message": "fix to cooling network\n", "proba": 5.200669193072827e-07} {"commit": "0dacb5382e3099d0b9faa65e207c3be407747eeb", "message": "Use .array\n\nCo-Authored-By: muupan <88a0309dd8de8e5c805bcfe489d5a469b16cc9ca@gmail.com>", "proba": 1.9724745925486786e-07} {"commit": "f2e37d252a69529cc7d729d7daefd6dd45233018", "message": "[FIX] function instead of related period_id\n", "proba": 1.7855136320577003e-06} {"commit": "ce5c08d6577e95be71fcb1d9c02ed375fea99992", "message": "Added configurable outdiskcount for analysis\n", "proba": 2.541623871366028e-07} {"commit": "d49ebd4191887ebf35ebedc6c1a1608ce8e9505f", "message": "TST: Test pd.Grouper base floating point error (#25161) (#26240)\n\n", "proba": 1.518476580031347e-07} {"commit": "9f4357b40a3d844aeff53e7cccb627277275ab73", "message": "TST/CLN: follow-up to #24750 (#24810)\n\n", "proba": 1.1917443032416486e-07} {"commit": "852d7257b6b2b0dd258c39b169c4d98ccdc58e42", "message": "moved from tos to informed consent\n", "proba": 1.0656972193601177e-07} {"commit": "70aeb43d58f5612d2b3a0b2010b8115e1b0bf17f", "message": "minor update\n", "proba": 4.0402281342721835e-07} {"commit": "a27efb427d1f19980dcb3eb2baf5b0b8b1055d94", "message": "whitespace\n\n\nFormer-commit-id: 8a6b9914e6b407d4fe77054860ab81b31ce2e3c3", "proba": 0.9999557733535767} {"commit": "6bc2794264524417608e21c9236f6a08411b4727", "message": "Using class Field in database model\n", "proba": 3.903827234807977e-07} {"commit": "1befc05f3f4682ede2a8b13c56b609f7402a7a6f", "message": "bup save: try to estimate the time remaining.\n\nNaturally, estimating the time remaining is one of those things that sounds\nsuper easy, but isn't. So the numbers wobble around a bit more than I'd\nlike, especially at first. But apply a few scary heuristics, and boom!\nStuff happens.\n", "proba": 1.5956048571297288e-07} {"commit": "f188d6b70f0fe7fe6f25ffec58fec0cc29787b69", "message": ":construction: chore(game.utils): add functional about modify and update db record\n", "proba": 2.4084388883238717e-07} {"commit": "eb884855df7dc53522b77ec558edd5cd619c5245", "message": "bug-fix: the output should be saved in the file specified by the user and not in user.gid\n", "proba": 7.478743555111578e-06} {"commit": "2f644fca6362cdaca9329e720ce91957f29496a3", "message": "SECRET_KEY to local settings\n", "proba": 8.962435913417721e-07} {"commit": "ceb8ab15769fff89eb1fa61bc14c7711f2b88578", "message": "minor change\n", "proba": 5.548630497287377e-07} {"commit": "e0c12f7e9a9f90dddde3e6e909f582591c258ecb", "message": "removed example with materials from the examples that are run on travis for testing, too time consuming\n", "proba": 1.1554141821079611e-07} {"commit": "b98cdc3e6657aeaaa4e656592403d113be49a569", "message": "Update example of \"Stephenson\".\n", "proba": 1.2897668000277918e-07} {"commit": "b1f894c128c62b02ce21c6ccd22376347c356059", "message": "Bump version for a release\n", "proba": 1.641470106505949e-07} {"commit": "83eb166addc3fc54ff97118770ac8cfd7685b10f", "message": "Fix service info\n", "proba": 1.5118556575544062e-06} {"commit": "0462fa5a376bd69f0029c2f823eb1ebb8eaad118", "message": "factor dokan-specific test fixes into a mixin, so I can use them in other (proprietary) test suites\n\n\ngit-svn-id: 74b2def6592cf29d88d1a5d33b5c4a2732d8507c@403 67cdc799-7952-0410-af00-57a81ceafa0f\n", "proba": 3.7399051961983787e-06} {"commit": "3c63971ac9165431ae47faccbf207b731130269a", "message": "Fixed mispelled invinted_by user.\nFixes latest error reported on prod server.\n", "proba": 1.0019819285389531e-07} {"commit": "5ff4fb29549b87a1a1a7e3ad2dbdc27980f59345", "message": "fsed/tests/test_fsed.py: can't check cmd output bc of click assertion\n", "proba": 1.5490920759475557e-06} {"commit": "f0de2e5966c7cdf7d5f7ee39880f13400e2c7e51", "message": "Fix python 2 issue\n", "proba": 7.28304439689964e-05} {"commit": "65df9fd5c6820733b7ba0ec78152bfffb01301db", "message": "Fix #3323\n", "proba": 4.4279502731114917e-07} {"commit": "324050958f8b20006f726f3b02aab7a86ff1d77f", "message": "bug fix\n\nbug fix\n", "proba": 1.837123363657156e-06} {"commit": "37e82d71c99301304c8ff6bf63f807739e6288fa", "message": "Fix name of service_type for sahara tests\n\nCurrently we are using wrong service_type for Sahara,\nactual name is \"data-processing\"\nCloses-bug: #1535567\n\nChange-Id: I57ae66d51fe44e21a2bc83f299a49d01140c562b\n", "proba": 1.3875079503122834e-06} {"commit": "bb54ecc397047b0c218d7d303610b372e4c9f917", "message": "Updated time stamps for profiling\n", "proba": 2.4388234010075394e-07} {"commit": "2109f552443855313edbcf50ac919ef9b7e5f71a", "message": "Correct API ROOT to enable parametered urls\n", "proba": 4.774873900714738e-07} {"commit": "5a96e5ff14bd00d8d027344a089ea83f475d813c", "message": "Enh/Fix: remove BrokHandler from logging when within a worker process.\n\nThis prevent a memory leak in any module workers which use logging.\n", "proba": 1.0882615697482834e-07} {"commit": "1091932a3c503dc61be7016515ee01263cb7062d", "message": "Fix linting (#116)\n\n", "proba": 2.307609605622929e-07} {"commit": "255102db7c9bf6483b0bebf464e7b8649a77afb0", "message": "admin doc\n", "proba": 2.3154530026658904e-07} {"commit": "02681a92cf9c3bc0292e7424dc8ca9e48165aa9d", "message": "fixed whitelist generation bug, thanks theo\n", "proba": 1.2360277423795196e-07} {"commit": "dc0a5e9abb05f1785660717a62d92df5640782cc", "message": "Allow some unsaved foreign keys\n", "proba": 5.92820106248837e-06} {"commit": "c60e8c95d9123cf86f843452703dd42f197935e0", "message": "Index fix\n", "proba": 3.578242342427984e-07} {"commit": "ee5d94ab499b60c32803f0b934306c16e1208ae8", "message": "relecture\n", "proba": 2.7143133252138796e-07} {"commit": "e61c534e520816f7d0f1948781a7095640ed24cb", "message": "scripts: check_compliance: check for commit message errors\n\nChange CheckPatch() compliance test to call checkpatch.pl directly\nrather than through git diff. This has the advantage of including the\ncommit message in what is being checked, which is useful to catch stuff\nlike spurious Gerrit commit ids.\n\nThe --mailback does not seem to work correctly in this mode, but since\nthe output is filtered by checking the command exit code anyway, that\noption is redundant, so drop that as well.\n\nSigned-off-by: Fabio Baltieri <1c55e39c05d9ab42261288cf330256b2af6ba179@google.com>\n", "proba": 7.389144798253255e-07} {"commit": "2f6bbafe6ef1daa8fb6484ac1918619682fdf509", "message": "cmdparse fixes\n", "proba": 4.2220338514198374e-07} {"commit": "1006ac44b8ef9654976c1b57ccf20387877db1cb", "message": "Update results/title/forms100.py\n\nCo-authored-by: github-actions[bot] <17973dcf2e10b67f63417c88ca4c460b2c9439f2@users.noreply.github.com>", "proba": 1.3568171652877936e-07} {"commit": "933fe436cb0d7a33be1ae60ac59cf8823065a010", "message": "fixed 'Unicode-objects must be encoded before hashing'\n", "proba": 1.6851339523782372e-07} {"commit": "89714d70273bdeb386cedf810ea53ef540be49a4", "message": "switch to failsafe_add to prevent race conditions (#204)\n\n", "proba": 1.1401131416732824e-07} {"commit": "23da2f51466b1c0b53bd5cf230470cb37f80f686", "message": "Fix flake8 problem\n", "proba": 5.342926101548073e-07} {"commit": "cea2fa028fc2cdb069a888becdac4c32c10b25f4", "message": "Improved the change detection tool #33\n", "proba": 1.9023832464881707e-07} {"commit": "4ea9a0bc8b7ef47dd98c155b3f35440fe88b564a", "message": "Fix output order, add uri attribute\n", "proba": 2.189553197240457e-05} {"commit": "f2b09911476c464e642822d6384e09e0479bab6a", "message": "scripts: check_compliance: Fix broken links to Contribution Guidelines\n\nThis commit fixes the broken links to the Contribution Guidelines in\nthe Compliance Check script.\n\nSigned-off-by: Stephanos Ioannidis \n", "proba": 1.248090768513066e-07} {"commit": "5b1f2498bd298b9f1e692e5ada412d1a1c6aea61", "message": "removed astropy's deprecated OrderedDict\n", "proba": 3.0217057656045654e-07} {"commit": "4067101734a615a8d85d6a4ba590f4f079a5f2cd", "message": "Change various ValueErrors into Chunk and FormatError\n\n\ngit-svn-id: 319eb561774c901116a2c19d0db24e717df3a3eb@161 40d66c6c-0ee5-11de-8837-45bce846067a\n", "proba": 0.00039528042543679476} {"commit": "94671691d29825a2a35664b81276c20989179e4b", "message": "factoring out the dataset storage\n", "proba": 3.5143730201525614e-05} {"commit": "f51369999441cb85ed730488e943580d707e8856", "message": "use relative imports in parser/__init__.py\n", "proba": 1.4588903468393255e-05} {"commit": "650dae4ce3bd154dba442cf0476651e0e949b092", "message": "add default\n", "proba": 2.439000809317804e-06} {"commit": "b133d76627cb95b08a1c4e3cd357ea7204dfb5a2", "message": "Mark correct function as online\n", "proba": 0.9999939203262329} {"commit": "1e33dc2fdbb66b392f2f6ce2df7d66bc4c17588c", "message": "tests and fixes\n", "proba": 2.5191502572852187e-07} {"commit": "86da9bac065e2ca1023e6f90b64334775905083d", "message": "finish\n", "proba": 5.459974090626929e-06} {"commit": "23243335fcd575e21e723ccd240617209cfce5a7", "message": "Fix Flake8 indent\n", "proba": 5.495559889823198e-06} {"commit": "c984add3003b2970465d06556f8ec9366efc46d0", "message": "write more data\n", "proba": 2.6627226361597423e-06} {"commit": "45ec0d40accc9a70818b679d9a40ff36b3d92662", "message": "Quantize: Mobilenet v2 converts and runs.\n\nPiperOrigin-RevId: 293930528\n", "proba": 1.0338104630136513e-06} {"commit": "eb70c67eb8d43a8ece9ecaab505ad8b3b2000152", "message": "Fixed syntax.\n", "proba": 3.853132000131154e-07} {"commit": "962e451c5c5216d6bc5c7323b300f505f9d1524f", "message": "Removed duplicated namespace\n", "proba": 6.46992930342094e-07} {"commit": "b965727f8e4e8f07a623e46dc2efea3358396ac0", "message": "Explicit version checks\n", "proba": 3.6631817579291237e-07} {"commit": "a1e408a2993cf2eeb586f8f631a3e81d7514144c", "message": "Fix typo in druid granularity (#6229)\n\n", "proba": 5.198886356083676e-06} {"commit": "9b9398927edbed852f4aff296818ecbc76269bc1", "message": "Fix implementation of \"up\" filter on first line.\n", "proba": 1.3196678594340483e-07} {"commit": "aae0dbb42360727c8dc63a668c8f75dbdb1a0bb3", "message": "Remove exec permissions from condconfigparser/tests/test_condconfig.py\n\n* These permissions are not useful. If one wants to run the tests from\nthis file only, one can do:\n\n python3 -m condconfigparser.tests.test_condconfig\n\nfrom the root directory of the CondConfigParser distribution. This\nrequires no exec permission.\n", "proba": 1.7354385306589393e-07} {"commit": "cb1e9fb601280ad1aa2361afe1be264865aec920", "message": "Fix for object gen. Forgot to generate __init__ case where user does pass object as param\n", "proba": 7.207513021967316e-07} {"commit": "992e614ef19d6a2ac4acbb2918e5940cb9a72b78", "message": "For real this time\n", "proba": 4.867322900281579e-07} {"commit": "c59ad07975818e564b776c09d235c849af228d45", "message": "Support 3-dimensional iterators in from_array\n", "proba": 4.7988137339416426e-06} {"commit": "42df834e1b259322703ae50e79bb3d8a93a4a296", "message": "Add destroy_all and update_all for updating/deleting list of objects\n", "proba": 2.2347740014083683e-07} {"commit": "53e9a7269f2e6cf920dea0504165877ebe62d7fb", "message": "max_time to int\n", "proba": 3.14237768179737e-05} {"commit": "a837c29f742014401607fb692206776e0900e72f", "message": "Fix line count doubling\n", "proba": 0.00016389062511734664} {"commit": "354a783d66efce6dee7e8c8ef72986a3f73d3ae0", "message": "Freezing version\n", "proba": 3.9466627299589163e-07} {"commit": "26d042de9916723c8e21166ff203f3f7dfbdffa3", "message": "formatted line to follow pep8\n", "proba": 5.511013796422048e-07} {"commit": "1889a2810accd35c952d4a57ad1463e8d2275a49", "message": "Better implementation of Lz in Orbit\n", "proba": 1.3255723274596676e-07} {"commit": "2653c537d8142bea9f7e68553a149cbcc0620895", "message": "Simplify get_dependency\n", "proba": 3.4121278531529242e-06} {"commit": "780f28cd91f92fea0dddee2b62bc659d244a8270", "message": "fix: Change create sample code to select indexes by eval set\n", "proba": 2.4257084874079737e-07} {"commit": "6660f407e810729f0b9450e681f2185b12f0c1e0", "message": "(split) python entity skeleton updates\n", "proba": 2.366884245930123e-06} {"commit": "fee30c4017da4d41a9487d961ba543d2d1e20e85", "message": "Add explicit Note join relationship on NoteContent model. (also remove extraneous comments on old date format)\n", "proba": 1.0792984284080376e-07} {"commit": "0eba8c87373d44b1f7bec2afc8d4ee62d5abd2cb", "message": "Refactor debug interface to adapt connection\n\nSigned-off-by: Jan Losinski <577c4104c61edf9f052c616c0c23e67bef4a9955@wh2.tu-dresden.de>\n", "proba": 1.0821863583032609e-07} {"commit": "71155d5bfc3627c9fa1e8694b1976c088aeaf2c2", "message": "Small test updates\n", "proba": 2.1532314065098035e-07} {"commit": "4c33e551887e13b728c1309d1e0872222599946b", "message": "Simplified and improved the new gpg wrapper.\n\n - only one class for using gnupg, as in the original wrapper\n - use exceptions instead of integer constants for errors\n - return values are now namedtuples\n", "proba": 4.363520474726101e-06} {"commit": "83ca4f1bb0a4ada06353b0ac16ff654c49441fe3", "message": "Handful of formpost cleanups\n\n- Drop an unnecessary return value from _perform_subrequest\n- Stop checking for a CONTENT_TYPE that will never be set\n- Use reiterate\n- Close the response iter when we're done with it\n\nChange-Id: Ib8cc7cd42b230197844f275d7caf9eb7b3c204f8\n", "proba": 1.3981674555907375e-06} {"commit": "8fdeafc7713031f1c30e5614cb78f44755d5e3b4", "message": "migration: considering emission_type\n", "proba": 2.211215360148344e-06} {"commit": "8fbd2e78dd6c8e5f82a84a222474463acf18503c", "message": "made the number of hidden unit a parameter for the rbm.\n", "proba": 1.1385756693016447e-07} {"commit": "ed08ebd627846b8e4a3b3734a605495e64254a28", "message": "Fix a minor pylint warning\n\nPylint complained with \"Redefining built-in 'list'\"\n", "proba": 5.317692171047383e-07} {"commit": "2613b0a08157ea4fe29da539f08eb5ba6c53e79f", "message": "Current approach was ineffectual. Backtracking.\n", "proba": 1.7801821172724885e-07} {"commit": "ecf7bf8995a51d8049a8b798e10bdad637905b24", "message": "Submit job if active job is not processing anymore\n", "proba": 1.3100589058012702e-07} {"commit": "ee76ae4f41be17a0f6a482273e99783df8212004", "message": "Reconfigure key repeat (should change to be configurable)\n", "proba": 1.4525321034852823e-07} {"commit": "03a92b81e1e4d0e3d2ff06ddaaa119e11a89eae6", "message": "removed function\n", "proba": 3.0436913220910355e-06} {"commit": "71ea9b8ff25e3ae71225714d634677cde1909b27", "message": "Added fromOldAdjacencyList method.\n\nIt is mostly copied and pasted from before this branch,\nbut updated to try and create molecules and groups of the new type.\nIt tries it if the fromAdjacencyList fails.\n\nThe hardest part (perhaps not perfect) is how to decide on a molecule\n(or group) multiplicity, given that the old style adjacency list stored\nthese as atomic properties (eg. 2S, 2T, etc).\n\nThis commit originally had a bug, that was later fixed:\n\nFix fromOldAdjacencyList for reading implicit Hydrogens\nThe constructor for Atoms has changed, and no longer takes\nthe multiplicity argument.\n", "proba": 6.198197297635488e-07} {"commit": "aa7627303eadc9f2433fec6642a8d0b63bbc1dbb", "message": "Add tests for basler cam\n", "proba": 1.5204618364350608e-07} {"commit": "ee8d505d647af70c10b8ff19fc6851bbe2eda478", "message": "FIX: make load_balance work again\n", "proba": 5.077662308394792e-07} {"commit": "4eaa20b69501b19bdb4ff8d76551a9be6c34ef9a", "message": "removed debug prints and added 'interacting_with' to creature_data\n", "proba": 3.966498809404584e-07} {"commit": "50e3c9fd859a60fd34dcee27f440599f17b7a3f1", "message": "More suppress_log_errors() calls.\n", "proba": 1.2336629140463629e-07} {"commit": "d9d2e602094bce14e644b4df9292d61be5ad9b18", "message": "Include native language names in locale\n", "proba": 0.0007179264794103801} {"commit": "bfe9ba5069fef81578a2b906ecd2e1994bdb62b4", "message": "ModernGL fbo rewrite #1\n", "proba": 1.7653552220053825e-07} {"commit": "a2d05c84f0c8c16d279ac9b66d4cbdcdbac89549", "message": "Removed openerp bit\n", "proba": 4.197399618988129e-07} {"commit": "045ece87b82b54179c67e81f878330986a58541e", "message": "reducing the grid for experimenting with the logistic loss\n", "proba": 2.2865900461965794e-07} {"commit": "28f11668d49b0ff987bf5a48dc4d46fa5af350f3", "message": "autofill path on set virtualenv dialog\n", "proba": 4.378780147362704e-07} {"commit": "ee80e5c0a0b90f08154a77f288b33e758fbc791a", "message": "Lagrange method couldn't handle moments due to missing elif.\n", "proba": 1.6603520691660378e-07} {"commit": "9774a097d055f49be6d16e6f5154d9ed92b0d338", "message": "Demote unlock unrecoverable error to warning\n", "proba": 2.3444275143447157e-07} {"commit": "2df00d9d361d0b30d3c716bfdc25ded47c79de10", "message": "No adventures error bugfix\n\nAvoid throwing an error when no adventures are defined (NoneType not iterable).", "proba": 1.249317307383535e-07} {"commit": "2e99e481e36b4634859e4071984aa5e1ae440945", "message": ":bug: fix bug\n", "proba": 4.762050139106577e-06} {"commit": "64f86b1ae9c92280e335506a4d9686e9229371a1", "message": "Update comments\n", "proba": 1.8572019655493932e-07} {"commit": "0827911184bf43a6dd50712444d3f9385a64eb31", "message": "support combining bigrams\n", "proba": 2.203369007247602e-07} {"commit": "62162cfbb04ef5bd9073f0996f57bc107dbcbe28", "message": "ENH: lib/pipeline: Finalizie AMQP support\n\nfixes certtools/intelmq#547\n", "proba": 1.6258965729321062e-07} {"commit": "ae047add1c1d97a95f9261708f000f6e5c0084b0", "message": "Dont validate form when getting questions\n", "proba": 1.4610540688408946e-07} {"commit": "9d5e404f1bc30a032cfb1c0cf782162b28153bb7", "message": "Clean up docstring\n", "proba": 0.00020444141409825534} {"commit": "bd8023cfa462d383d5055edc18941adc6df18b9d", "message": "sendmail now operates on a separate thread\n", "proba": 1.2825374540170742e-07} {"commit": "f9c7da2eae8986e33b2f3e21872fb4ea2220f6f9", "message": "Increased wall time\n", "proba": 1.3085497130305157e-06} {"commit": "f584b9bc114c2420daa1f11235c98f3707c486af", "message": "Protect against binary sealed data\n\nIt was detected that binary sealed data\ncould happen. Ensure that it is str\nbefore passing to configuration.\n", "proba": 1.2378160363368806e-07} {"commit": "0defc6cb37b112b6e7d46e5dca2db5d22c296799", "message": "Transfer is also synchronizing on the initiator unlock\n", "proba": 1.3548026345233666e-07} {"commit": "a1e468f7bf22f46de7ec0d41e37d75299cc205a7", "message": "fix: Allow email-src and email-dst as input for apivoid module\n", "proba": 4.7655254320488893e-07} {"commit": "fd5fbcbd632182b87dc61354cb5e4b289088fa98", "message": "\u0424\u0438\u043a\u0441 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0433\u043e \u043a\u043e\u043c\u043c\u0438\u0442\u0430\n", "proba": 1.3275665651235613e-06} {"commit": "1b92abd429376b17cc35e2eb7597c5bae529e354", "message": "using pathos version of multiprocess instead of multiprocessing\n", "proba": 2.004052532811329e-07} {"commit": "8ec51a310324006b46d5bdfe1adfcef00f461d02", "message": "update construct images\n", "proba": 8.994426934805233e-06} {"commit": "729358032606c44115dfbaf958676e15fe0b7c3f", "message": "- Added support to START TRANSACTION, COMMIT and ROLLBACK.\n", "proba": 1.0760897595218921e-07} {"commit": "de355e4c51c2def4918a943e02088501deb97f39", "message": "Added an eco lottery\n", "proba": 1.7876079994039173e-07} {"commit": "3c315dd5d153681cc2a2817a093fec0b25c86764", "message": "MEASURE.copy() now properly handles when attributes are None.\n\nPassing None to a Quantity() constructor does *not* return None, but\ninstead sets the value to zero and the units to dimensionless. Clearly\nzero is not a copy of None, so we need to check for None and handle it\nas a special case.\n", "proba": 1.32323947354962e-07} {"commit": "5da187bdb2b65be3d02b7d6ba7bf0c44b03cdc0c", "message": "do post pull operations only when an update was actually done\n", "proba": 1.3570655710282153e-07} {"commit": "bc3e373b7cfdd889f3f691cce391192a61691973", "message": "web: Improve startup log message\n\nIn many terminals now, URLs are clickable, so the log message now\nlooks like a URL. This also communicates whether https is enabled\nnow that we support https. We also now log it at INFO instead of\nDEBUG, which probably makes more sense, and improves the chances\nthat you can actually see it to click on.\n", "proba": 3.0811889928372693e-07} {"commit": "23939ace63c12391dc07a3419a55ca573ee5dd73", "message": "Update debug output and remove unnecessary assignment\n", "proba": 4.99249949825753e-07} {"commit": "44f14b9f86c47be247d410858c9bb6d4331f0128", "message": "Corrects docstring for smorms\n", "proba": 4.7403544158441946e-05} {"commit": "2f87afbe63c92ad420ff267eac3d1d6a09673fb0", "message": "get summary data from local files and pull togethe\n\nr in a unique big json\n", "proba": 1.2908694202451443e-07} {"commit": "e34e3832d2144a02be3b63a7179b8f9162586b48", "message": "hunt fix\n", "proba": 3.0119812777229527e-07} {"commit": "5a3d991d53e35ba7b307b53998d38e7382b5ec61", "message": "Add SOFTMAT to instrument list\n", "proba": 2.46479629595342e-07} {"commit": "5c5db58afd8cb1269945d7a500475e42a501cc30", "message": "[Discord] Remove now unnecessary delete message attempt in pause command\n\n", "proba": 1.9013783969512588e-07} {"commit": "8738deccbed8ca954bec3030117573a06e10ec32", "message": "\u6709\u5e8f\u6570\u7ec4\u627e\u5230\u76ee\u6807\u503c\u533a\u95f4\n", "proba": 2.8247981731510663e-07} {"commit": "30ac829c6b521013e7b3ac944c6034cb413c30c1", "message": "getBlastPDB1 has been permanently removed as part of our announced shutdown on December 9th, 2020.\n", "proba": 9.626817387697884e-08} {"commit": "82494bdda594480935cf66f0c96a916b110fa22e", "message": "Move do_import to a class\n", "proba": 1.4863259139019647e-06} {"commit": "49baaf6be64abba6c4201aacd2a89c3311461320", "message": "make sanic happy with request formats\n", "proba": 1.2926420822623186e-07} {"commit": "9dfe2ff9991603d84d9e1f97e5a561ba8ff5dd17", "message": "Fix param names in gs methods\n", "proba": 4.9904324441740755e-06} {"commit": "40d6bd0ff5eb8d76953696643eeb9bf255d5424e", "message": "add script to list/create/cancel spot instance requests\n", "proba": 3.065321152462275e-07} {"commit": "a241600dbf480b6ab45482f4fd06a57be2c8d195", "message": "Added an import to s_irsb.py\n", "proba": 2.608592524211417e-07} {"commit": "506b4e510b60d02bf7bfeb23bf181c483ec5a458", "message": "Reduce error message size by not printing entire traceback\n", "proba": 1.1180096635143855e-06} {"commit": "d539e989666bc655691a1812410f7dc3e4a87435", "message": "criando returncode_etc_to_data\n", "proba": 4.9840400606626645e-06} {"commit": "1f19fa52e40db1f28d620aa8bf75745e814c0f81", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "53f7f8ef9d67d18f58e9f22a629bc1ed908820b5", "message": "Update config_dict_template.py", "proba": 2.925164153566584e-06} {"commit": "6725788d8bbd64cbfd251036787125c07a50b32c", "message": "controller: convert camera parameter value to string\n\ncamera wrapper expects a string, make sure to pass one\n\nChange-Id: Ie422a01273dfea7e3ba9fe6c00d610291c00fe22\n\nSigned-off-by: Maciej Borzecki \n", "proba": 2.177711451167852e-07} {"commit": "619cbe49572dade15123ca4f3912c78e875b91ee", "message": "[Discord] Use character name string literal for 8ball command docs emote\n\n", "proba": 2.527857247969223e-07} {"commit": "14eaff694912320296412f2e4ca51072c5dddf49", "message": "add unit_testing_only decorator\n", "proba": 4.903159265268187e-07} {"commit": "03551149892d1c801640cc342dd48e0dfde95e8f", "message": "Removed interface to regex patterns.\n\nRemoved last reference and commented out defs for pattern interface.\n", "proba": 1.0230019853452177e-07} {"commit": "9093db2e9c2214a4c200636d6bfbf6d5047dbe4d", "message": "Not providing a default user_agent\n\nSpecifically not one that just points to me\n", "proba": 1.3023891654029285e-07} {"commit": "880eefd32a1972af1b5c192c46013ccec0059f3e", "message": "criando router_remove_ip_from_list\n", "proba": 2.289141548317275e-06} {"commit": "701b80953edaef3eac965ec1d280728eb60120f4", "message": "New draw_arc method\n\nAlso drop draw_quarter_circle and draw_half_circle methods.", "proba": 1.0977532838296611e-07} {"commit": "602ac6a5370f17a8454297cdf568cc7f67755b7b", "message": "[Discord] Improve synonym command clarity\n", "proba": 7.002492202445865e-05} {"commit": "5f1dc9d47faaad77c555bee1051be39dba7c88e5", "message": "remove comment\n", "proba": 2.1478579981248913e-07} {"commit": "e595d823e303a6db0a9c7e24f6a9d1644615009c", "message": "Bump version of CaptchaService.py\n\nThe file contains a change, that doesn't make it down to us users ;)\r\n\r\npyLoad 0.4.9 Debug Report of ShareonlineBiz 0.65 \r\n\r\n```\r\nTRACEBACK:\r\n Traceback (most recent call last):\r\n File \"/volume1/web/pyload-git-stable/module/PluginThread.py\", line 187, in run\r\n pyfile.plugin.preprocessing(self)\r\n File \"/volume1/@optware/share/pyload_config/userplugins/internal/Base.py\", line 288, in preprocessing\r\n return self._process(*args, **kwargs)\r\n File \"/volume1/@optware/share/pyload_config/userplugins/internal/Hoster.py\", line 118, in _process\r\n self.process(self.pyfile)\r\n File \"/volume1/@optware/share/pyload_config/userplugins/internal/SimpleHoster.py\", line 283, in process\r\n self.handle_free(pyfile)\r\n File \"/volume1/@optware/share/pyload_config/userplugins/hoster/ShareonlineBiz.py\", line 96, in handle_free\r\n res = self.handle_captcha()\r\n File \"/volume1/@optware/share/pyload_config/userplugins/hoster/ShareonlineBiz.py\", line 72, in handle_captcha\r\n response, challenge = self.captcha.challenge(self.RECAPTCHA_KEY)\r\n File \"/volume1/@optware/share/pyload_config/userplugins/captcha/ReCaptcha.py\", line 50, in challenge\r\n version=2 if re.search(self.KEY_V2_PATTERN, data or self.retrieve_data()) else 1)\r\n File \"/volume1/@optware/share/pyload_config/userplugins/internal/CaptchaService.py\", line 30, in retrieve_data\r\n return self.plugin.data or self.plugin.last_html or \"\"\r\nAttributeError: 'ReCaptcha' object has no attribute 'plugin'\r\n```", "proba": 0.0032492883037775755} {"commit": "06c72a654abf915c1ddbe8a58153a712de41eb69", "message": "fix defaults\n", "proba": 1.5032669580250513e-06} {"commit": "733337f6df348e1834bdd22d100e920740bc0cb8", "message": "and then i made a typo.\n", "proba": 1.8978005300596124e-07} {"commit": "1f3d1d85a9a12cab1423d39f82c8dbe339e69269", "message": "Only get non-state\n", "proba": 6.740879143762868e-07} {"commit": "ff6b6c560aaf61885ec32d880c2e5b04dcde5078", "message": "* added _raise param to format_phone\n", "proba": 1.8853101835247799e-07} {"commit": "f5d9ad4438f145eb3fc9e264930251b873683e8e", "message": "[Discord] Remove now unnecessary arguments for define HybridCommand\n\n", "proba": 2.2201081151251856e-07} {"commit": "491244c44dac23253cf2c02815329c1321eb32c7", "message": "web: rudimentary configuration set support\n\nChange-Id: I7b443c3c0ac5618cb3704bd3a9fa2e47b6227d43\n", "proba": 1.8386043620921555e-06} {"commit": "8586d63099f62e689bb9509c7414d13005c3c2ee", "message": "FKRP-150 Sex of Patients is not populated in the Demographics page when filled in at registration (it is for parent/guardians)\n", "proba": 9.84793260272454e-08} {"commit": "04afe445e13520f586911cf314a1ac6060e5943e", "message": "* missing self\n", "proba": 1.030181692840415e-06} {"commit": "e23e99bca096570273064b5d29d08f952e4dbf26", "message": "areglado el pu\u00f1etero utf\n", "proba": 1.2379215377222863e-06} {"commit": "44cff8dcc564fcab3cd4e55f72b3dbabb0bc6b55", "message": "Final fix ignoring instance/\n", "proba": 1.647164111773236e-07} {"commit": "76dffc5e804d2137fa05c08dd6d30a7d198fbeb7", "message": "changed offset to -2\n", "proba": 0.0010948296403512359} {"commit": "145e48aaba5f4732b3bdb9a543d5b828ee6ec744", "message": "Remove unused auxiliary images during geometry recognition\n", "proba": 3.282352452060877e-07} {"commit": "dba8319327e455ccfd435285d57026c3a65f387c", "message": "barsData array cleaned up\n\nbarsData array prepared in cleaned way (in proSolver thermal method) for next step - the global thermal solving (insteead of per phase)\n", "proba": 1.1251412956880813e-07} {"commit": "3b07566ff7fbce4e83e20113cc7d27e16193cfb7", "message": "Fix custom emoji reacting for react cmd", "proba": 0.9985882639884949} {"commit": "e7dbab154b318473712347e0c49a862924fb71e1", "message": "[Discord] Optimize rhyme command\n", "proba": 0.000119561176688876} {"commit": "4c18847da05a159e6a9249b15e232e3a45f0bc91", "message": "priority after effort\n", "proba": 4.512885709573311e-07} {"commit": "5efc40cd9be0c212f142d7469a9bf6f44da0827a", "message": ":fire: add story support in client with -s boolean operator\n", "proba": 4.1963269836742256e-07} {"commit": "6341f351aab0ff510fcf1d9ce135be680763a971", "message": "Fix comments in backtracking/coloring.py (#4857)\n\n", "proba": 1.909991027559954e-07} {"commit": "966a6bbf020b7995890930a0bb7e9614b5fa7581", "message": "New geo location function added to Ripple UI Emulator library\n", "proba": 1.786619492349928e-07} {"commit": "48eaeb2b21a5f5956531ff50b5c33d3d1ba4d2ef", "message": "fixed update of service (#17)\n", "proba": 1.0898340008225205e-07} {"commit": "76b792cd4fe9af94482e6b314aeae886f37df7cb", "message": "add audiotrack filters for new fields (#376)\n\n", "proba": 1.0616862766710256e-07} {"commit": "02bb7b3b61ad9d758d445ad50f3667f170adac11", "message": "oops\n\n", "proba": 2.9507784802262904e-06} {"commit": "a1a393ae04346ea12d084e228a2bfd6fea11853c", "message": "Removed community options from station telephony definition\n", "proba": 1.3469491477735573e-07} {"commit": "61bf41d83a9c22cf60ca6dd179ef25eb714f8537", "message": "Remove last reference from Leos Lyrics plugin\n", "proba": 1.2828114392959833e-07} {"commit": "f34bdd54070b6f264fce0bdb49f76de23df33d85", "message": "Refactor get_downloads to make one query for default_version\n", "proba": 2.289075240469174e-07} {"commit": "9e2c79db7a8371ec7c74c6804f87053ed08b294c", "message": "update aperture: update apflatten to Horne1986\n", "proba": 2.6104913786184625e-07} {"commit": "70076f43b3d430dbbe8a4106c53526a4dbacdfed", "message": ":bug::art: fix mention logging\n", "proba": 3.54405392499757e-06} {"commit": "ff8c876c67213de1ccd906a4b524899531831aab", "message": "make exit codes work\n", "proba": 2.1618457139993552e-06} {"commit": "14d5ad715670d38647889bf8b4e3beb70ac14822", "message": "flake 8\n", "proba": 3.811719011537207e-07} {"commit": "0e8214509db0b273e7136270946b8d6688899356", "message": "Fix api.resultdb.update_inclusions\n\nBug: 1058903\nChange-Id: I6e11098a161f1cb88dbf8ac984d47d3ad2951bfa\nReviewed-on: https://chromium-review.googlesource.com/c/infra/luci/recipes-py/+/2115941\nReviewed-by: Nodir Turakulov \nCommit-Queue: Chan Li <332b6c56634d0f63001046c664a2370006a02420@chromium.org>\n", "proba": 1.0098816574100056e-06} {"commit": "86c9a2191e412d7701940e5aa64279ca000235b3", "message": "Add ListsRanking, which is identical to ProbabilisticRanking, and PairwisePreferenceRanking as well #57\n", "proba": 1.8217754416127718e-07} {"commit": "b76c6119db47393d4431b7ab48306da82c73a35e", "message": "Link to issue about improving from_request_components API.\n", "proba": 1.1043138670174812e-07} {"commit": "28226455ade3dc8c55ecefc3a9c5f64b481019e1", "message": "Redirect to zones list from homepage\n", "proba": 4.471117733828578e-07} {"commit": "aa531a001a31b757fa12412bf0eb84e4c8d67bb0", "message": "Add test to expose bug 1625230\n\nWhen listing role assignments with ?include_names, the inheritance flag\nwas not returned properly.\n\nRelated-Bug: #1625230\n\nChange-Id: Ibe467246da90d30cb40564667642056da4816139\n", "proba": 4.838370273319015e-07} {"commit": "d57e6e3d6547a731522794cc9eecc5cb2c9a6df4", "message": "Add unit tests for sample policy token operations\n\nThere were no unit tests that validated that a user could validate,\ncheck, or delete their own tokens using the 2 sample policy files.\nThe tests show that in some cases the user or admin can't perform\nan operation as expected.\n\nChange-Id: I06e55cccbeea860d5eb3ff17a3ba87e0f2a95476\nPartial-Bug: 1421825\n", "proba": 0.0001134516132879071} {"commit": "73c3f56c881a1930142253daa878b982fcbf5116", "message": "Changed previous round and current round calculation for notices.\n", "proba": 1.0769274894073533e-07} {"commit": "a064cea29b1ce48e509fbf3971c21eaadd5ab32e", "message": "another syntax error...\n", "proba": 1.3538068799334724e-07} {"commit": "93cb37eac81c7adb618e4168d0c73135665ba49c", "message": "Removed the call to ask the API about VM's IP\n", "proba": 3.142700393254927e-07} {"commit": "e0ef5a054d4f83f27ecf75b6725d4cf798a54083", "message": "Make input NaNs don't propagate.\n\nPrevent that NaN levels at the input propagate later in the model. IF\nthe level is NaN, than setting it to zero is equivalent to making sure\nit is inaudible.\n", "proba": 1.1017824590453529e-06} {"commit": "b2fa24ba6f4bd828aad80b8aa93c428a8d407e8e", "message": "[dbclient] More flexible tag searching.\n", "proba": 1.0315939391603024e-07} {"commit": "da7c31c9b22b64f5fed723c98f37fed8e4dd831e", "message": "Test of possble bug in ESMF interpolation\n", "proba": 1.8600769635668257e-07} {"commit": "c469b3787e5a981c9ad8fdcf391ae5b7c37e86cb", "message": "Removed Mine.done_queueing_input, and instead directly compared Mine.queued_count with len(Mine.identifiers)\n", "proba": 4.061502920649218e-07} {"commit": "9b628d314bb41c594801ab1ac62451de44adcb72", "message": "[visir]: Minor changes. The visir temp path will now be created if it doesn't exist.\n", "proba": 1.1037663938395781e-07} {"commit": "9528a11379521b46b74a037492aee4d282472ed5", "message": "Fixes docs for lib.debug_dump_document\n", "proba": 1.0551249260970508e-06} {"commit": "0d7348ebfc08a799743134d7b14421ae7746c6fc", "message": "Return APIResourceWrapper object for senlin api\n\nChange-Id: I1ae6e455b7e69ad711e5220ecf997f9071b0f484\n", "proba": 0.0006594696897082031} {"commit": "a1fb7c5d276104a38811ee9fbf04f95a17e4668b", "message": "schrijffoutje", "proba": 8.637803148303647e-07} {"commit": "3845cede661bc263a38cf8850148380e08c0e9ea", "message": "fixed bug in rnaseq\n", "proba": 2.8753635206157924e-07} {"commit": "08f67653c756b1bec1220b82b679ed3c5762d3c8", "message": "Slightly-more-useful logger messages.\n", "proba": 1.1650838871446467e-07} {"commit": "d4cc3ccff3efd9bb69f8611fc7e24906114d8b30", "message": "CI: ax.rowNum and ax.colNum attributes deprecated in Matplotlib 3.2 (#32444)\n\n", "proba": 1.1053506909775024e-07} {"commit": "85cbc1cf0fb6ede17f27fcdc29bae00ac0bb65a4", "message": "diskIO: corrections\n", "proba": 7.517687663494144e-06} {"commit": "528d052dc109d2dc410ae52fd42b219d780fbeb0", "message": "Re-create the SentencepieceTokenizer each time encode/decode is called to ensure ops are added to correct graphs.\n\nPiperOrigin-RevId: 280537181\n", "proba": 6.490762984867615e-07} {"commit": "13f20dbc8c765fdc2db35d1ecd67d0ccac0f02e5", "message": "IMP state match padron\n", "proba": 6.006582111695025e-07} {"commit": "38362f01173f15a7f0ff802940242fad4ed35107", "message": "dcpaccess - different approach to extracting delay", "proba": 1.4949847582101938e-07} {"commit": "85cb5cbe151b9fc32193fe6cbe863d21d1b622aa", "message": "Starting work on file uploads\n", "proba": 5.045687316851399e-07} {"commit": "8f95ba0e3c3fc168008ef8e75f913f1849e1bfa3", "message": "Add explicit app label\n\nTo conform to Django 1.11 requirements, add an explicit app label to the\nmodel.\n", "proba": 1.1412215883410681e-07} {"commit": "70237e484cef883a719c802965e502d0171d6b18", "message": "fixed mistaken help text", "proba": 3.6481733332038857e-06} {"commit": "ca295aff7a051c5a8b5272a47f4af32378db3185", "message": "Update PID_wrap.py\n\nMade updates for converting acceleration to position,", "proba": 1.0420771445751598e-07} {"commit": "de259323a4ab8b67eb87236a453ee85237781c92", "message": "Fix logic\n", "proba": 0.00020321470219641924} {"commit": "144ae44c03cf0f0945ed386c151c849e8803fdfb", "message": "Wrapped access to configHolder.endpoint in try/except block\n", "proba": 4.1146216744891717e-07} {"commit": "2e7bb6721dbbc88d1ead74e8e5e3ac6b3760b6e9", "message": "can send email\n", "proba": 6.821724582550814e-06} {"commit": "9724e29bbf7ce3eac5ffbbde1bbec091d9acf52b", "message": "added a check for the imgur token incase come cheeky bugger trys to run it without one\n", "proba": 1.5238499884162593e-07} {"commit": "4f755873a20164d86b8d345ca146da90e8ec995d", "message": " Modified output display file\n", "proba": 6.682727189399884e-07} {"commit": "bce5deb6e4f54df24858a07b03d6a76309680dd3", "message": "Moving Pseudo-code fuzzy AST hash into slow heuristics\n", "proba": 2.317203552593128e-06} {"commit": "f72a58cdf4b3859266bea43f097a7147c3e2b126", "message": "to make noLoopingCheck changeable in insertTaskParams\n", "proba": 2.28219150244513e-07} {"commit": "c70725998da63acc0837400fcc885f60b98b8ee3", "message": "[dbclient] Update for new return format for rel show.\n", "proba": 1.0065637923162285e-07} {"commit": "f26c2059ff6e2a595097ef7a03efe149f9e253eb", "message": "Add default images for podcasts if necessary\n", "proba": 5.860181317984825e-07} {"commit": "75b90f38e96ac5e135d79094e4ddb21ffc983aeb", "message": "Better handle missing values in cell renderers\n", "proba": 7.52215271404566e-07} {"commit": "3fd6a52ac7a2ece50587efc59a5adfdaa2eeb5ad", "message": "Debugger: Minor cleanup in creator types dumper\n\nChange-Id: Ia9b75f960f5d59c39931319a774777b1bf6001ab\nReviewed-by: hjk \n", "proba": 1.2386921355300728e-07} {"commit": "16aeaf8b112176dee716cae361060fcb7d985fe6", "message": "Added ceph user to ceph commands\n\n* oschecks-check_ceph_health\n example:\n oschecks-check_ceph_health client.monitoring_client\n\n* oschecks-check_ceph_df\n example:\n oschecks-check_ceph_df 80 90 client.monitoring_size\n\nSigned-off-by: Juan Badia Payno \n\nChange-Id: Icb986bac88b52a123c2f99941fadab8c9e233b22\n", "proba": 6.528308631459367e-07} {"commit": "92c7d51ff535f8dea3a6cd912c6d18106d60079c", "message": "if image node is not present, do not try to walk it\n", "proba": 4.5646234525520413e-07} {"commit": "409420e332a1a1fdad55fbfdef5a3cfb53330d76", "message": "Add !help nonexistant error message\n\nCurrently, !help doesntexist gets dropped silently. This improves that. I also\nadded a bit of documentation (and thus testing).\n", "proba": 1.0488049895229778e-07} {"commit": "6d52a6a1447ae854e22bc6317b694cb3bb317c12", "message": "Fix import paths\n", "proba": 8.029508171603084e-05} {"commit": "a95bb53f77567d6c3d0bfad8a8f7c1a5ad788245", "message": "Separate study file writing from test contents\n\nRefactor the test I wrote so that the file contents are still listed\nclose to the actual test, but the repetitive code to write them to a\nfolder that the validator can then read from is defined in a context\nmanager.\n", "proba": 1.704041920902455e-07} {"commit": "a9fe8e92c1bc564f6545ae93d0568f0285ce753a", "message": "Revise level position\n", "proba": 8.069766863627592e-07} {"commit": "45a7c0e74bbe006a21bce5948fa3b68678994900", "message": "facebook reading\n", "proba": 8.749597100177198e-07} {"commit": "424642cb8ef456f697163e8563c073f3a4fc1f34", "message": "Fix permission error in dm", "proba": 2.0281913748476654e-06} {"commit": "0c5211fb2a79bdb636af0e287f23ad6a60adfc4f", "message": "spring\n", "proba": 1.5503319445997477e-05} {"commit": "f99d7c1e7e3f74cb0b393fad5a9dd5a6174ed725", "message": "fix more eval badness\n", "proba": 1.0303300769010093e-05} {"commit": "b8f26959f0eb1d29a4dbd89c641db0ef2fa1df84", "message": "Added more descriptive examples of what ``files`` can be in ``Item.upload`` docstring.\n", "proba": 1.1026826740589968e-07} {"commit": "c1e87067268efb0a6ae49ea789fff45c617d96fc", "message": "Comments and default title\n", "proba": 2.758761752374994e-07} {"commit": "a72e0a6068614b740ade7586ec316db7b9611b46", "message": "Make JBrowse work in DEBUG mode without nginx.\n\nfixes #14\n", "proba": 1.4852249705654685e-06} {"commit": "0a63cffb916edcf6e05b1c371c65c6f4a005cdb3", "message": "Modified the conversion function so that it matches iwth the others\n", "proba": 6.269444838835625e-06} {"commit": "9fed5873629550701d17192dd2743d6fb9fc59bf", "message": "fix gel\n", "proba": 7.375964514722e-07} {"commit": "29cf7f6789500c6064599e72e381b6c889538f06", "message": "Refactoring sql statements\n\nSigned-off-by: Jacobo Tibaquira \n", "proba": 2.796636636048788e-06} {"commit": "265f51b9b78437ad388b15b62ea58985c03b2d19", "message": "Change output format for model selection results\n", "proba": 4.373434023818845e-07} {"commit": "0fae8c27a647d18a1cfa344a98d51445f300eb54", "message": "Hotfix for 3.2.4revised release\n\nCurrently the hook on the ArcGIS side doesn't work with a release that\ncontains more than one character, so anyone upgrading to the latest\nversion who uses a global package directory won't be able to run\nscripts. To work around this for affected versions, use the registry\nhookup that we have exposed to ensure users' can still access R, albiet\nin a way that requires the bridge to update.\n", "proba": 9.98905917981574e-08} {"commit": "e0f3e68435b406e3bad9b7f7e459b724ea832e9e", "message": "Tests: Disable summernote editor test from Travis\n\nRefs #1561\n", "proba": 1.2562229301238403e-07} {"commit": "2d228ed998ecdfd95822189d3532dbaafd3827ef", "message": "refactor datetime field in TickObject\n", "proba": 6.206454372659209e-07} {"commit": "6f7c11c13793cbba7904cfd2a27ab3eb59ab9302", "message": "Update ispyb/sp/xtalimaging.py: proper multi-line docstring\n\nCo-authored-by: Richard Gildea ", "proba": 1.320541684890486e-07} {"commit": "018ebd40879aa5b5156d71b9505e7dbd5ce12e68", "message": "Fix TODO encode? in apache_configurator.\n\n`s = Random.get_random_bytes(CONFIG.S_SIZE)`, so `s` is `str`.\n", "proba": 5.355278062779689e-06} {"commit": "979dd1327764363163c3591c56a0f83649260952", "message": "Test app getters\n", "proba": 4.894329777016537e-07} {"commit": "b1d1df9a5368a50f82a8bab6a4be023a51ef603f", "message": "Update PickList.py", "proba": 4.1140251028082275e-07} {"commit": "af8f8e10cf0edd4a603d9c5312179731c0c46604", "message": "\u00b7 Add memcaching\n", "proba": 1.440417776166214e-07} {"commit": "d35c179757a63ed7c87b4ed98dd97c4829dad02d", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "4765093bfda0ede614a3293d5135cb01ee518b8d", "message": "this one i better", "proba": 1.2459589697755291e-06} {"commit": "e4a83d6cc5ca4010b615c2cb10363b81cd7ee0f8", "message": "Avoid double / in s3 key.\n", "proba": 4.1781495951909164e-07} {"commit": "eda2f6905a3275623525c4179358e55e472b4fd7", "message": "Fix bug in urls.py following the sample_list template being renamed.\n", "proba": 1.06466920613002e-07} {"commit": "b76802ceb3d05b5d8362dee9c66e351027dad4e2", "message": "update usage link\n", "proba": 2.880309182273777e-07} {"commit": "cdc11531b8422c890d272a84e28230b800e28c6c", "message": "[enh] get gender data of eurodeputies\n", "proba": 2.128828555214568e-06} {"commit": "cdfe54b5d7dce814949f7bea15317f26843b27d8", "message": "order\n", "proba": 4.5110195060260594e-05} {"commit": "f6506a26337d4c075169e5b844c0949a0000c946", "message": "minor changes\n", "proba": 3.7436623756548215e-07} {"commit": "1debdc25db0584821a63cdb1683b7852323ed00e", "message": "Handle splash in guild updates\n", "proba": 2.0247539112006052e-07} {"commit": "1d7cee6c86413ba3ecc5324ef0c69ce6949a6daa", "message": "jython compatibility, Fixes Issue 458", "proba": 1.1900078078497245e-07} {"commit": "63702a236d6c882b747cb19b566122a4a8ddfa3b", "message": "Change Indicator.add_menu arguments to allow passing CheckMenuItem status\n\n- Former 'active' becomes 'enabled'\n- 'active' sets status for CheckMenuItems\n\nSigned-off-by: Christopher Arndt <711c73f64afdce07b7e38039a96d2224209e9a6c@chrisarndt.de>\n", "proba": 1.3778816310150432e-07} {"commit": "b11c549d496a989a2cc24987f5538dbef2670597", "message": "Remove unused diagnose.py file\n", "proba": 5.643511826747272e-07} {"commit": "497103527da93ef028d2df62aabbd3f3462426ec", "message": "Add end of exec report, rename walker object\n", "proba": 4.860087301494787e-07} {"commit": "b324650da9dde4bbe2e235b29a3b4c571f41a7b2", "message": "Comment out debug output\n", "proba": 8.055411626628484e-07} {"commit": "06b1218b6ed755d3320bf9c17bda9ba9c0efc4eb", "message": "BUGFIX: PLOT: MANY/C: Fixed wrong argument to fill_between.\n", "proba": 1.0960670238091552e-07} {"commit": "051779eba310c7a59a35d3c366860fd360c7e8e9", "message": "using correct syntax this time\n", "proba": 7.011242814769503e-06} {"commit": "067191a956b8646a199b56f7bc3d8f41a82df3e1", "message": "Revert", "proba": 1.63741583492083e-06} {"commit": "73fea5927f496280a5c6339e817e11c9bb68415a", "message": "Removing command lookup error\n", "proba": 6.177743330226804e-07} {"commit": "61dfddf02d2646f1d910096a88d832b0107c24a3", "message": "saving\n", "proba": 5.220043135523156e-07} {"commit": "9e018f8e123cdabe0c1cba980577e1a06cd3227d", "message": "Documentation and some re-ordering\n", "proba": 1.237223585803804e-07} {"commit": "50bd1ce1118ddb52a54f679fc9faee4bc3110458", "message": "Allow the --force command line argument to accept one or more stage names'\n", "proba": 1.4533566172758583e-07} {"commit": "a33dcbf5c9ff6f8336fac510b29359d42825cbb7", "message": "fixed a command line bug\n", "proba": 8.978245205071289e-07} {"commit": "ca49c1ceda8945d243cb509c8d483b6b57db208c", "message": "Convert year or month parameter to integer for calendar view\n", "proba": 0.9998992681503296} {"commit": "dacbdde220100495ee15995bb97f58f3f71e9ff5", "message": "remove test case that's now supported\n", "proba": 2.517997188533627e-07} {"commit": "0748b6c76ffda1f9389f5e45d49b10eeda01f595", "message": "added order to agenda fo(r schedule form)\n", "proba": 1.179279607299577e-07} {"commit": "b861ac948d2923817978be87db4c83054838b154", "message": "Create commands.py", "proba": 1.0732712325989269e-05} {"commit": "5173e491ebfca8f103815359111ccaa3cfa90ca4", "message": "annotation metadata tests\n", "proba": 6.43740179384622e-07} {"commit": "4fa9a2e73909090b684a6ab4565a9da715200aeb", "message": "9.0-mig-partner_internal_code\n\nChange function get to next_by_code\n", "proba": 1.404334426524656e-07} {"commit": "93ec422c2ac4fcf9cf1f63924a061bce031e5554", "message": "Updated doc strings. Use `secure=False` as defualt. Do not fail if unable to get sizehint for file-like object, simply do not include a sizehint.\n", "proba": 1.2863911535987427e-07} {"commit": "4009e01004ecd9b8f3d759842181b65a3893f73a", "message": "fix `TypeError: the JSON object must be str, bytes or bytearray, not NoneType`\n", "proba": 9.067537689588789e-07} {"commit": "8bce924fbe88499f0d98dc292f72ee89ae767d8b", "message": "fixed the derpi command to use the filter\n", "proba": 3.620918676006113e-07} {"commit": "119f6294d6950722a5d8f2c3a31654a98e18c566", "message": "Fixed bug #61\n\nEXPORT: Use a \"with\" statement with the database and also started and committed transactions inside an already opened transaction. Removed the \"with\" statement.\n", "proba": 1.0267062577895558e-07} {"commit": "dd0a1b8ab573b23c3c382e47c1aa2248070bc4d0", "message": "Update log.py", "proba": 9.297150427300949e-07} {"commit": "fe8338be0ed55b5b164814e8e8feb85c4fc378c4", "message": "move assert from base class to SyncLog\n", "proba": 3.608026872825576e-07} {"commit": "ee6bb100b99f26136b6f70ad990582e48a6e43f5", "message": "Improved code\n", "proba": 7.058864071041171e-07} {"commit": "54670b47c48d26ea651cb490eb06158537a1e031", "message": "Add non-capturing groups to some commands\n", "proba": 3.6094315873924643e-06} {"commit": "c9dea2ceb8b15dea246e7c84ac40d2789f76a812", "message": "Find is better than index here.\n", "proba": 4.12877034250414e-06} {"commit": "d4f4ffe5c15feef07b18d2599b176365d505bdc4", "message": "revise control event instantiation\n", "proba": 4.741141879094357e-07} {"commit": "a5927f968788138c457fbf7d1913dbf77165629d", "message": "DB/Overpass: get_bbox() returns only coordinates without [bbox:...]\n", "proba": 1.2173128993708815e-07} {"commit": "6667f928c4d0962618fc8eef7678e368628702cb", "message": "cleaning up code\n", "proba": 9.754031680131448e-07} {"commit": "6c6a1639ae5a453bb4a5fd349eb718b664fe0ea1", "message": "In any case, create raw data folder\n", "proba": 2.435704800518579e-06} {"commit": "7ec7e863850d5b3c4079bc2b70fe95d83e5bbe1e", "message": "track when we hard bounce emails\n", "proba": 1.5658865493151097e-07} {"commit": "a6356d45059c0a323d315884bd1e24b8bf2eb4f5", "message": "Correct error in 'now' command with missing duration\n", "proba": 1.129199517890811e-05} {"commit": "28c109a1c92b73f384fb5bf25557a66df8b88670", "message": "Save memory usage in computing NAC by Gonze approach\n", "proba": 1.2668630233747535e-07} {"commit": "aa82d4c4f8099c29c2cfa2fcd807ec2261d9bbc5", "message": "note cases where host is completely offline\n", "proba": 1.720501927593432e-07} {"commit": "d0389f2b30f0af40389e39ae0276330f0a055d18", "message": "Convergence test for transformer with BF16 activation.\n\nPiperOrigin-RevId: 192334686\n", "proba": 1.2859692333222483e-07} {"commit": "2747a5a44e166b43ac3a4336d454b722ebbcba00", "message": "support sharded and unsharded envs\n", "proba": 1.835293659269155e-07} {"commit": "89c5a8465dab565463c6669a644a6c15eabebb45", "message": "Add new commands host and perms\n", "proba": 4.291499635655782e-07} {"commit": "4bbdc85e3390cf11a4db32ff25da37b9b2fc7155", "message": "internal merge of PR #1302\n\nPiperOrigin-RevId: 228581110\n", "proba": 1.772977924474617e-07} {"commit": "e7f66aa1ef7ec4628db7fe7f60706885eb38021a", "message": "[ci skip] fix comment\n", "proba": 1.3246030050595436e-07} {"commit": "cab8f59237386cc38a96beb4d18045d19e05494c", "message": "new languages supported by Yandex API", "proba": 1.641537465957299e-07} {"commit": "2ce30e16edf881caba0719a54bce7216e613d1fa", "message": "use correct model\n", "proba": 7.084934622980654e-05} {"commit": "641e948578e1e272e39459236e70757df2afd701", "message": "Updated for v0.3.2-Alpha. Refer to Changelog\n", "proba": 1.2863053200362629e-07} {"commit": "c3d5f59c07f3eaff7ffabf79d832c879a3a70ad5", "message": "Added docstring, problems comment to check_rules().\n", "proba": 1.0550105855600123e-07} {"commit": "b884341d73cb80e86df9ec756d5b84154a2bb982", "message": "Update migration for tweak to available_power\n", "proba": 1.9732949851913872e-07} {"commit": "51645f15b3854447c887abf0e92d0465d79ea92c", "message": "Fix bugs with the code blocks in defun's docstring.\n\nPiperOrigin-RevId: 197943921\n", "proba": 0.0006296331412158906} {"commit": "6c688e6e6bfce4b1baa2854cdd62f5cc3d79e03e", "message": "More generic-izing\n", "proba": 2.576790620878455e-07} {"commit": "44dc8d1a03d98d2b9243351177ddc2fc1ade943a", "message": "Jax float64 (#154)\n\n* Forced jax to use float64 precision\r\n\r\n* Added back one lower threshold since it failed all 3 backends\r\n", "proba": 1.7808731911372888e-07} {"commit": "002094a005e9650cf7165c8391dfec625115a395", "message": "Changing import orders\n", "proba": 4.530168382643751e-07} {"commit": "a6cb3bfeb5f7201a0e702024257df1f874a3bb70", "message": "Bump version 15.\n", "proba": 1.2677453753440204e-07} {"commit": "a642bdcba0c9851cafcb000434251e4341dccd40", "message": "less brutal smoothing in seq labeler\n", "proba": 6.230543476704042e-07} {"commit": "3f70ead379b7f586313d01d5ab617fd5368f8ce3", "message": "Print traceback if startup fails\n", "proba": 7.761591405142099e-06} {"commit": "38d98bc8a8c555138d8874e4e06faf503baae50b", "message": "no comment\n", "proba": 1.4503090994821832e-07} {"commit": "8095347cc2b4b1d10ae9e37223d98c2dd44b7164", "message": "fix reversing after commit\n", "proba": 1.6503810229551164e-06} {"commit": "84668d23ab5f10c164b41db97176766bd5484683", "message": "updated default setuptools version\n", "proba": 2.641976095674181e-07} {"commit": "cf6639df27879641b6ea561fa38ec52320b09780", "message": "Add comments\n", "proba": 1.6416548476172466e-07} {"commit": "deeb5459051f4868e0024b10d7ec682804e7b5be", "message": "Replaced ez_setup.py with the lastest version.\n", "proba": 1.0539707773205009e-07} {"commit": "2bcdb59af58844f5ddf1d5747ea605eaf305751b", "message": "changed redundent imports", "proba": 3.1058436888997676e-07} {"commit": "b45548f2306e5d24e37201b02fe716721150913b", "message": "Bug fixes\n", "proba": 6.413791311388195e-07} {"commit": "8bb7627e53bc6f4e7f6d5adab45083c65644e594", "message": "Added comments in _update_info.\n", "proba": 1.0650794735056479e-07} {"commit": "17ccc135772370a3fddab655eff5d634d5f991d6", "message": "parallelize leaf_transform\n", "proba": 6.014646714902483e-06} {"commit": "49ce631f64c7d228140a5605c4c7193e0da42171", "message": "Napisanie funkcji FITNESS\n\n", "proba": 1.2525900956461555e-06} {"commit": "4541b5edc808d77f53305eafca418d3be6715e8d", "message": "Cut 0.17.3\n", "proba": 6.629684889958298e-07} {"commit": "6a0966947c69f9f40bf21ec4390d8b89741cf3e2", "message": "Merging\n", "proba": 1.2624647069969797e-06} {"commit": "8d70bad3968cb11c929beafcef44b023822b886f", "message": "make interval adjustable in poll_request, and also remove check_response call duplication\n", "proba": 2.1651456449944817e-07} {"commit": "1f7eadea3be80cd001ae6be3fa3bc40f7e8ac3e2", "message": "Added more fasta validation\n", "proba": 1.1905753893870497e-07} {"commit": "d3ccd828e06f3586651cdd62f775ca3591c2b293", "message": "more informative error msg\n", "proba": 2.640827290179004e-07} {"commit": "a8fe56cd60296607f879dea86432532a5b40824a", "message": "Add a main method\n", "proba": 0.9989848732948303} {"commit": "be545a680e06d3bc1fe2d382f15193cdea4b7284", "message": "\"is\" is faster than ==\n", "proba": 0.00010194898641202599} {"commit": "469f0a7e22f9217298b2ea6117199ee8d6797df8", "message": "Hide the identity of the auto detach observer\n", "proba": 2.3742830990158836e-07} {"commit": "426d2a62cab270d4c0ad5216d213c1b717769e04", "message": "Remove rx.config\n", "proba": 1.4036022548680194e-06} {"commit": "fb94c8903e82b897703bf1ffd28df487cb30d7de", "message": "List call not needed. Changing it back to what it was\n", "proba": 2.549647319938231e-07} {"commit": "1b31c48711e07d62fecdd7d277b30ff49c5a532a", "message": "Replace string substitution with string formatting\n", "proba": 0.0010179256787523627} {"commit": "9f44a976b0b2703ad86eceb70b62dee9450560b3", "message": "Added default answers to lvm.linux_lvm questions\n\n- The LVM commands does a lot of tests before any destructive operation.\n Usually these tests prompts questions and waits for the user answers.\n But the user is not there to answer any of them.\n- Some functions in the module have a \"force\" parameter which defaults\n the answers to \"yes\". Others have the \"yes\" hardcoded. And others yet\n have the \"force\" parameter in examples e documentation but no code to\n handle it.\n- Added the \"force\" parameter on all destructive operations.\n- Those functions which previously have the \"yes\" hardcoded, had the\n \"force\" parameter defaulted to \"True\"\n- Functions which didn't have the \"force\" parameter have it defaulted to\n \"False\" and now the \"False\" forces all answers to be \"no\".\n- Also, added the parameter \"resizefs\" to lvm.lvresize\n", "proba": 0.0001431417476851493} {"commit": "b7196f3a3421d37995dee2b1a29b9002d29ec25c", "message": "Fixed some lint\n", "proba": 6.734260864504904e-07} {"commit": "2ee88682538440c4c3f28ea4abb3734830ef8be0", "message": "Removed erroneous space\n", "proba": 3.848941923934035e-05} {"commit": "f4cc6ed8f3ec723a760c6338efaa8d94eee8a572", "message": "Comment change from Nitrogen to Oxygen\n", "proba": 2.110845116476412e-07} {"commit": "68d8935163eff0952fb89f10a3e9ff4abb7c63ba", "message": "Skip empty cycles\n", "proba": 9.00161637673591e-07} {"commit": "c005ce217f77aa185ad8916475463f2040a3dc67", "message": "clean up yaml generator.\n", "proba": 1.292024620624943e-07} {"commit": "4b2a340dadf060af271d4300f008cc961dde93c3", "message": "Adjust log message when waiting for client-hello or client-auth (#66)\n\n", "proba": 1.2587172193434526e-07} {"commit": "5139fe68ad701fb32db6350ee9efa035f493dfe8", "message": "Issues Fixed in Web Interface", "proba": 2.106308585325678e-07} {"commit": "9e6ce36f59d4a39360080ff4cc13c1b6db172a58", "message": "Rewrite go_genrule to use go_path\n", "proba": 0.0002982602745760232} {"commit": "fb17ea21b3c22b5bff9421cee52c055c9157b5f1", "message": "map async\n\n", "proba": 3.979877419624245e-06} {"commit": "09d2736c49f7d4a696d2c97b9da9a56f509a6478", "message": "Fix page erase process by waiting for WREN to be cleared\n", "proba": 1.326040148796892e-07} {"commit": "411c42bbe705898f274814bf9a058b71ab063658", "message": "Python3.6: The order of conversion for complex call star arguments changed.\n\n* For Python3.6, the star list argument is checked first now, which makes\n more sense too.\n", "proba": 1.347613505231493e-07} {"commit": "e6d0e3c2b01a28a3235d1de292f99328c77e6584", "message": "print usage\n", "proba": 2.9058016934868647e-06} {"commit": "9072e6420077cfe141feec7a6957aed79a091118", "message": "More work toward a Python 3 compatibility\n", "proba": 1.3807255072606495e-07} {"commit": "df8feb00548e2595901165e4c954bc5a4376ee5b", "message": "Minor fix\n", "proba": 4.2334357885920326e-07} {"commit": "dab3f94a792d06dfebdd08302af76b40d222c0d5", "message": "Allowing relative paths for input files in swarm desc.\n", "proba": 1.1624235440876873e-07} {"commit": "b8c2a769e9c0ea60604d8b139edb9991745a20a8", "message": "Removed legacy tests\n", "proba": 2.14666201259206e-07} {"commit": "49a6c390b3fecb54e977234f8b0681b09ade232c", "message": "Such customize\n", "proba": 1.6134652014443418e-07} {"commit": "083499cc0bb2ad443bbebb45d0e75bd0bc2df8b7", "message": "allow ssh key of any size\n", "proba": 6.775986207685492e-07} {"commit": "8c4ad7e3aecd45e6207ee27003cceef9ed92b8d2", "message": "Added class docstring and ditched inappropriate class attrs.\nIndentation/whitspace fixes.\n", "proba": 1.0060052346716475e-07} {"commit": "348ee0e132c7d3f39d49c314425d3b0a98b1dcdb", "message": "Fix super() properties calling.\n", "proba": 1.6136344527239999e-07} {"commit": "3799de45961167a3751932f4cfcb1c497ec6bab1", "message": "Fixed infinite loop on Windows when mkpath(\"C:\\\\\") called.\n", "proba": 1.1776388220141598e-07} {"commit": "f7c08e5856553da187cff73ea366bf676f501a9e", "message": "Remove trailing spaces from command input\n", "proba": 7.24518031347543e-05} {"commit": "73b181da1f9c5a650d634ace0ba9e0ec8b5f7f5d", "message": "[compara] Fix slope => orientation from recent change\n", "proba": 4.5272400939211366e-07} {"commit": "e4177a8323cd38ef449082509e279e05fea82c0e", "message": "pass through build flags to linker in abi tests", "proba": 2.2443552438744518e-07} {"commit": "4af4eb129751ebe89147117d136156561c7c2dab", "message": "Shows pmap with scoremap and ROI\n", "proba": 1.2834550489060348e-07} {"commit": "cf046b9338cb901bb27842c1d7d2b95837aa86d7", "message": "generatlized getcheap / buycheap to a pattern", "proba": 2.6029317723441636e-07} {"commit": "185ee4e9e231bc69f5ac75f4d4911de20fcf5e61", "message": "Fixes PUT: partner change for ui to include the ref_des.\n", "proba": 1.0343168099780087e-07} {"commit": "0aef4e7eec489febed585dcc4f801ffe3003c7f0", "message": "Put Sprint and Status into special custom fields\n", "proba": 1.2665948645462777e-07} {"commit": "1e527882cf1d632c309dbf4844f49b13a676f110", "message": "! Watch Cloudflare NS pair alex+kara\n", "proba": 5.8683299357653596e-06} {"commit": "64193b5cc9306654b24ce8ea7efe4a2df90ee1e4", "message": "pr feedback\n", "proba": 1.9263522688106605e-07} {"commit": "c85b36d22070dcd712d598b3a478a6984a447f16", "message": "Fix Proxmox module crashing if the hostname doesn't exist and there's no vmid (#21305)\n\n* fail the execution instead of panicking when the hostname is not found and the vmid was not provided\r\n\r\n* return an empty vmid list if the hostname doesn't exist\r\n", "proba": 3.927557827410055e-06} {"commit": "3e6989257e1f3212c636fa464e90fca61e72cc1f", "message": "[FIX] trml2pdf: reportlab 2.4.4 doesn't support the previous syntax (sname in self.default_style)", "proba": 1.1127034582614215e-07} {"commit": "db324b852620c1b99abf9d8b3fa01b2369c3fea2", "message": "tune for Travis CI\n", "proba": 1.3440440227441286e-07} {"commit": "09fb1f89d4f831b0334c24aec960817e04ce0e75", "message": "got a nice run class going\n", "proba": 1.2622946599094576e-07} {"commit": "bd1e903b4bb423d679135e0164195f918e283111", "message": "+xn--lnpengesmart-tcb and mikonomi\\\\.dk", "proba": 2.330513780179899e-06} {"commit": "017bd7b1cd78b0ca58ad673ef7316ad87bbf22b0", "message": "Fix synchronize lookup of localhost info\n", "proba": 5.86450823902851e-07} {"commit": "ac4903eea4960a55b73adacbcc711847b0b843b0", "message": "Revert \"test env fix\"\n\nThis reverts commit 012f11c295a51429c553a7066f73204602b71b37.\n", "proba": 1.2053092746100447e-07} {"commit": "912b6a14a22740c04aacf9eb380d4530129cca5e", "message": "copyfileobj only works with bytes.\n", "proba": 1.1495297513874903e-07} {"commit": "1cbe7b335405e6294fcbca792914932f7226ac9b", "message": "Fix entities API\n", "proba": 3.510494570946321e-05} {"commit": "3e14bcb369eb5168ee8c2aff05a3ac35dc5b97e9", "message": "Updated conf.py\n", "proba": 6.456781989072624e-07} {"commit": "3c4c8dcdf678f88c80ef8a82273a82415077d636", "message": "averages the calibration data on load\n", "proba": 3.739808676073153e-07} {"commit": "8a46cb27d7bd7c614c535c9452e124308342e5d8", "message": "! Watch IP 199.79.62.149", "proba": 1.2163694407263392e-07} {"commit": "b02491ba705b3c89a5c4c4bc0055381254e82e89", "message": "Add --blocking-io option when docker connection (#19140)\n\n", "proba": 2.574653592546383e-07} {"commit": "402fef57b1f5b6216dfbd0b3461655cfed2a4fd2", "message": "add PEP8 formatting in doc/conf.py\n", "proba": 2.6508851647122356e-07} {"commit": "f5e65b648d632f2e75dffe7943ed3e7105b21d7f", "message": "Remove GCS patch fixed upstream in te upstream library\n", "proba": 1.8938987977890065e-07} {"commit": "17f46a876175286628e25fe57b3c1dcc3a7c7f5b", "message": "x4up, linked punctuation", "proba": 3.02858597933664e-06} {"commit": "ab523b228a77fe4e490a120ea6b8c0ae1084f501", "message": "removed unused imports\n", "proba": 5.81701726787287e-07} {"commit": "f326e49d752092e41b6f1226df74a9259b8abf1c", "message": "Fix for issue @synchronize doesn't substitute variables properly #16347 (#16349)\n\n* Fix for issue @synchronize doesn't substitute variables properly #16347", "proba": 2.2684213263346464e-07} {"commit": "43e5f3f0d43fe2b939ad64760f583745e437d4ad", "message": "Documentation: Show classes in source-order\nNot in alphabetic order\n", "proba": 1.9684732251334935e-05} {"commit": "2babecca98eb8090af7999bef6557cacfa3ce1f3", "message": "removes get_external_tools\n", "proba": 3.4226873140141834e-06} {"commit": "d478afa237b1140d1bbea04891845d60f2690054", "message": "findspam.py: Refactor net-worths.net regex\n\ncelebrity prefix is optional, add optional dashes to capture new variant.\nhttps://metasmoke.erwaysoftware.com/post/64148\n", "proba": 2.433377801480674e-07} {"commit": "c2a119b3d8aec898d3c785ea4c3e4eeca339bd17", "message": "Updated Sphinx doc settings for Django 1.6\n", "proba": 1.577334387548035e-07} {"commit": "8a6c5c67328a76723088662364cd6f2a04348718", "message": "Updated disco01-niner color\n", "proba": 1.1357072082773811e-07} {"commit": "db5f6067e9cc08aee30cea832a520e95cf8d3a6a", "message": "Unwatch Cloudflare NS pair alex+kara", "proba": 0.0033940193243324757} {"commit": "b35bdb267a14391ef9c0c9c575aee3b9f5ba2456", "message": "Fix Intersphinx inventory for Flask-SQLAlchemy", "proba": 5.295405003380438e-07} {"commit": "feb8932f113ed9570f0fece6ff266127e75f632f", "message": "DEBUG: 404?\n", "proba": 7.046475616334646e-07} {"commit": "13b684bb2c08f2b0b990a9f79fb0ec895c5e1865", "message": "Delete models.py\n\noverride_settings is no longer a Django app but rather a testing\nlibrary.\n", "proba": 1.1356119244965157e-07} {"commit": "71a32b31205f8ce379380817928327b3121714e8", "message": "Refactoring feed unread calculation to allow for timeouts. Now counts in order of last read date for subscriptions.\n", "proba": 1.0035272879349577e-07} {"commit": "0c2100574de64f2e28c4dfc6e309562e9148c31a", "message": "Watch AS 54290 --autopull\n\nHOSTWINDS - Hostwinds LLC., US\n", "proba": 5.417239208327373e-07} {"commit": "bde941d19116d71ca3cf24be26b2755069ed9998", "message": "Update tests accordingly.\n", "proba": 1.5276316389645217e-07} {"commit": "5c57cd63a6e9c4badc4beca8c53639ff5cc65c51", "message": "very minor change to conf.py\n", "proba": 2.1568979491348728e-07} {"commit": "defe2be8020e135ae361752b33818aaaab257e66", "message": "Minor style fixes\n\nAlso, move the stripping of the binary name to the __main__ part,\notherwise a nonsense argument has to be provided when running from\nthe interactive interpreter.\n\nPatch by: Sverre Rabbelier\n\n--HG--\nextra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%402636\n", "proba": 2.1073847165098414e-06} {"commit": "75d52a13876d4875f5a06aa66b167a54eeafde6c", "message": "Delete oscar_lookup.py", "proba": 0.0011034123599529266} {"commit": "ea95d8665900514771d188a17c589789469a54fe", "message": "Added try-except when trying to retrieve a file from storage\n", "proba": 2.098002767070284e-07} {"commit": "bbd2a08d732a2db4c0e9ae1fcfd16b3959876526", "message": "fix starting error", "proba": 2.8085248686693376e-06} {"commit": "ea8827fc6b3ff3caaee933042e3cf03cd0fb3cfc", "message": "Remove redundant blacklisted sites", "proba": 5.118705303175375e-06} {"commit": "e568cbd970003a98aae8ed822a61ebbcd895a400", "message": "Don't update PUT object $schema in the DB to avoid cloberring extended object definitions.\nHowever, publish of the PUT uses the base collection $schema, to be revisited...\n", "proba": 1.0002290196098329e-07} {"commit": "9f5587a87508f9594a87004769f724f3969cd647", "message": "update doc/conf.py for recent sphinx\n", "proba": 2.0685358492755768e-07} {"commit": "dfd1865c435bdd1f3024cec6e2878e2547bb748b", "message": "fix concordancing for python3\n", "proba": 1.3688409126189072e-06} {"commit": "fea804e848330794f81d7fae9124fe758e9ba52c", "message": "Commit transactions in a paranoid fashion", "proba": 0.0010234222281724215} {"commit": "d8fd78d38151fc1dd0a1aed89ffebae24fd55079", "message": "fix: add copied/downloaded/retained files to import to DatasetMemory\n", "proba": 2.014720479337484e-07} {"commit": "9083b12ba41a632bee0d167c8c68b3ea53df3e32", "message": "based on math spam --autopull\n\nWent over math.se spam back to the beginning of 2015, including things that seem generic enough", "proba": 2.308974416109777e-07} {"commit": "48e92a934c92e4a9ec393cfe45f1c8b149a5e2fb", "message": "fix max_forward code change\n", "proba": 1.1026581887563225e-05} {"commit": "4d720f62d9f9fa8ff1da23375ae6da463655a510", "message": "bug fix delete_annotation_from_annot_list\n", "proba": 9.120727781919413e-07} {"commit": "4c98b3d98b34e5874c06a945569c2bbbcfe9db6e", "message": "[doc] fix version import for docu\n", "proba": 2.0875924633401155e-07} {"commit": "f9e65c9a31e5614ae36b3f4907c3873fe4c8a8de", "message": "Remove unnecessary model validation\nThis checked the range for badge numbers, which is already done in the change_badge function that admins use. It was also actually preventing attendees from changing their badge type. Fixes https://github.com/MidwestFurryFandom/rams/issues/86.\n", "proba": 1.0384006543517899e-07} {"commit": "ed81040bbb6b2ba197d15630eda2f1f1cda91df4", "message": "fix coref only working for first file/plaintext_regex groups\n", "proba": 1.6534816893454263e-07} {"commit": "06433ce851cbd3af347aa145d6c89746ff188ced", "message": "[#251] updated date regex to match characters with accents\n", "proba": 3.153306806780165e-07} {"commit": "b5531d7dc026db17fa09e000c396ec6e67688d01", "message": "Lower body-title similar ratio to 0.90\n", "proba": 0.020466279238462448} {"commit": "f8f07933ce07e1cefe9d6f86ed56588e061509bf", "message": "moved docstrings from Markdown to RST for Sphinx/ReadTheDocs, typo\n", "proba": 1.5549117904356535e-07} {"commit": "479b414fd3d93bcf6dfabe61494c8e958ea60f08", "message": "Rewrite of basic methods for food sort class.\n", "proba": 9.089372952075792e-07} {"commit": "87c841039085d3f8397295f9a57ef01d34f30e59", "message": "! Watch Cloudflare NS pair Rita+Rocky", "proba": 1.7539038310587785e-07} {"commit": "f39d176740d2c4ed949c952128a7a57058c41985", "message": "Okay definietely no paths adding... lets see what is required for ipython\n", "proba": 1.227399906156279e-07} {"commit": "cb92a3cf67557fbd4a629601490a74bdb2119935", "message": "add print_list method to dijkstra\n", "proba": 1.2384599585857359e-06} {"commit": "60d8043643f895e87d433262ff11b4a796fa3f28", "message": "return why from methods", "proba": 0.9990602135658264} {"commit": "4a7fabe1d450a85ad1a08ff82e51066e8350689a", "message": "hacking on a simplified top-level signature\n", "proba": 8.680696055307635e-07} {"commit": "4413e0f3966c7730120a8ce581964ab679c772ad", "message": "dissertation pattern", "proba": 1.2096395494154422e-06} {"commit": "59cc57a682a0d43f38cc2f1251ebed7678070761", "message": "Include the site.css in the list of HTML CSS files.\n", "proba": 1.2299636864554486e-07} {"commit": "8cfb98ed414a257fc8763ed02ca4f3d024fd3198", "message": "Added make_sequence to __all__\n", "proba": 3.729273601038585e-07} {"commit": "515bc42a13466bacae549d6d2f1595d996415165", "message": "Move gratis to watch and exempt es.stackoverflow.com\n", "proba": 1.482080875803149e-07} {"commit": "6d33ce9f8178319625376311cdf01587eff84842", "message": "Bump version.", "proba": 1.5077837645094405e-07} {"commit": "ed42fa81e1029633f6b6f426c437df0c55262922", "message": "Fix LabHubApp.\n", "proba": 2.840666866177344e-07} {"commit": "09c7c2d19a9804217e2b82286ae221756c87c976", "message": "bye bye app, you should have never existed\n", "proba": 9.460746696277056e-06} {"commit": "3e905c510461e06d9029980df428e27b110f0629", "message": "add pymatgen version dependent unit test\n", "proba": 1.934781010959341e-07} {"commit": "f4c1093616d08bd4abcb5ddc030b59d863dcec05", "message": "Change netapi to use processmanager\n", "proba": 2.50612430363617e-07} {"commit": "fe4f5711d57699b2389b2e319bbb0728ea261bbd", "message": "[2016.11] Bump latest release version to 2016.11.6\n", "proba": 1.1119693255068341e-07} {"commit": "2ad5ccb0b90619954b7f421279aa91670585994a", "message": "Delete server.py\n\nFile renamed to emule.py\n", "proba": 4.6695345190528315e-06} {"commit": "58b75dcd5127311344b1ca3b85d0e252a1b83787", "message": "Makes head call only when check jenkins is restarting.\n", "proba": 1.0921604598479462e-07} {"commit": "95c5d16e00d3cf865e91c2d52ed5d06e76f3ec7f", "message": "Fix: Fall back to simple status bar text if jinja2 is not available (Issue #366)\n\nThe recently added support for status bar text rendering using powerful\npython-jinja2 template engine results in no status bar messages being displayed\nat all, if jinja2 is not available for any reason.\n\nSo GitGutter might fall back to a simple message mode, if python-jinja was not\nfound. It becomes an optional dependency then which enables users to modify the\nway status bar messages are rendered, but does not break recent functionality.\n", "proba": 1.1903279073521844e-07} {"commit": "f2fd9fee9752c6ac89d256d65565b9c972ba769a", "message": "feature/oop-api-refactoring: Check kernel and add exception\n", "proba": 2.3267155313533294e-07} {"commit": "3585d3a944460ea81f1fe57ac43fbe100eecb978", "message": "small refactoring\n", "proba": 6.957463938306319e-07} {"commit": "9a6e03ce6e75484e86b4da580695c4a491ab4106", "message": "added-highstate-output-to-slack-engine", "proba": 5.922700802329928e-05} {"commit": "1473ce3b8bf7ef93ec43ca9f5c0733a50c744b69", "message": "added module basedir to sphinx doc\n", "proba": 1.4992751573572605e-07} {"commit": "48e50f862cdbeeaf3bcac08560d4e981902ef378", "message": "Updated from Brython Server: 3/4/2016 2:48:32 PM", "proba": 1.1509601449688489e-07} {"commit": "72b3d998a14388be98c73556df1cd20859a71573", "message": "remove invalid data\n", "proba": 0.0012331500183790922} {"commit": "afc5e1a31d731dca6d4829c09e2dd9a682878e06", "message": "Flask was imported twice in app.py\n", "proba": 6.358982886922604e-07} {"commit": "f2a4beddc91065fa19c98e8742a8146e759b9765", "message": "Removed my email address from the gmail_spf_auth.\n", "proba": 1.4758340682874405e-07} {"commit": "19cd706ea7143876ab88155ae3f471c890f094f9", "message": "add: plot options for legend and fontsize\n", "proba": 4.1565144215383043e-07} {"commit": "035de968ca33271f5022dda5f2bba9f2a6054925", "message": "Raise error\n", "proba": 2.5338190425827634e-06} {"commit": "cc3efcb3c0c663677e4d49c5c315cf67c7962ce9", "message": "upgrade\n", "proba": 0.6886125802993774} {"commit": "35b0bb78507352c841c9244c8907d2923597c864", "message": "building docs for rtd\n", "proba": 2.2500215379750443e-07} {"commit": "758bdd62e85c66aee2d8ec74c0d9825fe791325c", "message": "FLAC2AAC: Note on multichannel FLAC files, TODO\n", "proba": 1.1869294525013174e-07} {"commit": "32e1ff21562c451ab790c0af077b3760855f1e6b", "message": "use slider component for bmi gui\n", "proba": 2.1492348878382472e-07} {"commit": "2c2184686c1cf8ebe8e08ce012f501db882c5416", "message": "extracting data gathering methods to functions\n", "proba": 2.0205567125231028e-05} {"commit": "89f8d0ebe01e188b5a043dfbf891cf3a3bca0504", "message": "Clarify that event is sent up to the master\n", "proba": 0.001957281492650509} {"commit": "39b23d090f11e0e90e4a42fd51ca309fb70b8007", "message": "fix doc version\n", "proba": 3.550701137555734e-07} {"commit": "301d80d0f518ebb5bd2be8a2458fff45505cd7ec", "message": "charset=\"utf8mb4\",\n", "proba": 5.5589712246728595e-06} {"commit": "41908da5023aa76a3bff5d288d60909911c1c12a", "message": "Update histogram building and comparison algorithm, need to update images\n", "proba": 1.7392228812695976e-07} {"commit": "9581ef02d3908d82c1b59a016fdc7aa3a784aa96", "message": "Also show the host when logging 'User does not exist'", "proba": 1.2841186958212347e-07} {"commit": "75ce6e126dc8865630d87d3a0dcad71017567082", "message": "update copyright\n", "proba": 1.645972247388272e-07} {"commit": "a51c8396f4709127ff0c91fa4cddb45d83945d5a", "message": "charset=\"utf8mb4\",\n", "proba": 5.5589712246728595e-06} {"commit": "d022889a0e0262df20603a2eb422a5f94eaebe7a", "message": "specify name_software for parameter validation\n", "proba": 4.557937529625633e-07} {"commit": "dad4603f5cb90786d971e2045f54f307f282a30e", "message": "Check for grant existence instead of relying on MySQLdb return code, Refs #1245\n", "proba": 1.2664789039718016e-07} {"commit": "5b03fb9711a9278533a076c1e8d0c34edab464d1", "message": "is_enabled must return bool\n", "proba": 0.001775931566953659} {"commit": "a9c8011f7d0fe2168142df3e6963ac5fadeb28a0", "message": "bugfix sphinx doc builder\n", "proba": 4.604910373018356e-07} {"commit": "f64581aa9a9816cc7730eb1c3d1cd0c92178d151", "message": "made formatting changes according to PEP8\n", "proba": 3.328533182411775e-07} {"commit": "6e0f83f6c7e127e3f9fde2362e877ae303a41306", "message": "Port #50338 to master\n", "proba": 1.2213700983920717e-07} {"commit": "acd939bcc1f6d8c5a16eb7f21e5117057bf4e5d5", "message": "Fix plugin path on Sublime Text 2\n", "proba": 2.3807791649232968e-07} {"commit": "b79429fce3821e307002348e5871e88732c302fd", "message": "Fixed capitalization in doc conf file and made less project-specific\n", "proba": 9.705307775220717e-07} {"commit": "01766bc619ecbf016d94ebd5c448097428f9cf88", "message": "trivial rename of variable from \"todo\"\n", "proba": 3.282872285126359e-07} {"commit": "f15a86ee23687d7ba273fa568406cd77f31ae92d", "message": "The -L option is now -U", "proba": 0.9999872446060181} {"commit": "f3e1617c332a4f83bff940f3306543e9292595a5", "message": "fixing bug of double priniting\n", "proba": 2.3402569127028983e-07} {"commit": "499199ad710d3da90fe6681eed107cb3f7ed5138", "message": "changed gamelog to be player log. updated playerlog. should change to player\n", "proba": 0.0012528664665296674} {"commit": "7b470e15f67eeda8ebee38676ca3d547072b8d33", "message": "Addresses rh_ip's shortcomings when configuring balance-rr bonds with\nmiimon monitoring, as well as adding support for 'advertise' ethtool's\nsetting.\n", "proba": 1.0153894436371047e-07} {"commit": "758a38f72960d47aecf58ecd4479f53074192c79", "message": "bug fixes\n", "proba": 8.304810990011902e-07} {"commit": "5a523ebc0bdb035e11cb609131d3cb81e1207f80", "message": "add sample_time to iostat\n", "proba": 5.282925599203736e-07} {"commit": "119a59e83888c64d9eade508a441b313e3f10340", "message": "meow?\n", "proba": 1.3898903716835775e-06} {"commit": "1bbfaea04e16aeca3978cec9c65c1a65ee13f689", "message": "Making salt.sdb.memcached python3 compatible\n", "proba": 1.9026622339879395e-06} {"commit": "64e9e2c3b3cd6c4c02b339903bce02bda3c7f7b0", "message": "grains.absent uses set(None)\n\n- support nested grains\n- conservative about removing complex values (dict or list)\n", "proba": 5.208864308769989e-07} {"commit": "de9dc873e4ff08e3139313868dc2e8da45b8f638", "message": "Suppress py3 code compatibility check\n", "proba": 4.203977539418702e-07} {"commit": "0ae2ef06588926ceb93ee58e6e5803a90dd56534", "message": "Under Py2 we still want raw to be set to True\n", "proba": 0.0015612266724929214} {"commit": "bb4fa5ad95ca915630e2a9613960a6f30c1ff7b9", "message": "Revert \"Minor: Fix typo in docstring\"\n\nThis reverts commit 37aeba314330a5cefdf9ca1d5ce069bc790e692f.\n", "proba": 2.300299399848882e-07} {"commit": "721dd8e2d8fab2d523a3ce38a46e857fd8d0f60f", "message": "Fixed ported urllib code from old cura\n", "proba": 1.5958468679855287e-07} {"commit": "87e2cfcf4d7541dd10724c545f4238a86497315b", "message": "Py3 compatability\n", "proba": 3.5762570860242704e-07} {"commit": "36fb6e2baadc4e27a419fd665984c5d0b6531898", "message": "Ensure that hierarchy is not null\n", "proba": 0.9991267323493958} {"commit": "8597b5c9bef30aae8f98fd2da685b59a7adc9bc2", "message": "CURA-1923: SliceInfo: Sending data threaded\n\nThe idea is to make the sending process, so it won't block the UI until the data is sent or the timeout has reached.\nThis commit does the following:\n* Increasing the timeout to 5s\n-> As we are sending our data threaded now this won't hurt. At least for clients in slow networks.\n* Moving section for \"sending data to info_url\" into a seperate thread.\n* Starting the thread instead and collecting all threads in a list\n* Removing all threads from the list, if they have already finished their work.\n* When the SliceInfo Extension gets __del__'d, it will wait for the threads until they finish.\n\nContributes to CURA-1923\n", "proba": 0.0005213313270360231} {"commit": "d2f223c60c3b1e6ccf9ec088c821c92631b623a8", "message": "Comment that says PayPal doesn't work yet. Waiting on feedback from them.\n", "proba": 1.0148260543019205e-07} {"commit": "6a5624db11b0bdf369bc461493dad0968cbc6000", "message": "Add option to read additional arguments from stdin\n\nAdded a boolean command line option called '--args-stdin'.\nWhen this is used, it will read addional options and/or arguments from\nstdin.\n\nWhy is this needed?\n\nOn Windows, the maximum command line length for CreateProcess is 32K\nand for 'cmd.exe' is 8K. Reference:\nhttp://blogs.msdn.com/b/oldnewthing/archive/2003/12/10/56028.aspx\n\nOn Linux, the limitation is generally much higher and isn't an issue.\nI have run into this limitation in 2 different ways:\n\n1) When invoking the 'salt' command and explicitly listing each minion.\nWhen the minion list gets close to 1000, this limitation will be hit.\n\n2) When invoking the 'salt' or 'salt-call' command and passing a large\njob argument. We have our own plug-in modules that implement more job\nfunctions. Some of these functions take a configuration for a minion.\nThat configuration routinely exceeds 32K.\n\nBy passing options and/or arguments through stdin, I can avoid the\nproblems outlined above.\n\nSigned-off-by: Sergey Kizunov \n", "proba": 0.999997615814209} {"commit": "64f7f86a8689d1f9c3d136d17f94947441e070b5", "message": "Change the code to not die if the keys directory is not passed when\ntrying to get the connectParts.\n", "proba": 1.1207825423298345e-07} {"commit": "4bc5883ad792078ade196610ee83adb967c95d8f", "message": "SliceInfo: Check for available data before submitting it\nThe code here is self-explaining again..", "proba": 1.0303276098966307e-07} {"commit": "cdbb2f8b7130b5f5f0e44720dfdfcc77785845c4", "message": "Fixing the ASCII art. Very Important of course.\n", "proba": 1.7399678142737685e-07} {"commit": "241229bf52abd9181310490799ff5ba115fe0f68", "message": "added ball, and sparse option to xyz\n", "proba": 3.8451369732683816e-07} {"commit": "92c69272fd6b0d8ed92bed9800bfcd9fe474c8b4", "message": "Exporting idb's with less then 100 functions fails\n\nJust a small bug causing the script to fail. \r\nAt https://github.com/joxeankoret/diaphora/blob/master/diaphora.py#L1483 where \r\nit tries to report progress for large IDBs , the calucaltion in `if` statement will\r\nfail with divide by zero if `total_funcs` is less then 100. \r\n\r\nCheers,\r\nea", "proba": 8.025368742892169e-07} {"commit": "9d9aed6926fbf8f30849502af28912e7f6e32bbb", "message": "fix unit test\n", "proba": 6.971770858399395e-07} {"commit": "e6d327a5249e14765999357a391d97c4fd2cd8b8", "message": "Test for sitemap.xml\n", "proba": 6.596291086680139e-07} {"commit": "5f962415d401b3c37825d6e3a0560de47ce9ec3d", "message": "remove unused code\n", "proba": 1.6653786587994546e-05} {"commit": "d9c4462c4ec456f71af17ed0983c3f5117958587", "message": "Fix 500 error when using wheel_async\n\nWhen `wheel_async` is used, the job completes, but for the same reason\nwe couldn't replace the signal in the first place, we fail to restore it\nafter control is returned to the context manager.\n\nThis fixes this by only adding the signal data to the `old_signals` dict\nwhen we successfully override the signal handling, so that we don't\nincorrectly attempt to \"restore\" the signal later.\n", "proba": 2.7806908065031166e-07} {"commit": "2c1a04e5cec9bfb23b3e0a00813bcb481f16b52b", "message": "Changed warning for reversers using Python2\n", "proba": 2.38404183505736e-07} {"commit": "eb624f48a259e948f4bc4c33370fe971b19ea19b", "message": "Update alert() fn tests according to new signature\n", "proba": 2.3014645478269813e-07} {"commit": "221d7dbee4291aaf6d06648f2e1ec2eefef7611e", "message": "Fix: rename() kept wrong cursor position #545\n\nThe cursor would change to something else once in the insert mode. If\nthe new name was longer than the old one, the Parser couldn't get\nthe stmt at the wrong cursor position, thus rename failed.\n\nNow save the cursor position before entering the insert mode. Then pass\nthe saved position to the 2nd call to the rename().\n", "proba": 1.493267660634956e-07} {"commit": "fd3f2fb88f73ec0e1d08825ee1e90d9939e2e9b9", "message": "/nltk/wordnet/util.py\n* fixed import bug reported by sf.net user semanticbible\n* cleaned up stale code\n\n/doc/slides/*.tex\n* misc fixes\n\n\nsvn/trunk@5326\n", "proba": 2.194912838149321e-07} {"commit": "768ba69646331184025ce395de380cf6fa4d6c08", "message": "remove whitespace\n", "proba": 0.9999994039535522} {"commit": "6312f162eb37ac3e57a18ea80fe201ab08a6ded1", "message": "Add Docstring entry for the filter feature of dir_items()\n", "proba": 1.3009317001433374e-07} {"commit": "a710b93fead29a49cebebe37fecd33ed9ac4221c", "message": "add exception for not exit table\n", "proba": 2.866699787773541e-06} {"commit": "b0592663f9eb1c7895a34345aa4c9ff2092c6e28", "message": "Traceback is shown on logging, not on `sys.stderr`.\n\nAlso, explicitly state that a traceback follows.\n", "proba": 1.1152701517858077e-07} {"commit": "9294cb347eed3e570040d3df8b0465cf7cc33063", "message": "Write tests for node contributor bulk update and bulk delete\n", "proba": 1.9185384303455066e-07} {"commit": "9c235c79acd351af19543f4f0e380030a1c2fb14", "message": "Fix hidden check again\n", "proba": 1.650165586397634e-07} {"commit": "59ada03b852c5ef73253e8540083e6eb42ce93b6", "message": "salt.utils.process: rm duplicate import of signal module\n\n************* Module salt.utils.process\r\nsalt/utils/process.py:9: [W0404(reimported), ] Reimport 'signal' (imported line 5)", "proba": 2.9680353463845677e-07} {"commit": "8e352c00449afebbc8dca213bd54fa226283330e", "message": "make ripe managed check work if no key is set\n", "proba": 3.0032100539756357e-07} {"commit": "f7b6c7982e16d42d0722ac4d94ec287e530a9aba", "message": "Private IP address check\n", "proba": 2.809854322549654e-07} {"commit": "c3bd93c4b239deacd393d1481d3eb4d1443f2fa9", "message": "Cleanup in the tis_analysis skeleton\n", "proba": 1.957802311380874e-07} {"commit": "c606cf571f6adcf5c512af814aad1cb1788e522e", "message": "Change API_PREFIX to API_BASE\n", "proba": 4.510339749685954e-06} {"commit": "119b397d00d131d8dfc13dab108fea1dfa16cf7c", "message": "Text completion when a single unique completion of partial text is available to an EntityComboBox\n", "proba": 1.4101159706569888e-07} {"commit": "225eeb2ea6f15ffd942bde398a8e1eef5adfa935", "message": "Add unit test for multiple calls to OnlineGP.fit()\n\nCloses #1.\n", "proba": 1.0273801365201507e-07} {"commit": "193d23485718e9bb14e7631a76d2d521b45e000c", "message": "Stuff.\n", "proba": 3.213302193216805e-07} {"commit": "f7f8a618d30847b585c044fa15bb37a32ae27879", "message": "moved handling of 0 variant reads deepr into the call stack of translation.py\n", "proba": 2.7515022793522803e-07} {"commit": "297dad858cd01fedfccb51c4598467226e44ceb4", "message": "boxlayout: ensure that any change of the size/size_hint/pos_hint will update the boxlayout.\n", "proba": 1.2155031470229005e-07} {"commit": "cb51561570592c4bdf4c39370f4e7176f12e0f94", "message": "Use ipywidgets.Layout with ipysankeywidget\n", "proba": 8.407330938098312e-07} {"commit": "1220ac6a96b47df0d01738acca52bfaef9b0e3c8", "message": "Adds a CLI to docopt_c.py", "proba": 1.0801217058542534e-06} {"commit": "a4c547546dfbe91204259870066897166370def9", "message": "extract change computation from setFrame()\n", "proba": 7.037026534817414e-07} {"commit": "1452be39228b9a2f74bfe33396d165d42daaedbd", "message": "Fix up tests to use new dates from fixture\n", "proba": 2.607771705243067e-07} {"commit": "751d02d8b25e3d3f29db70d8a1920e5d902e56f9", "message": "Fixed unescaped auto-profile name in settings\n", "proba": 3.8368293076018745e-07} {"commit": "e395ed149f108dcd727ecdffc5b6ee6a8093bf2b", "message": "(fix) fix try-except-as for python 2.5 [#26]\n", "proba": 1.1393587584507259e-07} {"commit": "1e4d2d7a0e23217d56f3958179719ced4e9a3544", "message": "Fixed getStatus for 'auth' API\n", "proba": 4.077379571754136e-07} {"commit": "f7d49ac4f84e0c5e89234230825730e1d6f684c2", "message": "JMXProbe correction parsing attribute location\n", "proba": 1.9090677483291074e-07} {"commit": "550aea7cfa9f98f5cbd43df531bddeab3a53698f", "message": "Version 1.3: Add EasyList blacklists; minor mods\n", "proba": 1.3126401654517394e-07} {"commit": "10eaa9085eef1a10813f3bad282728694892e44f", "message": "Normalized symbology to Zarchan's.\n\nI was using Fx+Bu, a weird perversion of Fx+Gu vs Ax+Bu.\n", "proba": 1.0859123023010397e-07} {"commit": "689f5df9ba880f2f4c3b247058cd44e311fcff16", "message": "disable bonus payouts\n", "proba": 6.174869326969201e-07} {"commit": "2eb3a682706a5ff0255474230ec32fd0ac96c727", "message": "sansview: update mac build script\n", "proba": 3.817550577878137e-07} {"commit": "bd0349e5c30753763de10218cf9c74df94bcfa96", "message": "add a test for dashboard\n", "proba": 8.839346605782339e-07} {"commit": "1bec5e537dc06a29e1c0a8e3bb46bed513bb74cb", "message": "Removed one more print\n", "proba": 4.655873624415108e-07} {"commit": "9419dc1a2ab809d86b6e585fc9a15a15dfda1fc6", "message": "Delete FalltoSkyBot_Music.py", "proba": 9.512272640677111e-07} {"commit": "d72e82cc5a4a508ff906cc1202dc3a873e3ba185", "message": "fix solution_array varstrs\n", "proba": 0.9984431862831116} {"commit": "4dad4ae2d0cb852f35dde3572534551497f3f3bb", "message": "plugins.channels: Renamed joinChannels to joinchannels (which is now an event handler of the same name). Removed \"connected\" event handler - not used anymore.\n", "proba": 1.0592812316190248e-07} {"commit": "0ed22fbf767612bba8cb3f967ad74c734a21a3ee", "message": "fixed bug\n", "proba": 6.589494319086953e-07} {"commit": "9777b51ee2f898c176b6e7d2c9412eb7556bb60b", "message": "fix typo for load array (#5315)\n\n", "proba": 7.46758075820253e-07} {"commit": "2b3836caf8325062ba2191e74d946ed973626f17", "message": "Start 0.19.dev\n", "proba": 4.4393286202648596e-07} {"commit": "b61aa0a695c7a460cf4e4557337fda4bee7680aa", "message": "Typo Mistake", "proba": 1.797607728803996e-05} {"commit": "a13bbb146a0153e14eab913905f3a0877ab15574", "message": "- adding helper function set_default_creation_values() (#901)\n\n- removing SDK, converting classes to reflect current standards\r\n- correcting 'parent' property", "proba": 1.4815609574725386e-06} {"commit": "b6c8e38b96293bacd7739411200cd85f47f1efca", "message": "handle division by zero\n", "proba": 0.002079399535432458} {"commit": "41eb305d41e25ae4fff49f99d0a6dfc6c689afda", "message": "removed another whole lot of code previously added as a hack and try/error\n", "proba": 1.321016469546521e-07} {"commit": "020ff8448530f49373832ca35ad473f5fa8a2418", "message": "add separate log in main\n", "proba": 7.243814366120205e-07} {"commit": "6ddc32c10124d10db53f9017044be65a00a35a33", "message": "Add newline to end of __init__.py.\n", "proba": 4.864631137024844e-06} {"commit": "27f692d77668e462d9fb26e5b81883c867dca12a", "message": "Minor fix\n", "proba": 4.2334357885920326e-07} {"commit": "e54ed8cb83cc8dd7bffaccc564a7d39db1b081d5", "message": "Delete skia/PRESUBMIT.py.\n\nThe only thing is did was send try jobs to linux_blink_rel.\n\nR=jamesr@chromium.org\n\nReview URL: https://codereview.chromium.org/1054973009\n", "proba": 8.957770205597626e-07} {"commit": "a2dd3b4938bae2a6799058a356ab76d20b6274ae", "message": "Handle missing dbm module on some python 2.7 systems\n", "proba": 1.0333353657188127e-06} {"commit": "9ab8b0074f2a30daab623bf17977ab373798879e", "message": "Speeds up existence check\n", "proba": 2.920744179846224e-07} {"commit": "a9344f4130732f6880e3bdd26c47dbc0043e646c", "message": "[diffview] fixed selection not update correctly when content has horizontal offset\n", "proba": 1.6770472655025515e-07} {"commit": "468dd25146fb5041f4fd029f72a8caa39c808e63", "message": "Fix typo in keystoneclient\n\nhypen-separated --> hyphen-separated\ninitialzied --> initialized\ndid't --> didn't\nsematics --> semantics\n\nChange-Id: I79841b76fdf7a267e325b8b9d917900ccb393c02\nCloses-Bug: #1254660\n", "proba": 0.009128410369157791} {"commit": "0560f65eb6740281c77c9b016bd9a44f486be6ae", "message": "Use dense matrices instead of sparse where that makes sense\n", "proba": 1.1303113751637284e-05} {"commit": "20342d8422e42e6ad959630b2d4a003c8b6d9655", "message": "ready to show upset\n", "proba": 3.969276178850123e-07} {"commit": "0f2272beeadaec7dfc66e8f09a2670f388d45802", "message": "[skip hazardlib][demos]\n\n\nFormer-commit-id: e886480832fcfa5dd345bf885c7de67b2e1b0eef [formerly 38d7696c6dfa54017188768a106577bcbec1dc65]\nFormer-commit-id: 01f862ebdd584dc8d8d4a6925d44931ced861409", "proba": 8.568343901060871e-07} {"commit": "fbbec3bb85977584cef3c16265f408206dd6a30e", "message": "Absolute import to satisfy Py3 compat\n", "proba": 1.3030202694608306e-07} {"commit": "a868539c94c216b54d44bc12ceb3cdb21de0928b", "message": "Stopped hiding exception information for downloadCoreNLP fail\n", "proba": 1.2643162961012422e-07} {"commit": "072d374665fffdff70cc33cb70b5213d455ad8b1", "message": "Reduced slow tasks in event_based_risk\n", "proba": 0.0002306808455614373} {"commit": "b5de492143a7f142e01d6ecbe5a7a9502c2c41a2", "message": "fix #34798\n", "proba": 3.536123074354691e-07} {"commit": "cf9fabcfe03eb0fc70f8ce178f9c5484b381e0ed", "message": "Further update to cofactor filtering.", "proba": 1.109882248329086e-07} {"commit": "ec2c83fcac8b0ea4ed099ec1dc7a66bd81036cf2", "message": "Changed the storage of all_loss_ratios\n\n\nFormer-commit-id: c9a7cc0c7853242ec8fd003e23613360e5ca5508 [formerly 32f03275fb38f43b0c5e992e528abbca6774ccf7] [formerly 32f03275fb38f43b0c5e992e528abbca6774ccf7 [formerly 8c2a4e52cf4cd8af7ea3a218988600dcd7015c51]]\nFormer-commit-id: af0a7e32463921bb35364d768e09e47bd8edda9e\nFormer-commit-id: 83394000d132dcafd46e5ee17a092bef48b0d980", "proba": 0.00016862379561644047} {"commit": "632c6588ab7cfd4a2be83b175687ec0bff062b51", "message": "adds win_event_viewer\n", "proba": 9.166927839032724e-07} {"commit": "808a6593d1f767fe095b0f8c59597bce5103557a", "message": "Removed the deprecated API from contrib module\n", "proba": 6.150643230284913e-07} {"commit": "bbfea56704904347c6a8ac0b1cbbcb2d7b498e6a", "message": "removed leftover files\n", "proba": 7.352542752414593e-07} {"commit": "055619da8c50a94b2a86d8c0b55ea891536dfdc0", "message": "Change destroy() to correct usage for hardware instances on softlayer\n", "proba": 3.5385585306357825e-07} {"commit": "5411e000a6da26dd506c0cf13d27fd82c4cfef6e", "message": "Fixed generation of agg_loss-rlzs\n\n\nFormer-commit-id: 924e1d0ec80b9a100595585909953758fea22a03 [formerly 1e7188fb40ccaf6f31689660b8849dd9ff9eacf5]\nFormer-commit-id: 08f6b5a2b6a50b592d28a7970b1589c92782e31f", "proba": 1.034194042404124e-06} {"commit": "34f6eef42401590bc1809af68e15992f63736027", "message": "Add sensor class for gyroscope uncalibrated\n", "proba": 1.2535449513961794e-06} {"commit": "67314ad28e914193c4e15cc3a0a82fa283d3016e", "message": "unicode communicate pipe\n", "proba": 5.4113916121423244e-06} {"commit": "6a56fd4b0d3fe129fef0b1b9f6873e146ab1890b", "message": "Saved memory in the fork\n\n\nFormer-commit-id: b4ef3a4b6c3f4eec99a8eed1fab4e63154edbd70", "proba": 6.260026566451415e-05} {"commit": "9efbb234df4ada672a82c35146bd4a4ed1667ba1", "message": "Volume static to use alsaaudio/osax\n", "proba": 1.6241391165294772e-07} {"commit": "c8edaa73f6f24319681cc7e5ef21a7a15a4e2482", "message": "Raise an error for wrong time events\n\n\nFormer-commit-id: ac4bc4cf5fafb190fdbbbf1605984a83f606acfe", "proba": 0.9999957084655762} {"commit": "00dce916e18bb0b05601d82d734e1cfdc45af140", "message": "Fix update container and call to ocular\n", "proba": 1.26696448887742e-07} {"commit": "383767a867de3520c1149d4d5cbba52915781a85", "message": "DOC: Fix docstring. Add example.\n", "proba": 1.32419003762152e-07} {"commit": "63eab671e50eeae1d101e58801773e30ae7f9f83", "message": "Restored the usual task_arg_gen\n\n\nFormer-commit-id: ac76ab15be29a7d1472d16b8982d1155344af6ae [formerly de34b3e944f719a831e9b6d8539e33e481e493ff] [formerly de34b3e944f719a831e9b6d8539e33e481e493ff [formerly 1faed853a331e735fd348360494b718c2f6680b9]]\nFormer-commit-id: 7de6f4b2015668518e5f628c266d0252d11ac5fd\nFormer-commit-id: c1ade098c55df9ffc9f851d374c8b1f6d2826c78", "proba": 0.9999994039535522} {"commit": "9e845ba374d8bb5017341afa293cdf5a6b423e20", "message": "Fixed minor bug in Trollius control\n", "proba": 1.8563750359135156e-07} {"commit": "1185595ea55f4b4be2f227a37b33d8142bcf92c1", "message": "chore: bump version to 6.0.0.dev0\n", "proba": 3.6441258544073207e-06} {"commit": "7b6f6e5e9ad0047b74549acdc99640c95db63286", "message": "Removed \"d\" term\n", "proba": 0.00013622688129544258} {"commit": "8d17d7ca0a495d8c90948a28837a150a342dc62a", "message": "Add test_cidr_for_source_and_destination\n\nChange-Id: I1ba16dbdaa023b982343a28f2130aa825b4586c9\n", "proba": 5.7225042837671936e-06} {"commit": "21850c2900eac8940ebe0b411c07ff1ac6f66389", "message": "[skip hazardlib]\n\n\nFormer-commit-id: d02ee01a14127c13c78cfc4c389be63a933d4622 [formerly c1be4a4199c2bba72e7f8baf8226c66962ed1787] [formerly c1be4a4199c2bba72e7f8baf8226c66962ed1787 [formerly bbd4d6f8c123c496df3e9791ceb86b6e0b24fe92]]\nFormer-commit-id: 4e6f748c6ad5094af4545efec3ce9ea6c5fa94b4\nFormer-commit-id: 8ed3d31aee80aae8f7b22983f2b1f7301fd32a0d", "proba": 1.3433204912871588e-06} {"commit": "801834012a0f5696dde957db3051540e1f3f1cb1", "message": "Bugfix -- cache-directory now respected.\n", "proba": 1.0367620006945799e-07} {"commit": "40173179d228fa21cc318710928cd9ae6bb1ea14", "message": "Ajustes en contexto\n", "proba": 6.559274083883793e-07} {"commit": "1f61f0a5e37b700794f6aa4fcd7e72be5dbed6da", "message": "Don't re-query tags we already have\n", "proba": 1.1734011451380866e-07} {"commit": "ca1c8418f76104549b58fcb206aa3ba5e0bc402a", "message": "Syntax and bug fixes\n", "proba": 3.941246404792764e-07} {"commit": "e589f4347a730abc64f43b3b427ac556643c361f", "message": "Use proper mesh\n", "proba": 3.1975221645552665e-05} {"commit": "d89a93fced18033071863926fb796cc5683e565b", "message": "WIP on filters \"API\" and new filters\n", "proba": 1.4820568594586803e-07} {"commit": "a9351eae6289522831a778585bbd6669c9adc535", "message": "no tabs!\n", "proba": 1.6604393238139892e-07} {"commit": "de77015af85140784f79d1d88e0ff7623b5164b9", "message": "Fixed an issue where a root object evaluating to False wasn't serialized properly in JsonResponse.\n", "proba": 1.1239101382898298e-07} {"commit": "6da6e46b953d623a632c8490bf1ca3e6482fc110", "message": "Properly display error on command exception\n", "proba": 1.7072939954232424e-05} {"commit": "d40def007c1b8bbe4cf9588b526f88615b55435b", "message": "Use JSONRenderer for search view results\n", "proba": 1.8157879821956158e-07} {"commit": "0128d6930ecd560c21798083356149e8ae7df073", "message": "Fixed _del_lock() to be compliant with OS X\n", "proba": 6.473046028077079e-07} {"commit": "eaeb741eb89beb3b527d332385c773939434d0be", "message": "Tweak the __unicode__ method to be more resilient\n\nWe're seeing raven fall down when calling __unicode__ on Profile which\nturns around and calls __unicode__ on User which for some reason doesn't\nhave a username.\n\nThis handles that case and if there's any exception thrown there, it\ndoes a goofy thing and shows the profile id and the exception it kicked\nup when doing unicode(self.user).\n\nThe purpose of this is to give us some information about what's going\non, but mostly to not create cascading errors which raven possibly\ndoesn't handle well.\n", "proba": 0.0007937506888993084} {"commit": "bae8e027cacd608ad2aaaa74961169f7cbb3d25f", "message": "doc: corrected 'eos' highlighting\n", "proba": 5.512503776117228e-06} {"commit": "87414f3e5060869a6ce7e9267a5fe53066e21253", "message": "Remove dependence on test name as index level.\n", "proba": 3.7204569025561796e-07} {"commit": "13ad34ba6d3d81ebdb6455a6448c3412378b0d38", "message": "revised args", "proba": 5.3516669140663e-07} {"commit": "b820886d921a4fada1ec7e7d0fe1bfbd280692e4", "message": "cleanup imports\n", "proba": 4.494849861202965e-07} {"commit": "3544a5019e5348fa92a68bce2a8fab1b7aadb475", "message": "repositorio - forms - corrigido typo no nome da fun\u00e7\u00e3o javascript\n\n\ngit-svn-id: 7e173122c027d0f21e6e87a6c2ee4015326e90ed@1428 9a56ff49-6fb5-480c-b637-73e6884d323a\n", "proba": 1.2753014289046405e-06} {"commit": "2795d505324f1262bbaccde210e4ac80625b2526", "message": "handle not found error and return 404\n", "proba": 2.2162730601849034e-05} {"commit": "8132595804e6b8f3b56ce5a0bab247fe5efa3cca", "message": "Fixed issue with binding export\n", "proba": 1.8286860381522274e-07} {"commit": "f63cb2fb57273d17735ddfb0539df3801167d5cb", "message": "Updated comments about the use of nyaqd1.ms.com in tests.\n\nA test now relies on nyaqd1.ms.com being resolvable through DNS\nwhich will not work in outside locations. Some ideas for future\nenhancements were left in the comments.\n\nAlso switched to using socket.gethostbyname() as per Gabor's\nsuggestion - no need to hard code the VIP. The server is already\nrelying on DNS resolution so having it in the test doesn't hurt.\n", "proba": 1.1972680624694476e-07} {"commit": "2c3a66e4b200d9d243a80c282f628b061f1235fe", "message": "Converted the documentation to restructured text.\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@4665 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 0.999998927116394} {"commit": "159a0c751c8769ee62347ff10e4130e4ec5c8200", "message": "targets/colorlight_5a_75x: update instructions and LiteEthPHYRGMII's tx_delay (required with LiteEth fixes).\n", "proba": 1.0175240561238752e-07} {"commit": "5441e7abb9781bcf620401f0d1da686e49055272", "message": "Resume correctly upon interruption\n", "proba": 6.331159738692804e-07} {"commit": "1bcff6fac0b5105e5162b10b359c409aef423b74", "message": "Add catch for HTTPError\n", "proba": 2.4100847895169863e-06} {"commit": "064b09ecf040ea9e75691f4fa23bf52d07ee7f1e", "message": "Updated from Brython Server: 5/17/2016 2:06:22 PM", "proba": 1.092781403144727e-07} {"commit": "b452e405731e2b84ed1ef55cee785c375ff55732", "message": "Resolve flake8 error\n", "proba": 1.7301769617006357e-07} {"commit": "9a9a0d0f3ce342df11afd639d7231320dcc3fc5c", "message": "Else doesn't need anything...else\n", "proba": 1.9518661247275304e-06} {"commit": "229fef4b53c3d8be753c0829a1f0ba02c52877e1", "message": "Store bucket name only\n\nTo avoid storing unecessary complex objects.\n", "proba": 1.880076325733171e-07} {"commit": "487cd916657680b9b2434a31daa5fe58f683a00b", "message": "Remove unused import\n\nRemove unused import in openstack/common/db/sqlalchemy/session.py\n\nChange-Id: Ia89d749f698a9bee71f70fbb7e723a0131bfccfe\n", "proba": 1.1730581945812446e-06} {"commit": "a7dd18385679970d0afefd574b62523aaeffe062", "message": "nav hotfix for commtrack reports\n", "proba": 1.4616213661611255e-07} {"commit": "8d94190e0593c58d363468d460aa4214ee3fd306", "message": "Fix docstrings that made Sphinx to fail\n", "proba": 1.4774296914765728e-06} {"commit": "590eeb4f8e73767dbea8042e3cecb91ad1668b7d", "message": "added render templates\n", "proba": 4.304066010263341e-07} {"commit": "ce2b620874efa8e42b74d4853d00febd763b375c", "message": "Removed print statement and changed to velocity based face target\n", "proba": 3.4811279192581424e-07} {"commit": "02f522ab0fa8f94ec81ec52d678cf9d3ec22324c", "message": "rename state --> ledger_value\n", "proba": 1.475174144616176e-06} {"commit": "43f25d29fa05dda5a088899be5580f9adde3804b", "message": "corrected values in extract_parameters - wrong value was used (0.169 rather than 0.619) and formula for conversion factor was missing a 1/sqrt(2) term but it now calculates values which are physically not correct\n", "proba": 5.757669327977055e-07} {"commit": "8a4935468f347c28dcde4b221a4fb4efa5d37e37", "message": "DOC further clarity for boolean distance operations\n", "proba": 1.153135542608652e-07} {"commit": "074e2cde35ac1c547fcc3d419edeab2b5effa4ae", "message": "shared form error check\n", "proba": 2.5741380227373156e-07} {"commit": "69b5742d47d49238f1309dfa0332c2774196fa8c", "message": "fixed a few bugs and commenting\n", "proba": 1.3324354597443744e-07} {"commit": "c2b54b13ea43c20f1dde281659efbc9eb054afd4", "message": "heroku db\n", "proba": 8.09863195172511e-07} {"commit": "f053feab7750f1078fb680d70852258b8f5b2d9a", "message": "Get full details of new patient\n", "proba": 1.1215973216849306e-07} {"commit": "e2dc6939c3250f89b5f6977dac27a385b0b8daea", "message": "Removed admin.py as it's not needed\n", "proba": 1.4554301230873534e-07} {"commit": "b98437deda6ac13e46e5eb67ba495028e4b1f70b", "message": "Use st_mode (not mode) for info of a path\n", "proba": 4.181418375992507e-07} {"commit": "399bf14525c6a76b3612d97c2a7302e43f92fb61", "message": "Save the uploaded files async at the same time\n", "proba": 1.2719135611405363e-07} {"commit": "5c67bc8cb99b111a63a82922221599fbf8f9c7c6", "message": "removing the unicode() calls in favor of the six library\n", "proba": 4.85495411339798e-06} {"commit": "5e2b71fd598f4730ca386db74fbb9ea38919e610", "message": "now with stackexchange handler\n", "proba": 1.5677514397793857e-07} {"commit": "21d0cfd25660c5ff0cb290497d1e388137bdbd29", "message": "words now in.\n", "proba": 1.4967822892231197e-07} {"commit": "15accc3c5f44cb4b8290359ed11d0618fbe95fae", "message": "add new fields to the indicator create test\n", "proba": 3.6761514365935e-07} {"commit": "f99960ab876f5071304f9df67a6ac91df90b5dc0", "message": "Correct implementation of Delete transaction; it was not calling _before_execute\n", "proba": 7.581266982015222e-05} {"commit": "9011fd1431faffc8fe80195b4829535616ee0821", "message": "Maybe fixed formatting issue?\n", "proba": 1.3366353357469052e-07} {"commit": "b29556e0613482424a27bd31b5f29f64b577597c", "message": "Handle package renames\n", "proba": 5.824289246447734e-07} {"commit": "7abae8130364b1e7c2b2b75226a80be474b5839b", "message": "Use .size() instead of .Size() in download_and_convert_mnist.py\n", "proba": 5.939463108006748e-07} {"commit": "8e09daa2ae4f5b5bf5e08b1e672b7d52e428c13a", "message": "Added some print statements to make it easier to debug failing populate transactions.\n", "proba": 1.0888761181604423e-07} {"commit": "4c1c6a8daaa3726047ea92cd287455ada8c193a8", "message": "removed local_function_runner\n", "proba": 0.00020318660244811326} {"commit": "3dcde2f2b740cefa09d1e19f7c8d64eeadcec737", "message": "utils: ensure path is escaped in url_regex()\n", "proba": 4.6661727992614033e-07} {"commit": "8cf620b44aa6410b8f4e20bf225e7d5e057c628d", "message": "basic crawler loads locally\n", "proba": 2.0998344041345263e-07} {"commit": "98c65ac6ac0fdb744b3de57cdcee7a1d01b67069", "message": "ENH: test_perf.py - use psutil to set affinity (if absent functionality - then affinity module)\n\noriginal affinity module is not commonly installed, has known issues,\nand was not updated since 2006. psutil is already used in parts of\npandas, so it would be logical to use it instead by default.\n", "proba": 1.1544438649480071e-07} {"commit": "f45c2e5e71bfe7ad31d31ed5352084cc19031d84", "message": "some clean up for scimath.py, use type objects instead of typechars\n\n\ngit-svn-id: 89d05d7b87d257b19585950f76a9d6e29854e44c@1393 94b884b6-d6fd-0310-90d3-974f1d3f35e1\n", "proba": 5.237189270701492e-06} {"commit": "c11791c35063b95b3ae3c77ec16562c403ba9976", "message": "update filter creation to correctly handle nested dict filters (#180)\n\n", "proba": 1.0538160211126524e-07} {"commit": "a614872d79a508f42c83c1517d68f5b1eea4b980", "message": "vcf genome stats\n", "proba": 4.174063406026107e-07} {"commit": "e1b935db97c4e0345466d51dcf361eb6954262c2", "message": "Support for multiple imported namespaces in generated scripts\n", "proba": 2.429695484806871e-07} {"commit": "9b3fee4f413c02c0b69465fe935b9ea48206191d", "message": "Add context to excerpts\n\nSigned-off-by: Adam Stokes <0a364f4bf549cc82d725fa7fd7ed34404be64079@ubuntu.com>\n", "proba": 0.9999966621398926} {"commit": "5ad7dfbea0b85fca283025e09a0dc33b2fbe97a6", "message": "switch to the cdn domain\n", "proba": 5.153385700396029e-07} {"commit": "01be6bb650c7077cd5b3b7edacfa1b325c798def", "message": "Set email addresses\n\nFor error emails etc\n\nComment out setting SMTP password until we have a working one.\n", "proba": 1.0530123262242341e-07} {"commit": "5062ddfa56d5df6095adc09af438e3b1b07de854", "message": "Auto-update mechanism should exit with status 1\n", "proba": 1.572601104271598e-05} {"commit": "efff49dba27fa41e349c12ba7ce9baa1cecf661f", "message": "try_to_index: reraise exception and keep trace\n", "proba": 3.6482182963482046e-07} {"commit": "f42bbf0ae1cfa91ac12c02b77f91706f5252f8ea", "message": "HUE-4631 [home] Prevent TransactionManagementError resulting from history document conversion failure\n\nCurrently all other document conversions use _create_doc2() which is wrapped\nby atomic block except history document conversion which uses _historify()\n", "proba": 1.4831935857273493e-07} {"commit": "0b176a5f650884261357e9c087715adc338d08d1", "message": "tests: es index update\n", "proba": 3.8098871755209984e-06} {"commit": "ae57f18493dd23e4414018669202300f7ed82853", "message": "grade summary table: searching in school login column\n", "proba": 2.0420902728801593e-05} {"commit": "6f974f1368fc28b4e84817a9610501cea9709695", "message": "Skip 'No test file..' messages in cases of info_, __cvs_version__, _version .py files.\n", "proba": 2.390991085121641e-07} {"commit": "dc9d4f97270ecdeb8dc4ef8ccab1831344553dcb", "message": "fixed a bug in range, num is accepted\n", "proba": 2.055019763247401e-07} {"commit": "f4f39057cbbfa4daf66f82061e57101b88d88d05", "message": "Make csviter work on python 3.7\n\nPEP 479 does not allow for StopIteration in generators. Instead,\nhandle it explicitly, also use a for loop which looks simpler.\n", "proba": 1.1250447329302915e-07} {"commit": "e299ec9c96929775a6dac79605cf196fa4d55237", "message": "acr: default task to v1.1.0 on run cmd (#10985)\n\n", "proba": 1.236557096717661e-07} {"commit": "af60c1f7af9e5e629c562b5d449618c566e0eb92", "message": "distance function\n", "proba": 3.0078388590482064e-05} {"commit": "e01518c9e50abdb0208053eae5812e38d2873df4", "message": "Final doco update for Tam and alex\n", "proba": 1.1745397898721421e-07} {"commit": "61cf2cb400e5ad80923570824e50dd40828ce434", "message": "make scope_server status work again\n", "proba": 2.816674395944574e-07} {"commit": "fb487b265f2fd0772b79b9bb81f5438ecd25c93b", "message": "Minor cleanup of arguments\n", "proba": 1.3987848035412753e-07} {"commit": "b88c6c06563e4db1139aafbd6d8d97d1fa7a57e4", "message": "allow per-block arguments in ResNet.make_stage\n\nSummary:\nThis generalizes `make_stage` to support per-block arguments. It will unify the `first_stride`\nargument and also useful for DeepLab's dilation backbone.\n\nNot sure if this would be confusing to use since it might be too magic. Also, we might be over-generalizing it by making \"stride\" configurable -- that depends on whether a \"stage\" is defined to be arbitrary list of CNN blocks or a CNN block with the same output spatial size.\n\nReviewed By: rbgirshick\n\nDifferential Revision: D22467495\n\nfbshipit-source-id: fae8eba1d64940aa23ae4eb6780bbcc4ed152ce0\n", "proba": 3.3825024274847237e-06} {"commit": "ce2e994d249adc4a06065890d1fefa6629218d63", "message": "Added first few tests for get_pos_spec_slices\n", "proba": 1.8056842066016543e-07} {"commit": "59833d6a9ef216ae78c4116e6fae8441f1ba5d9c", "message": "remove redundants\n", "proba": 0.999998927116394} {"commit": "83e198ac86e42dad5a844ba1d92f8864eff6272b", "message": "fix params bug\n", "proba": 8.562919902033173e-07} {"commit": "f710a42e2e5c3443adb288ab40a66d2b5a636284", "message": "doc update\n", "proba": 3.261732501869119e-07} {"commit": "bbb9d7e65fdff189562d1e2a5cdf4a302e562f3e", "message": "Use parameterized test\n", "proba": 1.1162229611727525e-06} {"commit": "f02c6cc7f3fd75afb6c2686f3cf54776f5161661", "message": "reverse pull request order for release notes\n", "proba": 2.539537717893836e-07} {"commit": "996b1ef6c211cc9f2bdef9cb6ef6b891004d6a71", "message": "renamed admin...config to config\n", "proba": 1.4843170959011331e-07} {"commit": "d548d5170dfd0eb6a0bb3fc49862d06dac2bb7b2", "message": "Updated component\n", "proba": 5.8525631629891e-07} {"commit": "ca75ab89684fe1b7edba56e21f193c9fdddba426", "message": "Raise type error if element of row is not Mapping\n", "proba": 1.6196167052839883e-05} {"commit": "ca4128750ecef61b69f9f732d2cf883f8358ea59", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "85dbbb307a5338e9261584eba993ce8aad6e4dfe", "message": "randomly vary which n of the request cycle we fail for robustness\n", "proba": 4.6147755483616493e-07} {"commit": "2ccad67cf3c95e3a2ae926084999963e29e7fd5f", "message": "Stupid bug with new protocols list\n\ngit-svn-id: ee7a57951e762bd0bd73821a456cc95fa2e543d2@3204 1105ee14-b0fa-0310-85a5-ff3eed429ff7\n", "proba": 1.0331943940400379e-06} {"commit": "66d0eb36513122cac13270843bbd94438d3f3268", "message": "fix conflict with two languages added at the same location\n", "proba": 1.7135768075604574e-06} {"commit": "c4ccc820f0ef4439a92e49facca5b812bb57d29a", "message": "Added Soli and Lozi languages\n", "proba": 1.1937270016915136e-07} {"commit": "25b1a376f2f7e2bdb52e518e1aa216c7d6889399", "message": "Updated unitest\n", "proba": 4.939071232001879e-07} {"commit": "efb15d68fb291e2cb978f30fa83ea60c04a8a3d5", "message": "Add a unit symbol for dimensionless and some SI prefixed frequencies\n", "proba": 1.5722041268873e-07} {"commit": "844bda3c0fa7563155218331735e37df64db2879", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "fdfd82607e97a17657eefbf6644fb376d4384141", "message": "fix for ugliest version check ever written\n", "proba": 1.2054196929511818e-07} {"commit": "ed778a2bab84f165c9f136fd60fcce0a546c8505", "message": "change default library component selection for better multilib support. may still need some tweaks\n", "proba": 9.209355766870431e-07} {"commit": "f1bc740e604744ca394568822f06653b14ad63ee", "message": "Debugging triggering worker deletion.\n", "proba": 1.7607381153084134e-07} {"commit": "3972a216b65c4590abf914d4c0709b066d0db0b2", "message": "Python 3 bugfixes in log-likelihood for RNN models\n\nPiperOrigin-RevId: 325600406\n", "proba": 1.837503731394463e-07} {"commit": "10d2a6a62f6e93d2c9fa58e3ffa1ee94e54cd74e", "message": "FreeCellGUI.range makes more sense now\n", "proba": 1.4918329327429092e-07} {"commit": "bfe36750b157d744c83a6aaea1bf2cb95afdf65d", "message": "Fixed #10364 -- Correctly identify test spatial database creation errors to the user.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@10603 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.6051044440246187e-05} {"commit": "4246d710af84e7d6c4b11c4b749adbcc2c3b97a8", "message": "I don't think 'aw' was a valid flag.\n", "proba": 0.00010325797484256327} {"commit": "ecb52c092a51a822d0e52c890d8da0103b321604", "message": "fixed bug\n", "proba": 6.589494319086953e-07} {"commit": "4016f59ac836dad862e990d4e700849c9e19d26c", "message": "Upload .txt files as well\n", "proba": 2.424982312732027e-07} {"commit": "4f3961897a741b1bb223590737e9f0d4886b8967", "message": "Use parentheses for line continuation", "proba": 0.00016032735584303737} {"commit": "7dc77ed9c4b9b05be1c8bf38ef481e4accb6b6b2", "message": "python range notation (end excluded)\n", "proba": 2.0940969136518106e-07} {"commit": "91c0ee5408fd251001c721a225c2c160d0593b16", "message": "fixing counters layout\n", "proba": 3.576478491140733e-07} {"commit": "0aeed2672385e5ced072dd3c115d06d072f42f5f", "message": "Tidying GUI functions\n", "proba": 2.52608600703752e-07} {"commit": "f265c31a8500e5f66096bc157266c4400e68cb2e", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "c576b92ee88b2a631dfb04e2f3bdbefb1fbbe758", "message": "minor bug fix in additional fileds builder\n", "proba": 1.440730983404137e-07} {"commit": "43188f1df895851d0b3c117f3bbf5b0dcffdec81", "message": "fixed bugs\n", "proba": 5.844202632943052e-07} {"commit": "0e3cf20516906a7185c9249d9dea5e27bf46b915", "message": "fixed bugs\n", "proba": 5.844202632943052e-07} {"commit": "fe6527d77acda4859e6924f4604287e2c355e041", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "e7fef1ea84d139788ad1b7ce88a9dea9fe19ce93", "message": "Cleaned up some ic()s\n", "proba": 1.1215090125915594e-05} {"commit": "810a786d06adb3b2b934fa7a76cb8abfdfaf3daa", "message": "Finish test of rules\n", "proba": 5.075764875073219e-07} {"commit": "a985f0ac4ef31e534e96319da9980745f5169252", "message": "Disable some Pylint errors\n", "proba": 8.374329922844481e-07} {"commit": "abb72e478fd0bdf5929111d3bc782b94e98819ab", "message": "Revert b00b3c4 (but keep addition to allow_failure list in test_valid_docs())\n", "proba": 3.1590889193466865e-07} {"commit": "f874bfca194ddf063b021adf510e8c821098e5ac", "message": "actually downloading files\n", "proba": 2.0109716558636137e-07} {"commit": "204c9f04a105648bb45cca860f92c8ec8550c829", "message": "Removed commented out old code", "proba": 1.3863146364201384e-07} {"commit": "10c8e50ba3fe2fb2a9693d0e1065c88849ee2721", "message": "Disable a backend test for CNTK\n", "proba": 6.733778832312964e-07} {"commit": "1ae3729cab42a97ca7c6109e2216f05761b5c402", "message": "improvements to the bgp module to make packet construction a bit more seamless", "proba": 1.4239323320452968e-07} {"commit": "d94790601c2d591863b2acfe23d26eff1014d53c", "message": "removed contraint on eta\n", "proba": 5.849382773703837e-07} {"commit": "decbf17faf2f4ae73561385cbe3747414c59e3c2", "message": "Issue-47 dont overwrite the reports variable. In fact, separate it so its *only* used when passing in reports. Otherwise just add to the report dict direcrtly\n", "proba": 1.2383756597955653e-07} {"commit": "f0ce6bdaff2bb20cc7efc29efb6e54f2096675a4", "message": "Skip tests for multi gpu\n", "proba": 2.0144842949321173e-07} {"commit": "dda3ef890a824c283b111110d561df22b58bacf5", "message": "Make dqn to be able to use gpu\n", "proba": 2.215333552157972e-06} {"commit": "56cd8656a0c0788706e4af8d4bdf7ebed58b7a70", "message": "Fix lintable_web import for now\n", "proba": 1.2718238906472834e-07} {"commit": "4e4d5e38b1794bf50a1de94c090dc004a3489a3b", "message": "Make sure that every command sent to self.ftp is correctly encoded or decoded\n\nThat's to say bytes in python2, unicode in python3.\n", "proba": 1.4005829598318087e-06} {"commit": "c98ef2e8b64b7daa94c0e883f71813a3e3226a78", "message": "set current day to none if there is none\n", "proba": 0.020174536854028702} {"commit": "dca79aab83b08ec97197fa36d12323ea158048c4", "message": "webservice working\n", "proba": 4.4139568444734323e-07} {"commit": "160081c38014c21740ca5b054ab5ab2eefbec124", "message": "More random tests for better coverage func_field_modgcd()\n", "proba": 1.314851516553972e-07} {"commit": "734c7c9ad2d1290a202e48ebb5535a0bc371bd75", "message": "fix iarc constant test\n", "proba": 1.5128061932045966e-06} {"commit": "cd7e614043b1ab1f7bf86ef3ee063f432bd8916a", "message": "Table.to_dataframe() bug from Pandas DataFrame 'truthiness'.\n", "proba": 1.3970836221233185e-07} {"commit": "d233fb6e50f1f3c790c01e3e22117a874a33a9e6", "message": "trivial sphinx changes.\n\n--HG--\nextra : convert_revision : schettino72%40gmail.com-20091012151055-be42bu5r2f6gayk3\n", "proba": 4.754780320581631e-07} {"commit": "0fb67eb28008280b66fb8a654390793df7b0df89", "message": "Modified expected output of one fixture doctest to make it non unix-specific.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@4716 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 0.004424051381647587} {"commit": "86505c9a1c589d514c1238dd101b9a08d780abb1", "message": "Basic tick labels\n", "proba": 4.445755621418357e-07} {"commit": "a8ef1e521c61ed4f635ee89eb2794691189e1ab6", "message": "check git+ support and eggs\n", "proba": 1.6890210474684864e-07} {"commit": "2ca9a739913fe3498da885210c2dd10b0045c623", "message": "Typo fix", "proba": 2.181570607717731e-06} {"commit": "30a2cef91457b06d262d8e5c3c57ea0f8d108a16", "message": "added mock for doc\n", "proba": 1.5977946077327942e-07} {"commit": "7bb6ac8e1d6e742c2c02c3cc489ea350175dc8cd", "message": "Refactor source grab's try/catch\n", "proba": 3.1775931574884453e-07} {"commit": "da7d19ee83ebd0ca5191b99f429677ce23277595", "message": "MAINT: Update test to not crash with the old impl.\n", "proba": 1.0490830959497544e-07} {"commit": "72784914da6794a65afd0e59c8cc3bde1dfdd01f", "message": "corrected bug in get enemies to prevent crossed invasions\n", "proba": 2.418331064291124e-07} {"commit": "546d4ac0bbf14da2bc5610aa09b5a75627b297a6", "message": "Add 131\n", "proba": 0.9999374151229858} {"commit": "ab5051eae22ab59136ee26d50f4e385e0ab60d4a", "message": "Issue #24: Better readability for fte.conf\n", "proba": 1.2250727365881176e-07} {"commit": "d207faddad09b84b497f17613e47a8abdca89dff", "message": "Add tooltips to buttons in the activity toolbar.\n", "proba": 1.2799458204426628e-07} {"commit": "681428b92c4075feebe6c4000be1b2619684d71f", "message": "Fix readthedocs error with updated mock (#489)\n\n", "proba": 1.0813239725848689e-07} {"commit": "986ce7e485ce64c56a88aa990a9bbb72f8b1a776", "message": "callback: run vmchecker-update-db on storer to upgrade the grade after testing\n", "proba": 3.805838275638962e-07} {"commit": "bfc1252a8c21cbd65937e2036d5b2fb66f1cafc5", "message": "ok, we *do* need that term\n", "proba": 1.4270022802520543e-05} {"commit": "30ed57b160927d35e6a6cce41e63a50d5057a23f", "message": "PROTON-592: Use os.linesep in assert test so test passes on Windows.\n\n\n\ngit-svn-id: 33ed6c3feaacb64944efc691d1ae8e09b17f2bf9@1600676 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.00022695896041113883} {"commit": "c096da6f50c70b370546c88535c8019714db4771", "message": "strings6: cockipt row titles to small caps\n", "proba": 5.114138275530422e-06} {"commit": "ce144447c8adef15a219abd5d89aa3f1b16ba667", "message": "Added role support\n", "proba": 1.3388884667620005e-07} {"commit": "70d47921dba7afc885bb75871fadc80c91135a84", "message": "New func. to mk planeflight files from v12.0.0\n", "proba": 3.521301186992787e-05} {"commit": "d188401de92d597c309843ea4e295235f8d37b17", "message": "cleanup imports\n", "proba": 4.494849861202965e-07} {"commit": "ac2153f0d127ba3a7197b74d775a47b61fa214e9", "message": "fixed example of Database.query\n", "proba": 7.466825877600058e-07} {"commit": "32d3d97e43ab269304e4ceed05153655cde79f9d", "message": "make page generation work with newer sphinx bootstrap\n", "proba": 1.7279228359257104e-07} {"commit": "38fb9c5ab335332038353da16b924acab732b00d", "message": "Return ordered list of dict\n", "proba": 8.113156218314543e-05} {"commit": "a0cf676ac7c47e05ee7153e0a46f14d5de46c7cb", "message": "[\u589e\u5f3a] \u589e\u52a0\u5468\u671f\u6570\u91cf\uff0c\u4f8b\u59825\u5206\u949f\n", "proba": 4.3886171852136613e-07} {"commit": "581f323663301fc1d24d51c1ed514d52064e2a6d", "message": "make updating solver parameters for the linear solver work with nice nested_dict structure\n", "proba": 2.543891071127291e-07} {"commit": "3b26fd2c4dd86b49715d264a5b680822fdc1bf5c", "message": "I am confused\n", "proba": 0.008961690589785576} {"commit": "238752df4b0b23c00b061f636e442323e7150416", "message": "Python: cuuid: Code refactoring and cleanups\n", "proba": 9.177319384434668e-07} {"commit": "df40ad234eabcc2521589ffa67f0e9dfa5c9afda", "message": "use mayavi\n", "proba": 6.886986625431746e-07} {"commit": "5eff5bf1999f4ac779bde2de85901ed757cfff7c", "message": "converted comment to docstring\n", "proba": 2.698841171877575e-06} {"commit": "09ed16f7b5740c126c488ff50592b0dcd6fc19d7", "message": "Ensure correct instantiation of classes.\n", "proba": 1.8257880185501563e-07} {"commit": "6e04d3ab8a6d967c14afaf45869152c93d94d1ec", "message": "Refactor remote URI formatting functions\n\n- Whitespace\n- Extract functions into single-responsibility units\n", "proba": 2.304785624573924e-07} {"commit": "45ea1e99dc7f3ffe90bf256c7f232d2d04dee689", "message": "Use CompositeImage to represent images and video\n", "proba": 1.2965990947577666e-07} {"commit": "2e158ee445e2714b655ea12ef09810aad2c172fb", "message": "decrease ct size\n", "proba": 5.149011940375203e-06} {"commit": "4d4df7ac35ad34a3a7180ca1f0a0e83a681ea6f8", "message": "[FIX]. jim_sale. Busca correctamente descuento por pronto pago al entar pedido desde WEB\n", "proba": 1.8714108591666445e-06} {"commit": "b57a80952416ba7edba13d03b402e77c53733515", "message": "Bump sphinx docs version to match autoconf\n", "proba": 1.846550645723255e-07} {"commit": "409aad47ba0f1de9b8ada11c928d8471ef0335b8", "message": "timob-7124: hopefully final fix.\n", "proba": 1.2134393045926117e-07} {"commit": "0dba22016d4df371c44cfb3004af9b06fd7ff7cf", "message": "fix the extension call for the napoleon extension", "proba": 1.0865976491913898e-06} {"commit": "aef3493af2a171b0cabf17961d4f5b5c95286a54", "message": "Squish: Fix using context submenu items for Mac\n\nChange-Id: I9ab351777f0bae7d15173d0c6cf5eb2f7f719810\nReviewed-by: Robert Loehning <1f928983f879a6fe326acd94487f754cc16e1fe4@digia.com>\n", "proba": 1.270829699251408e-07} {"commit": "1367178a7cba2212b510b4b6f7b19292ea1fded2", "message": "Create wiiboard.py", "proba": 5.568233518715715e-07} {"commit": "82a2225ac939318e7d812cb4ae537be9fb6362cf", "message": "Fixed another failing testcase that was never added to the test runner.\nEpic fail\n\n--HG--\nbranch : trunk\n", "proba": 2.2065674443183525e-07} {"commit": "068fd23d01b3dbd8815dcfad08d9788fbaa28aeb", "message": "removing sphinx mathjax\n", "proba": 0.9997559189796448} {"commit": "64ec468a801456e847eee05552060352ff0f2812", "message": "Changed set-rdf-sources.py so that it points from dmcc rdf sources to the new cancerdataexpo rdf sources due to the renaming of the rdf server policy.\n", "proba": 9.921726018546906e-08} {"commit": "85a90cff5fed8fc38d628d98bfe39921fb2b99ca", "message": "Setting contest start to the right date\n", "proba": 9.624134236219106e-07} {"commit": "75ff75370a6267114df950e27f29cb6c0696e550", "message": "comment tikz sphinx", "proba": 4.1821999730018433e-07} {"commit": "269d01abf91054ab4bf59b434aa588b237fcc700", "message": "Add social media to team csv dump. Fixes #1554\n", "proba": 5.439385404315544e-07} {"commit": "1f1089b1052080645160fd3701004d386e4432b1", "message": "DISPATCH-209 -- linkroute test based on multi tenancy\n\n(cherry picked from commit 63b2b52c739d3fb9e090861a68b568b6d09262fb)\n", "proba": 1.2479895872274938e-07} {"commit": "b6270a3b6bffe5b3c3ad54024ae76ec289ae3b47", "message": "Add routes to Celery", "proba": 8.549309313821141e-07} {"commit": "d9d5c5d5f2d9cb4dd14333d75f4a760575aceb7c", "message": "Update jinja env.\n", "proba": 1.4914772350493877e-07} {"commit": "c10a60ec576d09bae20a683a7ce03114144d739f", "message": "properties change was made to be able to see the documentation in google docs\n", "proba": 1.518974812597662e-07} {"commit": "4c16f1b8a6fc86ef83ee033f9a779c6cf457c9de", "message": "still moar AI\n", "proba": 2.8424932452253415e-07} {"commit": "4e09905d2dedc655c41fc7fe74fe27bc0003546c", "message": "docs: allow building from verson in PYTHONPATH again\n", "proba": 1.2519603842520155e-07} {"commit": "c435f499e963dc238e75eb750e90c033574be779", "message": "Update log oslo-incubator module\n\nChanges -\n * switch to oslo_serialization\n\nChange-Id: I2fc7a978d9240fc01a1899daf5e98308c92a766c\n", "proba": 2.0994399108076323e-07} {"commit": "295ccaa30f64f06a017383f8234b5ff447708b62", "message": "split into parts\n", "proba": 0.9998959302902222} {"commit": "969f9f7e7f9bf782e475877544ef493af75fb8f7", "message": "review: Fix diff view\n\nI forgot to switch around a few params and accidentally broke the review UI. Whoops!\n", "proba": 1.1301451507961247e-07} {"commit": "44dbe346c3aa957afa6b0f292342354408e7fedd", "message": "Change umlaut to make rtd compatible\n", "proba": 3.2800213034533954e-07} {"commit": "383208cb752c928e5c33f17d2ea0f92f7e82aaca", "message": "Class PubChem, wraps PubChem SDF files.\n", "proba": 1.0730359178978688e-07} {"commit": "da43d6068ec83d41748fa90bc0dbca53d5472434", "message": "Update add_js_file\n", "proba": 6.5921994973905385e-06} {"commit": "c01be692ab23e0a9d7a3d40e58e2e86bc7bd679b", "message": "Complete future\n", "proba": 5.538609002542216e-06} {"commit": "14461e5a0d0c6f15198e449b8efbcbd99c15ae73", "message": "karma: strip whitespace when awarding karma and recalling a karmic value\n", "proba": 8.873885235516354e-06} {"commit": "b6fb37d6a8d3c9cc1998aa7bee171234d56126cd", "message": "Bugfix: prevent partial fileset removal in /tmp\n", "proba": 4.2805694988601317e-07} {"commit": "16a3067746ef7766a0ae7a9edf84a9557297422a", "message": "sharder: refactor _cleave_shard_range\n\nMove most of the method to a helper so that there is a place that\nreceives the multiple return points, before finally returning the\nresult.\n\nChange-Id: I48e18beeb32372a287e8297f0870e8627147141f\n", "proba": 0.0010229484178125858} {"commit": "2861c8d80b9304dbc46dd809ca452946532e8765", "message": "ex-199 (jebene) minor change to conf.py", "proba": 1.206872468628717e-07} {"commit": "712633ab2da71c1a15dac03f3d55710df8597a46", "message": "Add module to Plugin\n", "proba": 1.309472168031789e-06} {"commit": "47982289d2944949b1d9381705fd6a2d2a6dfeb3", "message": "SINGA-493 Fix the path", "proba": 0.9998651742935181} {"commit": "b6446111b2f562e2f1a1547157003e0767780e32", "message": "tests: fix tests/test_factory_specification.py()\n", "proba": 8.208761528294417e-07} {"commit": "fb7b994e5079f462c5a2d9c68f8d375ae099036a", "message": "Add shebang to row-col.py to enable execution on *NIX\n", "proba": 2.677862198652292e-07} {"commit": "7e3d6ce505c9051bc729bc790ce140f8a6b8c7eb", "message": "[salt.cloud] key_filename is not always set for expanduser\n\n[ERROR ] There was a query error: 'NoneType' object has no attribute 'startswith'\nTraceback (most recent call last):\n File \"/usr/lib/python2.7/site-packages/salt/cloud/cli.py\", line 381, in run\n ret = mapper.run_map(dmap)\n File \"/usr/lib/python2.7/site-packages/salt/cloud/__init__.py\", line 1692, in run_map\n profile, local_master=local_master\n File \"/usr/lib/python2.7/site-packages/salt/cloud/__init__.py\", line 905, in create\n output = self.clouds[func](vm_)\n File \"/usr/lib/python2.7/site-packages/salt/cloud/clouds/openstack.py\", line 329, in create\n key_filename = os.path.expanduser(key_filename)\n File \"/usr/lib64/python2.7/posixpath.py\", line 261, in expanduser\n if not path.startswith('~'):\nAttributeError: 'NoneType' object has no attribute 'startswith'\n", "proba": 0.9997575879096985} {"commit": "14ba6f663691e07e3ad9e93eadb16aedf8b2caa6", "message": "Fixing unit test\n", "proba": 4.797669248546299e-07} {"commit": "bd994c02ace58bfd820a4a14dcd8b6a76f36e7b5", "message": "update to release 0.5", "proba": 2.602281483632396e-07} {"commit": "206da8e10f271712e62813675602031824d5028c", "message": "First commit introducing -t1w_preproc option\n\n- Functionalise code to provide T1w image data to both participant1 and participant2 level analyses.\n- User-specified location for pre-processed T1w data could be any of a number of paths, including the image file itself all the way to the root of the BIDS derivatives directory.\n- If \"SkullStripped\" entry is not available in a sidecar JSON file, infer whether or not the image is skull-stripped based on the statistics of the image intensities.\n- If no pre-processed T1w image is available / provided, perform own pre-processing from raw T1w image in BIDS directory.\n", "proba": 1.902836402223329e-06} {"commit": "771a1a2773fc5171946ed49030a0be721af413ca", "message": "Import sys.\n", "proba": 2.3750689592816343e-07} {"commit": "92e92132bca58cd23f2c8b791a27b565d9e7f6ae", "message": "Fix broken test case\n", "proba": 0.0010521684307605028} {"commit": "a12fe45c03363acf75d40aa3f20d56f47b3c2bd7", "message": "update docstring for map commands\n\na4128b3bd removes the empty string and docstrings need to reflect to that\n", "proba": 1.243044636112245e-07} {"commit": "d65c8d109b5f482f054fe81feb5ac0668247457b", "message": "Remove depth filter for reporting\n", "proba": 2.902755795730627e-07} {"commit": "158e4ce88836ee6f86f85da3b9dffd93151eb6da", "message": "Test import & proxy for napalm_network module (#32822)\n\n* Test import & proxy\r\n\r\n* Quotes replace\r\n\r\n* Module NET\r\n", "proba": 1.180841664449872e-07} {"commit": "40170a775a3007dc040739c50fc43321b0c8f90b", "message": "removed print debug\n", "proba": 6.71302495902637e-06} {"commit": "67a9455dbf3b1f69a5c0db734f544853bbe26699", "message": "updating doc generation\n", "proba": 3.468839508968813e-07} {"commit": "5eb69323e8c2a6e23ba173b0c2690823d6795d7a", "message": "Added basic media support via subclassing\n", "proba": 1.252862062983695e-07} {"commit": "dc1718aec24eb0678bc7933b4af15ea2e3d60d73", "message": "trivial sphinx changes.\n\n--HG--\nextra : convert_revision : schettino72%40gmail.com-20091012151055-be42bu5r2f6gayk3\n", "proba": 4.754780320581631e-07} {"commit": "12816d3196e4675bc902bc5976bae5f3e993801c", "message": "Update tests/test_stdout_stderr_log_dir.py\n\nCo-authored-by: Michael R. Crusoe <6a445791c123718cece452fd92cffbcd67986b0a@users.noreply.github.com>", "proba": 1.3364849849040183e-07} {"commit": "6b05bf1396cddb9fdf62571cccc25a1f4ce34351", "message": "Deprecate `env` usage in favor of `saltenv`.\n", "proba": 1.9439899290318863e-07} {"commit": "210dda70855bc8ef8344dd529fc684b2c8ae836b", "message": "#75 #87 fix duplicate tag error (#90)\n\n", "proba": 1.4457410202339815e-07} {"commit": "6476137a9768a2ab12d9791993d0d1332387a8e7", "message": "Fixed repack H5 not carrying attrs\n", "proba": 1.7984248756874877e-07} {"commit": "3e66cb7bce2dd7937d12911940242ad4711b9b69", "message": "Move file viewer support extensions to common vars\n", "proba": 1.812836103454174e-07} {"commit": "014a6c946488cb2a88789ac4b6fec0febe9831b0", "message": "MEN-2438: Conditionally skip test that needs `/data/mender/mender.conf`.\n\nIt doesn't exist in thud and earlier.\n\nChangelog: None\n\nSigned-off-by: Kristian Amlie <505e66ae45028a0596c853559221f0b72c1cee21@northern.tech>\n", "proba": 1.5081289461704728e-07} {"commit": "b0e75015b31920474bd88079306e38bd2fd79193", "message": "get dhcp setting using wmi\n", "proba": 3.915385775599134e-07} {"commit": "38e214c9ddd7714adbac2ec092a6e2f3df58f954", "message": "rename Feedback to Comment\ncreated TaskComment\n", "proba": 1.2784221326000988e-07} {"commit": "56f69eaf1402b12d10d0b1944f9e7cde643643fc", "message": "Added doctest for LUdecomposition.\n", "proba": 1.1306464386962034e-07} {"commit": "31308b7eef638dc498375fa0d8a1fbd0ad7327a7", "message": "0.0.6\n", "proba": 7.085339893819764e-05} {"commit": "af32d58595245d7e96502c68b74420681729449d", "message": "numpy extension enabled\n", "proba": 5.868110974915908e-07} {"commit": "5e0b09443796d3d55c312ab90eb9bcd89e17d23a", "message": "event location is now also \"TBD\" when no location is defined\n", "proba": 4.114095872864709e-07} {"commit": "2368736fb309c7f45bca7624d13e21ce9b68c334", "message": "tweaks to make rtfd.org work\n", "proba": 1.2837733720516553e-07} {"commit": "b9412527145303e0f2123c8372b5f9e8717411ea", "message": "fix collect_const calls for py2.5\n", "proba": 7.045736083455267e-07} {"commit": "ee8b306cba2026b6a2e720995c14247b7a8553c3", "message": "bump doc version as well\n", "proba": 1.398820899112252e-07} {"commit": "5275f1be09a38ef2fb5d44b7d20518759468b61e", "message": "added command string secondary prop to it:exec:proc\n", "proba": 1.570859922139789e-06} {"commit": "fb4e69e54b65841aac740cbec01976a6cd04d7ae", "message": "Add a convenience function to compile pandas ready for doc-building\n", "proba": 5.902483053432661e-07} {"commit": "7edf73e03c43b9c572bd0e4e671295fd7c7e9757", "message": "Added base class for Classifier and Regressor.", "proba": 1.0892021862218826e-07} {"commit": "ca149a6f678ba982f9e85767bffec9f0b6e1abb5", "message": "remove fixme comment\n", "proba": 1.8977752347382193e-07} {"commit": "fc9a3f4b6ef245645464ed8e766a1cb7f0e734ba", "message": "fix diagflat fail if argument is not cupy.ndarray\n", "proba": 4.394947609398514e-05} {"commit": "d38597e4c6f97c7ac79f5cd9fd09b21109d97ae1", "message": "Fix imports\n", "proba": 1.7557727005623747e-06} {"commit": "f9bfd231ec94440fdd011985e3a29efcfb234890", "message": "Add support for geography option in geodjango\n", "proba": 3.287653385086742e-07} {"commit": "fe2c227038a8f68692267ced587b42265b1435fe", "message": "only disable all switches if not in multi mode\n", "proba": 2.390772237959027e-07} {"commit": "9df02c136b07378f84721d05e21bb0d55bb03147", "message": "Removed redundant comment\n", "proba": 3.5732909964281134e-07} {"commit": "253061cfa492adeb628e9f7fa4929c43df0fafd6", "message": "Remove unused import\n\nThe _uniqueName function was using this but it was moved to ContainerRegistry.\n\nContributes to issues CURA-340 and CURA-1278.\n", "proba": 1.083429665982294e-07} {"commit": "fe61299303073785902a522cb06fb99e99eb53e7", "message": "DOC: fixed dynamic import mechanics of make.py (#20005)\n\n", "proba": 1.0400022176781931e-07} {"commit": "278cb7770bdd7dcf39116bfb478dfc38e5df9b68", "message": "division before multiplication leads to 0 since these are ints\n", "proba": 3.237922283005901e-05} {"commit": "584b7a6875df4b15d6a3cdf503989195a98314b9", "message": "review fixes\n\nSigned-off-by: Maciej Skrocki <7248e0ebb2ec116d576f780ddb66c4baf308f8d4@intel.com>\n", "proba": 1.156722859718684e-07} {"commit": "0fecb5ff2eda5a8eb4da645ab6334877dac26ad9", "message": "Remove sleep. Thanks @s0undt3ch\n", "proba": 1.9592087596720376e-07} {"commit": "17403558559f217af61078cb079583bfd81375e7", "message": "linux: Include content_shell.pak in distribution.\n", "proba": 1.149540693745621e-07} {"commit": "a36722269c4560804dc8db9ee34c509d20a1e999", "message": "The script is complete, now to see if it works\n", "proba": 6.98249721153843e-07} {"commit": "48cfe812dd630c75df1c1bb0197c1e2751f684a0", "message": "page_num is not defined\n\nall pages should be the same size, so this should not be a problem\n", "proba": 6.648203998338431e-05} {"commit": "a93915c0d781a341d5cc73a79f97ee72512f6319", "message": "K8sSecret: fixes dockerconfigjson\n", "proba": 3.9723204281472135e-06} {"commit": "0bd5e4580f1bcc719edee65b6417efb81931ee87", "message": "Change create() return flags to raising exceptions\n", "proba": 1.1592766213652794e-06} {"commit": "b197864006a472f02e552a08a68eda5fcf961415", "message": "gpMgmt unit tests: remove obsolete field in mockutils assertRaises()\n\nWhen using a late enough version of mock, the self.assertRaises() signature\nchanged, so modify our code to handle this.\n\nCo-authored-by:\tDivyesh\tVanjare\t<852ce6ccaae356d06cf2127ed57e2a9ee4de9e53@vmware.com>\n", "proba": 1.299052314607252e-07} {"commit": "d353b6e422957afcffe796b6f34dd2d37cb38fdd", "message": "Expose __version__ in kubespawner module\n\nI ended up wanting this to be available to the _log_cls helper function\nin JupyterHub.\n\nref: https://github.com/jupyterhub/jupyterhub/blob/abb93ad799865a4b27f677e126ab917241e1af72/jupyterhub/app.py#L2246-L2264\n", "proba": 0.9997217059135437} {"commit": "5291fc1cfdd42b0c0cf38cb30c6884093eae204c", "message": "Get survey response permissions from the settings\n", "proba": 1.6348850806480186e-07} {"commit": "57db0974cd624c845a5b3270799479c0550dc814", "message": "bug fixes\n\n", "proba": 8.304810990011902e-07} {"commit": "d365d72837a641dcd51668752f0d85618d8b5557", "message": "Add some tests of the output distribution.", "proba": 2.8847733801740105e-07} {"commit": "e70cf153611b18bacc8f0fc1310a015d042c519d", "message": "Ported over the Monte Carlo Tree Search player.\n", "proba": 1.0262246519232576e-07} {"commit": "749ddd2f4559b758f90055b63323f59d245a3807", "message": "Fixed comments for share functions", "proba": 1.3221318795331172e-07} {"commit": "8544256f167e0f4bd2d650ff7e81a92fa9756192", "message": "DEP: interpolate: deprecate splmake and friends\n\nUse make_interp_spline and BSpline in interp1d instead.\n", "proba": 1.1872860739003954e-07} {"commit": "afe96974c391da91ef0004f321d75de23f2e853d", "message": "lock: fix AttributeError in dvc.lock.HardlinkLock (#5152)\n\n", "proba": 1.2580356667513115e-07} {"commit": "f0a45753bd2a50ec44c3c79516a5906338f180b9", "message": "Improving KycoTCPHandler\n", "proba": 1.11423514681519e-06} {"commit": "315409aca7d57fda07c6730d62ee279c77b0692b", "message": "Add optional household_id to scan_network_get_by_name()\n", "proba": 2.780356567200215e-07} {"commit": "a8a1720c977ccbe9e8c7590240e855216b404f59", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "92298a94006ca857a760daf5d52cfb955ef31dc5", "message": "bugfix\n\n", "proba": 8.478961035507382e-07} {"commit": "18ef1007a7f64a123ebd33aa3f68aabcee91f116", "message": "auto-portage: remove unused class name.\n\nFormer-commit-id: b6b7da1bc9a7ceb4b6dc401e45bfd32565895d9e\nFormer-commit-id: 8a0ef566a721e2157a1f9af2e8cae63317c5dbd0 [formerly b613ea67a8226196aa9d3a8893d7f454d16117ad] [formerly 45debeacfa6f1023dfdc20d320ab7f9a2ce78b28 [formerly b436e1cce4c734f7dec7aa5d696bcb259cb625fe]]\nFormer-commit-id: 8cea8d3ee257fbd2c6039713cb8848016293b092 [formerly 4b26c4a682be620e2144edcc4f8950e709f65469]\nFormer-commit-id: c0276572363bb816b9871000de9360135fe252a4", "proba": 0.9999047517776489} {"commit": "a0358fdf18c04be29c9ec9965fc973b38a6255a7", "message": "Fix inheritence queries\n", "proba": 0.9992265701293945} {"commit": "e9d1f409d35600e8cb7ebcb51ab6104af47d01be", "message": "Bug fix on the ESC neighborhood for CatA during IAP. (#748)\n\nThe special CatA with ESC case was done with the implicit assumption\r\nthat the channels are the 5MHz IAP channels. The code works in that\r\ncase (for example: aggregateInterference check).\r\nBut the IAP runs the overlap selection using the whole ESC band\r\n3550-3680 to filter the grants in the neighborhood. The code was not\r\nworking in that condition and CatA beyond 3660 were kept in the\r\nneighborhood, preventing the IAP loop to ever converge.", "proba": 1.1306625680163052e-07} {"commit": "41b0e7fbec5dad373a035f87cef9b9a1b59eb00e", "message": "Added missing import; Fixes #2.\n", "proba": 1.035295795759339e-07} {"commit": "93c7e94c577443e67db78aaa31847fced15f19db", "message": "DOC: interpokate : Update interp1d docs (#14821)\n\nIncluded a line in the docstring for interp1d to make it clearer that in order to use any `fill_value` other than 'extrapolate' you must set `bounds_error=False`.", "proba": 1.3327010606190015e-07} {"commit": "c92f720a0bf9412dd21c0ed3c279e96f7d5bc5d0", "message": "fixed missing import\n", "proba": 6.795866624997871e-07} {"commit": "9e2138345929ea2b9d9bc3c581b9b6b095729b45", "message": "typo correction\n", "proba": 1.947233067767229e-05} {"commit": "2063acdfda640d46595fdeb7527a4a1901f98e78", "message": "Define Kyoto Tycoon errors.\n", "proba": 1.4099894940500235e-07} {"commit": "dc2dbe526b9ee2e9dc4456f4e1f370c76b2312f2", "message": "Use mock for router tests\n\nChange-Id: I4c179f05cc26602ec6814cbec9dec8c443013d50\n", "proba": 1.908419335450162e-06} {"commit": "12d9f4cce42a4fa8780cf72d7527d00aaf546f24", "message": "Added Simular model.\n", "proba": 1.1873687100205643e-07} {"commit": "2b4b9dd508481624d77f2eeb5e4a5c1530d86997", "message": "AuthzPolicy: a relative path can now be used for specifying the authz_file\n\ngit-svn-id: eda3d06fcef731589ace1b284159cead3416df9b@5559 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 3.99536202166928e-06} {"commit": "b251da452822be6993fa48bf852530af53ae3f7e", "message": "Small formatting changes to localflavor/cl/forms.py\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%405098\n", "proba": 7.610167358507169e-07} {"commit": "fa2284c9d35cbbc28288ac5df841144a0bd3d490", "message": "added support for fanmod format, which is pretty similar to ncol\n", "proba": 1.2568412444124988e-07} {"commit": "571269eb569f129716769528646279611c79d3b4", "message": "No contest graph data for blacklisted users\n", "proba": 1.9929372285787395e-07} {"commit": "46ada25a3fd32fd027459db43177ae9d20554771", "message": "* ../../../script/putTogatherAsyncResult.py: check if info is empty otherwise it returns None\n", "proba": 0.0008774055168032646} {"commit": "698e1547813d11148b11746116ccd28879d9aa5c", "message": "Apparently SUSE has a tar that works slightly differently, so the usage has been modified (argument switched).\n", "proba": 1.0482870038686087e-07} {"commit": "dd1f3d361f72454904326fac6c77b1ea88b68c38", "message": "product_variant_default_code 14.0.1.1.1\n", "proba": 4.59060502180364e-05} {"commit": "49ed2363bb3d33327fd5649cd7523a043bb15653", "message": "l10n_br_base: valia\u00e7\u00e3o da inscri\u00e7\u00e3o estadual\n", "proba": 4.902812634099973e-06} {"commit": "7699bb8179d9ea07cfbd469161c693c917d12b70", "message": "fit_PSD now uses package's default figsize\n", "proba": 1.4453466690156347e-07} {"commit": "f680b737356859f8c7de2f6868de7257d82edd3e", "message": "Fixed #4865 -- Replaced a stray generator comprehension with a list\ncomprehension so that we don't break Python 2.3.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%405685\n", "proba": 1.7065023030227167e-06} {"commit": "c46704276d90e8d464263ac2d99aaa0fc1d2ada2", "message": "added iglob() which can filter by type (dir/file/any)\n", "proba": 1.6604646191353822e-07} {"commit": "6437d4998b8497d2fcf2cdc86ae31e3b4f72c2f4", "message": "converting run ids for dataflow", "proba": 2.7700664304575184e-06} {"commit": "3713aa72f7f6d155d9e76e2f1b0ae0ab32b8ed15", "message": "No bug - fix requiring --this-chunk even if we're not chunked. r=ahal\n", "proba": 1.4511630297420197e-06} {"commit": "355040c346ee26f763561529422b951e312e3db2", "message": "Remove non-working network topology panel\n", "proba": 8.044287937991612e-07} {"commit": "ef11b961c6a5a36804fb1fe7335c555c42f1362c", "message": "Added locale detection\n\nIf user enters site without locale within URL it's no longer redirected\nto default language if browser sent supported Accept-Language.\n", "proba": 1.0444590259339748e-07} {"commit": "d404ab10c26871739c688c3f5d1610607377c88f", "message": "Whitespace\n", "proba": 8.480420547130052e-06} {"commit": "247c7824045e29765ec125a5ce7f9fbe0ae7091c", "message": "Add support for upload if blob doesn't exist (S3)\n\nBy default, PUT'ing a blob in S3 will overwrite a previous one with the\nsame key. Boto supports a 'replace' argument which will do a HEAD\nrequest to check whether the key already exists.\n\nAlthough there is no atomicity guaranteed, this is useful in situations\nwhere one isn't trying to protect against races, just trying to avoid\nduplicate uploads.\n\nThis exposes that argument in our blob API.\n", "proba": 1.640030546923299e-07} {"commit": "08f575e5ecdc36beab92c9a6184236d34385f4ff", "message": "[2018-03-12 10:08:40] add one point constraints for segRawData script\n", "proba": 3.792808911384782e-07} {"commit": "07bad022305ffa0f94c22c74b8166a35086d7c14", "message": "Refactor to use ORM\n", "proba": 7.719254995208757e-07} {"commit": "47bca6c09c7f1a7ceac8506db967dc943e1862da", "message": "Remove unnecessary parts\n", "proba": 0.00014551013009622693} {"commit": "ff8db9c3780ab362df5e541ed9730911d5b8845f", "message": "Updated test cases\n", "proba": 4.527499299911142e-07} {"commit": "f660cf7a70890ea6490b99c1c84e01577a04995d", "message": "Fix #12061: Add email message check to resolve server error when submitting question suggestions (#12080)\n\n* Add email checks\r\n\r\n* Remove unreachable defensive check", "proba": 1.4373699741554447e-07} {"commit": "6a1e8cc96bbab9a484ef39d20a3145b4d54102b7", "message": "Small gui fix to make text fit.\n", "proba": 1.1142962819121749e-07} {"commit": "a5e09cb68e0fa9631ea805e92b3a92264defbbdf", "message": "Removed unused import, corrected a typo, and made some styling fixes.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@7206 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 9.41159396461444e-06} {"commit": "a70771978990db3ae2d1b06e1895446a265c2f71", "message": "Fix ActiveRotationalDiffusion tests for MPI\n", "proba": 2.438579258523532e-07} {"commit": "7ce7d45e34f101d4565ca0dd9071943b3c1e4847", "message": "Working pipeline insert query\n", "proba": 4.91517255341023e-07} {"commit": "e346bb928c06838d3be9ef34ae86bedb075a8619", "message": "Don't check for existence, but recover if it happens\n\nThis reduces the number of API calls in the expected path, without\nincreasing the total in the alternative one. It also handles a race\nwhere role/instance profile is created after the initial check.\n", "proba": 1.1946653444283584e-07} {"commit": "1c71b6a36f29a0617bf8cb7e286380004f74e38a", "message": "Fix generate-token exit location\n", "proba": 2.2969414203544147e-05} {"commit": "d85f791ee6c877ad3979c1075a04ed44c1e1ff4f", "message": "Updated test case\n", "proba": 8.103963295980066e-07} {"commit": "e45da14412bfdfef2f9a1f934b15fbbb2fc882de", "message": "requirements.txt -> /requirements.txt\n", "proba": 8.33838896596717e-07} {"commit": "a9cabd51f5ec652db9dccd31c55a53350a103a40", "message": "Dump credentials is DONE!\n", "proba": 1.2280531791475369e-07} {"commit": "ba9f8880cb204ee3388284da863fff1455244a6e", "message": "fixing io name collision\n", "proba": 1.4885289374433341e-06} {"commit": "f0d223a7495eaaab8f69c77287f18cc90d7771a5", "message": "which_side_pt threshold as parameter\n", "proba": 0.00025288472534157336} {"commit": "b0cc1b391cfc6a818dc140dc4fe9025d8b87fd89", "message": "Oops, plot.py changed...\n", "proba": 1.1579281533613539e-07} {"commit": "c4f79cc5f8cb8ac716e721fdc7c71816ae99799a", "message": "viewhelpers.crudbase: Handle required fields attribute in Django 1.8 automatically.\n", "proba": 1.0172096409633014e-07} {"commit": "9b64f2a34900fedcfe905367e8eff89514531f48", "message": "Update development branch with latest code\n", "proba": 1.609171818017785e-07} {"commit": "9ef10a4ab52feb667a1fec8c514da78ccbb55a59", "message": "Add exceptions when user requests unsupported options.\n\n- Request geopmctl but use not enabled.\n- Option --geopm-ctl=application cannot be used with aprun.\n- When using with srun, must be inside the context of an\n salloc or sbatch reservation and all nodes must be used.\n- Add throw in case where user requests to split cores between ranks.\n- Sharing hyperthreads of the same core between two MPI ranks is not\n supported.\n- Set GEOPM_PROFILE in case where geopm is run as an application but\n no report or trace is being generated to avoid hang.\n\nChange-Id: Ic6dca7156ab2231cfecdd6e7b4038c9f5450a29a\nSigned-off-by: Christopher M. Cantalupo <9cf3ecca60a3dd7112ab0e7250bedb8a752e3958@intel.com>\n", "proba": 2.1089006168040214e-06} {"commit": "94f03793cbea5ff367b4ecf427e246eca7c90e98", "message": "Remove method_decorator.\n", "proba": 4.3781037106782605e-07} {"commit": "ef591d557eb829cc8f39762ae06817c3e03b405c", "message": "#152 | NameError: name 'warnings' is not defined.", "proba": 2.2536185895205563e-07} {"commit": "212a1b2aef306c19cde17da9d473f316fb04c012", "message": "Bilingual Dictionary: utilising os.path to ensure module works on all environments not just *nix systems :D\n", "proba": 1.1822096013247574e-07} {"commit": "2b7b5b2e760d33eb362306843119e5d43a8ebd45", "message": "Remove cruft from telegrambot.py\n", "proba": 3.3865907766994496e-07} {"commit": "cdb263f765f9d9fb8a9cb5c1d30d256c2445df37", "message": "Update docs of simulator init (#213)\n\n", "proba": 1.0747277201517136e-07} {"commit": "3f791b99d08a09df4e8a1c60e799bd127693f45e", "message": "catalog: Fix a test\n\nThe point of this test was to ensure that explicitly upgrading a package\nwhich isn't installed will just install it.\n\nInstead, what it was doing was asking to update all installed packages.\n\n(that succeeded though, because of another issue: instead of upgrading\nall installed packages we were upgrading all **available** packages...\nsee a future commit)\n", "proba": 2.1784000637126155e-05} {"commit": "b55bd4d346bac6f31a5ef42e4dbe321989987f2a", "message": "Remove print\n\n", "proba": 1.5574403732898645e-05} {"commit": "0391c6da6faeec44567cec9f996c4270f70b4922", "message": "[dvsim] Fix printing of Deploy objects\n\nThe __repr__ method is supposed to give a hunk of Python code that\nevaluates to something the same as the object (whereas __str__ can do\nwhatever you fancy). Overriding __repr__ like this caused an infinite\nrecursion in verbose mode if you tried to print an object (presumably\nthe pprint library tries to print 'self' if you give it\n'self.__dict__').\n\nSigned-off-by: Rupert Swarbrick <290093e2ad2515ed2f14d749293c8cf8e02ca274@lowrisc.org>\n", "proba": 0.0005320807103998959} {"commit": "0c6167843d4dcfb7aacbfdf72855f01dbad08242", "message": "Try to plot LUCID vs BCM H\n\nCurrently error when deviding by index\n", "proba": 1.1851581405153411e-07} {"commit": "9e8c4317362375b5531604f435869a7170c90ce4", "message": "good enough.\n", "proba": 2.8860200472990982e-05} {"commit": "3b13b97a2523119fa712cf9058d542aed7002838", "message": "document --zip options\n", "proba": 7.783062301314203e-07} {"commit": "210ca4cd36c1d70cf363bbf584b9de4f4b6b56d9", "message": "Right click displays data for specified bands only\n", "proba": 1.2907770496894955e-07} {"commit": "b027bf370bb964a5ae039c0a80429cf54ec28862", "message": "make it clear to which ID the timeline is uploaded (#2030)\n\n", "proba": 1.6086899279343925e-07} {"commit": "4f89150fec6757f613e751363991272bb3b2e1f5", "message": "move ragged third column recording button presses in IAM data into a\nchannel_X_button_press.dat file.\n", "proba": 1.1267143662507806e-07} {"commit": "f4b73b196d1e33971e97445b7201edbbbf791cba", "message": "Include referendums in organisation view election set query\n", "proba": 1.551172061908801e-07} {"commit": "8b5a97f5aef21e03dc7a178b71eb14dc796f9966", "message": "redundant\n", "proba": 0.0027025972958654165} {"commit": "b836308883b18b2a751ea124d046eb9f7831e04c", "message": "add platform unknown log\n", "proba": 3.4972131857102795e-07} {"commit": "de85c34462a7320bbc75127c8abf7a43fd1167f8", "message": "Handle connection error when fetching difference in updates\n", "proba": 3.785415572110651e-07} {"commit": "ba4ff667c0117207415ba43533c84c934c2a5046", "message": "Instead of waiting 6 seconds for a cdb dump, wait 60 seconds instead.\n", "proba": 7.265037311299238e-06} {"commit": "5114c257f16adb14fe9c3982095d11e2b6d4841a", "message": "Add more logging to files:file\n", "proba": 2.1834219410266087e-07} {"commit": "7e538ade284f2dbde44eaa1b96191cdba6ea04d9", "message": "Don't copy and paste!\n", "proba": 1.1944716504785902e-07} {"commit": "7a54bb74b1586b30b6e8f647ac7a3d1da5310c45", "message": "col count fix\n", "proba": 1.8124364942195825e-06} {"commit": "4aebdae10562a18b0d20abc9e6041c87544f3e07", "message": "refactor Litterfall C and NPP to use generic eco totaller.\n", "proba": 1.0429182850657526e-07} {"commit": "205c69b539537b7b581fea3a9fff85323c0ae6d4", "message": "Add `get_report_table_and_totals` helper function\n\nExtracts a large portion of run_report handling", "proba": 5.364172011468327e-06} {"commit": "105a7a7c5689a16ae76fab80238471edbb297fee", "message": "Log channel ID when getting their difference\n", "proba": 2.1929753302174504e-07} {"commit": "13756fa49f4cc2c261f3340b72b2e733d82c2a7d", "message": "Check for PHASE_QUEUED in tasks\n", "proba": 4.020272399429814e-07} {"commit": "3dd78139b763bb210f67ec5bead0d37c1cba8b89", "message": "added Passenger & Building\n\nPassenger class has a start floor and destination floor. Building has\nclasses to add and initialized passengers and elevators. Also build\n\"call elevator\" functionality that loops through passengers and calls\nthe proper button on the elevators.\n", "proba": 1.1833567725716421e-07} {"commit": "737a5b92c461317516f4d5e696629d9e1af07429", "message": "Fix download URLs to point to modern proxy so TCX/GPX download works.\nUse HTTPS for download", "proba": 1.3232154572051513e-07} {"commit": "c0023f443167d49c24f8aa4564eac73d3aa1f6ee", "message": "Change isinstance test in xla_bridge.py to not explicitly name xla_client.Backend. (#2868)\n\nChange in preparation for removing xla_client.Backend in favor of the underlying C++ classes.", "proba": 1.0700846075906156e-07} {"commit": "b46144049dc9e4b989b97b668d31fe5f2435bf2b", "message": "Diagnostic check functions: add N soil cycle table/balancing checks.\n", "proba": 1.1474049443904732e-07} {"commit": "4fc72690b31629456e3b306097ec2b8e72e80c88", "message": "Added email stuff to mokinhenki.\n", "proba": 1.1720926096359108e-07} {"commit": "1bbfe57d87abd79bdbb445f1834f4c966f6af504", "message": "Make force_text dog food itself\n", "proba": 0.9999809265136719} {"commit": "e6c34fe2a37bbe264a1cdfeefc648b6e52099a69", "message": "changed some comments in object_tracker\n", "proba": 4.170093177435774e-07} {"commit": "2bd80adc8d0251e5d04b03e45f71e5f7f7f1909d", "message": "Remove obsolete comment in subprocesses.py.\n", "proba": 1.3233669449164154e-07} {"commit": "6dd98729054ebe4c37045a29935db4ca82536a70", "message": "Complete list iter sol\n", "proba": 3.4123244404327124e-05} {"commit": "ca12dbcfe0a3fc7e10ca6e5ecd6c4516ed152255", "message": "Added aliases to the SIZ definition from the image.jpeg.jp2 template library.\n", "proba": 1.0123669369477284e-07} {"commit": "8f60c2c7cb1eca396e085a11389581811d8a0ba2", "message": "re-add k in k-means cluster method\n", "proba": 3.48429057339672e-06} {"commit": "047225fb467d71a202f9b6d0b12d661da0285d32", "message": "Resolve all events to be replayed at once, rather than iterating\n", "proba": 9.483803182774864e-07} {"commit": "0902e7431e9693adfad820e2efa31ff41240aafe", "message": "Reorder functions\n", "proba": 1.3966614460514393e-06} {"commit": "933992ed3c194f672895a0367d69a12323c8d6cf", "message": "Cnv validate wes vs wgs (#498)\n\n* Add wes_vs_wgs\r\n\r\n* More refactors\r\n\r\n* Use segments for now\r\n\r\n* Final opts\r\n\r\n* Minor update", "proba": 1.1374393693586171e-07} {"commit": "6833eef664fd69bc006c56b60ce1c208050906c7", "message": "Raise an exception on txmake error\n", "proba": 1.4118506896920735e-06} {"commit": "5773cf40dfc250aacfca9d103b3096a513f01995", "message": "Fix translation.\n", "proba": 1.925712695083348e-06} {"commit": "9728a7f7ce909ab8d3dfd0fe4f0e9b6aaa4c0193", "message": "Extracted date prompting.\n", "proba": 2.5610779630369507e-05} {"commit": "9347e48ebd234b0529b4181b98ae5ae717484a15", "message": "use :g formatter for floats\n", "proba": 1.8301200555015384e-07} {"commit": "8042c9e67f28c9a96dd910d4d04394b683612fca", "message": "Moves sleeptime out of job check loop\n", "proba": 3.875043717016524e-07} {"commit": "dc229325a7a527c2d2143b105b47899140018e32", "message": "Add UserProfile Model To Django Admin Website\n", "proba": 1.7850543088115955e-07} {"commit": "f2b5cf83be1539447a9fb618a08cec3a12df20e5", "message": "use pathlib\n", "proba": 7.011657885414024e-07} {"commit": "8a02eed9988c470c46513418810b73309fedbbd8", "message": "Minor text changes in unit test sections\n", "proba": 1.8865296169678913e-07} {"commit": "143918d51ce0541af65b79d8674c2452e1641a83", "message": "Change default size in cityscapes to 256*512\n", "proba": 4.530092155619059e-06} {"commit": "b721bfce8539be2affd27a2628652020d678b11d", "message": "[#17289463] Added call for fab.tasks.verify.linux.systempackage.verify_system_packages in the main deploy_rsr.py script.", "proba": 1.0114655424331431e-07} {"commit": "5f4e12b6d9db9c86e69e5e390ea87273ecd24c83", "message": "Improving progress report\n", "proba": 2.0120087356190197e-06} {"commit": "cbfb306f810b92cd7ca4d59800bf17c088a465dd", "message": "Fixed parameter type\n", "proba": 9.352829692943487e-07} {"commit": "73bb28da0eb4b16e7afabe02b7c4756f3cd07916", "message": "Convert 3 more columns to new JSON format\n", "proba": 0.001453635049983859} {"commit": "5b32a4e2d77a7cebe10d8199ebf87237e585bcf2", "message": "extract_cc updated\n", "proba": 4.925345820083749e-07} {"commit": "c8d7e1346c3dc0ad2ac1581d13bcf1dc76a62e77", "message": "Load requirements for platforms (#25133)\n\nFixes #25124 and fixes #25126", "proba": 1.4876815157549572e-07} {"commit": "78f52f4c6757f28ed33dfdeb71e029eaf5705f07", "message": "[core] fix empty file bug in test samples\n", "proba": 2.9443930316119804e-07} {"commit": "99bfe156e710fa47ba7ae88b0ce1eef592a3a439", "message": "Allow user-selectable padding value in transformImageToTarget\n", "proba": 4.106741755549592e-07} {"commit": "160595730215571447a3028351c140cfedba7cb0", "message": "removed portrait from admin\n", "proba": 1.3251438701900042e-07} {"commit": "1b2d676d02b944f9dbd6d818735d3b49ae0aca30", "message": "Add rules_docker to the list of tested project\n\nChange-Id: I07105d87c213d4af614d067e65cdbf7e8566ff94\n", "proba": 1.9716969745786628e-06} {"commit": "42c80914de1d267fc46059bf2197e232e1429bd8", "message": "Fix error with out EGI sites\n", "proba": 3.1311347470364126e-07} {"commit": "f792652b1339ba4174c08dd8b99197cb92a462e0", "message": "fix: copy_job() missing arguments\n", "proba": 5.688903183909133e-05} {"commit": "c43862d62ed809bf7121a97ee779b0b0d0118852", "message": "update flake8 test\n", "proba": 1.4917134194547543e-07} {"commit": "ee386b838c8bbf0dd92219c70f8d2013d5aa0788", "message": "Make example explicit.\n\nCo-authored-by: Bradley Dice <2303f8d72928199010aec5ee86987bb601f88a8b@bradleydice.com>", "proba": 0.004400770645588636} {"commit": "81823e79b27d572a3213cf820828ec7a4ed51b85", "message": "allow insecure test mode login for users without password\n\n- can be used to log in to oauth2 accounts, for example\n", "proba": 1.1948533540362405e-07} {"commit": "3f152ce7de18f2d82d17856c278971493221b739", "message": "don't output customers' log content to agent.log\n", "proba": 7.435562565660803e-06} {"commit": "07c9683acd9106d6fd19e28306586a028d3146da", "message": "Added usage message to output.\n", "proba": 1.2350673728178663e-07} {"commit": "87426ae27501e61f18293a146529c766b0626b57", "message": "MAINT: remove some whitespaces\n", "proba": 0.9999593496322632} {"commit": "57591422043efa6e2326e7148f3dddf02d1c3d57", "message": "Fix warning that was outputting too much.\n", "proba": 1.6879918121048831e-06} {"commit": "6d4ccbf56e0bbaab3342060b7210c8fa4f40c3c9", "message": "user class cleanup\n", "proba": 4.611735562320973e-07} {"commit": "102f6f1cd479dc6c76e97ec7c1caf417410db9ff", "message": "Fix dcos image commit calc function to actually work properly\n", "proba": 1.3884289273846662e-07} {"commit": "525f08f64ded1cda165f376d18721d5200108e10", "message": "Inline example paga (#1811)\n\nCo-authored-by: giovp <97ccc357e02cfec98d4cfe8654fb3d7ca2841377@gmail.com>", "proba": 1.276192875820925e-07} {"commit": "ffdc2f339802ec7c14d1aa765f8bced25d719b05", "message": "azure - fix azure output storage logging (#2988)\n\n", "proba": 1.6383719980694877e-07} {"commit": "bb668e8858f1dc373e64c04f982122e23d52a51e", "message": "free up memory\n", "proba": 4.7281781007768586e-05} {"commit": "ddf8a8d2bbc0454d39ab58b4fb186b93054faa01", "message": "Cleanup pkgin isatty mess\n", "proba": 7.453158445969166e-07} {"commit": "384284169573c9b5d0a34fcbb2a4d5d8f66289bb", "message": "fix pre-commit\n", "proba": 1.8210787402495043e-06} {"commit": "b4baab8dfb69bbe9bbc6d048664b5db7da399bd6", "message": "methods for generating and retrieving credit lines\n", "proba": 5.87679210184433e-07} {"commit": "82b04545e412c4aab6decaabf6363149b301ee83", "message": "stop passing around unused web_users\n", "proba": 6.449495231208857e-07} {"commit": "24c98c8c80e854c9475e950fb71088f41681eb5d", "message": "refactor\n", "proba": 0.9999991655349731} {"commit": "416128620671619858f42f917887c689798f7bae", "message": "Update start/end times on speeches as well as audio when timestamps are changed.\n", "proba": 1.0874108369307578e-07} {"commit": "3547f827afb221f7656618bce1165022a857e4dc", "message": "show blank form prompt when new form loads for the first time\n", "proba": 1.9031834597171837e-07} {"commit": "7dca477b627e0ab99ebc7bbc60045dd8c81746f1", "message": "simplify http logic\n", "proba": 0.9998747110366821} {"commit": "f53b54c6bcf07a9270658985957f626f547601bf", "message": "rearrange an if to be less nested\n", "proba": 0.9999949932098389} {"commit": "6bfec4186df06f81a23665b22149d10d86cb8752", "message": "Changed names so data is trace data instead of pair\n", "proba": 4.489119419304188e-06} {"commit": "9cd562eba884f7c9e333dc5fc86bdb1f0870a02d", "message": "Don't error on module filters that use dots in acceptable places\n", "proba": 2.0832251834690396e-07} {"commit": "5c9e710b15e79ef2893effa774513c6462b2ef91", "message": "Support TW2 style validators for __require_fields__\n", "proba": 1.1361914431518016e-07} {"commit": "487ba057afbd8a532262ed7514dfd136ffb6e213", "message": "Pull out query construction from mutation\n", "proba": 0.00040520206675864756} {"commit": "d0b31ee68409aaab55bce3507d47117eadb05432", "message": "remove hard-coded email.\n", "proba": 0.00345008191652596} {"commit": "76cc1d4272caff7c0d5a88395ef966cc4ed1d4c7", "message": "Use decorator to mark two factor exemption\n\nTaking the same pattern as @csrf_exempt from django\n", "proba": 2.4846874566719634e-06} {"commit": "93c40ceb4cc065bd6de2afbb2c0e4ea8075c9628", "message": "remove QA comment\n", "proba": 2.0283989954350545e-07} {"commit": "8dd3e3e19dedac9f818dfd76ec9a96fcfb263d23", "message": "Refactor defaults\n", "proba": 7.930213996587554e-07} {"commit": "46c6608c1a25e7c3c1077b311515c29d5a1cc566", "message": "update config to reflect new encrypt assertions setting\n", "proba": 2.387231461398187e-07} {"commit": "a49fe57518b1f3a74c58d8243f6b6476d95c95aa", "message": "add the attribute consuming service\n", "proba": 1.8223191773358849e-06} {"commit": "867f9e93506365ae34fd704e3d840975fc3d4e01", "message": "Only update datadog at the beginning of each celery task\n", "proba": 2.2937582855320215e-07} {"commit": "8bf175abfd435e22e34df43f65dfe98ea441aa0c", "message": "stopping ucr build tasks from acking late\n", "proba": 3.203089420367178e-07} {"commit": "23491c7d6503cd067238adcdd0714fcaebf3919f", "message": "Use Clean-CSS for minifying CSS\n", "proba": 2.682772219486651e-06} {"commit": "0ae9d918c66b48f8c38b72c806af7f743f292db0", "message": "Delete generate.py", "proba": 3.320414862173493e-06} {"commit": "380c604891e724012138a88e6e50947e6b661027", "message": "Correctly account for \"duplicated\" suites when counting\n\nFailing to do that makes clar miss the last of the suites, as all\nduplicated \"data\" would have not been accounted for.\n", "proba": 3.156523291636404e-07} {"commit": "8376052778f34dd92594ec6db76f56e955c6bea9", "message": "Strip space when config the module\n", "proba": 4.898392376162519e-07} {"commit": "1cbdbe8197dff9b3c2595e61c5b3862c5ff9ec95", "message": "Fix line length in CPATH processing\n", "proba": 0.00026759147294797003} {"commit": "9451ac063fbc52ff24b627df225ffff0e37d638e", "message": "Doc nits.\n", "proba": 2.1207645772847172e-07} {"commit": "32681b6ea0f016f9d080bc6fb93f6c93cd110851", "message": "replace C-like outputf method with output\n\nSigned-off-by: Olivier Aubert <6156ad34beef884227e9079455af537dce64089d@liris.cnrs.fr>\n", "proba": 0.00012799487740267068} {"commit": "65121e2b07bd3765492e60301bb5eb6d9562add5", "message": "Improved indentations and pylint warnings\n", "proba": 1.4725975461260532e-07} {"commit": "fcf55720dc87451e79fb2f6f8b8e413beb782a89", "message": "[fix] import\n", "proba": 2.4050375941442326e-05} {"commit": "af3a655d279610212609214d7b625479f7f29e9a", "message": "Actually change to NotImplementedError (#3190)\n\n", "proba": 1.170434984487656e-07} {"commit": "8ed2d8d3f040e598320d8539406488835822e05b", "message": "scripts:Include string.h in ext helper\n\nvk_extension_helper.h uses strcmp so add include of string.h to make\nsure this dependency is correctly met.\n", "proba": 1.1081455397743412e-07} {"commit": "f9c7a01458bd44cd7f5e140e37de2e4da8e08d16", "message": "changed manage_api path to be the one for cache\n", "proba": 5.061379511062114e-07} {"commit": "6694b71740f20078628a2c5e889887928a772111", "message": "Add mapping for ocaml-vhd\n", "proba": 1.7307590951531893e-06} {"commit": "1a387052bbd1e599d791dd844235545973407376", "message": "fix example\n", "proba": 0.0001004236182780005} {"commit": "a0adc8eade80488ee0f6195c9f38a1d5adad96f1", "message": "remove extra __init__ meth\n", "proba": 0.9999701976776123} {"commit": "7c98001ce31cba11691cbdf9cfd4c3befe569237", "message": "mixed up the id number for kind of and part of relationships in the mysql to neo import script. fixes #86\n", "proba": 4.162728600931587e-06} {"commit": "ca24bb521d0e2bf2a84bc95d7978acf9cbac683e", "message": "add regression test for bitbucket #20\n", "proba": 2.241907992583947e-07} {"commit": "3db23515437a0073cc374d5064f496c1d84e1bb7", "message": "Update dependencies to actual version numbers\n", "proba": 3.8905514543330355e-07} {"commit": "063526b216ad2b91da0dc618c5e0a5aa54ee84ea", "message": "2 psaces -> 4 spaces\n", "proba": 5.3857211241847835e-06} {"commit": "c34e520181232a7a476a581ef74efa43543d9b56", "message": "Concatenate multiple and difference\n", "proba": 0.9999972581863403} {"commit": "ad6f1092cdcf2629631b93f30687ae0b609a510b", "message": "* pysnmp finally can talk to a mix of SNMPv1 & v2c peers using the same\n community name\n* more transports added to example\n", "proba": 1.1745790118311561e-07} {"commit": "83e89f3ccdd389e932cc5767037553d94a594f1a", "message": "complex-numbers: Fix spelling mistake (#982)\n\ncomplex-numbers: Fix spelling mistake", "proba": 0.003152493853121996} {"commit": "f25bc2fe6aefaa688a51e81c0d34c70a54622f43", "message": "Param tweak", "proba": 8.171395506906265e-07} {"commit": "a9f04fc033125b048675df1e81f140de4f616138", "message": "Fix expanduser\n", "proba": 7.906119208200835e-06} {"commit": "c40e0e85a6aec975c643c434f8707a77cd9930dc", "message": "verify Added a check for boundary rules for QUERY\n\nQUERY requires that the request variable for number of queries be\nbound between 1 and 500; anything less than 1 should result in 1\nresult and anything more than 500 should result in 500.\n\nIf the test does not clamp the request variable as such, then it\nfails validation.\n", "proba": 6.955951334930432e-07} {"commit": "cc6df1b10f490b4c732f82de917e23fd1a59d6c3", "message": "Fix zonefile generator\n", "proba": 1.6387874666179414e-06} {"commit": "907bccf7484f78ba530c6171f08c76b221ac5fbd", "message": "Add SupplierPart detail API\n\n- RUD view\n", "proba": 1.1809756728098364e-07} {"commit": "913cdfbc648a5482116b3baf300a4c03abbedc60", "message": "using aliased import, safer\n", "proba": 2.2748665173821792e-07} {"commit": "6845135fa9980550743decfbbce9506aedc2aa75", "message": "Change external media models to allow for changes in the function signature of the save method\n", "proba": 1.576032246930481e-07} {"commit": "5da570997de3087e306c69901f3c7ab0fb367915", "message": "shapelets: updated plotCoeffs.py\n", "proba": 2.1282164652802749e-07} {"commit": "960fad673505b2de49148e25740f5fe886e330ee", "message": "test_yamahiro\n", "proba": 1.2415890751071856e-06} {"commit": "c8ab836af401854151c9dd499e14693aa1174c42", "message": "address https://github.com/theislab/scvelo/issues/149: explicitly include direct neighbors\n", "proba": 3.6584197005140595e-07} {"commit": "d229cff73f40bda96eb8758ae2ff2e024b4bde76", "message": "PYCBC-434: Fix bad host test\n\nAdmin connections are not initialised until they are used, the test\nhas been updated to reflect this.\n\nChange-Id: If2ded1ea67cf1eb37cd88f1eeea03dd1297057a6\nReviewed-on: http://review.couchbase.org/83141\nTested-by: Mike Goldsmith \nReviewed-by: Sergey Avseyev <87f6d5e4fd3644c3c20800cde7fd3ad1569370b3@gmail.com>\n", "proba": 2.673368726391345e-07} {"commit": "04aad720e66baffec2eb55121d68a977a44efc7c", "message": "Add a check for tracefile\n\nSigned-off-by: Luyao Huang <23d9981432efa88691fd2a71f5525bc2174f7664@redhat.com>\n", "proba": 1.666106754782959e-07} {"commit": "68b256bd88772647a137272990c5d26a35d8991a", "message": "add newline seps\n", "proba": 0.998637855052948} {"commit": "6c1708f1e0a8d153ff9b420e459313fa3038b81f", "message": "Turn off mask checking for torchtext which is known to have a legal mask (#1896) (#1906)\n\nSummary:\r\nPull Request resolved: https://github.com/pytorch/text/pull/1896\r\n\r\nTurn off mask checking for torchtext which is known to have a legal mask\r\n\r\nReviewed By: zrphercule\r\n\r\nDifferential Revision: D39445703\r\n\r\nfbshipit-source-id: 3f0cacfd39ea11a16c7a06f339872554333b5e97\r\n\r\nCo-authored-by: Michael Gschwind ", "proba": 1.6675581093750225e-07} {"commit": "219bd3099baba4a2a21b843e7f2caf5ac3822758", "message": "better to raise RuntimeError than general Exception\n\n\nFormer-commit-id: 85b3faf2161ccde6b656415ccbdfa4215ad56d32", "proba": 6.702591690554982e-06} {"commit": "9b1fc8e463ba227bb6f80e30852942f7d64a3114", "message": "work in progress\n", "proba": 4.698109023593133e-06} {"commit": "f22dbb5a8256e649bbf5cd5bedd57fe9f486c0d0", "message": "killing system\n", "proba": 9.119249284594844e-07} {"commit": "8d977efab6a9749fca5611e9017bb86213163194", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "906c40da8d965a0b9209b3f9d7421a326062b244", "message": "BUG: resample: fixed bug\n\nFormer-commit-id: c3dc06c846d391ced17b398997a978e2155b1f93\nFormer-commit-id: f21a4df31b5bfa9c2e5dc95516e16617a38d4e6c", "proba": 5.47664399164205e-07} {"commit": "804c70392b03a7acaa5ed5e5350d53aea809156a", "message": "Make table of AST field locations\n", "proba": 1.3092500921629835e-05} {"commit": "c347750da115f74ec393fc67b9c4f32f9019dc4c", "message": "fixes for optional callbacks\n", "proba": 3.340993544043158e-07} {"commit": "1738c733b36e8aa59e5e5da80370fbcfff43626a", "message": "Adding test.\n\n", "proba": 4.2223800278407e-07} {"commit": "ba6122c2c1effcc8ca84ec60eef34efe55531164", "message": "OPT: adapted crop_from_square_mask for 2D images\n\nFormer-commit-id: 43aa6b0cbbd591c4e1bbabd510579d92514ebb0e [formerly 53b3b86026458c29ed41cb1db0a09da9479a7e27]\nFormer-commit-id: 62eac3009c256105131be01d301677a3f036e14c\nFormer-commit-id: 7507bff6226a2fc8ac19bbf779a0e2420afcb2e7", "proba": 3.632405650932924e-06} {"commit": "c606b4b25e01d63309a0b000d91443136f6aa281", "message": "REF: removed prints\n\nFormer-commit-id: 75da06417c7b6867274d87baab669429141651ba [formerly 408cf9b9eeecf26cc6e3dc89540b0533eb90dda4]\nFormer-commit-id: d9f11413c71fa7ea8ed0536eca9578eaf6366cba\nFormer-commit-id: 94ed8d4d1a69fd368fdfa894099535e56edeff71", "proba": 6.69400435526768e-07} {"commit": "3cb0c812fac417ba712de3c3bba6d65de3558e48", "message": "Resubmitting simple validation\n", "proba": 1.7551086273215333e-07} {"commit": "a065cd9b7798a5007903c8daba4863b9229c7360", "message": "forgot to rename get_keywords\n", "proba": 3.532509822434804e-07} {"commit": "8bfc8f7b0bad3e902285a41197b79b4ef251c6b7", "message": "Update renamed variable in rest of the code.\n", "proba": 1.1119481513333085e-07} {"commit": "e393174586c347ffa6e87972d2b2fd92db99999b", "message": "wx namespace patch by fernando", "proba": 1.5984652179668046e-07} {"commit": "fd9822f10b3b77256f893233c082e9cdeb0fa5a2", "message": "Test commit from new lap\n", "proba": 1.1841436275972228e-07} {"commit": "fd49a59de5f81854ea685f99bb6e8e1285db2f76", "message": "Implement word drawing\n", "proba": 0.0003396668762434274} {"commit": "5c59eaeff34b76a4b003f8c368afb40ed6bf645c", "message": "apps.examiner.tests.examiner: Renamed qryset to qrywrap.\n", "proba": 1.2317208586409834e-07} {"commit": "b2782475fc24bee923d3e167719a41cc0e4843fd", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "8ccea7f763474e76a1d377cdbcdedb1ad9c0c390", "message": "unpack null response; add test for it\n", "proba": 5.220730372457183e-07} {"commit": "5fa3745fdd3bf91c6012651d2d341973a9b91a54", "message": "better alpha in prince mode\n", "proba": 8.839826932671713e-07} {"commit": "68d4ddb47c6d246e4a73971a4a1ee571463e15d0", "message": "packSECCHK()\n", "proba": 2.860419385797286e-07} {"commit": "ecb89f1027d5266d319ddc6baeb338def30bd18e", "message": "Changed license and fix to dropcopy\n", "proba": 1.353273688664558e-07} {"commit": "31c14e50d469a16cf1bbfd7366917310ecfb6d7c", "message": "O campo publishers (lista), foi alterado para publisher (str)\n", "proba": 9.366307835989574e-07} {"commit": "972d614d4c1d3a27cde528d562a38bcaf7501c56", "message": "added noise\n", "proba": 3.1739511996420333e-06} {"commit": "0fc35dba77d1e1a3c2429b16ad39aa8c0f34d64a", "message": "Refactor get_estimator() to gracefully handle TPU (#312)\n\n* refactor of TPU estimators\r\n* Refactor to common get_estimator\r\n", "proba": 1.479897235867611e-07} {"commit": "a52b50526f757fd35469946b09e1276f58fb99d3", "message": "minor cleanups\n", "proba": 1.534437217287632e-07} {"commit": "4fa93aefd1e4c525267f90b5fd7797157946c9bd", "message": "bfd: T1183: IPv6 peers require explicit local address/interface\n", "proba": 3.365142902111984e-07} {"commit": "90dcfa88706fe3308e564479072b593cd40b2be5", "message": "white space will be the death of me\n", "proba": 2.5338335944979917e-06} {"commit": "3c409d05cb04a88d18e7e5740a19c2c6ae3d0f79", "message": "Created new test class to verify if log directory creation works\n", "proba": 3.5215376215091965e-07} {"commit": "f19a16a4581f26f4fc78b8ed964ce711934e0d20", "message": "new dev version for bugfixes\n", "proba": 1.6647042855311156e-07} {"commit": "1ed13c2c773ea5a67f3184ef9cbb4f72d0ecf27f", "message": "fixed bug in python runIntegration.py without timing\n", "proba": 3.4817122696040315e-07} {"commit": "b0170fc449d09799f27e30de04b97ada0761ceeb", "message": "added max_genes_hvg parameter to allow higher feature number in atac-seq data\n", "proba": 3.467721398919821e-07} {"commit": "e4aae2b629221bf51aebf9e0b52d32db34314e2f", "message": "one step further in adding a valid timestamp to the requestmessage\nadding a timestamp is different for the simulator because of simulated time\n", "proba": 4.459162482817192e-06} {"commit": "0082cf270e5c25084c09840b61d42d3570eece7b", "message": "(fix) updated to fix errors from accessing property of null item in list. Use regex for better matching of guest numbers\n", "proba": 1.4407983428554871e-07} {"commit": "16ff91cb7c1d3ad426ed9e07404f8ee7c2a7bfdb", "message": "changed variable names to be more understandable\n", "proba": 3.7631994018738624e-06} {"commit": "394ed0d0b606bc5b62548d8c6ce459b9ca2202e4", "message": "[pg] clean up cursors\n", "proba": 1.791242539184168e-06} {"commit": "eaf694209bf748be76885e77b9d9406866ded772", "message": "[api/coreapi] removed unnecessary debug output\n\nSigned-off-by: Robert Wuttke <12e9293ec6b30c7fa8a0926af42807e929c1684f@benocs.com>\n", "proba": 1.3018650690810318e-07} {"commit": "db9f6f35688f1a32ec62359f41819f57798ecab4", "message": "Use selection sphere\n", "proba": 4.2114976395168924e-07} {"commit": "f3a8f95316e5987d8ad1c6dd6372746f6d326f9e", "message": "now sorting alphabetically and in original order\n", "proba": 1.054818994816742e-06} {"commit": "c41ac0bf686cdcebd60f063c11947dfdceac1f24", "message": "Fix gpio input\n", "proba": 0.0019070148700848222} {"commit": "304f58ec182d290c4b2766b09d32d0a36acbccf0", "message": "Avoid computing the number of cols at each iteration.\n", "proba": 1.9668668755912222e-05} {"commit": "03d281ba420f2859e08bf61b26fd803502ce6a26", "message": "api: encoder def before other plugins\n", "proba": 5.849538524671516e-07} {"commit": "d1b82ff69dc712beb8b6b744f1434f5c3ea7b167", "message": "pylint\n", "proba": 2.1026107788202353e-06} {"commit": "b2915f8068b16156fe98f904a1c12d776fcbef4f", "message": "finished tasks below:\n1. Extract page url information from HTML structure of web(perfect the function \"def get_index_pages_links_list(self)\" further in \"class_crawl_secrurities_newspapar.py\").\n2. Add the essay index to similarity value tuple and sort the similarity matrix.\n3. Finish the class file \"class_compute_title_similarity.py\" test. Ok.\n", "proba": 0.0001042819203576073} {"commit": "e44ed537dd25402540db0ef97ef062f3651b277c", "message": "Add test to catch missing images\n", "proba": 3.278232441061846e-07} {"commit": "cd2a519c6592d90e8658a5e90d8b0342d08b9ae9", "message": "In sandbox.run_setup, always ensure that __file__ is str. Fixes #712.\n", "proba": 1.503397299984499e-07} {"commit": "17946dee2698e6c1ed9ccaddc5489e010ce2ea00", "message": "update the record's last updated field with the current time. last_updated field will be ignored until the readonly attribute is removed from the field definition in GeniRecord.fields\n", "proba": 6.174904569888895e-07} {"commit": "8f8c1b75520e65ed04a5e1c68dec99c67099e020", "message": "Reduce polling interval to avoid triggering Amazon rate limiting.\n", "proba": 1.891171592660612e-07} {"commit": "832cdb16c75ab3d8d8a37b1ba54eecfe3a05998e", "message": "Updated from Brython Server: 3/8/2018 3:09:21 PM", "proba": 1.1022221713119507e-07} {"commit": "ed811cdc732eaac37768dbab7aa5fd766f0b9570", "message": "* Make Gmail searches unicode compliant\n", "proba": 1.1581340686461772e-06} {"commit": "6ed943f1da8a65424cc650daa7878a098b8be1ce", "message": "add json for 4326 file\n", "proba": 3.2546978445679997e-07} {"commit": "795056c2d5247dca1538efb835dd589643ab0f8b", "message": "export: first try in getting an oblivion keyframe exporter working\n", "proba": 1.7304459731803945e-07} {"commit": "9e4f24808843de8073806f0e1e7d4163b5899ba2", "message": "BUG: default offset changed, fixed\n", "proba": 3.356040849666897e-07} {"commit": "b624e0b6b52f52d15563fa9dd71e7565f2e310f3", "message": "fixed typo in apriori\n", "proba": 1.163832735073811e-06} {"commit": "e7253064afcc38e24b84e37d734f882336897071", "message": "typo fix\n", "proba": 1.0356772691011429e-05} {"commit": "051e4828e465e2a1d463ed0020b57c15760f3009", "message": "adding a message to the error\n", "proba": 1.2587979654199444e-06} {"commit": "ef9324fbb517ff249802fcaea5ec16bc8b2c7574", "message": "raise an exception if doing any operation related to launch configs on Elastigroups\n", "proba": 3.1632947639081976e-07} {"commit": "1bb4c7d446323c13fd31818febf64d48b50eb424", "message": "Make sure all gateway routes have DestinationCidrBlock\n", "proba": 2.800891343213152e-05} {"commit": "b76057e075d7eee5f5f1e89436b211067f2aeef9", "message": "Add missing fields from database to plotting script.\n", "proba": 1.2460783693768462e-07} {"commit": "6ac18df15af5c83177a11520d015ac9a57b56a5e", "message": "pydoc for smartdc.datacenter\n", "proba": 5.030494776292471e-07} {"commit": "5ce0639070afbb0697bd5083b5e79d8be24f4c3a", "message": "use regex to remove non-ascii\n", "proba": 0.0016451948322355747} {"commit": "68d5894eb53a240aaa653bbfe07e64f9ad0915d2", "message": "sync with mandriva version\n", "proba": 2.002787624633129e-07} {"commit": "d4f1b62f33fd3953febd2586daace4b46ec533a3", "message": "Removed lower bound on range", "proba": 4.248600816936232e-06} {"commit": "cdc01e58e8cb16ed819130d18889f4f6900cab05", "message": "made more informative commandline output\n", "proba": 1.5266821264958708e-06} {"commit": "391736e73749dc71a37fda94409ac8fa26738097", "message": "Updated `GeoWhere` to be compatible with changes in r9700.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@9702 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.7318191112281056e-06} {"commit": "5b14e0a0be17b75fca7556d9ea977193eed6089a", "message": "Scripts: Call rosbag-record with topic list and avoid -a option.\n", "proba": 1.0557957352830272e-07} {"commit": "9a5fe5b29fd431431a53da63ad8825d878ee5878", "message": "Added ordering to prevent non-deterministic test failure; refs #23099.\n", "proba": 1.239694427113136e-07} {"commit": "7a3838b7f9e57aa8d454b7b26bbef2efde05b1ab", "message": "Switched lower and higher\n\n\nFormer-commit-id: 7a99f6f1c99582c82da6cfc575a9e9752a29722c", "proba": 3.3506598811072763e-06} {"commit": "a64e818948188f7805d779ad58420ed08a824b0d", "message": "DOC: interpolate: improve spline smoothing parameters doc.\n", "proba": 1.3304646984124702e-07} {"commit": "e2e57b0692a533520941e163f1ce3f9df9b0ac62", "message": "Ask for confirmation for leaving after every new point.\n\n\nFormer-commit-id: 2f0b5dd606c1cc1ba6b9ecb6aab224b726dd9a3b", "proba": 0.0003444703761488199} {"commit": "9e0e9c018240576af14ad8ef064a117cf7005d74", "message": "changed to plt.subplots\n", "proba": 0.00014091559569351375} {"commit": "8a40bebd1fbc6e94c7f2b3c49b185b295993d0e4", "message": "Change quoting style to preferred.\n\nBUG=None\nTEST=None\n\nReview URL: https://chromiumcodereview.appspot.com/10383283\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@138302 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 0.0007757612620480359} {"commit": "8ca3261bfe1bde95abf888bd2942b98e3bf234c0", "message": "added brief explanation of weak_coupling_demo.py\n", "proba": 1.499395239079604e-07} {"commit": "28e604e3467e22718d09bbb0546d9dbfdf1702b0", "message": "Nicer-looking address bar for WeasyPrint Browser\n", "proba": 1.2890178879843006e-07} {"commit": "ef0cf6e79cd876352ad4d8e4d4ccfd46f78811e3", "message": "(M) Encoding in Italian Message File\n", "proba": 1.808329415098342e-07} {"commit": "45a3304d6010f2fb94c53fb49692e74912b4e144", "message": "add packACCRDB()\n", "proba": 2.2934104038085934e-07} {"commit": "344a970b950d969885b4101dec09debf926401e5", "message": "reraise the exception after logging it\n", "proba": 3.315392120839533e-07} {"commit": "cc1003c1c623a4f884c7fd96baa78f5e45fbaac4", "message": "switch back to doing the download inline; more trouble than it's worth\n", "proba": 1.5527038499385526e-07} {"commit": "9984ea50deec93e650a6af32cc1de8867c5aa22d", "message": "Added comments to ConnectionThread.\n\n", "proba": 1.1214262229941596e-07} {"commit": "f4ed9fe43ced8f69bbe0456964cb19b0a7b1d23e", "message": "Improved code quality for Keys class. Output is now correct HTML 4.01 code.", "proba": 1.1854791637233575e-07} {"commit": "599a5e84e6e87a755429f968cc9aa39d4aa7dab3", "message": "Added git clean / git branch --delete / git commit / git push origin master\n", "proba": 2.3080276889686502e-07} {"commit": "a126bdb212449968054c93518dda17b66e89e410", "message": "Import private.py in devstack.py\n", "proba": 1.427056531611015e-06} {"commit": "5ab3acaa2d255094fb47fc9d89591bb3f664641f", "message": "Synchronize Hamiltonian parameters by default\n", "proba": 5.456536200654227e-07} {"commit": "5672d0b3964dfcb7799f755417905bffa6ad511d", "message": "Switched from using selium to requests/BeautifulSoup\n\nIt was a mistake to try and simulate a real browser and scrape\nCrunchyroll. While it had the side effect of getting around their bot\ndetection, it was a dependency nightmare. Using requests/BeautifulSoup\nand the private rest APIs when possible will allow for easier/minimal\ninstallation.\n", "proba": 1.0508453840429866e-07} {"commit": "f9ca0cc9963ece997fdcfe1294ddf47a9ade6242", "message": "Add lipo / universal binary target for Mac OS X\n", "proba": 5.395522180151602e-07} {"commit": "8e121f180cf9c395db4640e7f67ff64aa189894e", "message": "fix Filesize would require ZIP64 extensions\n\n```\r\nLargeZipFile at /analysis/149/export/\r\nFilesize would require ZIP64 extensions\r\nRequest Method: POST\r\nRequest URL: http://X/analysis/X/export/\r\nDjango Version: 1.9.7\r\nException Type: LargeZipFile\r\nException Value: \r\nFilesize would require ZIP64 extensions\r\nException Location: /usr/lib/python2.7/zipfile.py in _writecheck, line 1114\r\nPython Executable: /usr/bin/python\r\nPython Version: 2.7.11\r\n```", "proba": 3.6541794656841375e-07} {"commit": "bd85f1adc86b5645808cfc75fd1fef354146cba1", "message": "interface: add test for dummy interface\n", "proba": 5.050432719144737e-06} {"commit": "1ba83464ff5a921966bc8db8dd3d2b254385ddde", "message": "always write out yearly precip totals, useful\n", "proba": 1.3504192963864625e-07} {"commit": "f8acf9c2187e05a04c9685ec79541aae6c6ae308", "message": "Strip newline pairs from quopri encoded response; they occur randomly and make searching impossible.\n", "proba": 1.1945810740598972e-07} {"commit": "76709e594bd863476c4111185d98ca2551c460d3", "message": "Add Vertex class and doc strings for 2 classes\n", "proba": 1.7642915395299497e-07} {"commit": "f3974bacbe23d522075c449e71d44116825d9df3", "message": "Remove sequence constraints\n", "proba": 0.0012599211186170578} {"commit": "81e87c38cffe133be006e901211d3583126cf049", "message": "[REM] Useless variable with return on first stroke\n", "proba": 4.0401280898549885e-07} {"commit": "2f9413d190d42d0c45e1e95e15790d17cf1cdeb1", "message": "verbocity--\n", "proba": 2.674449888218078e-07} {"commit": "bddc4a00d16e592cf3037737751d349515d646d0", "message": "fix eroare la modificarea unui CUI pentru un partener cu persoane de contact\n", "proba": 1.2186242770440003e-07} {"commit": "b085bb0cd5f7c3db7dac95240bb9fa8efcb62e87", "message": "Add vcs_rules of comm-central.\n", "proba": 1.2534931670415972e-07} {"commit": "f5af060d445cdc8ebbb0abc3fcdfa290660a899e", "message": "labeled campus models\n", "proba": 6.863408543722471e-07} {"commit": "62a78c6b14168641eeecc14b689a062d6df08c7c", "message": "Cleaning.\n", "proba": 1.114633732868242e-06} {"commit": "44ffe0e4fb2cbc80eb25af1bc9a0fb8d2c520ca8", "message": "prunned divestment logs, accepting b2b is dangerous\n", "proba": 3.6935992397957307e-07} {"commit": "447565927c419772beb00b8a2d816f819dd69fa6", "message": "Delete sitemaps item before notification in sync_sitemaps\n", "proba": 3.6508563994175347e-07} {"commit": "e18b5c58c8e1cddd605b297d29e95c807dd0ddd8", "message": "fix assets path not registering correctly\n", "proba": 3.491511222364352e-07} {"commit": "eef6ccd1a50599fe21007053a7c15000000569cd", "message": "Raise exception if testset contains more datasets\n\nif testset contains more than one dataset, raise exception\n", "proba": 4.762486241816077e-06} {"commit": "811617598b36ceb59f05a8db0728df156fd636c7", "message": "get 409s by md5 again\n", "proba": 1.7429071874630608e-07} {"commit": "d8d25a602a95f3eabde5343e2cfdcde51e6ea150", "message": "Add docstring for factorplot\n", "proba": 5.748929083893017e-07} {"commit": "043a9bea64d1ab743eaa401d15e8b7a14ac16b69", "message": "fixed Dropbox class\n", "proba": 6.41696658476576e-07} {"commit": "a70f7ebc99bc25f437f615458cdbf4d5436eba31", "message": "remove commented code.\n", "proba": 1.310377513163985e-07} {"commit": "792eee0186b80b4630d8146823e4dee47b7a86f0", "message": "Use 'with' idiom when writing utils.sh\n", "proba": 0.02169543318450451} {"commit": "92339628c00babe4f5710ad83e0a2a5e5dec9f7b", "message": "Re-applied fix for issue 7\n", "proba": 1.2033648033593636e-07} {"commit": "f6daaae2f85fe529f2cf889d84b6968fd1c93963", "message": "Port dot() product to native complex operations\n\nFor reference:\nhttp://www.solitaryroad.com/c606.html\n", "proba": 1.4413851090466778e-07} {"commit": "7fbae6f5d1a89cf281abdfef50e9ac852760fde1", "message": "Convert input to a string object. Fixes #909230.\nBackported 2.3.\n", "proba": 0.0003070748643949628} {"commit": "dfd80b1f345246fc815cba314a8799889da2596c", "message": "Mark Hammond:\nThis patch fixes the mmap module on Windows 9x.\n\nAlso updates the mmap test to remove the test file.\n", "proba": 9.769040332230361e-08} {"commit": "0ed5fc02203dfaccff3056fe992b98778ebd77ad", "message": "Update telegram_specifications.py", "proba": 1.2806933682441013e-06} {"commit": "e7177c6b588e336afe0eedd4bfa406899b67fb44", "message": "Fix URL removal for older tweets\nOlder tweets might have URLs in the format http://t.co/\\w+ instead of https://t.co/\\w+ . These URLs are now alos being removed from the database\n", "proba": 0.005511652212589979} {"commit": "ab99b073a3494ea2a57bb812b700df55363ca8f0", "message": "Pass the cookie when POST-ing, as the user otherwise wont be able to POST the\narticle.\n", "proba": 1.1024997093045386e-07} {"commit": "eabda20a7f12bfc6fc61073dcd4f6046d2148ff1", "message": "changed example-settings_local.py\n", "proba": 7.763521239212423e-07} {"commit": "f217d1367ae2a49f963f42495b32f489a6f7b17c", "message": "Improve portability of download_pkgs genrule bash (#1673)\n\n", "proba": 1.0670355266029219e-07} {"commit": "a685e657e6fde271db3c505ee57e8e2df9269ec1", "message": "Set ang_units; use different symbols\n", "proba": 1.7654927432886325e-05} {"commit": "53b46aa805601c572e349ab69ffb3024c6b17a4a", "message": "cname test\n", "proba": 7.854953764763195e-06} {"commit": "eae9364e21e8bd5a892143234e3b77146b392700", "message": "change POINTER,CONSTANTARRAY,RECORD to take only Type and not Cursor.\n", "proba": 1.0725161558866603e-07} {"commit": "f8ded44c4b58d7916c5bc9029b760b9b7b04797b", "message": "Add support for missing attribute values in mongo2/facts\n", "proba": 4.150584516082745e-07} {"commit": "181c094a8918bc386771aaf2d7c99d4cc011a3a5", "message": "Fix selenium layer count check.\n\nWas hard coded to 17, but sometimes the mapbook changes. Allow to\npass when > 10, so this isn't so fragile. The main goal is to see\nif IE11 works at all. More detailed tests can follow if needed.\n\nref: #391\n", "proba": 1.7554198450397962e-07} {"commit": "0b84f4cae9eaf92fd443996980db4995388407f3", "message": "enable filtering out of sections that aren't configured via sql\n", "proba": 1.8671025259209273e-07} {"commit": "e6126f483fd39c59778bc3752463c1558db6379c", "message": "Fixed typo in element name in PDFFileMetadata\n", "proba": 1.8761163289582328e-07} {"commit": "cfd1a1e582cc1a2160d594ac333cef23d836eeb7", "message": "Revising 16x2 page example\n", "proba": 2.256821005630627e-07} {"commit": "722f059babd7a40ba7839220572a7e11a4d9efbb", "message": "Update lesson_preprocessor.py", "proba": 4.7063011265890964e-07} {"commit": "aeae8469a3568414d40bb35ebc4c2d6f7e3b1872", "message": "Make the method _op_method() public\n\nMake the method extra_specs_op._op_method() public so that\nit can be imported or used by ironic virt driver.\n\nImplements: blueprint pass-flavor-capabilities-to-ironic-virt-driver\n\nDocImpact\n\nChange-Id: I3ce596e1dde61428bfc709b39aa1131fef83c921\n", "proba": 0.00024383400159422308} {"commit": "94b40cf43ca3ab7d85fd15c8fda9baf8ed07f8a1", "message": "Fix TestNeutronv2.test_deallocate_for_instance_2* race failures\n\nThe unit tests\n test_deallocate_for_instance_2_with_requested\n test_deallocate_for_instance_2\nin\n nova.tests.unit.network.test_neutronv2.TestNeutronv2\nfail randomly. An example error looks like this:\n\n b'mox3.mox.UnexpectedMethodCallError: Unexpected method call.\n unexpected:- expected:+'\n b\"- Client.delete_port('my_portid1') -> None\"\n b'? ^'\n b\"+ Client.delete_port('my_portid2') -> None\"\n b'?\n\nThis is due to the mox record with expected the deletion of multiple\nports on an instance in a specific order. This order is not important\nthough and also not the same in each test case execution. To make it\nexplicit in the test case, that the order is *not* important, I've\nchosen to define that in the mock records with \"InAnyOrder()\".\n\nAnother solution could have been to ensure the order of the port IDs\nthrough the unit tests, but that could be interpreted as a precondition\nfor the functional code to work correctly, which is a wrong assumption\nand therefore not chosen for this fix.\n\nCloses-Bug: 1521599\n\nChange-Id: I6ee4512d221aed48ee56f6cca19744f20f70cbe0\n", "proba": 0.9999991655349731} {"commit": "e032a8bfc7f52c97e67e9b98785d6ba87bce2a8a", "message": "Fix variable name field filled by default\n", "proba": 5.992152409817209e-07} {"commit": "137f8e1ca47eb45a213b5a84536c2dc8dfaffbf2", "message": "\n\ngit-svn-id: https://subversion.assembla.com/svn/threedhst_internal/trunk@41 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 6.167535957501968e-07} {"commit": "a3f631a59fea34e44b2cca2b5ea234e56aff4645", "message": "TST: hit the deprecationwarning\n", "proba": 5.998075266688829e-06} {"commit": "6da769b18d25238219fbe299bd0fadbca55b59d5", "message": "fix loss scaling\n", "proba": 5.786811811958614e-07} {"commit": "6c560cb3996bb4cf1dd49611150193a18c2f6c2d", "message": "AllReduceCrossTowerOps -> AllReduceCrossDeviceOps", "proba": 1.9310795096316724e-07} {"commit": "2bb6e9a7b91a48632d2755f4582c6b8423149dbc", "message": "PLD: make pep8\n", "proba": 9.872472901406582e-07} {"commit": "e9b4327e80c1c8a3e5a1794f197a7c83cdcb0a18", "message": "ME: added 'DjangoObjectPermissions' to 'permission_classes' property on team_viewset.py\n", "proba": 1.3256645559067692e-07} {"commit": "f825b6043bd138049ee2a107e44596ceba8ef954", "message": "[FIX] rml: avoid reports ending by zero (opw 608073)\n\nCommit b6a7402 (reverted at f8671cb) was almost correct, the PageReset should be added at the end of each stories but only if we have one more stories.\nThe PageReset will force the page count to be reseted at zero which means that last page of report would have been at zero.\n", "proba": 1.4662606417914503e-07} {"commit": "f065d08e6adba7cbf4131b3d0c2c9d55ce14f46e", "message": "remove print statement from provider service\n", "proba": 4.892016659141518e-05} {"commit": "c65d8645ab8c578d632ed3d790b1db06eb1e7526", "message": "more comments added\n", "proba": 1.1736742777657128e-07} {"commit": "e6ffc9d5900df0e458423270073ce635437e7fae", "message": "Bugfix: Failure to setup a share logger is an error\n", "proba": 5.396973392635118e-07} {"commit": "ea9f8d6602564a67621fee2e85811951ea5822af", "message": "scripts > main_rectangle_algo > adding conf of brick by color\n", "proba": 1.298026859331003e-07} {"commit": "066666a7f9ea1b830ba470f3f896d8c57415c704", "message": "SPOT-2014\n", "proba": 1.551654378317835e-07} {"commit": "478d9a7ddafd65e3e7f6cb2d1d64d838772575ae", "message": "Move JSONRPCServer binding to config file\n", "proba": 2.9829323011654196e-07} {"commit": "c3b732589c184dd03dbbc59bc2eae042594d274f", "message": "more flesh all around...\n", "proba": 1.1857686388339062e-07} {"commit": "775ed159b703d44dad0cb89955110e12ea7d3a1f", "message": "change order of map definition\n", "proba": 1.0044788041341235e-06} {"commit": "ab6dbe6882b2a807a25b79a1db7ac7a7d3113130", "message": "lint manifest\n", "proba": 1.3988089904160006e-06} {"commit": "24b9a438f2416e264ea65fb6c84d0f5b6060f892", "message": "removed test on mock fluctuations\n", "proba": 2.1572331831976044e-07} {"commit": "0d0104294b2ed1294ba826bc3301e4251893fd9d", "message": "Replaced JSON configuration with YAML\n", "proba": 8.188253559637815e-05} {"commit": "72b950852e15770cd75fa6c9d7cbda00f9f678cd", "message": "Added get_gps_week function.\n", "proba": 1.0883300660680106e-07} {"commit": "54674c5f83a2ed96092b3d197ce736f170d4f1f9", "message": "DanielWagnerHall: Actually make method a class method. Fixes issue 2156.\n\ngit-svn-id: 4179480af2c2519a5eb5e1e9b541cbdf5cf27696@13143 07704840-8298-11de-bf8c-fd130f914ac9\n", "proba": 2.2799083581048762e-06} {"commit": "3f815e078f27f7113601f630015ee26997c2ffaf", "message": "add InvalidConfig exception\n", "proba": 8.432681397607666e-07} {"commit": "3fb2c2859518ff0bd93e262452a8e9561e170a28", "message": "increase timeout\n", "proba": 1.0350888260290958e-05} {"commit": "38ddc087ffa1e868296fe31fdbb85e25d1ae6ded", "message": "Fix docs\n", "proba": 2.6344785055698594e-06} {"commit": "9987957d819fb450f191bfc7af9edcda4e918fbe", "message": "Use setdefault for NPY_SEQ\n", "proba": 6.937421517250186e-07} {"commit": "53f50183aadaa0164713a7e6a1833a860b9f64b1", "message": "fix the bug in test_config\n", "proba": 2.9474203984136693e-06} {"commit": "5957825cf403788cfff5f9ca5883676387931abd", "message": "changed link attributed to ids rather than strings\n", "proba": 3.922464202332776e-07} {"commit": "fd9a097997183434ebd145ca586dc0c105a8eb37", "message": "More PEP8ification.\n", "proba": 1.2653983105792577e-07} {"commit": "ffc4b1e322ecdae031e8ebed9e7a67011c2bc2b2", "message": "Repl target urls don't contain default ports now\n", "proba": 1.3329756143320992e-07} {"commit": "029fd46395d8a15aa7d366e4088364ca161059f7", "message": "updating documentation; removing unused items\n", "proba": 2.896238129324047e-07} {"commit": "b5447d7b958f1d5fcda819b28b4c632754ec5480", "message": "updated schema check to handle whitespace differences\n\n(cherry picked from commit 1ce5455880dcec885b12f84d0e39e72f9a195a3c)\n", "proba": 2.3287401518246043e-07} {"commit": "95f829a91a4ca13991ef06dacc4a2a1d64a4156e", "message": "Added announce results on fast-forward\n", "proba": 1.3325841052846954e-07} {"commit": "d0400db0bd0bfe3333db42002c7a10ae864c5537", "message": "Added the click and dclick support to the tree editor.\n\n", "proba": 1.0758968471691333e-07} {"commit": "ffd301485a01b6de6e538903630b886573844e32", "message": "Add es.__sub__()\n", "proba": 0.0022623937111347914} {"commit": "0952fa80715478cca2cb5da663ef26b036125a84", "message": "start on SdA\n", "proba": 6.59344834730291e-07} {"commit": "85af47abf5fc779745f762eb6f22595e45d4681b", "message": "set shelf life for gsheets authorization\n\nHope to address this error message: An established connection was aborted by the software in your host machine\n", "proba": 1.6072485209406295e-07} {"commit": "c090fc40ea60aa5ade7d83f17cf5d9cbece662fb", "message": "FIX Issue #391, added check to prevent divide by zero error in \"printDiscoveredStats\". (#392)\n\n", "proba": 1.8981661753514345e-07} {"commit": "e78bc8e088543bcc73f10c20cfe494358fa6b641", "message": "fixed hidden columns\n", "proba": 6.062335273782082e-07} {"commit": "01c571a3767339caf81dca61c6525f9c9bcf66fd", "message": "Fix the CustomForm migration script\n", "proba": 6.120652869867627e-06} {"commit": "c3652389dc04e1fec5ce5f9a24a851a9b2d99d4c", "message": "Error Reporting Improvements\n\n* An exception raised by an invalid channel name will display the\n name of the channel specified.\n", "proba": 1.0060225008601265e-07} {"commit": "839a4a3aa3f64c5d326883ae1ddd8f6959dfc382", "message": "Fix uiview.py (#20175)\n\n", "proba": 1.289685656047368e-07} {"commit": "4f5dc14e90a731bcdaaa8069b47b0efc525c39e8", "message": "Remove tuple parameter\n\nThey are not available in Python 3 (see PEP 3113). I instead replaced\nthe parameter with a single argument and do the unpacking in the\nfunction.\n", "proba": 1.4656413327429618e-07} {"commit": "5b935af9ace976e696b933cb6adf188b9e5f7fa6", "message": "Moved parens [skip CI]\n", "proba": 1.1926003651296924e-07} {"commit": "04322e29848914fe35bb8cac05f5fbd264fa87b3", "message": "Fixed a problem in the TableEditor filter handling that was depending upon certain state in the UI object that is no longer valid in Traits 3.0 after return from displaying a modal view.\n", "proba": 1.0241264902788316e-07} {"commit": "10a1aef71ff4f17280b7c531878566dc52e2c176", "message": "Added a valid quest check in the _check_if_quest_completed() function\n\n", "proba": 3.6918171986144444e-07} {"commit": "43b0b79077b50a601dea1a1089cb74979cab063b", "message": "using default mutable argument is wrong\n\nwe can use a tuple instead\n\nChange-Id: Ic807a8b740e022fc6d4556dd83d999a2395b9748\n", "proba": 2.9580553018604405e-05} {"commit": "2b440b81d6848a4f8674514e74fcdc71884b43a0", "message": "Benchmarking stuff for logo detect\n", "proba": 1.390602193396262e-07} {"commit": "3203877ca29ab1915b877ba727597e3f3a825a56", "message": "handling 504 error\n", "proba": 7.999670970093575e-07} {"commit": "de67514d1954bf96d81e582b5f26d2db497b52dd", "message": "Remove unnecessary method get_maxclique\n", "proba": 3.4305301142012468e-06} {"commit": "f8ed4ddfa7b55436cae7a6126ea67d989d1f220b", "message": "fix installation when only one parameter given\n", "proba": 2.2433836477375735e-07} {"commit": "7b8f1fc04a901b6425ac16aeaf1f13542c5d593e", "message": "Commented debug print calls\n", "proba": 1.8562121795184794e-07} {"commit": "9760d440d5f9b254f038eb1b47024edd74de9999", "message": "Small simplification of build_loss_tables [skip hazardlib]\n\n\nFormer-commit-id: fa2e1666ac2877266f4bfd20bff5d01a05d1808f", "proba": 5.396937581281236e-07} {"commit": "c7930bc75943609f9e94cebdd6dded76dda47b68", "message": "bug fixed in filename\n", "proba": 5.131846023687103e-07} {"commit": "730bd41285c59b8a1a25735134be408ec836d0fb", "message": "[svn r37287] don't eat exception, simply use finally\n\n--HG--\nbranch : trunk\n", "proba": 2.030880494885423e-07} {"commit": "a3c74c08b7a1cc0ec23c78b7ef758442fce2db26", "message": "Change es.remove to use count instead of ubound\n\nubound returns None if self.count == 0 so this would throw an error where it\nshouldn't have.\n", "proba": 1.2860574827300297e-07} {"commit": "52d4189e96e827d85ede52a557f7a8e940945a11", "message": "don't show registration error on pc\n", "proba": 2.1918212667060288e-07} {"commit": "e9dca1f6ca9719f799a59f95c778e6816e6e04e8", "message": "I had misinterpreted what Alex meant by \"filterSize.\" fixed that\n", "proba": 5.6013344874372706e-05} {"commit": "09f8a6c8d0d4b775562eec52e970e599adf6e5b1", "message": "Use EFF field instead of ANN\n", "proba": 4.628540466455888e-07} {"commit": "614dc05d681d3960bae2d356762215d02cf1a979", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "b57ab8a9f17cd048f2487edb342d406d949146f8", "message": "typo (#2627)\n\n", "proba": 7.573019615847443e-07} {"commit": "3a2a426e61088f83724a45e74feca5b8a2ede73d", "message": "Various format fixes and some de-linitng\n", "proba": 2.2507168750962592e-07} {"commit": "59cbaf88ef2d1477948bbd4f21c6f8398e38be74", "message": "Add missing fp value for Jeep Grand Cherokee 2019\n", "proba": 1.1475531209725887e-06} {"commit": "951296b6d375f0f2e17e81dd3b51eae70165041a", "message": "fixed up some string rendering issues\n", "proba": 4.0586490968053113e-07} {"commit": "636ce1992ee4449bff410f3bd893e94038fd415e", "message": "Fixed ucerf_classical\n\n\nFormer-commit-id: afed7f83d33adcca6cb41164d5998904c2f2468d [formerly afed7f83d33adcca6cb41164d5998904c2f2468d [formerly 084da3467f00d2bb6b371891917ae7a0bf7060f8]]\nFormer-commit-id: 1ad501cc387756cb27737b50085b735096e1c240\nFormer-commit-id: 0a0c3373c6a68fe49680aef08b6204c107ab8608", "proba": 7.852196404201095e-07} {"commit": "65cb90723009b5d609c378f55f9d42cc45d744b7", "message": "Template: get rid of add_period, use AddPeriod instead; add_periods now works\n", "proba": 1.5946859832638438e-07} {"commit": "4d6ee7f38be6d7304fb3e673b63a2f5459ddd01d", "message": "Formatting corrections for the docs.\n", "proba": 1.292635971594791e-07} {"commit": "8180ca19af0a6b6db4a43e2dfc6dc307c3aa4fd8", "message": "Add source splitting in tests [skip hazardlib]\n\n\nFormer-commit-id: 531ce16ff9248cfe80f8018c593fbabe2ceca7f8", "proba": 2.8475616886680655e-07} {"commit": "39da7522cb2144d2b4022cc53896a4e750cdc04d", "message": "create table upon create_column, fixes #220.\n", "proba": 1.0649961978970168e-07} {"commit": "2dd52ae8a0408dc701f5a05fc03ad505f78bda74", "message": "Add ActionsQueue.clear() method\n", "proba": 4.5126716941013e-06} {"commit": "f784c383f0ce94b9831153a85ef0669cb4a51689", "message": "MAINT/TST: Put build_reference_model behind a property (#224)\n\n* Put build_reference_model behind a property\r\n\r\n* Improved documentation of reference_model\r\n\r\n* build_reference_model now private, uses internal _dbe\r\n", "proba": 1.278358752188069e-07} {"commit": "11b68fb697b3741774d551b276bb5632c31a1021", "message": "forgot unpack for aggregator\n", "proba": 1.6774856703705154e-07} {"commit": "bf9ccd5888fb31e94ffa3d3e5ab7cd75c328aee9", "message": "More robust tests for simplexes.\n\n\nFormer-commit-id: dd0f749fc458390145073d36160a5f44dadbc63e [formerly f6c4197d1e94db2ddd26e1af711d13cc1ebebffe]\nFormer-commit-id: 63e1fad60b5cbd49f29831951783a056d4e70d16", "proba": 4.544084004010074e-05} {"commit": "cbb07500a538e793bc4ce705837875003d13ffaa", "message": "Check the ruptures only on Ubuntu 16.4\n\n\nFormer-commit-id: 35b522b0666b6c4fc7887aed5263de2cbea49479 [formerly b97793f58155970ec42b9157d5eae55db795196b]\nFormer-commit-id: 9c8d1522a3885cf2caedfcf97324d478c2788753", "proba": 9.44981729844585e-06} {"commit": "6cb53ef23eb5654c7a26faede62b4f665fae1bd5", "message": "Add es.move(srcix, dstix) (untested)\n", "proba": 1.2674167919612955e-06} {"commit": "a4b4aa5f119f2a11410f4e9ba234af2a1d6f0789", "message": "Update XnatUtils.py", "proba": 3.682966109863628e-07} {"commit": "c8a82f7fd4faff7ea67b30562d7d6e4d9557222f", "message": "clean ast.core", "proba": 7.528475407525548e-07} {"commit": "5b50d013a9353e63a56e229aed6c84d527f2c014", "message": "Fixed ShowCalcTestCase [skip hazardlib]\n\n\nFormer-commit-id: 46a55ffc3901206b123cbea3a37a046d991af5f0 [formerly 46a55ffc3901206b123cbea3a37a046d991af5f0 [formerly 48958a19c9bbeb2950a1e5cab81006dd0d618b66]]\nFormer-commit-id: cbe40505f4b5b673e2a59f676ad355742ad89e16\nFormer-commit-id: fa084aa91ea5a428119eeaf6d2a19dee2d6c2bec", "proba": 9.383312544741784e-07} {"commit": "02baa4a3c12dc2999dcfd3cedf863f627daeb813", "message": "Fix IDP_METADATA_LOCAL key\n", "proba": 7.14013003744185e-06} {"commit": "3568f40b37283d3c3f707ed4e904e8b46128dcb2", "message": "VectorDataPlugValueWidget : Added drag pointer metadata support.\n", "proba": 1.0528295746325966e-07} {"commit": "a5b227423d04705df32819353f82be7d54b6a0b0", "message": "Update __init__.py", "proba": 7.178883242886513e-05} {"commit": "0154314eec8e95f39a3772f6f1b70241aaf0febe", "message": "parameter order ftw\n", "proba": 8.649327014609298e-07} {"commit": "f48d6b3fb831843d8748cf2c80bc35f2e4a28fab", "message": "add invocation option --testing\n\nallow Makefile to make the test data as well as the\nproduction data.\n", "proba": 1.0931420035831252e-07} {"commit": "ccf7dda87f498789a3741191736cabd947c87913", "message": "Connection to Garfield implemented\n", "proba": 2.3055638109781285e-07} {"commit": "a07ca31d6d2300bf2bf2be87ff06725b5c1077f2", "message": "* add bufsize arg to popen\n", "proba": 1.7001947583139554e-07} {"commit": "fbf2c6dcb9b0785c5b1e04874ce0d55d72ff3d06", "message": "Reduce the scope of creating an Inode.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 1.596702304595965e-06} {"commit": "b1876dc0f9b51ba9fed5d028114aaeba35c7c23a", "message": "Fixed two wrong randint() calls where we would go over the max_damage range\n\n", "proba": 1.6933709900968097e-07} {"commit": "c306ae6a8e0abe25b932ccf0d0a31a16e658749a", "message": "Logging the task construction\n", "proba": 0.9999914169311523} {"commit": "a34196854b2b7f69fd0138da528143401cbc1cd8", "message": "add default spark config (#1017)\n\n", "proba": 1.1527463072980026e-07} {"commit": "a67c5de30937b65f9d0db01540e314524f8232b6", "message": "second instance of \",\".join bug\n", "proba": 3.932805157091934e-06} {"commit": "93f0a1503f7bcef98fe2d939826197f1e60d6768", "message": "Fixing typo\n", "proba": 1.0679608749342151e-05} {"commit": "46298ce8a40354d38c213329ee2d25e8e615547c", "message": "Add type declaration\n", "proba": 2.1855353224964347e-06} {"commit": "7f15fc6f1822bef7fc9467e7d74a84a39bd350f7", "message": "Fast list suts with status= free/ locked/ reserved.\n", "proba": 1.0248944448676411e-07} {"commit": "09bc8d9a35426fb50ec122e70c2a92181c4a99e9", "message": "Split out eltorito hidden configuration to seprate method.\n\nIt makes reading _open_fp easier.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 1.429066571745352e-07} {"commit": "f54ca6eb4fa479efaed3c4fc22af9ecc73c213c0", "message": "Improved a docstring\n\n\nFormer-commit-id: 9a474bf5fa9aa7dee078945109c41a785b47dbf3 [formerly 9a474bf5fa9aa7dee078945109c41a785b47dbf3 [formerly 8d5deba54eb743aef8372e62becef703878c9c15]]\nFormer-commit-id: 63a06175bb89e0768fd438f3a1d2663873a1a4c0\nFormer-commit-id: d9231f5a8f8400d67a3a1e57c5c067f9497a283d", "proba": 0.9999834299087524} {"commit": "9b4d48d0a675f1d8ab371225fdca55d387d6319d", "message": "only allow ballots to be cancelled\n", "proba": 2.932835627689201e-07} {"commit": "c28839de7ce56e8e8ee3c36521f658ef9b740da3", "message": "testing dapqa bug fix with panels", "proba": 2.0458097083064786e-07} {"commit": "1f7e93173382bc26e8cb4f2f156bb59d8a6af2d7", "message": "Add files via upload\n\nfix indent", "proba": 2.9269065748849243e-07} {"commit": "f866c148dbced73ea09751eb00da98091cc69445", "message": "Adding commands that will be in the new i2pcontrol server version\n", "proba": 3.0552726570931554e-07} {"commit": "4df53eb5949c0a03d49a2357a825c7bbe62cafe2", "message": "format\n", "proba": 6.792501517338678e-05} {"commit": "f9f877d1717b153b2781e3a6c75245c0d5a3e57c", "message": "add pre_generate_flowables method\n", "proba": 2.5422957605769625e-06} {"commit": "25f6a42f26a5e1abcc130e5c73dfd72fa24044d0", "message": "trivial: Fix the location of the hardware installed test cache\n", "proba": 9.410950951860286e-07} {"commit": "4957ae37d6b3fd91babc3c0b7795585ae61210c4", "message": "Implement list_children UDF support.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 1.382695558049818e-07} {"commit": "6bf921c73b50708c21179422f89642f294833d40", "message": "Fixed the export test\n\n\nFormer-commit-id: 70224d449574e33a3fbff7b2f224e3096e352160 [formerly 15997de82821cbcaad89c8fd08d5b41a9673af5e]\nFormer-commit-id: 60dd72c02c965d6b35beefb882c5bb0c2cb74bf1", "proba": 6.152852620289195e-06} {"commit": "83f4f55ba81c7ce6c64f479a383a3bbf1fbce715", "message": "PyFBA\n", "proba": 1.9185654309694655e-06} {"commit": "b183a6d222e3260d376be406dd38704450be1adf", "message": "fix bug\n", "proba": 6.400653660421085e-07} {"commit": "aa3d87e5edd6d409a7e65308e1b96149f7cb6bcb", "message": "Add segmentation test for removing border labels when no segments remain.\n", "proba": 1.2560647633108601e-07} {"commit": "4bc4f72907e2865f77059e2bee8daf1a11174d79", "message": "Wrote a generator version of the sampler that I haven't yet tested.\n", "proba": 1.101297542049906e-07} {"commit": "9c7ed842e361cc9a1b2e54e3d92160871f8c2ff9", "message": "Added a comment about the IP that it could be anything.\n", "proba": 1.0523999094402825e-07} {"commit": "9721d589849fe36ed6af36a817def879d834f8d5", "message": "Process for princeton\n", "proba": 5.39850298082456e-05} {"commit": "e398b1ef1dd2046e9f7c152967b31293592b81ba", "message": "doc bug\n", "proba": 6.157380312288296e-07} {"commit": "f777cfa3d03196c6a4718d06c436ca9e3266c83a", "message": "Silence debug-level noise from BitcoinRPC\n", "proba": 1.098654593079118e-06} {"commit": "631e55c8f85ce2daa2302061e6d05a3067acdc60", "message": "add check for format strings\n", "proba": 4.836709308619902e-07} {"commit": "20b99dc61c81ecd409c789f5cdacb77f5f2b3eb7", "message": "Fixed a test\n\n\nFormer-commit-id: 7f039314cda68b306ac8f940550d747b558ea558 [formerly 2c449b8331eab7c711ea4edcb0044da5f3750368]\nFormer-commit-id: fca25038c2168f9d11b3aa25a8e55eb60c7610bd", "proba": 3.165763700962998e-05} {"commit": "35f55df0cbe0501870a019206fb5cf3fd1830d74", "message": "tests: added mean tests\n", "proba": 0.0006300650420598686} {"commit": "312ecafadd06c9d512d23cc5327dbcff322760ab", "message": "Adjust steady times\n", "proba": 1.0391885552962776e-05} {"commit": "154f18253f9da14c37b60d55ea19bea3391e0370", "message": "update code for PyUtil Project\n", "proba": 2.0239083653450507e-07} {"commit": "600f011389c51b24f0be286c42ab35921fe6b943", "message": "Move getting of client ip to function. Support X-Forwarded-For\n", "proba": 2.2915018860203418e-07} {"commit": "a84f1c77c417af15fdb0959b2f314d6902d87d01", "message": "Adding one-off function for populating users with their departments, as defined in departments.json\n", "proba": 4.5733511910839297e-07} {"commit": "ec441eb63a785ad1ab15356f60f812a57a726788", "message": "Refactor the 'pull' subcommand to use DockerComposeExecutor\n\nThe pull subcommand was not working because it depended on an\nunimplemented class DockerManagerFactory.\n", "proba": 0.00014258106239140034} {"commit": "5001b9b4f23136018b23e0040e2415a83d5275af", "message": "Retain child order in m2\n", "proba": 1.963394424819853e-06} {"commit": "41638322d0b3a875c5bb57d5c494cdb459b2e679", "message": "#117 pyddq: adjust expected output to the one produced by Spark 2.0\n", "proba": 9.154364875030296e-07} {"commit": "5d27400b254938d52ecfacfb12b56609687b2522", "message": "load parameters from file\n\nSigned-off-by: Brian Chen <0488230585990a2d3bbca49694fb1318e9ababcf@openrobotics.org>\n", "proba": 1.1265671417959311e-07} {"commit": "a216e59879015dabb0a474cb5d6a6f7767fdfed2", "message": "\n\ngit-svn-id: https://ibm-db.googlecode.com/svn/trunk@159 1b047d87-d943-0410-8e89-5b5f2422cd04\n", "proba": 9.818315902521135e-07} {"commit": "8d4d406c5d15d802df70593ac0ea345a0971956c", "message": "Make evaluate.py running again\n", "proba": 1.341118831987842e-06} {"commit": "a588b5ffb9e35f4498eea8db69854b9c75de533a", "message": "Remove the usage of f-string\n", "proba": 0.9999837875366211} {"commit": "aae3510f87c38732bd899d223a4c50c9454938f4", "message": "typo. addressed issue #1490\n", "proba": 2.7804338969872333e-05} {"commit": "5fa137b15640c8ded84b17eda5b756000a6d4e9f", "message": "Fixed a test\n\n\nFormer-commit-id: 7f039314cda68b306ac8f940550d747b558ea558 [formerly 7f039314cda68b306ac8f940550d747b558ea558 [formerly 2c449b8331eab7c711ea4edcb0044da5f3750368]]\nFormer-commit-id: fca25038c2168f9d11b3aa25a8e55eb60c7610bd\nFormer-commit-id: 20b99dc61c81ecd409c789f5cdacb77f5f2b3eb7", "proba": 2.3106971639208496e-05} {"commit": "8b79737e608ac9a57a47dba6ae48a2e05c2db8e1", "message": "Added simple event phase plot\n", "proba": 1.3753320615705888e-07} {"commit": "88393733adc66c9131eaabf5b38b5188c710e715", "message": "Update to improve testability\n", "proba": 1.676012857387832e-07} {"commit": "5dcab19c8dc22bee083e14cbe529d496e3ec5716", "message": "command center interface to basestation snippet\n", "proba": 3.7221920479169057e-07} {"commit": "d85748a3a5823d1fd46b864e8650c57ff885125e", "message": "fix confusing cluster_spec/test_config\n", "proba": 6.219060651346808e-06} {"commit": "767447e5dffcd11ec8cddecfc403de4d2e0439b9", "message": "Silence noise in regrtest.\n", "proba": 1.385902095307756e-07} {"commit": "83abcd1c0a4b1ecbf494abd9eafbccb8a9d58273", "message": "incremental chain\n", "proba": 4.366555458545918e-06} {"commit": "93da48351c705f72bdec579cdb1b6ea76f68369c", "message": "Deleted old, unused cloud_storage_downloader.py file from pypo\n", "proba": 3.896670932590496e-07} {"commit": "106d70b9f4a895cca0e988a82456c6e72033583f", "message": "modified the wikiwords regex", "proba": 0.0018862842116504908} {"commit": "43187a284a79d4f997f67d1d1e74a03cd53ec283", "message": "Start working on multitenancy\n", "proba": 2.27915521122668e-07} {"commit": "7359954301e131a2b1f326ef391669dbd7562d0d", "message": "Update update_canary_angle script.\n\nMake it search in any output directory.\n\nBug: None\nChange-Id: I4ea3ee70bbf051e534e97a972fcb6bbcb5ceeecc\nReviewed-on: https://chromium-review.googlesource.com/1208512\nReviewed-by: Jamie Madill <7e492b4f1c8458024932de3ba475cbf015424c30@chromium.org>\nCommit-Queue: Jamie Madill <7e492b4f1c8458024932de3ba475cbf015424c30@chromium.org>\n", "proba": 0.0014834948815405369} {"commit": "b603cf484548f93563892d54e9610a6f084215e3", "message": "Fixed major bug where in learning.\n", "proba": 1.0409507922304329e-07} {"commit": "9a2cedbc30639768080a045cd3c6b59b364ad86d", "message": "Fix indentation after merge.\n", "proba": 2.9475930318767496e-07} {"commit": "4a1328cc9828d167fb207d5ccf5b50d3a898ab7e", "message": "added and tried FFT implementation for calc_autocorrelation but did not speed things up\n", "proba": 1.409880638902905e-07} {"commit": "8916376a05246267840cae849bbbefa54e9abd8f", "message": "WIP: use sqlite for the Resource and ResourceUpdate columns\n", "proba": 1.4226129962935374e-07} {"commit": "cad82e8cbf20bd11b32d1e6686983dab3035f5d1", "message": "gui background color handling\n", "proba": 3.290564336566604e-07} {"commit": "0ecbb6b5680fde5be5af6dd96ea08c834b95efc0", "message": "follow the tutorial https://docs.djangoproject.com/en/1.6/intro/tutorial01/\n", "proba": 2.1448796871936793e-07} {"commit": "397b81238d51250ffc302b97e6e830945b4d3459", "message": "Close #14814: Avoid depending on struct by using newer features. Also use enumerate where appropriate (patch by Serhiy Storchaka). Declaring PEP 3144 final at this point - any further changes to code or docs can go in new issues.\n", "proba": 1.0085624069233745e-07} {"commit": "d30dd098b0b268c7350db80f5deaf5ddd05b8627", "message": "Fix unit tests (increasing exptimes)\n", "proba": 8.092501957435161e-07} {"commit": "592823dc7a1811d3261c20b8e3e1ee79c618486c", "message": "FIX: only process 'dead' processes that are still pending in the job queue\n", "proba": 7.919730933281244e-07} {"commit": "a773778f3e2424db84d77f78ac3e9a87395927f4", "message": "update openssl recipe to 1.0.2h\n", "proba": 3.848387564175937e-07} {"commit": "0e9544e5ac34c7434a3b3b52d1c1e2085dd15907", "message": "get links from given URL with HTMLParser\n", "proba": 1.2116657899241545e-06} {"commit": "79c301b87565c4b51c6f52ce1f9444eaa087f5e7", "message": "scripts: Add parameter_validation.h to doc validator\n\nAs the python script doesn't know where the generated source ends up,\nadded a search of the build, dbuild, and release layers dirs. This\ngenerated file contains LOTS of VUIDs.\n\nChange-Id: I767ae2c3af11a0686ee629edb9964b294b5f7e08\n", "proba": 8.954628356150351e-06} {"commit": "ec5b4206fff2058463ee1b335fc04e257865ee53", "message": "Update imagecodecs/__main__.py\n", "proba": 4.9739023779693525e-06} {"commit": "9d27a4d8396057b9ae003adf8bbbb9471112a530", "message": "Faster check for duplicate patents\n", "proba": 1.9981860077677993e-07} {"commit": "ca7076fc4481fb532a7fbfbe0503d57aecfe0ca6", "message": "last minute commit to update counter on oembed links\n", "proba": 1.272124592333057e-07} {"commit": "608cba3b6429b970f8bfd619e66e3dcd283365d6", "message": "Add more comments to the tif directory processing.\n", "proba": 1.0773260328278411e-07} {"commit": "3b07b013f684c486f9a66449c8e8e64f725b2993", "message": "refactor errors handler\n", "proba": 3.074824007853749e-06} {"commit": "962a256ecf69f2c680b3300e79ecc9f79b694f63", "message": "fix app test1 (#1107)\n\n", "proba": 1.3184275360345055e-07} {"commit": "5bfadc8b060666f30272ab428dd190c6e782cd6f", "message": "[] -> ()", "proba": 0.00014043539704289287} {"commit": "476d6f48abdf3cfad15297f7139ca767ece6b491", "message": "Setting FAH generator to remove Hbond restraints (but retain rigidWater)\n", "proba": 1.034001186894784e-07} {"commit": "fedd607cc54c2cc35a705c8e04522fb046cc0f09", "message": "According to Jeffrey Honig, bsd/os 2.0 - 4.0 should be added to the\nlist (of bsd variants that have a different lock structure).\n", "proba": 9.992908189815353e-08} {"commit": "4486fc5952a9224b96cc2a9df6d456f47aa925d8", "message": "Add tests for the behaviour of raw PUBSUB communication.\n", "proba": 1.1379167119685007e-07} {"commit": "5524f7a950c8c4e2bd7131469cbb224153806614", "message": "west: blobs: Add a clean sub-command\n\nThe new \"clean\" blobs sub-command deletes any blobs present on the\nfilesystem.\n\nAlso improve the help text for sub-commands.\n\nSigned-off-by: Carles Cufi <853081dc8dca4fe6a7e3c984752718b5db36e060@nordicsemi.no>\n", "proba": 6.367445621435763e-06} {"commit": "63d87540c7c3219be3e52ef7453d36150e895d1d", "message": "added some comments\n", "proba": 1.3571664680966933e-07} {"commit": "055fe0f9c9ca3b3b994f68ba2c7647763a29f63b", "message": "Changed plot histogram code example and added another one in the API reference (#8351)\n\n* changed plot_histogram code examples to better showcase the different arguments\n\n* run tests\n\n* Removed extra imports and matplotlib inline\n\n* use BasicAer, add comments\n\n* Fixed formatting\n\n* unwrap comments and codes, remove spaces around = in function arguments\n\n* wrapped long line\n\n* Change import order\n\nCo-authored-by: Luciano Bello <47339068f2e5504c23b3616722153604e4de357a@zurich.ibm.com>\n\n* fix typo\n\nCo-authored-by: Luciano Bello <47339068f2e5504c23b3616722153604e4de357a@zurich.ibm.com>\n\n* Simplify second example\n\n* Simplified first example\n\nCo-authored-by: Junye Huang <9d49c012e68a02d216effca40014f680ee8aa58d@gmail.com>\nCo-authored-by: Luciano Bello <47339068f2e5504c23b3616722153604e4de357a@zurich.ibm.com>\nCo-authored-by: mergify[bot] ", "proba": 5.124246058585413e-07} {"commit": "9b8b54b6acf6eb1e874ce5bafb37a82e2d1b2f4d", "message": "removing not needed non-alchemical end states which were resulting in sams errors\n", "proba": 0.00012517675349954516} {"commit": "980a355606c58e5d7a16163d23814600b0cc737b", "message": "Log in required for DELETE endpoints.\n", "proba": 1.311252617597347e-07} {"commit": "a7236723f1a91f9d17da9f4e4e281124126cb57f", "message": "threadbare, fixes issue distinguishing between bytes and strings\n", "proba": 1.8668211509975663e-07} {"commit": "ec5f9b1d2f7db400966d562d5f0038837f91da19", "message": "fix minor bug with account model\n", "proba": 2.4946021426330844e-07} {"commit": "946e6643ac2b544ffdc2c9d457429fc1e618c491", "message": "config passing fix\n", "proba": 7.96927338342357e-07} {"commit": "0cb324c1dcd616d5a943fd7690eba1f3419fb774", "message": "add try for all job_list_lock release\n", "proba": 2.451775458212069e-07} {"commit": "b74fc99b234a15eaeebf04ffa1df9fa0a259b7bc", "message": "Added small case material names, removed the word 'texture' from docstrings!\n", "proba": 1.2896401813122793e-07} {"commit": "af3938ee3fd7933a6dfbe1bb08f317a714592254", "message": "Create SAMSSampler with fixed-size weight arrays\n\nAlso ensure that the target probabilities are normalized, to match the\npaper exactly\n", "proba": 1.1838749003345583e-07} {"commit": "d10c6fa060c0dad9ffd9b19afd135c861cd9a08e", "message": "proper debugging for downloader\n", "proba": 4.361467631497362e-07} {"commit": "92784b1adf4d2eedd0af682e3830e33e314dec33", "message": "don't munge socket timeout\n\ngit-svn-id: 241ade510acee2ba0e5f0bfaec02b997c9a134f7@172 ef99729e-6296-11de-9adf-53a34ab33f75\n", "proba": 1.9347073248354718e-05} {"commit": "8a5bb39bc7c5c9866cad6bbd98eda372daed29cf", "message": "test: fix print tests never being run\n", "proba": 0.00012384062574710697} {"commit": "f4360d8cad032569598217a5a4df9c72f134b42a", "message": "Forgot to include traceback\n\n", "proba": 1.265295850316761e-07} {"commit": "0c6ec2fa0bc390c6ac064fac30e0e19f9f77fbb1", "message": "Further interface refinements.\n", "proba": 1.1348367223718014e-07} {"commit": "8ad29f35f5a0b74b8a8ba07fce04ab8b5439171d", "message": "get nginx clientid\n", "proba": 4.078394510997896e-07} {"commit": "30857e23afe0d7fe514485a80020990fd50aa1cd", "message": "removing repeated lines\n", "proba": 0.0006431447109207511} {"commit": "36827e736ea9378b8d50af908dea0e74d3c7dd5a", "message": "Import cython code in try...except block\n", "proba": 1.2727799969525222e-07} {"commit": "89a0804779a97c52998cc8b36ef6c7bc2deacb28", "message": "Switching to using analytic quadratic interpolation to find peak of CCF\n", "proba": 2.628059405651584e-07} {"commit": "d47ede42d0aeb997b36c22bf86372d6550052cd8", "message": "add: generation of observations\n", "proba": 0.9989169836044312} {"commit": "70b08074491fba0ea9a821d94a79aaf2c11d7c93", "message": "make sure pre_validate method is called\n", "proba": 8.519780863025517e-07} {"commit": "eae2fb3bc590e8068661603d9ecf952f8fad17af", "message": "Throw 404 instead of 500 when saved export is missing\n", "proba": 2.204123461524432e-07} {"commit": "7b927831fcddf4b883f68a90b99733a953b2c3c8", "message": "Fix migration\n", "proba": 6.351652700686827e-06} {"commit": "617419aba217fa49c9a2caf7da27ca8f24a7ccd2", "message": "mzi fix\n", "proba": 3.2252651180897374e-06} {"commit": "912045c10b1914c84f5d0173092e58063fbb79de", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "7b054323c16657bdb4240e0ad1aca230f9dda915", "message": "flowables.py: fix 2.1 breakage\n", "proba": 3.117018536613614e-07} {"commit": "d5007c88b17e50d3da311c0ae38f482b9ecb2707", "message": "Tweak to docs\n", "proba": 4.011238274870266e-07} {"commit": "ce805f501bf1faf478747bdbb5c06760283e216e", "message": "Ensure lists are initialized for sleep pattern graph days\n\nFixed #293\n", "proba": 1.4301286910267663e-07} {"commit": "57f4cfcd4adb420e67ad285b6fab8be3d8da738e", "message": " - added compare.trace in python\n\ngit-svn-id: 41bd7e47c31e4d43f97241d7529f6785d233c6d8@11066 23f926e6-80f1-49ca-85a0-60d4a27bb3ac\n", "proba": 4.330730405399663e-07} {"commit": "e7d9c4758fa8678a8b0d863b1b9d8f2498e7d7f4", "message": "sort of\n", "proba": 9.004601452033967e-05} {"commit": "8090520658360893d5fdc6439f9f6dbf2a0e2653", "message": "Fix list_id with reference\n\nThx to securus\n", "proba": 1.1371866293075072e-07} {"commit": "2d18ad7216f9fda5cbd50579b04815ecc65ac31b", "message": "go away debug print\n", "proba": 1.5281300420610933e-06} {"commit": "9ef783ec96ecef5124034967bd75f6a1af3c2233", "message": "follow route parsing\n", "proba": 5.032542958360864e-06} {"commit": "14d344c23063aaad530b77e84a6225e2065f9ebe", "message": "Fix server port for bluemix\n", "proba": 3.3849181590994704e-07} {"commit": "3e06de2be1a07ba5b04c7d24a50b6ecb4a100b35", "message": "add kfolds6\n", "proba": 0.9998874664306641} {"commit": "4559111c4f757418d5002502f3eda93de5450d92", "message": "Fixed typo.\n", "proba": 3.5226929639975424e-07} {"commit": "4e8536435f72af35f3e15ed6670ec2f6acbd6526", "message": "Fix Pylint.", "proba": 3.1264085009752307e-07} {"commit": "e048d9f6b73994c11b89a072b51f4caf050dcb09", "message": "Fixed mkstemp calls that leaved open files.\n", "proba": 1.0966630270559108e-07} {"commit": "e46aad83ca53b8db3e795fd9801efc1316da4e2d", "message": "sort of3\n", "proba": 1.8185575754614547e-05} {"commit": "4ed763779e808591206b3ffb435a7ecf4063886f", "message": "Fix example in Wav2Vec2 documentation (#10096)\n\n* Fix example in Wav2Vec2 documentation\r\n\r\n* fix style", "proba": 1.484297342813079e-07} {"commit": "c8d00a1478d6a6e427a24b00fd01fed216153e89", "message": "Fix multiple spaces\n", "proba": 0.9999995231628418} {"commit": "a276930206a546bc9beec1b201d14c2ce1be5a0a", "message": "Assert empty author\n", "proba": 0.9999995231628418} {"commit": "9840ef5a3d99a2daaf3e48e6d53bcaf486f3fffe", "message": "fix context_processor error in Wagtail preview\n", "proba": 4.918670697406924e-07} {"commit": "24c6982577f94e4712c9acd6c450546fb4e97a27", "message": "refactor redis cluster.\n", "proba": 2.2523659026774112e-07} {"commit": "097c75f0f716218768119d36e32f9d14d7795f51", "message": " #199 Fixed where_clause to handle empty string title case.\n", "proba": 1.247012875182918e-07} {"commit": "5fcd99a5dd31a6aefd2d0e2f4e746a52239bfdc5", "message": "Adding documentation as per review comment\n", "proba": 1.5230828864787327e-07} {"commit": "021a3fee7460eb57b75a7e31bea940042055ced0", "message": "Add python_display and pause functions.\n", "proba": 1.28756937556318e-07} {"commit": "f7f40080670e955e6df2c5c0fd7c8737aee5028c", "message": "function that adds a field to a recarray\n", "proba": 1.7990835203818278e-06} {"commit": "4e443c9b7e03484817723c5f9eb3c7b2500ac922", "message": "update selenium test\n", "proba": 4.560972683975706e-07} {"commit": "cc90c6c97eb91bd9f4c23ae8baf230784482e8b8", "message": "Add missing HIGHLANDERH_TSS2 engine f/w (#25582)\n\n`EAAUSANG#8056` 2022 Highlander Hybrid DongleID/route 9179d81377e52625|2022-08-27--13-24-33", "proba": 3.5982238841825165e-06} {"commit": "1e8098c140d924adb70167a216837fbf61d85f29", "message": "Camry Fingerprint (#647)\n\n", "proba": 4.1650613979982154e-07} {"commit": "1f731926958be8cd3720dec6233f9afbc3e509ed", "message": "Add 2021 Toyoto Corolla Cross Non-Hybrid (Thailand version) (#23123)\n\n", "proba": 1.0984193465901626e-07} {"commit": "1873d8107ac8cf4258440914d68f12332220e244", "message": "Fix formatting on test_evaluator\n\nChange-Id: Idcd77a570b19f1b022a74d67fa8253d922dadc67\n", "proba": 0.9997121691703796} {"commit": "93ac6290e54081abb35ffb3b620866de83c66e99", "message": "Re #12573: Move a previously skipped test to webdriver, so it works again\n", "proba": 1.1105196051630628e-07} {"commit": "d8089fb94e9ad1ab54bc3baf1acbb430b305f612", "message": "Add video for 2020 Lexus ES Hybrid\n", "proba": 1.4612213306008925e-07} {"commit": "823774cb8be08e7c2e2d91cf48c34e5a48889b7d", "message": "Fix bugs Gran premio\n\nListas las modificaciones de GP\n", "proba": 1.9890687781298766e-06} {"commit": "8bd98b2f4fb389b63a9c468925054cb070819a71", "message": "TWEB-116, fix first page display error teacher level.\n", "proba": 1.0039867959221738e-07} {"commit": "11df74c8edcf081afb17313d751067b231495750", "message": "Skip the tests until we improve integration tests setup.\n", "proba": 1.1727321691523684e-07} {"commit": "1d41d3e36173dfe6206d62430b48adc26d638546", "message": "Add missing LEXUS_RXH_TSS2 engine & ESP f/w (#24647)\n\n`AiNzo0alGowN_#8859` 2020 RX450 HL DongleID/route f6e6302176e041de|2022-05-24--13-48-18", "proba": 3.5119120411764015e-07} {"commit": "16e4eb158b4d3d7d8aef22f08a9965f838d4fcf1", "message": "\u66f4\u6b63\u51fd\u6570\u53c2\u6570\n", "proba": 2.8510880838439334e-06} {"commit": "cb8ee417037b0ed89811691857845f36072243c3", "message": "Finish docstring from imap_utf7.decode\n", "proba": 6.947876499907579e-06} {"commit": "8179b6705cf344a4c20ccd65a55ed80401830645", "message": "TWEB-97, fix a rare problem, it caused by modify user information manual.\n", "proba": 9.890380425758849e-08} {"commit": "b56bf8dc6cf42205538ecf731ab018327a259040", "message": "cx_Freeze support\n\nReference: http://cx-freeze.readthedocs.org/en/latest/faq.html#using-data-files\n", "proba": 1.8711952520789055e-07} {"commit": "c85dd5f7c3cb675aa833d3bb17d2cef5620b00d3", "message": "workaround git submodules not having their own .git directory which confuses docker...\n", "proba": 1.0795228178039906e-07} {"commit": "c96bc0d83a665a434782da78e2ce36519c80bf37", "message": "have all top level functions same signature\n", "proba": 2.928893536591204e-06} {"commit": "13d7d50877609b3b57726f9eef1ffe694b988ce6", "message": "Delete useless return statement\n\nChange-Id: I1330f075ee4d324ae7c13191626c6ba66282454f\n", "proba": 0.9995242357254028} {"commit": "e512176510e972f3cc22391d56d6dd3286391743", "message": "\u5185\u7f6e\u7c7b\u5c5e\u6027\u8c03\u7528\n", "proba": 2.472214362114755e-07} {"commit": "840f3ef649053ad0c971afd5558ab45a39b6d11d", "message": "THRIFT-3340 Python: enable json tests again\n\nThis closed #613\n", "proba": 1.47248243820286e-07} {"commit": "3c58fba4457f76947fc37c4a972209b24ffff531", "message": "vote filters 2\n", "proba": 1.4120375624315784e-07} {"commit": "2c7e251ef276582a08387a734d36a8a924f22c99", "message": "server/upload-health.py: factorize code with upload.py and hardware\n", "proba": 6.052399612599402e-07} {"commit": "8e49bcc064eb2102227b12468ec74322c130f915", "message": "Resource path sep fix again\n\n--HG--\nextra : convert_revision : svn%3A14d46d22-621c-0410-bb3d-6f67920f7d95/trunk%402386\n", "proba": 5.014855446461297e-07} {"commit": "e5b5488c9afb37947c6d45eba441d5406f2a9620", "message": "Labirint \u0434\u043e\u0434\u0435\u043b\u0430\u043b \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u0433\u0435\u043d\u0435\u0440\u0430\u0442\u043e\u0440. \u043d\u0430\u0434\u043e \u043a\u043e\u0440\u0438\u0434\u043e\u0440\u044b \u0434\u0435\u043b\u0430\u0442\u044c.\n", "proba": 2.2937450694371364e-07} {"commit": "f8c9f01a0af0d3dbdb488c576b98d90627c5d54f", "message": "Style tweaks for hass monitor\n\n* renamed monitor class for consistency with others\n* updated class doc and fixed a typo\n* added get_params(), which needs to be overriden for loggers\n", "proba": 1.1950504585911403e-07} {"commit": "c3b688b56502c7068d5697cbf4d29bb37f233bac", "message": "Having now variable ticklabels for the time-axis in case of zooming, generalized the colors for the plots, fixed the size of the mouseover label.\n", "proba": 1.0024961483168227e-07} {"commit": "1dfa543c2f0eac1d3deb8a46f14a71f8e44836b8", "message": "load officeurls for current pols\n", "proba": 1.2372046853670327e-07} {"commit": "4bdf10bc789261e9d7e0569070f92906ac4c12d1", "message": "Catch ECONNABORTED and raise wrapped in emulcomm\n\nSee SeattleTestbed/repy_v2#93 for details and an initial patch.\nWhen an `ECONNABORTED` error is encountered from a socket during\n`accept`, pretend the socket would block. When encountered during\n`connect`, pretend the remote side refused the connection.\n", "proba": 1.1219546536267444e-07} {"commit": "f8836e450ca04580792c9c655565e568bba0bb9a", "message": "hexagon example\n", "proba": 3.0989372135081794e-06} {"commit": "bf031bd5c4f2bfb75976c616dd9cbadb8bf2147d", "message": "Fix evaluate message\n", "proba": 1.3881233371648705e-06} {"commit": "405f691308c9c7aaac4220e74471ad9493cac691", "message": "Add operators and values to DataField resource\n", "proba": 2.5140190018646535e-07} {"commit": "794a5b56ad0349139f4509c6ebd8c1c5196d6dab", "message": "Some notes.\n", "proba": 1.4285379279499466e-07} {"commit": "081c03038eae040a73f5ca483d42989ac14dc196", "message": "Bump version to 1.26\n", "proba": 1.4502234080282506e-07} {"commit": "69946319d6383bdd326375943b8c27240697d6bd", "message": "test loss_category field\n\n\nFormer-commit-id: c7e57fd347ffe6b292c831060587d083c222a13c [formerly c7e57fd347ffe6b292c831060587d083c222a13c [formerly 0f1aef04228ec78d66bb265835f84fdcad0e2ded]]\nFormer-commit-id: 22112c31fc2f6d9e14e04737f8a993bf5b95bc73\nFormer-commit-id: b0b73055858bb70943a0b99a71f6a6063d32be8c", "proba": 3.09959932565107e-06} {"commit": "5122fcfec56027f6cec868c9254b40bb73833674", "message": "Fixing incorrect min/max-values in the diagram if having multiple stations selected.\n", "proba": 1.1288847900914334e-07} {"commit": "9ddad1708d2992dd74ca321d505377351bd419ee", "message": "Refine database transaction instrumentation.\n\nConfusingly, the `after_transaction_create` event only fires after a database\nflush, and not after a normal database transaction `BEGIN`. This means that if\nyou do something like\n\n```\nwith session_scope() as db_session:\n a = db_session.query(Account).get(account_id) # <- \"BEGIN\" is issued here\n gevent.sleep(22) # or go do something else\n db_session.commit() # <- \"COMMIT\" is issued here\n```\n\nthe 22-second lifetime of the underlying database transaction will not actually\nbe captured by the after_transaction_create / after_transaction_end events.\n\nSo use the `after_begin` / `after_commit` / `after_rollback` events instead.\n", "proba": 1.1750892099371413e-06} {"commit": "16c5f8ad015a8ca926cfd29f060b9131fa36c0a6", "message": "Update tflite_transfer_converter.py", "proba": 5.716661348742491e-07} {"commit": "ee63286849fed2c9bfda24c3ed03e71ff3337828", "message": "handle square brackets as cell labels\n", "proba": 1.172944052996172e-06} {"commit": "1eb0cd5b5ac752189d011700971c16ebc072f27f", "message": "evaluation: moved tracking of t_idle and t_active to the adaptive tree\n", "proba": 2.3393577919250674e-07} {"commit": "9405af01340eae19eb8a686092bda83f6c86a550", "message": "fast git\n", "proba": 4.093681695849227e-07} {"commit": "a4648450c1d66c9387d7d3f69abaf0e5bd776663", "message": "Fix delivery group rendering in choice list\n", "proba": 2.2328831619233824e-06} {"commit": "60fec6dc6199014dacc9187246644edff9ef96ba", "message": "Tidy up ifs.\n", "proba": 2.325376499356935e-06} {"commit": "5774ea0bf036ffc39a1cc2ae62d6afd0c03d4862", "message": "Add few new examples\n", "proba": 1.6255629589068121e-06} {"commit": "77bee4b8b9e7dbadf02e5aafd2661e60713a1742", "message": "Since salt now uses a queue dispatcher, there's no need to advise users to use raven's threaded transport.\n", "proba": 1.1239894348591406e-07} {"commit": "a8f4fd589a8e048cd76ae8a2365f145522d4eae0", "message": "Add listing and creating database places.\n", "proba": 1.1417616008202458e-07} {"commit": "9b0b8a5dea8e4dfd7503884d2980ac80af0efd2c", "message": "Print reason for traceback. Sorta useful..\n", "proba": 1.303373124983409e-07} {"commit": "6accceb87e37e6a1521876e8507c34e7f30a6fdf", "message": "Test parsing large scores\n", "proba": 9.179332778330718e-07} {"commit": "942ced319af2dfcc4ee2f7b01f2a1679bfc19f35", "message": "Capitalise URI/URL in comments\n", "proba": 0.00180446810554713} {"commit": "007cbde17402966616f34299c5bc4b1e7c1d2eb4", "message": "MegaRAID Plugin: Remove 'Other Error Count' check on disk status.\n\n* 'Other Error Count' will increase when converted from/to JBOD disk,\n hence remove it from disk status check.\n\nSigned-off-by: Gris Ge \n", "proba": 1.2236773727636319e-07} {"commit": "4d92dcfc83a10b0fb112abfe342ebba7d13aab93", "message": "Remove deprecated class. Its main functions were removed in #211.\n", "proba": 1.0631229230284589e-07} {"commit": "80302552be95ec6abbfda493a20fd622e1d55a0d", "message": "chore: update settings template\n", "proba": 1.550637898617424e-05} {"commit": "384ced70fd27de2ee65c3480133cc89b09f23da4", "message": "Commented OneOrMore lens and fixed infinite loop prob in GET\n", "proba": 1.1437908398193031e-07} {"commit": "1b685252146aec3345adb7d2dec6d9f3173db678", "message": "Template panel: One letter variable names are bad practice, changed to use some more informative variable names.\n\nSigned-off-by: Rob Hudson <7e09c9d3e96378bf549fc283fd6e1e5b7014cc33@cogit8.org>\n", "proba": 1.1606556427068426e-07} {"commit": "37af96951189743f2ba2ad2ded25a51b36a5104d", "message": "Handle % in variables subdicts of variables dicts.\nReview URL: http://codereview.chromium.org/160595", "proba": 1.3767598261438252e-07} {"commit": "4c842004b777ae4d2636b816ec9848099328b4be", "message": "Use self._site_tolerance. Fixes #438.\n\n\nFormer-commit-id: 8c8f26eefc2517103bde69a85a2509d7de3565e2 [formerly 6d07ebcb8f1ad1f842e4a6ab9fccf56465a6e07b]\nFormer-commit-id: 70003ff93dc42bc4331d3cc04dba93340dd43505", "proba": 2.034929821093101e-06} {"commit": "0ebaae031e97be062805deb2d5983760c2fefc19", "message": "fix check\n", "proba": 5.701014060832676e-07} {"commit": "59c66387585e998738faafc6a8ce15b3e8461834", "message": "added option to specify temperature threshold from CLI\n", "proba": 2.456503125358722e-07} {"commit": "6cf71c0f0dc27b00c3e3d328bc8f72a1bf70ecd2", "message": "Azimuth & Shading notes\n", "proba": 1.2510365365869802e-07} {"commit": "a50fe112e1f8db381582e4843b63ff68a309f767", "message": "PM-18: Destroy the ZMQ context on exit\n", "proba": 1.8262913670241687e-07} {"commit": "e4c5555a4272b0051470d876b22b1ef07035dc32", "message": "Reset module docstring if ESMF is not installed.\n", "proba": 1.15225169849964e-07} {"commit": "a381f3330269b55c0dd1a0cc2386feaa3ae6d5c2", "message": "Optimise Query results\n\nUses the new API: GET /values\nCould be optimized even more by sending the response directly to the GUI\n", "proba": 1.8522135860621347e-06} {"commit": "d90184edfd17e18c9f0405f7c5d292b7d1ef87a3", "message": "Redo command listing system\n", "proba": 2.8497078119471553e-07} {"commit": "2e390e0358f4823aa5a50ceeac43879a9cecd2aa", "message": "Documentation\n", "proba": 6.194427442096639e-07} {"commit": "e3cd03baf6e3731324e9c112ea2195ace819a90d", "message": "EpicsSignal + EpicsSignalRO changes\n", "proba": 1.8117093247838056e-07} {"commit": "a8c166e92f241f8b828757c134523e9042323b2a", "message": "model: fix docstrings\n", "proba": 3.718152947840281e-05} {"commit": "107265ef197b9846402a30414582c27aaff370ce", "message": "Under no circumstances should this ever be allowed to 500", "proba": 8.276585867861286e-05} {"commit": "829655e310d5d604dda062045a783074a657ccc3", "message": "Jinja loader associated to the application, instead of Pynuts instance\n\nSigned-off-by: Balthazar Rouberol \n", "proba": 1.0979145770306786e-07} {"commit": "355988f8cfa6d2d86fbdb7993fa6823943ca23c6", "message": "* test fix\n", "proba": 1.6727634033486538e-07} {"commit": "9e4feda4e4fa3e9011120809196a686a7f6bd2b5", "message": "Remove unused `valid_id` in `judge/views/register.py`\n", "proba": 1.2573111973779305e-07} {"commit": "c797fb49b98eae72ea910119bfc0feb8243fafbd", "message": "Add messages for archives\n", "proba": 2.2479196104541188e-07} {"commit": "7465ed1d0766658ab27b398c94456fa3b3b35899", "message": "added unexpected error for irods tasks\n", "proba": 1.8572107762793166e-07} {"commit": "8c7cf4f40171197bff5c978c23f0ea354670f926", "message": "TST Reset all hooks in task_reset\n\nThis ensures less contamination in the system\n", "proba": 1.719225934948554e-07} {"commit": "eac546968032b924ce20725ce5d804499cd1537a", "message": "bug fixes & clarity in reinforcement schedules\n", "proba": 1.2691145911958301e-07} {"commit": "dc325b2b49e7c1e26e6ddcd171236f5e12b80e5e", "message": "set min_compress_len\n", "proba": 6.0248519730521366e-05} {"commit": "02abac6610d70781ee9be1a1f10377b7b04bfd0a", "message": "Use context managers to reliably close files\n", "proba": 8.979786798590794e-07} {"commit": "fb2ff3e48272446d3d4691a2d2a89b474efa49cb", "message": "Run dfsadmin -refreshNodes when (de)registering slaves\n", "proba": 2.71608968205328e-07} {"commit": "6cc434c86528517597ab49dd7eb79a4d4f28c662", "message": "Add find_all_valid_decks function to scan the blockchain for valid decks.\n", "proba": 1.341746553862322e-07} {"commit": "8eb36ed255107ebfa7184a98c446aba6652963af", "message": "Trafficserver lint\n", "proba": 5.953203867647971e-07} {"commit": "e92b3a22f9094a174cf84c29cb00043f4829ae69", "message": "Update ez_setup.py.\n", "proba": 1.5455077573278686e-07} {"commit": "c292d0b8dde787297f1cba9cb2dd027d444f7aaf", "message": "Bumped version to 0.11.1\n", "proba": 3.3305539091088576e-06} {"commit": "e63df2bff9a17e0c9efc9dc39e9c4f08decaa4d9", "message": "Allow Unicode strings as properties' default.\n", "proba": 1.220332705997862e-07} {"commit": "c3f60dcdeae27edd996d33c558b060285abba32c", "message": "Use inheritance rather than ifs\n", "proba": 2.4570706500526285e-06} {"commit": "65fa3177a9122994c6ac68fa3b7e2259699eddfe", "message": "\u547d\u4ee4\u884c\u5de5\u5177\u7684 -s, --style \u53c2\u6570\u7684\u503c\u517c\u5bb9\u65e7\u7248\u672c\u7684\u53d6\u503c\n", "proba": 2.162953904871756e-07} {"commit": "ed9248f6c5d3114279dc8d90ca1f0676d290a648", "message": "version pyproj 3.3rc0\n", "proba": 3.131522987587232e-07} {"commit": "e83a68f5cdbd9e8beb33dc677ac01a2bd5d24aac", "message": "mpi temporal low pass filter during aps correction\n", "proba": 1.9216990665427147e-07} {"commit": "11de5d4fbeb24989424de1e3b0d260104a6e9ea1", "message": "Fixed apidoc build\n\nConflicts:\n\n\tsetup/apidoc/gen_toc.py\n", "proba": 3.841149407435296e-07} {"commit": "a0be990595c669bbf7952e31802dae7e859e1ac9", "message": "[drivers.ID.getGammaImages] excluded files with extension .sh\n", "proba": 2.2646408126547612e-07} {"commit": "a1d15a5773be4300a1e588526f2e6bde4ad8de59", "message": "refactor PR commit\n", "proba": 8.984633313957602e-05} {"commit": "78f6492763b6dd6fee5552dc19eb2b4641cf20c1", "message": "making the doc test more general so that it passes on other computers", "proba": 7.50866377074999e-07} {"commit": "0b24d0f5d6f06a707a0e58f5e55467cd9859db5f", "message": "Fix pbc.df data format compatibility issue\n", "proba": 4.507289759203559e-07} {"commit": "f43751f43134069bd37c4b3c6a4b2c827a96ec4d", "message": "Optimize memory usage in pbc GDF initialization\n", "proba": 1.3463843515637564e-06} {"commit": "f9f4439fa65b3498a8c4c2a894015c3ce70e12fa", "message": "fixed a bug in Pysensu.__init__(): it was checking if port is not empty instead of password", "proba": 4.136570169066545e-06} {"commit": "fd8e7262f20fc8e76d0f24fa8a3384dc297cb204", "message": "Bump version.\n", "proba": 1.5077837645094405e-07} {"commit": "da9a01f30bfeb3df0a75bdaec4762e90c79ad5e5", "message": "* loadMissingModule() added\n* excessive exceptions reduced\n", "proba": 1.519548646911062e-07} {"commit": "a8e55a8b2578da8a4ccc76a3574d77aaf9899ec2", "message": "Add folder detail function\n", "proba": 9.756896588442032e-07} {"commit": "28faa4fcf62d526aacbc00bbefee3909a3a3b498", "message": "remove chunkoff, which is not used\n", "proba": 2.75043447572898e-07} {"commit": "6fa361c5de9e66629dfa97ce7460e9589bec2470", "message": "added route\n", "proba": 3.0774330639360414e-07} {"commit": "bd2010d49237c38b103a1228de77c2643919bec2", "message": "Delete distance_calculation.py", "proba": 7.695697422605008e-05} {"commit": "6f7b1562a0a4e69391696ec6297d6e668fb13857", "message": "Update Nomina schema\n\nSigned-off-by: Oscar \n", "proba": 1.137492517955252e-07} {"commit": "6e09b3bd8ff035b7d985b83a0dca18c6dc3154ff", "message": "Removed extra assignment.\n", "proba": 1.3230287265741936e-07} {"commit": "688a9a3712475ab9b71177c14063dd15c7c5ae5f", "message": "Switch formatting of gsr endpoint\n", "proba": 2.6588404011818056e-07} {"commit": "6a4551dbb021480dce59ae15232f269cb43de628", "message": "updates to allframe.py\n", "proba": 2.5665144676167984e-07} {"commit": "3bd4ea14d1989d1c62d2d6ccb475d44550878431", "message": "Add miRTarBase and LncRNAWiki to the list of expert databases\n", "proba": 1.252543171403886e-07} {"commit": "043848ab9712206293d5f4d3e71c106bc9ee7805", "message": "Selenium test fix (to get tests running, not passing yet)\n", "proba": 1.1372451780289339e-07} {"commit": "482dba24bb316c7d86a008898f458390883e8565", "message": "Simplify the generated env\n", "proba": 0.0019147469429299235} {"commit": "ecdd66090053823feed1cf4b771f789263cf7cff", "message": "idautils.py: Added Threads() iterator to enum threads", "proba": 1.719465245741958e-07} {"commit": "4bf40e296cd2996c5e00b8bb2e77994f65137d72", "message": "Playing with extracting info from pdbs\n", "proba": 1.3340145699203276e-07} {"commit": "7bc8dae4c127e74c8dcfed2adfb2df4354e7bbf0", "message": "Data are represented by a semantic network, with users, posts, comments as nodes and directed and labeled edges\n", "proba": 1.6264765179130336e-07} {"commit": "8ad26f0d0523baf1d7297426451c05e05f24217f", "message": "DEP: Disable sparse inplace DeprecationWarnings for Numpy < 1.10.\n\nI'm not sure that this is __numpy_ufunc__ dependent, but I suspect\nso.\n", "proba": 2.2172791602770303e-07} {"commit": "462bc82fd1c7729ebadd29b59d66e173b8f30f6c", "message": "Modified the auto assignment for p2cif so that it should work with QE\nbetter\n", "proba": 1.8166522863793944e-07} {"commit": "7723be31309609f2fb9886d8501ba8b466758d1d", "message": "SAVEPOINT\n", "proba": 6.313388439593837e-06} {"commit": "2a0c0a2349d69c2026e5e9b58b865e4822e043a7", "message": "update short-stock\n", "proba": 3.5299032674629416e-07} {"commit": "c8cda539ba4d5722f42551dcee109ed742bd62dd", "message": "Do not ignore CARD_SUMMARY transaction in the coming operation\n", "proba": 3.750556061277166e-06} {"commit": "994e0d023b572e8f5de71aebed17259aa968ff0c", "message": "MAINT: remove unnecessary import\n", "proba": 2.365821273997426e-06} {"commit": "aafdcae82a90c58d55066e4ef5deccc009854de9", "message": "default to sending 3 messages per command\n", "proba": 2.96944534738941e-07} {"commit": "129009865b1b45d6e7a9f5868c0a06ea360dc796", "message": "chore: remove wanted method from comments.\n", "proba": 1.2133837401506753e-07} {"commit": "86cbd9c80830622708667abbce9d3c6a54ece072", "message": "1st version\n", "proba": 1.3440927659758017e-07} {"commit": "0d73fa8629e28710a92434053c1bbf75b4da3ad4", "message": "Remove redundant \"less \" check\n", "proba": 0.9992573857307434} {"commit": "16f1836babea1d6942b5f63e257865a8c01aedd1", "message": "xy2tradfri utility function\n", "proba": 5.00878422826645e-06} {"commit": "23b8144d3570ffd17e3480ded0305397c1e00bcc", "message": "TST: stats: add a test for the tie-handling of spearmanr (and tweak some code for readability)\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@6816 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 2.0770548871951178e-06} {"commit": "b0102261e4247755c0cd6bb253f190452941e834", "message": "- create a separate site_address join table\n\n", "proba": 1.8844131943751563e-07} {"commit": "dab452fa5adf9027efde9fb8fefe48637231ace3", "message": "Link to udev page in module docstring\n", "proba": 2.5994637553594657e-07} {"commit": "6f0874d86a00e9af24555463034ab57c11f3a7cf", "message": "taskrun authorization unit tests: delete\n", "proba": 2.177363603550475e-05} {"commit": "cb01b57e9078f954470819bb2111a80aadd3620f", "message": "TST: stats: add a test for the tie-handling of spearmanr (and tweak some code for readability)\n", "proba": 1.0324876598133415e-07} {"commit": "bab7029e3462b32cc3ea7d7617394170e290d637", "message": "Bump version to 0.0.2\n", "proba": 9.117405852521188e-07} {"commit": "bfbe46e288d32d85bfdff2ce1daa08ab4d5ec36a", "message": "Making antenna_diameters the right sizes\n\n", "proba": 3.111568003077991e-05} {"commit": "e862f689e603495d5fb61856457882fee33d7941", "message": "Add new tests for AutoIncrementField.\n", "proba": 1.1741533967324358e-07} {"commit": "5a8ab50d9e91ec046e670ae1bd7f07831b697ac3", "message": "Update MarySpeech.py\n\nenriched", "proba": 3.11616247472557e-07} {"commit": "83a4cc03969bf059f1279e7767871a9d6c819ac2", "message": "reference for cron\n", "proba": 2.0278999102174566e-07} {"commit": "65ebd0347fbf37c8d91f193f5baa19eed53c0d6c", "message": "Start working on methods to compress and inflate UVData objects over redundant baselines\n", "proba": 1.3336635618088621e-07} {"commit": "61e5d9221272006b9e5d8b9dc13aa66eb859eb0b", "message": "added index service to DBService HTTP service\n", "proba": 2.004174888270427e-07} {"commit": "5814e468e74ed39d4c760368224bbeb4d73e0ea5", "message": "Removed pdb\n", "proba": 3.594769566461764e-07} {"commit": "2b17b7b39a9190b781bdeebd233a2fe52fa91559", "message": "Update chara DATA\n\n\u30fb\u30ad\u30e3\u30e9\u540d\u306e\u4fee\u6b63\r\n\u30fb\u30a2\u30e9\u30ca\u30f3\u306e\u8ffd\u52a0", "proba": 1.607625677024771e-07} {"commit": "9b37bf80b95cecd304b722c8756292af31e454e8", "message": "Fix ask_question\n", "proba": 0.9999970197677612} {"commit": "07ccbe5cbd5ee44150a68b75ec4488ddefe49374", "message": "reporting compatibility changes (if any)\n", "proba": 1.6311786055211996e-07} {"commit": "7e5b62c3beaa358a91cb1bce87682e2f86d2d3bb", "message": "change bot status page to Wikipedia:Bot/Status (bugfix #2982162)\n\ngit-svn-id: 9a050473c2aca1e14f53d73349e19b938c2cf203@8055 6a7f98fc-eeb0-4dc1-a6e2-c2c589a08aa6\n", "proba": 2.4641879008413525e-06} {"commit": "f85ed684a33d6d4ecfd5af8a5ba57c1fb8c130a1", "message": "Extract MethodSpecializer\n", "proba": 6.672875088042929e-07} {"commit": "b5c823477ee711a5b41840b81f915a57925d282b", "message": "Remove unnecessary processor dict lookup\n", "proba": 9.281372399527754e-07} {"commit": "0fd352821e0c77253445510cbe867df69d726e68", "message": "Direct test for redhat.rpm_expand_cmd at the function itself (#627)\n\nThis test only applies to rpm_expand_cmd - if they RPM python module\r\nis installed, that will be used instead, which makes this test break\r\non those systems (when %fedora doesn't expand to 27).\r\n\r\nIf we want to cover redhat.rpm_expand or redhat.rpm_expand_py, we\r\nshould devise a different approach.", "proba": 1.469160935130276e-07} {"commit": "8d52c4b3b310bd77c80e47f67b83578b243fc537", "message": "Fix indentation errors in item update logic\n\nfixes #137\n", "proba": 2.779776195893646e-07} {"commit": "7dec80112fe34a9f348ffc5925bdd6e0f23d242f", "message": "Remove hard index into extensions\n", "proba": 1.939116145877051e-06} {"commit": "7bf8cbb53e32b795cdddf5d9df7d92647cd14677", "message": "Rename content processors\n", "proba": 3.860065044136718e-05} {"commit": "eeca3b76d3e1a44a694de3eff1bd1105eb5f7203", "message": "return_sequence at Tensor\n", "proba": 0.00011444157280493528} {"commit": "ca479397be1756841f17ca4d1eefc5bd3b99eb62", "message": "SDK-51: change ebs_volume_type options to 'standard' and 'gp2'. Pull Request #126.\n", "proba": 1.0224616175946721e-07} {"commit": "cf8b2c9587af321ac5ef4cd91d247344e1ddbcc0", "message": "Ensure projected_data_dict_corrected is created when ro_correction is provided (bugfix)\n", "proba": 1.213528406651676e-07} {"commit": "adf54d3332767131191f26791e972672de5c5f15", "message": "refs sfm_155. Allows not using warcprox. refs sfm_168. Only send web harvest start message when there are urls.\n", "proba": 1.0435470443326267e-07} {"commit": "ab23ca37aa9320f63bf04c8643b088f5cc3f69db", "message": "bumped version to 1.10\n", "proba": 1.9772998882672255e-07} {"commit": "3f2194e0795833d1512100e811f241055ee47aa6", "message": "Use Unicode for varchar.\n", "proba": 2.621935948354803e-07} {"commit": "bee943c130c1e8da1e42cd9e3984d4467a730702", "message": "4797 modify script not to check if branch exists before attempting to pull it\n", "proba": 1.1267304955708823e-07} {"commit": "014b555db12f37e715ba837f0c6d6df15b0d0b16", "message": "Resolves #49 - error messages for invalid json format are now more descriptive\n", "proba": 1.0250489168583954e-07} {"commit": "f8b812e3a64f01e81b2773e964745d3b637930b8", "message": "Fixed bug in group_assignments from last commit\n", "proba": 1.9737917966722307e-07} {"commit": "517633c10170077da15b402098fbaec9f8866c85", "message": "scripts: sanitylib.py: add exception check for psutil\n\nAdd exception check for psutil when running CI with QEMU.\n\nSigned-off-by: Wentong Wu \n", "proba": 1.3260388698199677e-07} {"commit": "d064fb56476de2280b7d74b0ff9da06956a9d18a", "message": "Fix the bug in constructing the all_hidden_states of DeBERTa v2 (#10466)\n\n* fix all_hidden_states\r\n\r\n* use output_states instead of next_kv", "proba": 1.4707801483382354e-06} {"commit": "cd37b778556a57b232c9802ce6ef591f18720278", "message": "Change definition of SNR to dist(m1,m2)/mean(std1, std2)\n\n- For consistency with previous code.\n", "proba": 1.3911619589634938e-07} {"commit": "8ae67bd351c470ea9ee74a209ff6d9f486025660", "message": "Clean up metadata output.\n", "proba": 0.00042401571408845484} {"commit": "48d4f22132b2c26e86d64962b930a6a84e7dd06d", "message": "fixed help message\n", "proba": 2.6044489231935586e-07} {"commit": "297fa220743cf50f9feaee49ec8c76b51495cf40", "message": "fix NameError\n", "proba": 3.4682218483794713e-06} {"commit": "1e5cb54273acc98361301903d34f16a7d76057b1", "message": "restful.modelrestview: Commented out some code that should not be used anymore.\n", "proba": 9.977576809205857e-08} {"commit": "2d8a8094ed1724e4727da946c06d240a44782dbd", "message": "qmemman: add some comments about new condition for failing request\n\nQubesOS/qubes-issues#1136\n", "proba": 1.380878273948838e-07} {"commit": "35b449f4c6ae69016eb4ca16a67769a5cff1f877", "message": "Typo fix in attentions.py\n\nPiperOrigin-RevId: 474446571\n", "proba": 2.5989604068854533e-07} {"commit": "bf5ac1c951f275bce46e397551f27494df2111f6", "message": "test: fix call to stop osbuild-local-worker.socket\n\nThe test setup should only stop the osbuild-local-worker socket if the\ndistro is fedora 32 or 33.\n", "proba": 3.210312797818915e-07} {"commit": "3e182e934a88e890796f20a36c988f7d63cb5125", "message": "update script to have warning\n\nSigned-off-by: Terence Parr <275b89323d950c58c02f5ad8c33bac7ecb40d004@antlr.org>\n", "proba": 1.1394011778520508e-07} {"commit": "8af056eab85c739f9eaf5deb5602d859aef7ce04", "message": "Change the check run results to be passed / failed\n", "proba": 5.550747346205753e-07} {"commit": "d1dd5f924ef177ee5edcbd0bb8166d93a8a55dc0", "message": "parse JMulTi VAR output\n", "proba": 0.9999768733978271} {"commit": "cad65a2491f9831e517e2ff8d0f861250c4c5892", "message": "An identifier of 0 is allowed\n", "proba": 0.00014129476039670408} {"commit": "b11e4927a0c4cf238f962b666fb74e5ef9d6a87c", "message": "add: test for initial_best of ModelCheckpoint", "proba": 3.175175606884295e-07} {"commit": "2aaaa620955716e5f1f9b79746993068b0723433", "message": "tda: corrected merge bugs\n", "proba": 2.7882745143870125e-06} {"commit": "24eadfbb5fc9c40ec697c1be004ea01b148041d0", "message": "send again even if in queue\n", "proba": 3.367306362633826e-07} {"commit": "7491ddf8a30ce1fdb1b13af267b166bea532978d", "message": "quick bug fix\n", "proba": 3.225881926027796e-07} {"commit": "61b73adcb303c0dbe7ae344e36a1a7e2c09837f3", "message": "refine anal on new dir struc using h5\n", "proba": 8.014079639906413e-07} {"commit": "5e1f55b6113b3ebc0bf5e49a955d935ed8c96ffb", "message": "typo.\n", "proba": 4.4078798964619637e-05} {"commit": "109219d3fe75bea515c2b30f4cf8961080defd86", "message": "Update callbacks_test.py", "proba": 2.5389567781530786e-06} {"commit": "0a8e7c0b5c9c2420f569ce372b91547919b69278", "message": "add multiple-sequence discrete geweke test\n", "proba": 0.9999953508377075} {"commit": "84a6262c1b856e2b3f5aef82ccdf5a5acf8e39bf", "message": "Update Pomash.py\n", "proba": 4.52364076863887e-07} {"commit": "472007a16eee19cc70e641f5d7b9030f4573c381", "message": "Changed range for slinky.\n", "proba": 1.2069460808561416e-07} {"commit": "86776d686e96dc3b28945d08611ef041b1ab7263", "message": "Abort running if configuration file has not been modified from example\n\nSigned-off-by: Nicolas Iooss \n", "proba": 1.19273920518026e-07} {"commit": "9aafee4e4afd1a297615b085bf344b65c9f76ce1", "message": "- Bug Fixes\n", "proba": 1.2154383455253992e-07} {"commit": "a6e13a946e0f06276c6de4f1915e448b8f4a6eb5", "message": "Search view super user cabality and visibility of private resource is added\n", "proba": 1.2002931271126727e-07} {"commit": "447cce46aa4f5768bb417afc0cc8db8d957c23fb", "message": "[bugfix] incorrect parsing of \"setxkbmap -query\"\n\nThe setxkbmap method assumes that the layout appears at the end of the\n\"setxkbmap -query\" command, which is not always true (e.g. options\ndefined with \"setxkbmap -option\" may appear after the layout).\n\nThe module has been modified so it uses a regular expression for\nparsing.\n", "proba": 1.9429872111231816e-07} {"commit": "7562ca7bdd121b79e72a051491d3bf4de00e7fae", "message": "CPhaseLeakageAnalysis: remove absolute value in population loss calculation\nAfter this change, a negative population loss would indicate that the e-state population with gate is higher than without.\n", "proba": 2.514940206310712e-06} {"commit": "6c6ff668fc04587763b87bbece2ccf004385413e", "message": "Revert \"fix overhead size\"\n\nThis reverts commit 602e7d874a5838ec1bbd79d580b5602237491b62.\n", "proba": 1.2855167597081163e-07} {"commit": "5a2cf2363b1d3c4f864bac621edcb5d44c5c08d6", "message": "enable pipdated\n", "proba": 4.981009738003195e-07} {"commit": "09bcaaacc50f8b7781a830af1adf4963a74a72a2", "message": "add DOI to citation export\n", "proba": 9.347958439320792e-06} {"commit": "7ea5411beb945738297f300fffce14ea08195f3b", "message": "Athina importer update to new api.\n", "proba": 1.0854981269403652e-07} {"commit": "ae1f85696b12d98804e04d05455168611e5f99b1", "message": "Fix spreadsheet line\n", "proba": 0.9986141920089722} {"commit": "41c7eb4566a9df4ac664a0520eee5006e5942206", "message": "updated engine with proper conventions\n", "proba": 1.8540961832513858e-07} {"commit": "77ba3c59102a04fa3a1395f75bae61f7fe0aad7d", "message": "Modified the vertical spacing on the winter inset. The surface temperature doesn't get shoved off the bottom anymore.\n", "proba": 1.1698993063191665e-07} {"commit": "3eed6d1e984f8efeedc548bcba9d25cfcd9aff33", "message": "Fix for when there's fewer than one page of entries\n\nThe Feedbin API only includes the \"links\" header when there's\nmore than one page of results.\n", "proba": 1.0910069647707132e-07} {"commit": "fd80a1bbc017bfbf966e610fdc916ac760bb079e", "message": "updating jobs\n", "proba": 3.732838820269535e-07} {"commit": "59d17bc208721c31d97fc83a6469f894deacfd15", "message": "avoiding div by zero\n", "proba": 0.0042154197581112385} {"commit": "01a702737948b184e74c34764e4d4890194af711", "message": "add an option to control wether to generate datapackage.json\n", "proba": 5.281877974994131e-07} {"commit": "57644abee5186ba2305173bd4253c278211a6fc0", "message": "chore: increase prefetch to 2\n", "proba": 0.9983552098274231} {"commit": "6acb0520237fc8a4ea92c01ac59ae0a3c839d4e2", "message": "Collect Consul node metrics\n", "proba": 6.984774358897994e-07} {"commit": "e1b6ebb5e07fb5fcb59dacc92bf4829fd45fa871", "message": "stock_partner_delivery_window: ease warning msg check/override\n", "proba": 3.7886226778027776e-07} {"commit": "9e53fd3391ffbd5968bcb5f0c45f88f13a810e05", "message": "fix sweep_size\n", "proba": 1.309075173594465e-06} {"commit": "cb5943808e36122cfc05d2ca3165860fd5f249a5", "message": "Factor out duplicated logic.\n", "proba": 0.0017194728134199977} {"commit": "b85aa4b9ef28a18080e957b3a04b494b87bf8fbe", "message": "Don't timeout by default\n", "proba": 2.0432139535841998e-06} {"commit": "60272eeb13b410a8468f8dcd34a27a7275f8004c", "message": "changes plota pathes\n", "proba": 1.3422703659671242e-06} {"commit": "8bbd44da3ecefe36576d33397eb94337634cf55f", "message": "Remove organism name from pathway for single pathway\n", "proba": 0.002338487422093749} {"commit": "392a39ea962440ad50efea59e37abd53d073520d", "message": "Change reduce tolerance and regularization start values of Gaussian mixture fit to allow for readout signals when not using WAMPs.\n", "proba": 9.985306093085455e-08} {"commit": "ea5c8be05f77a55ad76c5de3ec264c436ed29a31", "message": "Don't fail ABI test if parent commit is broken.\n\nIf the parent commit doesn't compile, we should ignore it from the ABI\ntest. This ensures we can still run every test even if we have a\nbroken HEAD.\n\nChange-Id: I30a5d957b5fc24c2e770b7a28ab01566015a134a\n", "proba": 2.29557954298798e-05} {"commit": "6d947af309aa4d9b8f0dac6d2d267972430f6f5d", "message": "Award tuning\n", "proba": 4.2141692802033504e-07} {"commit": "6c0957b9d3cc52c6eacdb82c8254d59c58773f5d", "message": "fix bug where slicemgr will skip local interface when the calling cred is delegated to the slice manager\n", "proba": 1.8953225833229226e-07} {"commit": "8ccc2c46941488b976e959a60316347c5bb016a2", "message": "Update settings comments\n", "proba": 2.4698459810679196e-07} {"commit": "ac11a9b7ff3c8b62e648d351a2b63125f71fad1d", "message": "Revert Amcrest change (#66412)\n\n", "proba": 1.1427005830455528e-07} {"commit": "f1ba7d2c57e6de1d1c84d53f5b959e231843f609", "message": "gen 1 example for all possible questions\n", "proba": 2.0261640543139947e-07} {"commit": "7fb619cd0e458cf6a56956497d2da511ee775368", "message": "Fix mf api calls\n", "proba": 8.380130225305038e-07} {"commit": "4dd0e9fc713a67a6aca0aeaa6cc5019e6bb10f35", "message": "fix(Director Job API): Allow for setting of fields during update\n", "proba": 1.774683227040441e-07} {"commit": "3036f1123d995897d9b77e49b3e5ca263c5a3fcf", "message": "Revert \"Reconnect corrections\"\n", "proba": 3.2010373729463026e-07} {"commit": "59d0f14cb55630c87ce1753b6febe8ef1f7832c3", "message": "added verbosity option for naivegenedrop\n", "proba": 3.457020056885085e-07} {"commit": "fa9fa3165f2e981798e06d984f96220cf03e4b00", "message": "take strand into account when translating\n", "proba": 6.630318694078596e-06} {"commit": "e630dfc9d761ef9d61df4eefe16de1368ebf3a42", "message": "use ssl.create_default_context and SNI if available\n", "proba": 5.223803327680798e-07} {"commit": "e4686a9fd2140feea8d28229e2d37d6f3d040729", "message": "debuging on vps1000\n", "proba": 2.1570912167589995e-07} {"commit": "3b4902941b3d023969ef6add1ed9c11282c73142", "message": "MC: added method log_to_slack\n", "proba": 3.6057875263395545e-07} {"commit": "3b0f02e846bceef98547a6f90288d3d5c95c55b2", "message": "Improve output a bit\n", "proba": 0.9997408986091614} {"commit": "18014c6243e5ae58ca31378b12ace159f56df514", "message": "fix recover_bones()\n", "proba": 8.850843755681126e-07} {"commit": "77b7d306834feeba6ac131bfa438465e18d0a3f2", "message": "Remove kernel check from controlsd\n", "proba": 5.251480388324126e-07} {"commit": "d00e0f90177e2ff6663155de420f9b0ea2cf1f72", "message": "Fix clean\n", "proba": 6.706944191137154e-07} {"commit": "b0f6e8c40a36610db18a50975450dfe9d3ab716b", "message": "Fix growat server config entry missing URL key (#53867)\n\n", "proba": 1.1004198796626952e-07} {"commit": "4bbe7cf73083f0ae92dbe4948eac4fa260c85cd6", "message": "Added tests for external sysno queries with recid-like URLs.\n", "proba": 1.0162128916135771e-07} {"commit": "20f9156801e91810b9bde85b559c2adda30b3c01", "message": "Fixed: only add distinct entity to m2m field on productpages\n", "proba": 2.6779616746352986e-07} {"commit": "35f192d7925e77d3f33c07b701de740537f415b6", "message": "Flake8 changes.\n", "proba": 1.3345236027362262e-07} {"commit": "b2837e4aae34cfc81c207db23e2623ef7195538d", "message": "fix type error problems and missing return value during window resizing\n", "proba": 4.0870617112886976e-07} {"commit": "9c9d7c4b5589dfa5e2fbce178402068ed521c05a", "message": "Add args for only nonpassing coqc\n", "proba": 4.510606686380925e-06} {"commit": "ea932ad2a8eee28f3cd1942d753e08e9680e3fc6", "message": "get_response_extension accepts default arg\n\n* also removed EppResponse.response_extension because it is unused\n and not so useful (just doing response.extension will yield the\n same effect.)\n", "proba": 1.1502085328629619e-07} {"commit": "136b0656c464b521daea1512bb70d31731c874e2", "message": "added dashboard app.\n", "proba": 1.6712198203094886e-07} {"commit": "f8c29c1dfd495f12b2cf8a9a16a1d28ad3bcbb31", "message": "Use self.playback in controller test\n", "proba": 3.9798212014829915e-07} {"commit": "3e28ed2fbc2899d2336e4d08f22b4a0f2d3afe70", "message": "Bugfix MC: no new line in acq progress when called by DetectorFunction\n", "proba": 1.2116029779463133e-07} {"commit": "492ef0e9492a8f8fdff2110307a4b2e88eab45de", "message": "removing slave where we can\n", "proba": 1.3947287413884624e-07} {"commit": "b71ab1e47eff82816a9774d0f0147b81e67ce76d", "message": "update l10n tests to use the \"was\" block instead of \"else\"\n", "proba": 1.1203807304127622e-07} {"commit": "3a483d98bb065a57d24627f797041297238ed857", "message": "Add unittests for semester url routing\n", "proba": 1.9195084632883663e-07} {"commit": "0a1a9ae6c824b78365a50b3299817a7ec422ff6f", "message": "Add resources to a dict instead of a list.\n\nThis will make sure the variables are named properly and not by position in the array. It should prevent accidental loading of variables from different feature columns.\n\nPiperOrigin-RevId: 297311292\nChange-Id: I51e6bf99dc3a5bfb217eaefd87731be0d7f818a6\n", "proba": 1.4403463865164667e-05} {"commit": "dcf52332ca18c1d3bb2f12589943d9346378a047", "message": "add new properties for Channel or Playlist\n", "proba": 1.3678553045792796e-07} {"commit": "f6cb39bbd2d691e1f4d53239dd98e4117f4a6972", "message": "no i dont need this\n", "proba": 1.8644064766704105e-05} {"commit": "c26059e95232aada622245bc0737a6db019efbf8", "message": "doc: 'defaults to' sweep 5\n", "proba": 1.1518071687532938e-06} {"commit": "20714798b7d941dda136a64bbf6925511e732b05", "message": "client.entity.ops.crud: Fix commit\n", "proba": 5.780044602943235e-07} {"commit": "d5284d5ed8d48d1a16feab888794f96655a06376", "message": "Minor fixes\n", "proba": 2.2240030261855281e-07} {"commit": "381ac31f8c52362a38fd7bdb70839dbc79188c9e", "message": "Don't print image shape\n", "proba": 1.0198405107075814e-05} {"commit": "abc86c06efd535f4c7fbcc1c2a7331297584a1bd", "message": "Now Parameters and Parameter values tables are handled. Also solved a minor issue.\n", "proba": 1.0062719724146518e-07} {"commit": "2004c9b0798167313c2e674a462aa554e1263706", "message": "Fix \"test_lib\" test\n", "proba": 0.0015107587678357959} {"commit": "ffb4d38c26b6ad929897e8666a5f5dd92cc57f77", "message": "Add pytables support to calculate cosine similarity in silhouette index\n", "proba": 2.4874040605027403e-07} {"commit": "5f03b22dd5b8ba932fce2d7d1eadce550def23d2", "message": "Fix disambiguation by identifier\n", "proba": 9.15687905944651e-06} {"commit": "85d2df040dcfed1f6f8759c7db3cd0f3472e2eab", "message": "Added support for setting multi fields.\n", "proba": 1.0904910396902778e-07} {"commit": "d605ed6c75b7a0f56c2d8e47647ec27f7f00864e", "message": "oncore update , many forms changed\n", "proba": 1.2845130470395816e-07} {"commit": "65c64db62e4025dd4e31afd0396768d0e4770785", "message": "api key no admin\n", "proba": 1.4910606296325568e-06} {"commit": "9cb05ebdae6123b680aca9305d96c7e91a391b64", "message": "Refactor some of widgets\n", "proba": 5.1252616685815156e-05} {"commit": "ecf937ad6affccce278eae14724063a56aea5981", "message": "rewrote reverse complement function\n", "proba": 2.479600880178623e-05} {"commit": "ca44165f473fdf839b4717fe6da9c12cde8a8dd5", "message": "Fixes failing scatter nd pip gpu test.\nChange: 139592087\n", "proba": 7.156431252042239e-07} {"commit": "aa83b0388a2c52f037cd3cc37c496baae9814543", "message": "Use new enums in mullvad (#61934)\n\n", "proba": 1.1321634474370512e-07} {"commit": "6280453fe041af701fc086c6436c69e749bde519", "message": "Bugfixes in the activity optimization migration\n", "proba": 2.440386879243306e-07} {"commit": "360226e6937b5d417ba8835ead28e2deda12d28f", "message": "backlink pattern, new sites", "proba": 2.3510324353992473e-07} {"commit": "ca839c644fa190f9822a37db8e84a1140969dac6", "message": "Comments added\n\n\nFormer-commit-id: 3d691379ad2807b38bef9c539f1cbe794f92a5bc [formerly 85efcb646c24b971a011312c045fed034032bf21]\nFormer-commit-id: 9d2b185cfb137ce4bf8a85e83f08b4bfc7b23baf", "proba": 6.485107633125153e-07} {"commit": "7154d6c8b8f27a28573d0faa299faeb95eb2211a", "message": "Update integrators.py\n\nminor bug fixed that the *.solve() functions forgot to return in IRK3 and BackwardEuler", "proba": 1.8916749411346245e-07} {"commit": "18f6ac8e732b8d4850d84c35730c6f5af1d5b4a4", "message": "Adds empty line. PEP8 is happy now.\n", "proba": 0.00011425370030337945} {"commit": "d1439615be29bac836efe0ead959bbbfb62a330e", "message": "ENCD-3710 Remove unused code from audits of Experiment (#2059)\n\nremoving pipeline_structures.py from audit code", "proba": 1.9506160242599435e-07} {"commit": "0dd9eb96bedd5feaff6c233355077eb6bfc4c55d", "message": "test times\n", "proba": 5.063434855401283e-06} {"commit": "603f178962ccbd97d5fa0ae70bd2a946d9d0dabd", "message": "Remove autolink test cases #181\n", "proba": 1.3471662896336056e-07} {"commit": "507df82e7ac77042aa2a956b7db93df92527a3ff", "message": "Fixed Config's `resource_macros_names` definition.\n\nThe `resource_macros_names` in the `Config` class was declared as\n`StringProp`, but this attribute is a list object. This mislead the\nmulti valued attribute processing that returned the last list element\nrather than the list itself.\n\nAlso removed the last uncecessary [] on the `_echo` command definition.\n", "proba": 1.2106580982162995e-07} {"commit": "f45aa27655b8c4e74f2aa9752e99795974272ed1", "message": "Refactor and cleanup\n", "proba": 2.2478596406472207e-07} {"commit": "9ec47bc14b6227bd03149f372bd587cae67c8bcc", "message": "Add a TODO comment for extracting unsetslot-type info in ship3.\n", "proba": 1.0531971383898053e-07} {"commit": "6779473c7d7eeff2bc6f5fb064c3b53b18bb9e4e", "message": "Removed run_all_in_graph_and_eager_mode in sparsemax. (#1689)\n\n* Removed run_all_in_graph_and_eager_mode in sparsemax.\r\n\r\n* Removed old code.\r\n\r\n* Removed useless astype.", "proba": 1.0994778421036244e-07} {"commit": "55f2cf3b5c260714b8f302cbe405d8e9be0280b8", "message": "Fixed tests\n", "proba": 5.21611696058244e-07} {"commit": "9ae89c79c923b432e9a6d69a68a3f3f71da652bb", "message": "remove leftover", "proba": 3.5862834920408204e-05} {"commit": "411e38cb6e7c83b826ad9619807e298a9012eb8e", "message": "Clean up code somewhat for readability.\n", "proba": 8.074940751612303e-07} {"commit": "27d48a359d0716637b62bf10a3aa77b0b17d566a", "message": "apply same filters to urls from linkextractor after rewriting archives urls (#372)\n", "proba": 1.0216662360562623e-07} {"commit": "44f9b873b24496273217b855698d025d9748c8e7", "message": "+visaadvicecentre.com", "proba": 2.474853886269557e-07} {"commit": "8e49aca3e3f501dec4c5148b93074c1a6a6ca470", "message": "Import all from quikql.py\n", "proba": 3.2407598382633296e-07} {"commit": "b15dccefb6b9daaa9b5d168bff70f0fde88fc064", "message": "get_bandwidth() --> get_band_width", "proba": 1.2376438462524675e-05} {"commit": "559ffdf51cc2903663b29991c72e04d91b796a5b", "message": "cleanup docstrings\n", "proba": 4.969721203451627e-07} {"commit": "6db51abf53269416922983d3df9ba2644de94356", "message": "Fixed bug when adding stackable items to inv\n", "proba": 2.421940621388785e-07} {"commit": "d7b0b60195f8e9d5c1a2e4448b1a2848ef8186bc", "message": "Simplified json_schema.schema.Schema\n", "proba": 0.00029263366013765335} {"commit": "824fd25e76ab6f2531d42acc54e4c93aa4797909", "message": "encoder\n\ngit-svn-id: df19cb22909049b2c66454dc283f77133f994bb0@30 a4795897-2c25-0410-b006-0d3caba88fa1\n", "proba": 1.344037718808977e-05} {"commit": "d3e463de1e02d3109191fb6f05e37a2d2dbd9f9e", "message": "[pymtl.tools.transl] verilator cleanup/linting breaks stuff!\n", "proba": 9.953342328117287e-08} {"commit": "f3e42a615dc0bc880f051dc880c49a24bd61d70f", "message": "Use RenderRows in test_goaltree #329\n", "proba": 1.49226551116044e-07} {"commit": "7cc5d05f5e21f39e8b8c440d61ddb00ba2ac2dda", "message": "up to 99%. that last 1% is gonna be hard, maybe impossible with pytest\n", "proba": 7.344553409893706e-07} {"commit": "ad1bf29c5de593444eccdc2898b582c843d4ac87", "message": "Updated to use new object for drawing system topology.\n", "proba": 1.0529319638408197e-07} {"commit": "ee24e85da46a78b7357911c4caf4134c1c698b8c", "message": "path error\n", "proba": 3.0987243917479645e-06} {"commit": "78ae5eaef9dbe03e3d3d575c31def56861292fa2", "message": "Add class distribution stem.\n", "proba": 1.2387040726480336e-07} {"commit": "f766ffabe454cb071a4fc4dc15d61809d484f389", "message": "Fixed: Use NaN-type for Money(None)\n", "proba": 7.787430513417348e-05} {"commit": "b416bd050fb63c3df5059240951d0b23b97b95dd", "message": "1. Forgot to add import for static files development serving\n", "proba": 1.031387384387017e-07} {"commit": "d6932986f76eef2c566e501cd234f11ee0421380", "message": "Update kafka_test.py to use tensorflow_io\n\nSigned-off-by: Yong Tang <765086fe2e0c1f980161f127fec596800f327f62@outlook.com>\n", "proba": 1.2097902413188422e-07} {"commit": "caa23f066d57644a8f15705c7b00901b10a6f7ba", "message": "languages from wiki\n", "proba": 5.168510597286513e-07} {"commit": "4896adb942663fa0b8fb11b4df4be292507caae8", "message": "treeiter, not iter\n", "proba": 7.116719643818215e-05} {"commit": "447c94d885d3f991d37cf23ce8725a5b8f525f49", "message": "House-keeping\n", "proba": 1.131880139837449e-06} {"commit": "1b7a2ee167f04ce396a148f1ed91a3a36d68b688", "message": "Use pickle to save cache to temporary disk\n\nWhen developing it is handy to have a cache stored in a temporary file\nthat can be quickly reloaded when restarting the app. Use pickle to dump\nthe cache to file so that it can be reread at boot if it exists.\n\nChange-Id: I8638584914ec54ef6523449684ad72b4ec02b72b\nSigned-off-by: Thanh Ha <09ea4d3a79c8bee41a16519f6a431f6bc0fd8d6f@linuxfoundation.org>\n", "proba": 1.917398549267091e-06} {"commit": "9e863160a80ba918641906b69ee899f390ac7a15", "message": "a case sensitivity fuckup --autopull", "proba": 2.2031420598978002e-07} {"commit": "4ef59732e9525d89483ab569862a1118a6b78cb8", "message": "style: check for truthiness not length\n", "proba": 2.1104549887240864e-05} {"commit": "ecfc4ea582b577f82b67f35737d931ade3bcb627", "message": "Make sure graph is connected in test_edge_cutset_random_graphs\n", "proba": 1.2752120710501913e-05} {"commit": "f2b3962eeeadf939e08dfa818478a0792e4e2ceb", "message": "Change url\n", "proba": 8.235208952100947e-06} {"commit": "1a2e69ccb2a27978350efc705d79c9e059a9aa78", "message": "clinical trials normalizer cleaned up import statements and spaces\n", "proba": 1.3291331413256557e-07} {"commit": "086e9ac3b72a306022ecdfe9aa2d2407214c15ce", "message": "removed unused print\n", "proba": 1.9053314872508054e-06} {"commit": "0af8a8ae92c5935a17f5bd0f3f76ec4ca984ed42", "message": "Add support for default value to Model\n", "proba": 2.85817776557451e-07} {"commit": "f2512c05f2f1be2858843bc4b3fe7e6916dec868", "message": "[url] Handle when page doesn't give Content-Type at all\n", "proba": 1.3467025894442486e-07} {"commit": "a30bc82a2e7163235b01a6b2ecbd4e2c0906c0b8", "message": "Remove nonexistant header from gyp file\nReview URL: http://codereview.appspot.com/5179046/\n\n\ngit-svn-id: e8541e15acce502a64c929015570ad1648e548cd@2408 2bbb7eff-a529-9590-31e7-b0007b416f81\n", "proba": 1.1016133612429257e-05} {"commit": "514867dcdb918f861a9e176f412917f674f3530e", "message": "remove unused file util.py (#2364)\n\nSigned-off-by: Jeremy Crafts <86673c4809e2bc6fe8e9ad846e61fdb33b412ce4@redhat.com>", "proba": 1.1838455549195714e-07} {"commit": "7600d881ae5dbbcad2f1052e7528a35fb1ec15f7", "message": "exception handling for invalid port number\n", "proba": 7.537016699643573e-07} {"commit": "2eefc0ac6a1e4c2a6290a7cf35b69c8e8c2cc71f", "message": "Added from_fits_extension methods to ModelList and PropertyList\n", "proba": 1.2639583246709662e-07} {"commit": "e892808ab78524658de32ef165cc54cb29c0a07d", "message": "param bug\n", "proba": 1.6280670251944684e-06} {"commit": "f0ea2d8b82f3e4d3bd42108b2cba99971bb51d0d", "message": "Fixed config including for redis.\n", "proba": 1.1278378053702909e-07} {"commit": "21de2c4b4044fff34a06833a49fd110cb5801059", "message": "correct HSV example to use new HSV function and added a new example", "proba": 1.809188461265876e-07} {"commit": "d1acabe6dfaf91dfc505af6f9a67dba9a4828674", "message": "TEST: Remove noisy output from test_numpy", "proba": 9.10295348148793e-05} {"commit": "2b70d75022c886c5aeae0464036f6a45e4cd90df", "message": "Updated operators\n\n- Added charge and tunneling operators.\n- Renamed zero_oper to qzero.\n- Added isherm settings where possible.\n", "proba": 1.1717461489979542e-07} {"commit": "d77c2e5a3da4951b4d6cd20c684a2e36b4981949", "message": "utils/com: drop extra fields from idict\n\nThis idict is used in the scene decorator to instantiate a SceneCfg\n(scene_cfg = SceneCfg(**idict)), but scene and extra_args are not meant\nto be passed down.\n", "proba": 1.214576172969828e-07} {"commit": "4e0a40e26a1f5e2ffba9cc27e9a63008a052e769", "message": "allow loading Classifier dataset as non-static\n", "proba": 1.0696984418245847e-06} {"commit": "642ca3ac84b6a787a21e373e019853fe6c67e59a", "message": "More consistent help messages\n", "proba": 3.5840619716509536e-07} {"commit": "a8de95baa4b1d1296c7f142d8a94931daf8c6574", "message": "Fixing Friday Shane's stupid mistake.\n", "proba": 3.058461857108341e-07} {"commit": "b477199a6d0622a1c210031cd2c754b8db77637a", "message": "[python] PF batch normaliation `var` initialization with 1\n\nNote this breaks the behavior backward compatibility\n", "proba": 1.7995829182382295e-07} {"commit": "efef402d275c21d4993b517e0581be988d781849", "message": "! Watch Cloudflare NS adrian+amit", "proba": 1.464404846274192e-07} {"commit": "779ff69b9329f9058c18b9df5907484d3048251a", "message": "Convert content_length header to string\n", "proba": 0.9999994039535522} {"commit": "6195828726a7e0fc1e0b7aeaf0f1f2e5652687f3", "message": "Removed unused or repeated imports.\n", "proba": 1.1209621675334347e-07} {"commit": "04998d9ff1ff8ffdcb9878fb0443af8e53405898", "message": "Add a fixme regarding the use of CUBA.VELOCITY key in marking the\ndata container\n", "proba": 4.0964076220006973e-07} {"commit": "121cdb87d3162339ff462342757153c80c787ab9", "message": "Fix the code that prevents code completion popup from showing in strings and comments\n", "proba": 5.9472524299053475e-05} {"commit": "b032f7182d461b6e582f0936aa057fe0782b7056", "message": "Implemented int for bool check.\n", "proba": 1.2768430224241456e-07} {"commit": "14f3db35704dc9a83596933a0eeb669dfb23018c", "message": "Validate custom URL alias text\n", "proba": 3.471874515525997e-05} {"commit": "d2dedef94752f6e082cf52fd80321d6d45be80f5", "message": "Bring in the utf-8\n", "proba": 1.513363230287723e-07} {"commit": "513b97e4ccc03cbee56edeff6ef5969ca1c6220e", "message": "Removed obsolete code.\n", "proba": 2.4343974018847803e-06} {"commit": "078db574bffe20f0237e0c93e042ec38cfbc8b4b", "message": "(Python) Fix compiler test bug\n", "proba": 9.929533916874789e-06} {"commit": "d726bc74ee23186d4ca0116ff4b77afaeb56c6c8", "message": "Add self parameter to a class method\n", "proba": 2.1790172013425035e-06} {"commit": "e0a5ba013a397bbce11c2c55700577c302c7ca40", "message": "Added a PARSED_OBJ static variable in CodeGenerator.\n", "proba": 1.0709298692290758e-07} {"commit": "397eeeb6c556278a32be2a6bd6df2e7c3d18c437", "message": "Increase WSGIServer's shutdown check timeout\n\nThe default (inherited from socketserver) needlessly wakes up the\nprocess every 500 ms.\n", "proba": 1.1006591904560992e-07} {"commit": "06447077dc55ca917f4c5918b3ed2d0055a0f858", "message": "release: v0.2.8\n", "proba": 4.1954106677621894e-07} {"commit": "5515273e89a5ee6859f3899627ff1654d23f669f", "message": "+ablockplus.org\n\nsneaky spammers. http://stackoverflow.com/a/34039124/1849664", "proba": 1.7429733816243242e-06} {"commit": "58cfa75aa3b19002adc8cad639409801fd8954c1", "message": "Wrap the call to get the indexed instance in transaction.non_atomic in case caching is causing it to not be found immediately after creating.\n", "proba": 1.2722435371870233e-07} {"commit": "37a3a59cac2e5633dc09135614cec85e6e61fff7", "message": "simplify logic for selecting the array to visualise\n", "proba": 2.711226807150524e-05} {"commit": "d6c20701bfd666bf84744558f4cc360a1a5b7d0e", "message": "BUG: define variables at class level\n", "proba": 3.5721086533158086e-07} {"commit": "47c01b531c5eabf0d368722e97c4fb5559707636", "message": "edited to use builtin 'set' data type\n", "proba": 5.139427798894758e-07} {"commit": "cdaf700774c4417b7a6e3abc4288741583f9c6d5", "message": "remove debug lines\n", "proba": 9.289986337535083e-05} {"commit": "6e2ad123d772a790b371028df502d14ffd5e897b", "message": "modified for AAE\n", "proba": 1.9373474913209066e-07} {"commit": "cfae9e3fa3432fad6bbd97c1d81f8ea4bc0ee363", "message": "Remove unnecessary calls in KafkaClient._poll\n\n - Dont process connections; outer poll() loop does this now\n - Only recv connections that select says are readable\n", "proba": 1.7165162091714592e-07} {"commit": "9b459af399419ed8fa422132ab646f09c2fe020e", "message": "Tuning for travis-CI\n\ndisable too large models for build-tests\n", "proba": 1.3193231040986575e-07} {"commit": "685ec3c4e5a71cb1b737d457edcec843ea881a4a", "message": "[ansible]: add x86 ns10 python2-psutil\n\nResolves: ZSTAC-49487\n\nChange-Id: I6f6f67756d666d677677797a7165696b6d616d72\n", "proba": 8.755916383051954e-07} {"commit": "d72eddea2be2a3d6ab87361b550a82cf994136c4", "message": "top pattern", "proba": 8.354404030797014e-07} {"commit": "5fb1a316015965a87db38ed0e9fc7a55abb859aa", "message": "Bumped version\n", "proba": 2.83475912965514e-07} {"commit": "28c235e4e57ffc7908fdfd0211909808486b5c68", "message": "update metrics\n", "proba": 1.0152901950277737e-06} {"commit": "46aee5a1a5ccf35bd2c002e0c8472f46859ac4b2", "message": "fixing exception handling in Factory.py\n", "proba": 3.5836515621667786e-07} {"commit": "cbf819b2641608baf2c2215f9b21896b1fe6046b", "message": "Use the second via if present or first if not to determine the remote IP,\nnot the last one.\n", "proba": 1.0508934877861975e-07} {"commit": "25ee5b7050e96a85cd4e33eadc41a21cec7da393", "message": "changes mbean used for querying memtable heap size\n", "proba": 2.355498622819141e-07} {"commit": "ac42dc9ac850b939a3987ab851d09c69e6fd9efc", "message": "refine cm_keyword_continue.\n", "proba": 1.8671536963665858e-05} {"commit": "4b6b530f8a6180cc5fd3294ac744384269a52a1c", "message": "add space after numpy import\n", "proba": 0.00029911031015217304} {"commit": "27f9adac9ca075991571915336cb15a267c4e429", "message": "Fix iptables didn't copy to host issue\n\nSigned-off-by: Mei Lei \n", "proba": 1.377216847231466e-07} {"commit": "3aea5c9f259d85404fd2e1b5827fe036497eacfd", "message": "util -> utils\n", "proba": 0.00026787762180902064} {"commit": "501a6091033a8ba76c59f761a7f4a360232eb2d3", "message": "Fixing typo in logging.\n", "proba": 1.979518771122457e-07} {"commit": "eaf6e536849b4b6300920b736efeca67f7ea5d72", "message": "mnt: additional clean-ups\n", "proba": 2.1566592067756574e-07} {"commit": "a9ab15174cde498aa539a40da0676088d745a531", "message": "fix #328\n", "proba": 7.285153174052539e-07} {"commit": "609e3018b1658a826bbbdce7631510527ef9f146", "message": "\"pills\" pattern product name\n\nautopull\n", "proba": 2.3600037820870057e-05} {"commit": "588109d63e7f05eff311826cb72e8782f5102212", "message": "Cleanup to release a 0.5 version\n\n", "proba": 1.438830565803073e-07} {"commit": "5889f8c60dfee45d3e60c15f6c3070a058387c02", "message": "the blue ones seem to be doing best\n", "proba": 4.601061391440453e-06} {"commit": "cdfa0ce73c7d7365fefdadc5918986c8d4c0bd85", "message": "Removed some unnecessary lines and reformatted for consistency in _multinomial_loss and _multinomial_loss_grad_hess.\n", "proba": 1.7249344352876506e-07} {"commit": "9763fa3be9fa97762eefde84701da9f69c053641", "message": "Fixed failing tests caused by r14667\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@14670 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 5.292097853271116e-07} {"commit": "877168502928cc19a38b37e130cc74c84339315f", "message": "Update aqgd.py\n\nRemove trailing blank space", "proba": 3.836865744233364e-06} {"commit": "88d866f52aef4dc0d5844c6582eb11f03402add5", "message": "Update district.py", "proba": 4.796278858520964e-07} {"commit": "90eb32188f7aead1f61457f5e92d8922619e321a", "message": "parser: do compat convert on all doc comments\n\nAn oversight, the conversion wasn't being done everywhere.\n", "proba": 1.2337700638909155e-07} {"commit": "d2eaeac6a225e2b4447f4e320884bf3270624083", "message": "remove debugging hook", "proba": 3.6576768707163865e-06} {"commit": "f3d4d8d815b9817bd1bc92c4401b791b2415e890", "message": "! Watch IP addresses 104.24.122.102+104.24.123.102", "proba": 2.307833995018882e-07} {"commit": "d44bffb98ada6c6fd3fc8a93f6a45f8fd80c2617", "message": "updates test to reflect proper encoding.\n", "proba": 1.192125154148016e-07} {"commit": "f3b626024c962ad8ea9e47ff65a3ff3a47e532a3", "message": "disable failed test case, fix them later\n", "proba": 2.2296647728126118e-07} {"commit": "3920199fa0c875b92c0360c1ec67d1ec33ef19da", "message": "clean up\n", "proba": 1.0365005209678202e-06} {"commit": "366065357b0f7c8e1abfd361652d1fd560b9c67f", "message": "Comment for future work.\n", "proba": 1.1097996832631907e-07} {"commit": "e9be59e7f3608aa34cba8f8c59b14634bb3ea22e", "message": "unused imports\n", "proba": 8.978972800832707e-07} {"commit": "497be01ef0df0da9779745edfcbc049a27e86a41", "message": "Add alarm label\n", "proba": 6.377849331329344e-06} {"commit": "ad0575cfbd725bd094ba6b03769ed5495b9ab8bf", "message": "The resulting data should be in the path\n", "proba": 0.9999994039535522} {"commit": "6e2a1b7c702662568e67f2318108f60af8b6f65e", "message": "king-dumps", "proba": 1.4397724044101778e-06} {"commit": "8bae7513bb34c7ab48adc7296abc79c54ae8b7e5", "message": "changed __init__ from dos file to unix\n", "proba": 4.279576751287095e-05} {"commit": "34a45bb38e614b88f1b2dd4aae7b8095ef64689e", "message": "compose_dynamic_tree() restructured.\n", "proba": 1.5341460368745174e-07} {"commit": "39d606712308d91838051f324d7f1100769ed93d", "message": "Add agent token methods.\n", "proba": 1.9188165367722831e-07} {"commit": "b03f32dc74785154ccb01f354a30457c53b1526f", "message": "Fix test description: njk -> html\n", "proba": 0.9998520612716675} {"commit": "f6758cc6159c5922f239daf44774312183014c4b", "message": "uppin it to 40\n", "proba": 0.003171939169988036} {"commit": "bb9040ef43af32b262ebf781dc75707012c37106", "message": "Add env check for release env vars for Android\n", "proba": 2.3423044126502646e-07} {"commit": "a78e41a1c1c855e81eb403162737989183ee9392", "message": "Specify numpy array dtype\n", "proba": 0.999371349811554} {"commit": "9e1d78ac4d3ffcabbe0a3decaf72da75173709fb", "message": "Add a reference to icudt42.dll to config.py\nSee also http://codereview.chromium.org/6580046\n\nBUG=61514,73991\nTEST=archive_build does include icudt46.dll \n\nReview URL: http://codereview.chromium.org/6575042/\n\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@75975 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.2352115845715161e-06} {"commit": "84431f2167682e4fa2c61966f202b92eac72e810", "message": "+access-electronic --autopull", "proba": 1.783019598633473e-07} {"commit": "4cee95397dc440f8cdac8d02de9cad965af40f6f", "message": "Fix StopIteration issue in Python 3.7 (PEP 479) (#2679)\n\nFix StopIteration issue in Python 3.7 (PEP 479)", "proba": 3.9403559526363097e-07} {"commit": "13ce570d377696dd15f1b7ea64b35aa17e576bf4", "message": "mongo_db_name function has been removed ?\n", "proba": 1.3725085068472254e-07} {"commit": "b4942cf9b5887b68e69dbfb43e40ab61c830b9de", "message": "changed virus info req\n", "proba": 3.2640352287671703e-07} {"commit": "f5943addf0dbbf51cddcbfbc4217f4f49438c072", "message": "Integrate LLVM at llvm/llvm-project@f6bf2823c44e\n\nUpdates LLVM usage to match\n[f6bf2823c44e](https://github.com/llvm/llvm-project/commit/f6bf2823c44e)\n\nPiperOrigin-RevId: 337425628\n", "proba": 5.230567694525234e-07} {"commit": "c0692075329208d4de8b9754d532c3c43c5e55e3", "message": "Adds an anonymous user check\n", "proba": 7.010775107119116e-07} {"commit": "00fcba6da8bddc7bedda90131295e37f90ecee09", "message": "firefox.py: buffer the output\n", "proba": 0.0008270681137219071} {"commit": "ee39f19945cd8f3bb0452e4f55406ff15d8db72d", "message": "Update storage group function, add new create portgroup function\n", "proba": 2.878716429677297e-07} {"commit": "35e954c9dfd27f5ff4bd3b98e886fa67dc3a23d7", "message": "forgot to move a line", "proba": 8.389022241317434e-07} {"commit": "2046de123cfb6c2cc17f60a0808fe53cf5131de5", "message": "removed debug toolbar, part of issue #25\n", "proba": 1.2682036754085857e-07} {"commit": "6173a38d06fe9048ca88daa36410c8dfa1b773c4", "message": "Update test to use new using_height parameter\n", "proba": 2.933618930001103e-07} {"commit": "a267c454d8d979b4ee7184411db5a889d735a59e", "message": "Use anti-word-boundary for facts regex\n\nhttp://chat.meta.stackexchange.com/transcript/message/3519174#3519174", "proba": 0.004671426024287939} {"commit": "3d1d03a57e3f4c98573df45b513acedde9c5e3e1", "message": "Skip some of bf16 tests on CPU\n", "proba": 1.633072912454736e-07} {"commit": "e9c02588cc7f4a4dd672942ab531e2ba9e9e70c3", "message": "linting\n", "proba": 9.858867997536436e-07} {"commit": "e55ba1334f91de47aef052d4bcbbd0e974caf85c", "message": "[py] fixes pandas error file reading\n", "proba": 4.326759039940953e-07} {"commit": "9db16e16db9131806d76a1f6875dfba33a7d452b", "message": "[IMP] Rename Objects to Models in module description\n", "proba": 2.6684145382205315e-07} {"commit": "0ef371371033d0fa499484db23864dae48de8fc8", "message": "Adding custom add windows nodes code\n", "proba": 3.7964494481457223e-07} {"commit": "bd43a08d7625e71e5d9156db8eff32185a87d905", "message": "Release 0.0.7\n", "proba": 5.325604206518619e-07} {"commit": "8c09a8964f49ded63d0126f568f08f3bf9cd2240", "message": "line up \"why\" text with bad NS check\n", "proba": 0.9982417821884155} {"commit": "785b9a761a8a35bc6615a7901b6b2dfb729d24f1", "message": "well, this is going to be fun\n", "proba": 2.0715839355034404e-07} {"commit": "546409a05b9a4268b10f0308b9162380008e9fec", "message": "Fix typo in url_status_checker\n\nPiperOrigin-RevId: 330189836\n", "proba": 0.9999990463256836} {"commit": "ac540758c7c013b2ffc7eb3d1e80ce6fb429de03", "message": "ARROW-1088: [Python] Only test unicode filenames if system supports them\n\nAuthor: Jeff Knupp \n\nCloses #727 from jeffknupp/fmaster and squashes the following commits:\n\nc19b3dec [Jeff Knupp] ARROW-1088: [Python] Only test unicode filenames if system supports them\n", "proba": 1.3466538803186268e-05} {"commit": "f284231793927ddcb3cef033e19d7ef7a00e2363", "message": "Minor.\n\n", "proba": 1.1693643955368316e-06} {"commit": "cc699c75d414551dd4e00c0e1f2da948d55c85a6", "message": "Use f-strings\n", "proba": 0.0027513117529451847} {"commit": "3aaae1b086899159f55147992a27f38302927f51", "message": "reformatted style\n", "proba": 1.040873939928133e-06} {"commit": "0f53b63987311a8c247236b53ae1d1e02c7bd010", "message": "CLN Moves threshold condition inside else block for OneVsRest.\u2026 (#14435)\n\n", "proba": 1.0747072565209237e-07} {"commit": "bca5b305dcf8423bfd562c34e34ce46558f9c4cf", "message": "reduce black magic fps --autopull\n\nMatch in titles and near the beginning of posts. This should still catch spam, but won't trigger on posts where \"black magic\" often appears at the end as a kind of evaluation of what was said so far.", "proba": 1.0615384127277139e-07} {"commit": "5d5f861f68e563f7350742f527a8dfc5b4781721", "message": "guess app_name be default\n", "proba": 0.0004912411677651107} {"commit": "ce1ad2880fa3ac47ae57790e49d770a1d6f16d97", "message": "docstring to dense.py\n", "proba": 0.0016205551801249385} {"commit": "632d05326d5cdb90cbfd2a2652c739e236d3f7cf", "message": "[#4] pylint fix unneeded-not\n\nChange-Id: Ia59e8616f285a20213c2cb49a82486858d226826\n", "proba": 2.3437285108229844e-06} {"commit": "d649aa4170d8d02066beab5d6ef8626f7af4f571", "message": "Renamed class to reflect more what it's for, rather than what it does. \nThis class defines the interface for test suite constructors encapsulated in a\nclass. This way you can have many per module file, rather than just one per\nfile as before. \n\n", "proba": 1.1656606346832632e-07} {"commit": "9ffc29a0f8ffc32adb4dbd78f58284c838f1d403", "message": "Fix word grabber when moving backwards\n", "proba": 0.005564711056649685} {"commit": "2d9ef589359314db7f489f7b4f8d3bac9baf426b", "message": "Added jamsframe serialization tests\n", "proba": 2.053857883765886e-07} {"commit": "de8493a1570c1e1096a23d81af248abf22cde367", "message": "Convert warning to logging.info in write_npz()\n", "proba": 0.9991787075996399} {"commit": "d7a4755daaa563b3643d70e3e6511295a1da4141", "message": "Almost fixed bugs\n", "proba": 1.4375551415923837e-07} {"commit": "1cf5c04f6bf2afc66bc3282b085cf6a18cb12d7a", "message": "let native speakers fix all-caps titles", "proba": 0.00019290759519208223} {"commit": "459fd5e152cd07b17538800cb2bbd779c54fcfd4", "message": "[tune][minor] Move helper function (#1722)\n\n", "proba": 1.2433091001184948e-07} {"commit": "66e3d12446ab334b600f399b0ad16c4c84999a86", "message": "#update\n", "proba": 1.1811147260232246e-06} {"commit": "cda9a52bd183d4a51def5dc636a06bcebab83bbe", "message": "added filebase test\n", "proba": 2.800015579396131e-07} {"commit": "a9fd809c48f65ac3977ab209fefdefa3264219af", "message": "changed registration to use the system host name instead of the service hostname. This will help prevent name collisions in the registrar.\n\n\n\ngit-svn-id: 0429bb2eb6f71f8cd87fe9410a915008a087abca@2353 efcc4bdc-162a-0410-a8af-5b4b46c5376d\n", "proba": 2.513083745725453e-05} {"commit": "255e5ce79b51eb52ce2897703c14c5e3c52ee0d2", "message": "model/geo: Removed unused from_wkt() method\n", "proba": 5.204613557907578e-07} {"commit": "b330261139e590b6a73b614837d235332d0e2257", "message": "Use the Octopart datasheet information", "proba": 1.6527705781754776e-07} {"commit": "e27eec3f0fcb3f84060311590b2c1563d0185f3b", "message": "Main->Self\n\nChanged some things in dave.py to not bug.", "proba": 9.878955609110562e-08} {"commit": "a3924cf1cc40109bd5691095d8162bf59d96f208", "message": "spiritsoft, new seo pattern", "proba": 1.255186958815102e-07} {"commit": "7fe26c1065c928fca415a2662707b476ee322fe1", "message": "cling testing\n", "proba": 3.4662403436414024e-07} {"commit": "927dbb6f9b62c4b0cfa397c23a5f2ac044a713d5", "message": "fix peak fifo (#95)\n\n* fix peak fifo\r\n\r\n* remove print\r\n", "proba": 2.5080419163714396e-07} {"commit": "b8fd1345a7aaf035aeaf6063470c4222a5de9ae1", "message": "\tPEP8: src/constat.py\n", "proba": 3.096515683864709e-07} {"commit": "62ab8879ca9fce66afc341539c50f725e084b6f6", "message": "bugfixes; added random sleeps\n", "proba": 2.08830527981263e-07} {"commit": "766fb5232a0b0cb813e50986f2b5b7192caa9926", "message": "Reordered the code to make it clearer\n", "proba": 0.0001603247510502115} {"commit": "1863874344d61313e84b270180e897459861f955", "message": "putlocker, obfuscated title detection", "proba": 8.13260953691497e-07} {"commit": "3f96226e29ee94eb718d01fa9cd052cfeb4fcfb5", "message": "Added additional logging when a plugin fails to import correctly.\n", "proba": 1.085986838234021e-07} {"commit": "ce0c08f7c71a98f6bd94a0e1daf70037d14b0dcb", "message": "c++11 flag for Mac.\n", "proba": 3.3742307437023555e-07} {"commit": "282c4166e9a0f7b8ab72d49f705f980facf34ae5", "message": "remove unnecessary debug code\n", "proba": 0.0006221089279279113} {"commit": "bf770f0ef4abaed943c755c33d24ed7019d5acf5", "message": "handling greyscale images\n", "proba": 2.129000051809271e-07} {"commit": "bc37474d65462a0abe5d920a60102d9c009817c8", "message": "combine very similar tests to reduce testing load", "proba": 2.4357605070690624e-06} {"commit": "34c6cd8b84be4a3ef6fc6c59cf570c4e2b77b6bd", "message": "Make sure all the directories has been created before trying to write to gallery.rst\n", "proba": 2.0313801485372096e-07} {"commit": "f83339822d6747673b50a4c7dd8873d2d6c226ec", "message": "initial support for client side sessions\n", "proba": 1.4894503408413584e-07} {"commit": "cc9bb62abe5080d427ac1d2ce52e28be73d4fca9", "message": "! Watch Cloudflare NS pair elliot+lila", "proba": 1.8896825793035532e-07} {"commit": "a2873e37fe1352529f57cb786912d3b695389ca0", "message": "Fixing onnxruntime-1.10 compatibility\n\nSigned-off-by: Boris Fomitchev <58435c24dc3f56adf04daf094defcadcfea910e5@nvidia.com>\n", "proba": 1.0902227387532548e-07} {"commit": "e5888b2fbda61fd1969e07f90a3a5fdab2352865", "message": "FIX Allow multi-output in KernelRidge\n", "proba": 1.9638214325823355e-06} {"commit": "2cce4109474e2ade9456cfb49b6f4effc64f6865", "message": "Fixed depth buffer clear position\n", "proba": 2.7936115998272726e-07} {"commit": "b382be644848abe315df035d1cec23f694e65427", "message": "remove duplicated test fixtures", "proba": 6.354566721711308e-06} {"commit": "662038ab569b0eef23e4d240fc12eb8171a61432", "message": "modalview: fix successive call of open() then dismiss()\n", "proba": 1.1895169791387161e-06} {"commit": "29a7bb8686b6a7fa9a6eb735dc1f9be80a7f9a27", "message": "here's your whitespace", "proba": 5.395805783336982e-05} {"commit": "61c8f924b52a88d490841615f01d7cd5062bbe72", "message": "updating docstrings and module imports for XAtom and XAtoms\n", "proba": 1.4319996921585698e-07} {"commit": "31662d50b364724f37b93bf99461d7b3ab4f2863", "message": "inform total number of evaluations", "proba": 7.059456947899889e-07} {"commit": "a699aa508d417f053edaf9b17bea9f157c138f57", "message": "enable tools_on: keep_gene_version (#3518)\n\n", "proba": 1.1926003651296924e-07} {"commit": "97f9824d2e41c2ea610c9b2c574c5d84575a3aed", "message": "CLIMATE-749 - Changing temporal_resolution key in CLI\n\n- This is a follow up of the previous ticket, CLIMATE-732. CLI now uses correct keys when calling dataset_processor.temporal_rebin.\n", "proba": 1.0877074885229376e-07} {"commit": "eabbce5af06451913204d41a4f901cfb26dc3d1c", "message": "Add SCP support\n", "proba": 3.3952639455492317e-07} {"commit": "31d22c675caa47b62c30c0b5b834907e9b1dd60e", "message": "get_homog_coefs_linear() - get coefficients from (sub)dictionary\n", "proba": 1.8455029930919409e-06} {"commit": "ea24fa8d2a493d97846c5cbc90cce56e50679814", "message": "[varLib] load_designspace: add standard en name for ital tag\n", "proba": 2.4178260105145455e-07} {"commit": "9849209ad8514ba19ca1c50ebab2d23b155c93ba", "message": "tests/float/float_parse.py: Add tests for accuracy of small decimals.\n", "proba": 2.5217414645339886e-07} {"commit": "b77e0e1c8045a41609c5caf22d219c734fcc9d9a", "message": "lib/oelite: Generalize set_input_mtime() to allow using for src signatures\n", "proba": 1.2655120826821076e-06} {"commit": "7a14c03e0864ca51993d2f05eabd2319c495ba90", "message": "Sort runs by text score\n\nSearch results for runs are sorted by text score.\n", "proba": 1.663631508108665e-07} {"commit": "fdbaa224d8bccafaca78432d83338e1ea6916444", "message": "Add testcommonswiki to PWB\n\nBug: T250802\nChange-Id: I1047f7528ad4f8e9d9724dcdb5e6f3e898e4a928\n", "proba": 4.6672010967085953e-07} {"commit": "915a94af24e65b0f1a8486fe38223d7719b3a973", "message": "UIX:TextInput: refactor undo_redo and selection_from/to\nSelection_from/to are now readonly and two new methods\n`select_all()` and `select_text(start, end)` have been\nprovided for selection.\n", "proba": 1.0589256760340504e-07} {"commit": "04d3f3cb7bcd0ee6bbf43e14028b1e25e08acdb1", "message": "Replace astropy.io.fits with fitsio for writing simulation output\n", "proba": 1.1642106983345002e-05} {"commit": "f85f81d3830cd40af93aea0ab50794aa46457a72", "message": "Update pattern keywords\n", "proba": 3.147076199638832e-07} {"commit": "3d058796c0b6981f95d6c07c4b7970c4db12bbd8", "message": "Small improvement to the autocomplete code: thread safety.\n", "proba": 1.372153803913534e-07} {"commit": "ad8a0aaae11e3379f992ca172cce1349a35808a1", "message": "fix recover method to get\n", "proba": 1.6139176750584738e-07} {"commit": "0be202dcd102ec06c78059472912938175cc5740", "message": "Don't mock mkdtemp\n\nAs far as I can tell there's no reason to do this, and it breaks\nthe ability for NestedTempfile to clean up after the tests by\nforcing the file to go to the system /tmp directory (which I'm\npretty sure is a security issue too...). It's also causing some\nweird errors in the gate so let's remove it.\n\nChange-Id: I04f3f569ff904e002758098cfd90b5bbb31c6afc\nCloses-Bug: 1714306\n", "proba": 7.040925993351266e-06} {"commit": "5d466c13e1c98a6fc893b43d257d2b966ea4ac00", "message": "Index sailfish in parallel.\n\nCloses #1130. Thanks to @parlar.\n", "proba": 9.953835444775905e-08} {"commit": "870e53480ea0fa32aebbdea0127517bc28eb36ac", "message": "Make technical 404 page independent.\n", "proba": 3.899700686815777e-07} {"commit": "e07c8c09af787bd61221a1ce526744f6554c2926", "message": "fix import of HomogenizationApp in micmac.py\n", "proba": 7.092156920407433e-06} {"commit": "fcfa66803731d7c884accba68de2d2bb57be73e0", "message": "Threshold tweaks\n", "proba": 6.754025321242807e-07} {"commit": "39e20e966aad52a71e72b526c8d6bde941478d31", "message": "Fix a typo in ATSPI ComboBoxWrapper.text doc string\n", "proba": 0.9989620447158813} {"commit": "efe213d7f5bad6bc1d13ce88d80ee57d305d10d4", "message": "Textinput - Separate deletion and insertion / action keys handling (#5482)\n\n* refactored textinput::_key_down\r\n\r\n* PEP8 fix: removed blank lines\r\n\r\n* PEP8 fix: long if statement now on 2 lines\r\n\r\n* fixed single-line enter issue\r\n", "proba": 5.745388307332178e-07} {"commit": "8cb431260b0b1b19588b31baeda7361be619bef8", "message": "Include atmospheric extinction in flux calculation\n", "proba": 3.329441256028076e-07} {"commit": "6b07ea97076a995bad2a3ee1396718d454b29bbe", "message": "clean up\n", "proba": 1.0365005209678202e-06} {"commit": "abba08d2fa36bb4008fd5c11da0908e5c0d6e04b", "message": "+celebsclothing.com", "proba": 1.8943251234304626e-07} {"commit": "66fb6020cb3bb11a646b15215f98c40843e395fb", "message": "fst.py:\n- Storing chromosomes in tables and all.tsv in plot\n- Removing split log and bmk\n- Whitespace\n", "proba": 3.6982694950893347e-07} {"commit": "f8a5c8a3c19bb4809ceb12cacc529a6f6ea7eeeb", "message": "finish doctest for _get_new_base_nodes\n", "proba": 4.99590953495499e-07} {"commit": "751b3584b6e95377d7092e0012f7bcaa13ebb242", "message": "Export PERL5LIB to point at installed perl modules. Fixes #99\n", "proba": 1.1330416072041771e-07} {"commit": "d649753acaa059753cc4d0815e24779f4224ee66", "message": "Separate del-var plotting\n", "proba": 7.838041710783727e-06} {"commit": "2a25f32ffe11ceb1cb893c4d5035458b03690fa0", "message": "mostly bugfixes\n-- previously interpolation onto the output wavelength grid was done inside of sps.get_spectrum; now we do it during the smoothing phase in predict_spec(). we now pass the smoothed spectrum to spec_calibration (alternative is caching the smoothed spectrum). should call signature of other polynomial objects be updated?\n-- move cache_eline_parameters inside predict_spec() as it needs cached redshifted wavelengths\n", "proba": 1.741900086926762e-05} {"commit": "1e5ddb9c63e5a6b4550568ba9f594ed53f89fab0", "message": "Add IconEntry interface, disable treeview search\n", "proba": 2.110215149286887e-07} {"commit": "f0b4467a5824b532dd71665108408383c0b9eafd", "message": "Adds logging to __name__.\n", "proba": 3.925737928511808e-06} {"commit": "0be1d275d56644b76b097ee5513c689255091d06", "message": "Use non-protected atomspace\n", "proba": 6.0932165979465935e-06} {"commit": "eb62d7f2235bd97ab7e59a19cffc79eb48263a97", "message": "tests: add unit tests for clearing and then peeking texture\n", "proba": 2.4781533625173324e-07} {"commit": "5a203fe7d166903329e78522bf1b8c8055cb8c31", "message": "ASN watch: add 3842 and 34788\n", "proba": 1.7512809336039936e-06} {"commit": "fc9872936fa18081c5d2444b39729983ace7aee6", "message": "add shift_scheduled_transitions\n", "proba": 2.1644036678480916e-06} {"commit": "8b08ec568c33a76edf78e69a58dc1f450b3c8f95", "message": "permissions plugin now uses a set instead of a OrderedDict to find duplicates in a list\n", "proba": 1.302421424043132e-07} {"commit": "e8a37908cc17eb4f2597516f4838b8cec6e40d5a", "message": "add pauses between actions in alt test\n", "proba": 7.672905439903843e-07} {"commit": "ea90e0053415e533cc79330399fe984cdeb6f59d", "message": "Refactor and clean up the model columns in set_columns()\n", "proba": 4.855315296481422e-07} {"commit": "e3b945944a62dbed94add94d12fad872262fe4e6", "message": "adds some more debugging, fixes a syntax error\n", "proba": 2.5091756583606184e-07} {"commit": "83f331aa5778f4acc26eac7d464ddf6fc4753e97", "message": "Fix failing hmm API tests\n\n", "proba": 1.3006334484089166e-05} {"commit": "538f3cd3c03ff052139da2ecb15ee1073a4edbd6", "message": "calcs/risk/classical/core:\n\nHandle SA(...) IMT types when validating the hazard output/vuln model.\n", "proba": 1.077985842812268e-07} {"commit": "9401d0d5eb441d73183f22e4bc82607cfa7d603b", "message": "Fix Traceroute\n", "proba": 8.644002264190931e-06} {"commit": "4621955da4eb168b28b6f7816de3cd9e89d9ab46", "message": "Eighty percent of getting support for FlowDirectorMFD\n", "proba": 1.1724906556764836e-07} {"commit": "beaf4677313be855b497aa5103d8a3125f0da812", "message": "CLEANUP: Remove unnecessary return statement.\n", "proba": 2.7115240754937986e-06} {"commit": "1ae1c73cd62d004988a961698e2fbc4f9a0c4b4c", "message": "left a print statement in\n", "proba": 2.58661430052598e-06} {"commit": "7197370ad4d94f637ac7ca4179a3708d02cd3a4a", "message": "Add Query Results to the default query runners list.\n", "proba": 1.2281036276817758e-07} {"commit": "3d09a7370c34063b2630655ac14e5fcb5edda942", "message": "__normalize now staticmethod\n", "proba": 9.3765469500795e-05} {"commit": "e0bb6a0e0fe3b8973a81715dc89449f3444d5aa9", "message": "v0.57 release\n\nIntroduction of Python entry points\n", "proba": 1.2031433982429007e-07} {"commit": "031af4c671f42d6c828a6c3987d95a2e06094322", "message": "Added dirty Gauge test\n\n* Needs to write data into a tmp directory that is removed at end of run\n", "proba": 1.166638199379122e-07} {"commit": "f576e57e7fc7d61825c06ea789539612961b4319", "message": "Added cast to GEOGRAPHY in the hazard_getters\n", "proba": 1.2785855574293237e-07} {"commit": "9a10f1ec01c4c91f12f3a1c2522676b2326aec07", "message": "updated tests in test_raster_grid/test_faces.py\n", "proba": 2.4695373213035055e-07} {"commit": "d2504bc760c133f777ede31efefb1046f4f77078", "message": "Fix for blacklisted developers\n", "proba": 2.1891598578349658e-07} {"commit": "0065de45e4ef4b5a86d35ae04ad4a7612c0aab05", "message": "Remove the install directory first\n", "proba": 3.3596401749491633e-07} {"commit": "3f36a018d252da1621025385ed524f0c3039b0c1", "message": "Removed an OrderedDict\n\n\nFormer-commit-id: b63658f55810c74a5232ff3da85a1fff783fc8c5 [formerly 5c86f4660d650222d892c053f67bc47f19d1091f]\nFormer-commit-id: e56a73694d5935ca469d0b0a5f394bef2177a2d6", "proba": 8.855563464749139e-07} {"commit": "d2f00711ee50286a970c84f6d3b698a5bacbcdf1", "message": "login_url\n", "proba": 2.595594196463935e-06} {"commit": "f81397492762ec02ce476f13010f3914e1214d83", "message": "For Python it is more common to use underlines instead of camel case.\n", "proba": 1.8586425198918732e-07} {"commit": "465e3aaeb4a0de68b1960f595eb47604e713c2fb", "message": "- fixed error caused by non existent tmp file\n", "proba": 1.403054739057552e-07} {"commit": "7d9482581b83bd4cae0eb3830a8291f1d6e111ba", "message": "Fix the integration tests for Python2 & 3\n", "proba": 0.9998689889907837} {"commit": "9020c82652883aa35c438472f888fdcdd4453c89", "message": "Updated GroundMotionInput\n\n\nFormer-commit-id: 8ae4469338edeb81f4659622a184e250ff2cf07a [formerly 8ae4469338edeb81f4659622a184e250ff2cf07a [formerly 6e89a230f4b3d1bfb35cdb840c24235da2f832fc]]\nFormer-commit-id: 0c000fb5f7f142941baec96751c84dd9ae1336f7\nFormer-commit-id: 4c2460a405df255dc63d1a87732276256fe7f60c", "proba": 1.7448294329369674e-06} {"commit": "4ffb9f6f7d0601d2d916066feffa30ed2112f6d0", "message": "Updated from Brython Server: 3/10/2017 2:34:09 PM", "proba": 1.0960126672898696e-07} {"commit": "9b391704fcd58e0945c9dd065aee2729b38ff9ed", "message": "Remove unused \"Study Name\" field\n", "proba": 1.3308191455507767e-06} {"commit": "8575def615e96c55674c3d483e037a680cb6f8e1", "message": "Enhance comments for if found p or q\n", "proba": 1.3236407880867773e-07} {"commit": "81405d3b4c1e9e728b9fe596fa2d0535be7997dd", "message": "Aah! :scream: How did I miss this merge conflict?!\n", "proba": 1.2415755179517873e-07} {"commit": "238fa20003a6a488a24b8334373b8a96b5bde77a", "message": "Fixed test\n", "proba": 7.068065883686359e-07} {"commit": "30d3fcef974520ad0e23440fdf02ec662ebcdd6f", "message": "Release 0.1.5\n", "proba": 1.253244931831432e-06} {"commit": "3c7712e9d03338ed6c1986eeda64ee89fb978aa1", "message": "track number of attempted tests\n", "proba": 4.219731124521786e-07} {"commit": "4538e15f91a93f8c5ba0d1064aaa532a88b7519e", "message": "accept multiple stacks for multiple channels\n", "proba": 1.0071646556752967e-06} {"commit": "f255a7fd4691df87a95f7b3e4c1d351f30a9cca0", "message": "[STARTS] Fixed order_link filter if (ordering == None)\n", "proba": 3.819797257165192e-06} {"commit": "b867c3578c315439eede5611a4cb04f8c4bb27c1", "message": "better description\n\nThe discription appears in the plugins and scripts menu\nof hexchat. As such, mentioning 'hexchat' in the description is\nredundant.\n", "proba": 3.3247198416574975e-07} {"commit": "c5db3759717164ac34fb474a5202054868a22b9d", "message": "bug fix: search_job new exception correct message\n", "proba": 1.569305595694459e-06} {"commit": "8bd20cacf73c04146c5a25ff5e8613751f3a509c", "message": "fix problem pUT\n", "proba": 6.1567793636641e-06} {"commit": "f04d470fac0f62e19e96f8aea8b044879da35686", "message": "FIX teardown for python3\n", "proba": 2.8881262892355153e-07} {"commit": "5db50408710a1a16a43099a4079f37e2af3cb548", "message": "Use CudaPackage mixin for py-theano (#14577)\n\nThis PR adds the CudaPackage mixin class to py-theano. This replaces the\r\n`gpu` variant with the `cuda` variant.", "proba": 1.0336502498375921e-07} {"commit": "5727d8c84d5badf0ebfe5b28de9590d048fca3e1", "message": "SA - Removed magic numbers\n", "proba": 1.827991980007937e-07} {"commit": "0bbb26a815fbb4c2d990960692c1f8b051dbe272", "message": "Test for committing before tagging\n", "proba": 1.2951531402904948e-07} {"commit": "3f0255019277314c471ef4982a76ef27d1dd9e85", "message": "fix test_callbacks.py\n", "proba": 8.405619155382738e-06} {"commit": "0ab4cb441bcef9108ca9a54f4a52eacb8b80899c", "message": "Use the new ST3 project api instead of a hacky subprocess.\n", "proba": 1.0345377887688301e-07} {"commit": "b268b921e9038765c65b644e724af8b0a69634b7", "message": "Mention the directory.\n", "proba": 1.5518378404522082e-07} {"commit": "3d91e4edbf12ca096604c375d0adb2b7ba446fab", "message": "use save to being dry.\n", "proba": 1.1494650209442625e-07} {"commit": "a12c45bc02d2c7e6f956e1aec4c4e4572791d6e8", "message": "Added classes and constructors.\n", "proba": 1.181366542368778e-07} {"commit": "e64dc90ca45fea769b73117bf7a8735e6c1708ab", "message": "Display bug report URL on any failures\n", "proba": 2.3671636029121146e-07} {"commit": "ec7d5a387739823163dd9800ca2d92c860310868", "message": "layout cleanup\n", "proba": 3.807922155374399e-07} {"commit": "e1e1447b925562204272c6cb846a21195ad81c15", "message": "Only accept POST requests", "proba": 1.348638107856459e-07} {"commit": "17dfad1a984cee3a16d53726439ee79977c1c1b0", "message": "More debug prints.\n", "proba": 1.3001466925288696e-07} {"commit": "c407ef4bf4c02a80bd329877073bb5d88aced32b", "message": "retirado html2txt\n", "proba": 3.1345455226983177e-06} {"commit": "eb5ce186d44304f3f071c10d272568d1ea4f8a48", "message": "error handling for subprocess, use Popen", "proba": 1.868543648697596e-07} {"commit": "35f2084998e9ed6f2a8ab1fb3d0db36cc82e775a", "message": "fix test\n", "proba": 1.6747775362091488e-06} {"commit": "04d859a98cdee255a30ce07bdde3a02089092f87", "message": "Fixed import for IDX module.\n", "proba": 1.1433905910962494e-07} {"commit": "fb7a21e458b2566fe4bddbb08fc8f27fc224a14d", "message": "added support for reusing precomputed grids to forecast.py\n", "proba": 1.3771433771125885e-07} {"commit": "b3085039705b4ca6051c4656c55ddbf5ba204f8a", "message": "Author for each feed item.\n", "proba": 1.1091563578702335e-07} {"commit": "1f92e6d20fae0388f68e8b88467267d4e56ed8bd", "message": "fix condition to standard, remove unnecessary if", "proba": 2.8965283149773313e-07} {"commit": "2cbb1c036e81b3d59761c1cd9bb5de01db37caa8", "message": "Recover from emitter errors\n\nPyNotify raises an error when showing a message if no service is\navailable. Instead of dying when an emitter raises, that emitter\nis removed. If the last emitter is removed an exception is\nraised (because there would be no way to monitor test results).\n", "proba": 1.346322449080617e-07} {"commit": "b116e25c890f78bf172c68cfffb1f2259a555899", "message": "moving statement\n", "proba": 0.00046550139086320996} {"commit": "9bdf9ecdadfe6d8b64c4cdaee5a26c3c14ecc810", "message": "add field __to_extract\n", "proba": 4.388393790577538e-05} {"commit": "5e1f6a5cf87db541fd5742f6699df41602e1e086", "message": "Avoid duplicate logs if root logger has an handler\n", "proba": 8.228025762946345e-06} {"commit": "686b0a9d9966b9aa41e88e3277b2954d9ceea6a4", "message": "Added required import\n", "proba": 1.416595267755838e-07} {"commit": "e444874250114a2d275c80323069ac9f84c593a6", "message": "Reformat documentation for bc_polynomial module\n", "proba": 1.9761385772198992e-07} {"commit": "94a38b25b716b441a2bd45a218a4db2f3995d339", "message": "No need to update setuptools to the latest version if this one works for us\n\ngit-svn-id: 84bf245b8ec830cf55532821ac8e6bb7d4787dc7@1052 2dde4cc4-cf3c-0410-b1a3-a9b8ff274da5\n", "proba": 6.095257276683697e-07} {"commit": "6b9650fa28df2ea309a6f6906c984da14585b8d9", "message": "removing secondary driver - no longer needed\n", "proba": 1.9465797151951847e-07} {"commit": "d684e868576d5bf666ef54734d111b703db5aadf", "message": "Fix to plural arguments in attr.s on_setattr docs (#699)\n\n", "proba": 1.291066382691497e-07} {"commit": "3b71b0907d1b989a1a27fee8a7357ec361e08b71", "message": "Backout some ugly docstrings from rigorous implementation of ill-conceived PEP-257.\n", "proba": 1.026514340196627e-07} {"commit": "4e94612f7fad4b231de9c1a4044259be6079a982", "message": "Split create database and create user into to individual commands\n", "proba": 9.567797860654537e-07} {"commit": "63a3c2c0d54607267f53dbc0adcfe892546e5585", "message": "Don't look for \"extract_alpha\" key if it is not defined\n", "proba": 1.8854733525586198e-06} {"commit": "5c17d4aca28b52024ed8345af8a63f3364c9670c", "message": "Added support to use django.contrib.postgres.fields.JSONField as JSONField for extra_data\n", "proba": 1.8240146459902462e-07} {"commit": "2a321fd88684f370eb6893560e942b5f0a4e6a76", "message": "Tweaking tests and signals.\n", "proba": 1.1415045975127214e-07} {"commit": "e39a0afcfb744bc118b020d682f240879d34555e", "message": "python3, but not re-tested after the albumRoot change\n", "proba": 1.8472287877102644e-07} {"commit": "5626b751f53562d615d7c962f439c0c0039ba703", "message": "Modificata implementazione dei barcode QRCode in modo da non rendere\nindispensabile il package utilizzato (pygooglechart)", "proba": 1.2348070299594838e-07} {"commit": "3ed39da94945ec9f08faa6c902dbde47d0e1f889", "message": "Fix title splitting when namespace doesn't exist.\n", "proba": 2.0978026782358938e-07} {"commit": "2a0ffc83df80ba218c8de520ea5f2a9d1b7d66ba", "message": "Updated doc-strings in full_activity_dump_helper.py\n", "proba": 5.4329639169736765e-06} {"commit": "0bd6b1022efb196aeb81e6f0eea57a54d0af1bbe", "message": "more tests\n", "proba": 1.297568985592079e-07} {"commit": "96fadab744b6653cd63aecea6690a674a21b83a8", "message": "renamed system topen test\n", "proba": 3.056251784983033e-07} {"commit": "177eeecc55730c5c6040828cf074e01f7ab8e718", "message": "Format_message alphabetized and no longer includes hidden fields\n\nref #13\n", "proba": 2.733187329795328e-07} {"commit": "7c66e6f267016b84f9cbf55ebf10ee0219ea5562", "message": "fixed: 301 request does not use proxy.", "proba": 1.1455090742629181e-07} {"commit": "ae4fb60a28ba03ce743765f30d40851c58ff5b00", "message": "wence makes a good point: R=1\n", "proba": 0.9999450445175171} {"commit": "285dc8a48cef79320bb7603b256566e3e1c23673", "message": "Clean up test fixtures in test_addons_oauth.py\n", "proba": 5.868474772796617e-07} {"commit": "785c2edad5b5832abfaf1d9e7ee794e55537d63a", "message": "Correcting error in test_back_project, in test \"test_get_device\"\n", "proba": 1.3654936026341602e-07} {"commit": "eaa86b78159248da4abbd0767448aed89d610132", "message": "Update fileStore.py super.\n", "proba": 1.2840378360579052e-07} {"commit": "ea4765430a05c1c4164e598becaaffbddcbc7b92", "message": "csvgenerator tests range binding list format\n", "proba": 2.1926386750692473e-07} {"commit": "6e80a87b457a88b8a2c69c244d47ad04836fecdf", "message": "Sorted group-service page alphabetically by hostname\n\n", "proba": 5.541916380025214e-06} {"commit": "25ef7c2375cab1c627f3d0f49150e4fc9a81bedf", "message": "add to test to catch future regressions in --beta-use-biocontainers.\n", "proba": 1.025508495899885e-07} {"commit": "5676a260c8c9dfceedda3bc3a6c3ba05b65d5941", "message": "Show more info about error token failures.\n", "proba": 1.1273495914565501e-07} {"commit": "2fb5e3aaef64bb04ac3fc803f1f03737df3ba0ae", "message": "added test for file creation in a new directory tree\n", "proba": 2.8849771638306265e-07} {"commit": "91ce6c2c70f22e5aa2d62d35e59b60ea7e95be18", "message": "Unit tests for new GP from AIMD functionality\n", "proba": 1.233120769938978e-07} {"commit": "6656823bdd25403433cbfe01e9fa338238f44c56", "message": "test stub for input_number\n", "proba": 1.2499752301664557e-05} {"commit": "0d130d2da0754c546f654ede99a79aac2b8e6c5f", "message": "tests: Make the tests pass for Python < 3.8\n\nBefore Python 3.8, xml.dom.minidom sorted the attributes of an element\nwhen writing it to a file, while later versions output the attributes\nin the order they were created. Avoid these differences by sorting the\nattributes for each element before comparing the generated manifests\nwith the expected ones.\n\nThis corresponds to commit 5d58c18, but for new tests introduced since\nit was integrated.\n\nChange-Id: I5c360656a0968e6e8d57eb068c8e87da7dfa61c1\nSigned-off-by: Peter Kjellerstedt \nReviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/349917\nReviewed-by: LaMont Jones <01939f9990a33aa2509cfaed21d2f9ba201a2b37@google.com>\n", "proba": 1.2049525139445905e-05} {"commit": "c7aba7c62a718fe35e76091379622161838ab45f", "message": "adding placeholder\n", "proba": 3.5935903497374966e-07} {"commit": "1af48550f256a05df8decfd8063ba3925c23e242", "message": "Removed useless token expiration tests\n", "proba": 3.284660294866626e-07} {"commit": "dd4772b7b3f459c1a1421c7c58dea53ae06a240e", "message": "Update windows tests\n", "proba": 4.5248918922879966e-07} {"commit": "a2e3982cbe2c5df4814bd2486220ee1937480705", "message": "Updating polymeshtool test.\n", "proba": 1.373295361872806e-07} {"commit": "25777afb24441f54edab1f9daa1bfc7a25c6d0ad", "message": "Work on unit test for regex_parser (preparing to refactor).", "proba": 1.1966699275944848e-07} {"commit": "e50e3a83c81dccd0c328a73dbae2d8fbb40c24eb", "message": "Fixed unit tests\n", "proba": 3.760616493764246e-07} {"commit": "526ab5325536f91c48867f4497f4b3dd4150f482", "message": "Fixed unit test name\n", "proba": 6.068652282920084e-07} {"commit": "67cc8a667e8c7584493f031a525f3399c3fda63a", "message": "adding better testing\n", "proba": 2.415714845938055e-07} {"commit": "e10743d9973f479a4d9816f4aafeaacaffa1bd4d", "message": "Use simple TestCase in spam filter tests.\n", "proba": 1.1588417692109942e-07} {"commit": "5ba1294d604b1df58f3c12db551a51684670b58d", "message": "Fix tests for wal-e restore\n", "proba": 4.704443483660725e-07} {"commit": "66c52c3ce0e273250cbb5e470ef4e0daadeac715", "message": "Leave two lines of separation between top level definitions\n", "proba": 0.01786063052713871} {"commit": "31b91f93319f7e60ba3cda2e5a6c0b59a005d940", "message": "Add test for assigning preorder index\n", "proba": 2.295187044865088e-07} {"commit": "ba144c900bb7f4c7fc2cf885ef29ce497ebf7c69", "message": "Remove time import *eyeroll*.\n", "proba": 1.3238098972578882e-07} {"commit": "08a4029e42aedc227f740aae936de58e763a2ac4", "message": "constants.py: add Offline error\n", "proba": 5.515414613910252e-07} {"commit": "c6d012a2eb584215e58832395a5e9032c0122da4", "message": "fix issue #4755 (#19234)\n\n", "proba": 1.5621488103079173e-07} {"commit": "70d2df9db5e9c57c0f70aac073c790d1c777a033", "message": "Stop using conn.GetStatus()\n", "proba": 8.13911924524291e-07} {"commit": "0639df26510ba12806777d76e86e8ee6fb871403", "message": "add types\n", "proba": 1.940140919032274e-06} {"commit": "65126e8939442a7ba02b7656dbc79c22fecfc808", "message": "Disables test and warns about bugged pytz version\n", "proba": 1.5457612789759878e-07} {"commit": "e8e06a9d1c688d7b56ccc1f8267ece7cb9a96d62", "message": "saluttest: silence the queue if we hit an error\n\nThis a backport of the Gabble commit ee177cfb2a13a8374e2f1037e806b7bc58aa708b\n", "proba": 1.429610620107269e-06} {"commit": "93d27ecbd702cec07f81b54c47768e44e863b842", "message": "reduce # of packets sniffed.\n", "proba": 2.0320312899002602e-07} {"commit": "6fd5d7ebcb4ecc8e1f0accc56d0ede35a5d0645c", "message": "rename self._subprocess to self._main_sp to allow addition of self._background_sp\n", "proba": 1.8818980606738478e-05} {"commit": "63dc72f4e45d249dc7cbccf9e721dc3ec07e2dc1", "message": "Hacks to allow running multiple tests per process\n\n* Pick a random port to create the server on each run (since\n IListeningPort.stopListening() isn't guaranteed to have freed the port\n by the time it returns)\n* Don't install the colourer more than once\n* Fix the colourer to deal with \"took $seconds\" misc.\n\nWe should probably try to consolidate these hacks with whatever gabbletest\ndoes, or maybe try to push more stuff into servicetest to make it easier\nto maintain, but let's wait until sofiasip has more tests before we start\ndoing that.\n", "proba": 1.1856940318466513e-07} {"commit": "f29ef67f456e18eccd639d2155bc553539d6f7a4", "message": "amend the url parameter\n", "proba": 0.00035113884950987995} {"commit": "94e5fe199a5798e7738b7be7105bed5b14f51df8", "message": "fix sws path\n", "proba": 4.2647047848731745e-06} {"commit": "cf436e45a41d149a8133eca8bb635496e4020df2", "message": "Renamed to \"Elasticsearch\"\n", "proba": 0.00044719368452206254} {"commit": "48817da8f35c7c2f22813d51b37ce3695bfac919", "message": "Done segmentation. Topological sort may come in.\n", "proba": 1.2461188703127846e-07} {"commit": "88f44b6d13a49641dc254fc7539d47743e26c0ae", "message": "fix ref\n", "proba": 7.277230338331719e-07} {"commit": "25b316ae1cc00d446aa3eb9c26f515a5d36cfb00", "message": "This will teach me to copy/paste as a starting point.\n", "proba": 1.0691257301687074e-07} {"commit": "435700fa97bb7eddb5e88c7031e8e401d72fb7fc", "message": "Flag unrecognized declarations in interface file\n", "proba": 3.335333360610093e-07} {"commit": "164011f8c5d6e52b9184310c1b767d228909d418", "message": "type fixed in species.py for collective correlation function calculation\n", "proba": 1.7400491003627394e-07} {"commit": "8e128bdd8ad6b4253f1c70716e6e405ff6099c86", "message": "Added ability to write new or updated config to config file\n", "proba": 2.018990556962308e-07} {"commit": "5454e2cf73106a5e9243e67dab287c5b781787d2", "message": "Added has_disease_in_gazetteer feature.\n", "proba": 1.1278732614528053e-07} {"commit": "06aa3a997cd86d16ba771cc17c4cc37c36fdd075", "message": "fixed ended and updated descriptions\n", "proba": 1.5963233579441294e-07} {"commit": "21dc3f8c73b03d0b25b35db6c73109359f05225f", "message": "Rephrase a comment in Resource.__init__().\n", "proba": 6.027299605193548e-05} {"commit": "ed99808929fb41a5da3f721721517b0efeb06b8b", "message": "Added Api service unit tests.\n", "proba": 1.1417387213441543e-07} {"commit": "7f0414d95d3ac38105244977481d7288d3bbff70", "message": "Updated version to be 3.7.0 in preperation for release\n", "proba": 2.448896623263863e-07} {"commit": "52b25d0c1d186e5659dbc256809125a207e47b4d", "message": "fixed error that prevented snaps from being saved\n", "proba": 4.799665020982502e-07} {"commit": "ef163a7046392a2be3765b06aedb3282849aa2f5", "message": "Updated billing tests\n\nAdded `bill_type` field to expected.\n\nUsed datetime to get current month/year since there is no guarantee\n that we will have historical billing data for the account being used to\n test.\n\nAdded bill_type\n", "proba": 1.2870623322669417e-07} {"commit": "826db6794d8bf60a238a39fa5fe61f1651dd2a24", "message": "Removed unused function/comment.\n", "proba": 1.1956592516071396e-07} {"commit": "df41fc7413f3d81066edb18c84335f3075732db6", "message": "fix test thing\n", "proba": 9.488489354225749e-07} {"commit": "190b9116ee7ad4da31995e40ccbb81447f26f525", "message": "[Trivial] chau comentario obsoleto\n", "proba": 1.668905582619118e-07} {"commit": "8d513ae133da3ae7c155227488f2fa13e29fb797", "message": "Removing unnecessary test case.\n", "proba": 1.7493196082796203e-06} {"commit": "2a55064e53df5e5dadc7e3ec2b276dac5c3830c6", "message": "#7 v2\n", "proba": 3.068200021516532e-05} {"commit": "0feb65383d5353460567fc2603e3149ebd58ca0a", "message": "fix empty as-path route printing\n", "proba": 4.57981195722823e-06} {"commit": "6c6be3226916873397f4eb4149d4d85a04d95471", "message": "Use os path seps in loader tests\n", "proba": 4.288030481802707e-07} {"commit": "fd47ad9a6a69a42f5ee8f16e02333045d6cccab6", "message": "Fixes bug on Python 3 because SystemExit does not have a message attribute.\n", "proba": 1.0952812345976781e-07} {"commit": "0163cb3047a53d6d5f17da1506f1ad896a28bd67", "message": "ServiceRestartTest: make it more resilient\n\nThe test spawned new processes to run services in, but didn't guard test\nsuite with due attention not to leak those processes into test\nenvironment.\n\nProper guarding mechanism is already implemented for another test,\nServiceLauncherTest. Hence it was moved to their common ancestor\n(ServiceTestBase) and reused in both test classes.\n\nCloses-Bug: #1382573\nChange-Id: If4ee7ed09696c3f5f3273f4d280c567b328ca75c\n", "proba": 6.351464890030911e-06} {"commit": "c3e1144c9ea43a43db1c5991e7d6fff7d5b79c4f", "message": "3.2.4 - Fragment expansion with value modifiers\n", "proba": 1.2996942189147376e-07} {"commit": "5ec7072b0c28a6765d08bcde315589276610e06b", "message": "smart_unicode renamed to smart_text\n", "proba": 0.0005190913216210902} {"commit": "d99bbecba263a7f77989ce9babde5f4cdcf68eec", "message": "Fix defect when only a single shared library is present.\n", "proba": 1.1201179006548045e-07} {"commit": "36c40043ef042950099b49bd0f42ed46dd963e90", "message": "Adding in max jobs", "proba": 5.178180799703114e-07} {"commit": "f5d549393ba48cfb1560282d60b71ddb9294635f", "message": "Revert \"turn off signing of packaged apps\"\n\nThis reverts commit 06b6c35be22bee5a5a42744c35ebc0e53818e6a7.\n", "proba": 1.1673181887772444e-07} {"commit": "055b9151b5d531a669bd98535018375cb2e13109", "message": "SIGCHLD does not interrupt system calls.\n", "proba": 2.1947077755157807e-07} {"commit": "4f9ef582a49e3beaa59b5a671ae8097585278957", "message": "If the run.outputdirectory GenObject attribute has not been created, try to use the general.outputdirectory rather than crashing\n", "proba": 7.508585326831962e-07} {"commit": "35fca6dd9a41235db9660dafeb30d77a45d983af", "message": "Handle creating a subscription if a plan is provided when creating a customer.\n", "proba": 1.4060658770631562e-07} {"commit": "0976c9cca9cae5d5091ab9d28b62eb6adbaba408", "message": "sketching out new class\n", "proba": 7.286535605999234e-07} {"commit": "895ffaa1a55ccf82d6a2565f421b882ecb6d7d39", "message": "minor cleanup\n", "proba": 1.7840027055626706e-07} {"commit": "d1d63447ac56ee0a310418254cfe23ac1af001a5", "message": "removed due_date as mandatory\n", "proba": 0.0004283403104636818} {"commit": "5bc52ca1bfb1ffd97bee19c503bc535b087f7f08", "message": "Releasing v1.0\n", "proba": 4.781107918461203e-07} {"commit": "81928e78b803b7d6c66299839f6db40f15e0a1e3", "message": "more var fix\n", "proba": 1.4718393970269972e-07} {"commit": "e7bd2bc22689e6073f88068cf1b1a6d901af1b10", "message": "Regex change again, add_tags instead of add_tag\n", "proba": 3.0085476510066655e-07} {"commit": "f2028e07386eb8b61e95ae672139b67f015445fa", "message": "replaced import of rule_classes with common\n", "proba": 7.002736310823821e-07} {"commit": "8e060b1415df480ea1ba9dc85b79ce541cadbdec", "message": "vys reading will set metadata to [A*A, B*B] to make consistent with vysmaw app\n", "proba": 3.877190829371102e-05} {"commit": "90bcb7c2b58a37b226d24ab9f2e9e7b943621d79", "message": "add elapsed time to resthandler\n", "proba": 8.826248631521594e-06} {"commit": "a86f917c91b751e8437d325412694e7b5dbfa536", "message": "added python3 support to read_label_file\n", "proba": 2.701040671126975e-07} {"commit": "dccc377111e1fa13e0da269642ca1b5aac90f1cd", "message": "patch: open clog as non-binary for py3 compat\n\nPython 3 is stricter about writing string content to files. This fixes\na py3 error when writing the clog file for Git.\n", "proba": 1.267145819383586e-07} {"commit": "97f99e5b65a614770afd8e9af576d5d8238f57e5", "message": "Fixed bug in gs\n", "proba": 3.164033728353388e-07} {"commit": "96498f8b454b647eed02dcc51c6bb24f9ffa4f0b", "message": "[riscv] add type annotation to fix rpython transl problem\n", "proba": 3.9652394434597227e-07} {"commit": "026a17650f3b005abd8d173077bc8a69f1de7c5f", "message": "Updated core plugin\n\nAdded a warning to the build system framework for when an import path\ndefined in a module's settings does not actually exist.\n", "proba": 1.0342851908262674e-07} {"commit": "4362e02eb9e319a46dce34a4fa4e235485ea3dba", "message": "added power of concatenate reversal\n\n", "proba": 3.2114359783008695e-05} {"commit": "d4e155aacbc0cb156742fbce227332f0a4844728", "message": "utils.lang.import_.module: Fix behaviour of module proxies on underlying module reload\n\nIf a reloaded module no longer has a previously-proxied attribute, it\nmust be removed from attribute proxy list.\n", "proba": 1.1900169027967422e-07} {"commit": "d936dec9bd0eb97f81941c24b26f190c91b11e3b", "message": "filter out bad MLs, positive-average eigenspectra\n", "proba": 0.9994831085205078} {"commit": "0b7939eceb667e786b9d01c5396604ae310fc9d8", "message": "Show pretty time in build status\n", "proba": 1.212900144764717e-07} {"commit": "ae5ee942627cd5ee794479e7cf59b4892be07c5c", "message": "Version 2.21\n\n__init__.py corrected so that namespace is imported\n", "proba": 4.519798437740974e-07} {"commit": "76886fd97ac053e3c6bd66a4da6674ada65630c3", "message": "Tightened up moon emoji\n", "proba": 0.0001929605787154287} {"commit": "4eb12aa81b9f39bf381eb2faa81fe8dfbd0644db", "message": "new website blacklist: bigclasses.com\n\nBlacklist requested by Ashish Ahuja @ http://chat.stackexchange.com/transcript/message/31739463#31739463", "proba": 1.8430866077778774e-07} {"commit": "cb1894cbd61eec3746989f3d3e4b67d1b5d18903", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "2191d296113438d431c47a8d864ba7ba8b6b30d2", "message": "ENH: In test, do not compute hull twice.\n", "proba": 1.6509666238562204e-06} {"commit": "111af439c901955add324512beac7a3b349107f9", "message": "change method signature of the react.deflate function\n\n- Accepts a single Reaction object, rather than a list of\nreactions.\n- Added some more function documentation as well.\n- Remove return statement, we are modifying a reference, not a newly\ncreated Reaction object.\n", "proba": 1.139627201496296e-07} {"commit": "c44ab63cf2eb505bee3a5491117c0deb5dfeb1b4", "message": "Improve phone number support regex", "proba": 2.0188886992400512e-05} {"commit": "beac4b7db6435c99b235199c1403250036aab64a", "message": "gpx IO statistical message", "proba": 1.1854446029246901e-06} {"commit": "4c9f22000c3600307ade5f4345a2d1eac77df11d", "message": "! Watch IP 107.180.54.250", "proba": 1.1994453075203637e-07} {"commit": "85ceba464c07207ed8ed290bd1e10c26e37047c6", "message": "Add more control over plotting in viz.py\n", "proba": 3.429522053011169e-07} {"commit": "1a0fa6a4f84e0847dd92d25f78b9f5cbd4f32d32", "message": "Bump version instructed by bamboo\n", "proba": 1.5244023643390392e-07} {"commit": "455ab27ad20397547bd01fa2714601d9b5a50d6e", "message": "Let's try looking at all-caps posts", "proba": 1.685314782662317e-05} {"commit": "c4fe3c65ea890b248bb57b7644afcdd0c6afd6b1", "message": "more packers movers --autopull", "proba": 1.1379579945014484e-07} {"commit": "6bf79e8cac583648f479a134255bd5d99d2b22c4", "message": "Update main.py", "proba": 7.280797831299424e-07} {"commit": "421ce99074e1b86ec5af1fe9d32f652353c18c93", "message": "Blacklist shopicheck.com\nhttps://metasmoke.erwaysoftware.com/post/38744\nhttp://ru.stackoverflow.com/q/560832/\n", "proba": 1.24336722251428e-07} {"commit": "4463621446558e99e80f84c0c16e38442ace8fbb", "message": "Honor requests for minimal lock count\n\nChange lock allocation in mcpu to honor the required minimum\nof locks to allocate in opportunistic lock allocation.\n\nSigned-off-by: Klaus Aehlig <4ce51de36d9068cd7db2eec1151e0f3f95419008@google.com>\nReviewed-by: Hrvoje Ribicic \n\nCherry-picked from f3f1fc574671d41fefb05661b01d4ff93312eef7.\n\nSigned-off-by: Klaus Aehlig <4ce51de36d9068cd7db2eec1151e0f3f95419008@google.com>\nReviewed-by: Hrvoje Ribicic \n", "proba": 8.745484478822618e-07} {"commit": "7b99b4af8582d4c78d13865791a9898ab7fbd61f", "message": "add link to tweet\n", "proba": 5.037484811509785e-07} {"commit": "c3aeccffd74bc6df40bd2e01e29e01f451a7ac15", "message": "Watch Domaincontrol ns59,ns60 --autopull\n", "proba": 1.2364874635295564e-07} {"commit": "64381ad70b72ac2638c73b0653b912f5cc8ca441", "message": "ChainOpCode is still BGL-only\n\nPrevent mistakes with an assert.\n\nReviewed-by: iustinp\n\n", "proba": 1.80980450181778e-07} {"commit": "5694c1eb69438c0aa0d0c3303753018f3c09e101", "message": "Displaying a nagios check should retain the information in the cache, not reset it.\n", "proba": 1.0931357508070505e-07} {"commit": "32e9a955917248e0cee7a120b67f5e475e6de8be", "message": "more phone de-obfuscation", "proba": 5.084302028990351e-05} {"commit": "ca1aa8a09501c5fb5810f146ec325a9b7cbed33d", "message": "Simplifications:\n- build_targets{} not needed\n- prep install{} in the first pass\n- store objects rather than names into install{}\n- change CLEAN_FILES generation to use objects rather than build_targets{}\n (and toss _filter_clean_files)\n- change shortcut generation to use targets{} rather than build_targets{}\n", "proba": 0.9999988079071045} {"commit": "437015854fb2334c83c3568b5628956b679ccf94", "message": "+1 new blacklisted website\n\nHas been used to spam:\r\n\r\niqdermaessentials.com -> https://metasmoke.erwaysoftware.com/post/37624", "proba": 1.820479980096934e-07} {"commit": "43d5c984f487ee4f1609d9492958482dddafdc53", "message": "* gen-make.py: Remove an out-of-date usage comment, in favour of the printed\n usage message.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@850335 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 1.3933515674580121e-06} {"commit": "79393a914f01acf2122677f3ed14499a7cbcf52e", "message": "Update findspam.py\n\nRemove caps-lowercase alternatives in lists since we're in case-insensitive matching (?i). Also shortened regex by combining \"nigga\" with \"niga\" in \"nigg?a\".", "proba": 1.3609121651825262e-07} {"commit": "d781638d499936ae6094bb596c0e5a88b52fc233", "message": "Sexualidades en la Escuela V 466-603-633", "proba": 1.650269467745602e-07} {"commit": "eda955bbff59a82171578bfe64a5cbbe989adde8", "message": "Fix PEP8: W391 blank line at end of file\n", "proba": 2.3285276711249026e-06} {"commit": "d0a93e950d70680c41959c517a68ee6fc0ce2138", "message": "Fix flaky test_robust_to_bad_sizeof_estimates (#5753)\n\n", "proba": 1.1019149496860337e-05} {"commit": "4f0b712c37ac91fdd12e6daf211243478991d478", "message": "bin: define: add altera bitstream suffix, rename xilinx define\n", "proba": 1.7034584516295581e-06} {"commit": "af35a453a8e9cae8f3a6b2ce67a3d468a1b0fb42", "message": "Added param to gen_file script\n", "proba": 2.844527102752181e-07} {"commit": "ed957a5b989e554197d4bed6e93b54777f9093a8", "message": "Added ability to generate only certain characters\n", "proba": 1.696207476697964e-07} {"commit": "7a36f9581d2a5eeb1e9e7b1926acbac4708926b5", "message": "Fixed #8086 -- Removed 2.5 specific keyword argument to __import__. Thanks CHasenpflug for noticing this.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@8188 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 9.142752332991222e-07} {"commit": "6abdf198f89538a785c25137054510125190401f", "message": "Added a test for [6889]\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%406890\n", "proba": 2.8541083452182647e-07} {"commit": "3f7113f1d976a9bd668afd8114269e8c594dd842", "message": "Fix timezone warnings if USE_TZ=True\n", "proba": 0.9999992847442627} {"commit": "df1796b13fd0e36253166c47adcfda39ba0ea3df", "message": "Removed unused branch in SQLUpdateCompiler.as_sql().\n\nUnknown if it was ever needed.", "proba": 1.1239058039791416e-07} {"commit": "416c2e2fafe6f0dbddf79bef6f6dbb90b04ceedc", "message": "Removing an errant code part which used an undefined variable\n\nThis cleans up a code fragement left over after a refactoring and now pointed to an undefined variable. It has no practical use as far as I can tell, so removing it.", "proba": 1.6715098638542258e-07} {"commit": "bb06b49ddb83270761221f799918d63572260257", "message": "comparison lookup operators for fp types\n", "proba": 2.470201536652894e-07} {"commit": "5aaf11d8e653782faecc0e1a05a9a4f1e512f324", "message": "Added locale middleware.\n", "proba": 1.2303003416036518e-07} {"commit": "9064d44154aa8b3599883bdaad37995f5b973202", "message": "helloworld5\u306b\u5909\u66f4\n", "proba": 0.00021707906853407621} {"commit": "d5cb880f7748a1530fe77795783582a271cc5872", "message": "Serve static files when running internal test server\n", "proba": 2.7113742362416815e-07} {"commit": "58652d9d20d1039fd1a6d8e6a6f03a054eb316e9", "message": "heroku link\n", "proba": 2.55985099784084e-07} {"commit": "9d00fab3712462fe8fb28a67c5142e9f7ba24efa", "message": "pep8, removed calls with unused results", "proba": 1.0671800509953755e-07} {"commit": "94164c0ae6268fdb9fe9a3c68da66122cf045e1d", "message": "if file is mp4, copy to desired location\n", "proba": 4.31282614954398e-07} {"commit": "00ec72ed8a5f15a8da695c44aed490159bcd1daf", "message": "bump to version 4.3.0\n", "proba": 2.500719062936696e-07} {"commit": "f3a1f210d768c64cd8ead37b3db74a1880eb1b3e", "message": "bump version to 3.0.2\n", "proba": 5.233491719991434e-07} {"commit": "2983fb6a70db4984cd608d30985defae054cb316", "message": "codacy fixes\n", "proba": 4.0247223864753323e-07} {"commit": "834cbb1af313e68b88a6be2ba9474f2c54d21ae3", "message": "Change log line from info to debug\n", "proba": 2.426546075184888e-07} {"commit": "f0a00321c10931c3b7163be73940af865a047a5d", "message": "Update ENTSO-e TRansparency read function\n\nRead data for all available geographical concepts (i.e. countries/bidding zones/control areas), instead of having to decide for one, but eliminate duplicates where these concepts are identical.\n", "proba": 1.0667160665889241e-07} {"commit": "4c096cb2cf4133ccd7a389cb9ce653d6df76cef8", "message": "Syntax updates\n", "proba": 1.4703412034577923e-06} {"commit": "8630db210b0c63225ebd675382650b1d55b072d2", "message": "Updated zed image return\n", "proba": 1.6217400400364568e-07} {"commit": "56c3a84db397fba690d704f0d07308c4214df2ce", "message": "Update type hint for `register_notrace_module`\n\nregister_notrace_module is used to decorate types (i.e. subclasses of nn.Module).\r\nIt is not called on module instances.", "proba": 1.0880850709327206e-07} {"commit": "43f5ef29d3812cbc5bb67c6dc065a9f0cf5c0ce8", "message": "doc comments on generator\n", "proba": 1.6509558520283463e-07} {"commit": "37a84d826a9e8bbd218fa414345cb8fba79d39b6", "message": "Make delimiter shorter\n", "proba": 0.9999994039535522} {"commit": "098dfe62836e58cab835b82e748d7e5afc4511be", "message": "fixes #16\n", "proba": 1.4691832461721788e-07} {"commit": "70239aab85e3b21f648464a9a1fcd78bf2fc19fd", "message": "Hide public content for logged-in users\n\nThis is a temporary fix to simplify the interface for new users.\nEventually, we should have public content be availible for all users, but\norganized in a non-intrustive location.\n", "proba": 1.220756331576922e-07} {"commit": "df8a95bc5a8a3a45105485f4430f393727d19b0d", "message": "Make all users considered active\n", "proba": 0.00013745133765041828} {"commit": "4b26b394a253865ab1217e4d4a5435c60ed7dde6", "message": "bugfix for assertions\n", "proba": 4.788915362041735e-07} {"commit": "46777a25767645b924d203ea3de298d4528e0cf2", "message": "Fixing failing test.\n", "proba": 5.469983648254129e-07} {"commit": "9f155d5bedfb53552f49e9a5cce843d83df35b7a", "message": "light backgrounds should have tighter restrictions to avoid too heavily saturated colors\n", "proba": 3.589956065752631e-07} {"commit": "90cba508ebbfb966d8cd4f86c087bb5e66853106", "message": "Fix _allowed_exit_message default.\n", "proba": 2.142371329227899e-07} {"commit": "e0ccc3bc7ab0e9db82ad4456ae28e6ecdf679d75", "message": "added version.txt creation from git log via fabric\n", "proba": 2.1790243920349894e-07} {"commit": "283f894e0162139e66289ee6ab980b15415bbf71", "message": "Remove two exceptions\n", "proba": 0.9999983310699463} {"commit": "671f3b8ca1e309ad23670b2f172f31b49dd3cde9", "message": "germanet: pylint cleanup\n", "proba": 2.103308816003846e-06} {"commit": "406fbfb4f0759bcd494a986287be035359b659f5", "message": "time --> day & hour\n", "proba": 1.0164092600462027e-05} {"commit": "42c1fee6fee730c7de959b8bdd60216d23926a5e", "message": "Delete Articles \ud83d\uddd1\n", "proba": 2.1201881850174686e-07} {"commit": "58960957c30b6ca0137c32587b9881958c982c8c", "message": "Adds _id to publicly ignored fields\n", "proba": 2.8647900762734935e-07} {"commit": "b37e9d1cc315e04d763b646bb028612b86768d37", "message": "Update migration sequence after rebase\n", "proba": 2.24135646931245e-07} {"commit": "86eabe37e1d7021c5034b70759c8a7b96597504c", "message": " internal cleanup.\n\nPiperOrigin-RevId: 269980702\n", "proba": 2.514618699933635e-06} {"commit": "553902c844ad1cf592c466a5ee032ecbb37d2650", "message": "Support empty browse list.\n", "proba": 1.26995487903514e-07} {"commit": "33ba079d702682fdae1b7d69ac361e3c685df5e8", "message": "Fixes default kwargs\n", "proba": 4.740979022699321e-07} {"commit": "8b84966741ed9a017ab8a4da5cfc17ecc5d48b9d", "message": "found that over 80 letters\n", "proba": 0.037220701575279236} {"commit": "6b64f06eb539481380bfeac88b7d55d42e400d8d", "message": "checking if config-file was passed\n\nsvn path=/trunk/; revision=964\n", "proba": 2.272092388011515e-05} {"commit": "94ad338271d69ca28f9722cf2cf67b164920eb49", "message": "More updated to wiki API generator\n", "proba": 1.1999497928627534e-07} {"commit": "8d7a3d73f208fbdd0927e203402ba59a713aaa1c", "message": "Update deprecated time.clock\n", "proba": 1.0402088264527265e-05} {"commit": "4f45224f0241b6da65515e6c67b598cfab6235b0", "message": "drivers.ec2 create_node docstring (ref: LIBCLOUD-7)\n\ngit-svn-id: 353d90d4d8d13dcb4e0402680a9155a727f61a5a@907891 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 1.1561884321054094e-06} {"commit": "a63ed21574d0721bb553704139fd2cb96963f3a0", "message": "Add method get_commit_history_for_file() to return commit history by all authors for a file from start line to end line\n", "proba": 5.747306204284541e-07} {"commit": "b2c96e989cf8de819903317daee85665111aef8a", "message": "Add b-prefix to string literals passed to file.write()\n", "proba": 2.513323806851986e-07} {"commit": "64f3d7569fa43a4f27fdfc001d4db93e83f4b76e", "message": "This should add the room dir to the sidebar on all platforms. Fixes #2\n", "proba": 1.387610808478712e-07} {"commit": "eb8f76ed3800b89f3bfe9607baf3835f97d4e4a8", "message": "Forklift S3 operations should not validate the bucket to avoid requiring additional IAM permissions on bucket root\n", "proba": 1.306165415826399e-07} {"commit": "c5ab4ea8b411b1cb88c54a820d5211c688897277", "message": "make class external, add method to get size\n", "proba": 1.4566410300176358e-07} {"commit": "7b4f376680dd4833dba58048ff9c70226e5066d4", "message": "Proper relative import needed for Python3\n", "proba": 4.6538272613361187e-07} {"commit": "14cc06e190c164471e8d96b471deeedf9d7c950a", "message": "Fixed bug with list indentation levels.\n\n\n", "proba": 1.1402327260157108e-07} {"commit": "45bc80f36cfc6021b95d709524aa0bdcd2bb8db3", "message": "Fixed bug with list indentation levels.\n\n\n", "proba": 1.1402327260157108e-07} {"commit": "a881241230fb384a72dbe8f5ef8ef30eda18cf56", "message": "local/domain/cri/test_domain__CRI: remove superfluous semicolon\n", "proba": 0.9999992847442627} {"commit": "a13aedc1cbc0239bbde09b30d08e29890312bf17", "message": "temp chng route\n", "proba": 8.848869015309901e-07} {"commit": "72119a3c1e34e7b5aace047b38b37d9deea54055", "message": "Make run_application callable from other code\n", "proba": 2.3152242647483945e-06} {"commit": "c5d935c0b3e957ab95ee3f1ca06df5a4a5a7123f", "message": "Add more documentation for diaspy.people.User()\n", "proba": 1.2744852995183464e-07} {"commit": "8999b217c9fc8d5df593d0745b0da41affc7808e", "message": "added re.search to imports\n", "proba": 2.002963412905956e-07} {"commit": "683944640d44b7c009b01d267ffdf711ee14f69c", "message": "May not run, added some code for division support.\n", "proba": 1.0055428845134884e-07} {"commit": "eb2e75b36b140c7fa0ee2165554a1770944a6e83", "message": "Fixed qooxdoo path\n", "proba": 8.326230727107031e-07} {"commit": "5de9809a21f9dc212d5378fefe93db831eb26be7", "message": "Return a dict of ordering components when ordering\n", "proba": 0.00016181819955818355} {"commit": "af8672c0777af3da68843e0e1982af948cbf946d", "message": "Changed species label to SMILES string\n\ngit-svn-id: 38f1702c2d2bc28f7341d40983eddaad0d99b903@145 37378900-1858-4726-a06b-e54562fdc990\n", "proba": 0.0070191496051847935} {"commit": "3fea697ba566c21b78bb1dbd97a88c5be7e0b3d2", "message": "Add versionadded string for Emoji.url_as\n", "proba": 1.4070671568333637e-05} {"commit": "934456035ea5b213ccc009525ec0dec573e3ce9a", "message": "Change VerificationLevel, ContentFilter to be IntEnums\n", "proba": 8.990345122583676e-06} {"commit": "3a24cda92727ec523dac3eb9808973a334c36f2b", "message": "Faster implementation of Guild.default_channel.\n", "proba": 1.1720635484380182e-07} {"commit": "148816c4e8316c2bcad49e81882d8a180734154a", "message": "Temporarily add created channels to cache.\n\nThis should fix issues when doing a `abc.GuildChannel.edit` immediately\nafterwards and then when the corresponding CHANNEL_CREATE comes in the\nchannel instance should hopefully be overwritten by the authoritative\nfigure, the WebSocket.\n", "proba": 1.0411692130674055e-07} {"commit": "d98ee567d4ad5e31fbbb9787e86b4125d8bd9431", "message": "Add Guild.forums property\n\nRan an informal poll in the official server and this name won over the\nalternative Guild.forum_channels property name\n", "proba": 1.2316951369939488e-07} {"commit": "84f1342b858366f9f65d528756125a0407c2beda", "message": "Fix chunk requests not actually being batched.\n", "proba": 1.1475920302927989e-07} {"commit": "bc75945088cae248d96abf455337b2e60c2c9198", "message": "Add format_dt to utils __all__\n\n", "proba": 5.756879545515403e-06} {"commit": "ca628eb33583331368b02c889748dac7cb049efa", "message": "Fixed bug where study event repeat key gets passed as None\n", "proba": 3.26798835885711e-05} {"commit": "66fbdcf9a78ff2219d6a70c65f598b5536122b07", "message": "app.rw_settings -> settings\n", "proba": 5.432935950011597e-07} {"commit": "3b7359628bccd976140554f4c94f5cc33c091cbb", "message": "override FileField's max_length\n", "proba": 7.160472819123243e-07} {"commit": "578b165f1a8c949a318c05ec26ca5a0a0af580b2", "message": "Add trailing slash to LOGIN_URL\n", "proba": 5.127353233547183e-06} {"commit": "06b212519c51dd2fb72cd113f1017b01258307fe", "message": "Add GitLockError exception class\n", "proba": 3.255029810134147e-07} {"commit": "7b8e8529957d9f1e40ff0d1e417b37ca010ed7b5", "message": "Fix syntax error\n", "proba": 0.0005845880368724465} {"commit": "ed0b467451e5cdf9843d5090ca83c52f9ace75c5", "message": "Fixed guide link in the menu. Updated navtrail.\n", "proba": 1.0448734855117436e-07} {"commit": "63e8b5f1961517acd803f7966a1dcb5dc6cb9335", "message": "Increase copy summary limit to 450 chars\n", "proba": 2.1162854579870327e-07} {"commit": "804d0c7dad99b9c652442708a56e2d0734ab4da8", "message": "Made csv export test less brittle\n\n", "proba": 1.7084501280351105e-07} {"commit": "e9037d8fc0d001087c4d0463ee876af06349d028", "message": "make EntityLinker robust for nO=None (#7930)\n\n", "proba": 0.00019100995268672705} {"commit": "b189453548d3b6c9926e92c7c40f3a8f303ffcfb", "message": "Drop Py2 and six on salt/fileclient.py\n", "proba": 2.902467883814097e-07} {"commit": "8723d4332ac502f8ab508af9154dfb83b58856f4", "message": "use HDLModuleParameter\n", "proba": 5.624191317110672e-07} {"commit": "c4b26b18343d6eb5560859e8c260bf46d020af5a", "message": "Reformats tagvaluebuilders.py to conform to pep 8\n\nSigned-off-by: Ahmed H. Ismail <17be99835f39b7679f83bf2695d44e1f53f60100@gmail.com>\n", "proba": 1.022906417347258e-07} {"commit": "0e88fbdb7f5c58245d07113603aa7fd59c0b0046", "message": "Remove \"env\" keword arg references from cp module functions\n\n\"env\" has been deprecated in favor of \"saltenv\". This is already\ndocumented in the Carbon release notes.\n", "proba": 1.0234919045615243e-07} {"commit": "3407880a9d877308adb529d43bd25030058429cb", "message": "Fixed bug based on issue: vanilla command line run fails #47\n", "proba": 7.272651032508293e-07} {"commit": "3690530d957fb1f3d4342a959a1145df3bbe267f", "message": "feat(#199) Bundle trackeback too with the exeception headline\n", "proba": 1.2917757885588799e-07} {"commit": "5c6b4742437eca95270a2d3d0d22d64c8bfe783b", "message": "add 'cock ass' to joshisms", "proba": 0.9999957084655762} {"commit": "fabad2dcc313deabb8210fd7e0a359dc77317fe1", "message": "make variables protectedto reduce need for friend decl\n", "proba": 3.9625442127544375e-07} {"commit": "5c9d794e01139cbbcd2dc6ebdd4521d1015b8432", "message": "salt.states.lxc: pep8\n", "proba": 2.1194142391323112e-05} {"commit": "6f03d06cc7c0137f66ae10e93881822526e9c889", "message": "Restore old refresh logic (#34098)\n\nThis was erroneously changed in aa29744, causing a refresh to not be\r\nperformed when refresh is set to None (or not passed to\r\npkg.latest/pkg.installed states).", "proba": 1.0528516725116788e-07} {"commit": "3d4c354e5106f097e40606a5a470a59ce995679c", "message": "fix issue where pkg passthrough is broken\n", "proba": 2.720205998230085e-07} {"commit": "762968827d8a358d691d1287e498d004550a06e3", "message": "fix casting to int\n", "proba": 1.2696742714979337e-06} {"commit": "fcadf900fca46ffee34eb2b9d96e4236f1b10676", "message": "Fix the sphinx syntax for the example rvm state\n", "proba": 0.9993178844451904} {"commit": "85e71699b0158db17aac54f42ec9730fb3288399", "message": "fixed identation problem\n", "proba": 7.667514410059084e-07} {"commit": "f27da41b714a833fcd601eccd2c8d84d308991f9", "message": "Don't require the decode_out file to already exist\n", "proba": 2.644970891196863e-07} {"commit": "5f0dc94105566a8751d46485f4354724ee5ec5e5", "message": "Fix client-side cert handling in http.query\n", "proba": 1.2861841014455422e-06} {"commit": "edb1687d195651ac09b60e837f8908180d9a1122", "message": "Switch `open()` for `salt.utils.fopen()`\n", "proba": 1.8881098640122218e-07} {"commit": "9ba4ba9094ae4ae29e6a1a73ed087cc54f5b1a6a", "message": "Minor fix\n", "proba": 4.2334357885920326e-07} {"commit": "8ad536cb696fd772f2b9eb1c7084dd75e9a7a40b", "message": "amcache: fix syntax error", "proba": 1.8262788898937288e-06} {"commit": "68a31b15752df038648ce22a5c9affd1b8cfa07b", "message": "Add chrome.gyp:unit_tests, make it work on the Mac.\n", "proba": 1.0931274374570421e-07} {"commit": "20b6d2fdc4e2154d54bd52b34b341809e7560ba5", "message": "Add the filter utility in copyABC.py\n", "proba": 1.2968010878466885e-06} {"commit": "41d648dd72ddb393e44d13f7cb1de7d97d88fdaa", "message": "Uppercase notices for ease of use\n", "proba": 8.539344094060652e-07} {"commit": "1d051e4fe78579cd6af82d7253472dcf42774d6a", "message": "code.iterBits for all types", "proba": 3.3875471672217827e-07} {"commit": "6ff01bf71268db02795108384b082bf0494038dd", "message": "Tweaks to printing. ", "proba": 1.1553282774912077e-07} {"commit": "9c031a09a2e8b981c507a0f332dddbf60e1e497c", "message": "fixed output table sort columns\n", "proba": 1.8154472854803316e-05} {"commit": "e015d64c1ccd606db36f0a5a6bf9170ebbc11fdb", "message": "github work is currently timing out :(\n", "proba": 1.2740963484247914e-07} {"commit": "952a638582edae8fa855a2bbf8d7b0098f81058f", "message": "Add Deezer support to the sharelink plugin (#858)\n\n", "proba": 1.0526628813067873e-07} {"commit": "c7dc78e1ef8a8aad418a415c5f86a68c8878f7bd", "message": "Log, don't stack it.\n", "proba": 1.2657326919907064e-07} {"commit": "d6a7bef9cb1259ccefe033c9e5735d680d2a2fb5", "message": "cleaned up\n", "proba": 2.417453288217075e-06} {"commit": "8a88e346abfbdbaa68b5bf80853c1ebe3a1dd503", "message": "Enhanced documentation\n", "proba": 3.0587830224249046e-07} {"commit": "7aaf12f92c2361069e4c99defa62185ccdb139f0", "message": "deprecate 'ymir load' and bugfix for 'ymir help'\n", "proba": 3.057403432649153e-07} {"commit": "a33c7ffd076597b139741d00b678eb5786c84d7d", "message": "Skip pyc file\n", "proba": 2.4080713956209365e-07} {"commit": "34e6b4ec87546f1f5e0187af8d52204a0ce7ffbb", "message": "version 0.4.6\n", "proba": 1.6838469036883907e-06} {"commit": "c2f46d2ed2093f2c3f5dd6d49eb493c7ea634c63", "message": "fix import again\n", "proba": 2.1139817363291513e-07} {"commit": "24d3fe816d650b843aa3adeb4cb209f68a129294", "message": "RF Move regex into only function that uses it\n", "proba": 5.421590572041168e-07} {"commit": "dbc5f8a07a1d69d78e7fb5589f37e20b2f18414f", "message": "Now prints out submission id+score, ordered by both id and by score\n", "proba": 1.4005628656832414e-07} {"commit": "1bdd3937a19a9e0152984fbd4e000710d5658a42", "message": "NEW: test for not fitted cases\n", "proba": 2.0898274044611753e-07} {"commit": "b9e3519c74206e3642eb8724394d5c9c30beda35", "message": "Added more links to wiki.\n", "proba": 1.0677786832502534e-07} {"commit": "f170d1981da8b594e4e19ae4532fe1e5af2eb6fe", "message": "Adding in a create-if-exists logic\n", "proba": 0.0008633494144305587} {"commit": "9d3c6e606bff2cc1435220f041945edbf6ad1988", "message": "fixed comment\n", "proba": 2.0213602169860678e-07} {"commit": "917f5f1b9b4d6c260019cd446f17f7b18cfcd703", "message": "before removing np.zeros()\n", "proba": 2.1871241187909618e-05} {"commit": "b43caa50cc433ed1f0f9b38915bce769233b5719", "message": "Adding class_data_ptr member for class wrapping\n\nSet this up to point to the address of class_data. Updated wrapping\ncode to pass this instead of the address of class_data. This is in\npreparation for trying to wrap class pointer return values, which\nhopefully can just set the value of this pointer. This update\nalso simplifies the code generation, since now argument passing is\nmore consistent with that for TYPE data.\n", "proba": 1.3351372274428286e-07} {"commit": "dbe1e628fd9706ad8f5e9df76fe340fa0841386a", "message": "Fix a problem someone had on the mailing list with South picking up on generic relations as real fields.\n", "proba": 5.407215439845459e-07} {"commit": "e04e58f6e0ceb912a894aad875c8f9e9633677d5", "message": "Generate friend declarations only when needed\n\nOnly generate friend declaration when needed in a class beause it\ncalls the pointer constructor for another class. This aims to\nsimplify generated wrapper code when wrapping a large number of\nclasses (otherwise, we'd need to either make the pointer constructors\npublic or friend every wrapped class).\n", "proba": 4.209537962651666e-07} {"commit": "a96ab7cef3310345ea1b41ac67ff4aec2a1f2488", "message": "Update couchm.reactor.py", "proba": 4.6009816401237913e-07} {"commit": "1b2f9e6fde87b083a3a9cb01cc9fbc826050037e", "message": "support python 3.X\n", "proba": 0.004115001298487186} {"commit": "5cc2c63f902412cdd9a8ebbabbd953aa8e2180c0", "message": "Fixed typo in tests/forms_tests/widget_tests/test_clearablefileinput.py docstring.\n\n", "proba": 1.2006881888737553e-07} {"commit": "c1d278733479c01aa339afb166ca0947aa362e7d", "message": "Added tests for math adapter.\n", "proba": 1.2192600706839585e-07} {"commit": "f01a653f0743e400f04820b04a8d4edddf127a78", "message": "Restablished test 73 - do complete Redis test.\n", "proba": 1.0875331923898557e-07} {"commit": "ec7700b42ae50356028f0626d01275c6de6112c4", "message": "Before starting chat log extraction, check that all specified input files exist as some protection against getting input and output the wrong way around.\n", "proba": 1.1071863781353386e-07} {"commit": "3fe65a5f29fe419002ce7acb3114aecdf2f43b85", "message": "Fix TestAri using stubbing\n", "proba": 5.319142815096711e-07} {"commit": "00b287926ac866069179b4b60b5ee3fd5cb5e75f", "message": "Updated version number to fix conflict.\n", "proba": 1.1221600715316526e-07} {"commit": "8a6b4e9325826972cf1d95731e56e62990b3d9b4", "message": "Correct bimaster\n", "proba": 0.006935022305697203} {"commit": "f873421eb50a3919d4ce1efaa8344131a9ac7406", "message": "bugfix\n\nbzr revid: fp@tinyerp.com-20090109065928-w2a6ygqy5qr3guem", "proba": 4.0686825286684325e-07} {"commit": "c3b4b65915f46b5aaebf6ba1a9af5cc8dff4282b", "message": "FIXED: Deleting wrong number of previous backups\n", "proba": 3.2913550285229576e-07} {"commit": "0443954d74f2da98d6eb52387472a18b44e1a803", "message": "Added timeout, max_redirects.\n", "proba": 1.2103637914151477e-07} {"commit": "360a702ecdf468bcdc7e14906d09cdfe1860e764", "message": "Add parent argument (#11210)\n\n", "proba": 8.651059602016176e-07} {"commit": "9cbc4ea9401d6b9b6b433704594f670423123fc0", "message": "fix syntax\n", "proba": 2.335806129849516e-05} {"commit": "5a373e6c7b861c8f27798a7b009ed97cb1f53dd3", "message": "framework/host: Calm pylint\n", "proba": 2.523781574836903e-07} {"commit": "f5f4294bdfd02146c56643096d1d145f99639d7b", "message": "fix check_path_exists\n", "proba": 2.874603296731948e-06} {"commit": "cb73cc2c3b9a77cf4bd601578cf5aacc37a22133", "message": "Various fixes, new universal sprite class", "proba": 1.27666766047696e-07} {"commit": "9b443a4e88cfdc29fe153847974e8e24d4bc8d4f", "message": "Make msvc.py behave itself when other toolchains are loaded\n\nChain down to the pre-existing Task.exec_command() implementation\nif task.env.CC_NAME indicates that the current taskgen isn't building\nusing Microsoft tools.\n\nIssue 1237.\n\nSigned-off-by: Thomas Nagy \n", "proba": 3.1226895202962623e-07} {"commit": "764de10cb1c14a17920d38a91745825e327ca815", "message": "Fixed a bug in contrib.filetransfer\n", "proba": 3.217196535842959e-07} {"commit": "3899613479e20c04fab8ce34cda4719fcfeee56a", "message": "developing\n", "proba": 1.0944079349428648e-06} {"commit": "426ba4d1878a95afb5bd1833d1a0be5a54995b6c", "message": "OTHER: Make unittest.py run for python3\n\n(hope waf doesn't kill it soon)\n", "proba": 1.2590869857831422e-07} {"commit": "282167233650a634431d5ba337f0f4d533f6522c", "message": "Better partial support\n", "proba": 2.025416421247428e-07} {"commit": "14b056751e42b83adba41ccab9de59d13910509f", "message": "properly cache lookups in cppyy.gbl\n", "proba": 4.403327977797744e-07} {"commit": "16f537981b8e582b7c99bb729f01d966459a4c4f", "message": "Verified @track fix\n", "proba": 1.6638124122891895e-07} {"commit": "a24acf279e5c1caa06c00d139742bbb7943c3ea8", "message": "Better handling of OAuth errors.\n", "proba": 1.3683693111943285e-07} {"commit": "b834da47945e8c920d8202fc10449e63c51fbf92", "message": "Ok, this is a larger change.\n1) debug with pydevd fixed (settrace called after curses init)\n2) ^C will exit the program through normal means\n3) Undo implemented\n", "proba": 3.1564639357384294e-05} {"commit": "035a7cc15cc721d444589067d8d24b713f765c55", "message": "Add new flag --no-localizability\n", "proba": 7.580566034448566e-06} {"commit": "410da6d73549477aee59798bd56f93115f890d29", "message": "fix python setup.py\n\ngit-svn-id: 0f340b5413dfe41c73e779333638e6920713caeb@10230 a83610d8-ad2a-0410-a6ab-fc0612d85776\n", "proba": 0.00018904227181337774} {"commit": "b3e92a32affee41b19fa2aaf717545f27d5cca11", "message": "update cli help string\n", "proba": 1.0684285371098667e-05} {"commit": "5add757c7141b258f1fd0a3cdb51fa105cbe5b2a", "message": "Unescape string params only in proxmox_user\n", "proba": 4.097165344774112e-07} {"commit": "304aedaccd8d1bfc1048d152ad6dd911bbc511ce", "message": "fixed typo\n", "proba": 2.684115770534845e-06} {"commit": "17dfd3a1b6d81218da373ddbdc7fc274b1368ac3", "message": "add --do-not-build-core to setup.py to prevent it install core library\n", "proba": 3.308468592422287e-07} {"commit": "fedb36688dbf05521966ee22e831283f0967d17a", "message": "library: fix bug in radosgw_zone.py\n\nIf for some reason `get_zonegroup()` returns a failure, we must handle\nand make the module exit properly instead of failing with the following\npython trace:\n\n```\nTraceback (most recent call last):\n File \"./AnsiballZ_radosgw_zone.py\", line 247, in \n _ansiballz_main()\n File \"./AnsiballZ_radosgw_zone.py\", line 234, in _ansiballz_main\n exitcode = debug(sys.argv[1], zipped_mod, ANSIBALLZ_PARAMS)\n File \"./AnsiballZ_radosgw_zone.py\", line 202, in debug\n runpy.run_module(mod_name='ansible.modules.radosgw_zone', init_globals=None, run_name='__main__', alter_sys=True)\n File \"/usr/lib64/python3.6/runpy.py\", line 205, in run_module\n return _run_module_code(code, init_globals, run_name, mod_spec)\n File \"/usr/lib64/python3.6/runpy.py\", line 96, in _run_module_code\n mod_name, mod_spec, pkg_name, script_name)\n File \"/usr/lib64/python3.6/runpy.py\", line 85, in _run_code\n exec(code, run_globals)\n File \"/home/vagrant/.ansible/tmp/ansible-tmp-1610728441.41-685133-218973990589597/debug_dir/ansible/modules/radosgw_zone.py\", line 467, in \n main()\n File \"/home/vagrant/.ansible/tmp/ansible-tmp-1610728441.41-685133-218973990589597/debug_dir/ansible/modules/radosgw_zone.py\", line 463, in main\n run_module()\n File \"/home/vagrant/.ansible/tmp/ansible-tmp-1610728441.41-685133-218973990589597/debug_dir/ansible/modules/radosgw_zone.py\", line 425, in run_module\n zonegroup = json.loads(_out)\n File \"/usr/lib64/python3.6/json/__init__.py\", line 354, in loads\n return _default_decoder.decode(s)\n File \"/usr/lib64/python3.6/json/decoder.py\", line 339, in decode\n obj, end = self.raw_decode(s, idx=_w(s, 0).end())\n File \"/usr/lib64/python3.6/json/decoder.py\", line 357, in raw_decode\n raise JSONDecodeError(\"Expecting value\", s, err.value) from None\njson.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)\n\n```\n\nSigned-off-by: Guillaume Abrioux <30a9df5a0293a6108675377fa1673f7aa713f915@redhat.com>\n", "proba": 0.9992626309394836} {"commit": "65deb66322d456d1f3f9580487263a4dd6357cfd", "message": "fix python setup.py\n\ngit-svn-id: 0f340b5413dfe41c73e779333638e6920713caeb@10230 a83610d8-ad2a-0410-a6ab-fc0612d85776\n", "proba": 0.00018904227181337774} {"commit": "ab9f20fd81d63e9c8995ab881e745093d20dc1e0", "message": "Added test where log device != data device\n", "proba": 2.758838206773362e-07} {"commit": "cba228e102c4534cd0ba24188d2b75cb05aa2a34", "message": "Generalized (de)serialize_uint256 to work with any sized hash value.", "proba": 1.160883655870748e-07} {"commit": "cd489d1b859b7dbe796c27d2211b1943f931d568", "message": "Fix simplereader bug\n", "proba": 5.876539944438264e-06} {"commit": "2e60b931b23f7b55c490be50e5f70537454259cd", "message": "fixed pipista\n", "proba": 5.785989856121887e-07} {"commit": "d49d93e46390c6df388d1a3b0cf582fbbecc18d7", "message": "add (untested) ProductDistribution mean field stuff\n", "proba": 2.121328890325458e-07} {"commit": "1e9313cd3eb97e0ed8a85b031652433b74ab0e73", "message": "mq/rna_mq_collect.py: if in ignored files error, run again\n", "proba": 7.582696639474307e-07} {"commit": "2f5a4857d6857ac911362c091fc534c167d0cd3b", "message": "Faster pagerank with scipy.\nFixes #665\n", "proba": 1.2731587162306823e-07} {"commit": "2d47313341888f6f96df67f11a5850245850daf8", "message": "initialize models even if optimization is turned off\n", "proba": 5.667675395670813e-07} {"commit": "50a6da1ac8c518e2346ebb2d366935529a52f236", "message": "Added preliminary enum support to the scrubber editor.\n", "proba": 1.0640601999512e-07} {"commit": "e740073e617eff1fbcfc3e910fb4d0d8ea47d88d", "message": "Re-submit \"ML2 plugin should not delete ports on subnet deletion\"\n\nThis patch was previously merged:\n\nCommit: 0d131ff0e9964cb6a65f64809270f9d597c2d5d1\n\nAnd reverted by this commit da00ed76e6008bd06dada0f0441ae436dd759cdf\nin order to check if there was a relation with the gate failures.\n\nChange-Id: Iacb4de8d9aa6a6cbe32c4f41fcf2657f2d09e6e2\n", "proba": 6.2442290982289705e-06} {"commit": "ea9303566b7d346341a0e7eefa989c126168b33d", "message": "[vm] Allow choosing architecture for runtime sources in generate_idefiles.py.\n\nChange-Id: Ief2207192c6540eed3a335e0db9d91f8cf773538\nReviewed-on: https://dart-review.googlesource.com/c/89145\nAuto-Submit: Samir Jindel <5720a19f3a84f5405fa0776737a4149175e41e6a@google.com>\nCommit-Queue: Samir Jindel <5720a19f3a84f5405fa0776737a4149175e41e6a@google.com>\nCommit-Queue: Daco Harkes <930cbae0ca77f1954c53e32620d89cfcca318f00@google.com>\nReviewed-by: Daco Harkes <930cbae0ca77f1954c53e32620d89cfcca318f00@google.com>\n", "proba": 0.00011785006063291803} {"commit": "76157029f2c70b7261a6b5d424d9339c2773dfa9", "message": "change variance computation\n", "proba": 8.616987088316819e-07} {"commit": "18cd6df7006992f56338cc805bbf1b5218deba9c", "message": "minor update\n", "proba": 4.0402281342721835e-07} {"commit": "2feb44526cb576aa91936a45800b6e3dfc7e1685", "message": "Code style changes.\n", "proba": 1.403389262577548e-07} {"commit": "218eb414705621cd9bd26947f36e77428d3227b2", "message": "Fix Pandas indexing in `CombinatorialOptimisation.disaggregate()`, closes #651\n", "proba": 1.2199701814097352e-05} {"commit": "9ba4b40689a0ac3b85f545ed3a685aa17f256286", "message": "creade an index of {keyword:[plugins]}\n", "proba": 0.0002714352449402213} {"commit": "64905edcfa2311cdfb256bb8f27d39fa10ae67d9", "message": "tyr: set dataset when calling osm2mimir and bano2mimir\n", "proba": 3.5154114357283106e-06} {"commit": "ebf392ae9dcaaf9b9429f0e2e98003bcd45b7d9e", "message": "Bump version number\n", "proba": 2.1583066427410813e-06} {"commit": "0bf65b6ee530e727a65bbde656678b9456f17584", "message": "Refactor to make getting a users list of allocations easier, straight from API\n", "proba": 1.67850984666984e-07} {"commit": "0c42155f03a3657886b0d4b1244c76eb80567cc0", "message": "adding counter to matching\n", "proba": 6.468942501669517e-07} {"commit": "b5c543664fea12923c497662d09a60b2963d4116", "message": "Updated the view. Added a option to skip the payment (when price = 0)\n\n", "proba": 1.2444799324384803e-07} {"commit": "9c4823e3a88d7089d40ebee59fa62813be9fa399", "message": "[FIX] Adequando \u00e0 @api.multi", "proba": 7.89215846452862e-07} {"commit": "ff35a0ac1f5e98d680e5eb3637ef499c4a24f2f7", "message": "a bit of error handling?\n", "proba": 1.2856429520979873e-07} {"commit": "cbd0ed524310de5c7d6450956422aff15431eea9", "message": "No need to increase timer on dead workers\n", "proba": 4.385409738461021e-06} {"commit": "49363806794691a8074d839585c1aa009e0ed5c9", "message": "use keep-required\n", "proba": 1.1702848041750258e-06} {"commit": "364f580185dbd1f44fe09ea6330cf26af5feac2c", "message": "removed unnecessary commit\n", "proba": 1.9107540083496133e-06} {"commit": "3b9fd3b92b5499bf25c4ec41ec09db78527f67c4", "message": "Project workspace and team are read-only\n", "proba": 1.3962019806967874e-07} {"commit": "31d2caea1cbe7540ef7d765709b25baf55914302", "message": "Fixed erroneous index\n", "proba": 4.844039835916192e-07} {"commit": "a38204b7196c9c5a4dbbcc6db1f0b35dbc52b950", "message": "do not sort when there are nans\n", "proba": 6.0076067711634096e-06} {"commit": "a456183326d17c47d2ccc7b30e20a689351247d7", "message": "Adding logging\n", "proba": 1.083107918020687e-06} {"commit": "47a3aa9b3187d5d2b7448cecffb7a710ca1325a3", "message": "Stupid bug\n", "proba": 7.965079475980019e-07} {"commit": "4237d7ba8cce3e5c99f7af8d3396148590d95acb", "message": "Use Django 1.8's new make_context function\n\nDjango 1.8 didn\u2019t provide any standalone way of creating a Context object. Aymeric Augustin added a make_context function to do this in 9b7b373.\n", "proba": 1.0607166700538073e-07} {"commit": "e17ed2405e4b56a2e0dbe0671c33cde9b3d764b5", "message": "fix bug: extract tags item should not None\n", "proba": 0.9999910593032837} {"commit": "22ba0ce07e1fb11ff434701ad5e7794d0cbc3205", "message": "[dlp] fix: add retry count to mitigate the flake (#4152)\n\nfixes #4100", "proba": 2.21412861378667e-07} {"commit": "ecb121d1f42df0c3e2c0b71fc29edc92de91377e", "message": "experiment on smoothing occupation map `O_smooth` does not work\n", "proba": 1.1088640121670323e-06} {"commit": "30bd07a27de1ac0004b7dae3b0ce921e1e4cb751", "message": "Change admin search to problems #319", "proba": 1.4266454684275232e-07} {"commit": "2c27160b6600b57e1f890047aee7dbfe5e03d02b", "message": "Minor physics update\n", "proba": 2.317268865681399e-07} {"commit": "62cfb9943c2847f9387e0bc5e58181b8b55996b5", "message": "fix HTML to be XHTML compliant and not gash, formatting tweaks\n\n\n20051020114132-0e791-7574d15d586a795748906d0b2df8f14682901bc0.gz\n", "proba": 4.088321077233559e-07} {"commit": "b70814e6bec4445fa01e32587d7e7042e3fe0309", "message": "Reformatted print info\n", "proba": 9.452308518120844e-07} {"commit": "786df66d1685e1df606c51e28827407dd0dffa67", "message": "More updates to support Python 2.6\n", "proba": 2.2876304228702793e-07} {"commit": "0ba503da79c24ad95e102f509b658f126a7bae3d", "message": "FIX EWC was not using the current parameters.\n", "proba": 1.0865048238883901e-07} {"commit": "711812e186d246710ff4012509f86c31ecc22ab4", "message": "Don't bother converting movie release estimate to date\n", "proba": 0.9999692440032959} {"commit": "4259a1d8b7c910451bbb01e48389d9ce3b749a62", "message": "CPU > usage renaming\n", "proba": 1.9762630643072043e-07} {"commit": "4ccda039de9cb341bcece39b6ca70785fa900ce8", "message": "print actual cursor kind in token dump\n", "proba": 4.0949427670966543e-07} {"commit": "c1e7e6f85df56375c115325439b6eb9612433c58", "message": "Move code related to Drawing from QiangHeng.\n", "proba": 1.1071357164382789e-07} {"commit": "fb113b34cd153f92f6d341e7a38ee505c2093d3b", "message": "pycodestyle\n", "proba": 1.9288502244307892e-06} {"commit": "ae221fd3951e00b67839ada3ded30572c37c287d", "message": "fix exception handle\n", "proba": 4.218526555632707e-06} {"commit": "093ffdfdad59584f12374426e8ec45e3853b1be1", "message": "change board option numbers to start from 1\n", "proba": 2.646025620833825e-07} {"commit": "a820b36d34cd875a41cb038a2373858d733395af", "message": "MainWindow: refactor button sensitivity code a bit\n", "proba": 3.549725988705177e-07} {"commit": "50494bd0cb6077c43859329bc76a81da40ab5ddf", "message": "Missing return\n", "proba": 5.371040242607705e-05} {"commit": "0979dec40b9289d6f72936668870c05091dd9343", "message": "example_tests: Make Tornado 3.x compatible.\n", "proba": 1.1585434123162486e-07} {"commit": "49e543cdebb9e8b9fba7caf53cb050313257d7c1", "message": "And perhaps the image name length thing was a red herring\n", "proba": 0.9980802536010742} {"commit": "41d105eef14cf271bc7c3e1206912d3c5a844ae3", "message": "Force overwrite of dobs in makeSyntheticData\n", "proba": 3.5854259294865187e-07} {"commit": "a52bec41a4029d3245cc64f019f218caaccdcd2f", "message": "Camera export: move publish tab before work area\n\nAlso remove user preferences\n", "proba": 1.737187176331645e-07} {"commit": "1b3d4fd3366939a5ecc7b406c45aeb648887ac9c", "message": "added some _opposites\n\n", "proba": 0.0004588512529153377} {"commit": "e03404cdefcb043ac545af31574202eb2ee6b544", "message": "Refactoring of the os-services module\n\nMain purpose of the change is to extract enable/disable/disable with log\nreason methods out of update method.\n\nAlso, there are couple of code style fixes and one potential issue with\noverriding services imported from scheme.\n\nPartially-Implements: blueprint mark-host-down\n\nChange-Id: I529b585efc4d7e775e5a60f9a3e47d204aa1732d\n", "proba": 5.190789670450613e-05} {"commit": "6c9193d6c6abba7468b0a51e2359a3339289fb8f", "message": "rosmsg: #2349 potential resolution.\n", "proba": 1.274956957786344e-07} {"commit": "914a00e0b723c5a47de053c6eda36ec1f93adcd1", "message": "Use OpenCV for efficiency; fill a bubble cube mask\n", "proba": 3.910884913693735e-07} {"commit": "d4420a18142963d6c1886fa134e50dd7fdf32709", "message": "testing player interface for omniscient player\n", "proba": 1.7474276603479666e-07} {"commit": "1ee38ad088e0457e604fe37639b7f1c3f49e7c11", "message": "debug check_for_tie and check_for_game_over\n", "proba": 5.332703949534334e-07} {"commit": "1d4a80770f72f497a79c4c6e700af9a601aec3f0", "message": "Use a local registry in a container for test_pull_image_if_necessary as well.\n", "proba": 1.0766399327621912e-07} {"commit": "953d007fe24133bc747b272eb9e60dbb3c4bec66", "message": "fix work dir\n", "proba": 6.812985589021991e-07} {"commit": "bb2e03657177a786d2cc6786e574f309e03f5251", "message": "fixed bug in get_history.\nreturn empty list instead of empty dictionary if tags is a single string and the log file couldn't be found (e.g. it hasn't been created yet).\n", "proba": 2.107813656948565e-07} {"commit": "c8851d90595e76a6be2f9d59b21cb39ceb3fb4fb", "message": "added negative to even power simplification\n\n", "proba": 4.051698397233849e-06} {"commit": "3def9f7957d1c85698c6cd9d001777e0e2d915aa", "message": "do not test removed functions\n", "proba": 4.2167343394794443e-07} {"commit": "89042354dcd6ea44788a1ac622ed36ca5d57043c", "message": "rnn that matches karpathy's\n", "proba": 4.4346779759507626e-07} {"commit": "75078283f9bd70282411b1aa31a14b20db1c2b7c", "message": "passing test for get_win_list\n", "proba": 3.8889265852048993e-07} {"commit": "10c944b20ec6363d4ef54a1349be6c1a5981ac13", "message": "minor changes\n", "proba": 3.7436623756548215e-07} {"commit": "52e0837d5535d97ce20566fa70a0721eb4661c5a", "message": "Oh, this should end in a newline.\n", "proba": 3.290225265573099e-07} {"commit": "9619c49942fece68f2830ebdacf706dd598ffe88", "message": "Add DDL parameters to skpbench.py\n\nThis needs to land before https://skia-review.googlesource.com/c/skia/+/130923 (Add a DDL Skpbench bot)\n\nChange-Id: I50a6308350fd62c696eedd0fdccd42dd7dfb0d53\nReviewed-on: https://skia-review.googlesource.com/131102\nCommit-Queue: Robert Phillips <95e8ac5504948c7bf91b22c16a8dbb7ae7c66bfd@google.com>\nReviewed-by: Eric Boren <0e499112533c8544f0505ea0d08394fb5ad7d8fa@google.com>\n", "proba": 4.2688449752859015e-07} {"commit": "f0f66e4ea6f14bfe66ff07985a110496566d222c", "message": "libs/wlgen/rta: fix scheduler policy default initialisation\n\nUsing the 'profile' RTA workload class, when a scheduling policy parameter\nis not specified for a task, this patch make sure to use for the dafult\npolicy configured for the main thread.\n\nSigned-off-by: Patrick Bellasi <431c86f368affbc3148c4669fbd465131f7e82cb@arm.com>\n", "proba": 1.3357841055494646e-07} {"commit": "2477f889b7e47ee48f1639691c23cfac31c4658c", "message": "Generate json for alexa too\n", "proba": 0.9999884366989136} {"commit": "5b7071133f10a42478fbb77974d8fc643c387bbc", "message": "fixes #71\n", "proba": 1.4766857248105225e-07} {"commit": "6205bed36d3dfe5b1d0a3a5a61553a1b25de65e9", "message": "Modify unit test of instancetask\n", "proba": 1.7160887182399165e-06} {"commit": "09c14714f55728f1ffae09181b0374515aa6d05c", "message": "Update cache key for brick polls\n", "proba": 3.277997961959045e-07} {"commit": "d82d1f5a3c985b910334bea130b0f3931e445302", "message": "restrict proxied service urls to a certain set\n", "proba": 9.388110129293636e-07} {"commit": "e4270285371db4e246508223925e63ea2c4f7f27", "message": "Remove cipher from build_client.py\n", "proba": 3.7375946249085246e-06} {"commit": "70f39b8f95be2715648adb5ae8a537c5cb68d86e", "message": "The (diff) link in ticket change entries for ticket description changes should contain the ticket version corresponding to the \"new\" content.\n\nFix #6664.\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@6503 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 1.8559072486823425e-05} {"commit": "b8e3432ea7742dc22267b7f60cd263a250603e6f", "message": "removing SmartReadView from import\n", "proba": 1.5001963049598999e-07} {"commit": "5917c5d5e971b1a8b3e55b160ff4444bfcc38200", "message": "Reverting to rnn.rnn\n", "proba": 0.0012062765890732408} {"commit": "6ae85df6fd598bf28f3ee2aa34fcc8f9fb72f104", "message": "rename var -> vw in core.inits\n", "proba": 3.913496584573295e-07} {"commit": "e741b5355a6f981817502d09447509731274c2c2", "message": "Increasing timeout for reading input on Windows\n", "proba": 7.111236186574388e-07} {"commit": "d01b0e2269ba25295fb232a73a09f5fce1b72221", "message": "ignore ImportWarning caused by Python 3.6\n", "proba": 1.8596317374885984e-07} {"commit": "5eaf51f43bf24382a02c7acff92ba5d8fa8f9399", "message": "update the plot quadtree face div to be consistent with the example in discretize\n", "proba": 1.8261310685829812e-07} {"commit": "06d715a41dcc6bac26d9413be305434be1c299d0", "message": "actions: Use transaction.atomic in do_change_icon_source.\n", "proba": 1.2301443064188788e-07} {"commit": "694989c38b6068ed6dfd879c8f524848daa6c702", "message": "Revert \"Resolve character references and add 'user_id' as a property for Status.\"\n\nThis reverts commit 9c48463260d88cd20ff9bec43fbe654887fc9d38.\n\nThis caused major connection instability.\n", "proba": 1.1600503313502486e-07} {"commit": "c7d3056456e7de97d39463b6d0244066dc663ade", "message": "better handle null instances in to_cloth\n", "proba": 3.2245177408185555e-06} {"commit": "a0c359aafbb9f2073e5b39ebdf3e597209cb456b", "message": "multiword substitutions converted to regular expression based 'mappings'\n", "proba": 6.042250606697053e-05} {"commit": "0bfa47bb27c5ff3fed57d5c0e462dca5453120b4", "message": "Juniper upgrade - Hack fix OAuth token deletion\n\nThis is basically the same fix as this PR:\n\nhttps://github.com/appsembler/edx-platform/pull/886\n\nWhat we're doing here is switching the order of deletion so that the\nrefresh token record is deleted before the access token record.\n\nOnce the database is fixed, we can revert this commit\n", "proba": 0.0001076318440027535} {"commit": "3d0bdf00904618f8656db3045272e19efc091f46", "message": "added reporting of a few additional fields\n", "proba": 1.22792329193544e-07} {"commit": "dc6d7d0d12b78695718bcc82057592c87e63c412", "message": "actions: Use presence_disabled for presence zephyr_mirror code path.\n\nThis is part of the effort to remove the use of is_zephyr_mirror_realm\nacross the code path for situations that might be relevant for other\nusers. It helps keep the code readable.\n", "proba": 1.6508960243299953e-07} {"commit": "29a853ac2c2ea46f78f65148ca2748d10363f9c9", "message": "unit.get_scv(start_time, end_time)\n", "proba": 1.6455342120025307e-06} {"commit": "007309015bc08c3201857b96835f745ca69e3294", "message": "modernize adjacency list example, use declarative\n", "proba": 0.00034265618887729943} {"commit": "aeaa5cd7d970ae9fef48e36706aea428438bfd3c", "message": "removing +1 from expected transactions (it's now expected repeat transactions) and adding labels to plots\n", "proba": 2.847325504262699e-07} {"commit": "9f7653cf3f4d306a058c6232c6ecf64eb03dabc8", "message": "adjust permissions\n\n\nFormer-commit-id: 4da5fbab6730478badc613ebbca945b3c92adb78 [formerly 1afca801157f9dc593b93163a9adb4cee2817db6] [formerly 30db00958a15e0736471cfcb733ef44044b086fe [formerly 6f3e134934bc249fd2caf1ed3a4b0feadcf5cdbc]]\nFormer-commit-id: e22e923b8dde45ae134315d95ac0a0e2ab3d19b4\nFormer-commit-id: dd2b50d4755fb12ec8687032997f8f2b785c00c1", "proba": 1.5167417586781085e-05} {"commit": "9cf9f425be5e01641e736b5b1278db2e6b8879ce", "message": "WIP: simplifying ClusterMetadata.\n", "proba": 1.360753856260999e-07} {"commit": "fa37ac1d738e1adf4f14dd238648a14a98857ea4", "message": "Add act_on_message_ranges() migration helper.\n\n(imported from commit 9e6567c1a12a7d8e447ed80ee08723376eaee6fe)\n", "proba": 5.518945158655697e-07} {"commit": "5c93843754aa2a39b869be5d390d307c5500e293", "message": "[skip hazardlib]\n\n\nFormer-commit-id: 8d4510b74e653a72151666e95dac92a269a64c5e [formerly 56007301bbca34dee40e932a08323925ea06ad1a]\nFormer-commit-id: 39dca38694f54ac181be833e4e9757b775b62d17", "proba": 6.096414608691703e-07} {"commit": "3569bb3cf91ab09345294dd40982a3c9bd2eaa83", "message": "refactor: better variable naming\n", "proba": 0.005451629403978586} {"commit": "238057168bca8187c7109931cb1bc5514bb705ed", "message": "Restore diskparams in the gnt-group options check\n\nCommit a82823 accidentally removed opts.diskparameters from the list of\nparameters that are checked for presence in gnt-group, thus causing\ninvocations of gnt-group modify with only disk paramaters to fail.\n\nThis commit restores the check and also simplifies the whole chain of\nchecks by using only conjunctions of negations (as opposed to using both\ncongjunctions of negations and negations of disjunctions).\n\nSigned-off-by: Andrea Spadaccini <92d490849ac1b40cd8e8878e4d94603bebdb089f@google.com>\nReviewed-by: Ren\u00e9 Nussbaumer \n", "proba": 3.4675099414016586e-07} {"commit": "bfbc22ce0a71521e367eed4b07e622d9ba5404f5", "message": "renamed _project_root\n", "proba": 5.328858969733119e-05} {"commit": "81ef16c9725ef00da676ddf5e55be01705200bad", "message": "checking for phi_model before deleting\n", "proba": 2.434582597743429e-07} {"commit": "00fc9ec794a078e05ceb62e336575dfe62bcd2bf", "message": "Added RF Projection (noise).\n\n", "proba": 1.1127161769763916e-07} {"commit": "c2b02ba986324c7b1b64d9801285a8892c3bb030", "message": "Adding import\n", "proba": 3.9513739125141e-07} {"commit": "dee1ca8248249b13b1108370c9cb0265f29b8d55", "message": "\u4f18\u5316logger\n", "proba": 4.519311573858431e-07} {"commit": "b72bd6a53b13c88d61c1e17766096810c75728de", "message": "uncomment cache clear\n", "proba": 5.805600267194677e-07} {"commit": "24a9f2dabdf066a893fc838ce9fec6da4e17a0db", "message": "Revert `load_properties` to old code\n\nNow that properties file are read with `http_req_as_string`, the\ninput parameters for `load_properties` are always proper strings\nand the special code for Python 3 is not needed anymore\n", "proba": 3.7055104940009187e-07} {"commit": "4d8024a4a9333efeda60443f2f4aad9af49994f4", "message": "* gen-make.py:\n Remove more neon artifacts.\n", "proba": 1.0179394394072006e-07} {"commit": "0a8a189f7ffca65b045f80bcf5cadcaa29f86205", "message": "Give gen-make.py the ability to tell ya what ya did wrong.\n\n* gen-make.py\n (_usage_exit): Add 'err' parameter, used to print an error (if any).\n (__main__): Pass useful error info to _usage_exit().\n", "proba": 1.0421283604955534e-06} {"commit": "63589e4697a2b35f996caccc9edddef167476d4a", "message": "Switch dcos overlay configuration to be json.dump() rather than hand-coded json.\n", "proba": 1.3490574701791047e-07} {"commit": "d3e381f83b858e63bcc26a303c2f49a8ff4e82fe", "message": "add NotImplementedError into GMMTrainer\n", "proba": 3.425896579756227e-07} {"commit": "a3c683b8b9b71d293c7f819b698e4e037480bb36", "message": "Cambio Minusculas mj\n", "proba": 6.683761512249475e-06} {"commit": "f7b974f5031c53ce32da78340124e068c764422f", "message": "SPAPI-224 include spynl.data as plugin\n", "proba": 1.2264533211236994e-07} {"commit": "237a8cf2595a80ff06ef54c03351448e56961d5c", "message": "Add ccache so we can compare performance with meson and cmake.\n\nSee this spreadsheet for some performance numbers:\n\n https://docs.google.com/spreadsheets/d/1gbNIkvF3vmkvzdiFkLcWLj261urXWcK1la1ZiDYyvhE/edit#gid=0\n\nAnd here's a table I created by hand :(\n\n ---------------------------------------------------------------------------------\n Operation | Creator | Meson | CMake | CMake |\n | Ninja | Ninja | Ninja | Make |\n --------------------------------------------|-----------|-----------------------|\n Generate build system | 0m2.519 | 0m1.266s | 0m5.118s | 0m3.786s |\n clear cache | | | | |\n clean build | 1m17.099s | 1m22.926s | 1m26.957s | 1m19.919s |\n do nothing | 0m0.050s | 0m0.051s | 0m2.408s | 0m0.067s |\n clean targets | 0m0.159s | 0m0.204s | 0m7.413s | 0m0.221s |\n clean build with ccache | 0m42.635s | 0m44.085s | 0m47.487s | 0m44.268s |\n Add a printf to end of main | | | | |\n build with main changed | 0m38.749s | 0m40.581s | 0m43.955s | 0m41.891s |\n Edit last function. | | | | |\n build with func1000000 changed | 0m4.865s | 0m6.081s | 0m8.379s | 0m7.404s |\n ---------------------------------------------------------------------------------\n", "proba": 0.9997135996818542} {"commit": "92ed9263d38ccda5b08c0c326a0f4d8a8884b6fc", "message": "commit2\n", "proba": 7.12786459189374e-07} {"commit": "a28d6d610f1b084e685846c6bb49e952ed0ccc79", "message": "[batch] fix throttler bugs (#6959)\n\nI thought first completed would also fire on first exception,\nbut it appears not. These futures should only finish by raising\nan exception anyway, so `FIRST_EXCEPTION` is fine.\n\nI failed to realize `pending` was a `set` and thus adding an element\nis called `add` not `append`.", "proba": 1.32481275727514e-07} {"commit": "fc3bfafa0ebb8614386e66580a1a95d504bb0e78", "message": "LuaLintBear: Show source ranges\n", "proba": 1.850586102136731e-07} {"commit": "056f5cdfff553f4d6422e745d478ab1fc3ad59db", "message": "PHPLintBear: Add DistributionRequirement php-cli\n\nPHPLintBear only depends on the php executable.\n", "proba": 1.0437122455186909e-07} {"commit": "79a9593cb9c667eb9ba88b17346a633203ea5322", "message": "Add quoting and use displayable paths in log messages\n", "proba": 2.5865503516797617e-07} {"commit": "7384b69176154877591c11fcd18c42e627382dd8", "message": "Remove an old mode of how to pass options to runexec\n\nThis was never documented and only used by some scripts in the\nCPAchecker repo, where it was removed in revision 19880 in 2016.\n", "proba": 1.0217851809102285e-07} {"commit": "13c09b466b80db4b7a8b166ac15f99642787e93c", "message": "1.0.2dev: Fixed test failure when `trac.ticket.tests.model` was run directly. Refs #11603.\n\n\ngit-svn-id: 50cd48c816abc7a9f40e8e03a4277466cb30a3e4@12793 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 1.6146117332027643e-06} {"commit": "5d953b2e9c199c596092b5d97eba16e09ff0385d", "message": "versioncontrol: clean-up style of repository related SQL queries.\n", "proba": 1.215259715081629e-07} {"commit": "fab576aca41287026f1aa4b948e35b53bbccbdd1", "message": "Simplify return statement\n", "proba": 0.9999995231628418} {"commit": "72eb580d72885735633d47cdbc00d0494ae7f892", "message": "Use parse_datetime from Django\n\ndateutils.parser.parse(\"1.1\") erroneously parses a datetime value.\n", "proba": 1.1949046552217624e-07} {"commit": "574d5a0bf419231567349d4dd694b3dceb734cbc", "message": "fix print statements\n", "proba": 0.9999908208847046} {"commit": "0c61410b2c351c91e589939836c7e6af2573d83c", "message": "\u0628\u0647\u0628\u0648\u062f \u062e\u0644\u0627\u0635\u0647 \u0648\u06cc\u0631\u0627\u06cc\u0634", "proba": 6.441246114263777e-07} {"commit": "206a265cf901e17dfb5c51bce11ccd16725ca0a5", "message": "Minor updates to the profile code.\n\nutil/stats/profile.py:\n Pass around the number of symbols limit\n deal with categorization a bit better.\n", "proba": 1.0693256058402767e-07} {"commit": "40cc872c8466f90ee457a916a6a7b93531a60cd5", "message": "Update mothur fetcher with 2to3\n", "proba": 1.601217576308045e-07} {"commit": "8582106b03b260e6584ad1556ba03c408f5d8708", "message": "md: add nbsp around dashes\n", "proba": 7.0849778239789885e-06} {"commit": "1c75e52c23434dd42c7124a595aab52261919aec", "message": "remove unused generate.py code\n", "proba": 1.7042675608536229e-06} {"commit": "1a71998f7681e78ba65ecd741a82974fedc054e7", "message": "Fix another typo\n\n--HG--\nbranch : setuptools\nextra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041244\n", "proba": 0.998830258846283} {"commit": "a771a959ac22e8d5b1627576a58045fd97b195f5", "message": "Added exception handling when parsing menus, logs to systemd too\n", "proba": 1.1652894471581021e-07} {"commit": "aae75a3d3f81aaa8a6bfadb5885b936ec2db59da", "message": "Move import to the top\n", "proba": 1.6121056489737384e-07} {"commit": "71ee54f2347b66343691a7923c933ff0729dd399", "message": "Get all the new fixtures.\n", "proba": 1.242819536173556e-07} {"commit": "61a97c9ad1215bf4e27966cf0b3e5012e509b83b", "message": "Remove typo in conftest\n", "proba": 0.0028708456084132195} {"commit": "6c76a24a26b57ab5c0e72f9a37f418be33a0165b", "message": "fix for corrupted session variable for first activity id.\n", "proba": 1.0769521452402842e-07} {"commit": "e0276d9ac7477d7a4013e2d4deaa456084a2fa08", "message": "improve analyze_log.py\n", "proba": 6.523256888613105e-05} {"commit": "1b3b2c0303d8be5186595068344d6f6e796dc960", "message": "try with multiprocessing\n", "proba": 2.738478315222892e-07} {"commit": "090c40a33f27866d9dc7b85e4c4210717131bfb7", "message": "allow query for show dates that there is no show scheduled on\n", "proba": 2.382497086728108e-06} {"commit": "bbf9a0f29ffb19b0b399df1f3e0136738d29fc7d", "message": "logging and bugfixes\n", "proba": 3.8687218761879194e-07} {"commit": "c863940144abdbdcfa665447fb9ad9942fe4f673", "message": "update file size after write\n", "proba": 6.991426175773086e-07} {"commit": "618e0a9e0e7acf03e016be22d47f7ccf593681f6", "message": "measure avg fps\n", "proba": 1.5404664736706764e-05} {"commit": "300e88c3029eb1361f351c2d81f95d32ad48d8a3", "message": "removed status bar from goal_vis\n", "proba": 3.7034612887509866e-07} {"commit": "60fa4da02aec4167f29623b29832c7eb46fcf741", "message": "Check failed jobs's names to determine slack msg (#13756)\n\n", "proba": 1.5114808604721475e-07} {"commit": "bbe58655e6efed40431ab8c733c8d30ba9b439e3", "message": "Removed duplications and unnecessary comments", "proba": 1.325928877804472e-07} {"commit": "e266cfa8e958c4d416aca2b848092218a7cb52c8", "message": "Add API endpoint for returning grouped transfers\n", "proba": 3.3913420338649303e-07} {"commit": "63334bad5ee22174646e6958dfa9314fade24d15", "message": "Just moving code around.\n", "proba": 1.1694798729422473e-07} {"commit": "9ad19285c234e2eb0cfc6721fdfa78bf3423a9b8", "message": "Update ipc_lista2.01.py", "proba": 4.332936214268557e-07} {"commit": "5cad853932707feed33230daacc8f5ffb33a220e", "message": "Update ipc_lista2.06.py", "proba": 3.186159460710769e-07} {"commit": "5d2006507cfd6d6fd94a9f0ccfdd2ab831066408", "message": "Delete ipc_lista3.02.py", "proba": 3.4552870147308568e-06} {"commit": "9e8a53f377e54a045707f9f1ae94efef299bc7a6", "message": "Delete ipc_lista4.06.py", "proba": 1.9689273358380888e-06} {"commit": "404ab98f1745f5f732028c0adb55c505fbbdcbce", "message": "refactor spatial_smooth and spatial_smooth_median to use\napply_function_parallel_spatial\n", "proba": 0.0035043859388679266} {"commit": "89c0d08765ecccdaa1b7dddef5c8f8540df77341", "message": "Rectangle area function", "proba": 1.977945885300869e-06} {"commit": "c2569df94b83dbb77e977a7ce292b8337428a6fc", "message": "Add some properties to LaunchConfiguration", "proba": 4.017942103473615e-07} {"commit": "f52e8af32076bdeb37ffb0d924e9d2578f47639a", "message": "Add a few benchmarks\n", "proba": 0.00039199620368890464} {"commit": "3f90d0cd1a584068ae1f26b59d71bfe9b28e5118", "message": "working template tags", "proba": 3.283047647073545e-07} {"commit": "020b8836941bb367fee31c3efe6efb1819342ed3", "message": "remove unnecessary extra exception\n", "proba": 5.307027095113881e-05} {"commit": "1391f0db44c8932ed0a1c416304aa40ad3960848", "message": "add matplotlib version 2.2.2 (#7572)\n\n", "proba": 1.3008870780595316e-07} {"commit": "9d0417b8fe98467ca87668978bc69ccd16634073", "message": "modifications to point/ origin for vector creation....\n", "proba": 1.0465968358630562e-07} {"commit": "95e49be1b4ecbf800bd81805f37d4e42699f3d45", "message": "abort with 403 if item is locked and user is not admin, fixes #59\n\nthis prevents disclosure of metadata of locked items.\n", "proba": 1.0056349708520429e-07} {"commit": "fd32f13bd7355de0db4f24d5025677b1432816ae", "message": "[#251] fixed unitted\n", "proba": 4.229311798553681e-07} {"commit": "54571e7ddb5f73891ea8c32b4f4be41dc4c28d30", "message": "SudoKeepAlive: ignore sigint, and suppress teardown exceptions.\n\nWe do not want our sudo validation taken out until we explicitly\ntell it to shutdown. However since it still has access to our session\ngroup, it receives SIGINT; thus we explicitly ignore SIGINT.\n\nThis fixes an extreme corner case where timing is just right such that\ncgroups goes for sudo access, but the keepalive dies before refreshing\nthe ticket. Basically impossible to trigger.\n\nOnly reason it was spotted was due to some experimental reaping code\nexposing that this was being taken out by ctrl+c's to the term.\n\nFinally, while we're in here, suppress any ESRCH exceptions from\ntrying to terminate the keep alive; if it's already dead, we don't\nhugely care.\n\nBUG=None\nTEST=manually kill the sudo process, and verify it doesn't trigger an\n exception during controlled shutdown.\n\nChange-Id: Id79cac0e4012ba822d1fede2be45d6971f4fbfcd\nReviewed-on: https://gerrit.chromium.org/gerrit/20050\nTested-by: Brian Harring \nReviewed-by: David James \nReviewed-by: Zdenek Behan <483cf2a9a4e071d4fd973db6a5a78c40f490667c@chromium.org>\nCommit-Ready: Brian Harring \n", "proba": 2.7003423383575864e-05} {"commit": "c5cc37a7927c0b13c11ef22d1e7f6e6e2fd5d84b", "message": "Clarify message when there is no default project\n", "proba": 7.080436625983566e-05} {"commit": "b329f10c7b22bad457c919d47d0a2cd8465ff8dc", "message": "[py-mdanalysis] new version and added dependencies (#16819)\n\n* [py-mdanalysis] new version and added dependencies\r\n\r\nOriginal commit message:\r\n\r\nAuthor: Andrew Elble \r\nDate: Thu Nov 14 08:35:14 2019 -0500\r\n\r\n mdanalysis\r\n\r\n* [py-mdanalysis] python is type build/run\r\n\r\n* [py-mdanalysis] updated numpy version requirement for all listed versions of py-mdanalysis\r\n\r\n* [py-mdanalysis] updated biopython version requirement for all listed versions of py-mdanalysis\r\n\r\n* [py-mdanalysis] updated py-griddataformats version requirement for all listed versions of py-mdanalysis\r\n\r\n* [py-mdanalysis] gsd only required after version 1.17.0 and requires gsd@1.4.0\r\n\r\n* [py-mdanalysis] only requires mmtf-python after version 0.16.0 and requires version 1.0.0\r\n\r\n* [py-mdanalysis] has required py-joblib since version 0.16\r\n\r\n* [py-mdanalysis] updated py-scipy version requirement for all listed versions of py-mdanalysis\r\n\r\n* [py-mdanalysis] updated py-matplotlib version requirement for all listed versions of py-mdanalysis\r\n\r\n* [py-mdanalysis] has required py-mock since version 0.18.0\r\n\r\n* [py-mdanalysis] py-scikit-learn only required after version 0.16.0 and only for +analysis variant\r\n\r\n* [py-mdanalysis] Reordered and reformatted for readability\r\n\r\n* [py-mdanalysis] flake8 fixes\r\n\r\n* [py-mdanalysis] proactively adding version 1.0.0 while I'm here since major release\r\n\r\n* [py-mdanalysis] fixing some forgotten colons", "proba": 1.2845023320551263e-06} {"commit": "90c00dba12526d7ea8bf99099522dc98def6e059", "message": "Add split method to Triangle\n\nAdd the split method to split the triangle into multiple shapes by a\nline.\n", "proba": 2.452102876304707e-07} {"commit": "9c0bab9d03f101d0f4010751b4f480a52735631e", "message": "Make drawing of blue background for shapes toggle-able (same as white control handles)\n\n\ngit-svn-id: 1c5f0d70b70358869d03d7859daa03e4e3c53617@345 741c516a-3ba6-4fa8-b112-5c51f26a88df\n", "proba": 3.927340458176332e-06} {"commit": "720326d6d1100b0e1505b1024757597d1fe6e5ca", "message": "Permissions error fix.\n", "proba": 1.4858339625334338e-07} {"commit": "18a9a265fde2feb08f9be8e58ed138eeb29e8bfd", "message": "py-smart-open: fix url/checksum, add deps (#15892)\n\n", "proba": 1.1720993597919005e-07} {"commit": "56a9952c33b5e9a012b3cf0f9252f3c18b184312", "message": "Support fetching env vars for the MSVC builders\n", "proba": 1.6055510343448987e-07} {"commit": "a0a93f3674920b155f495c6456df8fc677cc0c65", "message": "Add seat map functions to main class\n", "proba": 3.535671169174748e-07} {"commit": "5685dbcd1a5faba62c17a85f5f6befe5a9f2a4da", "message": "remove some comments\n", "proba": 1.6961266169346345e-07} {"commit": "9e2fef214cf473563aa726cf1dd6c6bfc67e7472", "message": "fix returned xmlcharrefreplace title for hackpad.com\n", "proba": 2.9648214194821776e-07} {"commit": "333078c873be23f0032b62ae725fda14063c553c", "message": "test_create\n", "proba": 6.575165571121033e-06} {"commit": "76552b2e1900799d811cada0f05cf471a94c6c14", "message": "Avoid sharing table names across unrelated systests. (#5421)\n\n\r\n", "proba": 1.3036888901751809e-07} {"commit": "0b5272fdec316b6222a40aa06ebf8e2056d5ec2d", "message": "replace range -> xrange in polytope\n", "proba": 5.911315952289442e-07} {"commit": "7820bbad821037b263c8ca4ff5be8ee7b2992ca4", "message": "Updated from Brython Server: 2/24/2018 1:40:44 PM", "proba": 1.0885189283271757e-07} {"commit": "89bdf37629656282e2779e0f75a377d74e393966", "message": "Fixed all test to be more readable and robust by function refresh(obj)\n\nI found that \"test_unicode\" didn't test anything, because it compared an old\nobject. Restoring the db status was not readable (bug free) without try/finally\n", "proba": 1.0578397450444754e-05} {"commit": "dcb82a2ce4fb4b0d2a90cf16371f5a214c2276a6", "message": "Make the OOO interface accept an host and port to connect to\n", "proba": 1.2660369463901588e-07} {"commit": "e1315bba4e0f55334a5941b4368fed330f8b7848", "message": "wrong test for canVote\n", "proba": 3.6750755043613026e-06} {"commit": "8162411ddff4b711089bdf014a16cd540c5d99d3", "message": "Also error and exit cleanly if saltnado can't be loaded\n", "proba": 1.7103654670336255e-07} {"commit": "ecde5564ab2090d772f57bfc65d5be0db6ec3fff", "message": "added flash messages for \"access denied\"\nshow error message if user disables facebook email access\n", "proba": 6.599506718885095e-07} {"commit": "45724e86394bf77354701bff4f64176fa4f47d24", "message": "minor doc fix\n", "proba": 3.0100574122116086e-07} {"commit": "6319e9d92758e037fcd4ba20d83dca146733dc95", "message": "Provision to make a link to button #2926\n\nAdded new style in tinymce to style a link to button.\n\nReview ID: 653001\n", "proba": 1.0544754758257113e-07} {"commit": "a4902c7e2657bc5a14022cc8a410f3539c361649", "message": "Default to the current PID if the TID is zero\n", "proba": 1.7354828969473601e-06} {"commit": "b11601d3dac4f822a7847e47241e59bea8021288", "message": "all: cmtpkgs -> pkgdir\n", "proba": 1.266869389837666e-06} {"commit": "429fe2641b67343f3637d0ddd5d38187ecd3ddec", "message": "closed log file", "proba": 2.7301337013341254e-06} {"commit": "c789eff746cf88d4876f26628cd39ef8d1810edc", "message": "Fix for text comparisons on multi-valied text properties (e.g., CATEGORIES).\n\ngit-svn-id: 81e381228600e5752b80483efd2b45b26c451ea2@327 e27351fd-9f3e-4f54-a53b-843176b1656c\n", "proba": 0.9999873638153076} {"commit": "12c825cb014b58a9648836fc168a27a9e6be409a", "message": "Seems to work\n", "proba": 1.2668509441482456e-07} {"commit": "bbd81fdba28a8f4fdfae2793be39c8f95d44c9dc", "message": "Remove admin BCC.\n", "proba": 1.2900608226118493e-07} {"commit": "beac68a90a0f1fd6205dcf6d3becb122f17bb6ef", "message": "Fix using config option as a file\n", "proba": 9.99151416181121e-06} {"commit": "64b9f7f20b2aa850532f06da9ed22225853da434", "message": "Renaming push namespace\n\n\ngit-svn-id: 81e381228600e5752b80483efd2b45b26c451ea2@5755 e27351fd-9f3e-4f54-a53b-843176b1656c\n", "proba": 2.380119212830323e-06} {"commit": "f42cea7de1c010bcb0fe0f13ff289005ec24fe3b", "message": "Minor edits\n", "proba": 3.2148042805602017e-07} {"commit": "bdf3f810e21280a615b3688a59fc0f4080b6c2bf", "message": "[typeahead_search] Finish initial version of main.\n", "proba": 1.1024555846006479e-07} {"commit": "2159cfe61e7415d375330e87f685b32e4bb59a09", "message": "menu update\n", "proba": 7.812809030838253e-07} {"commit": "b0a1cd57594d0de1a895cf482e813946312274bd", "message": "Issue warning when non-existent top-level path is referenced\n", "proba": 3.3340705840601004e-07} {"commit": "2b53a23b0dfe446a4844e6647c035d4a116dc2fb", "message": "Fixes #128: Make binning 1x1 default in DSA\n", "proba": 1.5372934569768404e-07} {"commit": "1133665a8aa0b65f0500bf7bbc30acb84f0b84e7", "message": "Add param docstrings for the two new functions\n", "proba": 1.5643403230569675e-06} {"commit": "c1fb7a8d73328a219a18eb179953268ed02a904e", "message": "fix head\n", "proba": 5.085167231300147e-06} {"commit": "495b6dce52013050ebb0e13f72566beb2e5d9d2c", "message": "Use attached working directory settings on view, if available.\n", "proba": 1.0795228178039906e-07} {"commit": "64069ab34e21094744636eca5433910dfe5f7d2c", "message": "Restructure __init__.py\n", "proba": 7.208812894532457e-05} {"commit": "cca0bd7531a02f1d1a97b93746f906181a864ba3", "message": "dcos-integration-test/test_meta: set --diable-pytest-warnings\n", "proba": 5.609278446172539e-07} {"commit": "cf49b5a697161d1fc4620a1ff1fcf708341a4dd2", "message": "save offer error message\n", "proba": 4.5298918394109933e-07} {"commit": "2d9f2c96f7a94e46ade1234727d08678903fe65f", "message": "reorg commands\n", "proba": 6.482788990069821e-07} {"commit": "4036f0fba60af5a43cb2ccf5540be70c0335e7d9", "message": "Add class docstring to Emails()\n", "proba": 4.6944131781856413e-07} {"commit": "86bea1db1a6bd7d9cbcc8a5c7650e9bc849c542e", "message": "[IMP] Performance of migration script\n", "proba": 1.6262779922726622e-07} {"commit": "1be6ccf533b19d6355bae560f77be3672b0b9ed3", "message": "check for post view on async deactivate call\n", "proba": 2.1525723070681124e-07} {"commit": "13d2965d165a6544135ff3bd79687cd00e34379f", "message": "systems: add COMMENT to short listing.\n", "proba": 1.0967947616791207e-07} {"commit": "8bcc5973a434e5a6ed2e12f855d3a893be5938d7", "message": "extended mode\n", "proba": 1.2753586133840145e-06} {"commit": "a03f04f8d7369f29f4f9b0834c2f53bf0a1e5489", "message": "fixed object plots\n", "proba": 7.629300853295717e-07} {"commit": "2db04f8b47bbe413f90295886694a187f1f78241", "message": "Option to print subwindow ROI mask\n", "proba": 2.08854828542826e-07} {"commit": "61bffd1dad5b513f4631383cfa8a05a873e49b61", "message": "whitelist gyazo for link at end", "proba": 1.243663660943639e-07} {"commit": "57193b9be7ef496b0ad5b8c3738fc73bf3784f85", "message": "exclude Kris Rye from responders\n", "proba": 2.7452235372038558e-05} {"commit": "4c188b4e76abe07e32385456f8aa3a4b18fd99fd", "message": "Flake-approved list style", "proba": 2.798891500788159e-07} {"commit": "39a1c08eceba5807968aa4024461e8b5f688d1a3", "message": "Find the longest genes in some phages\n", "proba": 0.9999994039535522} {"commit": "77a7710d8fafac59a8242c39566f575b48d85a9c", "message": "-redundant, +zapyo, dropbox18gb\n", "proba": 8.644117770018056e-05} {"commit": "e5b205f44e3f7e8ee8857764c56dc5f3c5f62573", "message": "numpy\n", "proba": 0.00011529737093951553} {"commit": "d27ccf4988316df10bb08947527dba764ed0db9d", "message": "Check the correct body when generating whys\n\nWould help to use the \"body_to_check\"...", "proba": 2.4112980099744163e-05} {"commit": "4a96b1f2dcebd706bcd7e43f65d214bebb6c1627", "message": "wordpress/blogspot patterns, babaji", "proba": 7.32925798274664e-07} {"commit": "fe2b63fc1ca7e5db8b89509e9bfe07cc57e38ba8", "message": "Shorten repetitive keywords \"why\"\n\nautopull\n", "proba": 0.9997016787528992} {"commit": "58976488a2a1be1b8e032e0c6cb17fe46e2a4cfa", "message": "LiteCore testnet chain explorer addes\n\nA very useful explorer as it does not go through notorious Cloudflare.", "proba": 1.0451964271851466e-07} {"commit": "e3edbb35c1e709450237747ff48bb2c2b782ff99", "message": "Replace RequestMessage -> CreateBudgetRequestMessage\n", "proba": 2.2366033647358563e-07} {"commit": "e329ac74dd2cb9dc37602088fb0ec2e8c69cab17", "message": "Watch NS jawatankosong.biz", "proba": 1.4517704016725475e-07} {"commit": "0a3586f1b64a6d7ea22b1c3cb783e37980ee5f75", "message": "! Watch AS 45815 - HOSTCOIN-AS-IN-AP", "proba": 1.312065762704151e-07} {"commit": "5678669c429e6813978e36efbc9ab481bc463c0b", "message": "Use csv module for simplicity\n", "proba": 9.44526163948467e-07} {"commit": "dfbfea868f14ba36b702a1f5bc73580a59e89ead", "message": "Add placeholder option\n", "proba": 8.70412293352274e-07} {"commit": "ab739ec0929deb749c788a1b953dd11af6520201", "message": "Add a few blacklisted sites\n", "proba": 6.129656071607315e-07} {"commit": "0215873e2a273dea00cae45663f2404023359807", "message": "Use more descriptive warning message\n", "proba": 1.6302050198646612e-07} {"commit": "ee50bb0a6338dc8fb8fb643095c78e341230b457", "message": "Delete multiclass_sklearn.py", "proba": 2.3926636458782014e-06} {"commit": "c7e817b42ea3bc6626b0790e78037c4235687a46", "message": "fix test_obs\n", "proba": 8.662785148771945e-06} {"commit": "13aae026136b1315f1612779c20764a3215cabc2", "message": "Strip code blocks --autopull", "proba": 1.5518733675889962e-07} {"commit": "f19529a1eb667532ef29f6e5243b376068216d0e", "message": "Support missing \"label:\" in context\n", "proba": 0.000310190866002813} {"commit": "08fed3c2af46217cbd33b7db0ed9948d2f5598ed", "message": "solves problem with duplicated targetid in mocks\n", "proba": 5.97322753037588e-07} {"commit": "e555690a01a8a3b8a441b199e08dcfc7ced494bc", "message": "python_interop: add return value to child task\n", "proba": 0.0005164411268197} {"commit": "c9277274ba33f93fcda0c85f59b0b55eeebddb71", "message": "investigation patch\n", "proba": 8.397170176976942e-07} {"commit": "8ae4d12919970667d924054510db3982f886dcbd", "message": "Delete: unused constants\n", "proba": 0.00011296690354356542} {"commit": "48de29fed9322d29a7f9797863427e51d1badc0e", "message": "lo vi y quise hacer un par de cambios :P", "proba": 2.42427461216721e-07} {"commit": "9cb3fb0e204d7cc56e0c243ba85c4d4c9612fa00", "message": "implemented SAGA_VERBOSE\n", "proba": 0.0319402739405632} {"commit": "00b60a934748867f6c43fe9d84f8cff5491b88ea", "message": "fix exc handling\n", "proba": 5.765961077486281e-07} {"commit": "d3510c532f5e4389946f3b330ed44dd057a78ab9", "message": "mecharithm.com", "proba": 5.766939921159064e-07} {"commit": "d497f6edde6e85e79df6dc6efe2930963bb52e8f", "message": "Add some comments to code\n", "proba": 1.7270546948111587e-07} {"commit": "52471a029a0f2927c7fabe372e27ff6d457c3354", "message": "Test XmpBaseValue comparisons\n", "proba": 2.905663905039546e-07} {"commit": "520247e16412bfdb2ace7833daeafc5db1524e05", "message": "xrandr: Add format\n", "proba": 3.6323228414403275e-05} {"commit": "092080eedbe7bcc98b49dd96e0d3d360bfaea602", "message": "added help for compute api\n", "proba": 2.2020203971351293e-07} {"commit": "dfbd0bd47731c8cc9a7897e7a23e89139489266c", "message": "dick is a name after all", "proba": 7.280168938450515e-05} {"commit": "1383e61211aaeee106b29f2e408fdda8f92370df", "message": "Close fd if it fails to read the device\n\nIf the device is unmapped from the storage side, the os.read will\nfail with i/o error. However, it's not closing the fd and any\nprocess using the blivet module will hold the device indefeniely. This\nprevents administrator from removing the device from multipath\nlayer.\n", "proba": 1.2819479877634876e-07} {"commit": "8c08908c1f24ce721a11a508955ab9f9ff28607c", "message": "Docstring Changes (#74)\n\n* Fixed Whitespace on pycgmStatic\r\n\r\n* Docstring Changes\r\n\r\n* Fixed Docstring Tests\r\n\r\n* Made changes as requested in review\r\n\r\n* Rounded output to two decimal places in docstrings.\r\n\r\nChanged doctests accordingly.\r\n\r\n* Changes to doctests.\r\n\r\n* Fixed EOF error in test.\r\n\r\n* Fixed doctest rounding errors.\r\n\r\n* Fixed rounding and typing errors.\r\n\r\n* Fixed rounding in pelvisJointCenter, hipJointCenter and norm3d docstrings.\r\n\r\nAlso undid rounding in unittests (got a little carried away there, \r\nsorry).\r\n\r\n* Update test_pycgmStatic_axis.py", "proba": 1.2280266901143477e-06} {"commit": "a99230e6fb23bacba5b60df04733896fea61c89a", "message": "added sbs help\n", "proba": 1.3107937490985933e-07} {"commit": "d835b733f99dab63e0c599c0be688db883f7fc27", "message": "add tables for statistics: FutureCitationRank and InventorRank\n", "proba": 3.967168424878764e-07} {"commit": "ceb3bc3ec3abc8552bf9069af6709b29b0ff94b2", "message": "! Typo fix (spurious comma)", "proba": 5.78379967919318e-07} {"commit": "6c24bb25fddd3333592ae37bc3379e25f08fc3f5", "message": "devicelibs.lvm: refactor _getConfigArgs()/lvm()\n\nEvery place in devicelibs.lvm that executes lvm uses _getConfigArgs()[1] to\nhelp build the argument list. So it'd be cleaner and simpler if we made\nevery call to the lvm binary go through lvm(), and then just called\n_getConfigArgs() from there.\n\nThis also means we can pass the caller-requested lvm command+arguments to\n_getConfigArgs(), so it can examine them and add appropriate config options\nfor us.\n\nFor example: right now the caller has to explicitly request\nread_only_locking if it wants read-only locks. The current code does that\nfor every call to the informational commands (lvs, pvs, vgs, etc.).\n\nThis change moves that logic into _getConfigArgs(), which now just\nautomatically does read-only locking whenever we call one of the info\ncommands. Much simpler!\n\n[1] except thinsnapshotcreate(), but that was an oversight (which is\ntherefore fixed by this commit)\n", "proba": 0.0001443296205252409} {"commit": "ca8c724ecfb15a56a8da54d4003f57d79cadd7c0", "message": "_pggui_entries: Change module-level functions to static methods\n", "proba": 5.427596647678001e-07} {"commit": "2edc7040f9266c87cb7d94c379a8ad4018cce0d9", "message": "Removal of jsonify_recipients per #13\n", "proba": 3.477806274077011e-07} {"commit": "8cfb21d989ada3c63b0c4b52fc5afc27c2f0b8d0", "message": "Allow trailing commas in array and object literals\n", "proba": 2.601591586426366e-05} {"commit": "3105a9918506bcf150bf08405b4bde645314d754", "message": "Update volume state before and after extension (NC-1459)\n", "proba": 1.066714077069264e-07} {"commit": "0fad205d51de9f26a0bfde29b0c568b475803e4a", "message": "URL-decode the texts\n", "proba": 0.9999994039535522} {"commit": "ed870ae1dc47c7f227e9536e525e6a55b6c60e3e", "message": "gateway/coap: fix cache when resource state is changed from client\n", "proba": 3.6392910374161147e-07} {"commit": "2ad7b22689b69c27f483ba9e5131c8159e51b5c4", "message": "Added coverage 'exclude' markers to src/parser.py.\n", "proba": 1.1042275360750864e-07} {"commit": "2ff2f100405cdf275e3fff690757cbf29ff9f765", "message": "Improve likelihood that we'll speak link role for descendant text object\n", "proba": 2.2603060756409832e-07} {"commit": "c8eb3fdf884c9c4cb741e05bd44d222d2669e9f8", "message": "+follicure --autopull", "proba": 1.4943560699975933e-07} {"commit": "c79c0f9b09086911a54cf15404879f2a1b85c602", "message": "gp_ptspec: stack spectra\n", "proba": 8.595716280979104e-06} {"commit": "31036fdcb5e3425452fc9871b3fc7b5e7a8203a1", "message": "Fix unicode error", "proba": 0.02950548380613327} {"commit": "5aaa39ef2c4c53176a0b8a21d80fb65680a68afe", "message": "gp_ptspec: fix color and order in panel plot\n", "proba": 1.6936276381329662e-07} {"commit": "48fe3c2f00f794269a46b858754039b5e5d32738", "message": "further cleanup of the svg module -- let's keep on changing everything back and forth\n", "proba": 1.1305752423140802e-07} {"commit": "2d91c48d8ae581818cd1122c949e8636fe1d1466", "message": "+epicresearch", "proba": 1.3337627535747743e-07} {"commit": "7bedbde11166b8d9be8f0e0ad97b18b1741ba98f", "message": "Fix method call\n", "proba": 7.758490028209053e-06} {"commit": "efb039fc7aff48ff4dfceff48e224b83a63383b7", "message": "firewall stuff\n", "proba": 6.166289381326351e-07} {"commit": "88c065aa0046abfebe0af0b3363cb7c6f1bc2094", "message": "fixing issue with word on python3\n", "proba": 2.0120585304539418e-06} {"commit": "c1b4da6d63e3d0e9b60dd556c308720bd3c238fc", "message": "Fix Traceroute\n", "proba": 8.644002264190931e-06} {"commit": "5728a994f3ffdda3694bc622181987f9db8240d7", "message": "fixed missed renamed contain->contains", "proba": 7.681281317672983e-07} {"commit": "1968295f40b71e2fe3b367ba4f37c0fdd75bfd45", "message": "fixed issue #1060\n", "proba": 3.241953265842312e-07} {"commit": "6a9ca2821212195565245434cfaf46070024b4d7", "message": "fixed packager\n", "proba": 5.34221271664137e-07} {"commit": "3e8a6f39aeb7a31319dfbd5e65a3ee02ecae2baa", "message": "Smooth renewal of client certificates\n\nThis patch fixes another chicken-and-egg problem which\noccurred when the node certificates get renewed. When\nrenewing a node certificate, the previous certificate\nhas to be used to update the configuration. To address\nthis, we keep the digest of the previos certificate\naround till the new one is written to all nodes in\nthe configuration.\n\nSigned-off-by: Helga Velroyen <2d0126b1ec6f9ec5cbec4a7012aa14faeaef10f5@google.com>\nReviewed-by: Klaus Aehlig <4ce51de36d9068cd7db2eec1151e0f3f95419008@google.com>\n", "proba": 1.446491211254397e-07} {"commit": "e440c55ea9a37b3a345f3a76c9c319c11c59ae9c", "message": "Update: plugins\u306e\u578b\u3092\u660e\u793a\n", "proba": 3.495639475659118e-07} {"commit": "ea758baac64535cda0bd80cbf9769163fb12a654", "message": "compatibility with pyfits>=3.2\n", "proba": 6.383274353538582e-07} {"commit": "c209cde9ed7f42f46c5eae2ca149e78339ff76aa", "message": "added a change directory command to gvf\n", "proba": 4.904590582555102e-07} {"commit": "c9936919a43cbcc119adfb06a288fd0370483710", "message": "Minor optimization: Get agent after input validation\n", "proba": 1.7779085226266034e-07} {"commit": "6850959637d0abe9ae2a3f125dd5413ca2b85c5a", "message": "PowerShellLexer: add *.psm1 to _mapping\n", "proba": 2.499016886758909e-07} {"commit": "7283d3123ffe04db3cd87fc5b5d0c1daa06d5557", "message": "Updated from Brython Server: 2/17/2016 1:02:31 PM", "proba": 1.1155892565284375e-07} {"commit": "c187ea29225a423c5b16011f67d01fcac04410e7", "message": "remake _mapping.py.\n", "proba": 1.641426337073426e-07} {"commit": "8ca2e8de532581a8adb9fae3499eed0b49a0610b", "message": "cria \u00edndice no pk_field\n", "proba": 3.806596623689984e-06} {"commit": "fdef32c3f3b5256205ec377bfe5e1e9ea1dac897", "message": "fix commands.input._update\n", "proba": 7.941223157104105e-05} {"commit": "76dfcc2392c4f724112edab6c8c4d37e03da9f1b", "message": "PowerShellLexer: add *.psm1 to _mapping\n", "proba": 2.499016886758909e-07} {"commit": "9bad9570c1bdf639413b2e42da9db2710f3048d5", "message": "Closes #745: fix function declaration recognition for C/C++/...\n", "proba": 1.4850307650249306e-07} {"commit": "2173c2d927082644264a7bfe03f5154d8ccfb555", "message": "Whoops. Add shebang\n", "proba": 3.786887464229949e-05} {"commit": "f239014337be13c9a3a4772b01453fa93bfe7721", "message": "Modfsi\n\n", "proba": 1.232996623912186e-06} {"commit": "955ea932ebfb419ff1ca946f794648b214c848f9", "message": "Sublime text 3 requires that we return bool here\n", "proba": 8.292647066809877e-07} {"commit": "61b7efcc162dff15792933b705519b2f3750a0d5", "message": "yaml_import: Try to explain values of failed assertions\n\nWhen some assertion fails, eg. \"a == 4\" , try to break it down and eval\nthe parts so that we see the real \"8 == 4\" data.\n", "proba": 3.585901140468195e-07} {"commit": "15fa58ef9eb2cb0f750b7803c3497b5854005e97", "message": "dodala omejitev dol\u017eine imen igralcev", "proba": 8.467987413496303e-07} {"commit": "e63d85ccf52bb5a17304e726dfe3dddf7e00a8db", "message": "Closes #813: add missing FORTRAN statements.\n", "proba": 1.3286489775055088e-07} {"commit": "3b4f912503ab282be79e7db1b867b601b9f0bebd", "message": "[IMP] tools/yaml_import: Try to explain values of failed assertions\nWhen some assertion fails, eg. \"a == 4\" , try to break it down and eval\nthe parts so that we see the real \"8 == 4\" data.\n", "proba": 4.394442782995611e-07} {"commit": "d1736cbf3f1298ad208f9420fe5ac11f40497a5a", "message": "Update Controller.py", "proba": 6.310718276836269e-07} {"commit": "962d63eff521408814b62bb56b28f0274b194a54", "message": "Improved the message to display in case of unhandled exception\n\n", "proba": 4.688561602961272e-06} {"commit": "703644f32ab0d4d6754d9dea03abd98dde0c8116", "message": "added different version for es conf checking\n", "proba": 1.7548239839015878e-07} {"commit": "4438daeeb1fd541a98529173529dab3b31b046d8", "message": "exo paper revision; plot quantiles of overlapping likelihood between subsequent translocations\n", "proba": 1.5217703719372366e-07} {"commit": "5605af22c890ad8c4970f38c6aa3d511fc94b089", "message": "Updated Objective-c token definitions\n", "proba": 2.659996880538529e-07} {"commit": "3343f56b770aa0a56c4ae12143796b122acdeb76", "message": "Add a verbose option to RunCommandCaptureOutput. Not used yet, does not\ndump output until after the command has finished, so not useful for\nfollowing 'live'.\n\nChange-Id: Ia8562f5e6f8d7ed8af7e188faa68f5cdbba487c6\n\nBUG=chromium-os:11164\nTEST=None\n\nReview URL: http://codereview.chromium.org/6296013\n", "proba": 0.9999176263809204} {"commit": "225790ed4c61c1e692d0d4631ce7bf10b4a0c4e9", "message": "Fixed bug\n", "proba": 5.356139354262268e-07} {"commit": "798d13f66e7bff1a271396035afc9823cd86d6c2", "message": "added missing cep framework support\n", "proba": 3.6996593166804814e-07} {"commit": "d8f5d9ab08b85b0f198738fdb997a62b337898d8", "message": "Remove unused constant.\n", "proba": 6.132790417723299e-07} {"commit": "19ad3f7ba6dd3a6358296cc46e1ef7d0ad10b661", "message": "Renamed `size` to `for` in for-loops\n", "proba": 3.364973235875368e-05} {"commit": "1911704534e1c30a82a991cfb58d8d6fe3682457", "message": "Set correct language as source\n\nPatch is basically the same as d90be6a8765.\n\nBug: https://sourceforge.net/p/pywikipediabot/feature-requests/346/\nChange-Id: Ic2a6010903a3586803687f350f95ce33fa6abbb2\n", "proba": 5.8167435781797394e-05} {"commit": "9c3bd4d79757a3b2abcb8d64b245d73323ff0eef", "message": "Not using namespace packages anymore\n\nThey just make certain things confusing more than they improve. Maybe\nwe'll come back to it some day\n", "proba": 1.3229845308160293e-07} {"commit": "b7c6255b68b3484638e5c7b19fd29be0b3cfa8d0", "message": "fixe argument error\n", "proba": 7.966021371430543e-07} {"commit": "4a9973a512a196cd06e3dd70182c9bea3f9097fe", "message": "Fixed previous commit to match whitespace seperately from variable name\n", "proba": 1.422626638714064e-07} {"commit": "88b24144b6242c22c36b33ac1614dede7bbb6d0e", "message": "ensure libmapnik DEFINES are propagated to the python bindings\n", "proba": 1.7980664779315703e-07} {"commit": "2d4042f6fb73dfc4488edc5f42ab051c5356f192", "message": "Adding DLLEXPORT preprocessor macro\n\nAdding preprocessor macro that adds the __declspec(dllexport)\nattribute to class definitions. This is needed when compiling the\ngenerated wrapper code with the MSC compiler.\n\nAlthough FortWrap currently targets wrapper code that interfaces with\nFortran code compiled using gfortran, there are cases where one may\nwant to compile the wrapper code with MSC. One example is when\ncreating an extension module for Python 3 on Windows, in which case\nthe MSC compiler may be necessary for compiling the Python bindings\nand C++ code, whereas the underlying Fortran code could still be\ncompiled with gfortran.\n", "proba": 3.3989354051300324e-06} {"commit": "50f5d2762b2f6b1950b001062e5b65c4bf5a14d7", "message": "look in the Conary repository database to determine what server names are actually housed there (RBM-256)\n", "proba": 1.1362001117731779e-07} {"commit": "805a42457cbb32131a8544fa8ccf83d72ce8ef06", "message": "elapsed time\n", "proba": 0.00031424977350980043} {"commit": "7b5e68d0fe2eff97b6bd3ea1508cbfa0bfff08bf", "message": "convert: Auto-detect API.\n", "proba": 5.292421292324434e-07} {"commit": "b8fb1f8c7e71f926ba35a2ec985af584b0caeeaf", "message": "More words() in c-like languages\n", "proba": 9.53994458541274e-07} {"commit": "fbeffa489c083426546c5f71a80b6f464ea00fcb", "message": "Add python_requires and update Trove classifiers (#1251)\n\n", "proba": 1.1656617715516404e-07} {"commit": "7f81206832d02cf4c6343485b4a1e6631410b6fc", "message": "Fixed bad commit.\n", "proba": 1.6154852744421078e-07} {"commit": "b0c24257ae08a57f2e80e8054e50dd7d386a8536", "message": "Added user field to Key model.\n", "proba": 1.1070955707737085e-07} {"commit": "0830bccef296d2bff78287da0ca838dd225d586e", "message": "don't overcomplicate scheduling (handle this at the execute layer)\n", "proba": 1.7619879599806154e-07} {"commit": "b3455c2de6f125d24735fb6b593bac5b05240a7b", "message": "[Discord] Improve image color command formatting\n\n", "proba": 9.815919383981964e-07} {"commit": "6d3ba8414086b0cba87598eca5607e7aaea8f638", "message": "joyceRS: remove on_media_changed hook\n\nSigned-off-by: Bas Westerbaan <1d31d94f30d40df7951505d1034e1e923d02ec49@westerbaan.name>\n", "proba": 1.1258035215178097e-07} {"commit": "2cb15828723e6851961b1b8dadced17b342f2d44", "message": "printing of kwargs\n", "proba": 3.527446779116872e-07} {"commit": "1aed564963fa7ec21c17c2dfc3d44e3f50d50f78", "message": "Corrected typographical error.\n", "proba": 1.9311362393636955e-06} {"commit": "d1aa611a2cd0c047e3313427f6cb772eac439c47", "message": "Fix bug in fmap method of FutureFunctor\n", "proba": 4.112330600491987e-07} {"commit": "503af055fc4031de935ad3d0feb01b1bb6a9af42", "message": "Fix parsing issue in Recipe\n", "proba": 4.6058335101406556e-06} {"commit": "beaac7337d6d4753398a87644a1d6c795e0f16ce", "message": "[Discord] Improve joke command consistency\n", "proba": 4.2262176975782495e-06} {"commit": "75a89628fef6810f37e29ab45c20eb9038e9f9b5", "message": "Revert \"winbet quick fix\"\n\nThis reverts commit 154d17e626db1d9f39a57558050c32261f1c3f40.\n", "proba": 1.1684007716894484e-07} {"commit": "af84e13e730ee2b4d7f90a652b8a1fe49e019890", "message": "Dummy instrumentation in tests\n", "proba": 3.231590710583987e-07} {"commit": "f3551b4dd9d10c373e49a44eb857ee816d92726e", "message": "Add two options to handle c99 and stdlib types for the C lexer. These types are colored by default and can be disabled by passing c99highlighting=False or stdlibhighlighting=False to the lexer options.\n\n--HG--\nbranch : trunk\n", "proba": 1.7269127283725538e-06} {"commit": "4e8a3e005a14e8a46bf9faacba0a26ad231b7189", "message": "Move sys.version test out of x/b2x/etc. functions\n", "proba": 0.00012297756620682776} {"commit": "3b5f50548c3e20fc8059abeb20315e61ee5f094b", "message": "[Discord] Use error emoji Bot attribute in twitch remove keyword command\n\n", "proba": 2.580435136678716e-07} {"commit": "4bd94972edeffbce62071323b16627b23b4ece01", "message": "+ Fix deposit bug\n+ Learned not do commit too quickly\n", "proba": 1.3024487088841852e-07} {"commit": "0466e5ac6230cf42d7fef34a006a2008964e9146", "message": "Closes #696: better analyse_text for objective-c lexer.\n", "proba": 1.441902099941217e-07} {"commit": "ce32b9a6270e0a4b8609489da4c890a4c72bd708", "message": "sort input for transcript selection\n", "proba": 1.2139339560235385e-06} {"commit": "b0d54fcef3a48d69d3152684aff1f8de4c6cb5a1", "message": "Allow bokeh-server --dev (sets splitjs, debugjs and backend)\n", "proba": 1.212169280506714e-07} {"commit": "87fb425a5128ce77f05634742a5e1a39d146b073", "message": "Modified default values.\n\ngit-svn-id: a26c1b3dc012bc7b166f1b96505d8277332098eb@603 9ffc3505-93cb-cd4b-9e5d-8a77f6415fcf\n", "proba": 0.00037192823947407305} {"commit": "c6530fed95c03bf34c1c54fe259fe94640e9fe55", "message": "Fix for #147\n\ngit-svn-id: 74b2def6592cf29d88d1a5d33b5c4a2732d8507c@878 67cdc799-7952-0410-af00-57a81ceafa0f\n", "proba": 4.222839038448001e-07} {"commit": "d10ce07569a41b36678527416e743da57bd88a7b", "message": "Added FATAL and DETAIL lines as psql notifications\n", "proba": 1.5257897700848844e-07} {"commit": "cddb51b56fa87e356f0aff7f88b726e6066b7727", "message": "Add richer ContactResult options to init_db.\n", "proba": 1.1079722384010893e-07} {"commit": "b2e47291495a9f360874ab272c51cb826dd210ad", "message": "Indentation fixes", "proba": 2.2695985535392538e-07} {"commit": "a559eab5eb05809f806e47405c8138874b0b97e8", "message": "fix mapping problem with groups if route.pattern is '/'\n", "proba": 0.0010915492894127965} {"commit": "64752f54b6e9904860e4d1fa29d3b25fddbe125e", "message": "Fixed incorrect reference to graphdb cursor.\n", "proba": 1.090191545927155e-07} {"commit": "1743b51ef7d54dce3661661c73a14d870fffdf5e", "message": "much faster (110s => 4s) test of filters (using a smaller graph)\n", "proba": 1.4918357749138522e-07} {"commit": "c674be69d6fcbcbb886dd7cf20d016dbe970df72", "message": "Bugfix for wkargs bugfix\n\n", "proba": 2.5132422365459206e-07} {"commit": "304aeaf4b1f2b5f88b1e486d06db2de61592901f", "message": "Add ``NetworkSpeed`` section in the admin.\n", "proba": 1.1048194892282481e-07} {"commit": "baa1e3a9c034f77363302c69b88198fcbc41a058", "message": "Added 'var' to the pyjs_vars_remap_names list\n\n", "proba": 1.7059606705061015e-07} {"commit": "0768f83bd2e6b4270341b5e4bbc065dc771ffe42", "message": "more indent fixes\n", "proba": 1.8062834783449944e-07} {"commit": "0924a423ef8855fcfa1d7602044bf05c8d7237cd", "message": "Mark fuck-you.py executable\n", "proba": 4.5012845362180087e-07} {"commit": "b9b31492463dfb706de24fece35c8b13ea5fc5f8", "message": "Pyleus local run signal handler\n", "proba": 1.821984056959991e-07} {"commit": "c2ac6b2c0d1725c5924915b7d2f12ff7d9da573b", "message": "add the build handlers regardless, for testing\n", "proba": 1.6402840685714182e-07} {"commit": "9e65902d36018e0ad70901e8f2348ce1d11d4032", "message": "gypd: update with required default variables.\n\nUpdate the list of identity variables in gypd so that the generator will\nrun successfully on Chromium, which uses these variables predefined by\nother generators.\n\nBUG=\nR=bradnelson@google.com\n\nReview URL: https://codereview.chromium.org/642933007\n\ngit-svn-id: e7e1075985beda50ea81ac4472467b4f6e91fc78@1989 78cadc50-ecff-11dd-a971-7dbc132099af\n", "proba": 1.8491409718990326e-05} {"commit": "fc81fb972b6d38b80c5c7dc6d628b438a868c0d9", "message": "Add FetchRequest/Response_v3 structs (#943)\n\n", "proba": 1.540585401471617e-07} {"commit": "b951902d0a8e4b65e5bdefc5c01c0f8d9f1af7a9", "message": "Add flock into the link line on make builds to seralize links.\n\nThis is because linking is often memory bound, so running only one\nat a time is a good idea.\nReview URL: http://codereview.chromium.org/2891027\n", "proba": 1.7840604016328143e-07} {"commit": "4a7c1ad9e0d6bfe785b907f872e08622666e8bce", "message": "Fixed syntax error.\n", "proba": 2.0155603408511524e-07} {"commit": "bd2cfd12848d2a6ec556d0de9873d108270f9811", "message": "Makefile generator: install loadable_modules like executables\n\nThis is necessary for the plugin tests.\n\nReview URL: http://codereview.chromium.org/150080\n", "proba": 2.0141500556292158e-07} {"commit": "cdce9bb49f6ec043e3a5dd332ee72417557a90e9", "message": "Defining TMPDIR, since dftables requires it.\n\nReview URL: http://codereview.chromium.org/99176", "proba": 2.2062644688958244e-07} {"commit": "886ce3f82d1875ffcb3ab6e64ab8e8f434ca0d44", "message": "set LD_LIBRARY_PATH\n", "proba": 1.2504426194936968e-05} {"commit": "fab70d38dff2267d8d4cfcb84f9c65c90a286b57", "message": "Switching visual studio projects to relative paths.\n\n\n\ngit-svn-id: e7e1075985beda50ea81ac4472467b4f6e91fc78@91 78cadc50-ecff-11dd-a971-7dbc132099af\n", "proba": 0.00010160532838199288} {"commit": "a92326c3956de3ba5b529b0a209ebb95e3a1e7f0", "message": "add more test arrays\n", "proba": 2.6770578642754117e-07} {"commit": "226281044c5ca44bd4fc0da51732c7df45193737", "message": "Adding support for using checked-in canned vcproj files in a gyp generated sln.\nReview URL: http://codereview.chromium.org/119012\n", "proba": 1.237480802274149e-07} {"commit": "707b54348a41f6d3e76eb59e3817aec2a3583a56", "message": "Do not include extpy[w].exe anymore\n", "proba": 1.7817293951338797e-07} {"commit": "ee091cb58f2c9453df47679e88e97a311c4e76f9", "message": "Fixing typo in gyp.\n\nReview URL: http://codereview.chromium.org/84003\n\ngit-svn-id: e7e1075985beda50ea81ac4472467b4f6e91fc78@434 78cadc50-ecff-11dd-a971-7dbc132099af\n", "proba": 0.0001274607056984678} {"commit": "cf65e9d33b739330bc215b32642c04b27c68b188", "message": "Cleaned up / updated dwolla-related admin fieldsets.\n", "proba": 1.0188135490807326e-07} {"commit": "c045cbfac74ac61520f39f6a32b00d5715626edf", "message": "Adding msvs_system_include_dirs to allow some include directories to go\nabsolutely last.\n\nBUG=None\nTEST=None\nTBR=sgk\n\n\nReview URL: http://codereview.chromium.org/155811\n", "proba": 4.0526927591599815e-07} {"commit": "29b1bc873add3d946ef36303453aaeb1cc9f6349", "message": "Move selection handling before active tool handling\n\nThis prevents us from needing to implement all manner of checks in the\nrest of the tools\n", "proba": 1.1345402839424423e-07} {"commit": "9a0438dc1d44ab4e7115d0db27c32655bf10b56e", "message": "Stops rotation when a set is found\n", "proba": 7.700600690441206e-07} {"commit": "7c3f5f6d94bf089cba6a04291fce473315074d93", "message": "Add IMAGE_PATH doxygen configuration\n\nThis is a config that we'll parse from input Doxygen config files since\nindividual packages may declare their need to input images.\n", "proba": 1.0612246370556022e-07} {"commit": "5b71c3646b6c9f64c036934ba53c9305f8c3d847", "message": "update doc-string", "proba": 1.268552296096459e-06} {"commit": "0dabc303db74be9a971ab420c622a0d5082b2e5f", "message": "Fix r335.\n\n", "proba": 3.6667606195806e-07} {"commit": "4fd795400e76639971d42edca31947a8a4734350", "message": "Find default CSV template in script directory\n\nThe template wasn't found if the script was started from another\ndirectory.\n\nhttps://github.com/pe-st/garmin-connect-export/issues/18\n", "proba": 0.0015691261505708098} {"commit": "32ad0c48bd00666cf76b42864c2706cc80556d9d", "message": "Update for assertion removal in bug 784792\n", "proba": 1.8228182341317734e-07} {"commit": "51b9fbb7b3376ee738272d3f662cebe5b8d15cea", "message": "Better parsing and stripping of title fields.\n", "proba": 1.1369566976782153e-07} {"commit": "c943a26cf00bf96936d6e330fe9230530dee970d", "message": "Nicer lookup.\n", "proba": 1.6146167070019146e-07} {"commit": "5e3546e1be494dc5417d2d7a49b4ea41969595d5", "message": "Arrumei list do servidor\n", "proba": 9.325005976279499e-07} {"commit": "fe40898efb7ceab391cb3c00166e908383de2652", "message": "Write gear json file if verbosity enabled\n", "proba": 1.5769689980515977e-06} {"commit": "33431eb0b99475f7338c50fbd0a95b088797f861", "message": "Add 897794\n", "proba": 0.9998158812522888} {"commit": "a9a4ffd58166589172588c88632b578d6997b1e0", "message": "Fixed a bug. Imported the necessary module for type hinting.", "proba": 1.0494773761138276e-07} {"commit": "77514474dc350f4492090b97f633d214b4611493", "message": "Make it possible to access country from location\n", "proba": 0.00010435215517645702} {"commit": "24c7a97b84a982606431a3566a1ff0da98c667cb", "message": "modified: lexicon.py\nerror handling (try:except) when keyerror inside add_static\n", "proba": 2.637555382989376e-07} {"commit": "cc603703ad4eb30cea27bf752bd6e219d7f2ebcb", "message": "Adicionando o m\u00e9todo `User.metadata()'\n\nEste m\u00e9todo retorna todos os metadados de um usu\u00e1rio, tanto os\npresentes na tabela `wp_users' quanto na tabela `wp_user_meta'.", "proba": 2.557286506998935e-07} {"commit": "145a0f0878ca9475d497df4a5a8703cdb29a912d", "message": "Allow opening databases created on systems without application_id.\n", "proba": 1.256757258261132e-07} {"commit": "f5ddf47ad66d5203acf76eeef51d88652f0c1c41", "message": "fix to synthesized table size tracking\n", "proba": 6.846150313322141e-07} {"commit": "c568a4ae1e6b3154ddd4aa271627102760046f69", "message": "Added name validation for the contact data field class.\n", "proba": 1.0464651012398463e-07} {"commit": "a5c433da6cef7cb64503d58a3288e57ed809032c", "message": "update LammpsRunner doc\n\n\nFormer-commit-id: 78129fa01874512dcae45cf515caa4fefe334de7 [formerly 9a2b81eb0534181c0c777b5e0ea97a99c6aa7433]\nFormer-commit-id: 7e95ea55aaf641d6ea04a1aaee489425b1facb51", "proba": 5.085653924652433e-07} {"commit": "83473c11a7a921778335382b5e170634516ffa83", "message": "Switch subclassing matching when slicing.\n", "proba": 1.1852146997171076e-07} {"commit": "96b0eedda30071f0eee32a3f7b816c1da18e946c", "message": "fix metodo nome errato", "proba": 0.9999551773071289} {"commit": "46569f6775216f22f9fa2ae8190bdd5c4dcf7269", "message": "fix bug\n", "proba": 6.400653660421085e-07} {"commit": "452e4d2cd614581f1dc448353c270094ad14ec67", "message": "migrate scripte support for a single id\n", "proba": 2.0017260737859033e-07} {"commit": "b2e8da91c37650fef78b949da0204f7190880657", "message": "Commander: use shared probe proxy so probe server works correctly.\n\nThe probeserver command would start the server successfully, but any\nattempted connect would fail because the probe was not wrapped in\nthe SharedDebugProbeProxy.\n", "proba": 1.2577524444168375e-07} {"commit": "a61d1d3b0256a2caf368d84f6800174801a4331e", "message": "Removing unused helper.py\n", "proba": 1.8884461496782023e-06} {"commit": "381d552f9676bee85cd22e5cf0aa931066d57ea1", "message": "ML API: build system fixes\n", "proba": 8.692227311257739e-07} {"commit": "e407f6881642f7a49a09b37f031e113907df4f28", "message": "fixed a bug when no authentication is in use\n", "proba": 4.373646902422479e-07} {"commit": "4346966f002a85d8fc079899ad89d6827b2f4713", "message": "Run link-time optimization on windows only when configured with --optimize\nThis should probably be revisited for VS 2015\n\nSigned-off-by: Nuno Lopes \n", "proba": 1.1377419895097773e-07} {"commit": "11d789b79af77b05f14b78adbc8af1fd6463e3c1", "message": "Template funciton Rlist now can deal with python list.\n", "proba": 1.0372129821689668e-07} {"commit": "6e1c246454930377bb14f249e3827db29878050b", "message": "avoid exception in Ratul's environment\n\nSigned-off-by: Nikolaj Bjorner <0654de5c81f471cf6f3d20a913eab9a374626acd@microsoft.com>\n", "proba": 1.1002960320638522e-07} {"commit": "c165ba6ec92f52d2c3f4b8bb23f3f3e3d2bae8df", "message": "use another version of LARC with better hyperparameters\n", "proba": 1.926747330571743e-07} {"commit": "69cbadeb10e8c16584d6b1a6ec6af9321d65c5b9", "message": "Continued to work on shell code\n", "proba": 1.326906584608878e-07} {"commit": "7f0231a6f8d321924b1058fe94c5014c5526ebe0", "message": "Prioritize cert-data.yml when setting template PDF\n\nThis resolves an issue introduced recently [1].\n\nIf a template PDF file is specified in YML, it receives top priority.\nElse if xqueue provides a filename, it is used.\nElse, a filename is generated based on the course_id.\n\n[1] https://github.com/edx/edx-certificates/commit/86c8bb02c72f9bfaacd60b9eb6b91c299f64bc39\n", "proba": 4.828970486414619e-05} {"commit": "90a38670be6a09dd51d2a44a253d681513e7ab95", "message": "Changelog lint and generation bug fixes. (#53792)\n\n* Add missing dict entry for changelog generation.\r\n* Enforce str and list types on sections.\r\n* Check type of section list items.\r\n* Support non-ascii characters in changelogs.\r\n", "proba": 1.0293474872469233e-07} {"commit": "3dd481b87433ed83a49c5f3f9f56e263ef6b44f8", "message": "fix indentation\n", "proba": 0.00035826992825604975} {"commit": "8e30cafa365aedda0ec38dfdea7b169745f51e84", "message": "Release to production\n\n* origin/rc:\n Remove dead functions\n Remove stanford renderer completely!\n", "proba": 9.937180323049688e-08} {"commit": "f70acbf3f5ba2cde6e7bd83dc729d0f0d727aedf", "message": "check topic\n", "proba": 2.455008996093966e-07} {"commit": "aca60579f2dd592c73c61441c3e3dd9b240942f5", "message": "Allow changing angdist cut in psrpipe\n", "proba": 3.2342853728550836e-07} {"commit": "87f2feaf7f260969de822ab297fc74e7db98f0d3", "message": "typo correction.\nfrom \"requireded\" to \"required\"\n", "proba": 0.9999665021896362} {"commit": "2c8830381b7568a344d156d27a071bab8899b3f6", "message": "Removed fallback option during getoption on the ConfigManager.\n\nLegacy Python (2.7) ConfigManager does not support the optional argument\nfallback when doing a get on the configuration. We are not currently\nusing it, so until we either sunset Legacy Python support or find a\nprogrammatic workaround we should leave it out.\n", "proba": 1.0873735334371304e-07} {"commit": "e183b13f469ba11a3e473fdfd9fca74c02bf48a8", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "a4f2952948113e5fec3437afdbabc59ac5619bb9", "message": "Move emoji_regex\n", "proba": 0.9980831146240234} {"commit": "30478655e689e1ca57ae97dc9d76fc835798e891", "message": "properly cast string to bool\n\nUsing https://stackoverflow.com/a/18472142/150884\n", "proba": 0.0009481822489760816} {"commit": "8b6c1840adb7e24ba9dcabc5869d6407ea7714da", "message": "--merge option added\n\nWhen more than 1 ObsID is provided (and more than 1 obsID with non-zero\nGTI), \u2014merge will create a single merged event list (with nicerql\nplot), single lightcurve, and single spectra.\n", "proba": 1.0291982732724136e-07} {"commit": "c6bcddd8e6c2ab9083fd39e010eb581acf443481", "message": "Can get datetime.time as input\n", "proba": 0.9999991655349731} {"commit": "e19081bc15a35271d9420be2341d3501d44cd434", "message": "Update some comments\n", "proba": 1.3696136136331916e-07} {"commit": "5105fa21969f0d9e429a0ae2045892f5d68324d4", "message": "retard\n", "proba": 1.3157300600141753e-05} {"commit": "916af0008e343dc5365ed88038c19beb9df4b200", "message": "More rules for normalizing names; remove slashes from file names.\n", "proba": 1.0734493827158076e-07} {"commit": "aae5c5b1dde3e456189cdff0fa1cd7b5cb369aa8", "message": "londiste copy: fix data filtering when parallel_copies > 1\n\nThe problem appears in 'catching-up' phase were code checked\ntable status only and not whether the table is owned by\ncurrent process. Then events can be replayed by several copy\nprocesses when they are all in catching-up phase.\n\nThe problem does not appear when local_only=1.\n\nAlso remove unused function.\n", "proba": 1.2639944202419429e-07} {"commit": "2d761c9ac722b9ba5b98687b906513658bc0add5", "message": "fix loading params if ignore_extra is set (#11235)\n\n", "proba": 1.240096452193029e-07} {"commit": "702a52994e8c90b772014ff34c6172a940b5e0de", "message": "make sure to commit pyproject toml as part of release script\n", "proba": 1.3953233235497464e-07} {"commit": "ca5deb5222a755f03bc538e8d73270046f7a219b", "message": "download images\n", "proba": 1.73341064169108e-07} {"commit": "b67b997857d102654c8275b518b8eddf031e719f", "message": "[enh] build a dictionnary in parsing mode to simplify the code\n", "proba": 2.712987907216302e-06} {"commit": "84fa418915f957948bd3f7800c7296957de0979f", "message": "[mod] misc\n", "proba": 6.52749918117479e-07} {"commit": "e9c0ba51218ee549b81dccc4bb85919f6f61af7a", "message": "Refactored\n", "proba": 3.3528910989844007e-06} {"commit": "9b9e786a20883e1fc9944c91bf6cb0b57b8cdbee", "message": "Fixed some errors in the geometry, changed how lines are generated\n", "proba": 5.397591280598135e-07} {"commit": "1324a05dcb86b98a04c242759b728505129fc8ad", "message": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0442\u0435\u0441\u0442\u0438\u0440\u0443\u0435\u043c\u043e\u043c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0438\u0437 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430\n", "proba": 3.630551930200454e-07} {"commit": "b0778fc4d0271a9ba16e7c81c2c4c67a8273cda6", "message": "Fixes issue #712\n", "proba": 1.3936956122506672e-07} {"commit": "431bba9f69689e4b8520bbd29501375171c502df", "message": "More durable expanded_eval_only_mode fix: Vocabulary is based on training set, so it has to be loaded.\n", "proba": 1.0812001960402995e-07} {"commit": "41455a3e70f53103260755cd1d2ea2cfcb295c5c", "message": "Fix longitude range\n", "proba": 0.9999992847442627} {"commit": "f03c626c57ff75b8b9f8c1c63b0a628d68db7e30", "message": "Enable DeprecationWarning's in pytest\n\nCloses diofant/diofant#352\n", "proba": 1.3462145886933286e-07} {"commit": "07b0771f9b38003d66f862bb3c4b34342d76d226", "message": "improved health of genomic interval module\n", "proba": 2.2810992561517196e-07} {"commit": "b1a11c3fb24cd1379a9a54404615e42b842d4aaa", "message": "Refactor: Using fakefs for cleaner mocking\n", "proba": 1.951477486272779e-07} {"commit": "f0b096adf263494cde1b86778180f83fe91c88f2", "message": "aboslute import in conftest\n", "proba": 2.2275735034327226e-07} {"commit": "57b808cb77dc8a1cd5f5ace55a010d7e2a4d7681", "message": "build package\n", "proba": 9.78730554379581e-07} {"commit": "da38991551657c5e171de8e059dcd3df764876eb", "message": "Fix exception in parsing component revisions. (#631)\n\nUse generic yaml format for parsing. It also account for\r\ntrailing commas in json.", "proba": 1.0760979307633534e-07} {"commit": "2281a42b2b9b2d2a84ef61dfe2f335b3937712af", "message": "add headers for solving http://www.bomb01.com/ forbidden\n", "proba": 1.7344969819532707e-05} {"commit": "7e4bb44c1885524a11c64899b1b920329ee6fcc2", "message": "Obkrozi\n\nSedaj pravilno obkro\u017ei diagonalne 5-v-vrsto.\n", "proba": 1.6350332998626982e-07} {"commit": "2e02b6b12c2e36ae36a530d5e575f1e2e48c4cb4", "message": "denis system\n", "proba": 1.1177335181855597e-06} {"commit": "1ecddd047c1a82b70c5372f1556e4e80f23f0375", "message": "courtesy to bcbio-gffparser program\n", "proba": 1.1755180651107366e-07} {"commit": "70684d84a1ef0d9aecb5d676f062f4825f02a58a", "message": "[reggen] Tweak Register's _asdict to satisfy new mypy\n\nMypy 0.920 was released last night and now infers a more precise type\nfor the \"rd\" object that we return. Instead of Dict[str, object], it\ninfers Dict[str, Sequence[object]] (presumably because we happen to\nalways use a string or a list as a value). Because Dict is not\ncovariant in the value type, mypy then complains that we're trying to\nreturn rd from the function.\n\nThe fix is to explicitly tell mypy what type to infer for rd.\n\nSigned-off-by: Rupert Swarbrick <290093e2ad2515ed2f14d749293c8cf8e02ca274@lowrisc.org>\n", "proba": 1.9779138256126316e-06} {"commit": "20eb27d525f981ba9ab6fb57439af7a83ac36a23", "message": "Explain what the `angular_velocity` function does (#198)\n\n#164", "proba": 0.001347067765891552} {"commit": "869cf74b3bb514a75936a16177144a4e02feb9fe", "message": "[reggen] Automatically generate alert test register\n\nSigned-off-by: Michael Schaffner \n", "proba": 1.3002991749999637e-07} {"commit": "37aa941877429c75ce85074166ab4237101dd585", "message": "Corrected error with radvel inputs.\n", "proba": 1.2554839656786498e-07} {"commit": "28d7f0a672e5286393a71595825d41745c7f80e3", "message": "reference\n", "proba": 1.0726487289502984e-06} {"commit": "dd6d84f224b2b8605d3cd5f29178f63eaeecef5c", "message": "Catch \"StandardError\" exceptions only as \"Exception\" catches other low level exceptions like SystemExit. See: http://pyref.infogami.com/SystemExit\n", "proba": 2.3767094603499572e-07} {"commit": "ea08ddd08f3eb33214398549ab21e6c1a63ced3a", "message": "formatting output, update from trunk\n\ngit-svn-id: 9a050473c2aca1e14f53d73349e19b938c2cf203@10496 6a7f98fc-eeb0-4dc1-a6e2-c2c589a08aa6\n", "proba": 1.3573540854849853e-05} {"commit": "27a1fb77ca0a8a48cea754ab79634a6c1699d8d9", "message": "fix: Avoid 'None' in finite check of targ.rv\n", "proba": 0.00029223249293863773} {"commit": "f8100566daf993f7035f1dbdbb66fe0c9376bd07", "message": "Updated List/Combobox selection to use NotifyParent.\nAdded functions to get the selected items in a list box.\n", "proba": 9.915748222510956e-08} {"commit": "92d03ff4b255cbf226bf4451f68e8fe9d15e9c99", "message": "issue_750: signatures for GetTextMetrics, SetCursorPos, GetCursorPos, GetCaretPos\n", "proba": 1.2181432396118907e-07} {"commit": "5091e666a2aa40876d2bfbfdbdad752b63dc657d", "message": "Make var-def? and type-def? take identifiers\n\nAny variable is going to have to be a syntactically valid identifier\nanyway, so there's no sense in typing out the extra quotation marks.\n", "proba": 3.152207500534132e-05} {"commit": "246f1f7b28995131f4e473a092070fafe5004660", "message": "Check for last push event to use as last date\n", "proba": 4.460368643321999e-07} {"commit": "64817fe1d30ba3a91327b9585848371c1d5f99a8", "message": "[qa] Fix race condition in sendheaders.py\n\nAlso de-duplicates code that has been moved to mininode\n", "proba": 1.307992789634227e-07} {"commit": "75e2a0c1b936a779c03971fe90012eead69e52a0", "message": "Add mask to the inputs.\n", "proba": 1.8199487783476798e-07} {"commit": "212e6657a010dcbe43f88e9d29b4ba0029deae74", "message": "Tag comment with OHSU.\n", "proba": 1.1582605452531425e-07} {"commit": "56b0de6822dec3fe1d97c05f4a5ddf3c3f4d4174", "message": "Fix grammar in `Backend` documentation (#8113)\n\n* very minor grammar and syntax cleanup in comment to `def run`.\n\n* another grammar change\n\n* and one last change!", "proba": 1.0665269201126648e-07} {"commit": "73a6fbeeaaf9bf4e2ce4ee2f688647f001cff2a7", "message": "corrected output noise increments\n", "proba": 0.00011286613153060898} {"commit": "db5c942b594fff1614c40d4a5d45c59499dc1f9f", "message": "Both entries when linking become linked.\n", "proba": 1.0910423497989541e-07} {"commit": "63a444dd715efdce66f7ab865fc4027611f4c529", "message": "Update util.py", "proba": 1.1862057363032363e-06} {"commit": "1b6587562b9461f79de44a2d959fe5a94467e491", "message": "Use the new get_random_string function when generating the password for the e-mails.\n", "proba": 4.5790289959768415e-07} {"commit": "fd94b49197ab5b6edcb1975639eb32f1e7b8ca05", "message": "Useful messages for missing auth data (bug 946297)\n\nChange-Id: I5afe543ff883358fddfb4c8b546de1d68415e0e3\n", "proba": 2.641671471792506e-06} {"commit": "687c8f0494dde31f86f98dcb48b6f3e1338d4308", "message": "Implement update call when the object is \"up to date\" #871\n\nFixes #871\n", "proba": 0.0004373498377390206} {"commit": "dad14b0cb8dc61537db69de17257775d7830c70e", "message": "Bump up version\n", "proba": 2.2680492861582024e-07} {"commit": "d435e7a6cbbddba5132c24b2d9d0563a43da4c82", "message": "The push line in 'init' needs to be 'git push origin master' otherwise the master branch isn't created in the bare repository.\n\nWithout a master branch, cloning the repo using 'pyjournal.py connect' gives a repo where 'pyjournal.py pull' returns 'Already up-to-date.' but the cloned directory remains empty. 'git pull' in the empty cloned directory returns \"Your configuration specifies to merge with the ref 'master' from the remote, but no such ref was fetched.\"\n\nLooking at stderr from the 'git push' line in 'init', that returns the error:\n//No refs in common and none specified; doing nothing.\n//Perhaps you should specify a branch such as 'master'.\n//fatal: The remote end hung up unexpectedly\n//error: failed to push some refs to '/home/dwillcox/journals/journal-test3.git'\n\nThis is fixed by using 'git push origin master' instead of 'git push' in 'init' because that creates the master branch.\n", "proba": 0.0012562817428261042} {"commit": "73d48b88ba09fae678499607bd1fb203ad3a40e2", "message": "Add way to change number of lines per insert in import_revenu.py script\n", "proba": 3.3044040037566447e-07} {"commit": "95cc1d85c3f8a7626e09c048bbc4958126a8e8d0", "message": "Add MF API calls\n", "proba": 4.838647100768867e-07} {"commit": "facd372ce2b3b1b5767d449352b54bcd677db9c2", "message": "Initiated a new function to gather data about the item that should be edited.\n", "proba": 1.3280460109399428e-07} {"commit": "b1294f81d21f1cc84b15b4c721381e2d1736679f", "message": "filechooser: add filter_dirs property to indicate if filtering should also be done on folders\n", "proba": 3.3428801771151484e-07} {"commit": "aca094a3a20bff2c07c6979f4be221766ebe3900", "message": "Python 3 vs 2 compatibility.\n", "proba": 4.2000183952950465e-07} {"commit": "a94538c4eb6f9d6a3857247bec593bf6495c8be2", "message": "floatlayout: retrigger layout if position changes\n", "proba": 1.2809596228180453e-06} {"commit": "43434567bec6a922548c74c4e02ff571e407231c", "message": "\n\nWhen setting the column justification, we need set up both the\ncell renderer and the treeview column alignment.\n\nr=jdahlin.\n\n\n\n", "proba": 1.4820906812929024e-07} {"commit": "69b5f843e0cfcd9d5d067c49d1e43fab936277b3", "message": "Accidentally removed lines\n", "proba": 1.2106539770684321e-06} {"commit": "6a8a1108f0cbaf7708faefa0fe20557d6b79753f", "message": "almost finished\n", "proba": 4.1380673110325006e-07} {"commit": "82f17ca2646766f20781d92e0b812e98b4468c42", "message": "bug 1412891: Adjust Brotli compression level\n\nThe current settings for Brotli compression level is too high and it's\nincreasing our average page load time as a side effect.\n\nThis patch put the compression level at a more reasonnable level to\nlower the tradeoff.\n", "proba": 1.0420215090789497e-07} {"commit": "d43664fa20b491f9b04f85c62d80892fd7bda285", "message": "add option to skip install virt pkgs\n\nSigned-off-by: Qun Li <1ea81f54854048d0a4d4fd61caceabb2a843281c@zstack.io>\n", "proba": 1.1746361394671112e-07} {"commit": "056646417484aae0f91b22d67ea172c3119d6728", "message": "Fix for unauthenticated users\n\nCode to insert user reference on authenticated enter threw error for\nunauthenticted users.\n", "proba": 1.0584249565681603e-07} {"commit": "69a665ea57c84a32ada26282c0686c8060f8f8b4", "message": "Make setup-type methods internal\n\nAdd leading underscores to methods not intended to be user-facing in\nVoronoi. Rename some of them for LL style and to be more descriptive.\n", "proba": 1.0053933152676109e-07} {"commit": "778564f8cf358a6c0f8cde4a522c1500bca6fcd2", "message": "Convert boundary node array to int, not np.int.\n", "proba": 0.00926777720451355} {"commit": "d2d5c02f7896f7c33ed3a576d3e61e7a75577fd6", "message": "modified: machine.py\nMachine.to_lisp_str(machine) added to have a recursive string\nrepresentation of every machine\n(maybe to_dot is not needed anymore)\n", "proba": 1.546979433442175e-07} {"commit": "26e1125853afd216887d6a41eddb5fd30d5ffd6b", "message": "Simplified some schedule code.", "proba": 5.909055744268699e-06} {"commit": "752d248be92db264c7e55c72b2c1c752101c0b75", "message": "formatting, typos\n", "proba": 8.359937783097848e-05} {"commit": "a2ce14b95306037f22feced3981cf71aec150ecf", "message": "updating to comply with 1-line-between defs in a class, under protest because 2 lines are better demarkation, but standards are standards\n", "proba": 4.476510753192997e-07} {"commit": "6dd3cc2311d0fd8ac91be80ac215bc4e94850911", "message": "Bug fix in /bin/ip\n", "proba": 5.841533265993348e-07} {"commit": "0d0536785bc146787485f48bd3bf3c5c92deabfa", "message": "Add fixture to test point source brightness in Jy/beam\n", "proba": 1.3451956704102486e-07} {"commit": "cbd06cb3b9f6c2234e4bf6a5c19ff39463a77652", "message": "Fix typo.\n", "proba": 0.0016038167523220181} {"commit": "b7e1a0de2b68bec3a4cba4e3dcf254a6ddb6ffe7", "message": "Fix a few bugs in the blaster code\n", "proba": 3.437467239564285e-05} {"commit": "2ca073666b6062ed79244e8fb2c70136ca12bccd", "message": "fix doc\n", "proba": 5.545424528463627e-07} {"commit": "b57dc3fae2547039b4147eec72495b90e2a3ba72", "message": "don't register empty qualifiers\n", "proba": 1.1002977089447086e-06} {"commit": "d901f94d8619e73874156d577f99f809faceb36c", "message": "XIDp_mod tiling fix\n", "proba": 4.1761697389119945e-07} {"commit": "e46d6f33bbfd8ca4c093ec7ba17aa25237b5e073", "message": "Added mqtt_control_auth.py top-level script.\n", "proba": 1.0505527825444005e-07} {"commit": "68dc4c213a74eaefd9df2c85a2a2cf941144d18e", "message": "STYLE: Inconsistent namespace - plotting (#40276)\n\n", "proba": 1.2453894271402532e-07} {"commit": "1fb4d9ef0d6fc98d7860414e57c1008a3d935dbe", "message": "Reversed OPC-N3 operation on\n", "proba": 1.4895996400809963e-06} {"commit": "1afafa33e739ff41fb1779468d40c0ba08e2adab", "message": "BST: add persona note (#2601)\n\n* personas note\r\n\r\n* personas note\r\n\r\n* lint", "proba": 3.39574654617536e-07} {"commit": "e929a69f04e2f91a0fed7da8db8a321edf58f403", "message": "Revert \"hpcc test\"\n\nThis reverts commit e5cb2f969eb7167862f599df6db1aed18ffc91a4.\n", "proba": 1.487012042389324e-07} {"commit": "a1ce95a678912c360aa31e0fe7f97d94c239764b", "message": "Removed outdated module sampling.py.\n\nThe features of ModifiedHamiltonianExchange have been now generalized in ReplicaExchange. The MC rotations/displacements are performed through MCMCMoves.\n", "proba": 1.022570899067432e-07} {"commit": "dd75039805c2002d32920ceac052779741946b82", "message": "hopefully fixes tests\n", "proba": 1.615405125221514e-07} {"commit": "027f04c2c7ac0b494ba1e9a05ac0444993e7c5f6", "message": "This should fix heroku\n", "proba": 0.9999434947967529} {"commit": "424377b506820ed0424453b4cb4d3b0026b7d0bc", "message": "Fixes handling of NOT\n", "proba": 2.1346675111999502e-06} {"commit": "1f1b059c33b77d243b86f6cc91e525adcdd94486", "message": "Fix test\n", "proba": 4.372618604975287e-06} {"commit": "52032dd6012a26391e960da3707751a79526b02c", "message": "updated JSONField to py3.4\n", "proba": 7.959452545946988e-07} {"commit": "7a47f97e74c952472410f794d0ec3f5f5b12b1e4", "message": "code cleanup\n", "proba": 7.806218036421342e-07} {"commit": "29c45768db198d791622bada5c06d4bc567e0e02", "message": "moving to session\n\ngit-svn-id: ddb3474348e310d95e8d791724b6622c5e9c981f@242 6219c1a7-eedc-4b83-93ca-c1744c1638e7\n", "proba": 4.07247540579192e-07} {"commit": "2767041dde70a829af357c41cf0ae0574a906fb8", "message": "enable preview of Filter parameter\n", "proba": 2.1056538912489486e-07} {"commit": "e7808df55694f9c758e78c3b27351b81e67f32d7", "message": "\u66f4\u65b0vn.event\n", "proba": 1.5686741789977532e-06} {"commit": "56a493d909c251af8b39cf98c4be6de2bbed7e4b", "message": "Remove UserInstitution url route\n\n", "proba": 1.0780881893879268e-06} {"commit": "e87d92a80a5cdc052dc8d0a0c39b0fe9f0596eb5", "message": "correction for previous change\n", "proba": 1.945020585480961e-06} {"commit": "97860d93b638be5e71c13d20952febd55ef729c0", "message": "query raw field for elastisearch on gene names\n", "proba": 2.829513903179759e-07} {"commit": "fb40b6986063806b996d4357a70069fb9676b9ed", "message": "asctime() -> time()\n", "proba": 7.173081030487083e-06} {"commit": "e6a9c456b71807b4f320b7c4312e4559201476a3", "message": "Added noshallow as an input. Also fixed lines to be shorter\n", "proba": 1.3238995677511411e-07} {"commit": "fec4c1c3f8e5cef22321898383bb60fb33a9919e", "message": "close browser: make sure all windows are closed\n", "proba": 3.32431204697059e-06} {"commit": "1f5144df05cfd24a7c1be35420ddc0fd5f94c992", "message": "BLD: changed the commented out part from ealier PR\n", "proba": 1.6295398097554425e-07} {"commit": "fcabf099843392ab0f70639dc20554de946c3d5a", "message": "include events in output\n", "proba": 0.9999994039535522} {"commit": "3772d3daf0c0aee7078b3237cdb7812fb89b6e1d", "message": "the pty is the most difficult\n", "proba": 8.953023098001722e-06} {"commit": "74cb0b6b746a67af0a1430c504cec0744d1eef77", "message": "[FIX] \u59d4\u5916\u4f9b\u5e94\u5546 \u5fc5\u8f93\n", "proba": 2.545769746120641e-07} {"commit": "58930daa5fede6773f57a7cced66b04cb113cb5b", "message": "Now logs audiofiles that failed to produced the expected number of notes.\n", "proba": 1.0785719695149965e-07} {"commit": "b9eeeb6332ce1ba3ec4e8932eaa9cca7744bc670", "message": "structures: Add structure for gtShieldBlockRegular.dbc, fix some fields in SoundEntries.dbc\n", "proba": 3.453392025676294e-07} {"commit": "273e8b6abc75c834ddf0668675dbb6bc5937dbfa", "message": "minor fixes to importer", "proba": 1.3264157416870148e-07} {"commit": "7000434b0e92ad297cc50b9f4d836cc05d406006", "message": "Init Verision\n", "proba": 2.4418379780399846e-06} {"commit": "34ae285fad03e943ab14b0eabca4402cb4aa1e28", "message": "Bumped docker image to 0.1.2\n", "proba": 8.993753726826981e-05} {"commit": "a27ae57638178bd8725d1ada494f41b1abf1ecf3", "message": "Add print of ececonf argument.\n", "proba": 3.0487413482660486e-07} {"commit": "b456a8e1ad378be6478b2e24cb54bd8327e67864", "message": "Search API view should only search main ES index\n", "proba": 2.7209586050958023e-07} {"commit": "8cb680c01aed455646759575a72c493eb955cb8e", "message": "Fixed tests depending on old messages\n", "proba": 2.433011161429022e-07} {"commit": "9f9f831730061a9646b36dc313b1e0a4b960ddd8", "message": "Add endpoints for getting the next segmentation and annotation tasks\n", "proba": 1.2858358786616009e-06} {"commit": "37c848cfc7bb90984a7588ca01ed26c4c1131ec0", "message": "geojson_script runs unsimplified\n", "proba": 1.64982247952139e-05} {"commit": "bb5e5a057abf8b63a473f13e30684981541f34fe", "message": "renamed /ban to /banip\n", "proba": 5.114967279951088e-06} {"commit": "993a0ab026b8b3ddbd375d289615239d97dda6cf", "message": "Fixed issue where mysqltuner is not downloading while site creation\n", "proba": 1.3815764532409958e-07} {"commit": "7d44cbe9c57dc7b5aed01345908419a7bae01680", "message": "Fixing recurring issues with GameServerControll and None initialization of game (i.e. defaulting)\n", "proba": 1.0985618104086825e-07} {"commit": "a375a50c55764d0055cfb2d5eae9255686bc3197", "message": "Minor adjustment\n", "proba": 4.103422099888121e-07} {"commit": "2dbbb19ed26504d1253c54a06941c7640de1cd4d", "message": "Generate data for all except topics, posts, and notices\n", "proba": 0.9999994039535522} {"commit": "7ebc26aa537be209f25565b324fa2d328fdbe3d6", "message": "update mail body\n", "proba": 5.079018592368811e-07} {"commit": "f6aa427796021e0e526263af6df13a1fb4c8ebd6", "message": "Make ParseAllTypes() multi-threaded. Fix path bug for chromium", "proba": 7.590655286549008e-07} {"commit": "68e8875d53054f6e9a988e0f744ed3f634a53fb8", "message": "Update client.py\n\nAdding newline to client.py", "proba": 1.2149589565524366e-06} {"commit": "87e3b8e017530e18ef2a47feba2641d035cb1f6c", "message": "Use flash_high as the default profile.\n\nIn a future the profile property should be used instead, but since we\nonly use h264 in flv flows, flash_high is set by default for security.\n", "proba": 1.0365879887785923e-07} {"commit": "62a2e40ecfd3ac3a0e1c8afbff1a7c79545dfb11", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "2bb7ba59268d050d12e4c0d4dbdbde99b116c5d1", "message": "'not supported' error typo\n", "proba": 7.542378443758935e-05} {"commit": "3ca1638a69f9a77b61d149d4bd055210b7a84f71", "message": "Make BuilderStage naming a class function.\n\nBUG=chromium-os:30710\nTEST=Local and remote trybot\n\nChange-Id: I0e603d2a09f8347b7c2ee18d4f69d1c61cd62223\nReviewed-on: https://gerrit.chromium.org/gerrit/22431\nReviewed-by: David James \nTested-by: Ryan Cui <5ce1592d53754a87a44fc2eb7b63d5f77cf50fdb@chromium.org>\nCommit-Ready: Ryan Cui <5ce1592d53754a87a44fc2eb7b63d5f77cf50fdb@chromium.org>\n", "proba": 0.00019218187662772834} {"commit": "c1e587b5cac5a2992fa0578461705bd6978d0601", "message": "pep8 fixes in test_sp_eigs.py\n", "proba": 2.6411220233057975e-07} {"commit": "7d5836881ac4361dfb7eaef5967cab4e42349684", "message": "[FIX]eln_account: Borrar lineas de pago cuando se elimina un apunte contable\n", "proba": 1.5077852140166215e-06} {"commit": "56b625d8e2dca4a28c82ff5f6eaf93f5a8959af8", "message": "courses end time checking fix\n", "proba": 1.481354559018655e-07} {"commit": "f9275ed572d05728a7e04056a1b3813a7dde6b79", "message": "reduce code complexity, improve code coverage\n", "proba": 3.7588056329695974e-06} {"commit": "cc5d729964bdb3902e86dda2562b02b9c9bd024c", "message": "small change\n", "proba": 8.27923486212967e-06} {"commit": "1c81fc10ce7fb6e8d75eac1619b923d4601dd355", "message": "add a try clause in case pandas is not available\n", "proba": 7.189203756752249e-07} {"commit": "70c5ac62503756024ab066227919aff63aa81d6d", "message": "enhance assertion for hashjoin condition\n", "proba": 2.719459075706254e-07} {"commit": "edb4688314682e5396e4544b8e20ced8485776d6", "message": "Added support for Python's insert() on Node.\n", "proba": 1.1233614571892758e-07} {"commit": "5377ff0b3c742ce7a9d485d8ef3f9c5c96f8df2b", "message": "Forgot muh num_goats\n", "proba": 4.932419324177317e-05} {"commit": "8bbfb37928fc30548973b04f739e6701c9789be9", "message": "back out second change\n", "proba": 5.728875862587302e-07} {"commit": "39cc109e8eaa3023174e6e679d0069c24213d430", "message": "improved string santitizing for NCBI organism names\n", "proba": 9.622548532206565e-05} {"commit": "c0e29f55698355ac6561796321c16b8edde7e80a", "message": "Updated actor runner to work with the new gevent based framework\n", "proba": 1.3667234100012138e-07} {"commit": "76854d4d6d20426925dce500c1f6ec00206ed215", "message": "Borrado. Error al subirlo al repositorio err\u00f3neo", "proba": 5.7954493968281895e-05} {"commit": "4db2e7fede696312d1b1f3eee50536c2b1ad6b49", "message": "chore: rename `S3_SUBFOLDER` to `AMAZON_S3_SUBFOLDER` settings.\n", "proba": 1.2679895178280276e-07} {"commit": "94fb6b1c82114e178d5330ccc77bfd82c820a890", "message": "Apparently 'None' is a valid status in places.\n\nSCI-8429, further.\n", "proba": 2.1611579370528489e-07} {"commit": "c23d972123cd1733b0a2c551dac4179bbce559dd", "message": "Added optional basic vertical filtering of output in util.loggin.Logging\n", "proba": 2.508022589609027e-07} {"commit": "2f347423988d0f83a31be4e6a215ce385a3e77ba", "message": "add type field to sources\n", "proba": 4.808351263818622e-07} {"commit": "1b638fb709c374b85738a4b5470df3b302dad80a", "message": "Test TTL, this will be rolledback to 3 hours after QA process\n", "proba": 1.2265235227459925e-07} {"commit": "cd2ab751cab4ce08a2c4215de6cea8947e8e1c9a", "message": "Made log output a tiny bit clearer\n", "proba": 7.870451668168243e-07} {"commit": "4e716809d3e9509f462bdbca9a0f45cbd7f494d0", "message": "Fix DFT test\n", "proba": 1.8495517224437208e-06} {"commit": "96a034a288b67e5e311a044577d4ef7c6f8cad38", "message": "make debug the default\n", "proba": 1.652442369959317e-05} {"commit": "5cf755a27d117e94a72c25153bc7e9a861aaa875", "message": "Fix name typo thanks to Richard Lincoln. Use explicit imports to make the file pyflakesable to avoid such bugs in the future.\n", "proba": 1.0222705526530262e-07} {"commit": "67a75691334139c0b37f41aaf1b53af95bb9b75b", "message": "Refs #349: Test with one message, many connections\n", "proba": 1.1648316444734519e-07} {"commit": "853b4b1976070a5a7254b277b201da2e0aeaecab", "message": "Termination fix\n", "proba": 8.081003670667997e-07} {"commit": "1f37ae31491105855a8ce41634295eb91f3ddc7e", "message": "Fixed NotImplementedError when computing gradients of stateful models\n", "proba": 1.450599569352562e-07} {"commit": "49bb04c8a09fd8d79f2b556d77beb8a1e72046cf", "message": "Added BAM support (samtools call) to errorrates.py\n", "proba": 1.3787833097467228e-07} {"commit": "5f74abe5a9032fbbab72befc68ed082ff1163214", "message": "printing failed stdout and stderr to log\n", "proba": 1.7832078356150305e-06} {"commit": "33e3d6e5f2daa73961d20a9a36cee9010ddfbad9", "message": "Convert metadata in non-sap port into metadata values in Port class\n", "proba": 0.0004651345661841333} {"commit": "4990a597d513ad5397f56b3c4e229f8fa094acc5", "message": "Add a few debug assertions\n\nThe first one is there, because I stumble upon a bug which resulted in\nno buses corresponding to the current cluster bus found in the subnetwork.\nObviously this shouldn't be the case.\nThe other two assertions check that the `storage_extendable` flag\nbehaves the way I'm assuming it should behave. If those assumptions are\nwrong, code needs to be changed.\n", "proba": 3.7040372262708843e-06} {"commit": "d094cb9bd760e87a2c6e4319f74a2ac6b1d31a21", "message": "Remove unnecessary docstrings\n", "proba": 0.0004845536022912711} {"commit": "f0aff3861ea2a9415ff9a0be504104403aaa7150", "message": "Modified Hub to match the actual interface of the ZMQ sockets it uses, and made both in and out sockets ROUTER (DEALER does not report the sender)\n\nWith ZeroMQ 3.x, the need for two sockets will disappear anyway, so the current redundancy will go away at some point.\n", "proba": 1.0872200562062062e-07} {"commit": "51ca3f9b07dcbf86e8145911897d518a1247054b", "message": "Edit user bug fix\n", "proba": 6.019548095537175e-07} {"commit": "81bc3bbc04e31e00c75ac64e8035e6643585ba55", "message": "Fixed Output Test & Changed Epoch\n", "proba": 3.7365251159826585e-07} {"commit": "f85d209ea233054184b06ada288e5e939ba307b6", "message": "PAHMA-931: Added a drop down menu for acceptable alt num types.\n", "proba": 1.0359396895864847e-07} {"commit": "de2fa0c7119cd93204967624c53b6c79a46fa481", "message": "Add 'untracked' policy field\n\niptables driver changes for untracked handling\n\niptables analysis\n\nCode complete\n\nUT fixups\n\nUT fixups\n\nIPv6 raw table was already used for rpfilter - fix up\n\nAdd v4_raw_updater to lists that it should be in\n\nEnsure ACCEPT mark is initially unset\n\nFix mapping from policy ID to untracked\n\nSet missing chain overrides in raw table\n\nWrite failsafe chains in raw table\n\nUse new protobuf index for untracked field\n", "proba": 8.18854823592119e-06} {"commit": "9c9ce0a48718a606408ec66691e6fd3d18fe9780", "message": "Respect port name in incoming messages\n", "proba": 1.4845876421532012e-06} {"commit": "e8e41ab10233d164955c7376c3a65fddda81c3dd", "message": "example delete via admin call required post variable set to yes", "proba": 0.00012179515033494681} {"commit": "73207f81b5c49b2c603981878e810c1eca969082", "message": "added set_burgers functionality\n", "proba": 3.0548005724995164e-07} {"commit": "1aeb2f7171e3391dff444fbe1fb5398dad42a36c", "message": "made nested validate_freq assignments propagate only to children\n", "proba": 1.4276281490310794e-07} {"commit": "abe687b9b5c82c6bc28c9d0bebd95998dcf3fa2d", "message": "This throws a TraitError and not an AttributeError.\n\nCatch that\n", "proba": 1.4465146591646771e-07} {"commit": "dbbdc8459adf3dd0c5e59c9bb1e6b6d1d6b32548", "message": "Fix timeout duration in ZMQ broker check\n", "proba": 4.309561631998804e-07} {"commit": "85b14075cda12aeead75d14a1f50a605939a459e", "message": "address: explicitly resolve hash from int\n", "proba": 3.690384801302571e-06} {"commit": "2f61869adfa1bbaaca8dcf09b7e525a4ea69ba7e", "message": "Be careful when __del__ happens not to throw an exception\n\n\ngit-svn-id: fe2f45b2405132b4a9af5caedfc153c2e6f542f4@561 95a46c32-92d2-0310-94a5-8d71aeb3d4b3\n", "proba": 0.9985371828079224} {"commit": "6689ac8f453a363f0b4c515d764ee3f80adca459", "message": "Spawn rotated towards centre see #3\n", "proba": 1.3221067263202713e-07} {"commit": "b17f2ea63c4dcdb10e5cdde6478b34d60b63773c", "message": "And another correction...\n", "proba": 1.284194581785414e-07} {"commit": "a73a83a2b0ed65135d197a1368ec9c196d8425af", "message": "Make quote style consistent\n", "proba": 7.592402107547969e-05} {"commit": "1fde577f9556ebe489c43122cfff3cd2a26c6f88", "message": "Consolidated validate_name and protect_identifier\n", "proba": 2.056887751678005e-06} {"commit": "09bbeb25fa61c8dbd46b0a6811eaffc591d07f58", "message": "Add template config for Django templates\n", "proba": 3.798843408731045e-07} {"commit": "b251e3407a966fe1f8a81d33ded7b6c9150d32e7", "message": "debug 14\n", "proba": 3.2439942287965096e-07} {"commit": "5adacaa7e4ef0b165de16d8ec8b4c193f74d35cd", "message": "Update Python/Django: Remove pagination middleware from example settings\n\nAccidentally left over from when django-pagination was removed.\n", "proba": 1.0666896343991539e-07} {"commit": "d8af3f2d2179b5b3cb5dc4edd92fdb5aeacbe9d7", "message": "Add whitespace for clarity\n", "proba": 0.998206377029419} {"commit": "ed0e1989f8f9aca3b48e215f3bfee490cd3cf616", "message": "use new style classes\n", "proba": 5.147064712218707e-07} {"commit": "168c545d2d9e2daa6e78c0f19aa081b5ae4c4622", "message": "console email backend added for development purpose\n", "proba": 2.4031962198023393e-07} {"commit": "7a14ed023f12e21f1271dfb96c5bb24b568f32d9", "message": "ST-247\n", "proba": 6.45115619590797e-07} {"commit": "101ed99a0b173fb1eb48bb445419d968d988e834", "message": "hostnames are now checked for correctness. If there is an incorrect hostname an ERROR messege is logged and that interface is skipped.\n", "proba": 1.0562468588659613e-07} {"commit": "ab138a6ed373083f8af59350672ed32ba439043c", "message": "Give the leader time to create the replication slot before starting slave\n", "proba": 2.962210032819712e-07} {"commit": "0a7936097548c6410c1114ee680654c2feb79ed4", "message": "display error message for each methods to change page\n", "proba": 3.3722488979037735e-07} {"commit": "7823fcf83275e65f51bf4310ee1b16a2a226ea0a", "message": "Revert accidental reversion of PullParser -> TolerantPullParser by Zope Corp optimisation patch\n", "proba": 1.21795267205016e-07} {"commit": "3b6c9f09c345ffbc9659f3ee0505e3a46c456215", "message": "Remove a debug printout\n", "proba": 3.121592726529343e-06} {"commit": "f89da379cf1f2b073d42b3245a1d13f46f891f27", "message": "Improve error reporting in grab.cli\n", "proba": 8.599780016993464e-07} {"commit": "9f630cb9395b2c8577b3328cfd2b81117ac3f325", "message": "Checking if removing custom JinJa2 loader fixes things.\n", "proba": 1.0726143528927423e-07} {"commit": "1bfddd3f672ca8756f3a69a8bf5cfbd5a01c5687", "message": "Fix handling of uses_remaining field on discount codes. Closes #133\n", "proba": 1.2253403269824048e-07} {"commit": "f5aea0f7bcfd52cc62ac502f632c81426f37270f", "message": "replaced with tf reszie function\n", "proba": 0.00017755608132574707} {"commit": "a863f0d509bb310b5eeb8b659208da35b71b8690", "message": "Fixed\n", "proba": 1.2058339962095488e-06} {"commit": "a87106adc42a0d56e71cef1eda4aec5752ce7276", "message": "delete config file\n", "proba": 1.425510049557488e-06} {"commit": "79754b3e14aa634950f556a5d4b14272f75a3b6a", "message": "Removed unused import.\n", "proba": 1.2888077094430628e-07} {"commit": "065e95bd6c8f1fcf34384e146004f781399d8e87", "message": "Fixed attachments.\n", "proba": 1.3296656220518344e-07} {"commit": "7187dbb7ca378726e2b58dc052dbc150582f9a24", "message": "Use shell in subprocess.call for Windows.\n", "proba": 1.3270128818021476e-07} {"commit": "8d118174d4ecfe903944acf73dad7e485ffe8846", "message": "Added support for identifying abated/inflated structures to ptypes.pstruct.properties() and fixed up the spacing a bit.\n", "proba": 1.000809177753581e-07} {"commit": "4ce98f3388ce7d25ce4671a436facc6673c439bb", "message": "self.auth\n", "proba": 0.00026952155167236924} {"commit": "627ea5ee11a5714b45943726ba80ea91cf29305a", "message": "fiddle declaration of value. This should really live in ceam_public_health\n", "proba": 2.6076497761096107e-07} {"commit": "b84e365ae17d3748404da3dd1d2e9c8c439b95d1", "message": "Ensure that options are always deepcopied so clients can reuse option objects\n", "proba": 1.7040679267665837e-07} {"commit": "7da08bb7d4a968a14a4beef670fc85fec319ec7c", "message": "Many improvements\n\n* Fully connected replaced by convolution layer with kernel 1\n* Alive mask is applied over sum of original image and diff\n* Clamp is only used at the end of the step, final result\n* Grid only uses the 4 channels (RGBA)\n", "proba": 1.0326491661771797e-07} {"commit": "e83dc5d6b193c29c4c705bee04fdbecdcaa20852", "message": "adds tick options to view_patches\n", "proba": 3.46097522196942e-07} {"commit": "b9b4cddaaea04ba185b21a920bc560d4b1b3dc07", "message": "add day sort", "proba": 0.9997289776802063} {"commit": "3350c69fbce76b38b742d4e8d62d4a8cc6561fda", "message": "use tmpdir in the fixture\n\nSigned-off-by: Alfredo Deza <3f4d00ffa77e6441ab2d23c25a618925d2383b02@redhat.com>\n", "proba": 1.1889675732845717e-07} {"commit": "ef4f4d421dcbd33d73f2037950f8dc22cf9b01f1", "message": "couple of tweaks to the dns entropy stuff\n", "proba": 1.3024909151226893e-07} {"commit": "86e987fcd5d5928ed5650544ad2aad3470864fea", "message": "support 'list' command.\n", "proba": 5.711680728381907e-07} {"commit": "7b98c73f3e5a8eb9c544c4d44f169566ab2195a9", "message": "Fixed bug where invalid vocabulary list names could enter database. Also, now vocab lists can be empty.\n", "proba": 1.1030087421204371e-07} {"commit": "7191e0f1e16948ad5759958fdf514962cf383761", "message": "Updated _data.py fixing validateDataItem()\n\nWas `/ validateDataItem` which is invalid url - this function could never be run successfully; changed to `/validateDataItem`. Works correctly after that.", "proba": 1.3224395445377013e-07} {"commit": "6258605b827c52f501023ceff2abaf8e79abbf02", "message": "Tools: Switch lronacjitreg to DiskCacheView\n\nAlso:\n- Removed some commented code\n- Switched to using DiskCacheView\n- Modifed output file formatting\n", "proba": 3.705874576098722e-07} {"commit": "b5d01cc000d3c65deedf6266da322d8f8962f447", "message": "Handle case when Job is invalidly marked as finished\n", "proba": 5.170901999917987e-07} {"commit": "14f928312ed14fca8ebe5fa90c52c7188c0c031d", "message": "Renamed numobs_linkage to num_obs_linkage. Moved some distance tests from test_hierarchy to test_distance.\n", "proba": 3.8633797316833807e-07} {"commit": "5bba4c8df0d27da7fd3eeb3bc35ac76778434aa3", "message": "Disable flakey tests due to perf\n", "proba": 1.8314435124011652e-07} {"commit": "bfb04909ee98dc864c5f567527c2c445ff876389", "message": "STY: Pass fill_value as keyword argument\n", "proba": 3.631916456470208e-07} {"commit": "6713638347a96c9b4294ba802045a3629b468ead", "message": "Now uses the request URL to set redirect for OAuth\n", "proba": 1.3495490236437035e-07} {"commit": "7659662c6d395ed035dbe3b5673c69441784ac0f", "message": "goal_vis scaling gui, keyboard interface started\n", "proba": 1.7596035206679517e-07} {"commit": "7d451d3ac83037929be39feff52a17ce3a0b8d4b", "message": "version 4.1 for MSH4.1\n", "proba": 2.510961678581225e-07} {"commit": "8197992e01b61b4861122329b6b918672fd1a628", "message": "OpenTimeInline now defaults to 7\n\n- also reorder fields to group open and closing items\n", "proba": 1.233808859524288e-07} {"commit": "f266c6bad3a1e6f1289311516fc16fe6c5d348dd", "message": "Removed the old 3_4 file\n", "proba": 1.6235044313361868e-05} {"commit": "530e7353218a769dfa9a2af13788d8f65501cfff", "message": "fs: reformat for PEP8\n\nSigned-off-by: Steve Dougherty <9ce5770b3bb4b2a1d59be2d97e34379cd192299f@asksteved.com>\nSigned-off-by: Josef 'Jeff' Sipek \n", "proba": 6.874162500025705e-05} {"commit": "ebb228a11be9defb4cd2a2e75ce63c5c09686edd", "message": "vala: Add 'no_warn_args' with '--disable-warnings'\n", "proba": 1.2876795153715648e-05} {"commit": "cb930c9c294c08e299153f2698c9a1a26ff0571c", "message": "traceback added for corrupt project detection; reset all plugins tested and modified\n", "proba": 1.2589501352522348e-07} {"commit": "aa2dd644c2ab69fac5a27ea303cb348a56ea7b11", "message": "Fixed the transform json to json bug\n\nSigned-off-by: Chin Yeung Li <6ccf8ba77c1e60cfc87b1db28da7a91e12151748@nexb.com>", "proba": 1.989659494938678e-07} {"commit": "be6c22ad1e4fd56aa1acdc30ecf92c3babb2a9c4", "message": "Training class can now be set as a string passed to the ChatBot constructor.\n", "proba": 1.0727227817142193e-07} {"commit": "4b123ef5d2a6588cc9e08baed86e4a69f3d40e04", "message": "Add 'schemadir' parameter\n", "proba": 3.073128027608618e-05} {"commit": "f88be5c6c42fb6a768a74e5efd4753cfdb3a1859", "message": "[cscap] attempt to prevent 404 from tripping up email script", "proba": 3.7954720255584107e-07} {"commit": "cd17f46c25ecc6c3c7f45ab16f210f03b47d47da", "message": "make less noisy and don't report folders", "proba": 4.3603947119663644e-07} {"commit": "af5458e5d86ccf4214c83421c17ac600b86b7e04", "message": "add cross-check of iemaccess status\n", "proba": 2.5824539306995575e-07} {"commit": "79408d7a4c8cf3442b51727556e7f46366a126e0", "message": "Don't check for invalid mark lookups.\n\nWith anchors fixed, we shouldn't need this check. Rollback of 55519e636b119dcdd91319364c572d3550050a43.\n", "proba": 1.1721417791932254e-07} {"commit": "6fa4e967d8c1234f10af8329bd5b3bdebf452d2c", "message": "set uniform dist to (0, 1)", "proba": 0.0006821618298999965} {"commit": "bf67c09b7f516fc9e920b4da3a10daed0e29991c", "message": "Check workspace cache in the rest api tests\n", "proba": 2.5051971874745504e-07} {"commit": "6e0c75cff6387899b273244ac736b82a8446c4bc", "message": "more carefully handle RSS content\n", "proba": 1.1355209750263384e-07} {"commit": "9bd694388109870d32071b038829afbf888cb3d1", "message": "rm saveTestWorkflow; set app_path on load\n", "proba": 4.15753703464361e-07} {"commit": "0d987934e0c7915f6431e6cd37e827aadd4985a1", "message": "Improve exception handling\n", "proba": 8.51434379001148e-06} {"commit": "66e0d9a360d96957b0315be521e05dd0015bd125", "message": "Adding batchnorm option to fullyconnected layer\n\nPiperOrigin-RevId: 308245840\n", "proba": 2.3916797431411396e-07} {"commit": "9f66849f3e32e0bf9fca584bf52bf5794818f47c", "message": "fix: usr: Fixed high CPU usage by the logging manager subprocess.\n", "proba": 1.2130713855640352e-07} {"commit": "d00cf5c52f9cad6e837a6664e06461c1fa7abafc", "message": "another profile page speed up\n", "proba": 1.268381453201073e-07} {"commit": "1f19c2df183865f4036269f5c171a7a42d93e36f", "message": "day16 less checks\n", "proba": 2.0817833501496352e-07} {"commit": "013a502931f6b32c1ca14fb9acbb61ff3e433f46", "message": "* deprecate the use of gs.notice in favour of gs.error\n", "proba": 1.1133632142446004e-05} {"commit": "ffb36fc0ff84480e4ac1161fa3c3f5eab5b1d976", "message": "better log message\n", "proba": 1.960107147169765e-05} {"commit": "9a3f6f9abbde30484a7c07ce5b98cb36cb0a87a4", "message": "coding style\n", "proba": 2.835480245266808e-06} {"commit": "f8282a2b8453b9dab18fc2cceca6765a65e96da4", "message": "fix json/dict access\n", "proba": 3.1155525448411936e-06} {"commit": "4c774ebc6691651be7df730ee7a74d3f85ab89b1", "message": "Create log and run dirs during init\n", "proba": 2.861325185676833e-07} {"commit": "6cd4bc52a1bef69bbd281448905320440d2cabd5", "message": "Update genDecimal.py", "proba": 5.553527557822235e-07} {"commit": "3c3ff7fc1d49db18db27ad24ce91f1910f7f6248", "message": "Skip test_sslmode on w32\n", "proba": 3.032051552054327e-07} {"commit": "65ea6b2e540c067e0604ce2d71d37bfd9c460490", "message": "test ln likelihood function\n", "proba": 2.4994938030431513e-06} {"commit": "4e67650704f078661d4877508139da501f7e827b", "message": "Temporary fix for tmp tables.\n", "proba": 1.1674473654466055e-07} {"commit": "f4991e1260908d384c08c472297121afc07b49e5", "message": "Add `run` function\n", "proba": 0.000257290608715266} {"commit": "0c3e350abfd455c6bf2678308cc26bef015b8d48", "message": "Reorganize imports\n", "proba": 1.1359167046975926e-06} {"commit": "171fc767992f55f10186b6ded6ea2875328d0827", "message": "Extract two methods (still interdependent) for fixing requires\n", "proba": 2.7736672564060427e-05} {"commit": "280b41726654b1b7b5a10def2f3d20ddfae49236", "message": "Add gdl cost\n", "proba": 5.075900162410107e-07} {"commit": "23edfd8cf813898205c8bd62e705f9a62b00b71e", "message": "ENH: add custom distribution ex with Pandas inputs\n", "proba": 1.4530697001191584e-07} {"commit": "dbb31cdc33a06638551a23d8a41ebc971704b292", "message": "allow extra arguments to define() in ProblemConf.from_file()\n", "proba": 3.8543009850400267e-07} {"commit": "27b72e7d19fc72d16a97c8fa63462c0f6d4227d5", "message": "Add todo about unequal group sizes\n", "proba": 1.9421238903305493e-05} {"commit": "d5caf5315a7986a6127977c162d78ded3c6526a2", "message": "DOC: Improve equation formatting.\n", "proba": 2.963826375435019e-07} {"commit": "3b5e34ca891e113d2d41039301306ac08b0394f3", "message": "Another small fix.\n", "proba": 1.4791227442856325e-07} {"commit": "3a06cd48bbfd8ac2e2ff38cbc094e6da85816897", "message": "Add tests for failing start-commit and pre-commit hooks.\n\nPatch by: mf\n\n* subversion/tests/cmdline/commit_tests.py\n (start_commit_hook_test, pre_commit_hook_test): New tests.\n (test_list): Run the new tests.\n", "proba": 1.442952992647406e-07} {"commit": "1c8e3cf6ca98b9c61ca35e19f0dae5b679bddbd1", "message": "* subversion/tests/cmdline/revert_tests.py\n (status_of_missing_dir_after_revert):\n Following up on r981171, fix indentation to fix test.\n", "proba": 1.1105407793365885e-07} {"commit": "3f7e4d6065498d8adaba133ebfcd236f2b633e31", "message": "Following up on Bert's r1102143, tweak a revert test. \n\nsubversion/tests/cmdline/revert_tests.py\n (revert_tree_conflicts_with_replacements): Update no longer skips\n tree conflict victims, so remove the second update command. Expect\n \"replaced\" status for the victims. Remove @XFail.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1103461 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 1.067175981006585e-05} {"commit": "0d29c8e0e891f6d1346ec539721ed5c08c2a7d6a", "message": "Add a test for relocating a working copy with switched subtrees.\n\n* subversion/tests/cmdline/switch_tests.py\n (relocate_with_switched_children): New test.\n (test_list): Run the new test.\n", "proba": 2.2154002010665863e-07} {"commit": "2699a0ffa24b5c8cba706705cb2f0809d4f53cc0", "message": "update activemq_xml check to include topics/subscribers\nalso have it uses requests library rather than urllib2\n", "proba": 1.4655084612513747e-07} {"commit": "4e0935ac46df4f37eba9a66d8785d3c452c84a06", "message": "Make line tracking work for empty lines\n", "proba": 1.0462717000336852e-05} {"commit": "7dac91a26155bcfc1165c81a33aa03a06cce5982", "message": "refactor meshex_export.py example\n", "proba": 8.260173672169913e-06} {"commit": "eca2d14116a64c0cae9ee7cee8e3740cbc54c129", "message": "Add link to python regex\n", "proba": 3.725907049556554e-07} {"commit": "7daa16a0b52e9c86625698d53a4c7068b8803b74", "message": "don't update ftp package when targeting a single layer\n", "proba": 3.0766170766582945e-07} {"commit": "ad863e586b791c402845a0f2b0c80fa318a58611", "message": "simplify cart item image_scale customization\n", "proba": 4.052208169014193e-06} {"commit": "80f4fd2fed6225fcb3b7a5564d2f54d782001146", "message": "Added missing layer to upconvnet architecture.\n", "proba": 1.091454464585695e-07} {"commit": "b17889b47b971060ef4cf6a2b74c648da9f929bf", "message": "Fix a typo in a test description, in case anyone is grepping for \"obstruction\".\n\n* subversion/tests/cmdline/switch_tests.py\n (forced_switch_failures): \"types of obstuctions\" -> \"types of obstruction\".\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@871586 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.9999994039535522} {"commit": "e1799755e27362eeac8d2c75522cee7ac12f4af7", "message": "\ud83c\udfa8Use named str.format placeholders @ `test_ssl`\n", "proba": 1.423047280013634e-07} {"commit": "dbe926f3ede8a97e67999f6e3b32d1942508057c", "message": "Use those md5 digests to decide whether rendering is needed", "proba": 4.859224986830668e-07} {"commit": "79e24189ed8581bb1978a31f74d76fb9c6177bfa", "message": "Bugfix in mac example copy.\n", "proba": 1.097420465612231e-07} {"commit": "ace926ef964e2dbff980ef649125f87640bb5e22", "message": "Admin site\n", "proba": 1.4338858136397903e-06} {"commit": "205d8fa40e8b6901cd2d717ba29beca03eaa7eaa", "message": "Adding some splitting info\n", "proba": 2.3489975831125776e-07} {"commit": "f74218b9e2a51edce9ffa5a4271f27150510879b", "message": "Make cmdline test update_tests.py 50 pass.\n\ntree_conflicts_on_update_2_3 expected to get a \"Skipped\" message when\ntrying to update from *within* a directory deleted on the repository\n(that also happens to be a tree-conflict victim). The tree-conflict-ness\ndoes not change anything about a path missing in the repos, and\nwithout stepping out to the parent dir, no tree-conflicts can be known\non the directory. See also this message:\nDate: Wed, 26 Nov 2008 06:32:57 +0100\nFrom: Neels J Hofmeyr \nSubject: update_tests.py 50 XFails.\n\n* subversion/tests/cmdline/update_tests.py\n (tree_conflicts_on_update_2_3): \n Don't expect to \"Skip\" when updating *within* a \"deleted\" dir, twice.\n Comment on that. Remove an obsolete warning comment.\n (test_list): Don't XFail tree_conflicts_on_update_2_3, it passes now.\n", "proba": 1.4719447563038557e-06} {"commit": "8136012e8f70044e9453a8d70e378535f428cec8", "message": "Eliminate unnecessary dependencies on OpenGL.framework.\n\nI'm only making this change for the Mac because I can't test it for other\nplatforms right now, but as a general rule, libraries belong inside\nlink_settings sections, not all_dependent_settings (or both).\n\nall_dependent_settings says that anyone that depends on a given target,\neven transitively through a long chain, inherits the enclsoed settings. In\nthis case, chrome_exe and helper_app would inappropriately be linked against\nOpenGL.framework, even though they did not need to be. It is enough for\nchrome_dll to link against OpenGL.framework.\n\nFor that matter, the non-library uses of all_dependent_settings in this file\nare probably wrong, too. Generally, they should be replaced with\ndirect_dependent_settings. Inappropriate use of all_dependent_settings\nresults in -Defines and -Includes leaking, and can cause problems for remote\ndownstream targets.\n\nBUG=none\nTEST=otool -L GC.app/Contents/MacOS/GC should not show OpenGL.framework\nReview URL: http://codereview.chromium.org/1604009\n\ngit-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@43533 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 0.01622784323990345} {"commit": "79f01de485d902a5c46c8b8a71cb180f3e0526fd", "message": "\ud83c\udfa8 Unify TLS adapter creation in tests\n", "proba": 4.516003536991775e-05} {"commit": "f153c1b8bec2cac4dd76e4e3ae210bb633d44882", "message": "Add dummy moving points to gui/view.py\n", "proba": 5.487748921950697e-07} {"commit": "e5f1c96506025730829537e8b62a944039550289", "message": "BUG: changed crop call (object mode)\n\nFormer-commit-id: b24cc9eacd24b977dcca96deb1e110dce6a73bb5\nFormer-commit-id: bf9b223153c89e2edf037b3f52dd909b9390b1df", "proba": 5.86363648835686e-06} {"commit": "babdbe22f25d79db09c33347daf27ae479c6cf42", "message": "* subversion/tests/cmdline/update_tests.py\n (test_list): Remove XFail from update_wc_on_windows_drive test.\n", "proba": 1.0507772429946272e-07} {"commit": "49bce4c8eccaa9227ab2c0fd99ffbe90bbf50dd9", "message": "Sanitize filenames\n", "proba": 0.2239101678133011} {"commit": "000efbd1dc8581c12c847c0ade8ed77348164afc", "message": "Changed the behavior introduced by ticket #87. It broke some code that relied on getting the unmangled filename on default(). Now it just searches for the objects with the mangled name, but doesnt keep the URL mangled.\n", "proba": 1.0198030508945521e-07} {"commit": "d65703009c10ce5c4c6a64f94a3b63c3958f0cb3", "message": "gui cocoa: some optimization. late building of list item objects\n", "proba": 7.69796486110863e-07} {"commit": "172975719ab1125176e8fb031d7f4b5230f5fead", "message": "BUG: fixed input parameters\n\nFormer-commit-id: 6e50ab77ab47d703637164f57ece60185f180894 [formerly e3129ada4a3c5cdb56c25a18c057f5f3796a88ce]\nFormer-commit-id: 56fb6d80fb7f2d9181f640e0ebfcc1cfaad28311\nFormer-commit-id: 0c2ab6306930d053888891c3645539bb163ab830", "proba": 2.5230710889445618e-05} {"commit": "7be727ec27d4cde1190670e806dfb5f5e887f754", "message": "Add `make_dict`-parameter.\n\nThis also gets rid of `make_columnized_mapping()`.\n", "proba": 1.2978226493487455e-07} {"commit": "797db7b46cb86bbc7dded1357ca45818c2f0e22f", "message": "made file format parsing more robust\n", "proba": 4.950161951455812e-07} {"commit": "4e494e7a67e3dbde77eda2a5a70b41e5ad2d0972", "message": "REF: added possibility to crop or not around landmarks during straightening\n\nFormer-commit-id: cd86db6af10f88eb59fac60c1dd21293d6919d23\nFormer-commit-id: d16b0d2b33806bd0e90f0c5311c2df3000a3125d", "proba": 4.4577535618373076e-07} {"commit": "eeefd28c867455753ac545c9d933f9a6273cb1e1", "message": "commit for debugging\n", "proba": 2.2899486395999702e-07} {"commit": "9523007b83c6be453e184723cf5303a3699e5f03", "message": "src/bin/toolchain/synthesis.py: generate error message if generatebitstream function not implemented for this toolchain\n", "proba": 5.318611783877714e-06} {"commit": "3a22521c3480e0884396b2781d984270637de194", "message": "stops to use collections.namedtuple\n", "proba": 4.425472184266255e-07} {"commit": "c5eb7e7be504d878c65fabceb1e8f9ef34e0302e", "message": "PYTHON 3 compatibility update + setting `nan_policy` for `lmfit`.\n", "proba": 1.0257764415655402e-07} {"commit": "35238faf7e4847577d1dfdc43861c211820a9ca9", "message": "Delete simple-pendulum.py", "proba": 1.1818566235888284e-05} {"commit": "102f9b05e17366e7fa474fb9faed6371c09ac644", "message": "Support new symbolic function api from PyTorch with PythonOp (#9880)\n\n* Support new symbolic function api from PyTorch with PythonOp\r\n\r\n* Specify exact exception\r\n\r\n* add comments\r\n\r\n* move comments and arg", "proba": 1.26707575986984e-07} {"commit": "bc11faba68e42d99bd3c14204e353978788d20a7", "message": "Remove tests for code that has been removed.\n", "proba": 1.4582616358893574e-07} {"commit": "fded0e86ca19f7f30fcf6333b85200dfe91d52de", "message": "Bug in file upload resolved\n", "proba": 2.91274972141764e-07} {"commit": "fe2241c119c0b345981bfffb5f024a9297c82084", "message": "Put VXPOLLS_REDIS_CONFIG patching back in multi_surveys tests.\n", "proba": 1.0058383281830174e-07} {"commit": "5445c56ab5af6e260c536fa80a2af82daf0a0ee3", "message": " * Fix failure with edge.color = 'none'\n", "proba": 7.05145503161475e-05} {"commit": "bd37798f19e250db92f7ef75316071894f7f6807", "message": "Add ChildWorkflowTask class\n\nSigned-off-by: Yves Bastide <3b1fe340dba76bf37270abad774f327f50b5e1d8@botify.com>\n", "proba": 1.5646207884856267e-07} {"commit": "dba9481ace3fda101ce71fde28909b29db86edfc", "message": "Updated visualization stuff.\n", "proba": 1.2158950823959458e-07} {"commit": "7afdb2dc7abd05d08026c992bb52a93abf7954cc", "message": "Notes on statistical analysis.\n", "proba": 1.3871014914457191e-07} {"commit": "43f72413cdff201273133e833323f9b023118634", "message": "remove unused model import\n", "proba": 2.9994689043633116e-07} {"commit": "97ee49fcb1fc6ac6c898f74f898693c61bebb0db", "message": "Fix dtype on constant_mul_lazy_tensor\n", "proba": 0.0003109838580712676} {"commit": "6ea2a1492b4b9a780bbf00b439e6d417bf51559b", "message": "Adding disabled test from the SAFFRON paper\n", "proba": 1.3929302156157064e-07} {"commit": "aa24b05d75850a04f82da703c1e23bcf48764914", "message": "Fix Etymology call pattern", "proba": 1.5972193068591878e-05} {"commit": "204155d58be884893c06e13210f3bdcff854b93c", "message": "Fixing recurring issues with GameServerControll and None initialization of game (i.e. defaulting)\n", "proba": 1.0985618104086825e-07} {"commit": "27e945477514adc055918afd21bedb7e9e6322d5", "message": "-> Re-adding forced SSL\n", "proba": 1.4389418367954931e-07} {"commit": "c81c633a9fefa304b9909ac0ff54c4f261f7281a", "message": "Use logical DPI rather than physical DPI for calculating font sizes for waterfall dialog.\n", "proba": 1.0695296026597134e-07} {"commit": "2a17c9e3ef45e28493e72f7962e0d32020d027d4", "message": "docstrings again\n", "proba": 2.752895795765653e-07} {"commit": "95f3be266e333bdc3c152938c125edb0c59f4082", "message": "fill s3 url\n", "proba": 1.6754127500462346e-05} {"commit": "9f48598c74069294371057b1194dee68802d36ba", "message": "ENH: adds multiprocessing\n", "proba": 1.016072928905487e-06} {"commit": "d5fff2f94aab6aacec6b2ad0c5d5a8c3cf06f8ab", "message": "Fix validation and use consts (mqtt)\n", "proba": 1.9171100973380817e-07} {"commit": "6e4a0b9fdceba5ec4dc0b701e1fc564f4a482e21", "message": "Switch recorder to use async_timeout instead of asyncio.wait_for (#78607)\n\n", "proba": 1.209977114058347e-07} {"commit": "108e2ec1ba54e8ffb311d96c41aba28c39b397c5", "message": "Update roku to use CoordinatorEntity (#39405)\n\n", "proba": 1.0856700072281456e-07} {"commit": "b9a666d1047ae36574588ec437d08de85523120e", "message": "tests: remove undesired behaviour expectations\n", "proba": 0.003676135092973709} {"commit": "f01a0e29b066d4c81a2a0c96d3e6c7901899ca2b", "message": "tidyup of controldemo\n", "proba": 3.366735086274275e-07} {"commit": "2d67e6d7f4fa95d5e7ba7e52e9bc6f760bfad5cc", "message": "Refined phone regex\n", "proba": 2.875310656236252e-06} {"commit": "bacb40d4d0697984481485baba42a3a11a3b05df", "message": "Update Serial_irrigatorsModel.py", "proba": 3.1967510949471034e-07} {"commit": "32bcb18ece37d189414c5773d65fe1fc7976e10b", "message": "Added a HTML label wrapper. HTML label does not work as advertised in the\nPyglet documentation - with Python332 on my thinkpad.\n", "proba": 9.968255909598156e-08} {"commit": "db70bcb0757125948bfb8b2acbd865a23dc5c8e8", "message": "fix check for dask\n", "proba": 2.2297923862879543e-07} {"commit": "a48c083e939fade721cee45a77c0e3e6de406466", "message": "rm worker.py\n", "proba": 2.664523663042928e-06} {"commit": "6491a457a32ca6df8c0efc5ea631bc7133eebd18", "message": "Update backend/uclapi/timetable/utils.py\n\nCo-Authored-By: Feverfew ", "proba": 1.2362492896045296e-07} {"commit": "cfb849d4a9edc08395de4bb224aae1115eaa9a55", "message": "Handle errors raised by extend_volume\n\nErrors raised by extend_volume aren't handled by the manager.\nThis means the volume status will not be updated to 'error_extending'\nwhen an error is raised during the process.\n\n* Handle such errors and update volume status accordingly\n* Add logging for the extend volume process\n\nFixes: bug #1199471\nChange-Id: I06a037af0344d1eaf4115f0af5a85ceeab1ffd37\n", "proba": 9.680838957137894e-07} {"commit": "8d33564bdb9ac54193c63622572ee86e463610f4", "message": "Update settings.py", "proba": 7.488397386623546e-07} {"commit": "6a0b41a8ffa3b82e4aa646f3d1eaa23b80e57db8", "message": "Log connection info returned from driver\n\nCurrently there is no way to verify the connection info returned\nfrom the driver to cinder is the same as what cinder sends to nova\n(or other consumers) to connect to the volume.\nThis log will help narrow down issues during attachments since there\nare many components involved (nova, cinder, os-brick).\n\nChange-Id: I8ed3567f8ae6c6384244cc1d07f1eaafbd7bf58e\n", "proba": 1.2379522331684711e-06} {"commit": "4b2dc6d1c6aaaaf97cc0d3f68706280707d6033d", "message": "Removed some unused settings\n", "proba": 4.864724587605451e-07} {"commit": "050890a4d6c380f85fb94fa6d5f01a4bb669c8d8", "message": "compatible to multi-thread mode\n", "proba": 3.4134222914872225e-07} {"commit": "d80ff89e29578da3d876a914286d92c9961a95d3", "message": "Fixed a bug in cli when command line argument not specified\n", "proba": 4.7466070896007295e-07} {"commit": "f1fc8b03af8a4c9d7caf0d3f5c60472a4bf07586", "message": "fixes Circuit.reachable_frontier_from.__doc__ (#1915)\n\nPrevious definition didn't match the implementation on some edge cases:\r\n* blocking operation at start_frontier\r\n* negative values in start_frontier", "proba": 3.331778941628727e-07} {"commit": "d25de1d236a46808b9b5ff473f6bc8e95db85500", "message": "Update resource_ticket_rest_api.py", "proba": 3.2330965495930286e-06} {"commit": "b5ecd888f3906a1c9e17a9d80d09a61b76e33128", "message": "minro\n", "proba": 2.316891823284095e-06} {"commit": "ed4ad26daa56ced7854e38687d0badf24d1517bf", "message": "chore: remove \"trim\" optoin\n", "proba": 0.012446272186934948} {"commit": "b59a6ce02caa1d7fa3c9110e7cbc820b8b14f558", "message": "ENCRYPTION AND DECRYPTION WORKING!!\n", "proba": 1.7926457474004565e-07} {"commit": "e65ce73ee3f5d95d51b9228bb2a31912c985ebec", "message": "Change to single-quoted strings\n", "proba": 0.9999840259552002} {"commit": "9c53bb6b582487c2daa48bb52e8637cc4d1d03f6", "message": "Collection dataset => dwc\n", "proba": 5.030215561419027e-06} {"commit": "255d6cc2b43613882305d6a63422cb3e6f9c4654", "message": "[Discord] Improve duckduckgo command formatting\n", "proba": 9.281061466026586e-06} {"commit": "805cfc776516ca9f5af78c407ed7e660e6606708", "message": "feat: add \"max_distance\" property\n", "proba": 1.5570274626952596e-05} {"commit": "a9d00490528e63deeb8692358c49313d4a3d24b4", "message": "Add docstring as \"Details\" field in Backslash test metadata\n\n1. Add report_test_docstrings configuration to the default config (off by default)\n2. Add a check in test_start: In case test_details is enabled and the test function contains dosctring, the description will be added as \"docstring\" in the test metadata\n", "proba": 4.158741649007425e-05} {"commit": "8f9692c78ba90bcbbf39b859bc9c44cc1c7da070", "message": "Fixes #103: add PropagateAtLaunch tag to ELBs\n", "proba": 1.257062933746056e-07} {"commit": "3e2a3ed3c24d6038eb62f16d397064688fc498ff", "message": "Expansions for harmonic numbers at general rational arguments n + p/q\n\nIn [2]: harmonic(2/S(3))\nOut[2]: harmonic(2/3)\n\nIn [3]: expand_func(_)\n(0, 2, 3)\nOut[3]: -log(6) + 2*Sum(log(sin(_k*pi/3))*cos(4*_k*pi/3), (_k, 1, 1)) + sqrt(3)*pi/6 + 3*Sum(1/(3*_k + 2), (_k, 0, 0))\n\nIn [4]: pprint(_)\n 1 0\n ____ ____\n \u2572 \u2572\n \u2572 \u239b \u239bk\u22c5\u03c0\u239e\u239e \u239b4\u22c5k\u22c5\u03c0\u239e ___ \u2572 1\n \u2572 log\u239csin\u239c\u2500\u2500\u2500\u239f\u239f\u22c5cos\u239c\u2500\u2500\u2500\u2500\u2500\u239f \u2572\u2571 3 \u22c5\u03c0 \u2572 \u2500\u2500\u2500\u2500\u2500\u2500\u2500\n-log(6) + 2\u22c5 \u2571 \u239d \u239d 3 \u23a0\u23a0 \u239d 3 \u23a0 + \u2500\u2500\u2500\u2500\u2500\u2500\u2500 + 3\u22c5 \u2571 3\u22c5k + 2\n \u2571 6 \u2571\n \u2571 \u2571\n \u203e\u203e\u203e\u203e \u203e\u203e\u203e\u203e\n k = 1 k = 0\n\nIn [5]: _.doit()\nOut[5]: -log(6) - log(sqrt(3)/2) + sqrt(3)*pi/6 + 3/2\n\nIn [6]: simplify(_)\nOut[6]: log(sqrt(3)/9) + sqrt(3)*pi/6 + 3/2\n\nIn [7]: _.n()\nOut[7]: 0.758981249114944\n\nIn [8]: harmonic(2/S(3))\nOut[8]: harmonic(2/3)\n\nIn [9]: _.rewrite(polygamma)\nOut[9]: -3*log(3)/2 + sqrt(3)*pi/6 + 3/2\n\nIn [10]: _.n()\nOut[10]: 0.758981249114944\n", "proba": 0.003130703466013074} {"commit": "67c24590617962526d6fdae0647194de1fcc7b71", "message": "removed debug statements\n", "proba": 1.7930200328919454e-06} {"commit": "702f47680cc11e6dabb30c332e9e0b3cd5a5ba34", "message": "[Discord] Fix reference to Timeout Error in Twitch task\n\n", "proba": 1.632541852814029e-07} {"commit": "a5f72810da457023da4a8d36a472007b4d90a622", "message": "Add project_list argument to write_miqa_import_file\n", "proba": 1.244244231202174e-06} {"commit": "33accf401b7422357c2212d8680acd575adb64d3", "message": "fix: fix typo (instantiate should be initialize)\n", "proba": 2.2270380213740282e-05} {"commit": "a671d25c224a84dfc588bd8b143b54dc4dd6202c", "message": "Memorize current working directory to avoid calling cwd() unnecessarily\n", "proba": 3.73955884924726e-07} {"commit": "3e6e2aad9af2339e7590860d8ea025d0c273d88c", "message": "Backing up TODOs", "proba": 3.3046657677004987e-07} {"commit": "8005d658bc847df7cdd7392858989a2946b12196", "message": "Changed so it doesn't import qtprogress if Qt is not installed.\n\ngit-svn-id: d468cea6ffe92bc1eb1f3bde47ad7e70b065426a@116 5acbf244-8a03-4a8b-a19b-0d601add4d27\n", "proba": 5.78788285565679e-06} {"commit": "8f90c85ec7c6ee06382533da7b3ef1087a3d1578", "message": "Fixes to scorched libs.\n", "proba": 1.1068570415773138e-07} {"commit": "c014f49b1c8b87553f8e7ad80e31bd68502264f4", "message": "recipes: update signal_generator.py to use pysndfile\n", "proba": 2.949159352283459e-07} {"commit": "b156a68240aea5d8cca0fe9f153730ef8970f21c", "message": "add suddenly missing test coverage\n", "proba": 2.2965576818023692e-07} {"commit": "9725ea94c0ea3475cc2b48e8ea00692d8ecf31ee", "message": "PEP8 correction\n", "proba": 1.9975115606030158e-07} {"commit": "fea936c1928ea0d9ad44243ec45180427482819e", "message": "Update clashcallerbot_search.py\nadded outline\n", "proba": 2.223820700919532e-07} {"commit": "6e4c0a98df203a15e642f068c1ac930936fb3f84", "message": "vars --> varnames\n", "proba": 8.087124570010928e-07} {"commit": "d13c77e3691795824dd342bb2906c2df56eeb26b", "message": "Changed methods\n", "proba": 5.182751010579523e-07} {"commit": "3772902178da3a1178ce53af68594b6e622f1af3", "message": "Fix RestrictionTracker docstring\n", "proba": 5.437943286779046e-07} {"commit": "2fb14c3f67f13f14646c0a9ceb19f09ece8114fd", "message": "rec wavget in-memory and internal wav builder\n\nsnowboy recorder with in-memory raw data stack and internal wav generator.", "proba": 1.0108387726859291e-07} {"commit": "49193ae10237d467e6e7cf0d511f1be6224e5247", "message": "separate search alg and schedulers from recipe (#3041)\n\n* seperate search alg and schedulers from fixed recipe\r\n\r\n* add corresponding docs and expose to zouwu AutoTrainer", "proba": 1.1047225711990905e-07} {"commit": "c9e213757f3d0a006cfe9827dd0c3ccb1f05e09f", "message": "Return result option now available for most of the classifiers\n", "proba": 2.21397243649335e-07} {"commit": "6ef4f1f8c07df697d698dd049a7373aa25552ddf", "message": "small fix\n", "proba": 5.359547685657162e-07} {"commit": "9b456165f28e96d9b51a277a9efc55a1982d3331", "message": "Pass the ut and sleep for 1minute.\n", "proba": 1.3148138577889767e-07} {"commit": "02ca3c34d2b50101faecf90d264c7341160a0de1", "message": "[Datasets] Fix #24296 by limiting parallelism in FileBasedDatasource (#24298)\n\nThis prevents a MemoryError when a high value is provided to parallelism to ensure exactly one ReadTask is created per file.", "proba": 1.0468084354897655e-07} {"commit": "e7d841a4df1ad289a7dd30afdedc896aaefc279f", "message": "CPPCheckBear: Add CAN_DETECT info\n", "proba": 1.7416560638139345e-07} {"commit": "0b22e47a4016635a750c0eb4bbc41bdfd93e14d7", "message": "skipping pretrained TF model tests for now\n", "proba": 1.1823133405641784e-07} {"commit": "c0569da3ce7001cd6cdf64ab61e5a5b8d0f017ea", "message": "Improved handling of HTML/XHTML sanitisation.\n", "proba": 1.3030451384565822e-07} {"commit": "5cbfc95dae31c64e23640642b17a9c9739d2864d", "message": "Fix deleting attendees causing an update to the to-be-deleted attendee price\n\nFixes #10\n", "proba": 2.100729687981584e-07} {"commit": "2c71be84d716e06f50f38bbade2f0dd99dc2325c", "message": "Implement alpha-beta filter\n", "proba": 0.00042703523649834096} {"commit": "2f4a0708dc734d14673dce0acaffeb2f621ae1e4", "message": "add stack\n", "proba": 3.2210448352998355e-06} {"commit": "032aefc5c32c2ad7f1cb2a4247083818c63d8beb", "message": "Fixing a bug where a phone number in voicemails wouldn't appear\n\ngit-svn-id: 5802d59caebd368f829ba2d9c83e7b11e4e43f37@438 c39d3808-3fe2-4d86-a59f-b7f623ee9f21\n", "proba": 0.0022584134712815285} {"commit": "f386ec0932aade690049bc3cbd65f12fce0637a9", "message": "[FIX] SQLI", "proba": 3.000026254085242e-06} {"commit": "cd63ec55c8604c8c16356352f7581c8a9d712efb", "message": "[imp] res.config.installer: preselect installable modules which are, in fact, already installed", "proba": 1.777322040652507e-07} {"commit": "6e573f4381ef6898a656afbe51c2c0d4e44fcf97", "message": "[Clock]Change 'oops' to something... useful-ish.\n", "proba": 1.1726516646604068e-07} {"commit": "daf0dbf404b7e263998a4b1233a88667601e9664", "message": "Fix opponent_count to stop over-counting group fights.\n\nUse bare_name in more places.\n", "proba": 1.0813631234896093e-07} {"commit": "b576343759644024c0baaea662567f6ebc974cf7", "message": "Update cybergis-script-burn-alpha.py", "proba": 2.482335332842922e-07} {"commit": "7890f1a7af60ce782604ae36a86ed0e534b3acaa", "message": "FEM: solver elmer unit tests, add generic input file test method and make use of it\n", "proba": 1.2448811048670905e-07} {"commit": "103c051253b8694eff8d7302751ca1b25a646f37", "message": "restricted to 2.1+ due to bug in 2.0\n", "proba": 4.0196130157710286e-07} {"commit": "413419c8586d2452bb2795bf7a11c27174e9398d", "message": "Timeout handling and ping\n\n- timeouts after the connection is established will trigger a ping\n- previously they were handled as unrecoverable errors\n", "proba": 6.442358539970883e-07} {"commit": "ecae14324d06926831d976f8f615e05e50250e1f", "message": "Removing cherrypy request debugging code.\n\n-Mikeal\n\n\n\ngit-svn-id: 87d19257dd11500985d055ec4730e446075a5f07@708 78c7df6f-8922-0410-bcd3-9426b1ad491b\n", "proba": 5.5016112128214445e-06} {"commit": "879ebfb44e14a17c51484ba63bd157c12e5ab8f2", "message": "whoops broke it\n", "proba": 3.090526661253534e-07} {"commit": "436b2ece3cf46b270b1dc177c1e284cdc1734151", "message": "Extract _reset_newline_status()\n", "proba": 1.2233941561134998e-05} {"commit": "e2199aa4f8aa2d678dca86a405dc791d9f61dbce", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "e4ef367a2654e66faa078b90bf1d6287e7b7099d", "message": "Change authentication method for notification cache\n", "proba": 3.3725899584169383e-07} {"commit": "0c47524d61bd99e5b3f0612cf56960cb198d842d", "message": "update logic to test if `ssl.create_default_context` is available\n\nThis is now done based on python version\n", "proba": 2.5121877911260526e-07} {"commit": "21bdb77a683b43b69a3e0c387f984bd14b125729", "message": "Forgot to add the AUREA/__init__.py ver number\n", "proba": 4.1673817463561136e-07} {"commit": "d46ffc8c17e8d0f03806260bdea78a409fdc7aa5", "message": "removing redundant import and flake changes\n", "proba": 2.1875486311273562e-07} {"commit": "4d2fb2e70cb40ddffca4b35d86062dc655d90c02", "message": "ctypes.c_ssize_t was added in python 2.7\n", "proba": 2.5243355139537016e-06} {"commit": "11070cbff9eaa66014e08c2e4b0a3f44d5854d52", "message": "enabel seresnext reduce test (#19341)\n\ntest=develop", "proba": 1.697285227919565e-07} {"commit": "6ca5f83780fd9c8d35257e60c24a91d7b0e1ccc2", "message": "added function get_detailed_zone_summary(); cleaned up print_line()\n", "proba": 2.3971745122253196e-06} {"commit": "315306802d7c7d9c3bf762d1b1718e7a0d170795", "message": "storage.py - adjust insert to insert_many and catch bulk write error for duplicate keys\n", "proba": 1.3030488332788082e-07} {"commit": "4bf2689b768dbd07119ab2a826b53ab7900a3d84", "message": "decode username when inserting in why", "proba": 0.00024962538736872375} {"commit": "22877cf853fbeaeb437d71d64187926ae7af93ad", "message": "Eliminado init de EpsonDriver (ya hereda de la clase madre el init) for issue #18\n", "proba": 1.1094567753389128e-07} {"commit": "070f87714ef4b4e9a0ddefadf0175534acd300e9", "message": "get ssl steps\n", "proba": 3.76149898784206e-07} {"commit": "c386a7e6a79c74308eb97d1cf3ac23b6c0b085d8", "message": "Make write_stub() a function, so easy_install can use it too.\n\n--HG--\nbranch : setuptools\nextra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041067\n", "proba": 0.0009421593858860433} {"commit": "e0b398f5c21bf90303894b129e6313377cbac7b5", "message": "refactor(rez-pip): revert the name creation method for rez compatibility\n", "proba": 5.566656682276516e-07} {"commit": "81e0cf0aeb828f02473302e485bd8f78d3e332d6", "message": "ferraith#8: Refactored handling vor boolean user options\n", "proba": 2.5687748461677984e-07} {"commit": "d2aea3b02d2b0f3a697725dfad72dc15f21e79b6", "message": "Added support for currency field parsing\n\nInitial use of library threw error when encountering a currency field. Documentation suggested adding custom field types by subclassing FieldParser. However currency isn't really a custom field, it's been a supported field for a while (http://msdn.microsoft.com/en-us/library/aa975386(v=vs.71).aspx) Therefore it would probably be a better solution to modify core FieldParser class.", "proba": 2.1818794948558207e-07} {"commit": "d52cde9b8152b6bcccce26cc7c7322d3c0b5e844", "message": "FEM: mesh tools, better type checking\n", "proba": 2.50753942054871e-07} {"commit": "7773bff65016479b8eae468e07560e5a7862ad4e", "message": "MNT: Update CartoPy warning to include USSTATES\n", "proba": 1.236661972825459e-07} {"commit": "a33a19d66121ff31b90c8d2d732cc6b2b7326ba2", "message": "py27 unicode file opening fix, better exception handling for i/o, restrict file input to system encoding\n", "proba": 1.2082556111181475e-07} {"commit": "31fe58534883d2b1d473a8ca4d001189350eedee", "message": "Assume python provided pip (#706)\n", "proba": 0.9999991655349731} {"commit": "6e0aa49a0d9d516e1ce33755a47b5a5ffbfa346a", "message": "fix Region.get_facet_indices() for inner cell \"corners\"\n", "proba": 1.730731469251623e-07} {"commit": "8e10d7172878b163d8fd72ed693a901de81e47bd", "message": "cutting out error handler functionality\n", "proba": 1.2620265579244005e-06} {"commit": "5762ed67ffabcdd27a057a4b3d16302ec38dc9c2", "message": "accounted for subdirectory changes\n", "proba": 2.5722852114995476e-07} {"commit": "51f41567be805d12dd6bfbed0791f73d8d54646b", "message": "Show the job status on the ouput\n\nThe jobstatus is given by the API but not shown in the output\n\nChange-Id: If60c91b3702a9e6900ffc0d42fc4604e1fa945a7\n", "proba": 0.09524708986282349} {"commit": "26b0a4b3130e08dfc8f517aa31d6eb79bb1e9e94", "message": "Remove setting of version/release from releasenotes\n\nRelease notes are version independent, so remove version/release\nvalues. We've found that projects now require the service package\nto be installed in order to build release notes, and this is entirely\ndue to the current convention of pulling in the version information.\n\nRelease notes should not need installation in order to build, so this\nunnecessary version setting needs to be removed.\n\nThis is needed for new release notes publishing, see\nI56909152975f731a9d2c21b2825b972195e48ee8 and the discussion starting\nat\nhttp://lists.openstack.org/pipermail/openstack-dev/2017-November/124480.html\n.\n\nChange-Id: I07504f0cccfa52162a989d450f3ecf014e5185af\n", "proba": 1.311854589403083e-06} {"commit": "c5590b515f921a8d2d7614b3e14391dece624742", "message": "updates settings\n", "proba": 7.484998718609859e-07} {"commit": "05f4a7a13688cf62978dcd26f719843692ea5f99", "message": "pep8 fix\n", "proba": 2.8706645593956637e-07} {"commit": "9baa4e055cb923e4bea259af57983935ac5c9aea", "message": "Switch from oslosphinx to openstackdocstheme\n\nAs part of the docs migration work[0] for Pike we need to switch to use the\nopenstackdocstheme.\n\n[0]https://review.openstack.org/#/c/472275/\n\nChange-Id: I9e165a63b0e80a5773b3f9a3aa1d155d50070f6d\n", "proba": 1.2103619155823253e-06} {"commit": "3bb1913cbbc2359e290b70181c7d713a99d615c1", "message": "Add check_additivity test to DeepExplainer\n\nThis will catch problems like #855 and so make sure people don't use bad explanation values.\n", "proba": 1.0275212503074727e-07} {"commit": "f53dfc9bca025e6afe0386c1fb53802b80cdfc71", "message": "add TODO for case if wiki privacy is closed\n", "proba": 3.401512458367506e-07} {"commit": "e1a2ae398df3ac94bb15207adc12a4fe37563d21", "message": "Remove setting of version/release from releasenotes\n\nRelease notes are version independent, so remove version/release\nvalues. We've found that projects now require the service package\nto be installed in order to build release notes, and this is entirely\ndue to the current convention of pulling in the version information.\n\nRelease notes should not need installation in order to build, so this\nunnecessary version setting needs to be removed.\n\nThis is needed for new release notes publishing, see\nI56909152975f731a9d2c21b2825b972195e48ee8 and the discussion starting\nat\nhttp://lists.openstack.org/pipermail/openstack-dev/2017-November/124480.html\n\nChange-Id: I7d61eb357be9ac1f0b16b246123f87f239a7fc9f\n", "proba": 1.3630115063278936e-06} {"commit": "eac0b0693e700d00ba5f7b234969e6ec69e3fce9", "message": "Consolidates get_prov_data and get_broken_data\n", "proba": 1.6095629007395473e-06} {"commit": "9827da3e3eb02a716a1b3b1185fc8d28213927f6", "message": "Prevent ports with no distfiles from failing the Fetch.check().\n\nDue to set logic and empty distfiles triggered a false negative.\n", "proba": 1.1690617185422525e-07} {"commit": "0c522334e6856627dda27de0977879ee8857c4d8", "message": "saving thumbnails wrapped in try except", "proba": 2.1586203047263552e-07} {"commit": "c0968ed48e48f02dd87df41c224468a4351feae5", "message": "Remove setting of version/release from releasenotes\n\nRelease notes are version independent, so remove version/release\nvalues. We've found that projects now require the service package\nto be installed in order to build release notes, and this is entirely\ndue to the current convention of pulling in the version information.\n\nRelease notes should not need installation in order to build, so this\nunnecessary version setting needs to be removed.\n\nThis is needed for new release notes publishing, see\nI56909152975f731a9d2c21b2825b972195e48ee8 and the discussion starting\nat\nhttp://lists.openstack.org/pipermail/openstack-dev/2017-November/124480.html\n.\n\nChange-Id: I0efc7889825a7d5b93f51919b9cc5bc86a1d28e6\n", "proba": 1.2640562090382446e-06} {"commit": "8de1f3d5c29c96ac89c92faa81ed79ba0382c390", "message": "Support device electrodes with no assigned channel\n", "proba": 1.466513737113928e-07} {"commit": "cde7dc5ef097656da727298f2c9e7b360abe7554", "message": "Fixes typo.", "proba": 5.059873728896491e-07} {"commit": "1ffcf5de72148642a33b1b59e95139fcd6158266", "message": "simplify vvo api handling, thanks @dirkonet\n", "proba": 1.4275845217071037e-07} {"commit": "2116b833d5e7a11efdad8dfc34b4e4ef2b8eb62e", "message": "Silly me, pymongo isn't *that* logical! Also, autocomplete kills.\n\n Un-broke stats worker.\n", "proba": 1.112864751462439e-07} {"commit": "c48fb98dacd589f658ad913279c0ef3832315a95", "message": "Forgot to remove a print.\n", "proba": 1.3239753116067732e-07} {"commit": "94ee5f3651bd7745a4ca04bc789993ba3815990d", "message": "Update the import script.\n", "proba": 1.2834134111017192e-07} {"commit": "6ea34d4218154f086197ac3f565ffd1778035e89", "message": "remove commented-out code\n", "proba": 4.103758612927777e-07} {"commit": "796a4e20fa108f5cd90f5c8ac08f73246e9e4a18", "message": "Correct bug in recursive dict loop. Fixes #334\n", "proba": 2.2079882455727784e-07} {"commit": "f89dd90c217a5bdae191767c3a2f5d8c917d7e50", "message": "Updated code cosmetics in the aws graphs function.\n", "proba": 1.056242879826641e-07} {"commit": "78a166a62aac5526fab64ce75c6f65606b5671b1", "message": "Better way to sort through the tests\n", "proba": 1.7610768736631144e-06} {"commit": "11f79300385b40cc19106837a75dc412e9693857", "message": "trim unused modules\n", "proba": 3.66657900485734e-07} {"commit": "700f4df0e0844b48169daf707ebea77d5752b4cf", "message": "Attempt to make queue listeners recover from connection failures\n\nThis may or may not work (according to pika's github account), but it's\nworth having around.\n", "proba": 1.1169135660793472e-07} {"commit": "e21342d453e934f314dea117e049215fc82ed0dc", "message": "Arch: Fixed export of furniture elements\n", "proba": 1.2218174560985062e-07} {"commit": "7ad1e83b3a9126416361561f7ecfedbecc7882d5", "message": "small fix to Arch IFC importer\n", "proba": 1.4156498195916356e-07} {"commit": "cf3e69de08d4de7d913fe9c421e925fb4ec0add9", "message": "Arch: removed global state of ifcfile\n", "proba": 1.8733393289949163e-06} {"commit": "10119ad9a1845aeea4907920ad353bf7d2a2ea8c", "message": "FEM: elmer equation objects, improve object creation\n", "proba": 2.904760663113848e-07} {"commit": "b42728aa16257bf8bc26d8af3f285543f3a1f105", "message": "adds avail_memory_byte()\n", "proba": 5.1231645556981675e-06} {"commit": "a0bbbf1a3422deec0446b299349781e45cd83a46", "message": "Admin: Fix product media view test\n", "proba": 1.9955314201069996e-07} {"commit": "f400d4560a5fd332736b59a486a305f8a3bb1572", "message": "Minor rename\n", "proba": 1.9089218312728917e-06} {"commit": "28e44b37328f175ee49455eab30db67944b79737", "message": "reportlab: attempt to make heuristic for PDFString formatting more sensible\n", "proba": 3.584854937344062e-07} {"commit": "34a99f78f18a5f9d69a89b873b8008495dbf81aa", "message": "Actually making the baclprop work\n", "proba": 1.5724485535884014e-07} {"commit": "13359c1bb10fd2146a6e82e9c0b97485e6c5ae7b", "message": "Contact angle.\n", "proba": 1.9318936494983063e-07} {"commit": "7a847e87541932c5930c9d5270b4873b6e6ca7e8", "message": "fixed casting problem for pitch_tuning\n\nfixed integer casting problem for pitch_tuning function on pitch.py\n", "proba": 2.519640247555799e-07} {"commit": "e3286574078916de5a4984c938678df94a576b7a", "message": "Fix serializing sessions with no start_dt/end_dt\n", "proba": 2.246936901428853e-06} {"commit": "e3ccc42ac24ba020d78093e39a1393df0ee8c831", "message": "Fix unavailability filter\n", "proba": 2.418500116618816e-06} {"commit": "519b228f2af8ea727103d0dac9d762b540745d1a", "message": "Minor bug in language sentence.\n", "proba": 2.2864395532451454e-07} {"commit": "fe6e943b371e15ea97f84cb15b1d7889fe03ef35", "message": "Unload statements in order.\n", "proba": 5.952874175818579e-07} {"commit": "85b9ece86f1e6984741ad1026bf8d44c107ff8d4", "message": "[JAX] Fix init2winit code for an upcoming jax.numpy.array() change.\n\nAn upcoming change to jax.numpy.array() means that, under a transformation like jax.jit(), it will always stage its arrays into the trace. This often breaks if the array is being used for a shape calculation. In this case, we can just use a tuple.\n\nPiperOrigin-RevId: 398004781\n", "proba": 0.00011405797704355791} {"commit": "869045117618a14cbe21f710705ad249e211d1b3", "message": "added a group_analysis, renamed functions", "proba": 2.4315218638548686e-07} {"commit": "e7b7492c84cd07155b685403aa0c922d8e6a7f62", "message": "It removed the libs.console module.\n", "proba": 1.1876417005396434e-07} {"commit": "d22f77a8e1a54d373f426589364b95f742b70b3f", "message": "Use float so test passes on Python 2.6\n", "proba": 1.0840382856258657e-05} {"commit": "8c6ee3304456d4fca367b57bdad124999ec39fdd", "message": "Fix bugs in checkDataType\n", "proba": 9.441695283385343e-07} {"commit": "a1618197b0c1731383d66b3e8696d36834f96848", "message": "stop messing at the wrong place\n", "proba": 4.647888545150636e-06} {"commit": "fd82547e35cc90e5cd15267bb11d71bc6abee1df", "message": "Unicode fixes.\n", "proba": 2.571233039816434e-07} {"commit": "86df6ea7c108044dffbfbb00a48e3e21326106a9", "message": "cope with bootstrap existentialism\n", "proba": 4.1452875620962004e-07} {"commit": "5d78b3bd55e762feaaf602b2e02ed3e652b4296d", "message": "ENH: simulation.optimization.save: always remove all jobs without error and allow to specify max parallel jobs\n", "proba": 1.91852379316515e-07} {"commit": "76a6e393f74ce0a3a97ecd40818d9460ea7b0fc4", "message": "change version number to a timestamp for the last revision; this will make\nit realtively easy to match up versions w/ cvs state\n", "proba": 4.352339146862505e-07} {"commit": "32cbac3f3a68651637c42b10677d900a60bccefb", "message": "commented out test harness\n", "proba": 1.3346686955628684e-07} {"commit": "dc9a087cf7d957d7e3f4c953a64707d4e5d32393", "message": "flake8\u5bfe\u5fdc\n", "proba": 2.818850930452754e-07} {"commit": "c4a3ddc3b6432bf6d6fb126d25269238ef2691e4", "message": "If the 'no protein' flag of '0' or '0?' occurs, the mutation type will now correctly be set\n", "proba": 0.9992250204086304} {"commit": "62046bc069156c19e876b7799df5595a2ef0e41c", "message": "Removed debugging print\n", "proba": 8.638198778498918e-07} {"commit": "a10508d7ae6f88d35b6e01b878995da55555c2bb", "message": "removed text norm edits\n", "proba": 7.101064625203435e-07} {"commit": "6d75b249f5576e217543172745969649597fb940", "message": "logging updates\n", "proba": 9.66578340921842e-07} {"commit": "707258ee4770c89406386682e1fbe7a8e5efde96", "message": "FileLink: accept path-like objects (#11059)\n\nAccept path-like objects by converting them to strings using `os.fsdecode`.\r\n\r\nFrom the Python 3 [glossary][1]:\r\n> `os.fsdecode()` and `os.fsencode()` can be used to guarantee a `str`\r\n> or `bytes` result\r\n\r\nN.B. `os.fsdecode` accepts path-like objects starting with Python 3.6,\r\nso users of older versions still can't use FileLink with path-like\r\nobjects.\r\n\r\n[1]: https://docs.python.org/3/glossary.html#term-path-like-object", "proba": 0.0001373591076117009} {"commit": "c3f588d84c0a4cc9060cdd54dd95d462d301cd05", "message": "fix failing motorway_link test (remove NYC)\n", "proba": 3.398993158043595e-07} {"commit": "94104561f4094f3af034c897bb818665f7d0dd0a", "message": "Removed more try/except import statements.\n", "proba": 1.070217265919382e-07} {"commit": "788674add421eb193c80e101f9a471e8b1703b93", "message": "Default to empty list (clear mypy warning)\n\n", "proba": 1.376593132818016e-07} {"commit": "5cf9199fca32bf16f755c4ff59260ede321a985a", "message": "Added docsets object for a list of docsets for the update task.\n", "proba": 1.0389236848595829e-07} {"commit": "5702e772e863766e6d3c0a83e0fef6a33e75fbff", "message": "Add note about combining skip_values and scramble and formatting\n", "proba": 1.2911746694044268e-07} {"commit": "1893fcb75e3d069bd944b612499d5e915f5d2fbd", "message": "added import commands\n", "proba": 7.333284770538739e-07} {"commit": "0b17f02568bc673b2758f85951c49fe2dd14c0ee", "message": "Commands are now sent in lowercase.\n", "proba": 1.8775195087528118e-07} {"commit": "cc63f26619d693184fac4d121bd79c0ea9e132a3", "message": "Doc enhancements.\n\nUpdate issue 90\nStatus: Done\nCc: pekka.klarck\nLooks good. Enhanced the doc a little.\n", "proba": 9.916163890011376e-08} {"commit": "0c2838f4a72e618fa58eb050e7b79d8dce960b50", "message": "Delete ConAltMeasure.py", "proba": 4.0053245697890816e-07} {"commit": "089180d4a4e5c221a28254ac455e0247286d99de", "message": "vagrant - symlink the central nginx include file\n", "proba": 1.6339733122094913e-07} {"commit": "d90aa504dce4cc7f3d69e65ddf96c44e129fd4c6", "message": "script cleanups\n", "proba": 6.220557224878576e-07} {"commit": "07f76904c34ac50589b0fecc2d105d8a7201785e", "message": "Remove unused clients set\n", "proba": 2.936513112672401e-07} {"commit": "1c56f5cc5ba9b91cc073cb38519180e9951d4aa8", "message": "bug fixed in ftp_brute\n", "proba": 2.8213602831783646e-07} {"commit": "b4cca3ae36762ae6861408e2db0ee5108f6df8d8", "message": "Use username as database name\n", "proba": 0.0004611064796335995} {"commit": "03e208d147adef9e48f3251db43bff490b496110", "message": ":green_heart: ir_attachment_url: fix B009\n", "proba": 2.8523381843115203e-05} {"commit": "f92fc0ff6b471442b41cbcee38ae495c6dc6c885", "message": "[scraper] minor fixes\n", "proba": 1.8933425849354535e-07} {"commit": "07be11501aa6c4a788f9f2e3f7cb01a1ee481fab", "message": "Clean Code.\n", "proba": 4.2180897708021803e-07} {"commit": "b27153a0abeabd5028b054e1a0780e5929e638ab", "message": "Switch account verification to 3rd party node\n", "proba": 2.2567306245946384e-07} {"commit": "54a97caf409aa8271ca6516a062cb94a6d9904aa", "message": "Disable tab_test.testScreenshot pending bug 256848 being fixed\n\nBUG=256848\nCC=kbr\nTBR=dtu@chromium.org,tonyg\n\nReview URL: https://chromiumcodereview.appspot.com/23495004\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@219914 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.355553877147031e-06} {"commit": "bf5da553b775b741b56500f86f9c6a5d4a8ec121", "message": "use comprehensions to create Y\n", "proba": 1.1017824590453529e-06} {"commit": "0054be5bab79856627f4d6b6cf31e406ad3410a1", "message": "Added missing json dependency in dashboard\n", "proba": 2.1724385135257762e-07} {"commit": "31c69ed1679ee1f31766bf2b6ee6ab9ca28205fd", "message": "Hook up Buddy.add_activity() and Buddy.remove_activity()\n", "proba": 1.3595643395092338e-05} {"commit": "20d7ea4ef9cae196c13ca9e671111611d0bb4aab", "message": "Het is 2009.\n\nSigned-off-by: Bas Westerbaan <1d31d94f30d40df7951505d1034e1e923d02ec49@fsfe.org>\n", "proba": 1.1032317814851922e-07} {"commit": "ba37da814a9cb8d8aa592e7ca3574fea96369075", "message": "Mejorado estadisticas servidor web\n", "proba": 2.2790965203967062e-07} {"commit": "295a1d6cc42cfabfad94ffc282d707fbdbcb2541", "message": "accounting for divergent colormaps with jumps in the center\n\nSome divergent colormaps sharply transition from one color to another in the\ncenter of the colormap. For these the colorbar looked strange, because the first\ncolor of the second half of the colormap was chosen to fill up the center of the\ncolormap for fmin>0. We now identify these colormaps and use a neutral grey as\nfill color for them instead. For colormaps with smooth transitions nothing\nshould change.\n", "proba": 1.0525745608447323e-07} {"commit": "310103f578e078f55e70618e03fb782f76c9be2e", "message": "try a tweak on Literal for more cache hits\n", "proba": 1.452939528689967e-07} {"commit": "405d514b1d626476848b71679b5f101d71b9f348", "message": "Removed deprecated functions\n", "proba": 1.8498675444789114e-06} {"commit": "0a9d537919c39c4877a4b5f2db4e7154ea6a0aa3", "message": "FIX: Normals\n", "proba": 7.810909664840437e-06} {"commit": "07221cb26a6a154ec3403241f0a3b343e063a3c9", "message": "Preventing a halting Exception if there was a error in operation.\n", "proba": 1.0035672630692716e-06} {"commit": "799a8a269cb408660f090a16353789d554236ad7", "message": "Updated version\n", "proba": 2.698738796880207e-07} {"commit": "429f9d0a13d39e8240b5edbef87f65cfbb943e07", "message": "Removed test print\n", "proba": 5.116555144013546e-07} {"commit": "142380ae8cc0ff9faf15880fb979f09f55d31b5d", "message": "fix tests - tarfile does not support reentrant\n\nuse multiple fd for both tarfile and zipfile, as zipfile supports reentrant by using RLock, suspect causing contentions\n", "proba": 1.2745752542286937e-07} {"commit": "226e7cc0d563b6235246e1ba1e9eed025ce63878", "message": "RF: Brain.set_time() checking range\n", "proba": 5.598915322480025e-07} {"commit": "89a24c1c17fd3d9a55e4ab5b7dc010d967e604c8", "message": "Allow to --filter-logs, especially when using --splitjs\n", "proba": 3.302233722024539e-07} {"commit": "b3a25c6743ab7804986dacdf737bd053582d0d69", "message": "FIX Brain.add_label(): make sure to have a unique label_name for storage in the Brain.labels dictionary\n", "proba": 3.969707904616371e-07} {"commit": "8d3b140bb660d81137adbcef8085876403368f18", "message": "Update the empty_db to not remove our toread tag from the migrations\n", "proba": 1.6749598330534354e-07} {"commit": "7ba222aac2c0521cee13b3bc7b8b595839fc29a0", "message": "Adding a group sender to update the feed client.\n", "proba": 1.1259442089794902e-07} {"commit": "4846457d933bbe97b1f2f8cd277333ee6b917d39", "message": "Adding filters to docket scraper.\n", "proba": 1.2438606233899918e-07} {"commit": "f2ac663a00a2856da44b284cf45ed68a816dd212", "message": "Use osv.TransientModel instead of osv.osv_memory\n", "proba": 3.939119608276087e-07} {"commit": "87e1e392d1b4be1f16d2f2d525ce43952b6b6c14", "message": "only update storage when form is valid\n", "proba": 1.7694611642582458e-07} {"commit": "cd4790dd4b20cc563372b3a60389a0b4eb3bb782", "message": "s/SKD/SDK/\n", "proba": 7.807714723639947e-07} {"commit": "d60c21cae35b3b0446a048278ddced3f4b12b8c2", "message": "Remove TODO from arbitrary\n\n529b85c7 implemented this, so it's good.\n", "proba": 1.097284396678333e-07} {"commit": "123e7448330793430c0e93e94b655192cae2e800", "message": "Add test for messages received from the room itself.\n\n--HG--\nbranch : wokkel-muc-client-support-24\n", "proba": 2.6192719815298915e-07} {"commit": "500e571fb1f5648530ed97a9b96f6c3568cdfbe9", "message": "data -> body\n", "proba": 4.096886641491437e-06} {"commit": "eb6076d3cf9ffedcf5f4985710d8fb188cd4ba5c", "message": "core to validate\n", "proba": 1.27485236589564e-07} {"commit": "568642cfe1c970b03bf9830294052af397dc1e36", "message": "Makes api calls use Session object.\n", "proba": 1.2196252896501392e-07} {"commit": "2e1f3ea539d234394daf3d6d2751ef65b9b747ba", "message": "bug fix", "proba": 8.047648520914663e-07} {"commit": "158c5cb6cf28faaa41d280d4807fc98ec8e4be7e", "message": "lib/oelite: Delete expand_cache value when var is deleted\n", "proba": 3.559455308277393e-07} {"commit": "662845d4029c49ccfc04378337cc7240759b5b7e", "message": "swapn_alpha\n", "proba": 0.0003053265099879354} {"commit": "ac0484b52eb89662552c5fee85f62b76181d3cfe", "message": "reveal 21 errors after fix talk context with __exit__\n", "proba": 1.8357347641995148e-07} {"commit": "ea11c938922b1add1948fce27baeb505a631bcc5", "message": "bug fix try number 27163", "proba": 2.8177939839224564e-06} {"commit": "8365f9a4bb94e602b0a2b2ce1d62b90260a16f76", "message": "Added option to pretty-print the result\n", "proba": 1.301532392972149e-07} {"commit": "b0dce5653bf9efcb07d5919e0261e19bdd090c2f", "message": "fix test for dlclassifier (#1715)\n\n* fix test\r\n\r\n* style\r\n\r\n* precision\r\n", "proba": 1.2935410609316023e-07} {"commit": "9a9a155b56466ff929ebc1d545f59f3dd654a406", "message": "Add argument to l2norm directly\n", "proba": 2.0870322714472422e-06} {"commit": "e5be9d122604554d1083b494784a8769b45eaffd", "message": "My error needed a new branch first\n\nThis reverts commit 899afae7d31aea8a8657e706794d7d4f38a7dfb3.\n", "proba": 1.2121300585477002e-07} {"commit": "358da45a7eb3220b7924c0131c28bb0b5400b2cd", "message": "Add VS110COMNTOOLS to win32 slave environment.\n\nWe are using VS2012 as well as VS2010 to build and\ntest the NaCl Addin and we need this environment\nvariable to be exported so that the bot scripts\ncan find VS2012.\n\nBUG=249073\n\nReview URL: https://chromiumcodereview.appspot.com/16830006\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@205923 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.7859359786598361e-06} {"commit": "187f859b19f8606d73dbd2e0dccfe7f0c2b0723d", "message": "recipe: update 'cryptography' and rm unnecessary dependencies\n\n- 'idna' no longer needed since version 2.5\n- 'asn1crypto' no longer needed since version 2.8\n- 'enum34' is just a backport of python 3.4+ functionality\n- 'ipaddress' is just a backport of python 3.3+ functionality\n", "proba": 0.0046606105752289295} {"commit": "405fffb886db0d41ce1f364015d923d63099340a", "message": "use new boundaries in converter job as well\n", "proba": 1.404089431389366e-07} {"commit": "6cb1543724de32aee2f59461c92a48bc4063c6fc", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "eca983104b2d87fc6fe5a62a2305ef33ede8f453", "message": "[brawlstars] add token support\n", "proba": 1.5767598426918994e-07} {"commit": "842d59da13c79b32355a373d1cb0dfb5087d5ee0", "message": "Bump version to 0.3.6\n", "proba": 5.209410574025242e-07} {"commit": "b6d4ab9950499864f0ebdca76c2c635b12ea7a55", "message": "exscriptd: remove some useless stdout output.\n", "proba": 1.1113264690720825e-06} {"commit": "5f5a2df27b6f5672b34ebda773b467d2ceda011e", "message": "Move eye to inside body (so it can't stick into other objects without colliding)\n", "proba": 1.4621176092077803e-07} {"commit": "445564f67215567483c864f5964969f0f5401639", "message": "Accelera alcuni comandi\n", "proba": 6.658389338554116e-06} {"commit": "fcefbc0211f2eac8949f00583fd3fec437f5a498", "message": "Slowly building the cli interface\n", "proba": 2.823602471835329e-07} {"commit": "b059c14dd693d6f3968cd2287796d34b18fe7d2d", "message": "Fix basic EntryBox scrolling\n", "proba": 6.301610483205877e-06} {"commit": "7875082038783e816e085f81f352806eb7c15bb5", "message": "slitherStage is not globalscreen\n", "proba": 0.01051065232604742} {"commit": "cdb9b87eac267e5e247ae4bcca269d8202b03139", "message": "draft of using alsaudio\n", "proba": 1.7751978020896786e-07} {"commit": "5658313b2a1cc8b2262270fdcba46d5fa925e2c6", "message": "clean imports\n", "proba": 9.536296943224443e-07} {"commit": "c9c8292866de3a9a68a432acd4ea52717c812ced", "message": "Revert \"cursesui: sort query results\"\n\nIt's a bit sluggish\n\nThis reverts commit f64bec122722a791b291e54f5ce4da1dddf0b90a.\n", "proba": 2.2071104410770204e-07} {"commit": "39e2620e50c2daca357116d8c6660713659a4583", "message": "Disabilita il refresh durante l'esecuzione di MENU_elimina_righe()\n", "proba": 1.7652037342941185e-07} {"commit": "9b11bee0e4e553415a71a209977daed783548a26", "message": "Longer delay required to process the queue\n", "proba": 2.7492700382936164e-07} {"commit": "c00973583c3d2f6988cecb31a8de2f7b46830b4b", "message": "* fixed safe typecast\n", "proba": 1.302289689419922e-07} {"commit": "4fe2ce7bb92579363b0929805991de88ea0d510a", "message": "Add sys.exit(0) for swift exit\n\nSigned-off-by: Bas Westerbaan <1d31d94f30d40df7951505d1034e1e923d02ec49@fsfe.org>\n", "proba": 1.4144083593237156e-07} {"commit": "1d036552ca765e4b8be4230eda85e96f5bfecbed", "message": "Add `caption` argument\n\n`caption` can be used to ovverride filename when used with --title\n", "proba": 1.436147954336775e-06} {"commit": "01ceef68343a42a3bb6592111305fac694a16acf", "message": "Fix error with Python 3.7\n", "proba": 0.0005668160738423467} {"commit": "347583aa7787fd709c83da4eb00b153d67e3c82d", "message": "changed implementation of wireshark xml parser. ugly as **** but works. binary fields also work correctly now\n", "proba": 1.2597428167282487e-07} {"commit": "3d7a767caae5959134f8a401c986c762eb7fed2e", "message": "Fix exclude_scripts in cx_setup.py\n", "proba": 7.292880127351964e-06} {"commit": "0cbdd1d4c865429fc92e427d94380a738753a440", "message": "added histogram for rotation/ turn_around _ball and walk_dist\n", "proba": 4.699582518696843e-07} {"commit": "84acc889df126bd3e7a8211fa0991043a1abefca", "message": "some tiny refactorings\n", "proba": 2.742484923601296e-07} {"commit": "e5a02481a933c6b95345200da36cc51270930842", "message": "In autoexec() migliora gestione errore\n\nin assenza di leeno.conf.\n", "proba": 1.7958728903977317e-07} {"commit": "d8e608e479be32e56ae3c5257ba48d47dc1ce13c", "message": "add some more logging\nwork-around bug in OpenBSD whereby close() on a socket does not wake a thread which is blocked on read()\nremove incorrect close()\nhandle EPIPE during socket writes\n", "proba": 7.963226380525157e-07} {"commit": "923c734463a5453e0a2fda1b7107ce92d4b0d3d7", "message": "Fix error in Coov basis symmetrization\n", "proba": 1.0404154409116018e-06} {"commit": "c6ec0c64695f34b250f38f69d0f09ff202b24a1c", "message": "a minor bug-fx\n", "proba": 2.5985539764405985e-07} {"commit": "da91fded97ca61b47089f928a8480405272ea5a6", "message": "FEM: add some pre checks in the regard of FEM mesh\n", "proba": 1.4990963848049432e-07} {"commit": "24de34986625b4077e56615d5ecf3e8294f02f21", "message": "20150419.1233\n", "proba": 5.61155275136116e-07} {"commit": "e940b5cd6436463b8163d2072229b52277bff220", "message": "Transformer Librispeech test case cleanup and addition\n\nPiperOrigin-RevId: 260924863\n", "proba": 1.317320368343644e-07} {"commit": "6d458ef021f28cba01541e916435b9ec03f11dfd", "message": "Unnecessary list comprehension - 'any' can take a generator\n", "proba": 0.0006839734851382673} {"commit": "840a65b07d975f8365ee6a15d36e556f7361ff88", "message": "no thermal yet\n", "proba": 7.448767291862168e-07} {"commit": "5781fbd582180a1977ae1a22b2f73b473f4b8084", "message": "now it actually works\n", "proba": 1.415845645169611e-07} {"commit": "931c8f341b4eda91caeaa9c8a24892b7fa6a9cb2", "message": "Expose odeint_fixed in tf.contrib.integrate\n\nPiperOrigin-RevId: 191769890\n", "proba": 3.034710118754447e-07} {"commit": "10d8498ce4157d6e684173ddb6c44df0bd1534e1", "message": "check if player is allowed to remove input\n", "proba": 5.163111609363114e-07} {"commit": "cf58cb002ab682dca3de15816477b9c5bc5c5c61", "message": "Extracted parts of the IRC server argument parsing into a factory. Use `split()` instead of `partition()` to get a dynamic number of fragments (here: one or two).\n", "proba": 1.1818082867876001e-07} {"commit": "362c41de8912119b4bce3db436735dee82e009f0", "message": "build(bazel): pin chromium to 72.0.3636 and chrome-driver to 2.46 on all platforms (#28698)\n\nPR Close #28698\n", "proba": 1.1673560607050604e-07} {"commit": "32e43d7c331883327f814939febbcbfaa7731bb4", "message": "Plenty compliance fix: cleanup\n\nMore generic approch to convert the Token to snake case.\n", "proba": 1.0279054407646981e-07} {"commit": "6e98ea14b6c0c872f93e511dbeb904862c622062", "message": "Update GameModes to provide instructions and notes when modes requested.\n", "proba": 1.0027351748931324e-07} {"commit": "d31bfc4694c95ed591d04e810a87ac4ece8b8278", "message": "-> Changed whitelist to unicode escaped characters, reverted GenepotRE/settings to default encoding\n", "proba": 1.289132285364758e-07} {"commit": "4bade9eafd86a6e4a8ccef983889a7cf36701399", "message": "Readable representations for Event and Recurrence\n", "proba": 1.8574623084077757e-07} {"commit": "3e2ab0c9681e2810ea632154c0316deaf4ab9650", "message": "Fix unicode / str regression.\n", "proba": 1.2678193570536678e-06} {"commit": "6fab90a689f1adb3ff385f014f7b658eac4d465b", "message": "Remove duplicate phrases when saving file\n", "proba": 4.8479570978088304e-05} {"commit": "38c044a3bd4efdcd8269d4d3003344a0581f3a91", "message": "[AC-6983] use initial fluent migration as base\n", "proba": 2.5162111683130206e-07} {"commit": "088e496ba8e0fedba232c1c180e9ade79dac57cb", "message": "Simplify logic per review comments\n", "proba": 4.5159263208915945e-06} {"commit": "70df6a7ffba989b7bf570cd5a464d4849b04ad72", "message": "account_invoice_margin 14.0.1.0.1\n", "proba": 5.847291049576597e-06} {"commit": "9cbf6a57d4281ef6a766423b102a2825eb5dedb4", "message": "Rebase against upstream\n", "proba": 3.3074309158109827e-07} {"commit": "28ce929a49cb9af9717b4de3a5e31f105082e9b6", "message": "maj du systeme de restore pour remettre tous les fichiers sans avoir besoin de conna\u00eetre les noms des r\u00e9pertoires\n", "proba": 1.9736712886242458e-07} {"commit": "4675891bd3c9e9ee7a57552486ec5bdc40379787", "message": "Make the tensorflow module picklable\n\nPiperOrigin-RevId: 273285669\n", "proba": 0.00018760323291644454} {"commit": "5156b7a339f80bb227b956da4084821d4da0cb37", "message": "Do not deadlock single-threaded agents with complex dataset iterator logic (interleaving, filtering, grouping...). The logic is as follows:\n- Adder is wrapped in a _TrainingAdder which tries to execute training step before adding more experience to Reverb.\n- Training step is executed as long as there is data in the iterator.\n- Otherwise, if any of the table's rate limiters would block the insert, _TrainingAdder sleeps waiting for iterator to fetch more data from the table. As a result, either training step should be possible or table should have capacity for more data.\n\nPiperOrigin-RevId: 452783668\nChange-Id: I0f7ffddcfd073146eac26d3bc0bd3710a2496faa\n", "proba": 0.0229179710149765} {"commit": "a9e7ed93a94b84a70b3ca9292e6554dd01c7f827", "message": "Fix warning formatting\n\nPiperOrigin-RevId: 261999604\n", "proba": 3.069914600928314e-05} {"commit": "a5fa41114d3e5bab72655eb32119a5e75a9d46a0", "message": "Drop incorrect comment.\n\nPiperOrigin-RevId: 414383633\nChange-Id: I14b30af0585dcd8d9f15fc42c4aa26a9e7ab8cdb\n", "proba": 6.758910330972867e-06} {"commit": "94b4db80e24d8e8de0c42e333b7405f0a9092df1", "message": "kernel approximation example\n", "proba": 9.472757369621831e-07} {"commit": "6414964dad9f9fa392374cb25bff955b16f50f42", "message": "added thread count\n", "proba": 2.94533663236507e-07} {"commit": "31a47b2530fb20e2529d5d60fe46efb27767b9ea", "message": "FIX: Renaming of RBFSampler argument\n", "proba": 1.4344736598559393e-07} {"commit": "4fbac970e9125f3e53dd5e31d63b971ad739a6d2", "message": "new release 1.0.4\n", "proba": 3.5513988905222504e-07} {"commit": "98ab9c792e29471ee122cc1dbd288b2a84effe12", "message": "[IMP] support images at email footer\n", "proba": 1.4333947717659612e-07} {"commit": "25e65cff84d4f6db2d66e39e07518f6ddc649bba", "message": "Added email-censor primitive\n", "proba": 1.3349639971238503e-07} {"commit": "8417709ebf583554e48a425a63e3af5715c8ac87", "message": "Allow ordering by itemName() using __id__\n", "proba": 1.8390339846519055e-06} {"commit": "a06dbdb3ff2b166dde4cf601e9d067e210906f46", "message": "Private key will be made writable before update\n", "proba": 4.1487126622996584e-07} {"commit": "3e2bb9baaf1702bf3f54b27e403ad1310e05238e", "message": "bahhhhh\n", "proba": 1.709446223685518e-05} {"commit": "ea56ae0ad730f0c3381e77d605acfb7fefaaee5a", "message": "v0.1.3\n", "proba": 7.985653610376175e-06} {"commit": "ad9b9ae3a44f24a8501762810b821c37c6a48931", "message": "Really limit the number of results as said in the comment above.\n\nSigned-off-by: Ga\u00ebl Utard <05116950d0cf875b40d23ad353a65d135ccddba2@laposte.net>\nSigned-off-by: Maxime Petazzoni <76f7aeeb2d6ed04ef2b101cc81e4baac9b89c3cf@bulix.org>\n", "proba": 3.3459932069490605e-07} {"commit": "d6ed8d46e8b06b5d2a2f40d3b10e7f8a0a77002b", "message": "better error message when no drawing box found\n", "proba": 2.6690099730330985e-07} {"commit": "2bb2d1ae170d02d70f7eb7303dba3aca0bc6aca7", "message": "WIP fix table to html\n", "proba": 5.132721980771748e-07} {"commit": "eb9f2720e32e17c2c398329929e43084c5528d69", "message": "rm uneccesary file\n", "proba": 2.8191465162308305e-07} {"commit": "36601cba39a9c8e49d3d052f3b18babcb0adfa09", "message": "Simplified syntax for joining journal names with new lines.\n", "proba": 1.1229437291149225e-07} {"commit": "a1f3a48625c7e5e8e04b485e7ddf3811e7868147", "message": "genderSpeak added to loop\n", "proba": 2.0128211986047972e-07} {"commit": "fc3ac8ccb3a8e47e78aab912dd5d495d335ae32f", "message": "Verify the sizes of the basic ctypes data types against the struct\nmodule.\n\nWill backport to release25-maint.\n", "proba": 1.0671047334653849e-07} {"commit": "77e61f214e4b6ce8d68fad3fb8a40273cb82261a", "message": "Be safer when there is no subfamily now", "proba": 4.148878645082732e-07} {"commit": "6baf26ea74247a0bed5f0b52d13bc3ef1c931204", "message": "[merge] Rename\n", "proba": 6.984401466070267e-07} {"commit": "90290b7bd9d8d1e31d98637126aafc7dd8d0dfac", "message": "At the expense of some speed, find the end of an excrypted portion\nmore acurately. This fixes an obscure problem with Fog 4 fonts.\n\n\ngit-svn-id: 05b73559aeb8bace4cf49b5ea964569f1305eff8@175 4cde692c-a291-49d1-8350-778aa11640f8\n", "proba": 0.0005542289582081139} {"commit": "0adaa05bd6d1bd9af7a1a6656189691201295416", "message": "oops! didn't mean to disable that test\n", "proba": 1.6509116903762333e-05} {"commit": "7b5b1537f2cef2a4b917053fa8ff6760b4f70553", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "c8676002a7e11c7d4dcc39abdeb907826b244129", "message": "code/code: remove redundant __ne__ implementation\n\nThis implementation is the default when __eq__ is implemented.\n", "proba": 9.151064659818076e-06} {"commit": "57ca47c1c7b0ac561df27d00fe67aeb2b2f39afc", "message": "Added tests for MIMEAudio class/module\n", "proba": 1.9644080850866885e-07} {"commit": "9d124d4e0677d294edb8845fa57618b49596cc30", "message": "apocrypha bug fixes\n", "proba": 3.985556702446047e-07} {"commit": "de59bd2ad038428cfa61cfdefe1266f3356e1937", "message": "BOOKKEEPER-1039: bk-merge-pr.py ask to run findbugs and rat before merge\n\nAdd the ability to optionally run findbugs and apache RAT before every merge using the PR merge script\n\nAuthor: eolivelli \n\nReviewers: Sijie Guo \n\nCloses #132 from eolivelli/BOOKKEEPER-1039-merge-findbugs\n", "proba": 4.899129635305144e-06} {"commit": "bf40cc31b17e824e9486aa5d687c46d2a35169ac", "message": "Wrap a couple of long lines.\n", "proba": 1.2558468370116316e-05} {"commit": "25467b2a8a8a367b326d48c4d1d3dbef870d5c93", "message": "Update the return type of `loss_fn` and `eval_fn`, so the functions can optionally return `weight_sum`.\n\nPiperOrigin-RevId: 435154188\n", "proba": 6.551153637701645e-05} {"commit": "bc5558e99a6323226fec5fb641281e86167b2e74", "message": "silence import warning (#2635)\n\n", "proba": 1.1639544084118825e-07} {"commit": "8d13c2bc3b332e840024fcce31ff19549d598e10", "message": "Using get_info('x11') for X11 related include/library\nfiles. This fixes 'cannot find -lX11' errors.\n\nNote that much of the contents of the method config_pygist.config_x11\nis now disabled as it appears to be an overkill: IMHO, setup_xxx.py\nfile should not contain sanity tests of external libraries or\nthe corresponding code should be in some pyautoconf module, at least.\nI think, for Scipy we can assume that external libraries are installed\nand work properly, otherwise maintaining Scipy becomes very difficult.\n\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@698 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 2.8413591280695982e-05} {"commit": "0badf5be9580e5806073d78b026b8bc9ba2f3de0", "message": "Update ipa_to_eng.py", "proba": 3.316960714982997e-07} {"commit": "2d1d3b522d69b8ffea9445a6ba49ffcd2d913142", "message": "if at first you don't succed, try try again\n", "proba": 2.9949837880849373e-06} {"commit": "abc6b9f92fd3da6462c13a2d890b2bb183e78877", "message": "change test to use ascii arrow\n", "proba": 5.274136469779478e-07} {"commit": "b70e3ad35cc04dc629403ee6f2dbf9a079ca28d1", "message": "Add support for Nexus repository\n", "proba": 2.9755827313238115e-07} {"commit": "839b7c8e5f2de8370daf02d8bbf570cc85a36d14", "message": "migration: fix ordering of target credentials table (RBL-7943)\n", "proba": 1.2739518240323378e-07} {"commit": "836c066048c1157b47495c0c338271dda1321b76", "message": "Fixed bug on classes append.\n", "proba": 1.1306205038863482e-07} {"commit": "6c0de2fc95464bbb24fb59538ce1ce0b4d843608", "message": "Added noqa for imports we want to keep\n", "proba": 1.1621076367873684e-07} {"commit": "85823caef3a52bbf453ddf6dd380bd17a7594f2c", "message": "Updated tests for modified usage and translate method\n", "proba": 1.7343565161809238e-07} {"commit": "ca2aba26e83aa96511aa80074592af230096886e", "message": "use check_array because array2d is deprecated\n", "proba": 2.6540521957940655e-06} {"commit": "5d7b761a92538767d0a797e252922ac68102eae7", "message": "Add node_jid to inventory_zone_management_node\n", "proba": 2.3041579879645724e-06} {"commit": "beda757efa1f799b261d16b80d028f304d6c251e", "message": "Move call to QAct out from _ApplyActivationFunction / _ApplyProjectionKernel.\n\nIt was only enabled at a single call site, call it there instead.\n\nPiperOrigin-RevId: 482664698\n", "proba": 1.5841483502754272e-07} {"commit": "afe4877f08dd7ea9132cf8751bada69b5821d7c1", "message": "Make TextWidget semantics slightly less awkward\n", "proba": 0.00111732492223382} {"commit": "f8540501aca60feea8108691b7ad5a9afa030aa0", "message": "[FIX] hr_expense: verify the constrain server side too\n\nThe groups were set only on the view which does not prevent abuses.\nThe fact that users can bypass the groups on the view is not critical as the\nchanges are logged but this should be improved nevertheless.\n\nIn master, proper record rules should be set.\n\nCloses #20427\n", "proba": 1.0012767006628565e-06} {"commit": "41ceefb0f81d6ac056e9d84e47de57191e067b8e", "message": "Docs: Fix param type for methods where digest is used (#1078)\n\n", "proba": 1.1096641827634812e-07} {"commit": "fad41d871d754b87814d6618179baffb69d72d08", "message": "Particle.allomorph() takes guess_coda funciton\n", "proba": 0.0004706054169218987} {"commit": "43b78b2f6b426f580d990438b6d7f0e5e0b8f05e", "message": "Added Path betw pts\n", "proba": 1.5031105249363463e-07} {"commit": "2e660af9f0a963080a4e3719a672f46b916bcd62", "message": "Report to mn if detected raid1 or raid5 only have half online disks\n\nUse sysrq instead of init 0\n\nSigned-off-by: AlanJager <7ba0221af525cfcc7adbf94f7fc6b46fa1dcb7c9@outlook.com>\n", "proba": 1.2033189022986335e-07} {"commit": "4d4dcf83b005ccfccae0e6c2a26e1c1f4ab1780d", "message": "resolve loop in the graph\n", "proba": 7.742781917841057e-07} {"commit": "30e170657a6c78db6788cf1066f337d85a1b477e", "message": "Experimental custom focus on open\n", "proba": 1.313209878617272e-07} {"commit": "090b42c2870fc9072be86a92040b7c25621a31a5", "message": "xirvik/commands/util: fix type issue\n", "proba": 9.71719032349938e-07} {"commit": "507e098d5ac06b35e048af66215055f592bf561b", "message": "[FIX] hr_payroll: Unlink all benefits at once\n\nunlink() invalidates the whole cache, it's an anti-pattern\nto use it in a loop! Accumulate the records to unlink and\ndo it at the very end.", "proba": 1.121355595046225e-07} {"commit": "b9011db4b203be6868b88a5402fd8143c1383e92", "message": "Updating tests to test parameter retrieval/modification.\n", "proba": 1.186247118312167e-07} {"commit": "76d22168edabca621d0102a6da33ba79869f2d1f", "message": "Given the detail records a private method of their own.\n", "proba": 2.2142194211483002e-07} {"commit": "7dcafc8d3f5435781cb3d17415e3127d93bb43dc", "message": "extra debugging added\n", "proba": 1.677372125641341e-07} {"commit": "7063eeff5a1089c6e516968ee028eafc68346bc0", "message": "corrected minreal call\n\n", "proba": 4.949571916768036e-07} {"commit": "f2036ebb15b9b9b76cc156559daf05a38158ee5e", "message": "Added predicate error handling to RPKBLink.\n", "proba": 1.1268583222090456e-07} {"commit": "97b43ccd98b49f8a01a1371194ab0c0def087660", "message": "modified cube_center_moffat2dfit to include the option of automatic cropping\n", "proba": 1.5725326818483154e-07} {"commit": "f60fafb8037a9d0a1f04fd402f5f3a6ea2c6d621", "message": "Start work on user model\n", "proba": 1.326419919678301e-06} {"commit": "fe78526742331bde5c8a638cc77b8aefc9525ce6", "message": "20150417.1849\n", "proba": 2.4359997041756287e-06} {"commit": "16b397c79023118b316818c037f4736aa1cdfa5c", "message": "Update feature_llmqdkgerrors.py\n", "proba": 5.16477086875966e-07} {"commit": "a641e9749f2d89ca6419b3594ce8c384d2a3c57d", "message": "Include -W from compile_commands.json\n", "proba": 1.3726290717386291e-06} {"commit": "eb8235a9b275cff2c340158c1876c7ec8cf03dbc", "message": "syntax error\n", "proba": 4.059871116623981e-06} {"commit": "bc93f23b3d640e6bc01be791cf8243f12b32ebcc", "message": "fixing tests\n", "proba": 4.7325497121164517e-07} {"commit": "0806f8abcac1ad8dc9aaf0395562121bc02e3125", "message": "http://luc.lino-framework.org/blog/2017/1201.html\n", "proba": 1.2843624119796004e-07} {"commit": "2cfd1a9ecca3393db5fe22f6740a9e406590ecd6", "message": "add get list method\n", "proba": 1.6936436395553756e-06} {"commit": "a49bd1936be361a0f91eadd2bb64249a3334891e", "message": "updating daemon23 to current design and new timing algorithm\n", "proba": 1.0963137242470111e-07} {"commit": "cc78a533aee7e40d8412262552d3e86cba37f409", "message": "terminal: summary_errors: replace if with assert\n", "proba": 0.0032113867346197367} {"commit": "b0e71f1786a2925d9fc04264870f38d828907c97", "message": "lisa.analysis.idle: Add helper to get idle CPUs at given time\n", "proba": 1.0750400178949349e-06} {"commit": "e9d4426dc4fe83446c3481e081dcd7bc25e4f8a3", "message": "abbreviate InMemoryDataStore.__init__\n", "proba": 0.0002950254420284182} {"commit": "828bc3d22702bf239f995d8770c5264fa621c5a3", "message": "Get branches from git call and version lists\n", "proba": 1.6896558463486144e-07} {"commit": "989a24429650b3df1f115305de716b22811fd690", "message": "Yield and yield from both work in asyncio calls\n", "proba": 2.3052757569530513e-07} {"commit": "cfb5f665930d5b924b99cf2cf7fed53ac7e56c3c", "message": "Change the logic which interprets output on stderr as an error so that\nit doesn't modify the exit code or the stdout contents, and so that it\ndoesn't clutter the output with \"Command has output on stderr!\".\n\n\ngit-svn-id: a4a6f32337ebd29ad4763b423022f00f68d1c7b7@110171 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 0.9999992847442627} {"commit": "29889dfdcb92129da26edf78d415ed1be88b970b", "message": "Add undocumented show_many_users resource.\n", "proba": 1.7010154351737583e-07} {"commit": "de0255d65178fd55c2afa14fe337111bcbc7feff", "message": "zephyr_mirror: Hack to try to eliminate fixed withs of zephyrs.\n\n(imported from commit 58a26863e77d4bbfca3f7b488c008b7e6a4804f3)\n", "proba": 1.471029662525325e-07} {"commit": "77d3d442c136e36d66f7322cfb9ad3e5f12d8f2c", "message": "Fix zero-padding bug in python loadtest client.\n", "proba": 1.2987041486667295e-07} {"commit": "53d8a2372cfaa2c2dcaa1a41e960c1154d1ee233", "message": "a few improvements to zfilter output\n", "proba": 2.8309065669418487e-07} {"commit": "e2c60c053affc259ab89d5d8efe538656c4bb352", "message": "Updated some docstrings in visualizations.py.\n", "proba": 1.1989362747044652e-07} {"commit": "b3c23b0d8b539b4cb019a62e3b052b0c632954eb", "message": "MAINT: Rename risk metric function names to include '_ratio' suffix.\n\nTo make the risk metrics being calculated more clear, change the\nnaming convention that ratios have a '_risk' suffix.\n\nAlso, fixes typo in beta docstring.\n", "proba": 1.470465917918773e-07} {"commit": "f481d0ec8bf80e42a21a3af8e237089774e21a1e", "message": "[REF] super methods call\n", "proba": 1.4684044913337857e-07} {"commit": "7c225ea7d62fab7b21c593e4c7a5100c7b0b2bc5", "message": "\u0420\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f #5\n", "proba": 1.9966374509294837e-07} {"commit": "6b24b07b1a30d079c6fad87b82ca7f2c05ac6a4e", "message": "Double filter speed by properly aligning coefficients\n", "proba": 3.0617189850090654e-07} {"commit": "0ab9369d720f0c50ad6b079f1d47256570401149", "message": "Use indesing instead of custom kernels\n", "proba": 2.5980361328947765e-07} {"commit": "0ad425fd82d3fdd15ee86e6d3fa1d06ff2d88b25", "message": "[FIX] l10n_br_account: fix copy method\n", "proba": 5.028153282182757e-06} {"commit": "b7c039589f9fa3a78d2485fe500e7194560a2e44", "message": "added significance test for mnist\n", "proba": 1.651916505807094e-07} {"commit": "adff01d390dac6afc02f6e4c66896a83a1365b78", "message": "Bug fix on null resolution\n", "proba": 3.175699703206192e-07} {"commit": "7629e8fc8f5e450a14683f22b72ba9220f187b19", "message": "Validate top level of the layout configuration, too\n\nI got an exception that a list object has no method \"get\" when I\naccidentally put the contents of my pipelines as the top level object in\nthe layout YAML file.\n\nChange-Id: Ia88f2a849bbc1dca5ec44afc969ddfa9c3598f1e\n", "proba": 1.610977778909728e-05} {"commit": "e1f0599ec3296d3673a7f9625cefeae74b237087", "message": "+ test_begin_end_dev_feature_from_another_branch()\n* additional assertions\n", "proba": 1.1972102811341756e-06} {"commit": "801418ac54c7ce06ea42ff71c59ef4143ed9a0d5", "message": "fixing pep8 error\n", "proba": 4.45145332150787e-07} {"commit": "62e3ee0ba618b928c8f34b144b126c11da9feb0c", "message": "Support multiple platforms for procname in launcher\n", "proba": 2.3374666113795683e-07} {"commit": "1b25e8485609627abd39e31a4f1e396315211392", "message": "fix eeglab nested EEG structure (#6806)\n\n", "proba": 1.5999017932699644e-07} {"commit": "88a43b942aa2240bb5df74a821d7cd929db47887", "message": "Implement _load_config to just naively try to open and parse the config file specified; not going to supply a default because we probably want to know if the file doenst exist\n", "proba": 2.7790099466074025e-07} {"commit": "0aa4f0a42599ac531b85df7566b233be6c16ed4a", "message": "Delete game.py", "proba": 4.238875590090174e-06} {"commit": "c0b6713657d336fba37360dd5bd0ac76a14948eb", "message": "keep app_name as app_name, to preserve interface compatibility\n", "proba": 4.0183405758398294e-07} {"commit": "395fb28f91d32aafe16c3d8284d285b78bae45eb", "message": "use blob detection to reduce interference\n", "proba": 1.4197574955687742e-06} {"commit": "ec9bddf2b36c2f2e5cbc79f7a758dc5b036e1d19", "message": "[IMP] add action type in selection\n\nbzr revid: nco@tinyerp.com-20130529075129-o0031upq7wqd6jep", "proba": 1.4085340183100925e-07} {"commit": "c0c6f42f1eb47c16c12e50979ea86988d1096c9d", "message": "Reverts 1825. I suspect the curvatures equalling zero was only true because the weights were wrongly set to zero. If any curvatures do equal zero then we are exactly at a minimiser of the objective function in that dimension, which is statistically unlikely", "proba": 4.95802396471845e-07} {"commit": "bd608c901f3bb610690a48155115090679f6e1ed", "message": "removed all the sensitive keys.\n", "proba": 2.720917109400034e-07} {"commit": "707d051770414bbef89d4c5414811849b632bda8", "message": "Added more 'login ok' messages to phpbb scraper\n", "proba": 1.2628125034552795e-07} {"commit": "e481464a120c498a2c846342a1ccd4a10508c6df", "message": "Testing 10 km aggregation script revised for sensitivity analysis.\n", "proba": 1.0127801886028465e-07} {"commit": "8fcad5c42ac278cf714021bf00e2bbfb2253e48d", "message": "improve random timeouts when netlog connects back\n\nEvery now and then it would happen that for some reason the initial\nsocket connection would fail and then, as no timeout was provided, it\ncould take quite a bit before the connection completed - hanging the\nentire analysis. Sometimes three seconds but sometimes up to a minute.\n\nBy providing a timeout of 0.1 seconds we actively force the socket to\ntry to connect, generally connecting successfully after the first,\nsecond, or at most a third try.\n\nAn example log file of a situation where the initial connect attempt\nfailed and no timeout was given looks roughly as follow:\n\n2015-07-25 13:18:57,022 [lib.cuckoo.core.guest] DEBUG: Uploading analyzer to guest (id=cuckoo1, ip=192.168.56.102)\n2015-07-25 13:18:57,279 [lib.cuckoo.core.guest] DEBUG: cuckoo1: analyzer started with PID 2192\n2015-07-25 13:18:57,280 [lib.cuckoo.core.guest] DEBUG: cuckoo1: waiting for completion\n2015-07-25 13:18:58,281 [lib.cuckoo.core.guest] DEBUG: cuckoo1: analysis not completed yet (status=2)\n2015-07-25 13:18:59,284 [lib.cuckoo.core.guest] DEBUG: cuckoo1: analysis not completed yet (status=2)\n2015-07-25 13:19:00,287 [lib.cuckoo.core.guest] DEBUG: cuckoo1: analysis not completed yet (status=2)\n2015-07-25 13:19:01,289 [lib.cuckoo.core.guest] DEBUG: cuckoo1: analysis not completed yet (status=2)\n2015-07-25 13:19:02,292 [lib.cuckoo.core.guest] DEBUG: cuckoo1: analysis not completed yet (status=2)\n\nFollowed by the following message after the connection was successful.\nAfter this patch the following line should show up pretty much instantly\nin every analysis.\n\n2015-07-25 13:20:06,453 [lib.cuckoo.core.resultserver] DEBUG: LogHandler for live analysis.log initialized.\n", "proba": 9.641693395678885e-06} {"commit": "67cf37d337f9a07d49c9d0756a7ef84744b79ba6", "message": "Structurer: Specify addresses for loops. (#1376)\n\n", "proba": 1.2021077111512568e-07} {"commit": "87cd57ffed33d58bf50432e6520af55ba94883ed", "message": "cifar 4*10\n", "proba": 6.842860216238478e-07} {"commit": "2d0f994dcf0786b6d824a005cd3211be4edac41d", "message": "Finally fix swarming_run_shim_test.py on OSX.\n\nR=vadimsh@chromium.org\nBUG=\n\nReview URL: https://codereview.chromium.org/168203002\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@251477 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 4.753306711791083e-06} {"commit": "d7b78aea23ac8216f094880f90d8d7d31d0e37b2", "message": "fixing a bug that bit me last night\n", "proba": 1.7404174457169574e-07} {"commit": "eeccabee6d173db39c06cd886856cc50aa22dba2", "message": "annotation data\n", "proba": 3.901403488271171e-06} {"commit": "9aebb45ffc2f4fa1622e7b6f6ec2c6d6411f85bb", "message": "fix test order\n", "proba": 1.515088911219209e-06} {"commit": "91f9cc5e22c1f213ef14902234d38f61845306bf", "message": "Output igraph directly ", "proba": 6.70634544803761e-05} {"commit": "ed363c34e66ede7c88c441914307140ab22d68de", "message": "testing query\n", "proba": 0.00023700713063590229} {"commit": "a140acbc3d90bdd5bd61fc362a0626d6fbc15a6b", "message": "Vacuum databases... Didn't know they needed this.\n", "proba": 1.3629045270135975e-07} {"commit": "aac595201a4d8cd8c7acd9c9388a14def566a87a", "message": "Update TODO in main file, stats_outputall() in main() as comment\n", "proba": 2.1304848019099154e-07} {"commit": "75135e2e618308e7f91187362786ff8208915191", "message": "Most of the downloading works, but it's hard to say when there's no\nnet connection on the bus.\n", "proba": 1.171893657669898e-07} {"commit": "cef5e4216418ce98cf5c1989da089d97934ea7b1", "message": "WrapRec sample data.\n", "proba": 1.319837821256442e-07} {"commit": "13ff7ad97ea4696f2d48ac4c926f90ea55b83400", "message": "docstring\n", "proba": 5.97681209910661e-05} {"commit": "dd24ec89172b873ca59d29bd61662355064ae78c", "message": "Upgrades to have one and only one canonical npm and bower lib, symlinked appropriately\n", "proba": 1.344121045576685e-07} {"commit": "a36f0129e8e013af0d2847caaa72674932abb683", "message": "Increases max_result_window.\n", "proba": 2.604843700737547e-07} {"commit": "f86f9fd6ab918c0f5c50b12843b05755d1d66370", "message": "add force mdadm\n", "proba": 0.9999856948852539} {"commit": "3a109055527a646aa6fb08572169d21d22411425", "message": "dharma.utils.imports.import_dotted_path\n\nA copy-code from django.utils.module_loading,import_string where django==1.9\n", "proba": 1.0431553164380603e-05} {"commit": "d2a7b5ecd51cab150fcbe4df00ce5a16c6cd15b3", "message": "fix syn error\n", "proba": 6.338920684356708e-06} {"commit": "86b5d992e64ebfc34d212db9ef596b053969e5c4", "message": "variance in compression reduced to a very small amount\n\nwhile improving compression by 0,2% :)\n", "proba": 1.2805233495782886e-07} {"commit": "9b057d7e9c7ea9f66bf5dcae3ee59b776b66dee9", "message": "Stay on detail page if delete fails\n\ngit-svn-id: c74d769ecf1bfbf057d3f10521a721e84271ea06@712 ef98d105-df06-0410-9ba4-9cf3429d62c9\n", "proba": 7.739053557997977e-07} {"commit": "f0784731a348f29a3fd2ce40b104224ace747ccc", "message": "check free space\n", "proba": 1.4552469451700745e-07} {"commit": "4e33addca72af34484d87056a8a2a8630629c609", "message": "Make the admin panel default to the current game type.\n", "proba": 1.1093636942405283e-07} {"commit": "e51006555acbe51dfb546af9fb89fb99e1d07e1f", "message": "Expand EventbiteAccount docstrings.\n", "proba": 5.033326146985928e-07} {"commit": "d46e36d8abab5ad393c5a8ad78c3cdf6872d88e6", "message": "package version # 0.10.0 -> 0.9.13\n", "proba": 6.083230914555315e-07} {"commit": "71dcfec62d102d7786cb17ad630b1785b664f07f", "message": "[FIX]custom_account:correcci\u00f3n fecha prevista\n", "proba": 4.812167730960937e-07} {"commit": "ae6b9a290ac450becf343211fc9979a39a4acb38", "message": "remove debug prints from adminchannel\n", "proba": 5.974019359200611e-07} {"commit": "79a813340c116a47076acb26d562187a305eae64", "message": "ContactMap now takes into account centroid distance\n", "proba": 1.2976728669400472e-07} {"commit": "f59eb13b512fe7714ae8e2b4e7a8ab1f681943d1", "message": "FIX format\n", "proba": 9.764409014678677e-07} {"commit": "4699819746becc161045a053c8714f595f4beb36", "message": "switch contact image generating function to use static instead of media since they're trusted, backend-created and not user uploaded\n", "proba": 1.5874240943958284e-07} {"commit": "c09e6a188cd9425264ffcf2f7fe4e67b905db7c6", "message": "intel options on windows\n", "proba": 6.318697955975949e-07} {"commit": "19b7418d3086af883f8f0286614e6d04995e423f", "message": "Handle situation when signal.getsignal returns None.\n", "proba": 0.00012422463623806834} {"commit": "12de19957d4d96bdd134cf4fd4e615c4966bc3bd", "message": "Cleaning: linting", "proba": 6.826670869486406e-05} {"commit": "ebf2c7a43d7f55abf316e68421667500754cb026", "message": "Fix adding to PATH\n\nTest if the PATH variable exists before manipulating it.\n", "proba": 1.279291694800122e-07} {"commit": "8138425df5a6e72340c0a12589e4ead8429a2651", "message": "workflows of lmm and shape now save plots as well\n", "proba": 1.037968928585542e-07} {"commit": "fc90e99e2c0ae99c5a7a4c681257601ec68e350c", "message": "Fix config parsing for samples and libraries\n", "proba": 8.07877654551703e-07} {"commit": "5427f59ff16ebcf8fabe48decfae328273afdd28", "message": "Fix the height option bug\n", "proba": 6.507010402856395e-05} {"commit": "ada6ff5606bafdd12f42023853e433e71a6bcbd3", "message": "apply service scan to stealth port scan\n", "proba": 1.5470649827875604e-07} {"commit": "89b5c0007cc996723ba1abfaff93d81b74ab8ed1", "message": "changes to ClientBot\n", "proba": 8.904690389499592e-07} {"commit": "8c8da4474cb079933c3ee1ed505ef70e4f199011", "message": "Update Tags.py", "proba": 3.104209156390425e-07} {"commit": "c140b873ea6ba0df13343e6f67fe6a555a9a314e", "message": "[MIG] cmis_web: Migration to 14.0\n", "proba": 5.798739266538178e-07} {"commit": "8cac2898a7fa2faa2eb7b68e7c9432f71bce279d", "message": "Update test.py", "proba": 1.2969024965059361e-06} {"commit": "af858ae06331e674ef915f92383f71f9bb7ea103", "message": "Added a missing import, as detected during tests of the tutorial\n", "proba": 1.3781405527879542e-07} {"commit": "8fb1181d9ea1ccc65029159bad9141e1ec311fa8", "message": "added gettext to authour field\n", "proba": 1.878413229405851e-07} {"commit": "977ce7e3c94767d6c01a8d78c449ba6c9f6aacd1", "message": "Compatibility fix for custom User model in menu\n", "proba": 1.9255074334978417e-07} {"commit": "bb0bcf320b7df7e37451151954256e5af01c5e1c", "message": "Transferred all generic functions from paideia_utils to this module; replaced them in paideia_utils with calls to the plugin_utils version\n", "proba": 2.1513861270250345e-07} {"commit": "86a6a90368133b074aecb0eb43b188db184fcd89", "message": ":bug: Fix for unique files table entries\n\nThis checks for the existence of a file by SHA1 before\nattempting to insert it. This comes out of the changes in\nConnexions/cnx-archive#416, which enforce the uniqueness of\nthe sha1 column.\n", "proba": 1.0550991902391615e-07} {"commit": "f14caf76c195f7b382afc3069626302d591b9935", "message": "Use configuration_doc instead of the old configuration variable\n", "proba": 9.340733413409907e-07} {"commit": "fcc10b33a9b86d1f3c2f4fe61cec9a4359105835", "message": "pggui: Minor documentation fix\n", "proba": 1.513702443389775e-07} {"commit": "8aeb6e8391307d20e37af6fdca550df216aec916", "message": "pgpdb: Allow to display GIMP messages with a file-like object\n", "proba": 2.2648028163985146e-07} {"commit": "485d9edb26f257a149d1d38c1a33678004240d4c", "message": "added fetch_all decorator\n", "proba": 3.3669533650027006e-07} {"commit": "2c24069e4ef33d552790ae7b039d03864c9283bb", "message": "fix(api): add missing space to runlog entry for set block temperature (#6259)\n\nFix a typo in the runlog entry generation for the thermocycler command `set_block_temperature`\r\n\r\nCloses #6258 ", "proba": 3.2667803679942153e-06} {"commit": "478a2f64e737749d8adc1bee0b10d0a0c42f3448", "message": "Testing command line change\n", "proba": 8.042262606977602e-07} {"commit": "e6d704549173e31a4dd4156f5b4e3f0e1069ca01", "message": "Removed validator", "proba": 1.3390535968937911e-06} {"commit": "6b63ef0d7a5a5734a97a8ff7690934704caee2cd", "message": "Fix path to templeate file. Closes #1\n\nAt least for OS X an ST2\n", "proba": 3.718087384640967e-07} {"commit": "37170762bfebe8c5a78b85f76d0f6c5747b14ae9", "message": "LOCI regions - step 1\n", "proba": 1.7132387597484922e-07} {"commit": "62fcf5011751cf5b76ce7688668c479772fe606b", "message": "Docstring fix", "proba": 7.387467348962673e-07} {"commit": "d874292eafc88b6f62f1294667c24ed3d780bf9c", "message": "Fix core dist bug\n", "proba": 4.824869392905384e-07} {"commit": "984c441eacf22469eafefe0bde354209055d0109", "message": "fixed nose.SkipTest issues", "proba": 3.031036612810567e-07} {"commit": "dba5d020cdb7b4b306d68aff1a66430730c3b92b", "message": "Pipelining back edges works, saves more space.\n", "proba": 1.1507922437203888e-07} {"commit": "b5552d187dae507b8aa15f0c0ca4117bf7225705", "message": "removed choice ordering\n", "proba": 2.126729299334329e-07} {"commit": "51b58f1478cea02907124c8f087d6798bfa03cd6", "message": "bugfix: conflicts should print out the spec that has the conflict (#11947)\n\n- Fix a bug introdcued by removing parse_anonymous_spec()\r\n\r\n- Conflicts' when specs are now *actually* anonymous, and the name of the\r\n package is implicit, so we need to remember to add it back to error\r\n messages.", "proba": 1.9365826631201344e-07} {"commit": "79f45b9f4edb76dfc3a5546219fcc03777dc0bcd", "message": "made source and body option in spomsky backend\n\nempty messages being received by the spomsky backend (which i still use\nfor offline testing) were exploding. i never considered that people\nmight send empty messages, but i've received a whole bunch today.\n", "proba": 1.0566297703462624e-07} {"commit": "ce856db1db758891ffb543a4f4fa6c2251eddb8e", "message": "COSMIT: fix more typos.\n", "proba": 3.527414446580224e-05} {"commit": "19fc15c0eee1c3f09edfc08690ac33bf852ba8ab", "message": "better handling of timeouts, disconncets and write errors\n", "proba": 1.789124013384935e-07} {"commit": "3118a834e12e3f69abac5bd51cfe59a406c569f3", "message": "investigating client performance\n", "proba": 4.2222029605909484e-07} {"commit": "b5eb4b59264bc02510d71b949515801b1eed30d0", "message": "=new command line\n", "proba": 4.903067019768059e-05} {"commit": "4e82ae6ab39c4eb56d28a6bdc60b2760de9b1ca5", "message": "comment on important lstrip when using os.path.join\n", "proba": 1.7370298621699476e-07} {"commit": "b7d9831bc4380808c76762a3ef5f17df3925c78c", "message": "Removed excess whitespace.\n", "proba": 1.1015209565812256e-05} {"commit": "aa4a382b2fbf34e9d718c773831f81823a60b6d2", "message": "[FIX] Correct _get_args", "proba": 0.0006233485764823854} {"commit": "f8f03f24af7305c70213a1bcfdd9fd3d19037da2", "message": "add show_progress_bar to CrossEncoder training\n", "proba": 3.03015525560113e-07} {"commit": "3834b1b1550d4021cd122f6685c25bca09ca1642", "message": "small fix\n", "proba": 5.359547685657162e-07} {"commit": "0b44c0e45013767fac09023a7a7ff957b59adf4f", "message": "Sample gas reistance for longer\n", "proba": 1.3085693240100227e-07} {"commit": "42d859f59f7ee88faab08aed1ee5f81c57c73cb1", "message": "Actually update compilation status when completed bot submitted\n", "proba": 1.2049726194618415e-07} {"commit": "312296eb0b2abc01684318d7e29dab4f415a3617", "message": "Migrate VService to use options()\n", "proba": 1.3374234697494103e-07} {"commit": "4053f9ac52b1d9638c106094ba48fbff3a576116", "message": "Update render pipeline path\n", "proba": 4.2016768020403106e-07} {"commit": "40bd7e0fd967201cb72307df8163cff20ded0eab", "message": "Added stage updater code.\n", "proba": 1.1244161157719645e-07} {"commit": "c0490a771c0741f78f2d69982bb88204457294a0", "message": "Remove unused.\n", "proba": 7.273199003066111e-07} {"commit": "54c96183018635b7e08417236b971731e433726c", "message": "Consider only events in the future\n", "proba": 2.29236820814549e-06} {"commit": "859337072ec29c601ce1f2406b2648e1b92cbd61", "message": "Unnests some code & handles unexpected None found in cache with memcached.\n", "proba": 1.0620183843457198e-07} {"commit": "d5592fdd0b71eae5c7c62822b2a70b1dc9b510a7", "message": "if None is specified as any argument to the Component constructor with a correspinding array-assumed field, that field is initialized as an empty list\n", "proba": 2.528636002807616e-07} {"commit": "7384a5bc8ead8b4a95e6625423090ba9606a5e65", "message": "Update gpio.py", "proba": 6.078962542233057e-07} {"commit": "0ce267c368b6605e395af8b06f69ba650e2fd297", "message": "Called retrieve_candidates_from_non_unique_identifiers to find_duplicate_candidate, modified results returned\n", "proba": 1.147797206613177e-06} {"commit": "537d9f2031f6bc74b2a0026fdfc0094ce5bc5649", "message": "sql db: smoother query error handling (via error())\n", "proba": 7.956120953167556e-07} {"commit": "24cc30812f0f4e8537125b5e8cb28322eb4f7b1e", "message": "ctinit adds _db.py symlink on project creation or refresh\n", "proba": 1.7078276925985847e-07} {"commit": "deeedf0b8f2d0614f1e7fda2f52672bead396c2d", "message": "Added finding absolute path to config file.\n", "proba": 1.0983334419734092e-07} {"commit": "7dea154d0d70b8f4d11bc353b0cd8a47a2dcbb9d", "message": "Don't include null/None reply from method calls in message.\n", "proba": 1.0753531398677296e-07} {"commit": "be154c8ca87e8ffce1e742761c2f68b49ad8a73c", "message": "Remove load method", "proba": 1.0109069989994168e-06} {"commit": "ebd54045ecd01eafc1e6f5fdae387c0eaf14ef36", "message": "PEP fix\n", "proba": 6.614648100367049e-07} {"commit": "e7fcfa981e7d7a17ff0c8e3c8ceee02f8b7885d0", "message": "Remove the yaml dep from the git module\n", "proba": 4.3203638711020176e-07} {"commit": "c2620bd0614a93384c3a448d030ed203c85ddaae", "message": "print\n", "proba": 7.684111187700182e-05} {"commit": "2b6413558b30a3e71d9657b3a6f96be75d6b4cd3", "message": "hashi_vault: Use mount_point kwarg for ldap/userpass login (#54358)\n\nFixes: #54249", "proba": 1.3127403519774816e-07} {"commit": "93546990c8ff3aac5c1ca30df25d2f491ef0147a", "message": "Modified the determination of the program from the file name, so that if it was unsuccesful the default is used.\n", "proba": 1.2438189855856763e-07} {"commit": "b09316db3624f11d652ac26cce20478c3d191199", "message": "Imports are weird...\n", "proba": 1.2149213546308602e-07} {"commit": "4b87c5afc80c9ab445d4298c23c86f1a6f9a61d4", "message": "make dbs\n", "proba": 4.166363214608282e-05} {"commit": "51d64ae5b911d881f700830b2cc21d5c1689b689", "message": "delete previous entries\n", "proba": 1.4364381684117689e-07} {"commit": "4ea244b2320d39b883c3b64c62bc2d04c08fce6d", "message": "rcnn config (#2569)\n\n", "proba": 1.2934251003571262e-07} {"commit": "9b3490e1130d520c21e93beca171c5c7ce21f984", "message": "Removed duplicate player\n", "proba": 3.9756409364599676e-07} {"commit": "f98ab8166788735eb4214a2a6168d66347a85d1c", "message": "chg: dev: Removing autoport and port_number metadata from ports as with the new label metadata they are not required.\n", "proba": 1.0862562049851476e-07} {"commit": "665dbb755d31ae3daaf9287c68c661dc272c6e22", "message": "Fixed issue with restore VM request\n", "proba": 1.8399815360226057e-07} {"commit": "a5ed84bd9c8967d1d371a867270672f451733d8a", "message": "consolidate similar tests\n", "proba": 0.0009497571736574173} {"commit": "5e23526ab4122f5a1e8d8618b37195d8fbb5ca7c", "message": "better unit testing\n", "proba": 4.2916633447021013e-07} {"commit": "aab672525a0d627d4074e28102e4620ba88f0b5b", "message": "do not pass connect headers to the server we connect to\n", "proba": 1.2086313461168174e-07} {"commit": "d0a3d90f94ce781bee411bd1fccfd7a6a6bfa462", "message": "codeclimate fix\n", "proba": 3.97567873733351e-07} {"commit": "4eea77d385ee6674455114cbca5f471376f9e919", "message": "Switch one-touch-pass to use the window evaluator for selecting points\n", "proba": 1.9561301201065362e-07} {"commit": "c94c2d5a84968a68310fcbaf9502accb4af30f0f", "message": "bug 1134686 - common fixtures for IntegrationTestReport\n", "proba": 1.07193535825445e-07} {"commit": "4d5adade1a8ac4fcd991b42c46533d28afc32342", "message": "Add some options\n", "proba": 0.0005347367259673774} {"commit": "df51e65f8996e00018dfe1d9801a2b8d79ed93b8", "message": "initialize last_batch_ind line 248\n", "proba": 0.0013243373250588775} {"commit": "5205304c72a9c2bc104434636fe9045720d23ac0", "message": "methods to control the path to config.json\n\nLets the user override where the configuration file is,\nand what it is named.\n\nNeeds tests, and documentation.\n", "proba": 1.107275124923035e-07} {"commit": "c603ba8328b0e4a8c1732b58ddfeb6aa4b5a46db", "message": "ucf fixed\n", "proba": 3.992152812770655e-07} {"commit": "8d78607e9a94c043d52c035d1e6c6f773279d2ff", "message": "update: flattened img data & stuffs...\n", "proba": 1.1134294908288211e-07} {"commit": "a69dc60769cf18c2a0a47e907e79b0e3d1417cab", "message": "Update task.py", "proba": 1.5506335330428556e-05} {"commit": "571ee03a40eb0deeb6f7392298f4b1da6fef6715", "message": "tweak doc\n", "proba": 4.613741566572571e-07} {"commit": "dc2174e0094286dd8415fa00ea92fe4974dfadcd", "message": "Remove unnecessary lock, as client should be threadsafe\n", "proba": 1.698384380688367e-06} {"commit": "29461d7b3b2ea9b214e7b34dfcd5ed02a90dbdd4", "message": "Fix the form widget for TrueOrNullField\n", "proba": 0.0001637795357964933} {"commit": "7c469d7f5dee82b8b62b2b1af33871f05b2a5f78", "message": "Fixed #3350 -- Fixed timezone setting. Thanks, Matt Boersma.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%406300\n", "proba": 2.923107160768268e-07} {"commit": "ec7c71f0634994ccc2cd0abe39abe6b624a41960", "message": "Fixed #10654 -- Removed 'Does it have syntax errors' from the ImportError in django/conf/__init__.py. Evidently syntax errors raise a SyntaxError. Thanks, gutworth and alexr\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@15812 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 4.879574134974973e-06} {"commit": "5a314728c8a0bbe6294af9afb0c9138f0520f8fc", "message": "Added a parameter to HttpResponse's constructor to enable explicit status code\nsetting. This will save us from being asked to add a subclass for every\npossible HTTP status code.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@5554 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 4.953669758833712e-06} {"commit": "8c494e64a1f2cbe9e88775e99dbb0421bf6ec71e", "message": "Refactored the HttpResponse sub-classes so that adding a subclass that only\nchanges the HTTP status code requires less code (no need to duplicate the\n__init__ method).\n\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@4865 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : 1c19e6ed9cbc03f49380ba905ae371dbc2674897\n", "proba": 0.003938728012144566} {"commit": "6850ffc7f79534e637d077cbadf0eaaf41bc9844", "message": "Update version\n", "proba": 4.1292173591500614e-07} {"commit": "2e7d08ec11cad67d2799a551885c4bda63eeb1ea", "message": "ADMIN_MEDIA_PREFIX is deprecated and not needed now\n", "proba": 1.1888008799587624e-07} {"commit": "aa7e637f67eb21ff8415f27006d6680837925094", "message": "Minor cosmetic fixes on django_jinja.backend module.\n", "proba": 1.1036927105578798e-07} {"commit": "22be56d3e7af8bfbb2bf2d226ef27d91d63aae95", "message": "EB Bottle REST Setup (disabled MongoDB) cont.3\n", "proba": 1.3305967172527744e-07} {"commit": "3ea9acb73f86bbc93be60bae6c7eb21b46737004", "message": "secret issue\n", "proba": 4.0288199443239137e-07} {"commit": "e4a35cbf88164b34d291962ac3aa007262d97968", "message": "Always set the child index\n\nFix #1560.\n", "proba": 1.2082912803634827e-07} {"commit": "8847d5c361fa2fb975320964c18212142093e7cb", "message": "More Read the Docs\n", "proba": 1.1321591841806367e-07} {"commit": "68b0b96aadf29b6f6fadbe72ea6bdd225374e0b6", "message": "sub58, 0.67306\n", "proba": 9.162714377453085e-06} {"commit": "14a44e166f82f7d93b3fd9f44515695398a82b32", "message": "RBL-5835 refresh the instance after doing an update to get new version information\n", "proba": 1.1153849754919065e-07} {"commit": "78fa4995abf8f7953fc8163360b4dbe0ca7c3c15", "message": "Fix obvious problems from switch to dict views. Some tests still fail over\nsome reference count issue (I think).\n", "proba": 1.059721768115196e-07} {"commit": "d3981cc0ff51efc1bb913a5b9ef117b2c408a07b", "message": "Bugfix candidate.\nAdapter from SF patch 528038; fixes SF bug 527816.\n\nThe wrapper for __nonzero__ should be wrap_inquiry rather than\nwrap_unaryfunc, since the slot returns an int, not a PyObject *.\n", "proba": 1.2422648865140218e-07} {"commit": "d6685126d202a25844c2487233122c0ffa49b281", "message": "Use vectorization instead of loops\n", "proba": 6.465889441642503e-07} {"commit": "d8ff88a8ab68ec7e4e7fad31352c3555e0717c1f", "message": "Fixed wrong compiler issue.\n\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@708 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 2.6886764317168854e-05} {"commit": "2d9101e161163feab8ccbeb6ba44c5fa1f68608e", "message": "Update zone_helper.py\n", "proba": 3.2767402444733307e-06} {"commit": "5e402bbd035df6dfce3f408451744e4f6e446b66", "message": "Update building_properties.py\n", "proba": 1.258910856449802e-06} {"commit": "9e503d7068889e52e9144079de331ed51676e535", "message": "If mongodb_replica_set is empty do not pass it to client\n\nOtherwise a replicaSet parameter in a db connection URL will be\nclobbered by the empty configuration setting.\n\nNote that this is a direct patch to stable/liberty, not a backport from\nmaster because master has changed such that there is no longer a\nmongodb_replica_set configuration setting.\n\nChange-Id: Ic8de93f58ff1cf21888719597490f987d703cab6\nCloses-Bug: #1505669\nUpstream-Liberty: https://review.openstack.org/234254\n(cherry picked from commit d91e1916c6c34892dd1026954bc7327ee4c1898e)\n", "proba": 0.00021018068946432322} {"commit": "49b9e3d85cbff28e18fcd7839d062fa0a8277027", "message": "= mail only, if no one assigned\n", "proba": 1.8521997844800353e-05} {"commit": "fcd74790144be1f5897a753fe3f74e71ca5fa4a4", "message": "adding middleware for site redirect (incomplete)\n", "proba": 1.5011407583642722e-07} {"commit": "a4e8d32db623705b1f919963bb2bd21c3fb609e5", "message": "make answer model accept null object\n", "proba": 8.674024866195396e-05} {"commit": "fc6421f992210bc79f849f872dcdf450fdc1133c", "message": "Increase timeout for retrying operations. This seems to be necessary for\nreplica set elections on Windows.\n", "proba": 1.0773177905321063e-07} {"commit": "64b63e9d52924f60af2a938b769fb12631494d3f", "message": "Use update_one instead of deprecated update #1899\n", "proba": 3.022385897111235e-07} {"commit": "59bf4247810437e17c2497790ed7729e78eea12d", "message": "add: detect and clear template and rectangle\n", "proba": 2.0535993883186165e-07} {"commit": "1f145a35cb2ac6ace7bed88374cb10d318d41ae3", "message": "update common.middleware.auth tests for compat with webob 1.0", "proba": 1.3476930860178982e-07} {"commit": "636331a8a5024232d1ab38b36b11e7a54365680c", "message": "Introducing Contrail-Web-Storage Feature to fab install scripts\n\nChange-Id: Ica609a16e490e63a33183bda1d37c5ab1a731f6b\n", "proba": 1.963027926876748e-07} {"commit": "787612501e6e0a06ef5bdd0bf1a401a1b5c7dffa", "message": "Remove a debug printout\n(cherry picked from commit 3b6c9f09c345ffbc9659f3ee0505e3a46c456215)\n", "proba": 2.1434748020965344e-07} {"commit": "4f7a4dd4dfea224241cbf4d6475a9c759542c76e", "message": "bugfix\n", "proba": 8.478961035507382e-07} {"commit": "b65a91b6947edbf9a762aa490fad72517c15b909", "message": "Remove unused variable", "proba": 1.4636463674833067e-05} {"commit": "6669a709aa8d079379011d364708501d0ed00a2c", "message": "Backing out change to generated file\n", "proba": 3.412709475014708e-07} {"commit": "ed46812a2fd0d901e7314551b6603905573faa4d", "message": "fix browserlayer order precedence\n", "proba": 2.6857724151341245e-06} {"commit": "ea7bcf0fce447f79dd02d62df6c87f1e2baa9ff4", "message": "Remove LZ4FrameCompressor.finalize() method\n", "proba": 3.959547939302865e-06} {"commit": "d5d65488f04f7f4ba85e88f2015ff70bfafa59e2", "message": "fix: add support for partial 'min_duration'\n", "proba": 3.950371763039584e-07} {"commit": "908a6779d8e6a30cad1d2f4359b19f4568798105", "message": "bowtie2", "proba": 0.00031872736872173846} {"commit": "f76439eb643b11fd0c29e05a29a2034d0ffab088", "message": "Alternative approach to walking up the stack.\nInstead of attempting to derive a number of steps, we just keep walking until we reach the either the top of the stack, or one where the current instance is no longer defined.\nThis works because every frame between the actual context manager's scope, and the current one should have a reference to the current instance.\n", "proba": 1.8167544624247967e-07} {"commit": "f586af8f19aa8fd6898035c18f826f082d850e5f", "message": "moved ProgressBar to it's own file; pep8 spacing and double quotes for doc\nstrings\n", "proba": 1.2799250725947786e-07} {"commit": "450edc6a75ef9b0692c3ee5ecddc0885a7fc7929", "message": "Need a number to distinguish low from off for mks controller\n", "proba": 3.29834961121378e-07} {"commit": "b09809d85aa76663583fe8fc5292dbd06e9500f2", "message": "Added heuristic 'Same RVA and hash'\n\nHEUR: Added heuristic same RVA and (bytes) hash. It's very good to match symbols from the same version of a binary with and without symbols. Limited usability.\nHEUR: When generating bytes and function byte-level signatures ignore also displacements in instructions.\n", "proba": 1.1213941064625033e-07} {"commit": "778236fba7eb56ccc51af39da8cd5ac9c745c1cf", "message": "Fix error import\n", "proba": 1.3960543583380058e-06} {"commit": "ffe96432879dec1589c9d3f37beb90d1cd120053", "message": "xia2.overload: allow parallel processing with nproc=\n", "proba": 2.5756605737115024e-07} {"commit": "adae256db1b9d2d27ef2a50621a7bfc42b8bc0c5", "message": "renamed variable and improves __str__\n", "proba": 5.603746103588492e-06} {"commit": "04ea5855f6d136298979f6f450b32a5e49e2aa79", "message": "add score to total_score in scores assignation\n", "proba": 3.327731974422932e-05} {"commit": "ddd57d75404a331edf4d1586f8a7a716e073be3f", "message": "[Humble] Miscounting happens. If the difference is too big, warn the user that we may be wrong\n", "proba": 6.724050649609126e-07} {"commit": "5956a6cedd9d5f3784b3b491aa48a91c3478ed1f", "message": "Fix analysis for 3 level readout of qscale and Ramsey\n", "proba": 1.3570694079589884e-07} {"commit": "3154e5ad07f57a91f3c7199e649560681a875acd", "message": "[MOD] Git Commit Modifiers\n", "proba": 3.4476005339456606e-07} {"commit": "ac650c103484c5dc4187d7a4f87129c996cdf1c1", "message": "Update ColumnInfo tests\n", "proba": 3.25116104704648e-07} {"commit": "3bea43f7f2fdfa98d15154de3be8edaf1f57354b", "message": "Fixed typos from last push request.\n", "proba": 1.0945858264221897e-07} {"commit": "2d2f46fb1984d770067c59373535f73534da0f2c", "message": "Added File helper\n", "proba": 1.7598382839878468e-07} {"commit": "03fe9a3ca745bcd954f23fb50af0c648da710c21", "message": "timedomain_analysis.py: removes get_params_from_file from MultiQubit_TimeDomain_Analysis and replaces this method by extract_data in the children\n", "proba": 2.7558061788113264e-07} {"commit": "e89f75a6e98b54df1fabba38193141044542d63d", "message": "Added startup question on whether to use saved config.\n", "proba": 1.2624404632788355e-07} {"commit": "e6a5c2bc17efea29426b6e9391aa149d0c477ec5", "message": "bugfix", "proba": 8.478961035507382e-07} {"commit": "c04d12cb2d4c7be3435d0b1ffcff2008daf0d44f", "message": "fix: [feeder] bgp_monitor class\n", "proba": 1.6896540273592109e-06} {"commit": "24561ceeec2d68cd146c3a86771a4f195e350e58", "message": "Jormungandr: Use of a more suitable variable in v1/Uri\n", "proba": 8.929871455620741e-07} {"commit": "44dee64d2aa6c6e52677edae7350bd04e00b442c", "message": "remove the test for utf-16be and utf-16le\nchardet always fail to give the correct encoding\n", "proba": 8.370335308427457e-06} {"commit": "972bcdc286ca59e019b97bc11ac0f029c67f6508", "message": "Net method added to set the game.\n\nThis requires the API Key to be set, and have the right scopes.\n", "proba": 1.0409031858671369e-07} {"commit": "a5326ab78b70debfd5041cad25f5e45061004068", "message": "VDM-11 Modified code to call the global variable in HTTPListener.\n", "proba": 1.0384006543517899e-07} {"commit": "7a355587accab4f04d3b464801d516f96c5c82f0", "message": "remove sqlite specific syntax\n", "proba": 0.9994460940361023} {"commit": "d290c0584bc9b55140849f29d8801d4c002b1187", "message": "Disable warning 4267\n", "proba": 1.2520681593741756e-06} {"commit": "4d93a64cd8213d0e7706af4effcf34413ab9421e", "message": "BigForeignKey\u3092\u306a\u304f\u3057\u305f\u306e\u3067\u3001South\u306e\u30de\u30a4\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3\u30eb\u30fc\u30eb\u3092\u306a\u304f\u3059\n\n--HG--\nbranch : t137\n", "proba": 2.426969558655401e-07} {"commit": "d6a817949c51462af7d95d542ece667547b23cce", "message": "CBPS-186: Fix condition for FTS stats collection\n\nCurrently, stats collection for processes such as indexer and\ncbq-engine is disabled due to a wrong \"if\" statement.\n\nThe \"settings object\" always has \"fts_server\" attribute. We should\ncheck its boolean value instead.\n\nChange-Id: I017f4758f3603e674f094af27b6293716796418a\nReviewed-on: http://review.couchbase.org/67781\nTested-by: buildbot <80754af91bfb6d1073585b046fe0a474ce868509@couchbase.com>\nReviewed-by: Pavel Paulau \n", "proba": 3.536298436301877e-07} {"commit": "46892f1db404c5dfee4011bd2f964ec1c71c8772", "message": "not so imp change\n\n", "proba": 2.2180013274919474e-06} {"commit": "b5d0c92ac0caa148bd949175ab32094cf534c854", "message": "added scale network test", "proba": 1.566758953686076e-07} {"commit": "2cf5280af83cd078cb9cabed4b2aa05081e96a97", "message": "set template to top level instead of per scan\n", "proba": 1.7896120141358551e-07} {"commit": "01b5c68e466fd81821aa0871d9ecc032a58c6aaa", "message": "Fix bug when calling load_config.\n", "proba": 1.3175653634789342e-07} {"commit": "04e924807600cd0f2f53736bc35a880ddfa9652e", "message": "Don't convert raw_image to float\n\n", "proba": 0.998955249786377} {"commit": "3878cab8a87063d2862019472107118ba2edde5a", "message": "Don't generate redundant strings.\n", "proba": 0.0014167461777105927} {"commit": "0430b8297ca24f41022036e4bbf72a406b1d34ed", "message": "Removed dependency on astropy from Cannon wrapper\n", "proba": 2.849158988738054e-07} {"commit": "e3e19d436d611ef243aa92aed6944888ca536674", "message": "fixes #61: SaltLayer now handles edges belonging to a layer\n", "proba": 1.1970648472470202e-07} {"commit": "71e87b60df630e97fe1496582eeecc397a92bdb6", "message": "somehow had the table footer disabled, corrected now\n", "proba": 1.0955737650419906e-07} {"commit": "dece0513aa83703b64b6804ee274e45798cf6653", "message": "UNTESTED fix return of kernel module version extraction for 2.4 kernels\n", "proba": 2.3069164001299214e-07} {"commit": "bf97e73757c3f6a8fbee1d9616de2a07d270bbec", "message": "Minor clean up.\n", "proba": 1.327164795839053e-07} {"commit": "d72a40ded0ea6c1d713f664065e00e9645297580", "message": "Allow switching to newton-raphson after a certain number of iterations\n", "proba": 5.718717375202687e-07} {"commit": "5af83ee98d0e9c8452f7c9efa5461bde2786d365", "message": "Fix case where there was no reply\n", "proba": 0.0001495931501267478} {"commit": "3943dde809d51a9366d0f6281818fb07120dc5db", "message": "Added channels management and all the indirection to find a queue's owner\n", "proba": 2.854168315025163e-07} {"commit": "93cad3bba41c0a5075a70ba14db0e20636982206", "message": "BUG: tracks_per_event_sigma = 0 is now allowed\nENH: last missing feature implemented: shuffling of hit data; now the\nsimulator is feature complete", "proba": 1.3162579648451356e-07} {"commit": "79584c3167319a5a08d3a7e508ab5b5288cb0598", "message": "Fix startup\n", "proba": 3.9987316995393485e-06} {"commit": "3217f1b18028a37ed7e7fce90f7443791b198bfb", "message": "Fix WINDOWS_DRIVER_KIT property name\n", "proba": 1.0267742709402228e-06} {"commit": "2a1c23b47a31ef5153328f6c4db5f4caa9587b4c", "message": "Missing admin routes implementation\n\nThe missing routes implementation (for the moderation and\nthe geolocation) in the admin have been implemented.\nThe support is still very basic, and changes will be made\nto improve it in the near future.\n", "proba": 1.0832602725940887e-07} {"commit": "c0af2642df0566840cac3ce8b1892164997fbe79", "message": "TEST: updated test_sct_register_to_template\n\nFormer-commit-id: 0bd92b2794da75d3e8aa19faefc5f0cb488f14df\nFormer-commit-id: e923ebaca46aa2a32d5112eb255748e0ead60612", "proba": 2.194152102674707e-06} {"commit": "815887d4e4167102260f866cc4170abdfe31612b", "message": "Refactor ErrorHandler.__exit__\n\nalso call_signal -> call_signals\n", "proba": 7.199576430139132e-06} {"commit": "13ee7e9b9b80240043bfb24081eafaffd30cf56a", "message": "test times\n", "proba": 5.063434855401283e-06} {"commit": "4dd42c8f44860e5f06dae733342597fecfda50e9", "message": "removed extra \\n\n", "proba": 4.857070507569006e-06} {"commit": "0ad93d49252571207418bfb95f178e0c45237d76", "message": "Removing deprecated makefile value.\n", "proba": 1.403116272058469e-07} {"commit": "444b63cdf5e7497a945fb9f35eb6da01cdd27520", "message": "fix header for afos download\n", "proba": 1.605829851314411e-07} {"commit": "e446d79b636c883c0c2f67c942bae904fa607f49", "message": "Sort the true data set the same way as the calculated one\n", "proba": 0.008020737208425999} {"commit": "e756fdbf3ee5369557a9b9903e9da4af263db5e0", "message": "PresetsPlugValueWidget : Ensure current context is set when generating presets\n\nFixes: #3496\n\nFixes\n-----\n\n - PresetsPlugValueWidget : Fixed bug that meant no context variables\n were set when generating dynamic plug presets.\n", "proba": 1.1104687303031824e-07} {"commit": "d65ea55b5df7eb7be01c2a142191a94732e0d283", "message": "fixed PY-7252 EAP - PyCharm running py.test shows green success icons on left side of run dialog even when py.test reports an error.\n", "proba": 1.000784379812103e-07} {"commit": "d6bbcff441d8f7840d3d995ea2101ca43e057b11", "message": "Use AbnormalExitCodeWarning for nonzero exitcode\n", "proba": 9.203911872646131e-07} {"commit": "c315b2815a844f84a2594652a4f893647a114efe", "message": "Increase RabbitMQ connection timeout and connection attempts\n", "proba": 1.7976789479234867e-07} {"commit": "478fa05513fa6cc03b7b49e50f206c48dfff4ea4", "message": "catch yaml error for defn as well\n", "proba": 1.9747086810184555e-07} {"commit": "1fb4d90b710090f38ebcda82d6dae4559642737d", "message": "Add description to `nn.functional.celu` (#48074)\n\n", "proba": 3.59795626536652e-06} {"commit": "c2e185fb9b394fefde6e6778a7ca960b7ca53f2f", "message": "passed in vs at the initialization of the trace class\n", "proba": 2.7554855819289514e-07} {"commit": "e8128fd759176f51d255f370052e3a6b7f933e78", "message": "[bug] Fix warnings on external functions on windows (#4079)\n\n* [bug] Fix warnings on external functions on windows\r\n\r\n* fix pylint\r\n\r\n* fix", "proba": 2.0364156227969943e-07} {"commit": "4654543978dfc3e71a22b40724be031edc924c52", "message": "supporting circular reference.\n", "proba": 1.2036517205160635e-07} {"commit": "e3dabdfed8b1130687c8c64b2f3a02d5f6097bc4", "message": "Makes pep8 happy on sdl2 recipe (#2504)\n\n", "proba": 1.1847129144371138e-07} {"commit": "fd10d79b55d159d845a30adb238cd7019965aa23", "message": "update GPT2 docstring\n", "proba": 4.7476663667112007e-07} {"commit": "35cc8198b04e0d6b26d359c39eb4c6da974908fe", "message": "Fix symbolic mallocs\n", "proba": 0.9984059929847717} {"commit": "99e3b70c3b7031ce48b2d09567fc672d2a0789b5", "message": "version 1 of db model created, untested\n", "proba": 1.180238200504391e-07} {"commit": "bf41ad04ba03de6ca33b6de8a6f39b0dfb27fa87", "message": "skip: test_add_duplicate_domain patch\n\n- This bug has reappeared, this bug can only be closed out, if we have a\n fix that works on a cassandra cluster.\n- This test fails intermittently due to cassandra issues\n\nChange-Id: I00b132e6383dd35f77724a497af8a18791b6fa8b\nRelated-Bug: #1486103\n", "proba": 7.183426760093425e-07} {"commit": "b9c7c07ebe4967edd60d64dd65f2df6c1e8c7623", "message": "[dbclient] Add support for separating implied and actually set tags.\n", "proba": 9.907694220601115e-08} {"commit": "fe25394c4e7f00ee8b50ca217af41f145eb55eec", "message": "Add files via upload\n\n- Potential fix for letting it scan for new subjects in an existing conversion in Issue 9", "proba": 1.0803653083257814e-07} {"commit": "261ea3ebffb22014664b90f93a6b624a131f00fb", "message": "remove 4-d splines\n", "proba": 0.0002462997508700937} {"commit": "d5f83b47cc43a4fe872624a9a42a56f768786191", "message": "Pull query creation into distinct ajax sqla ajax loader method to facilitate subclass extension.\n", "proba": 1.0817901596738011e-07} {"commit": "e15406867d16ac1b7e9124d9cd6c9f41fc4d9c5f", "message": "Add conversion from flask-based URL types () to swagger type urls ({id})\n", "proba": 5.400946065492462e-06} {"commit": "a95119f76a118e39cde2fd89cc23b55191f35e43", "message": "Add `DeepZoomCollection::remove` and `DeepZoomImageDescriptor::remove` methods.\n", "proba": 1.1697498081275626e-07} {"commit": "e6ac1b57df7c556b4199ebcacb6b2b7e6db51be4", "message": "Refactored apply_driver_hacks\n", "proba": 3.368372745171655e-07} {"commit": "81caa0286a2f3d76d5be83721d9d902191a37508", "message": "removed paranoidi's workaround\n", "proba": 3.969942667936266e-07} {"commit": "70e0e0eb0244633a1a51e9d441e88215b7504c55", "message": "Fixes #1422.\n\ngit-svn-id: ad91b9aa7ba7638d69f912c9f5d012e3326e9f74@2640 3942dd89-8c5d-46d7-aeed-044bccf3e60c\n", "proba": 1.4536379239871167e-05} {"commit": "7a5fb18eae40851b8a426fa69b8972ffb7e39938", "message": "Use correct lookup type", "proba": 2.840286924765678e-06} {"commit": "8a0ef87c665287c92eb073bedf9b1bda416f54f0", "message": "Attempt again.\n", "proba": 4.4531347498377727e-07} {"commit": "ac8ad28b6f410efb7b40215d66c4656e48a4ed16", "message": "Update cli.py", "proba": 9.462626735512458e-07} {"commit": "87d1731edda0038587e24c5fdee7f9a7ce70aa9d", "message": "Do not symlink skullstripped file\n", "proba": 7.364992029579298e-07} {"commit": "3d2e8768b53f09016b6056f6d70be4330a243f09", "message": "Add i18n translation for admin.py\n", "proba": 1.6428076321517437e-07} {"commit": "1d2ad8d095734123e72da669a954df1c95017392", "message": "New version version = (1, 9, 2)\n", "proba": 0.005580893252044916} {"commit": "a014e897861bc1219e7284bfec4584e0a30af655", "message": "Made all arguments in Bundle constructor optional\n", "proba": 1.8216955766092724e-07} {"commit": "61408f3947fcc5075e732aec2e72f0dc8ed9dd02", "message": "Django Suit config\n", "proba": 9.47144712881709e-07} {"commit": "7b348e85bc14db467049cee6c8aef38da0d78a8d", "message": "fix tests\n", "proba": 1.2553598480735673e-06} {"commit": "a8082a7c2a1481939b2cb2f0cc1989d75d1a3aa4", "message": "Add notes for supporting functions\n", "proba": 1.5367085381967627e-07} {"commit": "9affd563031a66983b37649ff1e31bd773039020", "message": "docstring update\n", "proba": 8.258048751486058e-07} {"commit": "66522451edfeecdb339a76cea6001a7bf4f7a914", "message": "fixed __all__ which referred to GenericField which was renamed to RawField. thanks to Flavio Percoco Premoli for the patch\n", "proba": 1.378922718231479e-07} {"commit": "20d9388c974463fb78af7886349ff90cf0cd4bc0", "message": "consistent order of file paths\n", "proba": 9.464491995458957e-06} {"commit": "2494d2617ccf338e7671bef90c82638e462154ad", "message": "Update copyright year [ci skip]", "proba": 1.1985933667801874e-07} {"commit": "31ad5391b61f5a3389b587889c1c02ab9871bdc0", "message": "Removed unnecessary StripeModel.str_parts()\n", "proba": 2.9701078574362327e-07} {"commit": "d7b99fa935224f662da5f5140fffed093e76088f", "message": "added encode to Binding", "proba": 3.9885833302832907e-07} {"commit": "08041d7daada0862b3b8c0059f6b5b0c7cb76987", "message": "Refactoring\n", "proba": 6.64367371427943e-06} {"commit": "dc1293d5f13b5ca078addb5f2ef024261f829e44", "message": "Docs: do not yet convert images", "proba": 3.182659611411509e-06} {"commit": "0b0846e220c1680ff2990542b7d2d8d65e9dd777", "message": "Comments\n", "proba": 4.2012280232484045e-07} {"commit": "eeffc31f89620d0ca38fa12559fadc1900744756", "message": "moved file to djmapache\n", "proba": 5.372560281102778e-07} {"commit": "f003eb4c8977b6959af5b6d6d4eb9d99d1e3c18f", "message": "faster axis conversion\n", "proba": 4.255744272541051e-07} {"commit": "e83384955766ec8668e53f96a167e224c8bbce87", "message": "Update the py3query plugin th handle pkgs that require Python 3.4\n", "proba": 3.7834016097804124e-07} {"commit": "596c979012f6f2c9b4db9618f9b61625cf36f75c", "message": "Fix markdown integration for sphinx docu.\n", "proba": 1.6178240969111357e-07} {"commit": "c6c9fd2bac95aaff56874cc486612b1b1b3455d9", "message": "colored output, compatibility with py2.6\n", "proba": 2.6927924068331777e-07} {"commit": "a2458dd68fac5c1526a3fa8081ef6f99dd728106", "message": "Added basic auto-updating functionality\n", "proba": 1.8453253858297103e-07} {"commit": "83dafebea40c0ff6baae681fb5025295a2e8af10", "message": "py3query: Simplify logic around old_misnamed\n", "proba": 0.00011986801837338135} {"commit": "73664aa603802a4549d857beec0a73ad770e858b", "message": "I hope you got hit by the boogie\n", "proba": 5.822317348247452e-07} {"commit": "01684c782fcbd41740c187a19d85288072c427a9", "message": "Update documentation\n", "proba": 4.362008496627823e-07} {"commit": "4601e6bfdda0e4192e598e0166507906e44ff2d0", "message": "Added the FTOOLS setup\n", "proba": 1.2542500371637288e-07} {"commit": "d1469208d715604d8ad9c52ba219d27d126dc77b", "message": "Set release version 0.0.2\n", "proba": 2.3173890895122895e-06} {"commit": "8f92a3f039609daab29bae38718ef264d591a800", "message": "debugging\n", "proba": 2.4004323222470703e-06} {"commit": "9d4f9b00cb6eb2e39524e349100823ede64b2311", "message": " - updated python test script : fixed unicode error\n\ngit-svn-id: 41bd7e47c31e4d43f97241d7529f6785d233c6d8@8736 23f926e6-80f1-49ca-85a0-60d4a27bb3ac\n", "proba": 4.3447292341625143e-07} {"commit": "9fd891589e5871750f687b87306f092a9d61adbe", "message": "Small bugfix in sql support\n", "proba": 1.8305006221908116e-07} {"commit": "c166f934422aeb838faab1c4a7c108029088b9c7", "message": "doc: remove settings for unused builders\n\nmanpage, texinfo and htmlhelp builders are not used, so remove their\nsettings as they are redundant.\n\nSigned-off-by: Gerard Marull-Paretas \n", "proba": 1.193374004060388e-07} {"commit": "a11f1a8172e91e949217fa205ed2a8ed53f3419a", "message": "Add srcfile(), a function to sanitize eg __file__.\n\nTake mostly from stdlib logging.\n", "proba": 6.952661806280958e-07} {"commit": "ed572d91d843c5d24220063bece8ea7f1ac4146f", "message": "rewrite Test case\n", "proba": 0.0006952662370167673} {"commit": "503ab89b8b53bc000d636614b611efcf3d886cb7", "message": "lint, docstrings\n", "proba": 3.058507672903943e-06} {"commit": "90ee0ed3105af0f768310fa3bea988644b84d509", "message": "Remove reST source links from HTML documentation\n", "proba": 1.5929487062749104e-07} {"commit": "84cab91e7ac78d9db96067ea329ba489068324bf", "message": "fix\n\ngit-svn-id: 07d9bdd74fffd5eda37c6e62ee9baf080eccfd5a@16493 12f355fe-0486-481a-ad91-c297ab22b4e3\n", "proba": 0.9999710321426392} {"commit": "d33f7b757f8f70f9178fc33db3732871865976a3", "message": "Add followup template to sprint doc\n", "proba": 1.6702001914836728e-07} {"commit": "63e94e7411d73b1e90775ff20eda05573a2a28ba", "message": "doc: conf.py: Use new numpy intersphinx index\n", "proba": 6.939889658497123e-07} {"commit": "8bcdc8063ce5757d08a41ae851aee796004b5c11", "message": ":bug: :green_heart: Disable confirmation e-mails for None\n", "proba": 8.522678399458528e-05} {"commit": "e09d65bd3a2745b88f5162a79d08a13341dec270", "message": "Display thread name\n", "proba": 5.95432766203885e-07} {"commit": "290c022193e67ca646ed980e6406d182cb961cd1", "message": "tweaks to make rtfd.org work\n", "proba": 1.2837733720516553e-07} {"commit": "ebd9296bc7a8dbc67e267d3f9f49e4f24bfe9842", "message": "Fixed #154\n", "proba": 2.107413621388332e-07} {"commit": "02aa141528b4bf6c54ed0339c2d4de9aa4d97e33", "message": "Small changes, still trying to figure out things\n", "proba": 1.7053392298294057e-07} {"commit": "b9912019c8881eb94952f67ec2af00153d897371", "message": "Change the theme used for the documentation.\n", "proba": 1.048971043360325e-07} {"commit": "bb601afc6047ae286718d1dfe97de005e7cef153", "message": "added method to replace non numeric age with numeric ones\n", "proba": 4.339509359851945e-06} {"commit": "e5c4269422fba56e314973c3390c029b19b69559", "message": "doc: conf use mycpp\n\nChange-Id: I56772dd2eccb3798f39522f0b1fd57d55f453bfe\n", "proba": 2.5188958261423977e-06} {"commit": "89cbee619be041f76ccd0fd28d7ba88e08b2a88c", "message": "Updated documentation\n", "proba": 3.951920461986447e-07} {"commit": "0e503418ad6d74cc34074cf370dcced95d80819f", "message": "doc: enable members option by default when using breathe\n\nEnable the :members: option by default when using breathe directives.\nThis exposes automatically stuff like structure fields.\n\nSigned-off-by: Gerard Marull-Paretas \n", "proba": 1.31047755758118e-07} {"commit": "edd28841ce6b1e1b5dd11245dab53aab2b1909a6", "message": "fix tests\n", "proba": 1.2553598480735673e-06} {"commit": "16f3766aa6a3f0281a4b8117c9c052e1e674c88d", "message": "update release number\n\nsvn path=/trunk/toolkits/basemap/; revision=6742\n", "proba": 1.2260044968570583e-05} {"commit": "a7101b42e1a2dcc8d9a74fdcf4e73a8685c5223e", "message": "Set pdf size to be A4\n", "proba": 7.945525430841371e-05} {"commit": "aa5179026a977041ee09f13a5759701a46586cd7", "message": "Update copyright.\n", "proba": 1.2861458742463583e-07} {"commit": "d549876b36af6356e05378f887585255ccf167ed", "message": "Fixed GAMESS parser so that it does not break when not all MO vectors are printed. This is checked by regression test 2CO.ccsd.aug-cc-pVDZ.out. Still, the outcome is not understandable.\n\ngit-svn-id: d468cea6ffe92bc1eb1f3bde47ad7e70b065426a@834 5acbf244-8a03-4a8b-a19b-0d601add4d27\n", "proba": 8.167280611814931e-06} {"commit": "0f177a82028da4de87f7c5def1d8aaaac5424280", "message": "Removed ghpages stuff from conf.py\n", "proba": 1.975384975594352e-07} {"commit": "2615b5965293e4b3acffbd3b5bfee51beb091724", "message": "actual fix for cny-3515 (--no-restart handling), including keepign updateall\nconsistent with update and erase\n", "proba": 1.2178318797850807e-07} {"commit": "c3c329ce288954024cce4d2b3514d8625e816f0c", "message": "Fixed RequestSite import issue\n", "proba": 1.6057011009706912e-07} {"commit": "fbf3e7c5a01d3149df041552f1b0ea7187b2211c", "message": "sysmodel: do not install local redirect of group changesets\n", "proba": 2.9568306558758195e-07} {"commit": "3f8dda04c9cc7aee5be8ab5054867f630a13b5b6", "message": "managing with_lnglat in _process_columns\n", "proba": 7.737444889244216e-07} {"commit": "14783a1ba19ed381c132c0cd9c13cce1cb4b5174", "message": "fix: Remove unnecessary raise after throw\n", "proba": 2.552898422436556e-06} {"commit": "72f8935a6c961823ec15b001b7d32e36792b43b1", "message": "added ability to remove old rollbacks (CNY-2061)\n", "proba": 1.2001397919902956e-07} {"commit": "4fe88bdd110bdd0084012ca31a77b7b2845847ba", "message": "+ path to libs\n", "proba": 1.6701299898613797e-07} {"commit": "e21029d5feebd344476228c0194e3aa8b878cfa9", "message": "more flexibility for the django template tag \"settings\"\n", "proba": 1.1161235136114556e-07} {"commit": "8b251f8726ca5c8ea5a9ac033a4d0493b3f4249a", "message": "Bug fixing in NeXus writing\n", "proba": 1.3566955203714315e-07} {"commit": "5c7df80297268b3105e063e67258f0e2649754a2", "message": "add new remove flags for sdss\n", "proba": 2.3755447386974993e-07} {"commit": "4f1d693e76212a7e8bfccffe0350750a27665df5", "message": "Ausversehen falsche Datei eingecheckt...", "proba": 1.1466654115110941e-07} {"commit": "8b1b737c9148d71766bb2d4496a1a8059e510848", "message": "ex1 experiment now accepts problem label as an input\n", "proba": 9.032910384121351e-07} {"commit": "0fbfff9c291cd13aba31e0e5e6d47f2bab970e7f", "message": "fix pagine in navigazione\n\nun altro bug dovuto al cambio dei codici di lingua\n", "proba": 2.492837722911645e-07} {"commit": "334c14bd4edfc880615bcd84442ac20e2b8498a0", "message": "added predicate to ctx.getChildren\n", "proba": 8.804358003544621e-06} {"commit": "16a369b03d7d501dc190b87565203c433658212b", "message": "Delete Pie.py", "proba": 0.00017405291146133095} {"commit": "4fad2d8887876495680fe0ba584750324c6031e1", "message": "added option to save only final mse\n", "proba": 2.185738594562281e-07} {"commit": "cb319dd7aee0691df4597c4fde6e4cd727f4e847", "message": "postpone only with days specified, fixes #113\n", "proba": 1.204081172545557e-07} {"commit": "bdc113cf62548d854b126e7372dae011aa746a33", "message": "modify _create_desired_capabilities to allow multiple ':' in the cap string\n\nfor example, httpProxy:127.0.0.1:8580", "proba": 1.1739753063011449e-05} {"commit": "32049348ff49f23db6d0a67e8dc052df76c02e1d", "message": "Fix instant pyauto test\n\nBe lenient in checking. Don't do an exact match with URLs.\n\nReview URL: http://codereview.chromium.org/6002008\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@70126 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 7.012756395852193e-05} {"commit": "3046fd76a07c4aa8452916f5f760199420d38cf5", "message": "Adding tests for bookmark search in omnibox\n\nReview URL: http://codereview.chromium.org/5666001\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@68813 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 4.959603643328592e-07} {"commit": "d75cc51d94e639cc78095f6f82aa121e2d0840a1", "message": "adds method to common to allow for determining valid host names\n", "proba": 2.14577781321168e-07} {"commit": "bd4a7cfd367a5d93b26bb96a04c917980da30bb4", "message": "remove unneeded ButtonPyJS.py\n\ngit-svn-id: 6db40d0534cac73ba019dccfebee869402ecad0c@724 7a2bd370-bda8-463c-979e-2900ccfb811e\n", "proba": 0.00010236913658445701} {"commit": "87d1dcd99a930fabf0c6e7c88985f81dc0cff9e2", "message": "Fix only call scan_flush once\n", "proba": 2.1478948042386037e-07} {"commit": "38eba814f85a97577dfb4547d8ef81e5bd636a54", "message": "demo file for dos\n", "proba": 2.951140061213664e-07} {"commit": "565807ef61743ba80509b9be23dd00b98b62e9e6", "message": "FIX: basic query\n", "proba": 0.9984360337257385} {"commit": "6456bb8b611804b6c1f2afaad4c429bf67061ac6", "message": "[fix] network check\n", "proba": 3.430738786391885e-07} {"commit": "b3c0ae78a9598d0f02babb90457b58bc358b2f44", "message": "cast to int to kill problem with opencv2.1 bkcompat\n", "proba": 1.7290091136601404e-07} {"commit": "be5d141607ffee8b33ae5d307b5ad606314429fe", "message": "Include LET-3D-APL to the WOD detection metrics ops.\n\nPiperOrigin-RevId: 447871071\n", "proba": 2.577341149390122e-07} {"commit": "6c77e0993b8d734ada946379333dbf1e34578876", "message": "docs added\n", "proba": 1.5535169950453565e-07} {"commit": "3b3a2206379569faf3b81467d43c2cefaf60e066", "message": "Cleaned up and restructured a bit\n", "proba": 1.3502699403034057e-07} {"commit": "de16976d4932b3c8cc9d550942507a0916e3b200", "message": "Update test_osx-gui_wallet.py\n", "proba": 1.9241174413764384e-06} {"commit": "cf951ffe3238977fbb25610902493253a3133e96", "message": "Modify Connection.request to create a shallow copy of \"params\" and \"headers\" argument before mutating it.\n", "proba": 1.0815033846256483e-07} {"commit": "15e9f14582a2a53ec559958d45009d9d4ba4e066", "message": "fix config for new dns in dev env\n", "proba": 3.758357820515812e-07} {"commit": "fca1f6634e257843a3339982fe9f80264033007c", "message": "fixed some stuff, removed ;\n", "proba": 1.075273132755683e-07} {"commit": "dc89ee77d3e62ea51d3c6158f7dc74dd1fa989ab", "message": "delete useless delay\n", "proba": 7.807848874108458e-07} {"commit": "f98677dae91ae47d57063901bbfd72a8106af14a", "message": "Make GPFS driver compliant with logging standards\n\nThis patch adds the log level markers (_LI, _LE or _LW) where they\nwere missing. It also changes the use of '%' to ',' for inserting\nvariables into log messages. These changes are made based on the\nguidelines in:\nhttp://docs.openstack.org/developer/oslo.i18n/guidelines.html\n\nChange-Id: I46dc4855776638a133a65451c7e32269dd09b8d1\nPartial-Bug: 1384312\n", "proba": 0.00015309367154259235} {"commit": "9506d2cece71a37a10375602e9db1b7ddd8dc697", "message": "Kill unused types import.\n", "proba": 1.2243147295976087e-07} {"commit": "d06cc35e617ad63aa8632ba79696b882e66355e9", "message": "Only try a workaround if key file exists on disk.\n", "proba": 1.1485566631108668e-07} {"commit": "b35241692e520e0ee173e5f8b4a747cd1ce3adc7", "message": "Insert the Assoc. Act relationship in pairs (a, b) where a < b, and use\nMySQL's REPLACE statement to work around key collisions", "proba": 5.332124715096143e-07} {"commit": "3e793b5309e88bdecb133d9f6d97d8d418fc4d65", "message": "Added parameter to set db version\n", "proba": 2.3352295386303012e-07} {"commit": "45cccf3845f9aae5d7f6496b8b815e6b558dde91", "message": "Fix to send gym name with raid webhook\n", "proba": 1.528076012391466e-07} {"commit": "d3bc62b45d924bfd8e8265f426b328d14affcc0c", "message": "removed duplicated code in biosample audit\n", "proba": 3.9835578036218067e-07} {"commit": "4a5da930e8baf1b370a6aab32fedb7f7bfb40930", "message": "Reorg table ml2_port_bindings when db migration\n\nFor DB2, there are restrictions on table access\nafter ALTER TABLE statements containing\nREORG-recommended operations.\nTable will be placed in \"reorg pending\" state\nafter some continuous alter table operations.\nNeed run reorg table to make the table available.\nMore info refer to:\nhttp://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp\n?topic=%2Fcom.ibm.db2.udb.admin.doc%2Fdoc%2Fc0023297.htm\n\nChange-Id: I7fdd61bb4d636d7a3260c0b23152f1f3083cdcfd\nFixes: bug #1318498\n", "proba": 3.507456131046638e-05} {"commit": "a7a6927eedd6ee2de85186f421562d704dab2177", "message": "fix getSelectedTool in initial_state\n", "proba": 4.0909262111199496e-07} {"commit": "78c557c3493bc4e888ef71b6f85788672c37c785", "message": "Fix automatic UTF-8 encoding\n\n", "proba": 0.9999771118164062} {"commit": "9accc6fbf4dfc87e54ae4e79db06b8bf52711f9a", "message": "Fix typo in FLAG name when used.\n\nPiperOrigin-RevId: 417700260\nChange-Id: I40bdcc222d738f128fe995c2a91f953a9f332e59\n", "proba": 0.9999967813491821} {"commit": "bdc507c93397dfb45618391af4f8ad06736bfaf9", "message": "Fixed some missing tokenizer arguments at SyntaxError.\n", "proba": 1.2051529552081774e-07} {"commit": "dea5244fbb95c14089bd7bf9650081d012082eea", "message": "sigma 5", "proba": 0.0011166060576215386} {"commit": "e5ead2e7417c28933111e3b8d7d4b64d5e5e6a53", "message": "ENCD-5154-print-base-branch-deploy (#3832)\n\n", "proba": 1.177003312591296e-07} {"commit": "0cfe8b0e212426b954855a7c9097470ab2883095", "message": "add missing arg\n", "proba": 0.999516487121582} {"commit": "3544be48cb12187924ddcbc635628c8ac3955a60", "message": "Use dhcp instead of assigned", "proba": 1.1815349125754437e-06} {"commit": "984dafc8253e836ed0de32961cdddd434ab57369", "message": "fix states\n", "proba": 0.9980344176292419} {"commit": "b5427743ce9987de45c7e4ceb6da432e2aec8179", "message": "Remove this fields, isn't used in queries or similar\n", "proba": 1.4522343860789988e-07} {"commit": "d62ac4cd09a6684d32116a9a7fe7b059f1fcc95b", "message": ":wrench: Adjust UnprintablePlugin to ignore \"unprintable\" spaces like IdeographicSpace (#96)\n\n", "proba": 1.2440077057362942e-07} {"commit": "14816dfe73a6f3ec5afbfedd52eab2374f7a1e4f", "message": "updated example\n", "proba": 3.0529076866514515e-07} {"commit": "e7a29d6ecc84f3565ff27bdc52483d42de63e097", "message": "Make Exception Message Extraction Compatible With python 3\n", "proba": 1.7094457405164576e-07} {"commit": "4e897b61f24893d17d5f3f654b2132d098226264", "message": "Add BF lvl99 half price benefit\n\nVery sloppy temporary solution.\n", "proba": 1.0016914586685743e-07} {"commit": "d77cbfa330862925f0d7af9c72fe6fa60270e169", "message": "Allow s3 configuration to be False, to turn it off\n", "proba": 1.437914397683926e-05} {"commit": "fcf484602f9d64ad4b7cc1ab51f4c658920030a6", "message": "add proper error messages\n", "proba": 3.3171043014590396e-06} {"commit": "74712c84629284198cc32a7fff018b4cf20506fc", "message": "Add more args to deploy script; update default ami.\n", "proba": 1.0674875028371389e-07} {"commit": "ac7fefd3a2058e2e9773d7e458f8fad6112fc33c", "message": "Fix support for flake8 v2\n", "proba": 3.3351869888065266e-07} {"commit": "56b023dc42634245b231127a5cc610586e2a41f5", "message": "Fix transcript view\n", "proba": 5.347199476091191e-06} {"commit": "18e247c7fcf06ef0b4849b13825dd0b9bf7892df", "message": "Remove archive_hash directory on test teardown\n", "proba": 3.161087249736738e-07} {"commit": "bcc9647b1d9eb742f3f79b6b80c0a50162729054", "message": "Fix typo", "proba": 0.9999992847442627} {"commit": "0ef02dcb4af1244c09069dbb87a79156de3e3d29", "message": "Added missing docs\n", "proba": 1.835703216102047e-07} {"commit": "326aece3c808d1f4a0cec3f37fcca0d5ce4f1223", "message": "Whitespace normalization (via reindent.py).\n", "proba": 1.1333117555523131e-07} {"commit": "47ca19601be75244f52568ee991bcb4128407f42", "message": "use shock client\n", "proba": 3.4156789752159966e-07} {"commit": "4f411a48d6bd8875009359cff8350461814fb67f", "message": "Update docstring references\n", "proba": 2.8688799602605286e-07} {"commit": "5ecb91b2c2bc000450c2e230ba1f8c7e5471e016", "message": "Fixed #6365 -- Added `blank=True` to parent attribute of `m2o_recursive` model example, thanks dgrant.\n\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@7015 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 9.280159929403453e-07} {"commit": "ea394b014ad3c8f18e8fafbcff59a05c7b15f9c7", "message": "fixed bug\n", "proba": 6.589494319086953e-07} {"commit": "5c05ca2f7fd6bf63a5b161f79ada230001a5a1dd", "message": "deprecate shard_size (unused) from ShardManager\n", "proba": 1.1097124570369488e-06} {"commit": "2b8508d3c7bb2a907e1c3bc221edd125c418b433", "message": "m3u: Implement write-replace context manager.\n", "proba": 3.5700958278539474e-07} {"commit": "aac190f266a92975d45089eddc399419d6494c73", "message": "_ClientList: add a __setitem__\n\nAlso from pytype:\n\nFile \"/home/tycho/packages/qtile/libqtile/layout/tile.py\", line 95, in shift: unsupported operand type(s) for item assignment: 'libqtile.layout.base._ClientList' [unsupported-operands]\n No attribute '__setitem__' on libqtile.layout.base._ClientList\n\nIt seems reasonable to have this since it's a thin wrapper around a list,\nso let's add it.\n\nSigned-off-by: Tycho Andersen <6b523322678240882acbb4da5312a12d8cd0082d@tycho.ws>\n", "proba": 0.00013992449385114014} {"commit": "b65734f29906024f31e0be9b06c4fd30949a0604", "message": "Some fixes\n", "proba": 3.0638540238214773e-07} {"commit": "c4cd2adae8df60d1992f5d4c9397af5ff35e0914", "message": "test_psa_constant_names: fix uses of C integer types\n\nSome of the types may in principle be wider than `unsigned`, so use\n`unsigned long` in printf.\n\nAdd support for signed types: a status is a signed value, and\npreferentially printed in decimal.\n", "proba": 3.4789573533089424e-07} {"commit": "8a14403317065382af37b1404efe822b54936d08", "message": "fix file separator\n", "proba": 1.0878626426347182e-06} {"commit": "39c1ff1685ac9558274a1b68978a9eb7a98c3900", "message": "Fixed logging error when no first line can be read", "proba": 3.206090468665934e-07} {"commit": "769347184956824ccf8c662463e00e003f9da8d6", "message": "removing commented out sections\n", "proba": 1.793671771110894e-07} {"commit": "bf9433928422a59c45b91cd6b593038f6add1dab", "message": "more informative output and sort\n", "proba": 4.048235098252917e-07} {"commit": "cef53b9e7d55b971fdf77d6ea1f2077160c1a675", "message": "Cleanup of connection class\n", "proba": 2.2543171951383556e-07} {"commit": "1c43eef57d43caf0e76f40dfe4cec2b556590c8a", "message": "Changed behaviour when Endpoint is ready\n", "proba": 2.790807513974869e-07} {"commit": "e1367e2e72a71f779dded39c5b1e60a32c49965f", "message": "fix(mute): send notification after setrole\n\nCommands without any visible feedback to the user are always bad.\n", "proba": 1.0507211811727757e-07} {"commit": "7da94a923324eeb6f4119756222ad0039eefe72c", "message": "add CookieConfig dataclass\n", "proba": 4.153558279540448e-07} {"commit": "69a01c147df82b88ae3b39c3df26151db9107ff8", "message": "Add more test cases\n", "proba": 6.795062859055179e-07} {"commit": "3dc3ad49e040f84f4b491f5c8864f70997e1d9bd", "message": "make admin wider\n", "proba": 2.1037409680957353e-07} {"commit": "eda07b8dc6c8b7afb46313289baf305306a33f21", "message": "Broken HistoryField, writes but won't read to db\n", "proba": 1.2604061794263544e-07} {"commit": "41331b75cf94964565cdf1b08f627af80ded8c2e", "message": "Make regex matches case insensitive\n", "proba": 0.9999101161956787} {"commit": "a03db886e89357327414b221ca9deccdc1118d5d", "message": "Passing UpdateGroup instead of group_name\n", "proba": 3.9593444967067626e-07} {"commit": "67b3cd717caabf97adfb36a5a0416c5396f20d19", "message": "[main] Comply with setup.py entry_points idiom\n\nSigned-off-by: Earl Chew <408aef5abfefb2ec478aaf6aa6535a7cc1b91eef@yahoo.com>\n", "proba": 1.4332853481846541e-07} {"commit": "6049a4ff3c5224bedd24cdb29a23a5f1a9c2bf43", "message": "fix Headers.to_list and Headers.to_wsgi_list\n", "proba": 1.6278527255053632e-06} {"commit": "b0cddccf74987575182e85e7d04952f1f1909bc7", "message": "Decrease info logging\n", "proba": 3.860407389311149e-07} {"commit": "6b54291963556ea96a7ffe1fc6954dd58a5d9957", "message": "Add https->http conn test\n", "proba": 9.532792319077998e-06} {"commit": "71d2e1d7de172aaeb45e6990e0cc110b11fc2a6d", "message": "Python3 fixes for cloudformation server.\n", "proba": 1.1019867685035933e-07} {"commit": "edc2e70fcf8a6840e12b0f83087b1a5943c67f11", "message": "make b64encode work both on python2 and python3\n", "proba": 0.0033669292461127043} {"commit": "f085b35a1b89008aa3e7b68205f2689e3ab49ce1", "message": "Even more unrepr goodness.\n\n--HG--\nextra : convert_revision : svn%3Ae1d34091-3ce9-0310-8e96-997e60db3bd5/trunk%401725\n", "proba": 6.53001450245938e-07} {"commit": "50566e53ef8f8d945e2340690b3dda0b48b98501", "message": "Base API Design for PrpCrypto\n", "proba": 1.7167289456665458e-07} {"commit": "9badfdd8959423c31a7b7f9c2d3dd6a4c5d9745c", "message": "import nbytes in tests\n", "proba": 2.131403391558706e-07} {"commit": "3fc759ad85ad8260baa8ec928ebcb7e253f9ecfb", "message": "header regex\n", "proba": 3.4046158816636307e-06} {"commit": "4d547100682b547a92b4e386867a0ab185cfa7ec", "message": "add reload movies method\n", "proba": 1.0026632253357093e-06} {"commit": "452a8d84561fa4b77f2c22e029663a7791262111", "message": "adding set_geom/phase tests for generic physics\n\n", "proba": 2.526030584704131e-07} {"commit": "cebbcab484a46fb0abb812f16d6c42bc35caea6c", "message": "implement the pipe function\n", "proba": 0.018316373229026794} {"commit": "2a8af631fa06c8a834e554b672ef1d3bc36bc599", "message": "TeacherParser class improved\n", "proba": 2.2086874196247663e-07} {"commit": "cfa2f0cdd48d298c24b2444f241578ac34beda79", "message": "Bug fix: diverter collection name was wrong\n", "proba": 2.0680303350673057e-05} {"commit": "29eedfbc3e4630e51d1edbae7f5b5855738f6fbc", "message": "make sure cplot function args are mpc\n", "proba": 0.0008064592839218676} {"commit": "ff46e03be940711d18e2b1d4517a797a8b5ad093", "message": "More fixes for Safari on windows.\n\ngit-svn-id: 87d19257dd11500985d055ec4730e446075a5f07@931 78c7df6f-8922-0410-bcd3-9426b1ad491b\n", "proba": 2.681606190435559e-07} {"commit": "1c0ef6cfab103868c8eb8994dd98e1b6bfe5c1b7", "message": "fix truncate\n", "proba": 0.0007293270318768919} {"commit": "e4eeebec1b9b657be0b412860d59efba73e1d23b", "message": "Small edit to biosample.treatments_summary (joins multiple items with 'and')\n", "proba": 1.2190392340016842e-07} {"commit": "faef5642a8008e4febd72b500c7f09c47afeaa17", "message": "Remove inexplicable cross-version metaclass usage.\n", "proba": 4.917048386232636e-07} {"commit": "e864c69960d2add86a7f17f0e91089721ee71559", "message": "add missing bracket\n", "proba": 1.1685890967783052e-05} {"commit": "e6036a46168299e1621b9aac001d6f639577880b", "message": "properly parametrize tests\n", "proba": 1.777848410711158e-05} {"commit": "f82f7e5560d806b5bc968585b06530e147167917", "message": "rewriting the function of generating biosample dictionary for the summary string\n", "proba": 0.000348808360286057} {"commit": "24682fda54ffa5b9ad91f13cc6d2476b775749e4", "message": "Missing asterisk.\n", "proba": 3.310900865471922e-05} {"commit": "3793b0ae794915aa2d67794ee6e8d8c3d0ac2a0d", "message": "fix potential plotting when unitful output is on\n", "proba": 7.133835424610879e-07} {"commit": "80488657724660fdbb19ba2772257ffb25ca3ad9", "message": "Remove some commented out cruft from SCons.Tool.javac.pathopt.\n", "proba": 1.0265731020808744e-07} {"commit": "cded239b89f7a4c49453b3120c407d70220f62bb", "message": "Error messages in mqtt\n", "proba": 3.886738966230041e-07} {"commit": "b3a3ce4a2aa9404c52b1bae1a511c3616ab240a2", "message": "MAINT: matrix.approximate: default dtype of L is change to at least 64 bit float\n", "proba": 2.0752211639774032e-05} {"commit": "3c9911798f53b0f2b3e2d766337856191d5cf9c9", "message": "Error messages in mqtt\n", "proba": 3.886738966230041e-07} {"commit": "61add03048591dc34397c5c3023e5e398c841b8c", "message": "Minor fix\n", "proba": 4.2334357885920326e-07} {"commit": "b7aa589eaa69eff7527e0b3c4a41f68785414582", "message": "BUG: matrix.approximate: float dtype is used in devision even if passed matrix has int dtype\n", "proba": 1.6172331243069493e-06} {"commit": "4016aa7291f5c8b0a7fc1e9d122cdbc1a6ad7aba", "message": "Adding a location_client to Ambulance.\n", "proba": 1.2211708622089645e-07} {"commit": "5abc9c56559bf231a67b121c8c8289db6ab7d157", "message": "BUG: matrix.sparse.util.solve_triangular: input b is now correctly checked for finite\n", "proba": 1.0680450941435993e-06} {"commit": "1acdee5970ebec8033d1d31f6bb965ab4f8b0221", "message": "Bumping version\n", "proba": 2.7853673145727953e-07} {"commit": "ecb43d34a22789c393cbb6e59d20e204c6d81115", "message": "Fixed pep8 styling on indent.\n", "proba": 1.0667343985915068e-07} {"commit": "7d0481ce7a953f6354501f4f78cfe23c549ad837", "message": "add releaselevel to version_info\n", "proba": 2.3306819230128895e-07} {"commit": "c31141de26bc5ffb1249ca749c7d007e6b4d9586", "message": "Expose __all__ to avoid type checking errors\n\nMypy reports attr-defined errors (via no_implicit_reexport) because the\n\u2018maxminddb\u2019 module uses implicit re-exports. Adding __all__ makes the\nexported API surface explicit, which avoids the type checking errors.\n", "proba": 1.1241266406614159e-07} {"commit": "19c23db3e0fc64be15b648304c3ef4e41a9596b2", "message": "11111\n", "proba": 2.1725807528127916e-05} {"commit": "c74d8c257e1f409e750acce655687928d4348bb5", "message": "changed pickle to cPickle for load time improvements\n\ngit-svn-id: ebd26f0b4afd3fb7c0e0d88f39b62381954d19ac@945 64d93f2f-123f-0410-81d3-998474c5a783\n", "proba": 6.073648819437949e-07} {"commit": "9587e93dfc56eed9618791323aaf36dd8efa9cee", "message": "Modify the CR pulse primitives to use the EdgeFactory.\n", "proba": 1.0420036744562822e-07} {"commit": "94d16e9072638cbc4d214f0fadb0aed137fc39b0", "message": "optimize review agency tasks\n", "proba": 0.0009289723820984364} {"commit": "8968b68bb8941623d91bc0cc113b21ab4dd31336", "message": "fixes task fetching on request pages\n", "proba": 3.6820776472268335e-07} {"commit": "c5b8c7567982d8498bdf0b69f390887b1342f918", "message": "BandParse now just removes unit suffixes for comparison\n\n", "proba": 1.186346665349447e-07} {"commit": "3b704bb143348c7e0ac96d8214525c2f3cb2e47c", "message": "fix indentation and removed star import\n", "proba": 3.2657945325809123e-07} {"commit": "79090e366dc8fbc823b5e53c74fafbc49bba4e25", "message": "new graph parser thingy for ari\n", "proba": 1.3706079471376142e-07} {"commit": "a0183f42a2a5d43e6d5aeb986aaac732841d2c9b", "message": "Added proper description to StdOutRedirect\n\n", "proba": 1.5996607771739946e-07} {"commit": "3362deef8e26d5202fa42436b36d07d5410fa477", "message": "Refs #91. start working on redutils.reduce\n", "proba": 7.476302243958344e-07} {"commit": "f55093eb97943edb1bbbed7e6962deb23dcda2b7", "message": "Fixed test data directory variables to support python -m unittest discover calls.\n", "proba": 1.0648641790567126e-07} {"commit": "7d5604f6163f5362cf27d87d1f927eef879fdf66", "message": "Updated from Brython Server: 9/21/2015 2:45:52 PM", "proba": 1.0942768824406812e-07} {"commit": "c3ba6a17021418d45d3696a058ab8f05156af508", "message": "Added a symmetric Pearson VII distribution\n", "proba": 3.0698060982103925e-07} {"commit": "edcbbfe57cb8491596fee02c5049c3017af34a02", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "39f07bccd2c8d14ac32cafd0a9fe565e9e6767e3", "message": "In testing that the user is not logged in with the wrong password, make the test more generic.\n", "proba": 2.9951499413982674e-07} {"commit": "c0e0833f7b1e9ddbfaf8dec42a991f9b388f5c4b", "message": "Adding test for our handling of bad input\n", "proba": 4.677850995449262e-07} {"commit": "aef33e30b47982f84d290a2ec45d34f808abbea2", "message": "Stop manually sending ourselves to the page we should already be at\n", "proba": 1.1858953286036922e-07} {"commit": "27b2c22fe3e2d72a2a6aa89d8619a876617e5ab5", "message": "fix for get_survey_start_time eta calculation\n", "proba": 4.823843369194947e-07} {"commit": "02d608ad79659fb58a2d9e49fd4c9042b32c89a2", "message": "Bump skylib to 0.9.0\n\nRELNOTES: None\nPiperOrigin-RevId: 262597019\n", "proba": 4.226314558763988e-06} {"commit": "36cdc0a393858bd4d67fb0310f3b92d166c9eea8", "message": "Add docstrings to the serializers module.\n", "proba": 1.214445290997901e-07} {"commit": "a0ff14d00f93a83ef2eb1e34ea1fd6f018b4168a", "message": "added line_border: 1D lexicon boundary position\n", "proba": 1.320712044616812e-06} {"commit": "6e18af470370f0c1df35671826fcfddccc10f770", "message": "added line border abs\n", "proba": 2.684251683149341e-07} {"commit": "fc03d21a094cb1109551cb7dae0ee27b992aea97", "message": "Readd the `LazyDataset` as a parent class\n\nThis provides us a base class to work with, inherit from, and refactor\nsome common functionality into. Should help us provide something similar\nfor Zarr as currently exists for HDF5.\n\nNote: Would have used an abstract base class, but it appears these are\nnot picklable. So have opted to make it a normal class with some dummy\nmethods.\n", "proba": 1.1197398208651066e-07} {"commit": "15a73f927e1f28af7094459f0014cb0aa0d58ddb", "message": "3.0.0.3 - Bugfix Release (#12)\n\n", "proba": 1.0544493278530354e-07} {"commit": "ee7c253d25fdb4939d571c19224ae0eae89a1a9f", "message": "Added debugging print statements to plot_gradcam.py.\n", "proba": 1.1335215077679095e-07} {"commit": "7010e982e34f9df67fd6b0bb2a969b1b6872f198", "message": "Working towards a more consistent AD interface\n\nmodified active_directory.py\n", "proba": 2.7908100719287177e-07} {"commit": "4f90c255b6fb6b76196a6414b317fc657ec1b20c", "message": "Add the Template class necessary to render the apply for the organization.\n\n--HG--\nextra : rebase_source : 2c06e02fb82574d2caab27946e7d020552bea7a9\n", "proba": 7.666557166885468e-07} {"commit": "a1aaf2051442a142915aacee8f9d76c5a203f053", "message": "Moving some small things around in the deep core\n", "proba": 1.4865695163734927e-07} {"commit": "5515f85ff76348edd24691e002b32a96e4a75a7d", "message": "Translatable view name\n", "proba": 7.441500201821327e-06} {"commit": "becbfc10fd748b58aa9c447176307a8644c14d30", "message": "Language fixes in access check messages as suggested by Sverre.\n", "proba": 1.0391615035132418e-07} {"commit": "6c33148f0f038d28aa1d696b7a11bb6ad009fd5c", "message": "Improve error handling in submit-cert.py\n", "proba": 3.0404254403038067e-07} {"commit": "c9e21986c7213ae2717ad4f252402eb62b123ef5", "message": "Added some notes about API conformance\n", "proba": 1.265673574835091e-07} {"commit": "eca76be813b07268418363b59726b471f625f8a1", "message": "Fixed incorrect counting of passed test cases.\n", "proba": 1.4911387324900716e-07} {"commit": "617565114e1184245a2196b52f0eb3700fa4ee3e", "message": "Fix proposal view\n", "proba": 7.242418860187172e-07} {"commit": "b78305f717a204aa68a35c1266b9d91072284f07", "message": "Back button works properly for discussion\n", "proba": 1.5684871357279917e-07} {"commit": "f8536c10274fe4f37e210f5af4c7c43c50c72dd5", "message": "Work around for python's Popen kill problem.\n", "proba": 2.077788678889192e-07} {"commit": "9cbc5c98a9a9e2f784abdd55de6426bd15a8d17e", "message": "support for PriorityQueue in py27\n", "proba": 1.5103742612154747e-07} {"commit": "aa2d63e11848b5bfa2a2824b7b3284c968c44231", "message": "Adding HTTP status code messages\n", "proba": 1.0080793799716048e-06} {"commit": "09694bd108e275596d3a1c1a2f2fdaeb2c8a98c1", "message": "update homepage report to incorporate subject cards\n", "proba": 1.3278054211696144e-07} {"commit": "a4c85505bed6e427220b26b1f5cf1bdee98bd6bd", "message": "out_of_band.Error responses are handled in the middleware\n", "proba": 9.339032089883403e-07} {"commit": "197b78419df7d39ab401f4116ed922d5d1cd5540", "message": "Check if pic is in database before adding\n", "proba": 1.566699125987725e-07} {"commit": "12cf8c9074af951cee753cf57e7358b11b0893d8", "message": "added link to sockets module\n", "proba": 2.469593880505272e-07} {"commit": "f52827d5874de3d08a709863eb34c816b9d0c1a7", "message": "Fixed the dict init syntax for 2.6\n", "proba": 7.388020549115026e-06} {"commit": "48e3f1172c5e7a39f207a697a934b3b494ea4d53", "message": "Reorder google fit credentials expired check\n", "proba": 1.4971519135542621e-07} {"commit": "f8367065c9ab5975944d83c5fd606b2aa7d7e0ba", "message": "Added retrying VM migrations after a time-out\n", "proba": 1.8271764190558315e-07} {"commit": "eb351f7eb3bb9f693965a5055fd76a266ad10115", "message": "change integration time\n", "proba": 2.9794472311550635e-07} {"commit": "0294086a1a5503b4d1d72ee3f35b54da448b05e8", "message": "Fix command-line parsing bug in Confidence\n", "proba": 0.00021622632630169392} {"commit": "936b0929b939e8c336839bbfefb4c004ec0b214a", "message": "vat_percent must be 0.2 . Adapt it in importing phase if needed or set to 0 in import fixtures.\n", "proba": 1.127714099879995e-07} {"commit": "b94dd1d3d6ff1cedd5afbd31af90f43df4f6ad8f", "message": "only call _get_signal_streams_header() if .bin file is avilable\n", "proba": 2.453684601277928e-06} {"commit": "8e62e7a007ab0756cb12eb9537a578594673c378", "message": "[axona] refactoring\n", "proba": 5.25458381162025e-06} {"commit": "a6b03b88847f2ce1951b4a7b3bfd2c499271867e", "message": "Update WritableNestedSerializer to call unrestricted() on RestrictedQuerySets\n", "proba": 1.3491849415459e-07} {"commit": "258892ecc7defc1d2e835198a734eda87b0cfb35", "message": "[schema] Added possible ciphers\n", "proba": 1.0344919019189547e-06} {"commit": "a8429cd1cff42eeb7d05bb084a9fcafaf42a71e4", "message": "version bump\n", "proba": 7.394332897092681e-07} {"commit": "afd7b57c5787d029824915cf30c2f2e181f38c27", "message": "removing required WAVE_ID setting\n", "proba": 1.0870641062865616e-06} {"commit": "40090c0af70639784a00a7c69c296b704697d44c", "message": "Update SRU by adding cell-recursive vector weights into SRU.\n resized = W_resized * x_t + b_resized ------ (1)\n f_t = sigmoid(W_f * x_t + v_f (dot) c_{t-1} + b_f) ------ (2)\n r_t = sigmoid(W_r * x_t + v_r (dot) c_{t-1} + b_r) ------ (3)\n x_t2 = W_t2 * x_t + b_t2 ------ (4)\n i_t = 1-f_t ------ (5) coupled input-forget\n c_t = f_t * c_{t?1} + i_t * x_t2 ------ (6)\n h_t = r_t * tanh(c_t) + (1 ? r_t) * resized ------ (7) highway connection\n Note: v_f and v_r are recursive vector weights.\n\n - Reference: Lei et al. \"Simple Recurrent Units for Highly Parallelizable\n Recurrence\"\n - Reference: Park et al. \"Fully Neural Network Based Speech Recognition on\n Mobile and Embedded Devices\"\n\nPiperOrigin-RevId: 277178270\n", "proba": 0.9985730648040771} {"commit": "8f09e639e17427112c45ae54ec538ad0f7c2114c", "message": "#2347 : Make mock as tests_require for book.\n", "proba": 1.045882456196523e-07} {"commit": "d2268202a2e566eb7d640f6db7f2788b913a5313", "message": "allow suffix when querying tlds\n", "proba": 1.8261239347339142e-06} {"commit": "b8500db08aaa235a1cb7b1344b8d83fb3c61ea29", "message": "Fixed JS ordering\n", "proba": 2.9000219115005166e-07} {"commit": "e0925b4e909f388f90d4de60a9e64dfdf7f67b7f", "message": "Rearrange report_root to make main callable.\n", "proba": 1.1904300833975867e-07} {"commit": "13178de71d1d7c9a5bbfe65eaf922729bf1e6871", "message": "fix string constants defined in extension classes\n", "proba": 6.132589987828396e-06} {"commit": "f661cae3315546b3417921115ef7529f010099d9", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "19f1477f01dfca93c1b188686302d3595cdf1151", "message": "analyse argument annotations as types really only when annotation_typing=True\n\n--HG--\nextra : transplant_source : %B2a%A7%A9%A6%2A%2C%21%11%A1%D3%A0%F4%0D%D1%C7K%97%60_\n", "proba": 1.7626602755171916e-07} {"commit": "8755e2ff61194d588dcadc9aa8f247b4c49305d6", "message": "code cleanup after last change\n", "proba": 3.5148639199178433e-07} {"commit": "52af042137419dbcbaec07b636744f7836a6087b", "message": "support 'from cpython.array cimport array' in addition to existing cimport forms\n", "proba": 8.007090173123288e-07} {"commit": "64c09683d0d745c2e394ce830e50d3c67d31c3b4", "message": "prewitt et sobel diagonaus OK\n", "proba": 3.7619724935211707e-07} {"commit": "87dfb616066cc8d3d56d05dbee8ee638cdc50df0", "message": "\ud589\ub82c \uc694\uc18c\uac00 \ubaa8\ub450 \uc74c\uc218\uc778 \uacbd\uc6b0\n", "proba": 8.343973263436055e-07} {"commit": "63b3fb59bc6069830f7bb22625b3f36b978f65aa", "message": "generators.MultiscaleGenerator: test of coarse and fine sequence build\n", "proba": 1.574992580799517e-07} {"commit": "0b64114e1b4b3d5c17809feff5b8550b90697f6c", "message": "iterative progress on filemap code\n", "proba": 2.154932303710666e-07} {"commit": "3b1cea0836b6b90a79a57a09f451c75ac01a10c4", "message": "Revert \"Test a failure\"\n\nThis reverts commit 451367ba372b9b079fb6f5d88bb33dc468d972cd.\n", "proba": 1.6296874605359335e-07} {"commit": "93b7add2afcd6ef0c2d410d21422f3c253256913", "message": "add version to dummy analyser\n", "proba": 3.115289075594774e-07} {"commit": "6603e6e9fe59451f459776ad6b976682f8ca8d8b", "message": "[Discord] Handle messages with image embeds for pinboard system\n\n", "proba": 1.2797126203167863e-07} {"commit": "2b7e6552e82f899a91ce3d6973d90778440fac8c", "message": "Remove time formatting in agent clock error\n\nThis removes time formatting that may be hiding timezone\nissues that are leading to a delta being calculated between\nthe agent and the server even when it shows none. It also\nadds logging of the difference so we can see how far off it\nthinks they are.\n\nExample message:\nduring the registration of Open vSwitch agent has a timestamp:\n2015-05-19T18:15:27Z. This differs from the current server\ntimestamp: 2015-05-19T18:15:27Z by more than the threshold agent\ndowntime: 75.\n\nNote that the timestamps are exactly the same after formatting.\n\nChange-Id: Ibfc30444b7a167fb18ae9051a775266236d4ecce\nRelated-Bug: #1456760\n", "proba": 5.305120112097939e-07} {"commit": "9ee5177551271ea3803b4134dbab5898839ed12f", "message": "tests for program views\n", "proba": 1.6827281967835006e-07} {"commit": "e067aa1d2fce759dd7eee6d10b88460e643d3118", "message": "Fix placement of callback arg in docs\n\nWas messed up by a parameter list item node with multiple title nodes, like:\n\n`filename`: ``\"filename\"`` of the file to get, or `None`\n", "proba": 3.728807769221021e-07} {"commit": "bd0c14d10a9654206e5586f2c728611026af84a1", "message": "bugfixing\n", "proba": 9.141261330114503e-07} {"commit": "2d5bba1b48c0d3091df391c81ed7cd3236c0a127", "message": "[PNaCl Toolchain] Use static libc++ from Chrome toolchain on Mac\n\nhttps://codereview.chromium.org/1572753002/ stopped building our custom libc++\nbut failed to add the linker path to the static libc++ library, resulting in\na dependence on the system libc++ dylib. This fails for OSX 10.6 systems, which\ndon't have the dylib.\n\nBUG=None\nR=mcgrathr@chromium.org\n\nReview URL: https://codereview.chromium.org/1586243003\n", "proba": 1.0053106507257326e-06} {"commit": "f661881f37a1e6bf0ab7cf6cb8b7b38eb3049bf5", "message": "remove unsused property\n", "proba": 3.9431526488442614e-07} {"commit": "56e6795e534fd3bc0985cc06ead0a776c0af010b", "message": "Delete ipc_lista3.43.py", "proba": 3.429761363804573e-06} {"commit": "d25d7fc55faa4212e60688eccc0f96c9568bf44f", "message": "Movendo fun\u00e7\u00e3o atravessar para deixar testes separado de fun\u00e7\u00f5es que atuam na lista\n", "proba": 6.811504249526479e-07} {"commit": "8032f9e47d1cac5e4dcfa52c3d7dde8ef149da06", "message": "Agent based statements for bel processor\n", "proba": 3.7353746051849157e-07} {"commit": "563fb3616a21e6b59a529ff620ebd71245ab14f5", "message": "no more query dict\n", "proba": 4.269336932338774e-05} {"commit": "0046a3cc8f316da4987a44d1a31eea10c8549302", "message": "basic compound fields\n", "proba": 6.630114626204886e-07} {"commit": "4c2b2395d017080ed7abee5ea05fb922e0e9db25", "message": "tcam-capture: Add security check for cache.last_format\n", "proba": 5.292496894071519e-07} {"commit": "cb7ae68fe51d26e529059360ddac5b1bc9333db2", "message": "github fix\n", "proba": 7.188607469288399e-07} {"commit": "334c000d5a6d19133e3ce3b7a2c847cd682f4ebf", "message": "print the OSError instead of swallowing it\n\nAs title\n", "proba": 0.9991660118103027} {"commit": "d89c6b31f3b2b28e0f8c05018c624e9e259286ff", "message": "updated survey testcase for travis\n", "proba": 1.5398391894905217e-07} {"commit": "4a85d149b455c05f1b7313d455c464576cb62f69", "message": "tidy file\n", "proba": 9.704409649202717e-07} {"commit": "fcdfda86127480b5beddbfd61c655349294adf7f", "message": "Mashing this stuff together withluck it works.\n\nUpdate chat.py\n\nUpdate chat.py\n\nUpdate chat.py\n\nUpdate chat.py\n\nUpdate chat.py\n\nAdded the msparp staff enter message.\n\nfixed it again\n", "proba": 1.2784013847522147e-07} {"commit": "f013503340396b30751c3f905a2ee8bfb447f00f", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "e4e4c5aef745793920b9186c79f365f0cb707783", "message": "added a docstring and changed the default timeout\n", "proba": 3.8808425983916095e-07} {"commit": "5af83b1c85d1624ed3a2949fb062ed8f108c46f9", "message": "updated vsco\n\nadded error handling for accounts that have no pictures or don't exist\n", "proba": 1.2157281048530422e-07} {"commit": "96271a0754888a1839666a0a3aea9276cd16b658", "message": "BF: updated directory copying in datasink to copy files instead of linking\n", "proba": 1.3679543542366446e-07} {"commit": "5c99331e77ca75af9386c2eb1b1d5831fcb76de2", "message": "Changed cookie __repr__ to look more dict-like.\n", "proba": 1.1123554344294462e-07} {"commit": "7314812bfe0f67e8a0da0afc8fdad51624044c6c", "message": "edit the concurrence 0 bug of npmi\n", "proba": 1.320552911465711e-07} {"commit": "4a35bf7cee3127a6ff0c3bdf72d2e8f550148259", "message": "added improved panlex reader\n", "proba": 1.35808974732754e-07} {"commit": "216d4fa469ef056debe2cce1551911a9d5603b6b", "message": "add Universal Dependency Treebanks; cf #809\n", "proba": 1.2149388339821598e-07} {"commit": "485f4dcc49ab09d58dbcf57b6436af72eadb0ec8", "message": "Support checkpoint on BlockMatrix (#6933)\n\n* added checkpoint\n\n* Copied the documentation over from write\n\n* bump!\n", "proba": 9.885986429480909e-08} {"commit": "89f98b765943c97bd0e65873aa5ce4877f306c83", "message": "Enable eventlet monkey patching for MySQLdb driver\n\nUsing MySQLdb driver for MySQL is not compatible with\ngreenthreads provided by eventlet library. If we issue\nan SQL query through it from within a green thread then\neventlet dispatches doesn't switch to another green\nthread although it is an IO operation.\n\nWe need to apply monkey patching to MySQLdb explicitly\nas it was fixed some time ago but doesn't apply by default.\n\nChange-Id: Id32c65b628d8ffec5452cc89d7cf5a0a24f0312d\nCloses-bug: #1721218\n", "proba": 2.1073035895824432e-05} {"commit": "83bbaff51672a314aa25768833c3a6f1297a03e7", "message": "Fixed Issue 105: Unit test was failing on Windows XP.\n\ngit-svn-id: 04ba0b32988bb96a546aea9d569cbb76445a94b0@570 2aa0e9f1-8e24-0410-adc4-1b6a3a6e65e2\n", "proba": 1.768986521710758e-06} {"commit": "0daa420dee4371418221a22b2245dd4ee1720b1f", "message": "Make RandomWallpaper.py self-contained\n\nWith this change RandomWallpaper.py now creates the database which it\nuses. It creates the database whenever the number of images found\nchanges, and writes the database if it has changed.\n\nIt uses the PIL/Pillow module to extract ratings from .jpg files.\n", "proba": 1.1469006011566307e-07} {"commit": "46dd56366bc0b3e3a66c45996d7eca4bdc399074", "message": "Fixed problem with redirection. No longer sets the content language for\nlocale independant paths.\n", "proba": 1.049335196512402e-07} {"commit": "d9bb5879e0538fa2d82630bcf588abaaf3cfb9e6", "message": "[FIX] Date erased when Finding created from Template (#6065)\n\nWhen creating a Finding from a Template, the date given to the finding is not taken into account. Instead, date provided is erased by the date of the day.\r\nThis fix allows to create a Finding, from a Template, with a given date or date of the day.", "proba": 2.4064047465799376e-07} {"commit": "1ace265992a738023ebb0d8d6d49788925b67772", "message": "wallet: simplify get_payment_status\n", "proba": 0.9998384714126587} {"commit": "62711d46ab8ffcf07b0def481dfaf82b389e7dba", "message": "And more cleanup\n", "proba": 1.2319512165959168e-07} {"commit": "326a8336b1b93ea4e95df041713ac66831f76ee1", "message": "Totoro: more fixes for plate arrangement\n\ngit-svn-id: dcdaf592c419a47799209c32700ba59719f9e900@5548 acfa968b-e9c4-4993-a9e6-846a59bbf143\n", "proba": 1.8956316694129782e-07} {"commit": "604ae10c5a60b9510f324259ce8e74096aa24d88", "message": "create graph groups if they don't exist\n", "proba": 1.2214229627716122e-06} {"commit": "c6722e04d3a6cf4ee490a0d5392ecad1892ebd6c", "message": "Add conditional for if is available to use for soils\n", "proba": 2.2236086749671813e-07} {"commit": "789f1d4475aa47b98a28dd1c8d743e73d11a8201", "message": "Add user to activity\n", "proba": 1.2945508842676645e-06} {"commit": "7262d75c3ddc64e4836da9d85af430f066bfc7b5", "message": "Final bug fix?\n", "proba": 1.2194112741781282e-07} {"commit": "74b24eb42bae185cbd114c899d8281a6d1679a03", "message": "django.wsgi points to smart\n", "proba": 4.955622330271581e-07} {"commit": "0f5c00a23da0a14c18d4fdf58c594f856133125e", "message": "Indent error messages for failed MX resolution properly\n", "proba": 1.4068679377032822e-07} {"commit": "bcfd68385390b3ae619ab52a4b165d1a34211892", "message": "CURA-2050: Changing factor to 1.25", "proba": 0.0003670639416668564} {"commit": "50ea7bb9fe56f759e07a4e07ec94cdf6b40a618e", "message": "Remove setting visibility changes based on children from Setting\n\nNow that we have decoupled inheritance from visibility, hiding parent\nsettings no longer feels intuitive. So remove that functionality and\nmake\nvisibility a simple on/off toggle.\n\nContributes to CURA-390\n", "proba": 1.1365664676077358e-07} {"commit": "4638264a6cfe37f719d904c916c7aa0314683bb1", "message": "Synced data reading in euxfel backend.\n", "proba": 1.212227118685405e-07} {"commit": "5d01f0e45b68d91b9c9d66f84a9de967ffc81909", "message": "Changed \"Cortex-M4\" to \"Cortex-M4F\"\n\nThis got reverted but wasn't added back in the last SDK build. Would appreciate if the online compiler would include this.", "proba": 1.1050386916622301e-07} {"commit": "936c576140351a35d668b7e116b5ad29a887864b", "message": "Change uARM default toolchain for DISCO_F429ZI\n", "proba": 5.519634669326479e-07} {"commit": "3d11437efd4bcb0e90bc6ec4dfdf3af5f09a04c5", "message": "Tests for Metadata.retrieve()\n\nThis doesn't test remote retrieve yet.\n", "proba": 1.17029657076273e-07} {"commit": "a489d4d3dcd782fca7f2cf62b1381ecaf9b9d54d", "message": "Fix : typo in errors log config handler\n", "proba": 7.082565844029887e-06} {"commit": "d6ea4731b6dc43aa40cb59526b7f3882eee8854a", "message": "Test expires_at only if available\n", "proba": 1.8070882390475163e-07} {"commit": "9774684dc5f3b9350b0e233fd956f6396380309f", "message": "modified import_key to accept string instead of file object\n", "proba": 2.7992305717816635e-07} {"commit": "5d6eac79389609f8941d67ea89d7952e0c14eaf4", "message": "Adding a dev script.\n", "proba": 1.2884562750059558e-07} {"commit": "96112e4aa615cbdfb01047ea0ee64b7691791c57", "message": "Can use classes that are in a directory structure\n\nWe assume that the class has the same name as the file\n", "proba": 0.0002351203584112227} {"commit": "6518272f35cd876d3055c7d61e40849b9ec38271", "message": "chore(deps): update googleapis circa 2022-10-03 (#412)\n\n", "proba": 1.2043361152791476e-07} {"commit": "842c8408c7e3f91493b40af7e09db4607d047be3", "message": "BRANCH 4.1: fixed watermark case when output dir does not exist\n", "proba": 3.523002192196145e-07} {"commit": "cb7ad5375573a3f46f6752854d5dc46472168f10", "message": "Get the pipe example integrated integrated into the chapter six example in python\n", "proba": 1.325103369254066e-07} {"commit": "1206340c04029329f8ef25cfbac9708051e7e070", "message": "fix with batch_size\n", "proba": 1.7303299273407902e-06} {"commit": "9aafbf99a85bc47686d6bbcebbaec85aa2521536", "message": "added doc text to the functions\n", "proba": 2.4825956757013046e-07} {"commit": "f368a48521c5ca3269cd062624ddb758f6f22b36", "message": "Fix `rejudge` command for CLI (#248)\n\n", "proba": 1.3912455187892192e-07} {"commit": "53d8f47102bf135592300379b3093c6e88e4abeb", "message": "tolti stampe debug\n", "proba": 2.7787820044977707e-07} {"commit": "9d289431239c72587305d6fa671366c03354d65f", "message": "get_dirs enhanced with get_paths, which gets paths from the pre-designated order passed In args, queue file, JSON SCRPT, Environment Vars directory\n", "proba": 1.82737508680475e-07} {"commit": "385d8ab01049b666d067940a80170c54f7a5d77a", "message": "load mammals:digestive systems\n", "proba": 5.230353394836129e-07} {"commit": "4c46482eb13be5d4758901cb4b2603ef66ba6fda", "message": "Cosmetics.\n", "proba": 4.182004431640962e-07} {"commit": "e29d72a6effae9684e891fccd126ccb90ce576a2", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "83dfe9254992fdb194f6c7e1cb3c484c079416e3", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "71216f0a82681cd370edb97eba505125c9be7b01", "message": "Fix index_aip_and_files() call from mgmt cmd\n\nFix index_aip_and_files() invocation from\nrebuild_elasticsearch_aip_index_from_files management command.\n\nConnected to https://github.com/archivematica/Issues/issues/595\n", "proba": 7.915600690466817e-07} {"commit": "1335b85b277922385bb81acfe90670327f887746", "message": "Finish documenting _round_iterable function\n", "proba": 5.929598501097644e-07} {"commit": "6636c30e9c31385d0bced68dfe5bf60e3e3899f4", "message": "layers: do not iterate over a dict that mutates\n\npython 3.5 OrderedDict raises an exception when it's modified while\nbeing iterated over:\n\nhttps://hg.python.org/cpython/rev/0d8679858272\nhttps://bugs.python.org/issue24369\n", "proba": 3.8470559957204387e-05} {"commit": "ae5c8e1651e538fc5df9d3374f7d2f0dd583ace8", "message": "Delete color_demo.py", "proba": 3.953152372559998e-06} {"commit": "e0e830d9898d33e06ba766cde9f91836a7e42aa6", "message": "Fix verify phone number workflow\n\npossibly broken since\nhttps://github.com/dimagi/commcare-hq/commit/2adfd8e2b3b195a348cc24c404b5aeaab1256603\n", "proba": 9.492611752648372e-06} {"commit": "727381efa4e608f61c949446db325f76e7ae7d08", "message": "black format\n", "proba": 4.519493813859299e-06} {"commit": "34b9220a5905a9a0f5118efc76e213ed3fd3ddb8", "message": "Make script a bit nicer\n", "proba": 2.7026047177969303e-07} {"commit": "e8e105bbfac7c95aa97bd105a4fc9475f80fd50d", "message": "Typing for new settings\n", "proba": 3.195001738731662e-07} {"commit": "c3e9cfec5eef0e2e5d9f4fa4ace52bdea821b443", "message": "bug fix in cell creation\n", "proba": 3.9917532035360637e-07} {"commit": "08d7f539b2f77a95f764d6434b2121ff3c8f36e6", "message": "remove calls to env.run and env.cd in vcs.git module\n", "proba": 7.347649670919054e-07} {"commit": "df12bb9b21d4e438db21cd9d7ba9a5174baa2ad9", "message": "Missing space?\n\nUnclear why chris' run of black did not want to do this, but travis and my local run both did.", "proba": 1.3744168825269298e-07} {"commit": "48a8e3480938676e43ca16d3c50dc96263f8f14e", "message": "add user id to file string\n", "proba": 7.620749329362297e-07} {"commit": "2581ab73a7cedcfe6d64f77a578cb9caf66b1280", "message": "Create facepy.py", "proba": 7.930160063551739e-05} {"commit": "31e6de7cf25a64d266e6c72e18b366ac54584756", "message": "Clearer logging\n", "proba": 2.3714521546480682e-07} {"commit": "f59474d1d9c4200e36cd056681108b73e31aa870", "message": "fix plot_ball_distances\n", "proba": 3.0224946385715157e-05} {"commit": "e5ec51242ff835a5bd59d17f6663261268baab52", "message": "add error 403 to retry with exponential backoff\n\n403 in upload case should be rate limit so retry intead of retry from\nbegining\nhttps://developers.google.com/drive/v3/web/handle-errors\n", "proba": 7.759430445730686e-06} {"commit": "6af6089a297403a320da6a56accd92ed3f46b381", "message": "Add media type for MessagePack\n", "proba": 2.2610046812587825e-07} {"commit": "0d733b80c51ba8967b190b5b40fa1eec3dd7719c", "message": "allow changing the input flanking markers\n", "proba": 5.114677037454385e-07} {"commit": "9684e15b94e52e35b79ebb70586a64c0524838a1", "message": "fix docstring\n", "proba": 1.8441871361574158e-05} {"commit": "46d7bc0478a94944b1246c388315d9e06c1bce80", "message": "fix doc string\n", "proba": 1.781636819941923e-05} {"commit": "33f399638e8eca6d3dd8427bafdafa29b3cd1c59", "message": "allow session protection in session\n", "proba": 1.5353623439295916e-07} {"commit": "1e2d45537f1acd945719fa9896424c2078a47794", "message": "Added clean PEP8 convetions to ssd.py\n", "proba": 1.258287625205412e-07} {"commit": "987f1badc84bab4cdc337c6b5ebb1d31420dd7f9", "message": "Handle a None decorator in pyramid views\n\nThis is needed with pyramid 1.5a3.\n", "proba": 9.279425512431771e-07} {"commit": "99930066f7b12f7baabe083d12e48d5be14e8daf", "message": "removig the creation upon request due o inconsitent behavior\n", "proba": 1.1897309093455988e-07} {"commit": "0f42646dbb455d91134bc1020a5b04e65a91f452", "message": "catkin_export_python()'s interrogator did not treat python submodules correctly. It would create new top-level symlinks for the submodules. The patch attempts to make this work for the common case, where the submodule is part of the same directory tree. It does not work when the submodule is not part of the same tree and attempts to error in this case. It allows one exception: merging msg/srv trees, which it ignores, because catkin already specially handles this\n", "proba": 8.910067776923825e-07} {"commit": "babfd00abe8a7fc78f40377a2653073bf704b879", "message": "run the main part of upload_to_server() that makes api calls on a different thread so that gui thread doesn't get blocked and look frozen\n", "proba": 2.0126445576806873e-07} {"commit": "04bb0c89b443e9a68df463c1e2aa24a5c6cc278c", "message": "pep8 whitespace\n", "proba": 2.590410986158531e-06} {"commit": "930efa403ccaf8e34c1a85e0d242458511c8d1f5", "message": "etwas korrigiert\n", "proba": 1.1308831062706304e-06} {"commit": "86ab2d9a8c1b28084a9ce424e10bedb1eaf34dca", "message": "Google+: fixed\n", "proba": 0.9996441602706909} {"commit": "9283200c6255bab109a2f8b9a4dd156fe0983a01", "message": "let KeyboardInterrupt bypass\n", "proba": 7.573708444397198e-06} {"commit": "a36f7f3c2492240973115a8dafffe7fe76c15b4b", "message": "r reformat\n\nCo-Authored-By: rzijp <79e90f580971568cb98b68242a3fc549c272a313@users.noreply.github.com>\nCo-Authored-By: Oliver Bestwalter <50db1fc5c95f180684b359c3de89b72eac32bc48@users.noreply.github.com>\n", "proba": 0.0001874069421319291} {"commit": "a6d42ade908574862e6a244be06cbc1f693711de", "message": "Use video filter for easynews searcher\n", "proba": 1.819738741914989e-07} {"commit": "496ca31896f5635e17e5eb52a5931b404accc845", "message": "Fix incorrect default parameter for match method\n", "proba": 2.1408977772807702e-06} {"commit": "93c98287c95cee482e1edebe724bcd36ac7d4b00", "message": "correct imports\n", "proba": 0.00013793949619866908} {"commit": "e9f5ce5b3f5321cbecb0b3ccdf810382d329c006", "message": "Fixed systemCheck for Windows\n", "proba": 2.4596445769020647e-07} {"commit": "d837ff5e896fe544a47812a6ddc4f7b461e5c7b8", "message": "added a real dragon to the ui, hope you like it!\n", "proba": 9.940270473407509e-08} {"commit": "e89949f6119d295b9c1b416520f87849fe0e99b3", "message": "Formatting commit\n", "proba": 1.3689791558135767e-06} {"commit": "e8c6ba7714a347bfb0106dd2091ced79d77e87e2", "message": "remove lines for codecov\n", "proba": 4.4050306314602494e-05} {"commit": "842d9e944ac76a0b3b35d6d00ca5b1ed0e6f1ca3", "message": "test_classes: Prepare for moving system bots to zulipinternal.\n", "proba": 1.0933818117564442e-07} {"commit": "0f32845cea9b36b52b29f38243fd2f1ea4da6832", "message": "fixed calcTm on unicode\n", "proba": 4.29285847758365e-07} {"commit": "ea318257147a08acf2177c93a9009d795c283e8d", "message": "Don't require a template tag library.\n", "proba": 1.1964085899762722e-07} {"commit": "65d7769cbadb8b8df9b22ab474145b37c43a0b11", "message": "added ZMQStream.flush()\n", "proba": 1.6667503643930104e-07} {"commit": "c6b2ff56b5c589dc1fee207410411876c80d86b7", "message": "Support collect log for sharedblock\n", "proba": 1.9280432184132223e-07} {"commit": "20cb5abcc3f63d58c70e813c64e50b798b9d79dc", "message": "fix pylint violations\n", "proba": 6.531396934406075e-07} {"commit": "dde93c01cf349d64acbcfc54d66438abd7566519", "message": "spec: support a test prefix\n\nThis is used in tests to test real packages without actually building\nand installing them.\n", "proba": 1.0318733956182768e-07} {"commit": "be85538e3664dda4dde37ba37853a063d7c46e20", "message": "added reparam ent\n", "proba": 2.324754859728273e-07} {"commit": "e0ed1bbc4bf0e57625353d8995fe2270d6b012f0", "message": "fixed location of rapid files\n", "proba": 3.9761792436365795e-07} {"commit": "045993a9f30077e0c81229383c6e60e4366d381c", "message": "make event calls to external service on send event async in handler\n", "proba": 3.798419641043438e-07} {"commit": "9006eb7b8bba6f74517bcc80d8843756b66e0771", "message": "fixed a bug where echoing a carriage return only fails if message is None\n", "proba": 0.99972003698349} {"commit": "c8c5520aeed4b6c89e7d675c14e6101a84e13e5e", "message": "find_path_xml_fast working in forward direction\n", "proba": 1.6190031146834372e-06} {"commit": "b6a44c768ed0ad1bd590e0ce908577e3763f7c2c", "message": "restructure GTPengine to work either as external process or within python\n", "proba": 2.347403125213532e-07} {"commit": "4f6cdd7f52a581a500d045db401f7f621b939074", "message": "Use simple_bind_s instead of bind_s", "proba": 7.068180366331944e-06} {"commit": "51d2d3b86ed8eda0f611b6d8fc04ecdf4fac673e", "message": "make some sense\n", "proba": 0.6885561943054199} {"commit": "32bfe6acdf8e462f90c72c9230b77c8c6fdca93b", "message": "fixed a line length", "proba": 0.00016847322694957256} {"commit": "4433c1b15584670b4a5a040da1f21f1e85177601", "message": "[notebook] Fix spark impersonation\n", "proba": 6.571401627297746e-07} {"commit": "44108041acccca27333a17e1cb813fce0021b8ca", "message": "Removed old download script\n", "proba": 1.9442883569809055e-07} {"commit": "20fe077343006a18714fd349c20400cd2746febc", "message": "Factor out port resource deallocation\n\nDuring detach, and later during a failed attach, the port resource\nallocation needs to be deleted from placement. Currently this is done\ntogether with the unbinding of the port. This patch creates a separate\nfunction for resource deallocation. This will be used later separately\nwhen an qos interface attach fails after the resource allocation but\nbefore the port is bound in neutron.\n\nChange-Id: If3e79cd71b6d0f6e535ff86b27483c137a78fee9\nblueprint: support-interface-attach-with-qos-ports\n", "proba": 1.7793007600630517e-06} {"commit": "c16cbf5240514d7ae651c959a78f0ba242c05d38", "message": "final integrated code\n", "proba": 1.7266297902551742e-07} {"commit": "dea528ddb4e99ac3370700ac754926bbf5856e4b", "message": "HUE-8758 [connectors] Support permission persistence via FK\n", "proba": 1.0695499952362297e-07} {"commit": "475cdc4b95bf1940554b0826d514e0f66af58d5e", "message": "ApiDocs: use singular for ''extension point'' in the text generated by the eponymous role\n\ngit-svn-id: 3aa280b99a9b480b02b1e2eda394e64594ad3297@11314 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 0.0021152382250875235} {"commit": "bd64450dc9f7506eac539643a0a3689e4f37b62f", "message": "Simplify the number of exceptions\n", "proba": 0.9999991655349731} {"commit": "6f50d772c12853d7c1a2d1f80f530adce29dbacc", "message": "Don't use _ for variable name\n\n_ is reserved for gettext use and using _ for variable names can result\nin runtime failures when trying to lookup string translations\n\nChange-Id: I8835142fd19ba5f395ddef959c38167f4144b813\n", "proba": 1.1348663065291476e-05} {"commit": "a16ead61516ba876fd116db33ac47233bbe13bb7", "message": "preliminary tkinter stuff is starting to take root\n", "proba": 1.3252108033157128e-07} {"commit": "9961e3ba277c00cc46125853a3537661086bcdfc", "message": "Fix conf.py to not have 'copyright' twice.\n\nIn the documentation, the footer was getting generated as:\r\n\r\n```\r\n \u00a9 Copyright Copyright \u00a9 2012 Red Hat, Inc. and others.. Created using Sphinx 1.1.3.\r\n```\r\n\r\nAnd should now get generated as:\r\n\r\n```\r\n \u00a9 Copyright 2012 Red Hat, Inc. and others.. Created using Sphinx 1.1.3.\r\n```", "proba": 1.2088036783097778e-05} {"commit": "ce6ee81a0a8087df7aa9def920c6cd6dbc05d681", "message": "COMMISS.ENH: Use isonline to inj_traj_fitting\n", "proba": 2.165732126968578e-07} {"commit": "bb7ed6cb9cf625b675a666866a7f9fb762ca6bd2", "message": "use self.flags in virt test", "proba": 7.324094326577324e-07} {"commit": "e28a22671e23ad1e2815b2876aa99e08e4cc48fc", "message": "disable matplotlib extension to test doc building.", "proba": 1.1045329273429161e-07} {"commit": "937cad1844b9706165a23a6533eb830225674ba8", "message": "fix for lp783705 - remove nwfilters when instance is terminated\n", "proba": 1.232971413855921e-07} {"commit": "0540153958714ab0f2682b0d9b623135aecfb0a8", "message": "DOC specialcased properties in ``linkcode_resolve``\n", "proba": 1.2201930132960115e-07} {"commit": "96e704761e580d9d20d07b8aa816175519ed9423", "message": "Gallery->Examples (#3732)\n\n", "proba": 1.1277968781087111e-07} {"commit": "d03ba2aa271e0fecb3cce92813315d2b4743c8b1", "message": "Make flake8 happy\n", "proba": 1.579413037688937e-06} {"commit": "2f4def1c97c80b00eb17bf02bae7df78fa904df2", "message": "automatic documentation works\nfor cython modules as well\n(need to build first, but no need to install)\n", "proba": 1.0263616445627122e-07} {"commit": "6d8956e46026b68a4c2a50f1aab0c4f36a46053d", "message": "Fixed chain exception for array_split func (#18317)\n\n", "proba": 1.2286096762181842e-07} {"commit": "601290917c9c7b2dc6a6968dbd22f308d59dca14", "message": "update intersphinx link config to use readthedocs.org urls where it makes sense\n", "proba": 1.2887119282822823e-07} {"commit": "96cf45ba602710bddd4275e48ad5a8569e104472", "message": "RTD...\n", "proba": 1.815516128544914e-07} {"commit": "4476d1cd4651667459b11f3cd288b97d081c3abd", "message": "switch to scipy's coo constructor\n", "proba": 1.6309139709846932e-06} {"commit": "bf6231d573c3af9d026dec648f4e7645a80dabdb", "message": "good matching\n", "proba": 4.918497324979398e-07} {"commit": "42ca5fd8170d1052cb35090a56eca1b95337f61f", "message": "Change theme back to 'default'\n", "proba": 4.935756123813917e-07} {"commit": "cf56e780dc77e519231ccd5e3653a800684b684d", "message": "Update conf.py", "proba": 9.155412499239901e-07} {"commit": "605fb406d93128024486c949b0363c2589006e81", "message": "Update version in documentation.", "proba": 1.1482259054673705e-07} {"commit": "855344c5fb4f5080c522dd717beb40ba1efb7e96", "message": "DOC: update doc vega-lite renderer version\n", "proba": 1.8316112004868046e-07} {"commit": "4516117e9fce81c46578fa620f028d0e7a5ce571", "message": "doc: enable figures enumeration\n\nEnable figures enumeration. This option allows to use :numref: in order\nto reference figures, thus allowing more precise references other than\n\"the figure below\" or similar.\n\nSigned-off-by: Gerard Marull-Paretas \n", "proba": 1.3556685019011638e-07} {"commit": "f398506ff0cad34d6069deb5bc9c6b4a5557dfa6", "message": "Fix to improve grantResponse message logging in StartPowMeas (Issue #116 )\n\nFor grantResponse message, if grantRequest parameters did not match\nfreq/maxEirp for test, then grantResponse logging was cryptic (not\nprinted pretty) -- see Issue #116.\n\nFix by allowing \"success\" path for grantResponse -- there is nothing\nwrong with grantRequest, so don't flag it as an error case -- it is\nproper behavior.\n", "proba": 2.0004321754640841e-07} {"commit": "b69e40609e4ab85afde2996a6b67de2efe3a5a77", "message": "raising exception if the user is not found when setting username using set_username\n", "proba": 7.438569809892215e-06} {"commit": "f54f11be89a27f9890ac1cd043691bba36072356", "message": "cleanups\n", "proba": 1.479208890486916e-06} {"commit": "125dc3a65051d73d20c22d99cd6f9a1c18f06dc6", "message": "input normalization fix\n", "proba": 2.678005103007308e-06} {"commit": "7213d84056642c62976c5a54bf8b6ad706b192ee", "message": "Avoid using regex at all\n", "proba": 4.184492809145013e-06} {"commit": "3b30a92f1bc44a06741aa599a27775b054a45a06", "message": "Adding support for octet string\n", "proba": 2.3788325052009895e-06} {"commit": "a8f9765135a8c30acb195b23dcf8618baace097e", "message": "bindings.py: Use get_dbus_name to check for error\n\nCheck the dbus name instead of message for error checking.\nThe dbus message is the description of the error, like\n\"Unknown interface 'foo'\". The dbus name is the actual\nerror string, like \"org.freedesktop.DBus.Error.UnknownInterface\",\n\nResolves openbmc/openbmc#2463\n\nChange-Id: I8721e7b262dbc8f4ebae9a8e30074bdf6a53b025\nSigned-off-by: Adriana Kobylak <742cf4d8dead98b4cab50b088fd2a1406293c958@us.ibm.com>\n", "proba": 4.246887328918092e-06} {"commit": "b32f2283fc259a5526a94258d1fd845330f0f698", "message": "Temporary fix for build running status\n", "proba": 1.9180261290330236e-07} {"commit": "0aafe6ce1aff93a05b3d70233011a58243240f7e", "message": "Fixes: ask the user if a large (>100) number of files will be created\n", "proba": 5.681860784534365e-06} {"commit": "61ef3ab8c141706bd7c7706b2c002f1caf030563", "message": "Fix a bug that caused AttributeErrors in Model#serialize to be supressed\n", "proba": 1.0446246960782446e-05} {"commit": "4bd92761ef9b77282148008a45961a09000b0f6b", "message": "[750g] only select the first thumbnail image\n", "proba": 1.2619337041996914e-07} {"commit": "adcd433cbaec9d4bad38ae2f763fadc4564496f1", "message": "Key ID is generated from key file name\n", "proba": 5.01983663525607e-07} {"commit": "c28d889e86bc9542de9ab42b7145d73fb63a00a2", "message": "added foreign key onto SharedGlossary\n", "proba": 1.6505717326253944e-07} {"commit": "1afad1e83e492d1c7ac4693857498814aeddcc0b", "message": "Added some random stuff to BeerModule\n", "proba": 1.304562005088883e-07} {"commit": "015fe1cf5eacf93f965bd68b6e618adf2d9c115a", "message": "Correct the description of dns_opt option of create_container\n\nSigned-off-by: Boik <485affe0864daafc409dea1aa08047d5c62692b0@gmail.com>\n", "proba": 0.004222832154482603} {"commit": "a1f5d6e54717505171a88870cc4d60d1af210078", "message": "Removed view counting.\n", "proba": 1.2696666829015157e-07} {"commit": "0726aa3ff641cc26407a4f2ed7db544dd29a3a7d", "message": "remove password to force set_unusable_password\n", "proba": 0.00019756950496230274} {"commit": "0947f25e6fd5ff45b58c8506052073b92b636056", "message": "Update comment code\n", "proba": 2.0533232714115002e-07} {"commit": "db1be8974f0a84fd0acfb7eccd78d455adbcfdea", "message": "DOC: Add comments where we use quotechar for escape because it looks like it could be a mistake\n", "proba": 1.3070165039152926e-07} {"commit": "49999de7ac753f57e3c25d9d36c1806f3ec3a0ee", "message": "Customize degree widget so that if formats floats more elegantly\n", "proba": 2.7361213028598286e-07} {"commit": "c70089548c4b19b1cee181d959829c1bdee6eda0", "message": "Hack!, for now...\n", "proba": 1.1667706445450676e-07} {"commit": "a4bfce414281eb91df46e31e9386d07178f18e18", "message": "Make a string of the year\n", "proba": 0.9999994039535522} {"commit": "ea044298348dde063a57b59c7d64c5700bca8440", "message": "Added version parser.\n", "proba": 1.228756190130298e-07} {"commit": "c64c3f9529fe0dae4f4c3af88d26d32872429690", "message": "Linux (and maybe MacOS) support!\n", "proba": 1.1681969169785589e-07} {"commit": "c60a46d127115839cdd205fad01b3cf1b8009192", "message": "Fix legacy history items\n", "proba": 3.371953425812535e-05} {"commit": "44f55d54f881f90a9c00352584e9c77027528f69", "message": "added proxy meta option, not currently supported though\n", "proba": 1.1266015320643419e-07} {"commit": "4bba539aca8b4047bd70d779790f217c76efdcdc", "message": "py2/py3 compat\n", "proba": 0.0002300660707987845} {"commit": "6fa0e9310a524cfe434856915dfe44e986e4e02d", "message": "updated users\n", "proba": 2.7452981044007174e-07} {"commit": "ddb5c91fa0013fc2b63bb0606bd808920435a17c", "message": "codecoverage/bot: Move artifacts and reports to temporary dir (#1414)\n\n", "proba": 1.0659675808710745e-07} {"commit": "58a07105c91616ce75d30fe3de75b0737dca5066", "message": "Edited biasexpansion to use omega2.\n", "proba": 1.0750476064913528e-07} {"commit": "5342ff9b78258c7a4699c3695bc7a80d13ebc900", "message": "add exception handling for Tweetdj objects\n", "proba": 3.882867645188526e-07} {"commit": "755be01a1459ec34bd1bbd390374281aa6f580fe", "message": "Add NoneOf validator", "proba": 6.0295529692666605e-05} {"commit": "e7c075d2f871046f8763be8b5349e7d670807e78", "message": "Not storing data.csg in tmp\n", "proba": 1.0371205689807539e-06} {"commit": "c486f970c078f4f58f1d04a83c046a09df04db85", "message": "HPOA parser\n", "proba": 2.2120336780062644e-06} {"commit": "5eccfd78c5714b296739ef82d473a2202752d9bd", "message": "Make sure we concatenate strings in token generation.\n", "proba": 1.5755108506709803e-06} {"commit": "499eb15b9d0c7e7897f3c5f84dba2f333fc26c88", "message": "Add missing import\n", "proba": 0.00046551317791454494} {"commit": "fab3115af35cd0c821f5a05d24db8206e2673f0c", "message": "Add some sanity checks to prevent crashing due to GStreamer failure\n\nGStreamer can be initialized but still fail to create an element.\nAdd checks for this condition so we don't crash upon launch.\n\nSee gitlab issue #161\n", "proba": 1.188134461926893e-07} {"commit": "fd81681343ee3bf7591f367199dcd971a4fdb9f4", "message": "Refactored loggin\n", "proba": 6.778454917366616e-07} {"commit": "6263081ef0156879cd339886f09409ab209e2c1f", "message": "further cleaned the loader\n", "proba": 1.6073036590569245e-07} {"commit": "2837a785024fd8dd6ebc22fd1091d57f4d192e34", "message": "[modules/error] Minor refactoring\n", "proba": 2.3377630498089275e-07} {"commit": "6917a10627eae0264238f29eeb495ff39073069f", "message": "add db.getDealsFromToSystem()", "proba": 2.0394183763983165e-07} {"commit": "079bd15b9763dd8ae47ac426ce24215723378a8c", "message": "Fix bad value", "proba": 0.9996044039726257} {"commit": "1223f80a101da8e1083f1076672d4a6240f251b7", "message": "remove print\n\ngit-svn-id: be7fcf8b57a85a067d5bd030757d140cf5159929@1539 8402a193-bf1e-0410-a7e5-8246bfde4f7d\n", "proba": 0.9999966621398926} {"commit": "8e57e892e6f4342d2e9122c982fddabca9542e7f", "message": "Delint\n", "proba": 2.2449769403465325e-06} {"commit": "f9472b127b9d37a42e916976055f49e8f75c1cbb", "message": "Bugfix: Use a new thread to handle SIGUSR1, in case the signal handler is called with locks held\n\nSpecifically, flushing stdout uses a lock, and when SIGUSR1 tries to write too it just blocked forever :(\n", "proba": 5.457592351376661e-07} {"commit": "b0a2b0df2bdf43cd8c4893bc6f66b9eb51f5f2ae", "message": "Generate uuid's in the ConfigWrapper.process instead of __init__.\n\nThis was causing clashes in the updates application.\n", "proba": 3.283060152625694e-07} {"commit": "9d6bd9a5cd6860d129168f0603d539c019537455", "message": "fix contracts\n", "proba": 1.6117840004881145e-06} {"commit": "f1a71098918b50eaf2a25a20c01e3f4656c0532c", "message": "Add exception_handler type for start_listener_thread docstring", "proba": 1.1273027666902635e-06} {"commit": "ca4ac4e64004089acd647453cbf562218a47e849", "message": "support custom widgets on referencefields\n", "proba": 2.513970969175716e-07} {"commit": "55c87a1eaebc1c4292b341cd4c17f313d702d10d", "message": "Document setting directive.\n", "proba": 1.8880396623899287e-07} {"commit": "395285996559902da1357f65b0feb0561d718505", "message": "print debugging\n", "proba": 2.3997086827876046e-05} {"commit": "3e45758663b3acd612b7ee5dc9901cfea372ae46", "message": "Removing duplicate import\n", "proba": 1.7340898921247572e-06} {"commit": "a515df1ace1ffb74a0696e8b70e1483eeb4a674a", "message": "Add docstrings, raise StopWordError, define the cache system localy\n", "proba": 3.385115121545823e-07} {"commit": "1d259aef7da2b0af6d37af9ebfd2386e927d52df", "message": "[project @ extensions.ax.FetchResponse.fromSuccessResponse: return new instance, not None.]\nalso remove code duplicated from SuccessResponse.extensionResponse.\n", "proba": 1.4249063440274767e-07} {"commit": "3829b1936474993ee0f4d813f69e7b52da7af1f7", "message": "json2dts: fix SDCard dts (thanks @antmicro, @gsomlo).\n", "proba": 1.0976193465239703e-07} {"commit": "f5378106a6312f16d79ab30c0044be3224c73df1", "message": "[project @ Remove need to pass server_url in to getRetryUrl]\n", "proba": 1.0739510969415278e-07} {"commit": "7f14a96a0654320cf861f124a999101a79d74cf4", "message": "group: Fixes for 3-analysis-levels\n\n- Fix referencing \"session_list\" rather than \"sessions\".\n- Fixes to N=1 group-level analysis processing following testing.\n- Fix generating list of b-values prior to using the list of class members to check for requisite input files.\n- Create output \"connectome\" sub-directory.\n", "proba": 2.6684321596803784e-07} {"commit": "73b316c42dcbd6d223785d06ed4dbda668f25921", "message": "[project @ server.server.UntrustedReturnURL.__str__: fix]\n", "proba": 1.8737631535259425e-07} {"commit": "bcfb44558a85e2ddd358bd68e5770aa4bf8e4d4c", "message": "Added documentation for the types of features\n", "proba": 1.5867807690028712e-07} {"commit": "e4e35c05b536743071cf86f60a42aa3a4c472410", "message": "Disabled Tastypie.\n", "proba": 1.6309810746406583e-07} {"commit": "5e645081769a54b6b94a07ffde875b61b90e1d76", "message": "Add documentation about MDTraj problem with non-standard water atom naming\n", "proba": 1.3522544861643837e-07} {"commit": "8de9bfcd2b2b484cf3a47a47ed2c5046f0b1be0c", "message": "update rules_docker to pin after fixes for bazel head (#432)\n\n", "proba": 1.0322435173293343e-07} {"commit": "9fed33984e13ac15c7a17ca245ce12eb9682b8e1", "message": "fixes bug in proflie factory\n", "proba": 2.3561365480873064e-07} {"commit": "2e81e94f3991fb472d07692903c0a63413b96a36", "message": "fix bug comparing costs in when calculating route vectors\n", "proba": 3.4522099667810835e-07} {"commit": "39ebcfbe60b61970f766329ad326a063a569ceb5", "message": "fix issue with remote network being omitted in nml topology\n", "proba": 1.940796323651739e-07} {"commit": "6b73f178307e72f12eaa2f757820b2a39fece2a6", "message": "Comment for \"Detects nothing\" test", "proba": 2.622561225962272e-07} {"commit": "46bcb1453255b15c0b6e5829f64f38d986e422bd", "message": "Removed unused tokens\n", "proba": 9.136485346061818e-07} {"commit": "66cad68c324bdf85578d0d93b28a64a161706ff6", "message": "(plate-solving) Fix saving Astrometry.net annotation\n\nSince upgrading Pillow, saving JPGs in RGBA mode is not supported\n", "proba": 1.1700957003313306e-07} {"commit": "377cb24259331e394b7f837e306a9cea324ef186", "message": "Comment out test that fails on s390.\n\nIt already failed on windows, so seems flaky, and needs\nmore investigation.\n", "proba": 1.0244410475479526e-07} {"commit": "9e77b07e667ee05bb53d9dbcb65a8b236b02dcdf", "message": "Send the user object to the remider's templates.\n", "proba": 1.0930669702702289e-07} {"commit": "6b00fad92cd912b2a0010fafd8f2c466c2d38215", "message": "[FIX] use a nonserialized cursor for updating user groups\n", "proba": 2.9957070069031033e-07} {"commit": "8744317bb172b03f053785a4e7e896fe1c8aeeb7", "message": "Fix PrimitiveType enum\n\nSigned-off-by: Squareys <0f6a03d4883e012ba4cb2c581a68f35544703cd6@googlemail.com>\n", "proba": 4.7396139279953786e-07} {"commit": "487ac91791bb59e042c201171b3497e2a7173937", "message": "Fixed Python 2.3 compatibility (thanks to Julian Scheid for suggestion).\n", "proba": 1.0136653116887828e-07} {"commit": "4c41fb725121a9c9be6b3aea260865f168e5be0c", "message": "Mesmo quando n\u00e3o \u00e9 renomeia se osam as nari\u00e1veis nova_..., de modo que a transa\u00e7\u00e3o de entrada sempre \u00e9 com essas vari\u00e1veis.\n", "proba": 2.0701895664387848e-07} {"commit": "c4cd190e2fb61d96c8366452f307af6c25349f25", "message": "I am extending this to long text so we can import a complete class a reverse zone without truncating the audit log\n", "proba": 9.923684046952985e-06} {"commit": "9c5586566f55dd69a94aa4e69a9477d57aa6ad10", "message": "catch socket errors in ssh connect\n", "proba": 7.437168960677809e-07} {"commit": "8446c122ffb010e47002ab3a8ccc3f23394f7b28", "message": "[FIX] Robust reading of trading results\n\nVirtualbox copyfrom command sometimes produces spurious characters at the\nend of the copied file.\n\nThese characters have to be skipped.\n", "proba": 1.038436323597125e-07} {"commit": "68b9b570b49543270524b91ac53f853da54d0516", "message": "Modified ComputeHaralickFeatures.py - three parameters: offsets, graylimits, and numlevels, are updated.\n", "proba": 1.0083257961923664e-07} {"commit": "ec9cb0f1ae8e57302e273e56661c124f704011da", "message": "Filled out the docstring comment for numeric_string_cmp()\n", "proba": 8.496429018123308e-07} {"commit": "c8425ec91afc8811d35981d1f3fdeb8057736c7c", "message": "Rename\n", "proba": 1.8092045138473623e-05} {"commit": "14e609b9e5ff0e5f2cbd1e54cdd1d4c65d4afdd6", "message": "Fixed bug in widgets\n", "proba": 7.167427611420862e-07} {"commit": "48482c4d3fa4a85d5f4543697f0e1df3582ab960", "message": "Test that control of locations are changing after update_player_positions\n", "proba": 3.2720794251872576e-07} {"commit": "ed60ad81d75979db5d61903726d8f8db06c9eaf7", "message": "Bake database queries for /messages performance.\n\nSummary:\nThe /messages endpoint is popular, and backed by a relatively complicated\nschema. By \"baking\" and caching the compiled SQL query, we can actually save a\nsubstantial amount of API CPU, especially for queries where the result set is\nsmall (e.g., getting messages on a single thread, or messages from the past few\nhours).\n\nTest Plan: Covered by unit tests in tests/api/test_filtering.py.\n\nReviewers: khamidou, spang\n\nReviewed By: spang\n\nSubscribers: kav-ya\n\nDifferential Revision: https://phab.nylas.com/D1867\n", "proba": 5.20458399932977e-07} {"commit": "09c8b4ba4cc87183678ce3b51988355822ba4fc6", "message": "[sale_order_confirm] fix ticket 11276\n", "proba": 1.321126546827145e-05} {"commit": "d87b34a509e0d1cc8826af2d4959ea24e2a47d4d", "message": "Add settings option to hep\n", "proba": 5.514714871424076e-07} {"commit": "638f0681ba04760020e18bf9d625a781730be035", "message": "Removed modoboa-stats.\n", "proba": 1.2085909872894263e-07} {"commit": "a48e2e1cd7589c50b8d15d1c84e40a9269ec1203", "message": "[FIX] sale_order_line_page_size: wrong website key on manifest\n", "proba": 7.80971049607615e-07} {"commit": "64599b4bc3b354a299f4181f96d323b54c0ed996", "message": "[FIX] sale_packaging_price: Fix flake8.\n", "proba": 1.4493288347239286e-07} {"commit": "a6815c640496d3885ae27f040d2b3a0eb8a386c8", "message": "Added host-config update.\n", "proba": 1.1685077794254539e-07} {"commit": "544df23655c02934d33571f6a924a322f75c2277", "message": "[ShareonlineBiz] Probable solution for the 'No info available' message\n", "proba": 1.9497177561333956e-07} {"commit": "f7c76b1e1d9244d48b6c83733f18cf691d612152", "message": "remove support specifically for image files because images can also have no extension\n", "proba": 3.899168916632334e-07} {"commit": "45a5018ae1d052efbbdb7f38deacaa264027b577", "message": "Write code to extract audio features\n", "proba": 5.5911896197358146e-05} {"commit": "127c9fc8770d31de04101339813ed8d09a1a8dd4", "message": "Add statistics support for SMA energy sensors (#53589)\n\n", "proba": 1.0703131891887097e-07} {"commit": "6f7d051a0ee765dbe55cc0f8a84c37c28667f153", "message": "Fix cachekey on all_images Post model\n", "proba": 2.3311754659971484e-07} {"commit": "9cee65c4be5231da5fa6becd8a0adaf45ee8d12c", "message": "Parametrize satrf constructor.\n", "proba": 1.6291978965909948e-07} {"commit": "cde3f670c2fe3c20944354a1d0cae8a36d444b5f", "message": "pylint\n", "proba": 2.1026107788202353e-06} {"commit": "c23f8a963a1f45bc9dbc4367dfae5f27fec3ce29", "message": "Fixes URL in setup info\n", "proba": 1.7402082619355497e-07} {"commit": "3aff66a42fefd33508d82481657fbfefbed67f16", "message": "Add field hat on articles.article\n", "proba": 8.513916895935836e-07} {"commit": "1eb0c41a57066096a6f353d781d7bb606dd918ba", "message": "google_iap func now returns the entire token response\n", "proba": 2.5092859345932084e-07} {"commit": "3db296cba019e958e1343b6764879537fc901284", "message": "Fix save long_slug on channel model\n", "proba": 3.0495846203848487e-07} {"commit": "3ae443efb4cf586a3d48dbb78c75e57befe3fb9b", "message": "fix minor docstring typo in gym/core.py (#225)\n\n", "proba": 6.288735789894417e-07} {"commit": "bd9984343e66494afd4c5cb7da355096c2906262", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "d4794205c0fd20a3523f5218edb7d9d4b3f6d056", "message": "Fix #695: discrepancy with default parameter names in list_network_attachments() (#701)\n\nFix #695: discrepancy with default parameter names in list_network_attachments() \r\nCloses. Fixes #695 ", "proba": 1.3428747251964523e-06} {"commit": "62035c507e80ef628486ac57d0ed3d4a7a831597", "message": "Fix thumbor encrypted url generate\n", "proba": 0.0024746598210185766} {"commit": "a4c2d9d3c93b27c3893131eb3792989116eb67a3", "message": "cosmit\n", "proba": 1.9646624878078e-06} {"commit": "b8154ee61eb173ab463853733e2bfe987fcb92b3", "message": "fix copy paste error in docstring\n", "proba": 3.7778491446260887e-07} {"commit": "8488abf7a4174bb8fcf93967b80a5c73a6d4ca46", "message": "Use 'new' Python string formatting\n", "proba": 0.9984723925590515} {"commit": "6304b4352f0a62487685d854acf57283ccbfb81f", "message": "DOC: document eps in least_angle better\n", "proba": 1.4478964658337645e-06} {"commit": "01e85b7d90441a6710f839a31e1435a69266d40a", "message": "Implement auto-trimming #20\n", "proba": 9.24206744912226e-07} {"commit": "e2bc21bcee09c6d8c776c76f4f98b75a7a98644b", "message": "added auto_now_add for product.Item\n", "proba": 6.012554081280541e-07} {"commit": "b18bf11ae6ba7e07494258f0defee2643682ce01", "message": "chore: remove comment\n", "proba": 1.4757877124793595e-06} {"commit": "389f265aef430a3c96d558b886c05a84815320a0", "message": "Added debug\n", "proba": 1.3325015402188e-07} {"commit": "745de21e57a3c7eb6412bb804b3916aebda02909", "message": "pt unicode bug fix in number parse\n", "proba": 2.6879120014200453e-06} {"commit": "f114d81e84bfc0b2de709db86f38dd0896c87f53", "message": "reflection table for testing background modeling", "proba": 2.0047157534008875e-07} {"commit": "afd396e6eec01dbd09397cb6a968f3df4c748a22", "message": "codestyle: autoformat", "proba": 0.004085684195160866} {"commit": "0a827109bfd037c5631a4bd61330a6f90e20e730", "message": "Make sure isp and network tags get populated with ASN/domain info. Improve output", "proba": 1.6803228675144055e-07} {"commit": "c29c1fa85680ca7e6ff33f5cf21eb543bcc50358", "message": "Regex fixed\n\nregex modified to accept unit 'serving(s)'", "proba": 1.3074004812096973e-07} {"commit": "52d3c0810b319a19316f9c4cf3a408333bac04ba", "message": "_setDirLock after unit is converted to rtl", "proba": 4.11211090067809e-07} {"commit": "c7fbb5f777ca103b7ff70d8a99816cc3c41d64ae", "message": "Don't reset channel data if it exists already\n", "proba": 1.6599800289895938e-07} {"commit": "9fda87bbecba5dcf3880b2bd17f4b86f1bdd6e28", "message": "make always_comb inherit from always\n", "proba": 2.033391865552403e-05} {"commit": "f8c81a913fabc3af5cc6ce1ce102824b56da23bb", "message": "Add listEBBports function\n", "proba": 3.0551035479220445e-07} {"commit": "ad429fc16e89a05d1c445c4b3cd276d36042774b", "message": "Remove unused file\n\nIt was copied from carrasco.in\n", "proba": 3.31611630599582e-07} {"commit": "a34d94d19f7b49ef60dd2cccfe03657a11907bad", "message": "Mass conversion of variables to new naming scheme.", "proba": 1.1456095450057546e-07} {"commit": "573a8af4713a87a6a5d38f30c3a9dd7ac8b734a6", "message": "remove df_index paramter for query method (not relevant)\n", "proba": 1.359837966674604e-07} {"commit": "dfb16e47b7e4727636e290a452ec28cd0af6d32a", "message": "adds token cleanup\n", "proba": 3.146334961456887e-07} {"commit": "c64ecde92a1b4fd47e3f9112c3c5f3184c8ca181", "message": "Added correction matrix between nif and blender matrix systems.", "proba": 1.0397503302783662e-07} {"commit": "1b7e8bef5e5f70ff9d3d2fe71e27abe4d87795b6", "message": "If only one application is activated, its name is displayed into the prompt\n", "proba": 3.6592291507986374e-07} {"commit": "974353521e9a6712287eb5d5ebf73c540c755c5e", "message": "* Add a categories association proxy\n\n Allows us to directly reference the commodity categories that affect an\n event rather than having to know we have an intermediate table\n\n* Rework the Schema caching. The sqlalchemy declarative base contains\n the schema if defined so we need to check that rather than the module\n globals.\n", "proba": 1.0102566250225209e-07} {"commit": "35927e4dc4ab6e00855f172aa11ab38bceb5c4dc", "message": "[#62] Change locaition of matplotlib import since we don't officialy want it\n", "proba": 1.1172799929681787e-07} {"commit": "368ebe768db001696ce5556f301c6cfe5c6a9445", "message": "corrected trim() call, removed misplaced lower() call\n", "proba": 1.2991628182135173e-06} {"commit": "41b772fc09cd839137dabe6648b11798a43fc1e4", "message": "Make EMC SMI-S driver unit tests faster.\n\nSome of EMC SMI-S driver unit tests are very slow.\nThis patch uses a fake_sleep in unit tests to return right away.\n\nChange-Id: Ia8a429799066ccde51079be68408498805869774\nCloses-Bug: #1285927\n", "proba": 2.0725443050650938e-07} {"commit": "3023deacb4bf151865d7cb5871beeea273480a4a", "message": "Change hashSHA1 to function\n", "proba": 0.0054977694526314735} {"commit": "97b22ff631c6f6abd48864080b446e5f59bed0a5", "message": "repair the register printer\n", "proba": 4.774773856297543e-07} {"commit": "87bb2c793d604f1c32c22da601824000ba85b57d", "message": "Fix dialog spawning\n", "proba": 6.281207447500492e-07} {"commit": "1e384670bcf610223b22991bc9fe65db141fe724", "message": "removes task view logic\n", "proba": 5.167261042515747e-05} {"commit": "73bb5d4e2ccd731d8f36b09c32eaf05ea8faedda", "message": "Catch serveral cases of \"if not x\"\n\nWe really mean, \"if x is None\" -- so as to avoid errors in cases when x is 0.0.\n\nAlso, be sure to return float versions even when returning the unchanged values.\n", "proba": 1.2331007326338295e-07} {"commit": "c638c83f82ed76f57f8035637f25f5b664df97ca", "message": "Fix default value problem\n", "proba": 2.2097330656833947e-05} {"commit": "9f7154a72595566bbe0844e86d2aef7a21579fcd", "message": "Clean up code\n", "proba": 3.5193793337384705e-06} {"commit": "b6378153bc42a03e477e66ca35628dd81e7b38a2", "message": "linting\n", "proba": 9.858867997536436e-07} {"commit": "999643b233787d9f5323eac976dbe18bf2f0be16", "message": "Updated changes suggested by reviewers.\n", "proba": 1.0849682752223089e-07} {"commit": "6394c568ce583e470d2d751fceca08bce3e46731", "message": "Update version.py", "proba": 8.042086392379133e-07} {"commit": "e2974bb2e6891b552655a41a8cac29796c5a2574", "message": "Fixed videos\n", "proba": 1.8800673728947004e-07} {"commit": "881be5ea52e5743015b80bd25a0b2fdcaa7588ad", "message": "fix autoinstall crash with no network\n", "proba": 3.781093198540475e-07} {"commit": "3bd703acaf2055eb28f9d4b7a0b241b4d2c1f7ea", "message": "Import bug fix for attacks_tf.py", "proba": 3.922651217180828e-07} {"commit": "416b8209879034c6807d20b97a549abbb658c5e3", "message": "Fixed solution\n", "proba": 4.905114678876998e-07} {"commit": "84bec5635f494c6d0f417a759c1300d990b37dee", "message": "Add unit tests for file attachments.\n\nWe thoroughly test the operations around file attachments and file\nattachment comments. These tests are all based on the screenshot\nunit tests.\n", "proba": 1.0152093921078631e-07} {"commit": "187fd49d665350b12943a956c3597ca79ff1f6c8", "message": "Remove old comments\n", "proba": 1.6110035971905745e-07} {"commit": "bd62611117f9fe1578021115c53542c7dcf05008", "message": "Skip signal processing when loading cables from fixtures\n", "proba": 1.310325075110086e-07} {"commit": "66d5a2d1ab463c564025038f726c8eb1d31c8f67", "message": "implemented more statistics: pageranks, triad census, distances\n", "proba": 1.3004678578454332e-07} {"commit": "560fc756aa87c06c563f3255a4ec5c2002538fd4", "message": "fix Header docs\n", "proba": 5.722487230741535e-07} {"commit": "e04118941fb7222bb18e968d3445c5f6c14185a8", "message": "Added new version of local_space_available that works under Windows (#1213)\n\n", "proba": 1.0421864971021932e-07} {"commit": "36b008367283d0f5c04ddc4aebab7a44cc8757b9", "message": "removed popLabel in precond and postcond test message\n", "proba": 1.2645840286040766e-07} {"commit": "184cc3d652ece7728763f613aaa776b08aa9afaa", "message": "Using the Activity to set the flux of Calcium. Maybe shuold I move to an ExpressionFlux or even a Python Process?\n", "proba": 1.0804044592305218e-07} {"commit": "1bce18869d8127c3cc89b8e4674da118e18a1c3a", "message": "[new_pymtl] fix missing ctx in BitSlice/ArrayIdx\n", "proba": 2.412124331385712e-06} {"commit": "34e51e41a83984123c21b32336f527fb2dfcd6fe", "message": "Add \\ifdim parsing\n", "proba": 1.8853852452593856e-06} {"commit": "bbf0f71b42a1fb51481baf131a2ebc232d08dd9e", "message": "added the rest of the formats, added target format argument\n", "proba": 2.923433441992529e-07} {"commit": "77c5d153caebbfbcbe393c402249d61da428d059", "message": "Tweak funbind by making sure js_interesting understands the updated output by binaryen version 68.\n", "proba": 9.864137240356285e-08} {"commit": "20cbabeab3436882ecb5fea8a7a2afc039bdbede", "message": "object __new__ call modified in ngdb\n", "proba": 4.939626160194166e-05} {"commit": "a8b454aa0a2faac1247fbb807fab5b9c3ccb981c", "message": "An RLock isn't needed here\n", "proba": 1.5712149092905747e-07} {"commit": "1fafd8b614ba68f551e6249dc25dc19052e5001b", "message": "db issue\n", "proba": 5.996669187879888e-07} {"commit": "a78e8b6987b2d997f7a65a61d9619ea6bfb4de57", "message": "graphing udate\n", "proba": 1.0795625939863385e-06} {"commit": "0a037839306eacbece58da898cbbc872fd7866e4", "message": "ticket #512: when adding capacity to links, pick the source and dest IDs so they are on different AMs: look at the 2+ interfaces and compare the AM against the first we picked\n", "proba": 1.1694040580323417e-07} {"commit": "b4b10892772e29301b56516472d51375f9ed1f74", "message": "object new args issue\n", "proba": 6.745657401552307e-07} {"commit": "307388299685d9f98038072735e8c678f3aa4435", "message": "Cxx: handle warnings.\n", "proba": 1.2835481300044194e-07} {"commit": "651e054c47ab68f7993924c96adb832e3befdf2d", "message": "Fix esl-sfetch full region command\n", "proba": 2.4756880520726554e-05} {"commit": "3096e655df6e01ef2a33e4b76a1d117275cf9cd5", "message": "rename jj handler to ImportJob and remove Gbizcompanies\n\n\nFormer-commit-id: 78b3dca4f36a3cdcf183379c492080a4ddc0d234 [formerly 21236ee841756e1bb6c6f4b0441a2cea594322bf] [formerly 3cea03843f32656cd2dea9d336f7b92e0a8aa878 [formerly 0b6c8d9f55a42bf2ea9cefecc35900b7f6d8f89c]]\nFormer-commit-id: 177988ee81ce19d6b611f101743563776284563d [formerly d9e586d9c3164811c8e5071fbb622ba4df64dfa9]\nFormer-commit-id: 3045373f9e7a48b74780847e5af9031155a43f60", "proba": 6.590716111531947e-06} {"commit": "1a231c063f5981efecf814f7009b062958c9dae5", "message": "Patch over tagged_parse_sents for Stanford nndep\n\nThe neural dependency parser doesn't support passing in\npre-specified tags at the command line. Fall back to ignoring\nthem rather than crash or spit out bogus trees.\n", "proba": 1.0645311476764618e-07} {"commit": "d1d24e183803b1238d17b3b64b63c12320cd0926", "message": "Fix tests\n", "proba": 2.8394715627655387e-06} {"commit": "7940e4c092c0a54cd03c3781808682bd7aedc281", "message": "nanshe/imp/segment.py: When removing labels in `ExtendedRegionProps`, there is no need to make a copy of the properties array after using masked indexing as that will already produce a copy.\n", "proba": 1.0694235186292644e-07} {"commit": "e756ed1210c3f1638dd9e745c1ddf0845b4341dd", "message": "Use kinematic DEs in calculations of kanes_equations.\n\nSubstitute expressions for qdot's when calculating generalized active\nforces/inertias. This allows the system formulation to be explicitly\nindependent of generalized speeds.\n", "proba": 1.1461975191195961e-07} {"commit": "8d9486e7d379bb97ebcb2cb1f87da47e1d11e027", "message": "/setprivacy in groups, update to supergroup fix\n", "proba": 1.213270337530048e-07} {"commit": "1e7b3b2515cfb90375c105b572f5033b71632f9a", "message": "treat Irish (ga) the same as French and Italian\n\nmatches current moses tokeniser", "proba": 3.1495110874857346e-07} {"commit": "c9ba89a28c4b452f92373791a0eaeaded5e58413", "message": "Flesh out another main-module skiptest\n", "proba": 4.736234131996753e-06} {"commit": "eaf85e8c905081de5bc883aa2c411186adfdf054", "message": "removing duplicate code. Mutually exclusive options handled by argparse\n", "proba": 2.063882902803016e-06} {"commit": "2e2d1956344f332c5929f38ad2108ed1dddb8392", "message": "nanshe/imp/segment.py: Wrap code.\n", "proba": 1.3349894345537905e-07} {"commit": "303218b0748b65ea45d1876c475e2ee49eee0936", "message": "bug - images fat finger\n", "proba": 1.1835362556666951e-07} {"commit": "e10eb09c59605fbc02a40f2c466de196024ae230", "message": "Catch zero-division exception when N == count_a in punkt.py\n", "proba": 8.223074109992012e-05} {"commit": "807b432c8772333785de659bf65092eaa050fbf3", "message": "Player gold is now kept in his inventory and displayed when the inventory is printed.\n", "proba": 9.843726189728841e-08} {"commit": "4d37c23e74b6da7369b05f6f6c1e16c6871b87b9", "message": "xnumpy: Fix `generate_contour_fast` to test itself.\n", "proba": 1.2409660143930523e-07} {"commit": "49ea186d5d5148ad436e2716372f98ad9736c68a", "message": "change name of main job\n", "proba": 0.0003395121020730585} {"commit": "52dc083e25a4ec26e61fa694ef1595fab4e63890", "message": "File loader optimization.\n", "proba": 1.9965402486832318e-07} {"commit": "1425d3bfc3bf5c0df4488e2065ebac387dd28b00", "message": "fix pep8 errors\n", "proba": 3.09001152345445e-05} {"commit": "e0d1e8b9937062035972adc238406ea66d1d5ddb", "message": "BUG: ng.pipe.write_table works in Python 3\n", "proba": 1.4919382920197677e-06} {"commit": "e549f9b15ba2ff6a6bbf85e7e338581bd47739ad", "message": "Remove per-field protection\n", "proba": 5.052336859989737e-07} {"commit": "e58fb3a0a2e563ef269af2074509872e166bab4b", "message": "False is not True. never\n", "proba": 0.9999995231628418} {"commit": "0383221dfa3ce50500fc98729ddbb3457e0cdb0e", "message": "Change the output key open_config to yang_message\n\nCurrently we output the model under the key `open_config`, but as you\ncan also use ietf models this doesn't make sense, therefore changing to\n`yang_message`. I have also changed `model_name` to `yang_model`.\n", "proba": 2.061167094780103e-07} {"commit": "40fb74be90e7eb048923e21ec3d0bebb6d248341", "message": "Generate more metrics from the messages at the server process level\n", "proba": 9.930602391250432e-05} {"commit": "63d50494806f7584f1a0d9941f3cb9a8321996c6", "message": "incremented version\n", "proba": 7.436139276251197e-05} {"commit": "ab8dd2638f5aeee67159d87e653408ddd908bb5f", "message": "handles dates and inner rings\n", "proba": 2.2024026691269682e-07} {"commit": "a3ddebae7ff1346806d1a52abed12dae9969114f", "message": "state API fix\n", "proba": 3.5399494890953065e-07} {"commit": "faed1c654693bcd72293b7354da9b7ebb19e7660", "message": "Get rid of separate async semantics\n", "proba": 2.039635546680074e-06} {"commit": "dab74c71401864372b33672ccbb697a097f7e0f2", "message": "fixed file_type_detailed calcprop\n", "proba": 6.891152111165866e-07} {"commit": "9497268bb4e3fb125756c31ba5f19c5f841a4a44", "message": "fixed merge issues with types/file\n", "proba": 3.179339103098755e-07} {"commit": "a41771b3fcddd34b10395cf7e972088c40f1c924", "message": "Got one of the headnode-freeze related tests to pass.\n", "proba": 1.0003243744449719e-07} {"commit": "09f8f81f30ffdc6ceb1729922637ff81bfde1f89", "message": "Revert \"last commit bc pep8 problems\"\n\nThis reverts commit 2eb740a6c618293b7f56eef605a56924dfe0c990.\n", "proba": 2.151603553102177e-07} {"commit": "53e96eca07ed29467f3418e9d41098caa59c8128", "message": "Cli auth refactor (#618)\n\n* Remove trailing whitespace\r\n\r\n* Refactor cli auth logic\r\n\r\nWe now configure an http client on startup, rather than having\r\ndo_request work out the authentication details and modify the request\r\nitself. This will make it easier to integrate support for new\r\nauthentication backends. For example, python-keystoneclient provides a\r\nsimilar interface, so we can set http_client to a keystone client and\r\nthings will \"just work.\"\r\n", "proba": 1.2412156991103984e-07} {"commit": "f77082084643626f568d81a7c8ba3d9b422971aa", "message": "Fix some undefined variables\n", "proba": 0.8223702907562256} {"commit": "b998a15a1e25b2a548340fa2418990b1de9f289c", "message": "fix bugs on salesforce mark as lead api\n\n\nFormer-commit-id: 7bb9c3460b680d9abd3765fc12b0bfdfb9f33dc9 [formerly 4cd7b92feee59e23a18394183d63ef51ea8e86d7] [formerly e2ab21a16bb5d8c922093efb98ec1b3e8f21d160 [formerly d6c0b8e03e620c46303d788205f4868670ed6278]]\nFormer-commit-id: aed67512aaad69ff0c26ee45a2d03cc449bd6c92 [formerly 66cc0379ccdc6452920327d5eb7fb0c29c739e49]\nFormer-commit-id: 4efb48b75d81a4727b9a2bd9f1af7532a4bd4163", "proba": 0.000581817701458931} {"commit": "ac0a91557a3df57a36f2ad166c737a1c04b19e2e", "message": "Fix bug in skapur client\n", "proba": 3.602449965001142e-07} {"commit": "dcfcb781842f78e71f388ae6f76ca70425a63315", "message": "Catching FatalErrors thrown by the config file\n", "proba": 2.3832508588839119e-07} {"commit": "bf6cf5661ee08f8d0545fbc4e8c61cdd698270bf", "message": "make label, mimetype, and logmessage optional on modifyDatastream\n\ngit-svn-id: bb2ed31f08aebe2c251d311350391bbcccfc1c3a@222 1168706f-7e1d-44e7-b746-9e172b5a9a2f\n", "proba": 1.7562783796165604e-06} {"commit": "0dae2fbd63c11fdcbb4a656558521ddfc0bfb84f", "message": "fix: bucket name, logging, access group as property\n", "proba": 1.3783497934127809e-06} {"commit": "225b233542804aa63055dc053a11db23de9dcc25", "message": "Fix for the condition where cleaned_data would not have these keys\n\nNot sure how it can happen, but it DID happen\n", "proba": 6.58529024804011e-05} {"commit": "6c53c838261645ab193416a1ddd7edd1bcb42214", "message": "Whops, let's delete servers for real now.\n", "proba": 1.0147911666535947e-07} {"commit": "b486e0ff52ff5081416b9557fa769d4a67c6487d", "message": "Make sure event handler errors are also logged\n", "proba": 1.9068188805704267e-07} {"commit": "d1f4a0382f75fb5d840b7807fe60fec6e78d11df", "message": "removed _message_to_lambda method\n", "proba": 0.0001780558959580958} {"commit": "f7e07a69cc3394a85db7b8dfc9898285a1cf6233", "message": "restore arithmetic\n", "proba": 0.998187243938446} {"commit": "1dfbb6d5b41b1c47f332e259a1c78bf0f65c765b", "message": "Type annotations\n", "proba": 7.801506853866158e-07} {"commit": "283a8df0486e84b3d4aa059a3c1d6a540cfb9dd8", "message": "Switched to relative import for consistency\n", "proba": 2.6059518631882383e-07} {"commit": "97ee06712243167b2e7cabebdcad1a20f20e0ab6", "message": "Added a couple more lazy loaders and the attrs test now passes\n", "proba": 1.1259398746688021e-07} {"commit": "e2ffb7342b03bb1f2849be51b32834e48386373a", "message": "Add b command for lulz\n", "proba": 7.753675163257867e-06} {"commit": "9183cffc5c3266024ac0b14a20bb93841d0cbeb2", "message": "Fixing simulation logic\n\n- Checking if marks received for a module are not lower than passing\nminimum\n", "proba": 1.4797068104144273e-07} {"commit": "10b35e3545001f1e98f92942e7f7ba49e915c27a", "message": "follow-up 0abb38cf51daca597997e7baaff5385659168bad\n", "proba": 1.020692934616818e-06} {"commit": "1cbc24210f2854dbd1e8880eb9fd35a3e4fb5e56", "message": "added todos\n", "proba": 1.3536583765016985e-07} {"commit": "3227057f3667d18128ff37db7586d461646b4573", "message": "Call save_revision in copy to all and translate status strings in checks\n", "proba": 1.2450402664399007e-07} {"commit": "83c8740b910e178d93fc26b02d3557d4ad36bbd3", "message": "Add informations in subscriptions `attributes`\n", "proba": 1.6130637447986373e-07} {"commit": "0e43a6e6c4d8b55d5943c40940c6b8b26b8212ef", "message": "create folder if it doesn't exist\n", "proba": 1.79720575488318e-06} {"commit": "caa90fd8cff42dfac1300267ef9740fb3e54fd22", "message": "basic commands to parse\n", "proba": 1.6126143691508332e-06} {"commit": "6d128055eaa7799c20e8ace3f3a3bb0ce1304354", "message": "fix TabularSplit bug\n", "proba": 2.7647513434203574e-07} {"commit": "bda8f56d8a64d9b1768782c2e161dd32d77c09ed", "message": "fix #36 on github\n\nTrackerServer: handle StopTrackerMessage properly\n", "proba": 1.3703099455142365e-07} {"commit": "bd2e66303efce3bd0a960670c92b387d78c30bb8", "message": "Fix redefining argument with the local name 'source'\n", "proba": 0.00017935686628334224} {"commit": "32bd5114b42b106ec35691c61b2b137697599a06", "message": "Distinguish state transitions in the catalogue by length instead of variable count to net a larger amount of interesting inputs\n", "proba": 2.932914071607229e-07} {"commit": "cf21a319f57f26d0cb969d3fe6dd2e047971dc44", "message": "Initialize utf_content\n", "proba": 4.34684261563234e-05} {"commit": "4db2528576b4d218d95818ff51d25c20aafa465a", "message": "CA-139739: encode NFS shares\n\nSigned-off-by: Thanos Makatos \nReviewed-by: Chandrika Srinivasan \nImported-by: Thanos Makatos \n\n(cherry picked from commit 2508b267a717391c92a2caecc6d826f600564b15)\n", "proba": 1.709100132529784e-07} {"commit": "9bfb8482a1a6ae6571c14685157b7a317c0d494f", "message": "Update interface for free algebra normal ordering\n\nThe do-nothing semantics is kept, just more redundancy is added to the\ninterface, like self and keyword arguments, to be consistent with\nsubclasses.\n", "proba": 1.0468064459701054e-07} {"commit": "c8979ccc057d1d03765b69db40c2bd5a085dcbb3", "message": "Simplify tensor equality comparison\n\nThe zip operation of Spark can be very tricky. It is not worthy the\ntrouble to make it working, since this function is mostly only used for\nsmall testing and debugging. So now the equality comparison is made to\nbe finished on the driver locally.\n", "proba": 1.1082554607355632e-07} {"commit": "98a78dc9f0dcc3d425f72216a9ea57d26dcfb100", "message": "Need to pass the site variable to the drush_clear_cache() function when it's called from within another function.\n", "proba": 1.0678418504994625e-07} {"commit": "2fe22630c27bde3d185f4f6c663b16d1ce2910ac", "message": "Add tests for unfurl_auto_link_display with mailto\n", "proba": 2.6054200930047955e-07} {"commit": "446e81b8037b79c4ef2ebea4ec359eb00f26d339", "message": "fixing bug that was observed only during heavy job contention\nthis return inside the except block was just out of sync with the\nmore common execution path.\n", "proba": 1.063100611986556e-07} {"commit": "6cfc76dd325350f39e66ff4399ddf138396b220c", "message": "Added 'name' field to 'account.sdd.mandate'\n\nThis fields makes it easier to pick mandates in the SEPA generation wizard.\n", "proba": 1.0695336527533073e-07} {"commit": "9c2576e7669ee9783e2cdeb2f30c42b09a3da86b", "message": "MAINT: remove old commented out code\n", "proba": 3.671120509807224e-07} {"commit": "04c7fd13b2b39205450934819d66418258a334cb", "message": "Update crawlItunesStore.py\n\nHi anuvrat,\r\n\r\nGreat project!\r\n\r\nI revised some part in your code which could result in errors. \r\n\r\nYou could check and see if it needs to be updated.\r\n\r\nRegards,\r\nenboz", "proba": 1.0375236314530412e-07} {"commit": "b85eac456e314a77460f040a18ed2d2b0612b985", "message": "allowing service accounts\n", "proba": 2.1425613283554412e-07} {"commit": "bedf876fe6d9d2ce862dd484564f5fd375b5c4af", "message": "fixed 'shot_dashboard' and 'on_off_court'\n", "proba": 4.2466584204703395e-07} {"commit": "42fc67aef4c6bb3ece3ac05789a7919b57c531c9", "message": "custom init moved to DOMElement class. _ data follows.\n", "proba": 1.1403241018115295e-07} {"commit": "88fb8a28cca2b959e66959df0ab5ac5c0eab4f6e", "message": "update the script to allow argument passing", "proba": 5.922850050410489e-07} {"commit": "948486254b73232f9995bd64cf61071bd47500ce", "message": "added environment var cheching to enable different testsfor StreamedMediaChannel\n\n\n20051118094535-d056e-53bf355069922ce89b498d99e412024051888855.gz\n", "proba": 1.4102074885613547e-07} {"commit": "adb29579b30c5919829bad5f60b04afa74e136c6", "message": "generate data function\n", "proba": 0.9999995231628418} {"commit": "faf51eef4d831f71fe2e70630173ee48d7f82df2", "message": "add user output should be booleans", "proba": 0.9999994039535522} {"commit": "a93a459acbf260b9ad8e8bca0b2a51987ef97dbf", "message": "Ensure getPrimaryKeys always returns a list\n", "proba": 2.3727598374989611e-07} {"commit": "c08e2deae015f2faf9c9e297ad3fa9255def7433", "message": "Adjust docstring and code organization\n", "proba": 5.842213113282924e-07} {"commit": "1a1ee136ebc77e1c949191bd9c4eb494556073f2", "message": "refactor flavor db fakes in prep for object-ify flavors\n\nThis change is to help split up the patches for object-ifying flavors.\nIt refactors db fakes to provide default values for fields that are\nnot nullable in flavor objects.\n\nChange-Id: I18575703cd5c52d4f446c9bca1edd7baf33b416f\n", "proba": 5.587763098446885e-06} {"commit": "c797a3f0e34b072de91135518f7c686363e5030e", "message": "Revert temporary hack to monkey patch the fake rpc timeout\n\nWe need to revert this so oslo.messaging can release and get us to where\nwe actually want to be.\n\nChange-Id: I25b29eb8339311c748913ad1c0145949ff17491d\n", "proba": 2.272648202961136e-07} {"commit": "a734c50e437d8b8995b838aa6e81abb5b1d2fa09", "message": "use the same username/password everywhere\n", "proba": 1.669384255365003e-05} {"commit": "2d7461f6097f310815795a5b105e9b8c4ec7ec49", "message": "Updated StockLocation create/edit view with ownership control\n", "proba": 1.341892499340247e-07} {"commit": "9180fb22e2edafefd974c42c10fb994bfa63e622", "message": "DEV: Changed file load step to use context manager\n", "proba": 2.43334056904132e-07} {"commit": "1078dc7e7496ed5e2129227c8805e1b90ca04306", "message": "Bug fix\n\ngit-svn-id: 03d7800a49d8905ef4fbcc296184319e19243493@1132071 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 3.0134177109175653e-07} {"commit": "5b721ad29ae69721d08f53ddb67525e417d5a552", "message": "Change to use AbstractTemplate\n", "proba": 2.0676088752225041e-07} {"commit": "b2ebf429e24566c29850c570f8d76943151ad78c", "message": "HOTFIX: bug caused by #941\n\nThis patch should have qualified the use of PIPE. This needs to be back ported into 0.9 and 1.0.\n\nAuthor: Patrick Wendell \n\nCloses #1108 from pwendell/hotfix and squashes the following commits:\n\n711c58d [Patrick Wendell] HOTFIX: bug caused by #941\n", "proba": 3.331207096834987e-07} {"commit": "794f3aec24acb578e258532ad0590554d07958ba", "message": "[SPARK-4745] Fix get_existing_cluster() function with multiple security groups\n\nThe current get_existing_cluster() function would only find an instance belonged to a cluster if the instance's security groups == cluster_name + \"-master\" (or \"-slaves\"). This fix allows for multiple security groups by checking if the cluster_name + \"-master\" security group is in the list of groups for a particular instance.\n\nAuthor: alexdebrie \n\nCloses #3596 from alexdebrie/master and squashes the following commits:\n\n9d51232 [alexdebrie] Fix get_existing_cluster() function with multiple security groups\n", "proba": 0.00023771572159603238} {"commit": "61124cca5a172d07ea6df266bcda9fa056c713ac", "message": "Copying the function to get the module name from the pyf source file from numpy.distutils.", "proba": 1.1343595929247385e-07} {"commit": "3a96fcc53f7043ea7c73296b6bf5ad9df64ae2e1", "message": "Remove redundant override of logging_context_format_string\n\nThe target value is exactly same as the default defined in oslo.log,\nthus this override is just redundant.\n\nChange-Id: Ib386df2d8abf561c5b1c266f4c64d544e93c5d62\n", "proba": 0.0006598865147680044} {"commit": "2560132b08cc07789f1319cfb433906625c5c24c", "message": "Delete ecnet_sklearn.py", "proba": 1.0237998822049121e-06} {"commit": "c75047a84c40e59ff1a0837cf7f86dbbd6805bd5", "message": "sundown influence boosts\n", "proba": 5.738586992265482e-07} {"commit": "94db234aad1d6a5e36f357a3b5f2bb2215bf06b1", "message": "1019 Wiretransfer: Fix datetime timezone warnings during import_wire_transfers\n", "proba": 2.805880399137095e-07} {"commit": "8641034a5443fd88a4282bbc600069fb44091df5", "message": "Testing properties\n", "proba": 4.775721436089952e-07} {"commit": "cdbca90bfb40a5852beb8afba5fe9b9ec66c127e", "message": "add function to compute pos tagging accuracy on conll data\n", "proba": 2.4948545274128264e-07} {"commit": "b6b9ca330d2e04e8db7763fe966bdde1f0313bb6", "message": "Bump patch\n", "proba": 7.289482937267167e-07} {"commit": "9dfd905a9aa0038769c216b27bab168ef25b82d4", "message": "Removed choice_values is part of the Field class\n", "proba": 4.7484905962846824e-07} {"commit": "55fa4800c2985f47dba4f405b4cedea088e0f287", "message": "Bump patch\n", "proba": 7.289482937267167e-07} {"commit": "bf07be739ccf90e7f9a10afa6ba98d7742b7486a", "message": "Added doctest example to `Ntuples.Vector.equals()`\n", "proba": 1.2863543474850303e-07} {"commit": "f89697f4f595029622b32fd8eaac4593e9b05b66", "message": "ENH: remove __init__ from exceptions\n", "proba": 0.00016566192789468914} {"commit": "6ccc8acc16094d57e050132869047a7381d483f6", "message": "Fixing another error in minlevel\n", "proba": 1.6472047263960121e-06} {"commit": "496415406c4b5283d939f2314e1f74257d0ecca0", "message": "Update client.py\n\nObtendo os valores dos params envidados no __init__ ao inv\u00e9s de utilizar as constantes.", "proba": 1.100808191267788e-07} {"commit": "ce176ddd7fb6cff66cb198f62b0facc4407561e6", "message": "Removendo import desnecess\u00e1rio\n", "proba": 5.415692157839658e-06} {"commit": "8dd507c3a59d9e0ed133fe1dba93ed2dd5441469", "message": "bugfixed openbase_patrimoine to correctly set 'service' type to product.product (there was error with 'type' field and _inherits)\n", "proba": 1.3145606203579518e-07} {"commit": "f8788dc16bebec332ae34c3a73aff7e6de0c2af4", "message": "updates\n", "proba": 4.4353927819429373e-07} {"commit": "b39261daf493b46fda58536c64fe22741b208165", "message": "updates\n", "proba": 4.4353927819429373e-07} {"commit": "0587a65cf1c30404915752357c8982b8d4e98245", "message": " Preliminary support for PEP3107 function annotations.\n Rather than use a signature kwarg to rpcmethod(), you can now use function annotations to define parameter types. Types are simply turned into strings to populate the RPCMethod.signature list.\nThe signature kwarg will take precedence over any annotations, if present.\n", "proba": 1.2182141517769196e-07} {"commit": "74dd9a4183953c318384d71ddf51748fcef5f346", "message": "disable in_str detection if not in insert mode.\n", "proba": 1.1195561455679126e-07} {"commit": "c2c9fed03db493bdab7a6bd756a5a43a1e8a2e9a", "message": "Can also do write-actions now\n", "proba": 3.910280952368339e-07} {"commit": "c05d5a6ab30dbccf39610f6c5ac3e73350f2c59c", "message": "Make temporary file path for guided backprop configurable. (#41)\n\nCo-authored-by: Akinori Mitani <57e7f2ed228cc1d110cb1c5f1c306ecca88606de@google.com>", "proba": 1.571746963691112e-07} {"commit": "15f551d7226d2c27990af3ca8c79781b95095f86", "message": "Use bash code-blocks for CLI examples\n", "proba": 3.7802999486302724e-07} {"commit": "09a8e6e7f7950db259d1a5f1c80bae751662e34e", "message": "fix a del in cloud vmware that crash when the key isn't there\n", "proba": 1.8275353852459375e-07} {"commit": "096f0634649643ab971c63859df55021ba8287a0", "message": "Remove leftover conflict markers (oops! :-/ )\n", "proba": 1.7662982543242833e-07} {"commit": "4f2b762a292e9dc028497965c0945d2a8800bfe3", "message": "Revert hardcoded GA code in \"Animal room sponsorship\"\n", "proba": 1.365082056281608e-07} {"commit": "e53f4af5344aa49071142d858efdcec58597ad85", "message": "forgot service name..\n", "proba": 1.833145546470405e-07} {"commit": "945fbb022a15c17cb779b2fff2656bdb8a1501da", "message": "Drop Py2 and six on salt/modules/dpkg_lowpkg.py\n", "proba": 4.13532944776307e-07} {"commit": "74ebb56ed6ce876c160e4e2ba17e945e6c1ac5d0", "message": "salt/modules/supervisord.py: remove raw string formatting\n", "proba": 1.2726212617053534e-06} {"commit": "83e88a3eb18baf0245ba58c69c86b2ad46af0f1a", "message": "Call the windows specific function not the general one\n\nThis will make the `unit.modules.win_network_test.WinNetworkTestCase.test_interfaces` test fail, as it should fail given that it worked because it was being \"fed\" the linux interfaces when executed from linux.\n", "proba": 1.5408968465635553e-06} {"commit": "ebe5d9d85ce98b746fbf7a204601c6ba2baff41e", "message": "Fix function spacing\n", "proba": 0.0005890536122024059} {"commit": "89b874b994949a52b9532213b841593078d2ceeb", "message": "Fix AttributeError when trying to access psutil.get_users\n\nVery old versions of psutil do not even have get_users at all.\nThis commit at least allows using the rest of the functionality\ninstead of throwing an error right away when importing the psutil\ncompatibility layer.\n", "proba": 1.0821368334745785e-07} {"commit": "e7da20163494f9d49282b27b474dcc6d57e7d388", "message": "Use `salt.utils.fopen()` instead of plain `open()`.\n", "proba": 1.998519536527965e-07} {"commit": "ac578b4e64bd393c5316425492ea1a14ea622a72", "message": "ENH: Cast set to list since pandas has deprecated using sets as index\n", "proba": 1.5740464220925787e-07} {"commit": "b10e1b2e54e742affd32b600d6177ad55da41385", "message": "- test, try dynamic structure\n", "proba": 1.642608680185731e-07} {"commit": "65e9635f77fc31f4aba34fa9d0fa362198b7b4c9", "message": "New relation test fails\n", "proba": 1.0277343562847818e-06} {"commit": "e511c7d653dc2dcdd1afd9c47df206f5371fc7ce", "message": "bump version to 20200727\n", "proba": 1.537723051114881e-07} {"commit": "64e26afbaa4d6e857e46a95fbd461355979936d7", "message": "#14: Documentation strings updated.\n", "proba": 1.0579586984249545e-07} {"commit": "5b794e1761c34a76df5b6c7c147c26daed9a8f6f", "message": "Parameter names\n", "proba": 8.6600430222461e-06} {"commit": "f755217e8f14805b5fba09da50118f94bf73e3a2", "message": "changed ChangePasswordForm field names to be consistent with new convention\n", "proba": 1.6159860649622715e-07} {"commit": "cdc63549201d08b9ad9be2ba429bd735901b884a", "message": "Set new_user on SignupView as created_user\n\nThis allows other methods that don't typically have access to the sign up\nprocess to get at the created User instance. For example, get_success_url\nmight want to do a redirect based on this user.\n", "proba": 1.2670612647980306e-07} {"commit": "a6ae3aea525fa0a338932a5adb7836a5c293f914", "message": "Start new development version\n", "proba": 1.920764560736643e-07} {"commit": "a456059439ed83ebfa7b79429ce7ccb15c71c6ac", "message": "adt: _send_signed_request return list has been simplified and use it to run POST-as-GET\n", "proba": 3.0106712074484676e-06} {"commit": "dfcb899bea1d1b142311974b42cae6601ebbf7c8", "message": "Update acme_dns_tiny.py, previous commit has inverted max order call.", "proba": 1.1717461489979542e-07} {"commit": "44aaffc1a57949a1d9c4f214cf388dd3695d6d65", "message": "Update lookup stats more often\n", "proba": 1.3659247599662194e-07} {"commit": "301d11deee436080166335f6b26ff071ec51e46e", "message": "Can now assert responses.\n", "proba": 1.8176814364778693e-06} {"commit": "7099b1478febce019056c02a4f6acba7d8c7e562", "message": "more testing\n", "proba": 1.259183051161017e-07} {"commit": "e90ed88e40bfaaaeec93a20537b3da1cf493a87e", "message": "Allow instant replay\n", "proba": 9.360646231471037e-07} {"commit": "8d251429f64421741603e656e9ad781069d4ee07", "message": "Fix typo in asynclib.py\n\nPiperOrigin-RevId: 377863555\n", "proba": 0.9998235106468201} {"commit": "0e8eef52d1fc3335017d71c71867f814c9b5c21e", "message": "Fixed bugs in prueba_nmf.py\n", "proba": 3.578194593956141e-07} {"commit": "d764b5f974067c15d4e6a090cb366c978ae1068d", "message": "fix sso url\n", "proba": 0.02030440978705883} {"commit": "3e5199ba357218ab0b2dbcdf33fdd5b94627f4ad", "message": "FIX BaseStorage path\n", "proba": 3.1621243579138536e-07} {"commit": "7f874a1f2b0e8af3c85b34b1ec1ecc371c7a5d63", "message": "Added Palm Sunday to Danish holidays (#157)\n\n", "proba": 1.0385472393181772e-07} {"commit": "8139256053ca1e3c721752ca206c9a1eb156f171", "message": "Revert \"PERF turn off validation for now\"\n", "proba": 2.4482753246957145e-07} {"commit": "e2cf635df4803e8161a86a05c0d08fb5b7d7c253", "message": "update wsgi to remove Whitenoise\n", "proba": 1.4886281007875368e-07} {"commit": "5f7bd83656a12653a3b455acef6a60585bed8750", "message": "Implemented TAP state auto traversal. Instead of manual bit entering for state transfers, states can be requested by name. Some TAP instructions too.\n", "proba": 1.059196392816375e-07} {"commit": "6c886d826816e67935e0f4977a88ffddb83b77e8", "message": "use base64.urlsafe_b64encode\n", "proba": 1.6007234080461785e-05} {"commit": "ed2fbf76641326fca196e5112966b5e0095ee6b8", "message": "Made tagged sentence to conll into a function", "proba": 1.968325449297481e-07} {"commit": "c3501e9a3b54c940e9ed241735a812d03a73a9e0", "message": "Preserve the absoluteness of paths in Path.dirname.\n", "proba": 2.824514467647532e-06} {"commit": "ff2c7006f6587d620f00a85aec2aa5ee43fc1f35", "message": "Increased max length on some char fields.'\n\n--HG--\nbranch : js-redesign\n", "proba": 2.0908153146592667e-06} {"commit": "f86dda0ecdb5e223c3507fda5f49b25bd8be494c", "message": "Do not try to encrypt unless the public key of the recipient is present\n\n* Let encrypt throw exceptions and handle them in its caller\n\n* Add a docstring about the exceptions that can be thrown\n", "proba": 1.681595591662699e-07} {"commit": "308d59ff2d377c41cdc6a9fc12849f26c1f03118", "message": "Bump version number to 1.3.3\n", "proba": 0.00019290354975964874} {"commit": "c32421ce12cb33259e8a98f4eebc9288bfa6e5c9", "message": "Revert \"options: accept short option glued to their argument such as -j4\"\n\n\tThis reverts commit 87fe49dc09d6de51a73517bfd586055c9010adc3.\n\tThis reverts commit 58d078add735e38b9a5740feee8c36a97ce826d8.\n\n\tBreaks the semantic conversions of options, e.g. `--foo=false`\n\tyields the `\"false\"` string instead of the `False` boolean.\n", "proba": 3.7242659800540423e-06} {"commit": "4ace8f5e70c66fafbec5b459b6b91e2f8f139426", "message": "[#1] Remove redundant iteration from is_valid_solution\n", "proba": 0.005264036823064089} {"commit": "841425a8c61de29d1bc21939f5c0dd5fb3c5fc8f", "message": "Minor bump for pypi update\n\nBump version number for pypi upload", "proba": 1.2852090947035322e-07} {"commit": "e6a9a30ea3d0533c3d766f01790603261291ee48", "message": "Fix bug where reference force is modified instead of copy\n", "proba": 1.6470981734073575e-07} {"commit": "437c44df896c80fe49fb9929ac0acf89ddce52c3", "message": "revert patch 3cf0113be98d, which does not belong to the core of elfesteem, being dependent of GNU binutils\n", "proba": 1.194026424400363e-07} {"commit": "59aed6f3bd400b0182cfcb3dc6cc820dfc49e2df", "message": "dev-arm: Allow IOMMU binding to HDLcd\n\nChange-Id: I894080e7bd76e7efedef141c937e1561c0c0527c\nSigned-off-by: Giacomo Travaglini <8eef13a4f970e2e9372c8d26ad0737b760f99c02@arm.com>\nReviewed-by: Ciro Santilli \nReviewed-by: Andreas Sandberg \nReviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20841\nTested-by: kokoro <2ac7b1f3fa578934c95181d4272be0d3bca00121@google.com>\nMaintainer: Andreas Sandberg \n", "proba": 3.268243347065436e-07} {"commit": "b72fba636c89f35451a69c0f9f9877ab1dafeb9c", "message": "Expose softcore parameters in constructor, and add alchemical_function facility\n", "proba": 1.6791182133601978e-07} {"commit": "ef63198f24668cfa1ff4e82dcb8d7abbf2179c34", "message": "version bump\n", "proba": 7.394332897092681e-07} {"commit": "4a3db6d53df4c6f272806afb8415e3a7583bab9a", "message": "Addition of street centroid\n\nStreet centroid added to database query and output in elements as\ngeometry.\n", "proba": 1.0784526693896623e-07} {"commit": "c0cfcb7c3fd9e0a50ffe6ae40c64744090c66b9c", "message": "ARM: Fix address range issue with VExpress EMM\n", "proba": 1.5029141309241822e-07} {"commit": "e8f6bd9e80c5331c12ae75bbb3d3874eb857209d", "message": "removing unused imports\n", "proba": 7.34670379642921e-07} {"commit": "c5846731012a9c9a7e85ec1b8733a3fbee411689", "message": "refactoring\n", "proba": 5.272031557979062e-06} {"commit": "eb8d7cfadf1666a81fe4153035231a22eae5a424", "message": "Lib/fontmake/__main__.py tweak help strings\n\nPrevent user confusion like #526", "proba": 1.6136409612954594e-05} {"commit": "cbc01f65a619d66e3c03e4d3e9c6179a66c8e646", "message": "Fix TLS setting checking\n", "proba": 1.1011586138920393e-05} {"commit": "3507fd33777514f567f24c52d323ae1233e9f7dd", "message": "Fix comment typo\n", "proba": 2.975547431560699e-06} {"commit": "80e69be191d4d73be76162208013a79f94a7a792", "message": "Use decorators.\n", "proba": 2.5349717702738417e-07} {"commit": "bcd98301a9ce4f85e9a72198de46202b5e55442c", "message": "remove mercurial_version from openslides.__init__\n", "proba": 3.532617540713545e-07} {"commit": "1c278865ed24ecf1b0f8297582268acd01772412", "message": "Recover from inspect.getmodule() changes. It returns a module for\nfunctions and methods now, including functions defined inside doctests\nin test_doctest.py's recursive doctest'ing.\n", "proba": 1.0954087059644735e-07} {"commit": "ef37f92cd22c41525f7d841e987622d95fbcd56b", "message": "Abbrv to state\n", "proba": 1.7763561288575147e-07} {"commit": "f60f6506e19e5c16df7a8078a9e25640a3c0d0f3", "message": "rewrite a bit\n", "proba": 0.8909454941749573} {"commit": "29aec60fb096aa5019096d838467a31872e57428", "message": "Fix searchpath to use absoluate path, else the jinja2 render API cannot\nfind the template file.\n", "proba": 1.0130874272817891e-07} {"commit": "dba9599bedfa2526ed4cb324552622c9661194ab", "message": "remove % when outputing a fractionnal number\n", "proba": 0.0008865951676853001} {"commit": "1a35fef36459cf169462999ea7cc13b1cf192730", "message": "Correct spelling of template\n", "proba": 8.450507448287681e-05} {"commit": "5eeb1db701861083fec46ab0e3f42c601feb6df5", "message": "revert unintended change\n", "proba": 2.2949077447265154e-06} {"commit": "18e8b2eb8a6b1f79c9fa56d7ec6c199e37003e39", "message": "Introduced VirtualenvConf.default_env.\n\nThis allows to set users their own default env for fab\nby subclassing VirtualenvConf.\n", "proba": 1.0471040212678417e-07} {"commit": "e2551e6c07fde3b6626e4cf9633bf9661a927145", "message": "If an label with a True disabled attribute is passed to AdvancedSelect, it will automatically get disabled.\n", "proba": 1.1218433826343244e-07} {"commit": "feb0a4b75527a0fa58fe761b28dc925f11e3e8f2", "message": "Change XCom class methods to accept run_id argument (#18084)\n\nLonger term (2.3 most likely) we will want to change the column on XCom\r\nto have run_id instead of execution_date, but for now this changes the\r\ninterface to allow passing a run_id to XCom in place of an\r\nexecution_date.", "proba": 1.1317327164306334e-07} {"commit": "0bbdc8fcb48bfcb579100997155b577243bc64fa", "message": "Backport r58453:\nLet the O/S supply a port if none of the default ports can be used.\nThis should make the tests more robust at the expense of allowing\ntests to be sloppier by not requiring them to cleanup after themselves.\n(It will legitamitely help when running two test suites simultaneously\nor if another process is already using one of the predefined ports.)\n\nThis will hopefully fix test_asynchat.\n", "proba": 1.2313826402987615e-07} {"commit": "54b8e0a5a3b1c34bba3fd02edabad515dbabe915", "message": "fix test\n", "proba": 1.6747775362091488e-06} {"commit": "9394393e9fc7234402d0c4ab9e75756cc6c8844f", "message": "Fix pylint\n", "proba": 9.936720744008198e-05} {"commit": "7ab506e70b530dbd14195af70372b7abacd152d0", "message": "Actually make test_wsgiref independent from the Python version.\n", "proba": 1.078242917174066e-07} {"commit": "a05fb10b1046cd478a22c7c7a71533f94d6396c7", "message": "Add missing LOGGER definition\n", "proba": 8.032372716115788e-05} {"commit": "accd1775c9a2f1fb22948c0711491efffbb07bfc", "message": "Bug 811499 - [mozharness] mose_and_screen_resolution gets called with the wrong --configuration-url. r=aki\n", "proba": 4.2602840721883695e-07} {"commit": "b5c5aee6947705145ad3cada17a502c11d5852c5", "message": "Move SiteImprove vars back onto the instance. Resolves #232.\n", "proba": 9.994052163619926e-08} {"commit": "59035a98d24d4affc0aec5151ccdec400c8dc5f9", "message": "Trying to fix Heroku DB\n", "proba": 2.6590380457491847e-06} {"commit": "1de6887fead86e5190ba61875e8f3fc6b79f0626", "message": "Refactor test.compat to use lru_cache from spam_lists.compat\n", "proba": 2.5528834157739766e-07} {"commit": "f5a8299e5902e137c0e4b44ad806b05f7d3f87b3", "message": "Don't restrict what can be removed at the filesystem level.\n", "proba": 1.3772431373126892e-07} {"commit": "8a848f33dfe55c055ff1127a6826c5cfb4d3777f", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "2dece411326e94bc6333b8cfc6f5af47c50fd5b0", "message": "Removed unnecessary ostap/core/runostap.py.\n", "proba": 1.191986385151722e-07} {"commit": "0e3a6694007aa48d7da810d11fb3c87980327a87", "message": "Fixed typo\n", "proba": 1.2940510032422026e-06} {"commit": "66cac8d0e10eef1dac9b6ccb26ebdcbdb20d6e75", "message": "Added implementation of auto-generated names\n", "proba": 1.4858750319035607e-07} {"commit": "856f35eb216a82aa8afd086f54903f59c1e1f031", "message": "[FIX] UserError: don't display None in Warning popup.\n\nUserError uses a retrocompatibility function 'except_orm' which one can take a\nsecond parameters. The default value of this second param is None, so if we\ndon't force an empty string, we will see a None on each raise UserError as last line.\n", "proba": 2.9962777716718847e-06} {"commit": "a95e671e9fb7a6253c5cd4a9fc1c481509e5ad25", "message": "Removed parse_from_string\n\nI don't think it's going to be used, even for testing, so it's better\nremoved.\n", "proba": 1.5907504291590158e-07} {"commit": "8a3b221e65055e9fad472d5534b781b3fa07c97c", "message": "loop users items\n\nprint out error on usage report\n", "proba": 4.0956300040306814e-07} {"commit": "3f8ced79bd48b382468cf97fb639e45cad22f238", "message": "Do not generate position in list for text block elements\n", "proba": 2.3330890144279692e-06} {"commit": "7b88769b5111e8c8d87a7741f0c2e6fb396072d7", "message": "Avoid copy of small messages\n", "proba": 2.002504288611817e-06} {"commit": "b9a6ac66ce4540a6c1af23709e3ec4d5d97b8317", "message": "Allow overriding threshold variables via env vars. (#315)\n\n", "proba": 1.2679012684202462e-07} {"commit": "827fc48456c896ed6d3fdc79f48fb42edff36b70", "message": "Update mappers.py\n\nChanging 0/0 to be 0\r\n\r\nWhen all values are the same (x_var=0), z-score=0/0. Intuitively it makes more sense to return 0 than nan though.", "proba": 2.7369381427888584e-07} {"commit": "c774013e1fa19094967f9a9a4cfa72d686192ab6", "message": "Socket: Only call self.irc.feedMsg if self.irc is not None (ie. a reconnect is not in progress).\n", "proba": 1.1859857806939544e-07} {"commit": "76e26e3ac68764ef336d24dc8ed52b883ac4a32b", "message": "Add draw_event for label redrawing\n", "proba": 3.899503724369424e-07} {"commit": "d50a7cf13f133b4bc6ecb30b96b6d09d70010c22", "message": "Dont use %T for strfmt - not supported on windows\n\nChange-Id: I5a31bbd4079f80104a333427353329a6d0d6c753\n", "proba": 2.0720601412449469e-07} {"commit": "5fb8e5f126ee00bcb324629366a3f3724a473fc8", "message": "Add assert failure messages\n", "proba": 7.562489940937667e-07} {"commit": "526e2357119877c02517810d530ccfae6317f422", "message": "math/fast_corr.py: update docstrings\n", "proba": 5.02187094753026e-06} {"commit": "3c37a09b7486cd93eeba6cccbbf9fd62b075492b", "message": "PEP8 formating\n", "proba": 1.515210215075058e-07} {"commit": "7d7f6312a86e0b01f85cc0b0c067f0f032d9b0d3", "message": "Trivial linux build fix\n", "proba": 3.834374808775465e-07} {"commit": "a1cc058ea13da042e58bafbd4fda37e1a1120e5e", "message": "More safety in enrolling\n", "proba": 1.1211310635417249e-07} {"commit": "8bc2c1d100ddd9435a8515f4056d6436aeddff54", "message": "BaseXClient.py: implement various fixups suggested by pylint static checker\n\n- Convert comments to docstrings where appropriate\n- Avoid shadowing built-in functions\n- Initialize __info to None\n- Avoid using deprecated string module\n- Remove reference to unused Queue module\n", "proba": 5.229418093222193e-06} {"commit": "8fe3dd75a72c4e8d8e19025004dcc9fef57c0c54", "message": "update list\n", "proba": 7.480916792701464e-07} {"commit": "2b464c9be11ad8aa0de62bca4424fed7d4d3e2b3", "message": "Enable back git output redirection in _get_version\n", "proba": 2.416706365693244e-06} {"commit": "ea7013d83bce6fd783d3f7984a228fcc3e79f11e", "message": "Change the coordinate of nodes to numpy array\n\nThe ``coord`` attribute of both the raw nodes and the nodes in the\nnetwork has been change from a plain pair of floats to a numpy array to\navoid repetitive casting in distance computation.\n", "proba": 2.4743252424741513e-07} {"commit": "975e8632770a4f692ad1a7b394214e0382534e59", "message": "Added test cleanup.", "proba": 1.2125184412070666e-07} {"commit": "aea167283c2a89b6e41d89a5206eb0f3e30d7e96", "message": "added arg to preprocessor function\n", "proba": 7.732148787908955e-07} {"commit": "d0e6cb8060433817d48d58d361c8405e4f908c45", "message": "#749: fix python doc bugs part 1\n", "proba": 2.8872094048892905e-07} {"commit": "7713ea8e58d4a3b7b7728d21c18ae362a780fc0b", "message": "restore\n", "proba": 2.1085627395223128e-06} {"commit": "8ec3576d3d9aadd1486fbe27af80b613c81cff26", "message": "Drop initiated by a forward tilt\n", "proba": 3.527971443872957e-07} {"commit": "5f45c27b302d53e0eb9f3228a4f4c37f44d02169", "message": "fix the build hopefully\n", "proba": 3.398037051738356e-07} {"commit": "9f40f1e752d61302488d68e2ab6bc717c2e70272", "message": "- Add more configuration for society save.\n", "proba": 1.0342891698655876e-07} {"commit": "a9111fea651cdb568abf28a5e9c4c6e98a760675", "message": "[IMP] Call 'only_create' mapping functions only when the mapper is called with for_create=True\n", "proba": 0.0005438327207230031} {"commit": "3dc9e45448211a5bd36c1f4e495eddef6e0e485e", "message": "ListCommand: Remove options, the command does not take options.\n", "proba": 0.004387215711176395} {"commit": "a884854665c26fb815dd745db44cfc580d3ee2ff", "message": "* [UI] Fixed ``Task View`` to properly reference ``Project Users Dialog``.\n", "proba": 1.0347074663741296e-07} {"commit": "ed1e7375a9784a04428a4bec396b7a594ad52325", "message": "Use version when available from CNXML/collection metadata\n\nWhen updating the metadata during binder creation in assemble, adding\na check for version metadata since collections should still use this\nin order to create a model that delivers the version value end-to-end.\n", "proba": 1.0664231808732438e-07} {"commit": "be4e5cff74c9e87fd7f295243501775958c56e81", "message": "new format of test output for Claudio\n", "proba": 2.891487838496687e-06} {"commit": "0f0e653309982178302ec1d5023bda2de047a72d", "message": "bump 1.1.3\n", "proba": 6.566091997228796e-06} {"commit": "750d436110337aaba24d5b262d307aa36132b085", "message": "Replace usage of ConnectorUnit.model by ConnectorUnit.records()\n", "proba": 1.7666165774699039e-07} {"commit": "732ae8af80614aa635a88e85974ddb9f8c51925d", "message": "Made agent more robust to old pidfiles being left over from\na previous crash. Also added in some pid collison avoidance\nlogic for OS with /proc.\n", "proba": 9.974475290164264e-08} {"commit": "f8fe7a94cea443856d3da1f22aa19e252eac5b44", "message": "[playground] remove unused greedyold module\n", "proba": 2.0026310210141673e-07} {"commit": "6422dbe7a07fa228653308b02ffe0721f27c3772", "message": "allow components to set rpm_package_name\n\nsetting rpm_package_name in a component config yaml file will allow\na user to override what the name of the rpm should be.\n\nWhen rpm_package_name is unset anvil defaults to the existing\nfunctionality, which is using the name of the component, or, if it is\na python component we are packaging, the output of the component's\n\"setup.py --name\" command\n", "proba": 1.8673674730962375e-06} {"commit": "91e91f550e590e0f81ea835c6c8ea9bd6d0e67e0", "message": "Fix device leak.\n", "proba": 2.3694040862665133e-07} {"commit": "116b4f1ec1d4c235a577a6672c60957387207916", "message": "fixed bug in tl.score_genes for sparse data\n", "proba": 2.86874865196296e-07} {"commit": "f09144857d098aec965d25f587aef8f14ce8aa4d", "message": "minor change ... name now agency_id\n", "proba": 1.8339376595122303e-07} {"commit": "b8a797ee2627ae52f0661b2f6e529efc8528ed93", "message": "Add package directory to sys.path in testing. Should prevent errors in\nfinding tests.regression and with testing the wrong instance of pyglet.\n", "proba": 1.2372896662782296e-07} {"commit": "400938d5a885fc31c8da13a2b96708df97fa3e93", "message": "Improving field comments.\n", "proba": 1.3143676369509194e-07} {"commit": "7e562f68cbff608640e98c908ea2cc481ea1a545", "message": "Release 0.7\n", "proba": 2.1650321002653072e-07} {"commit": "5f191220c764b3b764264381d10fbd61200bc0aa", "message": "bump version to 0.0.12\n", "proba": 4.6574990619774326e-07} {"commit": "dbe490f518ec6da166e8de03520d99894380d537", "message": "fix test.py\n", "proba": 1.1516475751705002e-05} {"commit": "973b402a67efeb0e5b9567fb5b9c72fafafc1180", "message": "P31 statements were not added due to the N/A value in variant type field. Due to this fix, a default value (i.e. sequence variant) will be added\n", "proba": 1.2412299099651136e-07} {"commit": "6301bd61dfdfa9a544360b53f061deb521ea54a7", "message": "rewritten. Now entities are basically data (dictionary) as in a\nproperty system.\n", "proba": 1.1007095679360646e-07} {"commit": "b49f1a57f500c90dcf59ae3bd9280ada65c94629", "message": "add test for Freesound\n", "proba": 1.6888971288153698e-07} {"commit": "e68b99f4ff1070cdd6c8d6638682f5d982147786", "message": "Marked 2 previously added tests as expected failures\n\n\nFormer-commit-id: e465ee35d4eac1d44ece5b1718bc188b9486f5f2 [formerly 193487e2f11b23a9f2ffd3053b54740e0c72e947] [formerly 0ee9a6a3d40f6aca1eb38f9fb912681a2f1ee0a0 [formerly 97d8fcb0e0677badfae100cff98b4190f6e3757a]] [formerly 0681ca1bc1c46a938e4d0d79545394f5b34b53c6] [formerly 871d18c91657f7d32a16ae495545a2d8b40bced3 [formerly a1891f79ab594f225b86e3bc85eedb1cc64077cb]]\nFormer-commit-id: 871d18c91657f7d32a16ae495545a2d8b40bced3\nFormer-commit-id: 7a9ea479944cfdb444876b1d7c581b3cea748f32\nFormer-commit-id: ebec772dde5a549e283d93718bc8cbf7806c4971 [formerly 9633596a8ef94ebe4858ab57ada0bae5ba78ec6a]\nFormer-commit-id: 9ff26546ffdddfe7b7b8990f355dfcbbfe738fe1", "proba": 4.980420271749608e-07} {"commit": "ffb0dec865cd6122bf364037958ab2e94bda12a6", "message": "Seems only pypi uwbpep packages server work smoothly\n", "proba": 1.2193275722438557e-07} {"commit": "f312192f41afff6366993deaeebb6e65db9f23cb", "message": "accidentally left CPU (instead of GPU) flag on\n", "proba": 2.8113419148212415e-07} {"commit": "b4bd35bcfe7d4bdd73b85ecae5b424d22a350292", "message": "http://luc.lino-framework.org/blog/2015/0825.html\n", "proba": 1.3048207847532467e-07} {"commit": "e166fa87c9597b916ac07ddf899b96f6aad7f25c", "message": "make secret keys compatible with AES256\n", "proba": 1.8931669956145925e-06} {"commit": "3646b9bb843a5b96f4050b03b1b5b0a480b42805", "message": "fix sem\n", "proba": 1.916049541250686e-06} {"commit": "fab59aa182a378d1ef15f852faa236c4e46b7331", "message": "using lxml to parse job\n", "proba": 5.274226850815467e-07} {"commit": "735384ed58f95663b7f7958fff1235a720323a2f", "message": "Add a request_timeout if a query string is used in search, as well as handle more exceptions\n", "proba": 2.2538840767083457e-06} {"commit": "35ae78ac493f85e8bfe1c6c5e2de39e44bf7110e", "message": "updated sprint api\n", "proba": 2.9200310791566153e-07} {"commit": "68441ce09565e71165009aaa9930087b61f98c3e", "message": "Use io.BytesIO instead of sqlalchemy.byte_buffer\n\napplication_package uses byte_buffer to write an in-memory\nzipfile. byte_buffer wasn't introduced into sqlalchemy until\nv0.9 as part of the python3k compat changes. Patch changes\napplication_package to use io.BytesIO instead.\n\nAlternative is to change the sqlalchemy and -migrate package\nversions.\n\nChange-Id: I59f23d2ed4e37063dca4d2a70e9f6184bd0e0aeb\nCloses-Bug: 1309743\n", "proba": 1.7930142348632216e-05} {"commit": "2d29534949d4306e0e614a174b46df264510187c", "message": "Convert _make_drain_helper into coroutine\n", "proba": 0.9999990463256836} {"commit": "939aa515ceab108c62f4d334b9322b90f7b36710", "message": "trigger rebuild\n", "proba": 8.22571223579871e-07} {"commit": "7eb5d235e66c2cba4faa2c46c7489e432cf4f6f2", "message": "fixed merge conflict\n", "proba": 9.147165087597386e-07} {"commit": "004229f43a8dbfad586483a4dc899e00d9eed5b2", "message": "Template name optional\n", "proba": 3.0660669381177286e-07} {"commit": "14ccf00e0ad6a03e08635dce6bc3899b5216dfb4", "message": "Addign tests for host unreachable Windows pings\n\nReference #1903\n", "proba": 1.3013536204198317e-07} {"commit": "0b2ceeb0d61e96b44351230c5a98cd710e7889da", "message": "not used code removed\n", "proba": 2.58154017274137e-07} {"commit": "319784555fde9fc276d1ed708c830121ace90d9a", "message": "doc: fix typo in a comment (#41)\n\n", "proba": 8.378651727980468e-07} {"commit": "29072f9111c4aca1fac0d6f4fd7e102981ee6c81", "message": "Replace deprecated urls.url with urls.path\n", "proba": 0.9999866485595703} {"commit": "d26b3f270302b8f0ddcfcc29f3b3345702e94de3", "message": "Fix bug with `PageSearchAdapter.get_live_queryset` where a `page_alias` was supplied causing invalid SQL to be generated.\n", "proba": 1.0588691168322839e-07} {"commit": "29c6edf9847bae854e616ba7825e33699147b0a9", "message": "ignore if can't load pinmux overlay\n", "proba": 4.045409980335535e-07} {"commit": "bdf9552440285b361f2c41f1179c9554e384a19f", "message": "Implement temporary workaround for Python 2/3 kwarg ordering differences.\n", "proba": 1.3146409116870927e-07} {"commit": "a44044ebf8ec862df5ca56091d0d02773123d20d", "message": "bots: disable 'uts' subproject, it is broken for now\n\nFormer-commit-id: 6a28f6f91cffaba38457806cefc39a106815e35a\nFormer-commit-id: 756a469c00bfbbc3d89902d546f738867d8198a9 [formerly 8a6ae5646fd02deedc59c49b1bdffe60c96469ba] [formerly 3b2edd4e39ff73538ac6f95d3bada98f2058b724 [formerly 1b61703fe2094b6c7cdf2f94cd2d97d751b0f942]]\nFormer-commit-id: cba7c93b3c4a9e2f361d1859b99b6f5954690c3a [formerly 261144bd340adde9e787f29cee8a2d940ec83264]\nFormer-commit-id: d3023a8b623c7545d85e575fab71543e63968320", "proba": 3.201720755896531e-05} {"commit": "67946bbd14e9b11a5110026791030c9f036cfb0d", "message": "Apply manual uncertainties to reference and duplicates too\n", "proba": 1.1407319533418558e-07} {"commit": "aa096b60f6d89c807c9341b96c569dcaa851fc3c", "message": "Fix default value on partner bank\n\n", "proba": 2.816394271576428e-06} {"commit": "9be9468329aa243fe35eda729cd41e29707c2578", "message": "tira debug\n", "proba": 8.790747756393102e-07} {"commit": "0d8cd5856feaeb61b7352f154b95d6fbef2cb68b", "message": "Add tooltip\n", "proba": 5.786172096122755e-06} {"commit": "afc128405c7005ea94632702c739d1f213db1110", "message": "Update lazy-object-proxy\n", "proba": 8.283920465146366e-07} {"commit": "e91eb3e02ee0d2ca97b99802f09be69e84ba2f6b", "message": "Fix fix_sequences (include schema in setval call)\n", "proba": 1.4986261476224172e-07} {"commit": "a69e71a1ac2f2170a02307f8bf9edabdbcaca1f9", "message": "Fixed bug in non-verbose\n", "proba": 3.725066562765278e-05} {"commit": "4d7fd5374eb72dbfbd80f92761668bf1a5436a4d", "message": "test runner: pylint issues resolved\n", "proba": 3.5331670460436726e-06} {"commit": "bb5834e304933a4cbfeb7dca93c33da7f2e4fbc5", "message": "fix for removed shallow parameter", "proba": 3.196443287833972e-07} {"commit": "4ac0f8bd199fdf603cdddacc3f49a4e6083f7427", "message": "little cleanup\n", "proba": 2.7218254672334297e-07} {"commit": "9b73cef32e2ddf031a427526dccadfc92c228256", "message": "allow arguments in `Boolean.maybe_call`\n", "proba": 7.176154781518562e-07} {"commit": "303ea5281d36a1b04952505f8f794d92e5bf6f09", "message": "Fix template issue\n", "proba": 3.598364060053427e-07} {"commit": "1701d0ce171e5a66ff2495a2d34106090e93d2f0", "message": "wait_procs(): guard against ZeroDivisionError\n", "proba": 4.701161742559634e-05} {"commit": "a07a16352013e48473a5afff71349722d609ff49", "message": "ENH: reading of CSV log files - new CSVLog.from_file()\n\n- update .write_header(), .write_row()\n- new .parse_row()\n", "proba": 1.5374386066469015e-06} {"commit": "3cf2247f86c81cf1f67c082537df2bf27ce41c85", "message": "(Linux) fix typo: in case get_memory_maps() is not supported NotImplementedError wasn't raised as expected (because of the typo)\n", "proba": 8.855698752086028e-07} {"commit": "9b9f2b3e4ca6983f1d1816c7adb6881ad011f723", "message": "add android 3.0 support\n", "proba": 2.9817121571795724e-07} {"commit": "728ffcb4b1816e3164e8f43cbb5b08ebd7f6aac4", "message": "Do a cleanup after finding the final message from cfn update.\n", "proba": 1.0857963417265637e-07} {"commit": "83e58bccafcc4e329362e2fe0bb632dbf7a610aa", "message": "Reworked single android python build script with validation layer support to be used for all example builds\n\nrefs #297, refs #303\n", "proba": 1.2563738494009158e-07} {"commit": "0fd45b052044f525ad64dbea74cf026e587cb00c", "message": "Remove obsolete make_summary_funcs, now in frontend\n", "proba": 2.5995479973062174e-06} {"commit": "98672501c8cbd91f7c4a31d500dadaa2129dd6ee", "message": "double the number of attempts\n", "proba": 0.027688371017575264} {"commit": "9636c9147c7569b4d140cf51fea4a5dd4baa17c1", "message": "removed a symlink\n", "proba": 7.96487438492477e-06} {"commit": "a8cf3bed22887d4118d018937dbd8e394e22b07d", "message": "print shape\n", "proba": 5.663100182573544e-06} {"commit": "dc1dffba37b8e6fca03a76f7a68edb5723d729fd", "message": "serializer class is required now\n", "proba": 1.271634602062477e-07} {"commit": "c9e98a0ef319821defaaf7be05db4a5c8994d31c", "message": "Display correct module version number.\n", "proba": 1.6829143589802698e-07} {"commit": "d82d70054fe5ce7b268b2dd9da5dd4a26409f150", "message": "Decompose scaled versions of diffusion maps\n", "proba": 2.7262703383712505e-07} {"commit": "066ec705df119a529ca32ab6cab61042645a88d6", "message": "Add direct access to C++ lattice in get_attribute\n", "proba": 5.269420171316597e-07} {"commit": "1a193560aaf6da5075b54528050dc03baf87df8d", "message": "delivery_options\n", "proba": 2.9130851544323377e-06} {"commit": "066435d6f07bdc596f9eecd92ae4f9b67faf5197", "message": "update the AST for AttributeExpression, MemberExpression and CallExpression and allow for Hash and Array value to be empty\n", "proba": 1.2662276560604369e-07} {"commit": "149ec646afd370fc0de98314a16339e95f9e7f43", "message": "return false or true according to binding result\n\nChange-Id: I23a47c6c7c9be989e65c144b2277c42eeaaade3f\nCloses-Bug: 1294500\n", "proba": 0.004835551138967276} {"commit": "997b853bb474415ab532a115f093613b0befa501", "message": "added docstrings\n", "proba": 2.7693852189258905e-07} {"commit": "08490e4af92dfaadf7f69f97190ec47d46ccd155", "message": "adding correction to shutdown\n", "proba": 8.459528544335626e-07} {"commit": "077276a9f81fc6917a94e6b8aa3ae24a76dcaa09", "message": "adding more outputs\n", "proba": 2.634026259329403e-06} {"commit": "50eaf23797afd6249d69d5e8113ad073890a7014", "message": "Updated TSEB\n", "proba": 2.4655204811097065e-07} {"commit": "6e3dc21eb7e8d46c338b17e923792f917649fea8", "message": "Added the debug line for k, v.\n", "proba": 1.1385311182721125e-07} {"commit": "91dd414c4afa11d9b070ae00707e3597cb3b4ab2", "message": "remove useless sys import\n", "proba": 1.376476461700804e-06} {"commit": "48beff57b1c98db24a83ee0c4fdb3f3b436978be", "message": "Use absolute import to get the package version.\n", "proba": 1.067499724172194e-07} {"commit": "ebff6aed7b7ac81cda83256e57fed27f95300cde", "message": "add brute force box fitting period search\n", "proba": 7.444151606250671e-07} {"commit": "bf9a0ad1a21471dcf6bd842a10d3ee84f8cb7d5f", "message": "gyp: fix O(n^2) in dependency calculations.\n\nWith 1000 targets an O(n^2) in the dependency management starts to be\nnoticed. This patch takes a 0.2s function to 0.02s. The function is not\nparallelized so this is a true 1% speedup.\n\nAlso commented on another *potential* performance problem with very\nspecific dependency graphs.\n\nBUG=362075\nR=scottmg@chromium.org\n\nReview URL: https://codereview.chromium.org/234813003/\nPatch from Daniel Bratell !\n\n\ngit-svn-id: e7e1075985beda50ea81ac4472467b4f6e91fc78@1898 78cadc50-ecff-11dd-a971-7dbc132099af\n", "proba": 2.6303864615329076e-06} {"commit": "42fa8f4d2f76ed37c51c9995f648a13fbbd7dbb1", "message": "nits on nits\n", "proba": 4.685693420469761e-05} {"commit": "c7fe3060661f404bc501ab686ec56b71eca73f38", "message": "Changed steps to num_of_steps\n", "proba": 0.003109669080004096} {"commit": "98af86a1abd72e0a8254a75d7c42fb2ebf7602ea", "message": "PYTHON-952 - Fix an issue with killCursors handling\n", "proba": 1.101551774240761e-07} {"commit": "bf47150b870a4ba4d44f19d7ba21aa1541bdf5d9", "message": "Option 2 for making analyses less weird\n", "proba": 7.045964593999088e-05} {"commit": "92ff34cd607a7e19c2b153117a5a528169bb2374", "message": "updated some test cases\n", "proba": 3.100605567851744e-07} {"commit": "1fac6806fd5772a9cdce2d1ed5bd9203d6ea550f", "message": ":sparkles: pause and resume imagedump feature\n", "proba": 1.5496402738790493e-07} {"commit": "f846ccb86b741676264fdf1e4c9b82591222354a", "message": "Remove some duplication in UserManager\n", "proba": 5.918409806326963e-05} {"commit": "45c76bfb94f0aa601e602a3d830b2649468df14c", "message": "rename .deploy.sh to .build.sh\n", "proba": 5.629303268506192e-05} {"commit": "c9afe9632492df6c135f3cd0e82b022795820ce1", "message": "Fix power utilization calculation for three-phase feeds\n", "proba": 1.3028801504333387e-06} {"commit": "9e463a30820ab074336de9a66830cd23ec8c2a50", "message": "Fix a test to use snabb-softwire-v2 schema\n\nThis fixes an `snabb config add` test to use the updated schema. This\nmeans adding the psid-map on the softwire using the new `port-set`\ncontainer. Previously it was erroring as it was using the old config.\n\nThis also removes the no longer valid test to check adding a softwire\nwithout a `psid-map` entry was invalid as entires are now on the\nsoftwire. Whilst this reduces the number of tests I think there will be\nadditional tests in the (near) future when the behavour around adding\nsoftwires with different port-set info to another softwire with the same\naddress is decided.\n", "proba": 1.359378956067303e-07} {"commit": "8c828d33f45160ec33c7b8e44cdd4a7774670279", "message": "pop items from dicts in python way", "proba": 1.4602127862417547e-07} {"commit": "f2981b62f12f372e3962acfa98ebb886ece7a475", "message": "Moved Box iterator methods down\n", "proba": 3.541347268765094e-07} {"commit": "1c771eefa2bdfffbb4a16b4654278820fdfaf06e", "message": "TestDatabase::test_explain_and_utf_query - fix test case for MySQL 5.7\n", "proba": 4.207101937936386e-07} {"commit": "09c86a0df132784f9ed870fd070a8b4f2438659c", "message": "Allow shebang's which use versioned Python binaries. Fixes\nbug #521526.\n", "proba": 1.0429302221837133e-07} {"commit": "1349ee91927561783d8fa4627376fffa3cd63856", "message": "Codegen: do not printout parsed entrypoints\n", "proba": 1.976837211259408e-06} {"commit": "0f1b8a4ce0ad8180f3bc59e4f0ce7991a5dc7989", "message": "Change one ambiguous -e argument to genisoimage.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@openrobotics.org>\n", "proba": 2.7179159587831236e-05} {"commit": "0573e4de27086b2d1c911fae1413e00f81fae2bf", "message": "add TODO comment\n", "proba": 1.850916220291765e-07} {"commit": "ccf731113e80dab47b0ffcbc669c0d6bc304f77d", "message": "[drivers] list sensor options in docstring of respective ID classes\n", "proba": 1.59121626097658e-07} {"commit": "30167389ecc283ec256adca87efccadbcff1bc2c", "message": "going chrome, quick n dirty it works\n", "proba": 1.287913278247288e-07} {"commit": "40661256b8c4f75c9d4dad06fec4750eaf3a2a06", "message": "better debug\n", "proba": 2.2395454379875446e-06} {"commit": "cfeabfaf742e42a9cb32854b80190d6b4966dcde", "message": "fix hall of fame\n", "proba": 1.303621320403181e-05} {"commit": "269a89410b3aa7c7245afabed37014a27d54d12f", "message": "Use list instead of string to represent VerbNet frames structure\n\n\ngit-svn-id: a2d0af3c19596d99b5c1e07a0b4fed4eaca14ddf@18203 7fff26f0-e11d-0410-b8d0-f4b6ff9b0dc5\n", "proba": 0.0033048810437321663} {"commit": "4639810777ffd6f1b86b66c92e8730a934ec2ce6", "message": "Zprovozneni zobrazeni prehledu (grafu) uloh\n", "proba": 7.084836965987051e-07} {"commit": "5bb1907ccb0999757a0d48cd6115238948914f27", "message": "Fix a spelling error (utils should be util).\n", "proba": 0.999868631362915} {"commit": "f1b6c89d9ca54831b753c7a4fa76d3e0980f8fd3", "message": "Option for ndebug.\n", "proba": 3.9293456666200655e-07} {"commit": "39256b802351e6786d3cb210504cdb461b9fa053", "message": "initialize objects with context in Migration object tests\n\nThese changes aim to clean up the pattern of passing a context in\nobject member functions create/destroy/refresh/save and instead\ninitialize the object with the context when it's constructed.\n\nRelated to blueprint kilo-objects\n\nChange-Id: I0278394942bab138adfbe738668a69368eb38feb\n", "proba": 5.555042434934876e-07} {"commit": "ba184e7b18e87e17690ec80123a81698e276d030", "message": "Adding docs\n", "proba": 5.805240448353288e-07} {"commit": "5358bc9835720934a304af480969c483e53b2c58", "message": "Fix a bug in array\n", "proba": 5.121474896441214e-05} {"commit": "402ef505fee84a3285dfb73bb723ccbf25fd46a1", "message": "Fix unixy compilation.\n", "proba": 1.6119072654419142e-07} {"commit": "5bd41f3eaa2ac79d4b462e38816e1eef0e3426a8", "message": "* More documentation updates for mount class\n", "proba": 1.1050513393229267e-07} {"commit": "223623a4ba0569752ae518d68276f8325ddf98bf", "message": "now takes stops, step and brightness as optional cmd line args\n", "proba": 1.337538151346962e-07} {"commit": "4811f1d6cbaaa40fbd338ca4b198df9c25857d0d", "message": "Fix tests\n", "proba": 2.8394715627655387e-06} {"commit": "d09cc05b0097e89d043888920c2705bf6f5f05e4", "message": "Ajout du nom et du propri\u00e9taire dans le navire/ship info", "proba": 1.3450237190681946e-07} {"commit": "643225bb9a45711903f21fd495e277b7cdc294dc", "message": "Using constants for directions\n", "proba": 1.3756983889834373e-06} {"commit": "5c96087346a7dac9d4dc401aa93865ed3f9c0d49", "message": "Delete ipc_lista1.08.py", "proba": 2.091160240524914e-06} {"commit": "2f46ea7561bf4ec1e10cdf9d0fc32164879b10f5", "message": "MAINT: Remove warning for zero in error_norms in bdf.py (#9880)\n\n", "proba": 1.2131454241171014e-07} {"commit": "4c670e60f2965b05624940fd305c1aa24ad1b96a", "message": "minor additional testing\n", "proba": 1.2510031410783995e-07} {"commit": "3a40bf5241d8babf5324b603882be47509d366a6", "message": "Changed the name of the default state-help command 'info' to 'statehelp' to avoid clashing with the standard info channel.\n", "proba": 1.2985667297016334e-07} {"commit": "42eab6625c468d9a03217572705f498450ef10ae", "message": "Setup async debugging by default\n", "proba": 5.115623480378417e-07} {"commit": "43fc5885498ca98d7c941cf7e20de3236dc0c0c0", "message": "Delete titanic_v3.py", "proba": 7.81221388024278e-05} {"commit": "3a5fbec343e3d27fefec0e5a167777309f3d9519", "message": "Add some test to projects\n", "proba": 2.6135080588574056e-07} {"commit": "79dfb85d975c3e309bafbe8c65cf26dbdbdfe00a", "message": "Update ipc_lista2.03.py", "proba": 4.0151229541152134e-07} {"commit": "75894ebde67c00fc182e233ff01a736a899a0e5d", "message": "API: Change extrapolate to None in CubicSpline in view of periodic boundary conditions\n", "proba": 3.2450094522573636e-07} {"commit": "2afd113643ac152f6b3cac210cd98bf13d5f2227", "message": "A lot of fixing went on the download module to make it work on windows\n", "proba": 1.7377372785176703e-07} {"commit": "f78a711b7b7c2d2a852afc902328b6b176fbbdcc", "message": "Applied feedback for papermill execution\n", "proba": 1.3496352835318248e-07} {"commit": "fc7ae22ee9063b04e3a1c15bc56850f1979fb94c", "message": "Release version 1.0.0\n", "proba": 4.621527409653936e-07} {"commit": "a7c9736067ed02679dcc48820822e09f928b9809", "message": "Updates to region growing code\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@4131 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 4.3720453390960756e-07} {"commit": "585d340ed188303ffe7b94f0a3bf0bbcf111c023", "message": "Downpart made much simpler and cleaner\n", "proba": 1.6170791639069648e-07} {"commit": "b785f3b70d53d0883708cf4dccc41fcd807f7926", "message": "Delete ipc_lista3.12.py", "proba": 4.344664830568945e-06} {"commit": "69b11ffd046b59bd0cda12ff02602b6726fac011", "message": "Tweaked show __repr__\n", "proba": 2.0139694356657856e-07} {"commit": "841abee07feae5d775db0ba19da2177df50e7906", "message": "ENH: optimize.OptimizeResult: improve pretty-printing\n", "proba": 6.108261459303321e-06} {"commit": "6d89c66f0c1e1d38a12ee8b63b7caee61a7b9a24", "message": "Cleanup\n", "proba": 1.4090286413193098e-06} {"commit": "cb2c4c0940d77ad4edd7924ed15ab61a0de90071", "message": "Update version to 1.9", "proba": 3.5387745356274536e-07} {"commit": "57377f81308c39447b89ae9811230f7273c77da1", "message": "Improve VPAL engine endpoint (#114)\n\n", "proba": 1.1830577761884342e-07} {"commit": "b2e9c8754e31ea56689ba56fb4109d239ad3a616", "message": "use datetime to validate airdate in episodes_by_date()\n", "proba": 8.021023859328125e-06} {"commit": "fbd2b602ca8180b3bc12d9999f4cb6e61a21f47b", "message": "TST: Minor improvement to test_classes in test_ivp.py\n", "proba": 1.7594690859823459e-07} {"commit": "16b704cb4436ef3b2ca4d20e48ee538fea8d5bb9", "message": "working on accepting more python versions", "proba": 1.3961499689685297e-07} {"commit": "4c948389e40790dcb70e56aa7dcfd3ed630c9f77", "message": "Add debugging prints\n\n", "proba": 1.8074999843520345e-06} {"commit": "b60bcc60767cba8fe29e3cf987391735e69e7013", "message": "remove errant code.\n", "proba": 7.36512229195796e-05} {"commit": "910e2abdbc586a9e8c213f603d1d865448c5c49e", "message": "Remove celery logic from settings\n", "proba": 3.5934024253947427e-06} {"commit": "0245ac3b9496b5d7dc8657b1b0133b210da9aca7", "message": "[IMPR] Add corresponding API page links to APISite method docstrings\n\nModify the docstring of APISite methods in login .py.\n\nBug: T100521\nChange-Id: I0a7de965f3ee446791067520251f784c2d5f79b6\n", "proba": 8.577782864449546e-06} {"commit": "0f100e8f45867598c4e760f032f85a91c0cac46c", "message": "all_top() now uses everything() to do its dirty work\n", "proba": 2.960713345601107e-07} {"commit": "0603a4415053cd2d76b26f09dc618db91a9fed3c", "message": "ENH Add option for Bayesian tear sheet to full tear sheet.\n", "proba": 1.128722288967765e-07} {"commit": "e075c379f4da58357c5ab0777a2d383ea825046e", "message": "Raise UserWarning if format name is unknown\n", "proba": 5.762811724707717e-06} {"commit": "907e3d69d8480a5a2f08cf37296d8148678767ec", "message": "actually building protobuf now :/\n", "proba": 1.205276021210011e-07} {"commit": "9ab89bb5cb7ef7795499a5aff1a42c0e941496b6", "message": "Update Beer._populate for new RateBeer layout\n\nChange page not found check to see if there's any

s in the container div.\nUpdate beer reference and also known as checks\nUpdate description to use itemprop attribute.\n", "proba": 1.0081046752929979e-07} {"commit": "03c98b4d5f6e14e332cd4273445fd5f5e10471d0", "message": "fix lint issue with latest flake8\n", "proba": 1.552207891108992e-07} {"commit": "036fe6162082e7026d93702293fd1dfca5998a0e", "message": "fixed doctest failure\n\n--HG--\nextra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%40186\n", "proba": 4.2347079443061375e-07} {"commit": "0ff0ca03358ac207f224f2a9c52cbc3326874b0d", "message": "released v4.1.1\n", "proba": 2.94204085093952e-07} {"commit": "9ceb5d41f6b4a5e00325adf8dd74b280b96db9d9", "message": "Batch normalization in LSTM\n", "proba": 1.9509526794081467e-07} {"commit": "fd49475a58c83d8c54575d6329d6eea6ebd5624b", "message": "eos parameters\n", "proba": 8.634015102870762e-07} {"commit": "8217d157c011501d5140bf720fe4a9f4c852095b", "message": "Convert old-style classes in cpp.py to new-style classes.\n\n", "proba": 0.9986357092857361} {"commit": "d6d62eb381489fdc3204b53f11cce0596556866d", "message": "Added __eq__ function and many comments\n", "proba": 4.853051791542384e-07} {"commit": "d98e5908709746b337ae0e092329100edc8ed5e7", "message": "Anpassung f\u00fcr deployment\n", "proba": 3.4423965189489536e-07} {"commit": "bddfaae796ed1672771259b88dc45b1257f721c4", "message": "Display voltage reading in volts\n", "proba": 7.944292974570999e-07} {"commit": "dcb23b1ab2cb0c698c78bd1ed49e6229df6117cf", "message": "test: Add common cleanup for nondestructive tests\n\nA lot of tests create users, modify passwords, or create cockpit.conf.\nTo aid their conversion to @nondestructive, do this common\nbackup/restore/cleanup in MachineCase.\n", "proba": 1.1571189872938703e-07} {"commit": "c344b282bbfc91ff2bfb56d6ed5fb86eccecc6fd", "message": "update messages from old syntax to new\n", "proba": 1.9832108932860137e-07} {"commit": "b4275c9e3a82316afae7a1f54cf6040bbeb69595", "message": "Update gpio.py\n\nfix setting direction\r\nfix read after write (reset file pointer after write)", "proba": 1.1117360543266841e-07} {"commit": "54e876fba42f82fccc3ef53fab3f4996b6f920e3", "message": "ddt v3 - \u0441\u043b\u0443\u0447\u0430\u0439\u043d\u044b\u0435 \u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435\n", "proba": 3.100026049196458e-07} {"commit": "ec00d1f539357f736296fe521c611610288672b4", "message": "after update gitingore\n", "proba": 2.1238065528450534e-07} {"commit": "4e5bb262a76dec8b330c95847474d60b912adb2f", "message": "wip: rewrite setup_config\n", "proba": 1.938820105351624e-06} {"commit": "5989aef951d7b66ea23c3f730bd5209eb8048f0a", "message": "add train_mode placeholder for batch norm. fix typo\n", "proba": 5.1718452596105635e-05} {"commit": "0eec6990c2f10fc0f9efdb211106c17c6db79fd5", "message": "Replace custom exception assert with hamcrest utils\n", "proba": 1.131266890297411e-05} {"commit": "a57d062b00ea709aa04e61e489c03f93966b7ddf", "message": "Add more test coverage\n", "proba": 1.446728532528141e-07} {"commit": "3043ed2cb9b32e2e4a5cb1cc7b785130392435d5", "message": "lock: skip using slow getaddrinfo (#2642)\n\nThis is basically Lock.__init__ copy-paste, except that\r\ninstead of using `socket.getfqdn()` we use `socket.gethostname()`\r\nto speed this up. We've seen [1] `getfqdn()` take ~5sec to return\r\nanything, which is way too slow. `gethostname()` is actually a\r\nfallback for `getfqdn()` when it is not able to resolve a\r\ncanonical hostname through network. The claimfile that uses\r\n`self._hostname` is still usable, as it uses `pid` and random\r\nnumber to generate the resulting lock file name, which is unique\r\nenough for our application.\r\n\r\n[1] https://github.com/iterative/dvc/issues/2582\r\n\r\nFixes #2582", "proba": 0.0001365287316730246} {"commit": "e432e699f24d7f1af28d270dbc12450a736624ab", "message": "Test for all values\n", "proba": 2.955904619739158e-06} {"commit": "9ec1d7a535f552643b2499a4aff3286c12965299", "message": "use pre_setup instead of setUp\n", "proba": 9.756115559866885e-07} {"commit": "f74d07432b437bb94bcc1bb3ee1765cd212ea429", "message": "p9dsu: some slots don't have presence detect\n\nSigned-off-by: Stewart Smith \n", "proba": 1.2996916609608888e-07} {"commit": "4f1880eaee7c92a087fb50604d773b266e1eae7b", "message": "Hooked Abstraction layer checkNextPage method into using the entity counter class\n", "proba": 2.4829341782606207e-07} {"commit": "ee8bff0c319b2809a878f3f8b550230d897a76d8", "message": "display error\n", "proba": 2.148002522517345e-06} {"commit": "41217a96f7a0bd57317f608f83922cb084d55bf0", "message": "remote rpc url is wrong\n", "proba": 0.9993891716003418} {"commit": "7ab364f68a4e5ae51d71707f9032dbf0231412d2", "message": "\u66f4\u65b0 modules Users \u4e2d\u7684 urls.py, \u65b0\u589e\u51fd\u5f0f\u529f\u80fd\u5ba3\u544a\u8a3b\u89e3\n", "proba": 1.2790562209374912e-07} {"commit": "db0a95311c0717fe844eccfec4b2a568a9915637", "message": "reactivate compression that was deactivated for profiling\n", "proba": 5.567521839111578e-07} {"commit": "f11baa599c9775278195213414b0b7da24df25a2", "message": "fix bugs\n", "proba": 1.0751475656434195e-06} {"commit": "16541954bb8c0c04060d0a93780da36f47ee555b", "message": "regression\n", "proba": 7.18065120963729e-06} {"commit": "ddc0e53a99efba973cdc893b0b7a2b19521f0512", "message": "Drop last to avoid the ms casa is writing out\n", "proba": 1.349577445353134e-07} {"commit": "b2656d34db865d68696fd0d9e1fbc908dd805d80", "message": "documentation/python: added TODOs for enum value docs.\n", "proba": 1.1470876160046828e-07} {"commit": "bdfcbe60ccfc73dd95f2c5ba58a662004c94062b", "message": "[Whisper] Fix gradient checkpointing (#19538)\n\n", "proba": 1.0987189824618326e-07} {"commit": "eb934d3e5c63aba73472f4bf819ca3f3baaa915d", "message": "Add deadline and created fields for TaskInfo model.\n", "proba": 1.0763237412447779e-07} {"commit": "218224fcc0e356d439c3359fd58f7b32501e5874", "message": "Update logger.py", "proba": 8.346822255589359e-07} {"commit": "855f1ac9ff327cc0b147c921df30b9ffd6be3916", "message": "added vmc_wbyw and dmc_wbyw inputs\n", "proba": 7.334068072850641e-07} {"commit": "b04f196f86c81cc3f695a29ca56ddaa96ddce76d", "message": "Done with 61\n", "proba": 9.142203225565027e-07} {"commit": "345958ebed035df84946367ed037cdebe546a1c9", "message": "revert r10291 since fix was done with r10326\n", "proba": 3.262852601437771e-07} {"commit": "5c65b791a48d10ce9b847b5fdf54fea3596cff10", "message": "Completed 100\n", "proba": 9.579325705999509e-06} {"commit": "b0ffa302538e0e6d27826cb8288701ca28a92baa", "message": "partially revert of r10291 since category default sortkey is fixed in r10297\n\ngit-svn-id: 9a050473c2aca1e14f53d73349e19b938c2cf203@10298 6a7f98fc-eeb0-4dc1-a6e2-c2c589a08aa6\n", "proba": 9.458638601245184e-07} {"commit": "96708a36d1482cfa697a52836d859f95ff67325a", "message": "Add check in test_json for other fields of json output.\n", "proba": 1.226944590371204e-07} {"commit": "7f25c512aa0880085c2dabe7bbaf6ea426980f9c", "message": "Removal of specific condition in the separate method. Issue #21\n", "proba": 2.1912067893481435e-07} {"commit": "2e9d046b6a39147d8311a542493a7ce9950cb6a7", "message": "Tidy up checking of return status codes, add delete_document on Collection object\n", "proba": 6.082738082113792e-07} {"commit": "34009bad2d8cf922319cca716497c17f12814352", "message": "tweak to health gap content\n", "proba": 2.437533055399399e-07} {"commit": "c53b6a179a09159740de2c06fb87b194e810f839", "message": "Disable colorization check in Github\n\nI tried a lot of different things to make it work\n\n```\n env:\n PY_COLORS: '1'\n ANSIBLE_FORCE_COLOR: '1'\n FORCE_COLOR: '1'\n```\n\nI also tried\n\n```\nexport TERM=xterm-256color;\n```\n\nBut Github refuses to colorize. Seems to be a problem with Github\nActions not being a `tty`.\n\nhttps://github.com/actions/runner/issues/241\n\nThis doesn't seem to be a priority for Github, so we simply disable\nthe test in that environment.\n", "proba": 0.9999861717224121} {"commit": "013a2b225a50235532bb832c895e4076ee380c2c", "message": "Remove import h5py from lagrangian_particles\n", "proba": 2.396691627382097e-07} {"commit": "4f6f83d69e610be9b6badec946e0da671f2a82b0", "message": "make sure to reference GraphLassoCV\n", "proba": 1.3697193423922727e-07} {"commit": "742daeca1d58b996e2bc37f73667063761a549c6", "message": "Add frequency mask to mi pivot selection\n", "proba": 2.1935233007752686e-07} {"commit": "1ab2baa40cf197e9eaa8b22906667fcaff193759", "message": "Delete test_pyWype.py", "proba": 5.410851736087352e-05} {"commit": "9708876535f01a5849575e31cea009ce12d6087f", "message": "Refactor interpreter - remove unnecessary stack\n", "proba": 1.6084537435290258e-07} {"commit": "fcebe30db1c0b251aff8f49eeda806fe097df16e", "message": "Paper Plane Graphics\n\nPaper Plane Graphics\n", "proba": 5.498256996361306e-07} {"commit": "fd188e59574de8ba0e5b4a53dcfb6805292d5aca", "message": "Print to stderr when appropiate, patch from Issue 21.\n", "proba": 1.0498597191599401e-07} {"commit": "da32f5b5ebfdefdd2f1b50394fddf2490766d4b8", "message": "'add-additional-put-unit-tests'\n", "proba": 1.57183387727855e-06} {"commit": "a0cb10d6297d692cc63b2d378e7946e22d23cd6d", "message": "updated and simplified Roessler system example\n", "proba": 1.318301912078823e-07} {"commit": "18ba687ce79ed26b48c83a9f555a389158768099", "message": "Function that display menu position\n", "proba": 8.832917956169695e-06} {"commit": "8f23eb139623f344408bd69cca1ae99e523b122c", "message": "add imaginary numbers to test_compare since brython now supports it\n", "proba": 1.3622315009342856e-07} {"commit": "849cb0e092a426d664aed2209af45c10cd13d4cc", "message": "22 jul feature", "proba": 1.4062764819300355e-07} {"commit": "2201cf9e959c805c82ae8ce3657763fdb4e358f9", "message": "Moved DigitalInputTask read method under DigitalTask class because one can read also in DigitalOutputTask (see issue 20)\n\ngit-svn-id: 2bf5607321a7b9efc1ae3817871b0819d8c9bd49@39 376947f0-c9f5-11de-8861-c343c794f7e0\n", "proba": 1.0765841125248699e-06} {"commit": "155624094daa46fa87e1ea937ebe1fcfab7512b2", "message": "Added RSS parser.\n", "proba": 1.2073962807335192e-07} {"commit": "c978bf8d4b547d2c24c3bb23f824a4bf6e0c14b4", "message": "clean output parsing for the salt call grains printing\n", "proba": 3.121311067388888e-07} {"commit": "b79a4498d35a760cf07f7947a19a6dacd7a3a5c3", "message": "Add postal code\n", "proba": 0.9999583959579468} {"commit": "fb2bf579ba2d168c329399c8e0660607fcdfa254", "message": "use new paths for admin media\n", "proba": 2.622216186409787e-07} {"commit": "d69db83bb75f6d455f2ee3eca966564cc08fdf06", "message": "Make the htaccess parser even more complicated\n\nAt some point we may as well just launch Apache.\n", "proba": 1.2236516511165973e-07} {"commit": "f5f7a3d97ddb71bd5e91b54ffdb430e0666dbb85", "message": "Use isoformat as strftime can't handle < 1900\n", "proba": 4.3682777572939813e-07} {"commit": "995521984b9f6968d0855cd3bc980dcae51200a5", "message": "add summation\n", "proba": 0.9997243285179138} {"commit": "256b7cac36cb09c7da459f4261d7821a9f3d3f23", "message": "Fix error\n", "proba": 3.6451685900829034e-06} {"commit": "2b6958dde18a97d9e7f9c9f25bbea307ed1592fb", "message": "Correct lambdas as class methods that made tests fail in python 2\n", "proba": 2.79179744211433e-06} {"commit": "5b943d3af82d9477837393e1db3eca71491f39e0", "message": "started fixing upgrade problems\n", "proba": 1.9607377055308461e-07} {"commit": "9adf61d8044ac72f7c4411c7fc6c04d30a234696", "message": "Fixing download error and changing how to cite text\n", "proba": 1.5048216539526038e-07} {"commit": "45c0b1044208128a3ca6e96c6f9fc3ea2ef4f66b", "message": "add reference for x-frame-options\n", "proba": 4.484317344122246e-07} {"commit": "3ff47d3388fbbcd538d262170c4950aaa61d0efe", "message": "T4720: Add smoketest for SSH NDcPP\n", "proba": 1.2934732751546107e-07} {"commit": "c29c60097bb7c9f9d6ca66056fcf2c2dcc5748c9", "message": "Add UNTRIED status.\n\nChange-Id: I163aaffa7ec4ece90b0552407fe0043038423ca2\n", "proba": 0.9999828338623047} {"commit": "53143a2a465024b1e049f9a08220ff30c5bd995d", "message": "add SolveBio variant ID to VCF to JSON parser output\n", "proba": 5.312978146321257e-07} {"commit": "c5e273f66b2692dd96ffa4fceda95824d726ef6b", "message": "fix the vcf parser for python3\n", "proba": 0.9994938373565674} {"commit": "61f41cf3283801c5650346d62e93b1e80c2923ac", "message": "try not to dviide by zero in maximization. by adding epsilong to total\n", "proba": 6.660502549493685e-05} {"commit": "dd1da5b8ce6faead245f22089d72e4c52d7a134d", "message": "clean up formatting\n", "proba": 0.0027474001981317997} {"commit": "74f3a92cdd6935eae5afc1d90b914650538d47a6", "message": "Note should not be a required field\n", "proba": 5.139856966707157e-06} {"commit": "e1d667e1821fb2ed6803883a0786c0758677db9f", "message": "added pycrypto dependency back in\n", "proba": 1.5199950098576664e-07} {"commit": "70b9b985a2d085366cb901bf863fff37977064a0", "message": "Fix crash when parsing dates.\n", "proba": 1.9399173822876037e-07} {"commit": "adc3f18f9fa365751c38a9d9793739c5205cb263", "message": "Add contact_email to Location\n", "proba": 9.61910586738668e-07} {"commit": "c7648cfbd970fbe38829b9b84c0817c1c1a324d0", "message": "Add net name check for res101\n", "proba": 1.8056532269383752e-07} {"commit": "7f99fc65cb413a13840a58399abca63293d65ad2", "message": "dlcs docs\n", "proba": 9.390922173224681e-07} {"commit": "1e8c5134b59287a0ca1fde01492ddbc34159bf7a", "message": "go back to use readlines() due to the following\nerror when running easy.py\n\n\nNo, we must be careful..\nI changed checkdata.py and grid.py\nBut when running easy.py, errors occur:\n\nBest c=2048.0, g=0.0001220703125 CV rate=84.4444\nTraining...\n../svm-train -c 2048.0 -g 0.0001220703125 \"heart_scale.scale\" \"heart_scale.model\"\nOutput model: heart_scale.model\nScaling testing data...\nTesting...\nAccuracy = 0% (0/270) (classification)\nOutput prediction: heart_scale.predict\n/nfs/faculty/cjlin/tmp/libsvm-2.86/tools%cat heart_scale.model\nsvm_type c_svc\nkernel_type rbf\ngamma 0.00012207\nnr_class 0\ntotal_sv 0\nrho\nlabel\nnr_sv\nSV\n/nfs/faculty/cjlin/tmp/libsvm-2.86/tools%../svm-train -c 2048.0 -g 0.0001220703125 \"heart_scale.scale\" \"heart_scale.model\"\n...*.*\noptimization finished, #iter = 1046\nnu = 0.363609\nobj = -193311.629689, rho = 1.616976\nnSV = 103, nBSV = 91\nTotal nSV = 103\n/nfs/faculty/cjlin/tmp/libsvm-2.86/tools%cat heart_scale.model\nsvm_type c_svc\nkernel_type rbf\ngamma 0.00012207\nnr_class 2\ntotal_sv 103\nrho 1.61698\nlabel 1 -1\n\n", "proba": 0.9999994039535522} {"commit": "26fbb7f71989526e128a6279f8d49fa4b3a828b6", "message": "Fix tools/info.py (fixes issue #77).\n\n\n\ngit-svn-id: d4fdfcd4de20a449196f78acc655f735742cd30d@892 14d46d22-621c-0410-bb3d-6f67920f7d95\n", "proba": 6.932732958375709e-06} {"commit": "2360f8545e484eb6d70441f1ec746db47bd84e93", "message": "TRAC #7494 Fix multiple challenge select\n", "proba": 1.2617086042610026e-07} {"commit": "0f7c98f2150a48efe1460bdd3475dcab1770392e", "message": "made the sorry-domain to a clickable link\n", "proba": 7.449662575709226e-07} {"commit": "a447c93eee62e936bc8ccaac17bd7ff85ac2ea82", "message": "Move verbosity levels to argument definition\n", "proba": 1.3752863878835342e-06} {"commit": "03def7978f4beb99a8098a704c00ce31f126842d", "message": "Updated Australia:Canberra Day holiday dates. Not the first Monday in March, but currently the second Monday in March. Has historically changed dates too. Added these in back to 1913, the first Canberra Day\n", "proba": 5.469054826789943e-07} {"commit": "c7c2da4c447d16883e3e18c4564110c041bc390e", "message": "Remove table cleaning for IMAP\n", "proba": 5.648346927955572e-07} {"commit": "6f925ec01cadf13053a7b328694e0e8e2662ffc8", "message": "deleteunnecessarylines\n", "proba": 4.106356300326297e-06} {"commit": "f55f15694d8474f2f7f2c9220d951da20a7ff5ed", "message": "Check ansible runner output for error\n\nWhile installation of gluster-integration, modified the logic to\ncheck for any errors reported by ansible and populate it back to\nthe job status.\n\ntendrl-bug-id: Tendrl/node-agent#627\nSigned-off-by: Shubhendu \n", "proba": 1.270736333935929e-07} {"commit": "b72191b3c055d267c4b8d63c5dbe3bfa28073dda", "message": "2019 05 Python: Add tests for new intcode instructions\n", "proba": 4.876243338003405e-07} {"commit": "8de4c884e811a08307a69b13413cf93b3d1700b9", "message": "Improvements to printouts\n", "proba": 1.605232711199278e-07} {"commit": "723c76f6cb92e61e67216105c3e49852f6d2faf0", "message": "Code cleanup.\n", "proba": 2.1081312695514498e-07} {"commit": "79ba0f0b8864eee4bf3530e492ba02bdc35b2937", "message": "Check GPU availability after creating test session.\n\nPiperOrigin-RevId: 174983466\n", "proba": 1.3219931815910968e-07} {"commit": "a4bcac8136b496af9596c8805568b82ea574e49f", "message": "remove newline and tab chars from f strings and abstract them\n", "proba": 1.674289080710878e-07} {"commit": "d30cd4aebdb66142bd5271d1d6c78c802541d0da", "message": "add missing import\n", "proba": 4.194788562017493e-05} {"commit": "a2efc755e3eb312128a5ae4ceeb453621230bca4", "message": "clean up/add comments as needed\n", "proba": 1.2525586612355255e-07} {"commit": "ab73616ca3dfb6c02c7e12914ac6602d70cb34f1", "message": "perform skip on dataset\n", "proba": 1.6247167877736501e-06} {"commit": "b8e66347333cf942bc4a901b08d2b36e22371075", "message": "Removed orange as a color option for TwoDimensionalPlot\n\nI've realized that orange-on-white is not a very good color scheme, now\nthat I've seen it come up a few times.\n", "proba": 1.3392408959589375e-07} {"commit": "50e732950f27927ee399a0019d915219bb9bc83e", "message": "reverted matrix formatting change\n", "proba": 4.608640438164002e-07} {"commit": "0211436cfdef7048a57e4df7f498149c7ecdac19", "message": "Improved integration test docs\n", "proba": 2.5003757286867767e-07} {"commit": "a2db70e098e84abc7ebfbe75421f69efad82ac9e", "message": "Seed deflake langevin_test.\n\nPiperOrigin-RevId: 314803258\n", "proba": 0.00015620217891409993} {"commit": "155febdad18a3dd7c1c47d96aa7d2abcccd8b395", "message": "pushed an update to the python driver 1.2.6-1\n", "proba": 2.5587820573491626e-07} {"commit": "a534ccee03f70fa51e4439fc5bbd62c7dba91221", "message": "multi-stroke preprocess\n", "proba": 4.5127049475013337e-07} {"commit": "15f2d60a704b74e6c8b129b47f12040e7d7b895a", "message": "provide standard test data sets\n", "proba": 1.6257912648143247e-05} {"commit": "7c87dfab0f1afe7dc2b94bda1868d3f5d037fd9d", "message": "Delete mixGaussPlotDemo.py", "proba": 4.573765579607425e-07} {"commit": "7ba7e570f9f268ea4211ba98cc5591be0efac9ed", "message": "NEW: msct_gmseg_utils: developing group wise registration of the target to the model space (work in progress)\n", "proba": 9.620741536764399e-08} {"commit": "0deeb51d5a348c85324507793687b62c1d1f1741", "message": "NEW: msct_gmseg_utils: add computation time to the LOOCV\n\nFormer-commit-id: 3350cea7d320f17dd7fa5ed8254812ec52efa930 [formerly 34ed356dd52baaa5ceb14309c4da7a19e408c062]\nFormer-commit-id: c8736f81d8927a1dbfd688de5a915714e998d704\nFormer-commit-id: 5e59ea6ec07579e15cb56a2b48918e25d93c412d", "proba": 6.0133148508612067e-05} {"commit": "c043f86613199441c98fb685cad7ac62eacd0377", "message": "Revert \"nbconvert heatmap script for running in pipeline\"\n\nThis reverts commit 753350002fdd0c8d5ccc4cc1e7bde25de30c9821.\n", "proba": 1.1674874400569024e-07} {"commit": "5574047a5f5807d9191b1df5033696d191dadf59", "message": "Activate logical volumes at Assemble() time\n\nThis patch changes the Assemble() method for logical volumes from a noop\nto do a `lvchange -ay` on the logical volume; this ensures that if the\nlogical volume is not active, we are able to activate and use it.\n\nReviewed-by: imsnah\n\n", "proba": 1.279627213079948e-07} {"commit": "505bb7befa87af54804b48d4e90c59503c9492d5", "message": "Update pinnings\n", "proba": 3.1498174735133944e-07} {"commit": "8e33a01a45b2cdf6d675c0f7353b9380ae453479", "message": "Instead of ignoring URLs in the auth tool, disable tool in each handler\n\nBetter not to couple a tool to a handler. Not sure why I didn't think to\ndo this the first time around.\n", "proba": 1.2878186339548847e-07} {"commit": "594934dcea210690fbe2ab286f39c6852c30af76", "message": "Update ExprTransformer spec to use new Reference class.\n", "proba": 1.0076240641865297e-07} {"commit": "2c4906e4b6b99f3bd712ac9eb8bc9ff350dda7e7", "message": "NXP-12816: Don't instantiate a Controller when running the 'test' command as test cases isntantiate their own\n", "proba": 4.046826234116452e-07} {"commit": "1161ed4486aa0fab22a0058e5971b60b3f659666", "message": "New Variables + Loops\n", "proba": 4.3055564447058714e-07} {"commit": "6fbde0ea4da023ad80502ce7a1a5261fc497dbcb", "message": "added version info.\n", "proba": 1.1401304789160349e-07} {"commit": "d042a5db29c09e2769b299842f18fd3788c01870", "message": "added test for stdout capturing\n", "proba": 1.9810823914667708e-07} {"commit": "7ad720d89020837ba1831055d8ee4eb955075f89", "message": "Added encryptwallet call to bitrpc.py\n\nThis was the only call requiring password input which was still missing. Much useful to avoid leaving a plain text passphrase in the shell log.", "proba": 1.0852497211999435e-07} {"commit": "72d9ae9aa02a886774a8e3405f75095131143e0a", "message": "Fix to make it work with the new rates.\n", "proba": 1.2838737006859446e-07} {"commit": "e72ed6e29f5b4260855cc60e8fa0b9443d80351d", "message": "print the caught error instead of raising an error\n", "proba": 0.000571354350540787} {"commit": "0d80171a74cb23876e54c2c24fd1274a9b1999dd", "message": "run upgrade stress tests on 6.5.1 with python script\n\n\ngit-svn-id: b5c078ec0b4d3a50497e9dd3081db18a5b4f16e5@51482 c7de825b-a66e-492c-adef-691d508d4ae1\n\n", "proba": 3.245236712245969e-06} {"commit": "3c880bacc20a99c1c09f23abe68ea43a4bd475ab", "message": "0.12.2: Removed the explicit UTF-8 encoding of strings inserted into the database in the Bugzilla importer.\n\nPatch by jackqq@gmail.com. Closes #9690.\n\n\ngit-svn-id: 7bda06b145a4a8e9a7f4be07d7c3eb82923a12d6@10233 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 5.982143193250522e-06} {"commit": "ff468afba0e330ccb42ffb032bf49f3b9f3fdda6", "message": "Log configuration at INFO level (#2456)\n\nThis information is very useful when trying to understand other logs, to the\r\nextent that it is frustrating when it is missing.", "proba": 1.0853138832089826e-07} {"commit": "6226b7f8711ef19fa0e9ae8c5c8fa728006349cf", "message": "Revert of Always fetch with branch heads (https://codereview.chromium.org/302433012/)\n\nReason for revert:\nThis turns the 8 minute initial checkout time into 21 (250+%!!!!!). We'll need to find a different solution. Maybe move bleeding_edge into heads.\n\nOriginal issue's description:\n> Always fetch with branch heads\n> \n> V8 checks out the refs/branch-heads/bleeding_edge - yet another thing that uses\n> branch-heads. We might as well just always fetch branch-heads on bots.\n> \n> BUG=374345\n> \n> Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=273523\n\nTBR=iannucci@chromium.org,hinoka@google.com\nNOTREECHECKS=true\nNOTRY=true\nBUG=374345\n\nReview URL: https://codereview.chromium.org/309533004\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@273610 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 9.944930934580043e-05} {"commit": "ce9deb43bc3639f7f22e271bc7e5a6a9a7ae6f87", "message": "Factor out monitoring task info update (#1792)\n\n", "proba": 1.3206020810230257e-07} {"commit": "7b8bc25af0d9ab4f5d880236798e6eae08c5c173", "message": "Disable Linux32 on chromium.chromedriver\n\nThis bot is low disk space AND low memory, so it can't run the bootstrap code\nneither can it do a clean checkout by itself.\n\nBUG=390639\nTBR=agable\n\nReview URL: https://codereview.chromium.org/369583003\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@281053 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.8597982489154674e-05} {"commit": "7f81c2915300b41810aa2029e2e8bc98c82afa2d", "message": "save bw and color files separately in pdf\n", "proba": 1.1612767281121705e-07} {"commit": "fe92e8e9335365c9d1ba3facaf80d5f8fcc59ed5", "message": "Fix bad reference in monitoring to no-longer-existing internal AppFuture field (#1260)\n\n", "proba": 1.3181535507555964e-07} {"commit": "7d45bfda9e98abb8bda4aac3d74a3f92588b11b1", "message": "cleanup\n\nSigned-off-by: Dave Brondsema \n", "proba": 1.1126779497772077e-07} {"commit": "38e3e00c296c9b1bbb70f3357fb431a1558e1f06", "message": "Delete resnext.py", "proba": 8.886858040568768e-07} {"commit": "99bed879900b61b0c0948f66e959c2f65dab54c3", "message": "add a standalone application called sequana to retrieve pipelines and config and readme in a local directory\n", "proba": 1.2816730077247485e-07} {"commit": "41556b26c845468a3414acbac4f6ff3d7ff4ac2b", "message": "Fix json_error bug\n\nIrritating when there are bugs in the error reporting. The problem\nhere is that message may not be a string and therefore may not be\nserializable.\n", "proba": 5.4903823183849454e-05} {"commit": "2db06da69bc00dbe42f8f364a43fa185f8ea06b3", "message": "comments\n", "proba": 5.451620381791145e-07} {"commit": "8464dde223fbd2e074e1a86762e713f8c336eb06", "message": "Update HTML5Canvas.py\n\nAdd support for textBaseline property.", "proba": 1.099094149026314e-07} {"commit": "c87d94457e7d1261f7bd8d16a8d8e387f9637a35", "message": "Try to understand why too much feeds are closed.\n", "proba": 1.761510759479279e-07} {"commit": "023a923089ab8bce23de52e8f43264401cf5d316", "message": "Added new module launcher to tests\n", "proba": 2.015950570921632e-07} {"commit": "a47da394d7b5946d052ce7c81bcc4a086c1367aa", "message": "django.shortcuts.redirect \u304c\u3042\u308b\u305f\u3081\u3001HttpResponseNamedRedirect\u3092\u524a\u9664\n", "proba": 1.0815122095664265e-06} {"commit": "fe3a999cb27f99e6a47c310db6808b9771827ab5", "message": "Enforce name requirements for dcs implementations\n\nClass implementing AbstractDCS must have name similar to the module\nname. I.e. Patroni will load ZooKeeper from zookeeper.py, but not from\nexhibitor.py, although it (ZooKeeper) is also available there.\n", "proba": 1.1355935214396595e-07} {"commit": "7ec7f2fd9104b41f4262b5c445bbcbbcb8934d02", "message": "further distilled _get_latlon\n", "proba": 3.4467564091755776e-06} {"commit": "0d8d8a881f54c215324dbda4db4c1531c1d5f284", "message": "make add_menu_separator() & add_menu_about() to generalize across GNOME versions\n\nremove Quit from the menu too, it doesn't belong. Use \"Remove From Panel\"\n", "proba": 1.1674116962012704e-07} {"commit": "5a0e19ae93a539e8416a0ddd5f2bed9129c236dd", "message": "Change es.clear() to use self.remove(self)\n", "proba": 1.0732896043919027e-05} {"commit": "fd19c98dcf069986dc5c6d1fe806e4be775a222a", "message": "Added 'redirects' field and 'links' property to MediaWikiSection\n", "proba": 1.6726421847579331e-07} {"commit": "ea4ec4e9da9df9cdee89e224c0a23927fe904227", "message": "small renaming of name tokens\n", "proba": 8.118738037410367e-07} {"commit": "2d2fbb4c5e612a69bc68d85a5da64c3dfddd4150", "message": "Implement project serializer 'update' method (itacloud-4400)\n", "proba": 1.5490003590912238e-07} {"commit": "7d3d3ffb7a430c7451874754fceab376a7f1c6da", "message": "The Upcoming section of the events page will now show only events that are, in fact, upcoming.\n", "proba": 1.1870584870621315e-07} {"commit": "e388e72eec95c481fff6e090503458d434b2dfa7", "message": "FetchQuests now remove the item they require you to collect from the player's inventory on quest completion.\n", "proba": 9.912533016631642e-08} {"commit": "8c82a11d20987a99c49d686d3b151843e191eb87", "message": "fix stderr formatting\n", "proba": 0.0009002648293972015} {"commit": "aed6a5eed8d82106c7f580156dfb49b9dee1d808", "message": "Include SAM header in output\n", "proba": 1.9566466562537244e-06} {"commit": "eb29be94972e81106d478465902ad3329b67317b", "message": "change default\n", "proba": 2.184510094593861e-06} {"commit": "fd113cd4a1f965268e683286496447ab8d9b5d5b", "message": "Added errors command\n", "proba": 1.8229816589609982e-07} {"commit": "d4b2085bfc9c2621e5f7995f02afa041847adc1a", "message": "Totoro: improvements to set rearrangement", "proba": 3.6714462225972966e-07} {"commit": "d183c8bde7a5d3465ba72b38b7964d57d84f53c2", "message": "Fixing error of phase angle in ECO dataset\n", "proba": 4.05056766794587e-07} {"commit": "0344750f7dc39d28ef4265080bfe6220701a77ee", "message": "Fxd non-adding last line of a paragraph if len(paragraph)>80\n", "proba": 0.00723635358735919} {"commit": "d934ca6cd27744da98a2a34f1fee3b4aae5f2674", "message": "remove un-needed import\n", "proba": 9.867470362223685e-05} {"commit": "742e4dfdcc9c1c47e76f0f9c5e9feb8a1c59b664", "message": "[fix] fix paging of duckduckgo\n", "proba": 4.953283792019647e-07} {"commit": "1852b2c0892a03776fbb6d14c883e0680397486b", "message": "fix pep8 misprint\n", "proba": 0.0300957802683115} {"commit": "28a89d2f5c1aa828c196a586d932682a9be0c415", "message": "Use \u201c!=\u201d instead of \u201cis not\u201d for strings.\n", "proba": 3.613401986513054e-07} {"commit": "53604648d30bb196d46ff74181d3bb2f3e184002", "message": "Check microsite configurations for PLATFORM_NAME setting before defaulting to global setting\n", "proba": 1.9227915970532194e-07} {"commit": "56583e1e17a23f247d56c99b9a1410251c90e2f9", "message": "\u0417\u0430\u0431\u044b\u0442\u043e\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438.\n", "proba": 2.863891381821304e-07} {"commit": "ebaa048378b3eb528a49c03277c69bcb0bf2b32d", "message": "Add implementation of test_load_replaces_playlist\n", "proba": 2.8620983357541263e-05} {"commit": "f8721034b8a6eb2f460bf0aca51d35aebebf7423", "message": "Rename !desertbus to !dbcountdown\n", "proba": 0.999998927116394} {"commit": "3c1a456c6b516cc42f4f98c8b6bc34e6016a3418", "message": "Added handling of to xmlrpc-class\n\nAs the Apache JAVA XML-RPC client encodes null values as \ninstead of as xmlrpclib expects, xmlrpclib is now slighly\nmodified runtime to also handle the ex:nil-values.\n", "proba": 1.1127288956913617e-07} {"commit": "eb2ac5137acd2bd25b6d878548b7e3e569486219", "message": "[fix] improvement in trml2pdf.py for the image\n", "proba": 1.7143990760359884e-07} {"commit": "0db797bc125ec608734ea74877bf604cd8298cf4", "message": "Rename next_track in tests\n", "proba": 1.179440278065158e-05} {"commit": "17affea21383b8148a34adb3465cf799a0c288e7", "message": "Add pydoc tests to make_item_endpoint()\n", "proba": 1.6345001085937838e-07} {"commit": "3c62ed645bc7d3b0419cc96c8a18de032fd51026", "message": "Cleaned up\n", "proba": 1.4387815099325962e-06} {"commit": "5d9b4a820da738338f0df2a91caee69cda1f82fb", "message": "Added handling of blacklist for tempest\n\nIt is now possible to exclude some specific test cases (\"black list\")\nfrom the test case suites.\n\nJIRA: FUNCTEST-197\n\nChange-Id: I2946a010793da0a3d3ef1d96aa0ca0840e8a761d\nSigned-off-by: vitikkan <478f7ca616a7d23ed1ae94747b74c4df3ef9bdf3@nokia.com>\n", "proba": 3.784599869049998e-07} {"commit": "51428b1dfd568d7b47d35308c05be4e3672a1f64", "message": "fix condition bug in ERROR_UNLESS_DEFAULT behavior\n", "proba": 0.0002453495981171727} {"commit": "416d68c33c5ddeb67e5ea2edb4b102e6fe5fce86", "message": "expression without else\n", "proba": 0.00037408561911433935} {"commit": "afa99e6d9deec31ee249c12694ab9e1af9bea4b8", "message": "Use yaml.safe_load. (#4537)\n\n", "proba": 2.3768001256030402e-07} {"commit": "a49fabfb4343fca3261b94e5ab691fe33bd6dba1", "message": "Workaround the bug\n", "proba": 4.3466293391247746e-06} {"commit": "e70900e3220c182fb0b64d1c3a9ac01babc9b2d6", "message": "Update RSPET_client_min.py to v0.0.5a\n\nCode clean-up", "proba": 1.7808578434141964e-07} {"commit": "b09e20617f7fe5828567c770dfb0b51e0b76916c", "message": "Bump timeout for vmware.\n\nChange-Id: I1435deb4d3a7f6901558628242dd0a48a773ae1d\n", "proba": 3.508198642521165e-05} {"commit": "1f4a121aa781117bc0daa3b4485cf7757f8112ee", "message": "Rework CoreNLP tests for 4.5.1, make them work if CoreNLP is on CLASSPATH\n\nIf not, they are skipped. Sadly this does make the docstrings a bit more confusing\n", "proba": 5.035832373323501e-07} {"commit": "854d1e532b6beaac40c4d76823abf583a79adb94", "message": "Improved splitting\n", "proba": 1.126583811128512e-06} {"commit": "8b62e29d4d9c3e516dd3f1556e4b47da6736caf5", "message": "FIX: typo\n", "proba": 0.9991843104362488} {"commit": "ac479164c120439651ed257ae64728614684a100", "message": "Check the router object exists before adding interface\n\nBefore this fix the add_interface was called before\nchecking that the router was present.\n\nChange-Id: I091b2cab339fd8dd9df102dcd22826bcabe109a7\n", "proba": 9.4461182015948e-05} {"commit": "76b013628a6827c24fca73508efa78b3a491fa16", "message": "chg ver\n", "proba": 3.129885726593784e-06} {"commit": "51aa3be1ec7d269b443129d203db1def54018984", "message": "Previous version\n", "proba": 1.259971043054975e-07} {"commit": "e2096a7641904b014e5d5154f798d75d4b0d8d6f", "message": "minor bug fix of last commit\n", "proba": 1.6819613790630683e-07} {"commit": "1599062a52180abe13c10c34e3f921c77c859df7", "message": "[#69] fix splinter test\n", "proba": 2.6416736886858416e-07} {"commit": "a4b23b635cf7e4bd02919dedd52f8d6c03a98d13", "message": "Treat \"\u00fc\" as \"u\" in the Portuguese stemmer\n\nThe substitution is done after \"q\" and \"g\", which are the only cases where \"\u00fc\" is used\nin Portuguese. This should avoid unwanted changes to proper nouns such as Klein\u00fcbing,\nK\u00fcr, M\u00fcller and Sch\u00fctt.\n\nFixes #755.\n", "proba": 2.1794150484311103e-07} {"commit": "5b4eade8a2688c5897f2b1f758cf929db4c2ed88", "message": "Edited test.py file\n", "proba": 4.684601151438983e-07} {"commit": "2fa54e50913cc6d3e117d89e20b743e66e3b9859", "message": "tests/shape: remove use of triangle fan topology\n", "proba": 9.069690918295237e-07} {"commit": "adee5a772df3b8004f65b96518ea64117eaf76e9", "message": "Fixed the number of concurrent tasks\n\n\nFormer-commit-id: a280a5960bfc61434ad9520525e43dec882fb3c9", "proba": 0.002565231407061219} {"commit": "72033409f49d892302f30cd1536ca1abce814e72", "message": "Net Test Coverage\n\nExtend test coverage for net module.\n", "proba": 1.0828657082129212e-07} {"commit": "90f830c1728ca28687122a19b16cbda601b297fe", "message": "cosmetic\n", "proba": 1.343016947430442e-06} {"commit": "80de77b8a33661d6a8292c6fd13ef00410a3d8c6", "message": "Added copyright statement\n", "proba": 1.2130203685956076e-07} {"commit": "d6e0fb5b8ef6c8837c860c78a6c63d0b258e2de6", "message": "remove age param from facebook api called in sns binding\n", "proba": 2.4674585574757657e-07} {"commit": "4e60b1a75dcc746ee924eea52c04ba75608bf284", "message": "list scripts in the script-paths\n", "proba": 5.287774342832563e-07} {"commit": "e5257448e396e659570c76cbf8f2315f0a37edff", "message": "fixing variable with int names refs #387", "proba": 3.174891105572897e-07} {"commit": "f4911089aa8272e99009ce221275848e3354e622", "message": "skip known failures on CUDA 10.2\n", "proba": 4.7665210445302364e-07} {"commit": "93ae554cf7ed097bda2b8e178107177ba6f7da20", "message": "Change figure closure in Plot_Quality_Control\n", "proba": 3.7598707081087923e-07} {"commit": "68ea97b15559db4e2fd8ee28cb92d863b5a474a6", "message": "More refactoring\n\n\nFormer-commit-id: 5245f3ab24c412e570f13eaaf4a84d50d451c3ef [formerly 5245f3ab24c412e570f13eaaf4a84d50d451c3ef [formerly 95b9cb217df3b46a5b703ebb5853ffe20f797ff1]]\nFormer-commit-id: 69d45553785335b1e615732e61daa419b4e1e6d2\nFormer-commit-id: 76b7e346183af142a58ff405ed0c3b258e6ed590", "proba": 7.751257726340555e-06} {"commit": "d6cf6d20bce6a1619e7678d9a28277cdce01a9e7", "message": "pepflakes\n", "proba": 1.4248821571527515e-06} {"commit": "b65363d3eaffd453ca0790b34a5a4dc4354e176a", "message": "Fix check_uniques in non-unicode locale\n\nTestcase: `LC_ALL=C make -C utils/checkUniques`. Works with python2 and\npython3.\n\nReviewed by: bgamari\n\nDifferential Revision: https://phabricator.haskell.org/D2372\n", "proba": 2.3774966848577606e-06} {"commit": "e3bdd8e449547f3215f28919d8828659ecdd1ff2", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "aae84a8d84f1671b6e4264a8481fd742478ac947", "message": "simplified internal wms registration\n", "proba": 1.3908514517879667e-07} {"commit": "be72e8ef2508e0c1e2d34c2c5223a3b22c96b82a", "message": "Generate collection/deck graphs.\n", "proba": 1.4897686924086884e-06} {"commit": "0136b05eae26f85ee49cfb355d72a36dd95600e7", "message": "Fixing integration with thorn\n", "proba": 1.6301071070756734e-07} {"commit": "9b3b3db89547cada1fe96c23ea63c1aeb96a7dfe", "message": "guid update\n", "proba": 2.8259432838240173e-07} {"commit": "ec49cf0c95be4a6699366327fd02cf6c63540d6c", "message": "return data from dummy parser\n", "proba": 0.00019913792493753135} {"commit": "fea2c2e36b699fd53001940295c862c5f5f878bf", "message": "Removed an else in manage dns\n", "proba": 5.017185458200402e-07} {"commit": "a61910b832d7ee913fa336ac16e15dff4da1bb8e", "message": "Add new task to schedule and send boot reports.\n\nChange-Id: I7f3f643c8ac71f3edf0c38a01be49004292b7b25\n", "proba": 0.0002179995644837618} {"commit": "bef382901114a5614e0947bb4ab8a5e6a44beaed", "message": "Fixed bad merge\n", "proba": 4.679760650105891e-07} {"commit": "ffbb2c96896a184032807ab00dbcc0ca89ece77a", "message": "This is Additional tests for the container_class parameter of DynamicField\n\nThis tests DynamicField dereference with ordering guarantee.\n", "proba": 9.705689762995462e-08} {"commit": "edb89d5ffe181ea6c3dc8d771ac46e12c96bf87a", "message": "[docstrings] small docstring and comment updates in base workflow\n", "proba": 1.3394733855420782e-07} {"commit": "1bf46fda4ed88c8b8fa8a82d0c5bfffa2a63080b", "message": "pointing to parent dir for theme\n", "proba": 1.3164951440103323e-07} {"commit": "455c4a06b488557a78d33593bb4ce3cf22bf499c", "message": "Sending less outputs [skip hazardlib]\n\n\nFormer-commit-id: 0de7e57875875089ca9f0f4fc073879a2f7ff035 [formerly 0de7e57875875089ca9f0f4fc073879a2f7ff035 [formerly 3c48de391491a0fce3f68135a5eb52082fc3de38]]\nFormer-commit-id: ea0d6361df8aae139a62937b1cea33540ff2dce0\nFormer-commit-id: c712cf0fa691a28df28bd2b75c341b420dcad3db", "proba": 5.0861446652561426e-05} {"commit": "5ce99025a676a0b312cc9e13ebfcab69e5e1e5ee", "message": "Added site-to-site SMS support\n", "proba": 1.2726319198463898e-07} {"commit": "f0e45c5bcc19e7dd2abb0e90c1354d1fdf72377b", "message": "Fixed #14468 -- Extended the list of content types that the test client could guess when handling zip files. Thanks, Russ and emulbreh.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%4015236\n", "proba": 4.2471324945836386e-07} {"commit": "ca334c308c0bf42b555b931f20c32eae1b620fc5", "message": "Oops. Added underscore after hostname.\n", "proba": 1.2450070130398672e-07} {"commit": "ce3f0e1de0c06d6fc4a569773db8fba3f6c5d61b", "message": "tighten plot ranges to BOSS spectral range\n", "proba": 1.8560613170848228e-06} {"commit": "2268c01249806f935473f6b2cbf9cb92927ef28c", "message": "removed depreciated function and updated visualization naming schema\n", "proba": 1.8097303211561666e-07} {"commit": "e9f2fff14ecdefcf5479d595e6846d7f7412b7f4", "message": "added None check to extend() method for dictionary\n", "proba": 2.441317974444246e-07} {"commit": "8bd8b014a8393d4b94e6fd192b64e3a2d2f65fce", "message": "Small fixes in the extension tester\n", "proba": 1.3474065951868397e-07} {"commit": "56334354532e9054be3f12f2a505a200223184ba", "message": "Sorted assets by taxonomy [ci skip]\n", "proba": 1.1018648393701369e-07} {"commit": "3c527b0592b087ec2f581c709e62f6e28d8be1d7", "message": "Fix MedNIST error in 2D classification integration test (#859)\n\n* [DLMED] fix bugs in integration tests\r\n\r\n* [DLMED] fix min tests\r\n\r\n* [DLMED] remove test branch\r\n\r\n* [MONAI] python code formatting\r\n\r\n* [DLMED] fix integration 2D\r\n\r\n* [DLMED] remove test branch\r\n\r\nCo-authored-by: monai-bot <44c1f063c38035faefb6ff7e163cf4202a207288@gmail.com>", "proba": 1.245063998567275e-07} {"commit": "f7d0d218f607703a3234d1415331b8d6dad9c465", "message": "FEAT: ML: add global initializer to workflow_basic\n", "proba": 7.435906468344911e-07} {"commit": "8b98d31bbe7a2f02d1c8e7dafadbeadcafbdd8e5", "message": "Preventing the get_free_port() test from cluttering the output\n\nThis also strengthens the test, now that screen clutter is not an issue\n", "proba": 2.536452029744396e-06} {"commit": "7c9e5baf07f38e1f89564e9fae5468f6fea8d691", "message": "Surrogate Model\n", "proba": 7.869055593801022e-07} {"commit": "27a113a5946653e094e4ae5a039b705ccae0f4f2", "message": "Restored Starmap in build_loss_maps\n\n\nFormer-commit-id: 0ee93188b896f10b2d64ae32830304105e4b12fb [formerly 0ee93188b896f10b2d64ae32830304105e4b12fb [formerly 14819ba88488cb6c85aa0b6f65574e2a16932be3]]\nFormer-commit-id: 92059a09cafd5d9fe5f6121e3dc5a5728d5c1a01\nFormer-commit-id: 09d61b30a292a1f75ddb7c3ac042754557c03f0d", "proba": 7.133262442948762e-06} {"commit": "628b9aca2ec23b8851e39447bb318b35a71731bf", "message": "Fix ez_setup\n", "proba": 5.4441112297354266e-05} {"commit": "addae8c55a1a3d097c68dc3d4f59c4a90f348963", "message": "flake8 - test_submission_handler\n", "proba": 1.3838972279245354e-07} {"commit": "f2c78919b56d5627928f9fab9e81bd71bd24ce3c", "message": "Replaced mutable default argument values with None.\n", "proba": 1.2891040057638747e-07} {"commit": "7355801cd02cb82ceea96046b962fca78dea1f6f", "message": "Enable default parallel environment in ddpg example\n\nEnable in the train_eval_mujoco example of ddpg, so that\nnum_parallel_environments becomes a tunable hyper parameter.\n\nPiperOrigin-RevId: 228889544\n", "proba": 3.31312890011759e-07} {"commit": "d36c9f7c7b1e3319958f45c4306843b777fd17b1", "message": "removed unimplemented methods\n", "proba": 4.629556769941701e-06} {"commit": "ced3f44a487d05ebd92123b20319426a5841c72d", "message": "Fixed the precision in ucerf_test\n\n\nFormer-commit-id: 5813a16101bd01ef8e99488f630f66fd9047bdd6 [formerly 5813a16101bd01ef8e99488f630f66fd9047bdd6 [formerly 633ea7177fd4b5800120f989d33b39ff5eee1e30]]\nFormer-commit-id: 87de0295ce446a3bdbfb3f1170d656df1e31eb18\nFormer-commit-id: 82a85e23ee407b16a229641ac999919472862622", "proba": 0.9985069632530212} {"commit": "93459ecc48dbd0abdcc8eec9a4db0511b079bb38", "message": "FIX: ols_epochs.\nThe arg 'regressor_names' was assigned but never used. Instead 'names' is used throughout. Made it consistent to prevent errors.\n", "proba": 1.2188067444185435e-07} {"commit": "20080a9b68609b954a51c56919f2cb9512c04692", "message": "Fix plot.py\n", "proba": 0.0005249587702564895} {"commit": "cc4718d9799c42a91be9dc66562bc5a29cc7becf", "message": "Fixed test_export_calc [skip hazardlib]\n\n\nFormer-commit-id: 5cb4ce6c8ccae2854f6a32527578a20d473ca9f7 [formerly 73832d9183370412b85a9be46d190d7ca508b958]\nFormer-commit-id: 859807ad93135eea57b8de20b4060bdf5afb8a29", "proba": 1.0926777349595795e-06} {"commit": "5baeefeed9ec39b1d966dfb06f27c4db29cadda5", "message": "Bug fix\n", "proba": 5.465154799821903e-07} {"commit": "103d2a82f0c93a995cbb49370723e95806dde793", "message": "Added test on `oq show slow_sources`\n\n\nFormer-commit-id: 0156cc892c48629981a635c0e58931257ae6d857 [formerly c809e4690dda4e394330c8b6781cd402fa94bd59] [formerly c809e4690dda4e394330c8b6781cd402fa94bd59 [formerly 0009a2e6c28af5e96208a732c76f9e1e92844f71]]\nFormer-commit-id: 9309037395918797d4b5661e16192f37399f8310\nFormer-commit-id: b9650a8e27206044e3b9a7bd2e97f40dfed3b936", "proba": 5.154673772267415e-07} {"commit": "680ec905d6a19488b59d0327bf1b2885b618ee81", "message": "Cleanup [skip hazardlib]\n\n\nFormer-commit-id: 8c49da078b980b8aee62613353b273bbcae1420c", "proba": 3.3978230362663453e-07} {"commit": "ed875b5784fe192ea3ad3f9e10d6103e16df6ad0", "message": "Reintroduced a method task_arg_gen in the risk calculators\n\n\nFormer-commit-id: a1628836c4f565e3e6e70459c4917bef21adee41 [formerly b929accede7dc455280eec700ce7664d28cafc00]\nFormer-commit-id: 6ce114358ef065a2ee58684f9f44f0e604d7dd07", "proba": 0.0014338925248011947} {"commit": "775d0c886254ccc9c61db1e0f7934a3a9d061ebc", "message": "Added sorting files by date for get_files function\n", "proba": 2.1904233449276944e-07} {"commit": "bb77349382dfbe16b400c1e7c56e5db458b8dac5", "message": "Tasks with fewer assets are submitted first\n\n\nFormer-commit-id: c6f9a6b190e1afda5d413d5b8ec76e9dbb73f9f8 [formerly c6f9a6b190e1afda5d413d5b8ec76e9dbb73f9f8 [formerly 38ea5258079087f9805ecb4794bc02912f9d3755]]\nFormer-commit-id: 814ed157a55636143bf6cdb8fe4469f741fcc903\nFormer-commit-id: 5dbe0da889c99c555ad565b6db3b34a634efed92", "proba": 1.0973885764542501e-06} {"commit": "60daaaade041c75fff9721b491f1295048ea8de6", "message": "Work with Python3.4\n", "proba": 3.893471148330718e-05} {"commit": "26ccca29a2744ed5d54148464c645ac628f19f8c", "message": "tests: download resources only once from S3\n\nCreated a local \"cache\" per test run so that\nkernels & filesystems are downloaded only once\nper test session. The microvm resources are copied\nfrom the local \"cache\" to the microvm slot.\n\nSigned-off-by: Andreea Florescu \n", "proba": 1.3432470780117e-07} {"commit": "fdf96071d62cbef84e212b283a6e5a39f7139cbc", "message": "sat: Fixup simple_sat_program.py\n", "proba": 1.0723980494731222e-06} {"commit": "caedc15e8b7f2e3bb79f22e715df0858f34b9379", "message": "Make FSMLoggerAdapter compatible with Python 2.6\n\nPython 2.6 does not use new style classes in the logging\nsubsystem, but the super call requires the parent to be\na new style class.\n\nThis patch updates the code to use the old way of calling\nparent's constructor.\n\nChange-Id: Ia02a3b7174554f174ad84ec1e22f565e62b69c32\nSigned-off-by: Martin Sivak <361315d85e190db42db95eaca639c05fa7701076@redhat.com>\n", "proba": 3.068910245929146e-07} {"commit": "e681d495399f89368c3344435ace455801781d29", "message": "developing\n", "proba": 1.0944079349428648e-06} {"commit": "377f09c5706cd748ba08bbd66f2f4dadf3734640", "message": "Add test for profiler client/server interaction.\n", "proba": 1.3219150218901632e-07} {"commit": "0b60b4137613e24e35f554c7b7a3793b7b15989e", "message": "seedOrganization functions added to program utils.\n\nThey will be used to seed organizations in a stateless manner.\n", "proba": 1.1781173014924207e-07} {"commit": "a555aa3c908e2ddad7edfb3272f5efaef2d135d5", "message": "\u3068\u308a\u3042\u3048\u305a\u306e\u30d5\u30ec\u30fc\u30ba\u62bd\u51fa\u3092\u66f8\u3044\u305f\n", "proba": 1.9921999694361148e-07} {"commit": "058d261aa30e0ebc6aeaf267b8d22f83f418b459", "message": "Python 3 changes\n", "proba": 3.1889333058643388e-06} {"commit": "158c4501bcdadca0838c42aef724d64767e06ba0", "message": "Testing cpu consumption time\n", "proba": 6.806854457863665e-07} {"commit": "94b7c97e956685304731dba802763112f9a8642f", "message": "Modified admin\n", "proba": 3.23759678622082e-07} {"commit": "89d6518e251a4ea04114d935da8e055f6004befa", "message": "PM-1514 fixes to get mkdir, put, get, cp working\n", "proba": 1.1365165875076855e-07} {"commit": "0b8ca264338d1863c199358aaf8f3c4d8da206bf", "message": "add missing import\n", "proba": 4.194788562017493e-05} {"commit": "1e5f2f658eab124cf99d8a34b87935104cbae530", "message": "For non-zero return code, ignore checking output file.", "proba": 7.610472607666452e-07} {"commit": "6240a8e2bf603765c4ad5d99d52a1ae82ba6d1a4", "message": "Changed UITest test order to correspond to internal code dependencies.\n\nsvn path=/trunk/libavg/; revision=6590\n", "proba": 1.9320816136314534e-05} {"commit": "a79d5987f0366629a16b59dc5248d53617492e9f", "message": "Fix intermittently failing test\n\nImage template cache was sometimes not invalidated because previous tests happened to leave it on the same data version that the database reset re-initialised it to\n", "proba": 1.2769403667789447e-07} {"commit": "6047245ca5996d93640fa6f885ec5ca6dbab1712", "message": "the admin now uses local openlayers\n", "proba": 1.3431804291030858e-07} {"commit": "60aea2718d845459e3705ec55effe54c4d4ec308", "message": "Leader.processFinishedJob(): log any output files created by the batch system\n\n- Looks for any files named 'toil_job__batch_*' created in the\n Toil workflow directory. For example, standard output/error filenames created\n by BatchSystemSupport.formatStdOutErrPath() follow this format.\n- Non-zero files are logged with StatsAndLogging.logWithFormatting(), and if\n --writeLogs is given, written to files with StatsAndLogging.writeLogFiles().\n", "proba": 2.351252760490752e-06} {"commit": "8883b4cbc36618539a4d1b4e087573afc2017278", "message": "Fixed parentage of macro arguments\n", "proba": 2.3708551566414826e-07} {"commit": "ef7e97eed469d446656001dd8f3d2fc6ac765493", "message": "It exclude some variables to be saved into the image files (issue #42).\n", "proba": 1.028344698283945e-07} {"commit": "ef2d4f2989ceb442eb8fd0b9d5466f5e58684b33", "message": "Draft: Fixes in gui_offset\n", "proba": 2.637195564147987e-07} {"commit": "7291f06dfa0e41876e9743439d5153ffcc8de524", "message": "[fix] en m\u00e9todo anglosaj\u00f3n\n", "proba": 1.1145604048579116e-06} {"commit": "07d1abb387c6b62093375fa7df99c92f2aaacda0", "message": "Fixed import and coverity issue in rml_post.\n", "proba": 1.0100562519710365e-07} {"commit": "acbb5bf2f1ee3c050973ead4531be55efeec26cb", "message": "Actually fix the coqtop logic\n", "proba": 1.4822336424913374e-06} {"commit": "e6148d7b8af2c63e48b401a1d66890a8216f6e61", "message": "Better handling using convenience subprocess.call instead of Popen\n", "proba": 2.030772066063946e-07} {"commit": "1df06ba1be67812d39af60d0d36b05bcea27dafb", "message": "Blacklist some variations of \"shit\"", "proba": 1.3579109747752227e-07} {"commit": "82d3d4be90de947c7768b94225e1253ec9f0c67e", "message": "Oops, had a reference collision with the term 'event'. Renamed.\n", "proba": 1.2814321337373258e-07} {"commit": "742eba889b3d31fa5b9e131d502c32760b302b83", "message": "+rssong", "proba": 2.0573141057411704e-07} {"commit": "9a42153611f5dd0bfdd63cae0caa9247735f3e3e", "message": "+hakerstars.com", "proba": 1.7853710687631974e-07} {"commit": "5b3b88682c9a7bdbb96b06610a7fadbee70060ba", "message": "Included Kevin's patterns #86\n\nMany were already present on the list", "proba": 1.2545993399726285e-07} {"commit": "7e0d063d8489e3677c6ebf62dc85a73bf04b5ae3", "message": "Disable pattern-matching product name", "proba": 0.0002508308971300721} {"commit": "0bd4948170f3c6fc19f28b6e7f3b3f22c5d558ad", "message": "Watch AS 31863 --autopull\n\nDACEN-2 - Centrilogic, Inc., US\n", "proba": 1.1488787521329868e-07} {"commit": "b14a1c84d2d04177e6a952f94b1a04380cfdaa2d", "message": "-stack from pattern product name --autopull", "proba": 2.7097252086605295e-07} {"commit": "9937f9df6c5b120c9260174492fa3614dc6b2ebe", "message": "Pure code readability changes\n\nfindspam.py:435: Clarify what 3 items of the list are\nfindspam.py:446: \"body_type\" is more declarative than \"body_name\"\nfindspam.py:458: Reorder variables to match the order in other places\nfindspam.py:489: Replace variable name \"useless\" with an underscore,\n which is certainly more conventional\n", "proba": 0.0007480271742679179} {"commit": "4b29ed0e5d7af55c14f5e6e18a44693025682e40", "message": "+lost lover", "proba": 6.750818783984869e-07} {"commit": "a97913b2b95d3f33d7e0bba9a80f5e1faecffb72", "message": "-John from SO --autopull\n\nLots of FPs, hasn't spammed on SO for 13 days", "proba": 1.1672737088019858e-07} {"commit": "c017aa8ca13bfba10760931dabe1d39078a90cb8", "message": "Watch Domaincontrol ns58,ns59 too --autopull\n\nMore #fake-tech-support domains\n", "proba": 1.1429784763095086e-07} {"commit": "9eccdd5e62c60c61b1e8feb6d788e05c3f0f11af", "message": "Fix pattern-matching product name --autopull\n", "proba": 1.1254755008849315e-05} {"commit": "9536cd5d332a32390d3a32e9beee944df895bb9d", "message": "Hardens the slurm job monitor\n", "proba": 3.8795215573372843e-07} {"commit": "25e3d26d1eaeaec4206ac3b128e681fd9cd04078", "message": "Add slash to sh.st. --autopull", "proba": 2.379873507152297e-07} {"commit": "36ccb18abc23c6650d71b52f7fef140ff8b54a20", "message": "pattern product keywords\n", "proba": 8.345151059074851e-07} {"commit": "aac113a31ed3a0e6ca9598e336aaf104bf5accaa", "message": "AER-4474: Fixed over highlighting in watch commands\n", "proba": 1.3958756994725263e-07} {"commit": "b37f27b38351c0c9d5d3131553bf37c9c2ef38b7", "message": "new method bad_link_text\n", "proba": 3.4286790651094634e-06} {"commit": "c85dbf3d9a0377e583eb92051ec838b716a75d0e", "message": "ip fix\n", "proba": 1.1046420240745647e-06} {"commit": "61fd319a9bd0fad5282f05fa07e6bffbdb09fc5b", "message": "Fix open_default\n", "proba": 6.774326720915269e-06} {"commit": "249ff7eee12dfabeda3a98e57e9096e7ed2b1593", "message": "Updated from Brython Server: 10/2/2015 2:41:45 PM", "proba": 1.0937844052705259e-07} {"commit": "2485dd57a134aecc9869009a745657456705d6d9", "message": "Updated from Brython Server: 2/5/2016 2:31:51 PM", "proba": 1.1681913036909464e-07} {"commit": "00d97ccb657cfbe9afea9f093c0a332333ae50b6", "message": "[FIX]\u4fee\u6539\u4e1a\u52a1\u4f19\u4f34\u671f\u521d\u8bbe\u7f6e\uff0c\u6539\u4e3a0\u65f6\u4e5f\u9700\u5220\u9664\u4ee5\u524d\u7684\u7ed3\u7b97\u5355\n\n", "proba": 1.3627239070501673e-07} {"commit": "674d474f66a40e9be37e0875a1ef71926d866bc0", "message": "safer safe keyword\n", "proba": 2.3021368178888224e-05} {"commit": "59330c227bd4165b3ced36dcbbb93f206f0760ad", "message": "Squashed 'hack/libbuild/' changes from 7b8361c..3ae7f19\n\n3ae7f19 Allow reproducible build for tagged builds. (#10)\n\ngit-subtree-dir: hack/libbuild\ngit-subtree-split: 3ae7f196bf7e4a60d2e471ba2469b729cfa81271\n", "proba": 3.63335529982578e-05} {"commit": "5e9bfad8b7aff950c2f70e6aa41595f725e1cb51", "message": "Canonicalize query parameters.\n", "proba": 6.094523996580392e-06} {"commit": "4177fc6df2800908c0b868bd577b9bce1bc85cfa", "message": "Can call del Doc.attr to delete field value\n", "proba": 3.278423150732124e-07} {"commit": "d38d90aab6558dff0eb9f5f3e07e6c4f9d6a4f06", "message": "account email address is no longer required\n", "proba": 7.694383157286211e-07} {"commit": "8bd7a986cbbae4c9f281348724bcc9db05df11b5", "message": "Not splitting on RADIO 4\n", "proba": 4.3546683059503266e-07} {"commit": "7bc6ea8911e95c33b685c8f9b9a0e649f1ebbe93", "message": "Added LOG line to describe groups function to find out what's going", "proba": 1.3120168773639307e-07} {"commit": "342bb685c9e6adc822a0e2cb66a868ec73b7b909", "message": "catch exceptions from novaclient when talking to child zones. store them and re-raise if no other child zones return any results. If no exceptions are raised but no results are returned, raise a NotFound exception.", "proba": 1.3022749101310183e-07} {"commit": "725aca5657a30668d0ecb51957639d3fd5916415", "message": "Add Radiaton Sickness\n", "proba": 0.00039704691153019667} {"commit": "4a040acd2610ebe02962c50bf7ac6e28a5e2b6e4", "message": "Fix dynamic res\n", "proba": 6.47993729216978e-05} {"commit": "20eb8cd9572ed1a5b1230869a7fac8436dcb67b2", "message": "Switch off SLP vectorize in cheap module optimisation run.\n\nAs title.\n", "proba": 1.0282211349021964e-07} {"commit": "e29b114a9193256013c8a5d9341b821c60b5a9e6", "message": "transition: region defaults to Region.ALL, not None\n\n`None` means no region (e.g. the result of `Region.intersect` for\nnon-overlapping regions).\n", "proba": 3.6891671584271535e-07} {"commit": "9c1d44f1cc20fa06613c9ea1e4e8d2988e170c0d", "message": "Corrected error messages in np_allclose\n", "proba": 1.4703524584547267e-06} {"commit": "901aa0f75788fdf7471ab2e632be3fed45260de2", "message": "Made default directory /tmp\n", "proba": 5.98515612182382e-07} {"commit": "327ac9c11fe5092eba729b6d36785d6d1a4eccf7", "message": "Expressed errors as string constants\n", "proba": 0.9983212351799011} {"commit": "38c3de51a907cec2e74ebe67c38a8501d025b015", "message": "Added more optional arguments to constructors\n", "proba": 1.4412147208986426e-07} {"commit": "cc6e23ba9320d0a4f7d8eb4d918f3f1e55718f14", "message": "Small clean up (#18)\n", "proba": 1.2016103312362247e-07} {"commit": "fcdc5ff29dd0e747457eef1acc50553a905e22ac", "message": "Adds a `no cover` line for the `ncores` fallback\n", "proba": 5.998001597617986e-07} {"commit": "ae619d004507154f9f1ac0a3549518908f1991a1", "message": "Use partial() in place of VariableFactory on 2.5+.\n", "proba": 1.1519144038629747e-07} {"commit": "7666fe251d7bc270306066d7f552d381ca6ecb91", "message": "Cam and Geocache exporters don't error on bad workspace\n", "proba": 1.5894069349542406e-07} {"commit": "74f2b2ec999bbaf07a459e6db70bf83b7cf76657", "message": "Flipkart return modified\n", "proba": 3.867873488161422e-07} {"commit": "3cbfb32167361a681ab1d7cad8305b528ee92c81", "message": "Omit loadtxt and savetxt from __all__\n", "proba": 1.6710605166281312e-07} {"commit": "27b4461233cf412ef8cb1f3e8e8e285a41e44d0c", "message": "Flipkart now returns dict\n", "proba": 2.2881148709075205e-07} {"commit": "0be88e2597b9ca8778b1ae6125a271306634f3ff", "message": "style fixes\n", "proba": 4.769340193888638e-07} {"commit": "76099ada3cca1d815e1b32f5d0c9786e1c5e0481", "message": "DOC: fixes from review\n", "proba": 1.3082224370464246e-07} {"commit": "585adaf35f25f162ff9f030f9710188dd68bdf12", "message": "remove deplicated code\n", "proba": 0.00042559337452985346} {"commit": "24e19c7f5ca4da03f0c80ecd09fddb418156537b", "message": "repr html on decor\n", "proba": 1.6562908911055274e-07} {"commit": "27172db9f01c31f65ccf0e452edb988ce19331ce", "message": "Mega-cleanup. Start of creating projects when joining rooms.\n", "proba": 1.0192586330504128e-07} {"commit": "611a3de7c7247bb85fc94503b38f6b3afaddc58f", "message": "add example\n", "proba": 1.502204895587056e-06} {"commit": "082a81906eacee245c333a7e7743af7d5b20eb5e", "message": "Initial (failing) test for observations.\n", "proba": 1.517637002734773e-07} {"commit": "89111774570fec29415948a6b6b9a970a71fc47e", "message": "In subset_analysis.py: set maptplotlib.use('Agg') to let make figures without display\n", "proba": 1.7582945019967156e-06} {"commit": "f8f2277c81445f8b1167e50bc1e7951bc7b2ec3d", "message": "Run tests with py.test or prove\n", "proba": 1.4374604972999805e-07} {"commit": "88a54a10420ea1240b74477ce60204e0e2bec8ed", "message": "Store range queries on the TermsAndPhrases object, and make sure they're kept separate for query & filter\n", "proba": 1.1970215041401389e-07} {"commit": "185b026539f6b2f2d28de18a4c3b30e931de1bba", "message": "Remove _inner() from DiscreteLp\n", "proba": 0.00015067224740050733} {"commit": "516b5f470aaef2e371c21c2ffac9f474fc284ee7", "message": "support compute images\n", "proba": 0.0004117258358746767} {"commit": "65aa32bdba559ae892c5724de4c6c3be1e4306f7", "message": "Adjustment to scaling in aiaprep\n", "proba": 2.472544338161242e-07} {"commit": "b22520d80dca1430fc4950f67922503ca929f209", "message": "Release 0.1.24\n", "proba": 2.7307171990287316e-07} {"commit": "265cca4459f15c9908367e2776984a32dfdb7900", "message": "dont count on filter exception having a message\n", "proba": 1.4925615232641576e-07} {"commit": "223481c840d52b2fb27bf6e36ce2cf935d19dfaa", "message": "more love to the global feeds checker mail\n", "proba": 1.0932066629720794e-07} {"commit": "06ff877718c61a2f8e18cbf01d2042c970a4aaa6", "message": "include simple pixel flat correction in sky calc\n", "proba": 2.825326248512283e-07} {"commit": "1531c8041c6b3f4e077d6edeb8305db2aacdbfb7", "message": "Correct documentation\n", "proba": 5.093350409879349e-06} {"commit": "40d12ba75f986ee8db3e728b983d317e1bd5c62c", "message": "test.py: Improve output\n\nRemove the output of the namespace from verify_no_conflicting profiling.\n\nChange-Id: I1d1eb4e3fd9cde11cd36522c2d968dffa9505eb8\n", "proba": 0.0010808336082845926} {"commit": "b77c34ef21356f684e6284e516a8c4fdde669909", "message": "Except proper HTTPError\n", "proba": 2.435445821902249e-05} {"commit": "6b1273539733026767827632d8fa8a0e5ac608a7", "message": "Fix nccl net plugin installed path\n\n-------------\nCreated by MOE: https://github.com/google/moe\nMOE_MIGRATED_REVID=297622165\n", "proba": 3.958181764573965e-07} {"commit": "0c83ef4560d9c75945d819520ec2eb008013a51c", "message": "Fix mimetypes bug\n", "proba": 2.988974529216648e-06} {"commit": "9bedbe2b01877321706ef1b6cb19cbd159ff737d", "message": "adding missing close for #40\n", "proba": 9.426957490177301e-07} {"commit": "3572ae1b8012e830d3423a28f687bc0baa1732e5", "message": "reduce sandbox max heap memory to 24GB\n", "proba": 5.8046749472850934e-05} {"commit": "8b3d4b5da80143e1118864dc8a4a88403e51d958", "message": "Update ez_setup.py script.\n", "proba": 1.2277077132694103e-07} {"commit": "61a2c09c93727c2dcc3c27e945dd71dc47f28230", "message": "removed parent from call_setup/create, create vars for children __setup\n", "proba": 2.772133029793622e-06} {"commit": "f9f06ecc1013837f090bdeac97a269e06364112b", "message": "allow to run tests when zopfli/brotli are not installed\n", "proba": 1.7464479640239006e-07} {"commit": "32c481b698f853f51fb92bb6ac1ae7a083d23f42", "message": "Fix test harness to not break on aborts.\n\nR=danno@chromium.org\n\nReview URL: https://chromiumcodereview.appspot.com/9706100\n\ngit-svn-id: b158db1e4b4ab85d4c9e510fdef4b1e8c614b15b@11072 ce2b1a6d-e550-0410-aec6-3dcde31c8c00\n", "proba": 4.225632073939778e-05} {"commit": "8c53951939a86600bb3fba1fd3d1d68e625a57ae", "message": "Improved handling of reference value emission type handling\n", "proba": 1.4329670250390336e-07} {"commit": "e8cc2cfa465a94b00c31695d1356d273928a0e79", "message": "Version 2.3.7\n", "proba": 5.06628566654399e-07} {"commit": "9df2f1ba18ba087874a14784f388952405a6bea4", "message": "Increased numerical stability in checkensemble\n", "proba": 3.593148392155854e-07} {"commit": "d3a88d690c1a58b1bd1550ce35f85e01d9af9898", "message": "add animation to display integration code\n", "proba": 3.0615845503234596e-07} {"commit": "24ea22f9797f4dca0ca38d59f5d0392ab2d71672", "message": "Version 1.67.1\n", "proba": 3.170524962570198e-07} {"commit": "4c4269bd701e4a1b272b6e24e55d3bf7af887f50", "message": "remove print statement\n", "proba": 0.9999992847442627} {"commit": "ce86103d70a1acbaf8202052e5865e13be066dd7", "message": "Slight change in database url, should change to read from config file.\n", "proba": 1.0847778497691252e-07} {"commit": "3af93edc1265ac745d14810cf385066ea067b524", "message": "Orphan handling in dispatcher.\n", "proba": 1.2916402170048968e-07} {"commit": "53d7408a8414f427745c2b029ec4442ac995a8c1", "message": "skips that weird double dash probe name it gets from google spreadsheet somehow\n", "proba": 1.3036019197443238e-07} {"commit": "691e4bce1e60a2d6d5e45886b81beed5eee08187", "message": "Removing unnecessary code for parsing comments\n", "proba": 1.3710525763599435e-06} {"commit": "109614efd2071d42d06ef382c6e6fae46bb280eb", "message": "update comments, fix typing\n", "proba": 1.3808097776291106e-07} {"commit": "443c94b2d840db52c2d77f9b1f2636bcf4ae3d0f", "message": "fix file type check for python 3\n", "proba": 1.6164420912900823e-06} {"commit": "25b584c0f371a64441a11954dd7d659501b19cc0", "message": "[IMP] fields: do not group property fields with 'multi'\n\nReading N property fields is as costly as reading each field separately.\nReading them one by one makes more sense performance-wise, as you will only\nread the ones you need.\n", "proba": 1.26844796000114e-07} {"commit": "0ec5395c6058c4e83bec638e4c964ee4001f8784", "message": "Chagne create_custom_audience() method to support other subtypes and add new method for creating custom audience from website.\n", "proba": 9.945637202690705e-08} {"commit": "bbad9723e1ef75d8de6c47bf9da37ef4380833b8", "message": "\u589e\u52a0\u5f02\u5e38\u5904\u7406\n", "proba": 1.0156311418541009e-06} {"commit": "d86dbd516fc623ad7cc72aaa47eafb89f8787e63", "message": "Full 169 * 169 product, and eval favorite/dog.\n", "proba": 1.0063257604997489e-07} {"commit": "246b2b765392fce151927149200bb71045f9a275", "message": "bump version for release\n", "proba": 2.0679500778442161e-07} {"commit": "269b528830ddffcde898a4141197a091f15d4e66", "message": "Vardump removal.\n", "proba": 1.6195916430206125e-07} {"commit": "2c4600f2426557da7cdddb2b6633edf67c86dee8", "message": "[IMP] [READD] [IMP] tools: mail: have a strict mode for html_sanitizer (not default) with\noptions before website: without frames, with safe attributes only.\nWe will have to find a way to use the strict mode when parsing incoming\nemails, but not when sending or storing openerp content.\n\nCurrently the not strict mode is the default one, to avoid side-effects with\nthe website.\n\nbzr revid: tde@openerp.com-20140115141319-g15zl1kqrp8sgoa3", "proba": 1.556119400447642e-06} {"commit": "a4b485f6a371c877802b2b41fe22344aaacaedd7", "message": "fix code", "proba": 7.132835889933631e-05} {"commit": "c116fff4ea4a55a422980f414922f6b18977efa4", "message": "Use iterator up to the last moment\n", "proba": 1.3866315384802874e-05} {"commit": "a82d4b1b8d807c4fbd1ef05ad7b435594e1daa4c", "message": "Tiny change\n", "proba": 1.2730740763799986e-06} {"commit": "48d25d272011734b08c645c8167d4c73094070b9", "message": "Truncate comment\n", "proba": 3.382568820597953e-07} {"commit": "a6bff8d293e38a783df21f443fda9a7edfd010bb", "message": "GameOptions - add steam and pubg\n", "proba": 1.2265935822597385e-07} {"commit": "2a0a58b5ade374bf50bddc3de5113f695a521ddf", "message": "Found an issue, fixing it.\n", "proba": 1.393817825601218e-07} {"commit": "10c6fe4a6cb21d4a1767a186b9e1e18542541e06", "message": "[FIX] mail: make read more term translatable\n\nopw-631860\n", "proba": 1.2092416454834165e-06} {"commit": "41df32c02bff5b6bf4726749019f4be041d752a4", "message": "- Added asserts in from_son\n- Changed import to be more restrictive\n- Changed visibility on internals\n", "proba": 1.335539536739816e-07} {"commit": "4a4ed4652fd30328b50d6b988c9dc692f4daecb9", "message": "[MERGE] tools: regex to find the good partner name", "proba": 1.519486318102281e-06} {"commit": "a86a195c5098b6f410d7b0d874c212e28860f5da", "message": "Fix #3248: Accidental config_hash change\n\nSigned-off-by: Vladimir Lagunov <35c9ab73a5b6a76120fdd2a72b092a011e6dfcbc@gmail.com>\n", "proba": 1.1507955122169733e-07} {"commit": "33e35de0ca0f455f9f4b9ec5847b1151d9b497b0", "message": "Add ruleset import\n", "proba": 5.792466026832699e-07} {"commit": "30b6b4b47bcf5c72c2f7b90a6122547ae23de54f", "message": "Removed some dead code\n", "proba": 2.0242307073203847e-05} {"commit": "4fdd89cb3595c83e515e62387a3dac8b89282c7b", "message": "use line receiver to simplify handshake logic\n", "proba": 1.911873141580145e-06} {"commit": "18041bfbb7d8d99a1a34daf93157a800e39ec163", "message": "[IMP] misc.py: send_email() corrected arguments", "proba": 2.3849787567087333e-07} {"commit": "50f29d2814815ba7ca07b46807965475c3a936f1", "message": "fixed flowmanager", "proba": 5.238665039541957e-07} {"commit": "83f20a238bb6e5750d4a5f2ad7c62e078671b2be", "message": "more on import\n", "proba": 1.1837936142455874e-07} {"commit": "9612a4fc8e60678f7648cc9da3a6bbd60d1249a5", "message": "[MERGE] trunk-website-insomniak-chm\n\nbzr revid: chm@openerp.com-20130805094726-1p5qauwydydjdn8y", "proba": 1.5373990436273743e-07} {"commit": "3ed54891a072254a4719d5526523239f101524ef", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "f7bc57607e52bf28f28cb79b3059ff44a78c7faf", "message": "Fix typo.", "proba": 0.0016038167523220181} {"commit": "4f0b514092f0cf13a17bd505d666e232f6dff896", "message": "go alex go\n", "proba": 0.004200091119855642} {"commit": "b973f0623f034b972ae029d9ac1459f357c3456c", "message": "use constant for completed states\n", "proba": 5.925115146965254e-06} {"commit": "96955160899eea519bd38035ea4d80a7361c4e6a", "message": "[project @ formatting]\n", "proba": 1.516284271474433e-07} {"commit": "7328c866c7c176365b1e002c0903899d66ddc24f", "message": "go go go\n", "proba": 0.0025620036758482456} {"commit": "d22af843019cef34415176ea9216353a6c30a851", "message": "Fix NoneType errors in _ExtractTargetSourceMaps\n\n--\nPiperOrigin-RevId: 179098833\nMOS_MIGRATED_REVID=179098833\n", "proba": 0.00015645036182831973} {"commit": "f92da6ba73eae56e9d39eb8cb5c7652c1660d065", "message": "1. erase handling shouldn't look for args in the filesystem\n2. update handling needs to test isfile() rather than just existence to avoid\ndirectories and the like (CNY-3549)\n", "proba": 1.3323858638614183e-07} {"commit": "da79033704a3f750d14843a19e95375802a46408", "message": "Update tests.py\n", "proba": 6.890586519148201e-07} {"commit": "a021e478f3382f475f1d9e4f35cd96d77f959e5c", "message": "Handle unicode in paths\n", "proba": 0.0001657908724155277} {"commit": "a3bdbfa8318947fc3d3a2f28286537e241b59580", "message": "Commenta il print di reloadLeenoModules()\n\nper evitare il continuo scrolling in APSO.\n", "proba": 1.0239214276452913e-07} {"commit": "4d2a64ad82d28a2ad1121592eca89f3d6e5b7cdb", "message": "Add the rest of the rich comparison ops to Row\n", "proba": 4.2650850673453533e-07} {"commit": "30dd1c19197a4adada32cf4dae4bc72d360475b7", "message": "\u6dfb\u52a0schema_id\n", "proba": 5.244783665148134e-07} {"commit": "a8abca06ad7e030791d4261c636690f698c7a155", "message": "Update graph.py", "proba": 1.1183199148945278e-06} {"commit": "edb2deb13e399fe708704c38eaf028d329083813", "message": "Don't make a backup of ansible recipe\n", "proba": 4.312482815294061e-06} {"commit": "433b5ff2f1b02b80a303e99c4a64da7f21817f10", "message": "modify server response\n", "proba": 7.144674896153447e-07} {"commit": "cf0c74d583d9e8db47e45769d4c54b630c6da0e7", "message": "hotfix- fix logic in organ site row in ntp epi results table\n", "proba": 1.4737832998434897e-07} {"commit": "9730dcb9b33800893239d7ac0c7da303b3c8477c", "message": "Added version in tests.py\n", "proba": 3.0738192435819656e-07} {"commit": "2129c7fb3c5e6f1cd6ec509b3bb13588d38ab846", "message": "Add a utility function to convert a filepath to a uri\n", "proba": 1.5563033457510755e-06} {"commit": "deb86309d13f50d7c176439b5951bb3806a059d8", "message": "added sha256 functions\n", "proba": 3.7146423892409075e-07} {"commit": "556a9354a25f42b969978e20c1cf32b4fa985832", "message": "- Added @group and @sort\n- In BottomUpPCFGParser, use a hash table to allof for efficient lookup\n of productions that start with a given nonterminal.\n- Added UnsortedPCFGParser\n- Improved the demo function\n\n\nsvn/trunk@930\n", "proba": 1.614116058590298e-06} {"commit": "c6275b560b9c28b6d471c3470834f34511cf5ed3", "message": "Fixed the sync-message\n", "proba": 0.00010221296543022618} {"commit": "771d2646f53628a660f599a92538ad53f1222c6d", "message": "nodes graph layout positions coordinates\n", "proba": 5.214033080847003e-07} {"commit": "44036e27bd221e9615ff11b7a00923e063cb5b70", "message": "Fix AstropyDeprecationWarning somehow\n\nYou know, I'm not actually sure which of these lines was warning about\nQuantity == comparison. But this works, so hey.\n", "proba": 3.916614161880716e-07} {"commit": "8755b1c6d775821ebe93f3cfba1b2c7389eb8d37", "message": "Issue MC queries using per-user key.\n", "proba": 1.159926412697132e-07} {"commit": "d5ff7fc8866f72604b67753d9a258d4ff2027b33", "message": "Test validation exception for query and advanced search.\n", "proba": 1.1333517591083364e-07} {"commit": "26f2efc682df4ff8c02e261b14c3d176a5915e8a", "message": "Canonicalize Radix values.\n\nSigned-off-by: mulhern \n", "proba": 0.00022534241725225002} {"commit": "387bf1f15f03b4dcf569a5197b68dcb2ab24772f", "message": "fix ec2 type\n", "proba": 3.705648396135075e-06} {"commit": "0d40080f6cdd1b5a47e70377b0317493d660081f", "message": "move back to colnames\n", "proba": 1.05185165466537e-06} {"commit": "5e5c7ff9c90ce4b8b22912f65b07bfa4fb9c5371", "message": "show drm info\n", "proba": 1.3861334480225196e-07} {"commit": "896faf44ef4d6253056e5a35f8161e475875cefe", "message": "Add test for mutability bug\n", "proba": 4.424341284448019e-07} {"commit": "0967bd69e6cb917f33d4f68febd8b36f7572155f", "message": "update try_pandas.py", "proba": 1.9684598555613775e-06} {"commit": "0624a9e019f1c92bb3bcd56f3bbf39867e78a81e", "message": "changed fields check\n", "proba": 8.116570597849204e-07} {"commit": "f4ccfe712b50614d8151716529de494ef1804db4", "message": "flatten results\n", "proba": 1.0570229278528132e-05} {"commit": "445acb53908579cdb0d0e0bd1b79b06261031a06", "message": "swap these as it appears that network manager is started twice in some cases\n", "proba": 4.415266232626891e-07} {"commit": "2b9705bbb8e897f91c2a2de613a1cf5685463720", "message": "capturing hash and json string of config file, so can be loaded into task_queue for forensics\n", "proba": 2.0579655313213152e-07} {"commit": "34fe99dd7cfa3953b2d461026143407656b92d5d", "message": "tests for Model\n", "proba": 2.8863419743174745e-07} {"commit": "a9d9b7fbd6cab7d9e1d6aa52204ff17c9081e427", "message": "Use filter_horizontal for students newsletters on admin\n", "proba": 1.599343448788204e-07} {"commit": "a9c587416e084327a0eab1ac0640f731a8729357", "message": "No-op ivy resolve is ~100ms cheaper (#5389)\n\nRight now, creating an executor can take as much as 150ms. Instead, only\r\ncreate the executor if it's actually needed.\r\n\r\nThis is a bit of an abstraction leak, but 150ms is non-trivial (and we\r\nhave a *lot* of this kind of 150ms kicking about, which add up to\r\nseveral seconds).", "proba": 1.2941752913775417e-07} {"commit": "13dcd09a9388cbf20e197914d07e82228856da92", "message": "refine and refactor mapping between parsed and generated feed elements\n", "proba": 1.8001253465627087e-07} {"commit": "5c7279fcb211e40f54068baa0941f84af9aa6646", "message": "Fix static path for addons-server (#18164)\n\n", "proba": 1.1527408361189373e-07} {"commit": "5235383eba8a07d10643ad69ad7fc75a48269b50", "message": "Added a test that reproduces issue #102\n", "proba": 1.3204787308040977e-07} {"commit": "ab5d86ebc7866711a1b1f42629568a8a6de8485d", "message": "Fixed teacher submission filtering\n", "proba": 2.5921607971213234e-07} {"commit": "770fb1bc56319dea757c9c925d415cc699a5a255", "message": "Display contents before coq'ing file on -vvv\n", "proba": 1.93691519712047e-07} {"commit": "f49b39fa2371d44e7d309c88608fcb874b551cd2", "message": "Logout the user directly on call to /logout/\n", "proba": 1.7355296222376637e-07} {"commit": "0a60e4ad9e2bda949b05c72516106405e8e48169", "message": "Flesh out 'delete booking' view to actually delete bookings (with validation).\n", "proba": 1.4465270226082794e-07} {"commit": "cd7f260d7f4491b0cba30a7dcdb3c3a6179fa37f", "message": "Revert \"Revert \"Revert \"simplify _dp_include_() (doesn't need hardcoded list of config sections to include).\"\"\"\n\nThis reverts commit 841523d4768e209fc3ce5c742440f6337259b44d.\n", "proba": 1.5828013033569732e-07} {"commit": "42b7c63f0e4c3e42d202b84852bb7e7f171363d9", "message": "Added filter for attendance event\n", "proba": 1.7921790629316092e-07} {"commit": "2f0b66f7c10adf2fdf741b17a4b583fe8a0d9642", "message": "add load_tiles to DummyCache\n", "proba": 3.9534998563794943e-07} {"commit": "47ea6c3a0540c4b4b6a40f02b69cd0b63a5acb84", "message": "Changed incorrect comment on test.\n", "proba": 1.2669548254962137e-07} {"commit": "373d3832de16534319327be6b8e75d097ab7ea74", "message": "bad keywords: more TWP -autopull\n", "proba": 1.3093868744817883e-07} {"commit": "290b2a5f66dddd74b0bcd01d96239208e5c9e97d", "message": "Fix adding dividends\n", "proba": 0.00045991205843165517} {"commit": "bef2a09b5abaf25de0659d60af0500199ce4f4ae", "message": "add mapproxy config file to serve-develop reloader\n", "proba": 2.3652613378999376e-07} {"commit": "4fa674be4e986094c13d546a4ba3dd79cddfcf23", "message": "Style fixes\n", "proba": 3.7103583849784627e-07} {"commit": "813c8be2fb618dc1aa80acb2caf04f0c398866cd", "message": "Split tests for grayscale and extreme boundary lines\n", "proba": 1.7629174919875368e-07} {"commit": "895d39aa8f3208e4ca60f0f9aa993b9acc096215", "message": "fix: union and subtract were returning garbage\n", "proba": 6.640050560235977e-05} {"commit": "0e3100e26b60528717e0c3619c5c7557826721c4", "message": "forgot the comma", "proba": 7.900435593910515e-05} {"commit": "03b2a1f680ce89b0c997e3bc4ff991cecd96e369", "message": "nested admin to be used by dimensions\n", "proba": 1.6386407253321522e-07} {"commit": "59a3f812756b8da4c971b503fb857c3150e61674", "message": "making all Models call full_clean before save\n", "proba": 1.4002209525187936e-07} {"commit": "6b03fbd52ba42c6489eff2472921373cfb8215cc", "message": "Manually apply ReLU to the last layer's activations\n", "proba": 1.2231500079451507e-07} {"commit": "c5a11603ff3d81a44c4db010b0f94b6137d4add1", "message": "Handle case where attribute not set (#1143)\n\n", "proba": 2.009322912499556e-07} {"commit": "78c0c322c5ea4422f5723fa786664cf513a789ad", "message": "Updated event metadata for the \"Error decoding message from websocket\" warning\n", "proba": 1.6049585838118219e-06} {"commit": "57cf43a285d9537c730431e9807bbd0c0e2d60d8", "message": "Remove bad character in title --autopull\n\nAs noted by tripleee in https://github.com/Charcoal-SE/metasmoke/issues/62, it's pretty terrible and low-volume. Most other true positives are caught by stronger reasons.", "proba": 1.982906496778014e-07} {"commit": "066f37402d87e31b35a7d9439b394445a1404461", "message": "Update newton_raphson.py (#891)\n\n", "proba": 1.3069167437151918e-07} {"commit": "28f115bc7273d6d252e4787a6d4da0da5efde75e", "message": "print the hashtag we're using.\n", "proba": 9.83337486104574e-07} {"commit": "917a6d791b0c373bb6a6479ee8cd5aabf2d478fb", "message": "-sumer\n\nMany FPs:\r\nhttp://chat.meta.stackexchange.com/transcript/message/3393195#3393195", "proba": 1.9534567741175124e-07} {"commit": "637973105d1fdd6f47865d52481beca847efeb19", "message": "Get lock in sync land and pass it down\n", "proba": 1.443008130763701e-07} {"commit": "5f3a400122617bf45bbd165ac52c72651215b068", "message": "Made PaymentDelay objects unique for user - payment combo\n", "proba": 1.102815190279216e-07} {"commit": "be2698e0c1ab05d8fc8b411d34e7848b4a4e9cbd", "message": "+totalfitnesspoint. --autopull\n", "proba": 1.8203945728600956e-06} {"commit": "46d17c29471b325ad2b20cb83ce8dd79d8a05865", "message": "Remove one redundant Linter.clear_view call\n\nIn this method we call `check_syntax` which will call `clear_view` if the\nsyntax changed. No need to do this twice.\n", "proba": 1.2038435670547187e-07} {"commit": "c3f86fab958fd56ddd6c1b20ccaa0258895f5132", "message": "Removed now unused method.", "proba": 1.134149698600595e-07} {"commit": "6a3bf290a92728a0734aaf6c524c0533c7880cdd", "message": "+crazybulkreviewsz", "proba": 2.0502199049587944e-07} {"commit": "336db4ce31c86432ab41a6a62b1a6c94116a0154", "message": "Add 300 voice message\n", "proba": 1.0883952199947089e-05} {"commit": "338c4aa4ec20fee38640d245ebb0ae24db871e3a", "message": "added docstr\n", "proba": 1.9483979940559948e-07} {"commit": "a140be5ecbb8bbb116332fcf4b6ed056ac56d3d3", "message": "Adding activate_all classmethod for queued users.\n", "proba": 1.1272044275756343e-07} {"commit": "cf4a5f7035997c190a62e8dea0819ddabf84b36a", "message": "! Watch AS 18978 - ENZUINC-US - Enzu Inc, US", "proba": 1.1251992049210457e-07} {"commit": "33eb152514392caae65cb62d9f00c6821cccb7de", "message": "Changed search icon to be profile icon\n", "proba": 1.3044993465882726e-05} {"commit": "ee0033611350dc737041767cd4d26b38ffc0671c", "message": "tests.utils.DrySite.version: Return '999.999'\n\nIn pywikibot site.version is used to see if an API feature is implemented in\nthat version or not. '999.999' is a big enough version to be greater than any\nforeseeable MW version. From the dry tests point of view it will seem like\nthe most recent version of MediaWiki.\n\nChange-Id: Iaa4e4dc86a9e139f83d1962bb7f8fee6494c9f6c\n", "proba": 1.802885344659444e-05} {"commit": "06f7a1e49c3af505dc6dddbc7c5e464278559ba4", "message": "#181\n+10k value\n", "proba": 3.8558562664547935e-05} {"commit": "57f6d3fabc7076ed4a089e6458ad4ad44b8bf3d8", "message": "Add another keyword for parenting", "proba": 7.4642011895775795e-06} {"commit": "2e4864625f4a0475cdb4e962730f66cea896528d", "message": "Use basestring to support unicode strings pre-3.0\n", "proba": 3.749443931155838e-05} {"commit": "3909aa09f7ffa09f0494a8fa97d56802f5c7a4fa", "message": "use total_seconds in profiles-app also\n", "proba": 3.1422717938767164e-07} {"commit": "3bdfc88f31262f0de8eeeaf455907f4725c9b94c", "message": "Keep Indian cities list alphabetized\n\nActually uncovered a duplicate, too", "proba": 1.8710882443429e-07} {"commit": "7b61b016c814bc45cfdfc5103fb04942650cafd6", "message": "Fix for sms code retieval.\n\nUpdate sms_code to be filtered from text.\n", "proba": 1.0862354571372634e-07} {"commit": "436b47a205a7c78dc4dbf824237c5018d87b5383", "message": "Add description to feed\n", "proba": 2.3316401609463355e-07} {"commit": "0ef1bdbea46b1eb0cd2fd32288b5a7de394b88b1", "message": "UNTESTED: Trying to add add support in python\n", "proba": 4.6072955228737555e-07} {"commit": "4d24d2a2163c5a5cba347d94e8cb0545a7b4e850", "message": "! Watch IP 198.187.31.221", "proba": 1.17989046088951e-07} {"commit": "1dd17e41d7a052759e4dafaca02393129be34268", "message": "Fixed python 3.* specific complaint about a leading zero #4\n", "proba": 1.2496248018578626e-05} {"commit": "238179319012176ca06094f958cdd6408074fd04", "message": "fix silly __unicode__ error on Story model\n", "proba": 0.0025635273195803165} {"commit": "3a15098d283d20e5e0830b8ddbccf727fd199198", "message": "working face swap\n", "proba": 3.411909119677148e-07} {"commit": "b39852fbc4c3dc126d1b040e10ca2abd438c0eb6", "message": "improve code\n", "proba": 0.0006889605429023504} {"commit": "41dbc8ec964ad6651151c94fb5d4df4dab5ee46d", "message": "Added tests for Octave\n", "proba": 1.9911742299427715e-07} {"commit": "63971eba6c0757d738ba114764ca8a3650b94967", "message": "Dev #831: Add new testcases\n", "proba": 1.2706806273854454e-07} {"commit": "327f431dd0b8f3fd9a90291710db6b666bc5d4ef", "message": "+mymotherday", "proba": 5.859555471943168e-07} {"commit": "a4e55e23a00272f0fe07ce924e33650587683fcc", "message": "the response from httplib2 is now bytes, not str\n", "proba": 1.2524347994258278e-06} {"commit": "c92526136e94cf97cf06bb4c6f9dc0b00ab8fe8e", "message": "Adds the LOCAL_LEADER user type\n", "proba": 3.4142101412726333e-07} {"commit": "cc50e7cc3a415b80f26f85295515c4a60efd28ce", "message": "Fix trailing white space when outputting new swarm files. (still having a trailing new line though)\n", "proba": 6.466999025178666e-07} {"commit": "087899fdf8a123a4e579f94785a2e7dfb89464d5", "message": "Re@d more separate", "proba": 1.173201980009253e-07} {"commit": "d4ea2bf5cb90cb0c664487b925f4a385a51ba820", "message": "modify assert_items_equal to be boring\n", "proba": 0.9975142478942871} {"commit": "fbab656eed853ffcd9cf5dbb04b7dfa5f8a18ac4", "message": "add request have a default timeout of 3 seconds\n", "proba": 1.1302674920443678e-06} {"commit": "65b92ca2be7babe7866a6c66286bd537a33a88e0", "message": "remove unused params\n", "proba": 2.282884679516428e-06} {"commit": "5af8ff7a320c5ff486dac29a4beaea7a928ac206", "message": "missing % (pylint catch)\n", "proba": 4.888666467195435e-07} {"commit": "53e232d974e7680f8fcf7f131837c618699b5d80", "message": "Implement a simple age-based DNS cache\n\nKeep 1,000 latest entries; prune when size exceeds 1,500\n", "proba": 4.819884225071291e-07} {"commit": "c6298f235e6adf4be866f749a1dd0e9195859889", "message": "disable bolding of table column headers when table is selected\n", "proba": 2.422998761630879e-07} {"commit": "88bb811f3e2a10b6b815628f92c15625a86f7cc0", "message": "Fix caller not being present\n", "proba": 8.005822564882692e-07} {"commit": "3e1f38f33873a85da94ee8cef0877199b07d8eb5", "message": "effects contain the logic for suggesting changes\n\nan effect function generates effected rows/cols, and the magnitude with which to move the rows/cols. These effect functions go in swirly/effects.py.\n", "proba": 1.2960032336195582e-07} {"commit": "9c367675f0223f5cffc7f920e20c81f8ef97a39f", "message": "placement paper pattern", "proba": 8.714704335943679e-07} {"commit": "0dcbfc723ca48e41ba4268a684170501eda45a76", "message": "Skip empty XML files\n", "proba": 6.123585762907169e-07} {"commit": "3bf00dfdf38959c49ef4fc7ac3da447e564886ce", "message": "exporting floor and ceil functions\n", "proba": 1.3825412281676108e-07} {"commit": "a9258ae6c835e2baae4433a98c14384b797a9afd", "message": "fixes\n", "proba": 4.844783347834891e-07} {"commit": "5b25c38097f3efe5b01a99e1df5f4f699ec36f42", "message": "\u2665 Smokey --autopull\n\nFrequent in Bitcoin spam and elsewhere.", "proba": 9.943133250089886e-08} {"commit": "cecfed7c8e4538821ecb5e6507505b077101f33b", "message": "threaded: remove logging (pass exception to connection_lost), tweaks", "proba": 6.504730549750093e-07} {"commit": "4f841a853f7e22cac41e8c65f39db3d5527f1268", "message": "Log storm errors again.\n", "proba": 1.3448955371586635e-07} {"commit": "5a7858467b03a85555520f2c16a469b45f376047", "message": "kill-line bug fixed\n", "proba": 8.200749448405986e-07} {"commit": "5fe9cecfb7083b970a7742bf2152f185e581256c", "message": "Issue #4 Fix", "proba": 1.3944681143129856e-07} {"commit": "f0ea0329063fad978e2a66233f745a56fea0ddc6", "message": "SyncHg no longer relying on HGROOT env variable\n\nThe previous commit that removed dependency on this environment variable\nmissed a big. This commit fixes that.\n", "proba": 1.0638531477979996e-07} {"commit": "5ad4ca728ca5d5eabf68e113e3578a9f858806c1", "message": "Fixing rule ws loaded from file.\n", "proba": 1.0999708166536948e-07} {"commit": "f6c104f662523e67a7a57389edfb38a051441a60", "message": "Random simplification\n", "proba": 1.9197223082301207e-06} {"commit": "4d0f9ebe487bbe517c4ea2290ce1fd524b2dc368", "message": "update tg concept\n\n--HG--\nextra : convert_revision : svn%3A77541ad4-5f01-0410-9ede-a1b63cd9a898/trunk%403965\n", "proba": 3.1838752079238475e-07} {"commit": "ac006c29ea56af11b1fdb9ef57882220affc687e", "message": "Always make sure output is in binary mode on Windows.\n", "proba": 1.3880158178380952e-07} {"commit": "25a221e7ac40ca423d7a1b9aaa118f720b88afea", "message": "Bump version to 3.1m5\n", "proba": 4.262876984739705e-07} {"commit": "e9d021b93d0b815305c6d58208f7a52477b11e1f", "message": "Updated from Brython Server: 3/7/2016 10:49:18 PM", "proba": 1.0908280501098488e-07} {"commit": "bd01b3f892d6fb7e42e99a42b0789dc875d8dd18", "message": "Updated from Brython Server: 9/23/2015 1:56:55 PM", "proba": 1.0906241243446857e-07} {"commit": "14c3fe64da36b499720279ef05f3c8aa40110654", "message": "Updated from Brython Server: 9/30/2015 11:56:34 PM", "proba": 1.106105713688521e-07} {"commit": "463ae7a87f3e7e95ac594b87f45612e5cc9266a4", "message": "add upper committee votes\n", "proba": 0.00039680115878582} {"commit": "92460e18a644d951aed19ea3b9e40cabaa25a656", "message": "update generate\n", "proba": 1.4577349247701932e-06} {"commit": "0333b825a25996621272ea2526b5f612010f6f73", "message": "Revert old behavior for compatibility with old distros\n", "proba": 2.459231609464041e-07} {"commit": "531fdf1174379ae8f94f83d80d443abdeb889c59", "message": "Speed up TPUStrategy.all_gather\n\nI introduced two optimizations:\n* Replace expensive calls to tf.concat. Based on profiles, calling tf.concat on a large list is expensive when the length of the input list is large. In practice, this means tf.concat becomes a bottleneck when calling all_gather on large TPU slices. So I replaced calls to tf.concat with calls to more scalable ops like tf.tile.\n* Use cross_replica_sum() instead of all_to_all() wherever possible. This addresses an existing TODO in the code. Unfortunately, I'm not sure that I can get rid of the all_to_all() code entirely because it seems like all_to_all supports more dtypes than cross_replica_sum. So right now, there's a \"fast\" code path for dtypes supported by cross_replica_sum() and a \"slow\" code path for everything else.\n\nPiperOrigin-RevId: 398047066\nChange-Id: I9f75bf7d457c832005338e22912e8cd1f7c6b9d0\n", "proba": 0.9999916553497314} {"commit": "33c5d73d20a5ab8c9bf97055f80481cdad3a696e", "message": "Test code and little tab fixes.\n", "proba": 1.0889820600823441e-07} {"commit": "7a9bfa5b984bf0cf40ba3150afec7b6c81278fb0", "message": "Implement _broadcast_to for TPUStrategy for TPUMirroredVariable w/ ONLY_FIRST_REPLICA aggregation.\n\nPiperOrigin-RevId: 277072136\nChange-Id: I4b6b8a02e0ac664e57f4e0c3ebc108ea8fa2161c\n", "proba": 6.876562838442624e-05} {"commit": "02ed91932e30198bbf8c288eac934c2bd3d62c87", "message": "Scheduler: KILL request -> Status.KILLED, not Status.ENDED, even though there isn't really a difference.\n", "proba": 1.2776469304753846e-07} {"commit": "804edfec2d6d31cca2400818ebb1018486615b8f", "message": "Add Wrapper type\n", "proba": 7.568174851257936e-07} {"commit": "ca9cc9702c176c3303c9393cfb327021d593f555", "message": "Send error messages to emacs\n", "proba": 2.267141070433354e-07} {"commit": "f260af88ece9fe34c671cd953b1bc245d74b4fe9", "message": "send start output to adminchannel for debugging\n", "proba": 2.8332078727544285e-07} {"commit": "b64e6a01b1927e49f6f45cb168b0ce4287d6bc37", "message": "Fix bug in ST3\n", "proba": 3.1858587590249954e-07} {"commit": "df2d14aadb15218d146f26bc60d8817139cdd6e6", "message": "Fixed search\n", "proba": 6.439563549065497e-07} {"commit": "05dd3809cc4d551241103a5a10eadbbcfd535570", "message": "working on determining origin of git repo\n", "proba": 7.628522666891513e-07} {"commit": "21db5778b19c9442b61842eba6e755080e80bcbc", "message": "Add docstring (#4845)\n\n", "proba": 1.721084430528208e-07} {"commit": "a484d9ec59c3d2d8253cec4b51c6183e033fdb7e", "message": "Added MPL115A2 digital barometer class.\n", "proba": 1.045533366550444e-07} {"commit": "2755f159411abbbc1d5b39596f4cdc4f2d9f6764", "message": "Fix pip8 comment\n", "proba": 3.339547447467339e-07} {"commit": "85ac8da63afca3ca8062841666245d4637018526", "message": "#172 Fixed equipment purchase date field label.\n", "proba": 1.0659289984005227e-07} {"commit": "70f5ac9f2e91322315d7a62e76cdc607b1c72e7f", "message": "one minor typo\n", "proba": 4.722247922472889e-06} {"commit": "b026c5a289b182e1924b5236a1f84e355677d923", "message": "Test inclusion of fields with __full\n", "proba": 5.641811640089145e-07} {"commit": "f731de737250b074454d77e1dfd7bc8d48fb8d47", "message": "Team -> Projects: Sort project list by slug", "proba": 4.663179140607099e-07} {"commit": "161be7aed4c38c806e986af8f56df19559548cdf", "message": "Look up just on id\n", "proba": 1.9306081355807692e-07} {"commit": "001363c93891e1d892d559365692a4219fdc797a", "message": "Fixed wrong view reference\n", "proba": 1.4620410127008654e-07} {"commit": "b10c35810aa31f067668e79145ef363676a37e2a", "message": "Updated created_on and updated_on for systems\n", "proba": 3.711448641752213e-07} {"commit": "1d8c295f462277cc95e57103a1ffd348e90d4ec7", "message": "Bitcoin address always fetched from db\n", "proba": 2.47698835664778e-07} {"commit": "025b953e1c34fd2ba18740c5fa0f41efcce88a76", "message": "Bumped to v0.4.\n", "proba": 1.3273066201691108e-07} {"commit": "9dff7a806e90d0d7f498b4070f623373c55db0e2", "message": "Bumped to v0.5.2.\n", "proba": 1.5119191232315643e-07} {"commit": "03ded0cabf157ece5a35680269dd61311e3d8a84", "message": "removed multiprocess for now\n", "proba": 1.1890730178265585e-07} {"commit": "de8093da2fc793083f58b6e465def03813f8c215", "message": "Initial coverage of queries.Session\n", "proba": 1.3323719372237974e-07} {"commit": "6d5ebbebd558a716afeda1933f45f0dfbef41bb4", "message": "Clean up imports in smolder tests\n", "proba": 1.3410915755684982e-07} {"commit": "89f680810bf8eb222ee58ed6ed8a2c424200932c", "message": "fix round delimiters in alert logs\n", "proba": 0.0027682525105774403} {"commit": "e4859250bb74051506a6318d29e1544a1700cb44", "message": "Substitution curl usage with wget; from Tim Booth\n", "proba": 1.2679774386015197e-07} {"commit": "7886daa505c8cd5702f42136210836ed8fbefe92", "message": "Change format in terminal message for skipped variables.\n", "proba": 1.2663412007896113e-07} {"commit": "a1b172b51aa2698ea1c5bd5b15799a2083b98566", "message": "experiment progress bugfixes\n", "proba": 5.243838359092479e-07} {"commit": "c4852ff6873546e6955c981e69a70a07f1ecdfdf", "message": "Simplified FiniteSet creation\n\nUsed to denest all iterables.\n\nNow we only denest if there is exactly one iterable\n", "proba": 1.3391540676366276e-07} {"commit": "18f0da90f0c784af2b91ac73660b0e42e08a096b", "message": "Fix test mode in non-dev builds (#3132)\n\nReintrospect config spec when amending the non-dev cached stdlib with\r\n`_testmode` bits. This fixes prod package build test runs.", "proba": 1.0300446717792511e-07} {"commit": "eb997c0b37483170e3dd6626422b831980669064", "message": "Listing S3 bucket objects returns Object instead of ObjectSummary.\n\nFixes #126.\n", "proba": 1.0542462547391551e-07} {"commit": "98d8b942663fa67d1e8551d910787535ea2ad495", "message": "debugging pr analysis worker.\n", "proba": 1.7913502858846186e-07} {"commit": "fde89c9be589d152e05d2b2a0290dec5be1924bf", "message": "numpy command to turn array into vector is changed\n", "proba": 2.1614940237668634e-07} {"commit": "c26c64ac1e5c1b04522d5b03bf240101cb1a11fe", "message": "Catch OSError on git commit\n\nCurrently a bug in GitPython, where commits fail when django is running\nunder mod_wsgi. Known issue. Hacked the GitPython source (util.py) to\nfix temporarily (non-portable apparently).\n", "proba": 1.141752861144596e-07} {"commit": "d9f55c58fa7b759b6a213f3cd382bc6b44f768a3", "message": "Fix variable name\n", "proba": 0.9998103976249695} {"commit": "5fd7c585b6d0ceea86c9d55a236beaea55b7945d", "message": "fixed bug\n", "proba": 6.589494319086953e-07} {"commit": "abd096e501b069690637286bec0d3e3dbec1ba75", "message": "removing filter class for status\n", "proba": 2.9566726311713865e-07} {"commit": "daafc4984748e4ddb8aee4d86df25d2cc7f6d0b0", "message": "Fix IP version checking bug.\n", "proba": 1.2937545079694246e-07} {"commit": "f53731f8f58d90a14b925d8475c9a7f5e0ddbec7", "message": "Plug-in registration refactoring\n", "proba": 4.137483244903706e-07} {"commit": "0ec933e37ddbc4b25ff5a6934273c56e655fa93a", "message": "Added optional site name is argument and completed all ee debug arguments\n", "proba": 1.8970369808357646e-07} {"commit": "1f12607b25564ffa1ceb021559ac55037c81e18a", "message": "Using AssertionError to report validation issues\n", "proba": 1.7110214400872792e-07} {"commit": "337e3bf264a126c8acc75a4b59e1422f7b10da99", "message": "Step of 2048 now returns reward\n", "proba": 1.7998472401359322e-07} {"commit": "7ae3b7fbf3550410429d6598016d195e36f1de98", "message": "added \"which\" command", "proba": 1.4289495993580204e-05} {"commit": "ce7343e37954656f24273c618220fa5b5289c70f", "message": "Added argument --originaltime to set file date and time to activity start time\n", "proba": 1.4615878285439976e-07} {"commit": "42b4e3918085be47027d1232beca2faaa5abb66f", "message": "TestShell: Simplify default setting of num_nodes\n\nFormer-commit-id: 00b09cca6cc980dcbcf3a6f18e16d6d82eefc85d", "proba": 9.502674220129848e-05} {"commit": "c175f6bbf403a472ce32e44d0b1c40ac5124ac8e", "message": "more fixes for path\n", "proba": 1.3088788364257198e-07} {"commit": "cfc462273637ddd6d0a49c4a1d93054f279e6ad7", "message": "Reorder some output\n", "proba": 0.9999995231628418} {"commit": "a4243cf981aa0e9458bbefecc342fd590953c8d6", "message": "token response\n", "proba": 3.6594319681171328e-06} {"commit": "036d5ff166f3c0bfd936d650c7aadd3fa04e1c3a", "message": "Removed the dot notation used in service v2 as it's not longer needed.\n", "proba": 1.2543434024792077e-07} {"commit": "53694133d8848d56cdf10bf756022b3f2e9cf8d0", "message": "CLOUDSTACK-7823: test_snapshots.py - remove test case dependency on each other\n\nSigned-off-by: SrikanteswaraRao Talluri <35d46b2ff1bf95340df8625bc8fcffc8da6fadb0@apache.org>\n", "proba": 1.392335207128781e-07} {"commit": "b96f464322c0659bc53b71af44f3c3b32a7328b5", "message": "Un-neuter test_accuracy slightly\n", "proba": 9.867625294646132e-07} {"commit": "22b425618050161c1828cb5e1b10512330658d09", "message": "Get Avatar URL from facebook\n", "proba": 1.8355316910856345e-07} {"commit": "fe21a720e35e06a7c4f3c01ec5da3b161ec3c6bc", "message": "Make the charge map a global variable so functions can be used elsewhere properly.\n", "proba": 1.1987533810042805e-07} {"commit": "7e0a04c9be917e814b6ff2fc3fbe4bb591d52f0d", "message": "Rebase zombie. Killed for good.\n", "proba": 1.1254310550157243e-07} {"commit": "e1ad36bccb70a9f73de1d06b408043a93876195c", "message": "migrate only when hosts are available\n\nIdentify the hosts that are suitable for migration before proceeding\nwith migrateVM\n\nSigned-off-by: Prasanna Santhanam <82219615980488abd2acc1a3d71cfb58f0b2b8b6@apache.org>\n", "proba": 1.3725778558182355e-07} {"commit": "0de51e02821767ca3a6b178f2f0c9633ac11624d", "message": "Stray debug\n", "proba": 4.926642418467964e-07} {"commit": "c7f3d374525ca390c2f5c248cd4efdc36c6f46bc", "message": "Add missing brace\n\nSigned-off-by: Jan Losinski <577c4104c61edf9f052c616c0c23e67bef4a9955@wh2.tu-dresden.de>\n", "proba": 6.154914444778115e-07} {"commit": "062486b723044b7f93b7133595f0afbe667c16ca", "message": "added some DocumentSchema tests\n", "proba": 1.5689180088429566e-07} {"commit": "c1376212d1dda43262efea457b15eddbd4869ef3", "message": "static\n", "proba": 6.032695182511816e-06} {"commit": "d5e157d034a4bd7f99ccf75eb000a84cf8d8fa92", "message": "fix tools/build.py to work on windows.\n", "proba": 1.0946504858111439e-07} {"commit": "606adb8f79e09b204ae5c46f426e022ea47cf1b0", "message": "Adding hashtag. Hardcoded\n", "proba": 0.9998461008071899} {"commit": "68c106645727b0d12fc345fe9653c50407e2580c", "message": "Cleanup.\n", "proba": 3.34995263528981e-07} {"commit": "582a8980256efc8efc3065586b30971a1b1b817a", "message": "Remove Duplication\n", "proba": 6.36165714240633e-05} {"commit": "42c0696a1c260773c99179cdc579f27dece38513", "message": "rotomap.identify: rm dubious 'most_correct' calc\n\nIt doesn't seem that we should deem locations guessed as the values on\ndisk as 'most_correct'. Only moles marked as canonical carry a guarantee\nof correctness. Remove this logic.\n", "proba": 1.605575619123556e-07} {"commit": "b534570e231157fc5c4ce39c88238e6341ea346a", "message": "Updated the Recorders to OpenMDAO 2.\n", "proba": 1.0501641867222133e-07} {"commit": "5322df891dc99e92e7f2129bdba1a54606bb0b4c", "message": "contrib: remove monitoring config files\n\nLooking for an example monitoring agent config file? Use:\n\n pkg/monitoring/rackspace-monitoring-agent.cfg\n\nRemove two extra config file examples for the monitoring agent.\n", "proba": 1.6917358891532785e-07} {"commit": "074ae24a64177a3ab85d1a6ee8cd067de0fe690e", "message": "Refs #91. improving reduitls.reduce\n", "proba": 0.00034524250077083707} {"commit": "eebdae252b4f19d003264610e859e220f6dd4b29", "message": "Added failing test.\n", "proba": 1.5749820647670276e-07} {"commit": "5478646ba4ce2da780a2b8c800fe2de29983f8f8", "message": "jmemes: lower input strings in ri command\n", "proba": 0.9993754029273987} {"commit": "a70e0e8b6ff52cee25096f5f422ac60df8be100e", "message": "Fix for text running off screen\n\nIf the line was multiple lines, then only the second line was\ndetermining the font size. So in the case where the first line was\nlonger, it would extend past the image.\n\nChanged the max font size to be different for multiline text, this\nshould prevent text from taking up too much vertical space when the\nphrase was just long enough to be split.\n", "proba": 5.0216269301017746e-05} {"commit": "277bacf08c88cf5f18eca51adf876f74d2b7ba5c", "message": "update multipletau/_version.py with git_cast_file2repos.py\n", "proba": 5.054288862993417e-07} {"commit": "f2ee3c531751c718b8fc07bcfc9480defd5172c8", "message": "Changing unit test to reflect new row major change\n", "proba": 1.5704749500855542e-07} {"commit": "dc3433f9696b1c66f91e51ab52a0a196628f2dbd", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "e704eb9f0cfe7a77fdad116fe73afa3c100492f8", "message": "Updated from Brython Server: 9/30/2015 1:41:52 PM", "proba": 1.0950640216833563e-07} {"commit": "20174e0f05ed010f41499fb96c536c0c4a06fab5", "message": "remove minimum_version decorator\n", "proba": 4.464006269699894e-05} {"commit": "e561678104ea640b4d8eaa87ae20c24e665d7e89", "message": "Added the merge script\n", "proba": 2.405665782134747e-07} {"commit": "76fe77f9a85c822d2ec257ad60685ec2372189ea", "message": "Don't automatically override the -L flag of D compilers\n\nWorks around / resolves #702.\n", "proba": 1.023218629825351e-07} {"commit": "10b41fe09837d2dc6ce563db575761f38858258d", "message": "Updated from Brython Server: September 18, 2015 2:26:28 PM EDT", "proba": 1.0656362547933895e-07} {"commit": "f2c34f7e0e7f50ca6669632d6fd89feb26c98609", "message": "Delete emails before deleting users\n\n--HG--\nbranch : production\n", "proba": 5.981395929666178e-07} {"commit": "ec9b020376b974653647e9e7edfab09a9d9733a9", "message": "[mod] moar test for arguments parsing\n", "proba": 2.2712831082571938e-07} {"commit": "7c0d1242aad40c3424b8541c6c0ef1a53ca1bb04", "message": "compilers: Only set -rpath-link on GNU ld and linuxlike\n\nIt's an invalid option with Apple ld and leads to a build error.\n", "proba": 1.1685166612096509e-07} {"commit": "6669ca009d2d5b1b58e6e67fc7f37848f554f7c7", "message": "Updated from Brython Server: 9/21/2015 4:07:23 PM", "proba": 1.0905305458663861e-07} {"commit": "4f0f83a76beba71027ab78b4ced610a56f4b7ff6", "message": "Fix test_consumer.py\n", "proba": 0.0005541705759242177} {"commit": "0cf065e12b171989973f92ebb50359d1ce2c8afa", "message": "Use argparse's builtin version printer.\n", "proba": 1.193817951161691e-07} {"commit": "eec6ba45c9a1e16ae77aa8e5a432dd9296b221f9", "message": "Updated from Brython Server: 9/23/2015 1:26:32 PM", "proba": 1.0892811985740991e-07} {"commit": "0af658bad2b7b765c50e884a5362a8482694e984", "message": "test add list users passed\n", "proba": 4.3104577684971446e-07} {"commit": "486612b28bd78762c2740f353887d2d2fd223c53", "message": "Updated from Brython Server: September 18, 2015 9:54:07 PM EDT", "proba": 1.0687934093311924e-07} {"commit": "1bdb7b43706305f272dd76f93b93ba293d7deec0", "message": "Update test_document.py", "proba": 2.016349753830582e-06} {"commit": "a9826f4da32eed961b4233910cc09a317d96228d", "message": "Updated from Brython Server: 2/6/2016 10:55:25 AM", "proba": 1.0896240354441034e-07} {"commit": "6788e3a1a44e0b3b7c502cb38adfedc791f3631d", "message": "Add tests for _SpatialElement.__getattr__\n", "proba": 7.592682322865585e-07} {"commit": "4cc27efff4f15d443ad7f29d042069d8ff912851", "message": "Add a _main() method to the webapp\n", "proba": 0.00013689308252651244} {"commit": "74dc03335656e60f259018c44bbdc4c24de5f82b", "message": "Test that microseconds are encoded as per ECMA-262.\n", "proba": 2.5211645606759703e-06} {"commit": "ed80169da0c08e208eda7a89f7b3e833de40fd5c", "message": "Log details about finished deployment\n\nWe are logging whole environment object model when it's returned\nfrom the engine to the API, this log message is not convenient\nfor getting environment status from reading log.\n\nThis change is adding additional logging message that outputs\nfollowing information:\n\n * Environment ID\n * Tenant ID\n * Deployment State\n * List of deployed applications\n\nExample: \n\nChange-Id: I0ebfdcbff419fee268f12df7cfed48f6377fe71f\nCloses-bug: 1409446\n", "proba": 0.9993969202041626} {"commit": "990b99a88bb6077b502550d1c021ab0850ac784f", "message": "Update tests to handle step_pools\n", "proba": 2.618178029933915e-07} {"commit": "7d5855d4a5cad78c9a7fe60d8d8b7d7abd4ad069", "message": "added log-scaled spectral contrast test\n", "proba": 1.5358075700078189e-07} {"commit": "643d99328eb03aa9cbe7d33e642a64f662194347", "message": "The broker now runs as expected, with a ledger of messages that returns successfully to the requiring inbound socket.\n", "proba": 1.019966475723777e-07} {"commit": "76b4c6ed0c8719d48b552b45284b46692191a994", "message": "Adds test for circular includes.\n", "proba": 1.1271700373072235e-07} {"commit": "65cfa9c43a13ae03b01279dc736e03e1f61f53d7", "message": "Fixes.\n", "proba": 3.172669380546722e-07} {"commit": "cf9ad070e6b4612b93d25c49304e987d77f8911f", "message": "test: Move parameter-building into a function\n", "proba": 4.294416612538043e-06} {"commit": "0b3b61b367b9853a5950b31db94e8403e04adbee", "message": "Test a couple more URLs\n", "proba": 1.2627248224816867e-06} {"commit": "3385d727ac1e3553db0e0b674f47820e008e8233", "message": "minimally update test_time_limit for new time accounting\n", "proba": 3.121043050668959e-07} {"commit": "fbd8a41fed2e7bc83524c4afc1f0435110abd82b", "message": "Reverted changes and improved wording\n", "proba": 2.2491140327929315e-07} {"commit": "3b9b46e94d3ed6220fac01ccebefaa046252812d", "message": "Fix use of mock.patch\n", "proba": 1.0918892030531424e-06} {"commit": "18459690ed28d84a322b89ec8d402ee2df0ca759", "message": "Get list of GOTerms just once.\n", "proba": 1.1111467301816447e-07} {"commit": "2272efc4b2cdc31194218175fd91cbe2a1aebb72", "message": "corrected youtube-urlextract\n", "proba": 0.00031875321292318404} {"commit": "102349a70d02020dd36d92f9d9cd0584121cf165", "message": "test: add regression tests for single evaluation #366\n\nNow tests cover multiple variants of classes, @operation, and @value\nobjects.\n", "proba": 1.0453958054768009e-07} {"commit": "e48216b7b909ae6d0c4298ae48fad89e7ee64cf4", "message": "normal python arrays for test instance\n", "proba": 4.2378349007776706e-07} {"commit": "d7b427ebc35b4b3e77c7f8dae6a83fcdf7d32e6d", "message": "Offset support for uprobe and kprobe\n", "proba": 1.2669029558765033e-07} {"commit": "9cd960565ea40d112875610d8e007af1cf45123a", "message": "0.3.0 - adding Iterables as part of test input.\n", "proba": 1.2955658235114242e-07} {"commit": "3e354bcc58742b5acd22a9e7168f055aff2b6d6e", "message": "Disable core dump archive check on Linux\n\nrelated #30205\n\nReview-Url: https://codereview.chromium.org/2983093002 .\n", "proba": 1.0311218545666634e-07} {"commit": "3d4f63d1fc57cecec500ac8eac8034fb4c23ed70", "message": "provide short link names\n", "proba": 2.427579147479264e-06} {"commit": "38cc88b4730544d731c98d640c6d707f0be19ca8", "message": "Rename FigSize to FigureSize\n", "proba": 0.9999949932098389} {"commit": "d47750261ffc52de28eee0e3000a936f1fc2d7f0", "message": "Put the build/ directory *after* build/generator/ in the search path.\nThis prevents stray .pyc files in build/ from being used in favor of\nthe originals in build/generator/.\n\nReported by: Garrett Rooney \n", "proba": 1.1801301980085555e-07} {"commit": "22afa2c6c5adf15c9966afe448eb0c3e0a0208cd", "message": "Improve parsing of voteview files, including a number of date formats.\n", "proba": 1.1743897232463496e-07} {"commit": "e4d5d2b7a743e444d0b01e5662ba86d7f47777db", "message": "Basic tests for network fullness calculation\n", "proba": 1.7262082963043213e-07} {"commit": "d8e7eb4e5d52abb6dcc4d19387d02ee894912cac", "message": "Authentity string added\n", "proba": 5.097390385344625e-07} {"commit": "a36be4fef3c0c88c4abd59383852616730cf5083", "message": "This naming seem \"more correct\"\n", "proba": 5.409820005297661e-05} {"commit": "15165acf066425277a4e61684cdf3a9c2bcc8720", "message": "Add a unit test for damping in newton_system\n", "proba": 4.214342084196687e-07} {"commit": "2136a3d2b181e4458d8488a1e038d69f275db1b7", "message": "commit\n", "proba": 8.363364258912043e-07} {"commit": "64b7c3cc3497ea6c1daa54c947e8c1ffa6e09a3b", "message": "Remove a group of argparse that no longer needed\n", "proba": 0.0018352903425693512} {"commit": "05a656000b3a2d82914db8cb8a8d146b2dc1aedb", "message": " removed setup/teardown\n", "proba": 6.681115110040992e-07} {"commit": "322def760b5e865a18c18bad6d75202163e9cfa8", "message": "Remove unnecessary mock.patch decorators\n", "proba": 9.444252668799891e-07} {"commit": "98f30a704f4b4ec79083a229d8cb2a2d76bcc7c9", "message": "Clean up the unit tests a bit.\n", "proba": 1.1976175073868944e-07} {"commit": "809a90b1f9742aed88d908f3fa402e8141b9e8c7", "message": "Keeper initialization moved to a separate method in the unit test\n", "proba": 2.886859533646202e-07} {"commit": "a391fccf315288d6f01920c4e853edf6488b6fda", "message": "test btnH5\n", "proba": 2.1237885448499583e-05} {"commit": "59e70ef8d824c24e14fd13416334b48e18d7fdf0", "message": "fix tests\n", "proba": 1.2553598480735673e-06} {"commit": "c620ccd407fc4457b991ebbf895353f9084266f4", "message": "Fix windows path issue\n", "proba": 9.373653142574767e-07} {"commit": "fd781ecd16668f67a7ba6f5576cb0feb87649a56", "message": "use raw strings as appropriate in tests\n\nUse raw strings in tests whenever a \\-command is used unescaped.\nThis fixes 'invalid escape sequence' warnings when running pytest.\n", "proba": 1.3740630322445213e-07} {"commit": "00036fbb1ec450efd0c9608342ce04caeb908b46", "message": "test case to auto_commit\n", "proba": 6.062265924811072e-07} {"commit": "e66222564d726e3807cd213c14282b6af01b09b6", "message": "Tests for setting render ignore globs\n", "proba": 2.157311342898538e-07} {"commit": "5073e126c81fa82a87cf498d4bcf60dcfc5dd973", "message": "Update tests/test_tifffile.py\n", "proba": 4.389366381474247e-07} {"commit": "335d74dcc3b919be6986279961c5f7fa25bb74f0", "message": "Updating header from \"string.h\" to (C++ convention)\n\n", "proba": 1.1818556089338017e-07} {"commit": "77f0a1aacf80f6a8e85b74b4a6e3869816733893", "message": "Fix systems not being copied\n", "proba": 2.8234623528078373e-07} {"commit": "b6ae3f955fab8fac16da78d9c576dcd7c196b372", "message": "Fix test, need to put cp in repository, otherwise it fails silently during absolute_url\n", "proba": 2.960015876851685e-07} {"commit": "5bf8b5240afc86e6666c92ac0ddde3342acf3e83", "message": "Updating script.\n", "proba": 2.0444521453555353e-07} {"commit": "f9c7da3e9f73612f155c9fa1f7d98e1723b9f5f1", "message": "Import code from our FUDCon Gobby session\n", "proba": 1.1907468433491886e-07} {"commit": "e42bd9354aeea97c01337e98d099d6c0824c5131", "message": "Added stestr for running test using pdb flag\n\nThe officially supported test runner for Tempest\nis stestr.\nconfig.py uses ostestr with pdb flag.\nHence, there is need to replace it.\n\nDepends-On: https://review.opendev.org/#/c/698629/\nChange-Id: Ie4a1fe87ed10e1ff306c52e4e72bea1825559602\nSigned-off-by: Soniya Vyas <3280b2f7f950e30353413a52eb80691fc70f5ef3@redhat.com>\n", "proba": 4.93569859827403e-05} {"commit": "f511db2bc9f10554a86af63592ffb59cb92da102", "message": "remove an unnecessary stdout output\n", "proba": 0.9992314577102661} {"commit": "560f884d2946e60446e1fd97800f9b9a50e5ac38", "message": "Fix the condition of are_all_ships_ready.\n", "proba": 0.9998094439506531} {"commit": "8ba420c5e79439b8fa369f37bfee5bd117d00f51", "message": "mod extractVecMat\n", "proba": 9.342470548290294e-07} {"commit": "e009bb0200a80197654e0259d65e35b29bd7a5a6", "message": "Adding message\n", "proba": 6.374781946760777e-07} {"commit": "b5c3cb11bb404f4c5cb58c3b537657f4c1bf2141", "message": "simplifications", "proba": 7.542486127931625e-05} {"commit": "8a36940dfcf962c469e657ceb1d9ff89a72cdfb7", "message": "Strip whitespace when looking up category\n", "proba": 2.6543609692453174e-06} {"commit": "83821ebe96ba9087902a24529f2ab57228ccd9ee", "message": "Update more affected tests - we need to reference a valid policy type.\n", "proba": 1.0319639898170863e-07} {"commit": "951959239df20a8f23cc62c1f8a451d73bb8899f", "message": "Lowercase boolean configs before comparison.\n\nLowercase boolean config params before comparison.\n\nFixes issues where 'use_ssl=False' doesn't actually work...\n\nChange-Id: I865e6b3c84341f0d05248f63fe9dec59ec325d74\n", "proba": 2.050596549452166e-06} {"commit": "ec4e87a2ebaf1c3f44286192dd889d8134e91ed3", "message": "Coverage improved\n", "proba": 1.6252515422365832e-07} {"commit": "a1db2ff367320fd36eeff63040e4f0914f9ed493", "message": "Fix changing url for refreshable items\n", "proba": 5.165687184671697e-07} {"commit": "01b7892ed7a15abc5b0f5e4b8a7ee0b21d6e3ec0", "message": "change weight dir to weighted\n", "proba": 1.0490372915228363e-05} {"commit": "4d8549b8503e81e8b49946fdb6105b26b757fd88", "message": "Add connected buildings data to networks\n", "proba": 3.7268171126925154e-06} {"commit": "fc23fae307f021b2bff986b379c2b7f0a1348003", "message": "minor fixes, removing irrelevant what.cd stuff\n", "proba": 1.9758408598136157e-07} {"commit": "15a2762030fbfeab65779b5c2881e8dad1c0e4b1", "message": "Make tests compatible with pytest 2.6.4\n", "proba": 3.300470439171477e-07} {"commit": "1b2377285d01071792fbc2c7ad87593ff2e8c7ab", "message": "Formatting mass and thrust", "proba": 3.1725818416816765e-07} {"commit": "670b71c028227ebeaba8dc42b6794eedfa781621", "message": "changing input filename formats\n", "proba": 1.5014921700640116e-05} {"commit": "654c7a78b85ea8796c333817702c7ac05a1b2d0d", "message": "added new function calc_operating_conditions_matrix to test for speedup\n", "proba": 2.3529480586148566e-07} {"commit": "ce7dd551166b2163ab9b26ffe93206c045c7d096", "message": "Replace twill tests with django-webtest in profile tests\n\nAlso, remove un-used Starlings unit test and a test that\nreferences a non-existent website url.\n", "proba": 1.0336245992448312e-07} {"commit": "fd659c259f10f900272876fe3f9adce46c059a31", "message": "more doctests in frontend.py\n", "proba": 1.518370851272266e-07} {"commit": "d89912e14676f0b0851aec19d4d0881ed8c4a233", "message": "DEV: Finished test function for _guess_type().\n\nThe test function currently confirms that floats, integers, and complex\nnumbers properly get detected, and that all others get passed through as\nstrings.\nIf possible, I'd like to get 'True', and 'False' to report correctly as\nof type 'bool'. Currently both 'True' and 'False' will report as True\nwhen tested using bool().\n", "proba": 0.000201034068595618} {"commit": "102de135de8d5369f0da2483edcb6263b7e2dc1a", "message": "Disabled debugging\n", "proba": 1.7011044519676943e-06} {"commit": "4906834a2bc1bfb3587f6873c9387b06dd621697", "message": "small fix\n", "proba": 5.359547685657162e-07} {"commit": "1719ef50791ccbd7ebdb788855b1796bade1da90", "message": "Avoid circular import\n", "proba": 5.216631961957319e-06} {"commit": "4905af0bf9efa2a0c21c5402a4e8ebe3ff1d2732", "message": "Finally, a 404\n", "proba": 0.000432246015407145} {"commit": "546ebab4b4c84eb8971416ac7ebff12d5119b843", "message": "Implemented multi-threading mode.\n", "proba": 1.670802305397956e-07} {"commit": "89974dcd8458e331cf4923d44eb31c8b47bd8303", "message": "Fix test_zobjects samples import\n", "proba": 5.920805961068254e-07} {"commit": "64240745845f45d864a8bf3eb1825185e22e39a2", "message": "Delete non-legacy policies\n\nCCCL only supports 'legacy' mode for policies, because published\npolicies can't be updated. If a non-legacy policy is detected on\nBIG-IP, the policy will be removed from any Virtual Servers that\nreference it and the policy will be deleted.\n", "proba": 1.0856513910084686e-07} {"commit": "fb7236dd6dd78d57c36d04de124160ba51016f75", "message": "Test whether person model can give you a list of the person's tags.\n", "proba": 0.00010086085967486724} {"commit": "4f2f92f2c8dff7526747b1ae286502320cf75b2f", "message": "added stub to find all methods with particular signature\n", "proba": 1.6931819857290975e-07} {"commit": "63967f73d2feb1552661c205f61be68993fea9cf", "message": "Correcting erroneous test name\n", "proba": 0.00040053128032013774} {"commit": "2d6654bf680d89fb5efd8f834db6d1454e6bacb5", "message": "Convert restart args to boolean for update_all_configurations task\n", "proba": 0.003824365558102727} {"commit": "d19ef36f85f2330f68c80f9f77482042298a9790", "message": "Fix some urls in tests that refer to tabs/involvement.\n", "proba": 1.52523412566552e-07} {"commit": "c8e8f951dfdf090c2048ee92c43e263f41ff760e", "message": "Fixed erroneous media_path reference in set_media_permissions()\n", "proba": 1.8674123225537187e-07} {"commit": "72c163a9e2ac3bd019796ec95197b0292b1a9e37", "message": "removed timeseries file\n", "proba": 4.112997373795224e-07} {"commit": "f6ec970eea01c6fe3f454d978d0ae08a34821408", "message": "If it was not Unicode, make it so.\n", "proba": 2.499164793334785e-06} {"commit": "e63e3adedf79dd5b39bc291bf7f09e8c50d1e1dc", "message": "added automatic deploy of jenkins with adding plugins\n", "proba": 1.3995720848924975e-07} {"commit": "a70fed371557e439e188591f66e794551e74087b", "message": "Add test cases for missing and invalid disk and container formats", "proba": 1.9856086908021098e-07} {"commit": "812085b69b41d004bcc32e5335d81e601e3b3473", "message": "Small clean ups / typos in project views.\n", "proba": 1.0239448755555713e-07} {"commit": "2fcf4a5a5a55bddc9cd466be9ba3700c91b3eea6", "message": "do not run bed test if no bedtools found.\n", "proba": 2.1654595627751405e-07} {"commit": "d21ec9bd4a732501e5a1f0b4f9d4d7e21b94b8f1", "message": "Allow election apps to install their own apps\n", "proba": 3.1166976555141446e-07} {"commit": "d459969b0342cd3ade9ec42373430dc5aa1c7251", "message": "fix test_unexisting_path on windows\n", "proba": 1.7207855762535473e-06} {"commit": "89d9f7bbfc44022705fb3a49d1c63d435ec8de3f", "message": "FTPFS: Type checker fixes.\n", "proba": 1.1811097522240743e-07} {"commit": "66fc474aef910be0a237cf6c0caba73279ef73c5", "message": "A few more tests\n\ngit-svn-id: 74b2def6592cf29d88d1a5d33b5c4a2732d8507c@79 67cdc799-7952-0410-af00-57a81ceafa0f\n", "proba": 8.383103704545647e-07} {"commit": "ae100a02dbde3396e077d10cc3004ca67b5e15f8", "message": "#114 small bugfix previous commit\n", "proba": 1.2019036432775465e-07} {"commit": "69afb568253983beb8b429b8918c802887c4a3e4", "message": "added hash table for command translation\n", "proba": 4.459313913685037e-07} {"commit": "469f68cdfa213c0dfc1ff0d6e8319e74cc31c27d", "message": "Remove unused import\n\nMissed in previous commit.\n", "proba": 1.0776528114320172e-07} {"commit": "d57a98d49d5d2e58dc68146e0170b7107cb05882", "message": "Add check_same_thread = False in sqlite with :memory:\n", "proba": 1.8877331058320124e-06} {"commit": "871fee561d51793d1c32c6d5aa75e4da42a85160", "message": "tests/utils/helpers:\n\nFixed a typo in the docstring for MultiMock.\n", "proba": 1.055956815321224e-07} {"commit": "fedca6f7081cfa65e36b181c3909bfd2e14d45e7", "message": "Lower the aes-xts-plain64 key_size to 256\n\nLowering the key_size to 256 will still exercise the code path\nappropriately while being compatible with Barbican as a key\nmanager.\n\nChange-Id: Id713da735164dcad773be62921de7f2dc5f22910\nRelated-Bug: #1514546\n", "proba": 1.2713524029095424e-06} {"commit": "fc88def6bbbb9309c8d608cec2b5d3cdc2aad95b", "message": "added fmt to qagraphs\n", "proba": 1.5239444906001154e-07} {"commit": "3293a6af4a976d65df4269f3488317a968d0ec20", "message": "Add docs for plot_vi_breakdown; remove plot_vi_parts\n", "proba": 1.9495741980790626e-06} {"commit": "7247748063fc85141a0fc7db71009654983fdd80", "message": "updated with networkx2\n", "proba": 2.620993484470091e-07} {"commit": "d62e4cbb02052b8775273388e39799c53a5c3906", "message": "Fixed execute_overload\n", "proba": 8.204370942621608e-07} {"commit": "7b0606e5619be5ef39f2b4ef5d79f6ff62330147", "message": "Adding KeyError and improving logging\ntendrl-bug-id: Tendrl/monitoring-integration#184\n", "proba": 1.5189516489044763e-07} {"commit": "12bb79dc9ad61c20f0076547de19038a6c41f901", "message": "Added credentials for database, cloud, misc\n", "proba": 1.3213251293109352e-07} {"commit": "4a3161e4ab330f33c6fd47773225238e92180846", "message": "Fix pylint issue in the master branch\n\nThe latest master branch has the following pylint failure that caused\n`Ubuntu Sanity \u2014 Internal CI build failed`:\n```\n53 FAIL: Found 2 non-whitelited pylint errors:\n54 tensorflow/contrib/cmake/tools/create_def_file.py:47: [C0301(line-too-long), ] Line too long (106/80)\n55\n56 tensorflow/contrib/cmake/tools/create_def_file.py:61: [C0301(line-too-long), ] Line too long (90/80)\n```\n\nThis PR addresses the above issues.\n\nSigned-off-by: Yong Tang <765086fe2e0c1f980161f127fec596800f327f62@outlook.com>\n", "proba": 0.010744748637080193} {"commit": "2b90b6ff897bfc49bff82707fd4e076b0989d663", "message": "tensor_forest only supports categorical sparse input.\nChange: 129652772\n", "proba": 5.43028800166212e-05} {"commit": "c5eafbfebd65d933d27fc6e4588dda1d6ef50537", "message": "Internal BUILD file cleanup.\n\nPiperOrigin-RevId: 281726401\nChange-Id: Ie669ff9d37608f94f966b9963c42ded37384080c\n", "proba": 4.418987373355776e-06} {"commit": "1dfd7d49064d1524cafaeced077a90560e0e0c0b", "message": "Moved a test around to avoid 404 when no file given, implemented auto creating tracks based on files, accounted for multi wig files by appending a count for each, track_name form val used unless not given then default to filename for both\n", "proba": 1.6499295441008144e-07} {"commit": "af42fda584a0ba89e62ba0051949b8382d0cf7d1", "message": "Add more threshold options\n", "proba": 3.7961340240144636e-06} {"commit": "0607d2f853fbc3fb8d4c1ee6ebff2c3ecf4f56fa", "message": "[Sim][#50] Avoid generating 'not' clauses.\n", "proba": 5.526243330677971e-05} {"commit": "3f18817317940253e6ec0e6b412492c5add5927b", "message": "Fix basic arithmetic fail + make loop pythonic\n", "proba": 0.9986076951026917} {"commit": "f3766f75a0d72328f014478f679e045f2e27438e", "message": "Fixing issue\n", "proba": 5.34945741037518e-07} {"commit": "e196e26604218644e13d15a8bcacdaac6a91a077", "message": "[Sim][#50] Test cf after ccf.\n", "proba": 1.1095816176975859e-07} {"commit": "6ca578a6987a83f8ade770cb4e68f0c0165cc383", "message": "Add mpi tests for non-macOS systems\n\nThis is to ensure that the mpi still runs for the systems I want to run\non.\n", "proba": 1.1362695317984617e-07} {"commit": "8ae303d93d2a791b914ed695a1fca71658837a2d", "message": "Renamed configuration file\n", "proba": 6.098705398471793e-07} {"commit": "e459d7ed9e843d2e6cad5cee2cfd0cbeb9d0c462", "message": "Add test case for negative dims (other than -1) for tf.nn.softmax\n\nSigned-off-by: Yong Tang <765086fe2e0c1f980161f127fec596800f327f62@outlook.com>\n", "proba": 1.2739496924041305e-06} {"commit": "1276bb3acda20d5704a8f97f9609462bbe15330e", "message": "[#37] Rename __nodes to __indexes_to_nodes.\n", "proba": 1.980769866349874e-06} {"commit": "eac5c44724a9986cbc61ce448d3874306cef6e20", "message": "Moved from this repo to my CIPPtools repo.\n", "proba": 1.1123745480290381e-07} {"commit": "afc48932c2087d4b0f6c885bc3e1e91e979582a9", "message": "mailto: replace ignores case\n", "proba": 5.64578476769384e-06} {"commit": "0d3bfb65e483d6b38a8d0e0f156f71c469ab8a84", "message": "fixes-bug api bug in deploy (#370)\n\n", "proba": 1.0908176051316332e-07} {"commit": "ec175f8269e2cbaa4b3ab01baa58f41cc9e8c136", "message": "Added a unit test which exercises multiple aliases after first creating multiple aliases\n", "proba": 2.564495957813051e-07} {"commit": "abcac1d4a386df4b5a5713e548ec7843a7e4bc81", "message": "Fix wrong opener.\n", "proba": 7.764854217384709e-07} {"commit": "7228785da44052066e54fbc82830089bed166172", "message": "Bug if notifying with unset custom fields. Closes #929.\n", "proba": 1.0300328767698375e-07} {"commit": "f6727737d8a2b46d03311cb0cce51603f7ce16c4", "message": "test_reading_color_palette: specify colormode\n\npalette reading does not depend on terminal detection\n", "proba": 4.5812566895619966e-07} {"commit": "5641e9716f60ed908a237b885715c9c2fcf3bd78", "message": "Added action and flag to the app's JSON representation\n", "proba": 2.566901287082146e-07} {"commit": "95f9850e3b77d428ce90e86bb80a76eacdcc1f13", "message": "Remove dependence on deprecated API.\n\nPiperOrigin-RevId: 312117723\n", "proba": 0.0005229919916018844} {"commit": "184a04173ca5e5d3c1fc0b905980b212a18ae94f", "message": "Bump the version number\n", "proba": 0.9984521865844727} {"commit": "84da868f510cef1dfcbf9b9164a73b13f5bf1585", "message": "Output DOS line endings\n", "proba": 0.9997716546058655} {"commit": "bc4b2ae24d64cf934adf1bea6aa62caa34e6c110", "message": "Changed the way the ticket email notification work. Now only people in the CC-field get notified. This closes #395.\n\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@842 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 3.81759036827134e-06} {"commit": "41fa38b126406b7f4406662b6343941bc93e877f", "message": "Unit testing __str__ & __unicode__ methods\n\nMakes sure it doesn't crash on both Python2 & Python3.\n", "proba": 1.417679300175223e-06} {"commit": "793565ba366c36a264763bb675c27dc6eda6e9f2", "message": "Automated rollback of commit 20ee8972f9c1260e87b17e6ddbeaec18a9bf9033\n\nPiperOrigin-RevId: 415612597\n", "proba": 3.2737366950641444e-07} {"commit": "50b403a081daea734e84ef15d70d9631346ac7ce", "message": " * HTML-escape ticket comment on preview. Fixes #979.\n * HTML-escape ticket summary in title.\n\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@1095 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 6.775281349291618e-07} {"commit": "b60a6dc51b2b657ede14f61ef62861d918ce6bde", "message": "Removed commented code\n", "proba": 1.798141937570108e-07} {"commit": "f0a6c881bcaf7d2c65896b6f30c9bcad2d5fe097", "message": "Fix inclusion of legacy IDs on choice fields\n", "proba": 5.516337296285201e-06} {"commit": "3e60246795f7da9044e9f96628d91f7b6703ee49", "message": "Fix some indentation issues.\n", "proba": 4.452565747214976e-07} {"commit": "f0cf752e57270b92b06ae207c242bb585ad86d0e", "message": "Removes extraneous whitespace\n", "proba": 0.02992827259004116} {"commit": "2eef18a58e2a6f3214e7cc1fb5467ae2cc82dac2", "message": "Remove support for [wiki:TracIni trac.ini] configured plugins. Plugins must now be deployed as Python Eggs. (See also TracDev/PluginDevelopment).\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@2143 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 2.5289184577559354e-06} {"commit": "03af0a67cf66099e3d24c2fef9bf4daf54e8543b", "message": "Windows fix\n", "proba": 9.196866130878334e-07} {"commit": "18ecf28300c8114b79beefd700db287d41ee11a7", "message": "Removed \"hardware\" and \"operating_system\" section\n", "proba": 1.9814840470644413e-06} {"commit": "e311480a1728dd7851a1751f133efaea36f0d82a", "message": "[test] Support long paths on windows in more places in rewrite-module-triples.py\n", "proba": 1.4910406775925367e-07} {"commit": "4c801be5fe22d2df77f6fe0705149e4abc62ef6b", "message": "ififuncs - cleanup/PEP08 and docstrings\n", "proba": 1.9103772785911133e-07} {"commit": "b33bfc97b4be18f8ea5768432d3ed48d971161a8", "message": "Testing nothing to do.\n", "proba": 2.1462014387907402e-07} {"commit": "8558a18d140b86775fe0238edbfca64be505119c", "message": "[network] make sure we mock the right code.\n\n[network] use the dd-agent tooling.\n", "proba": 1.505256506106889e-07} {"commit": "e722fd7fd90f5eb44b031eba2dde13f6960f7ced", "message": "cleaned up metadata access\n", "proba": 1.2387505421429523e-06} {"commit": "577e7158ad57a76098c37bc8d8d99f6797f98b87", "message": "Write unit test for format number list\n\nProcess is similar to formatting the vector except the format is different\n", "proba": 9.83682730293367e-06} {"commit": "3e04d12353c3d2fad78ffe79a795b8d2bcd85d7b", "message": "\u0416\u0451\u0441\u0442\u043a\u043e \u0437\u0430\u0434\u0430\u043d\u0430 \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430 (#8).\n", "proba": 1.367962312315285e-07} {"commit": "dbb68b2643aca47198caf20ffaa88207ed23f25d", "message": "Mention patterns in docstring\n", "proba": 2.645970198500436e-07} {"commit": "036adc86949e060f59d7a952ced61a340cf46779", "message": "read tests up to date with codebase\n", "proba": 1.865993510818953e-07} {"commit": "02abb5618511898cfebddc8091a15f5c1b80825b", "message": "Use draft to speed up resize operations. Also ANTIALIAS->BICUBIC\n\nANTIALIAS seems to be deprecated and they use BICUBIC now in their thumbnail method. Probably a best option.\nI tested draft locally and there is 30% less time required to do just resize operation and save an image.\n", "proba": 1.0594227006777146e-07} {"commit": "c12bdf79308b2521db6821226b316aadbc47f150", "message": "fix: Make work with Python3 and Python2 (#451)\n\n* Make work with Python3 and Python2\r\n* Fix a PEP8 style issues and PyLint issues\r\n* Use getpass for credential input\r\n* Select the correct keyboard input function based on the python interpreter version\r\n* Fix the pad_lines function\r\n", "proba": 2.0586342088790843e-06} {"commit": "627575a93c47b36bf36a8c17aec1bc2ed313f4ba", "message": "hotfix\n", "proba": 0.6886289119720459} {"commit": "a888c266deaeaae88a3695e002cc20358f457e63", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "76de011398e404bfe33f6f0a87f39b87e4eb797e", "message": "Fixed webhook url check\n", "proba": 4.120653329664492e-07} {"commit": "54d81594f9f8f71e5bc97840fe40f003f4cd86d4", "message": "changes to tile-gen code\n", "proba": 7.227267246889824e-07} {"commit": "3361fc5af5a4673afeece862914fdc617aec1219", "message": "Fixed Connection header interpretation.\n\n--HG--\nextra : rebase_source : 7afda4e8d60bf5c98b787702266cbce0be372cb1\n", "proba": 1.7942447811947204e-06} {"commit": "0a2e66fc00761316e1b61682d614177acb90a61b", "message": "First import of the spines. The spines appear not were expected.\n", "proba": 1.925338466435278e-07} {"commit": "ba19e44c4abbf0b998337de9f477fdfe1068cd21", "message": "fix missing import\n", "proba": 0.008360686711966991} {"commit": "9117b4230ac7be434ea3b002a50c6c3f91a8b375", "message": "Update __init__.py", "proba": 7.178883242886513e-05} {"commit": "5f7599fb4f132d536dbb0b802d467bdc42c26d9a", "message": "few small improvements to curve-splines\n", "proba": 1.793281825257509e-07} {"commit": "b0678d36f18e1163aa93c7d662b778f61c0b9948", "message": "add orientation support\n", "proba": 2.895638999689254e-07} {"commit": "d36926fd06c174c6cd3275d2fee02c256e8b8c33", "message": "text to speech on survey set to woman voice\n", "proba": 6.606294959965453e-07} {"commit": "c43fd68e2f08395274f87aaa2d85b9578cce618b", "message": "Fix linting\n", "proba": 3.619362360041123e-06} {"commit": "31fb7fd33ba299712204c2b1823c56370b2e0abe", "message": "Use a ThreadPoolExecutor for blocking functions.\n", "proba": 1.1469771266092721e-07} {"commit": "6a51c775619a785fcca35933891212f8acb8c665", "message": "[Issue73] Making sure sampleEdge uses Poly_closed\n", "proba": 1.0606883904529241e-07} {"commit": "bc18fac522e36fff3c84f1674dad7faafd7215e4", "message": "Corrected some bugs in Newton-Raphson step\n\nAdapted the formula to enforce a positive solution.\nThe formula used for the second derivative contained an error (bad\nsign).\n", "proba": 2.628372203616891e-05} {"commit": "cd2b8db0434705b79f040ff7e04210a4c19be734", "message": "fix tPool.request is not Future\n", "proba": 0.9999990463256836} {"commit": "85e6d2a5c845fb2bd30ed524b6d2adfb37a83728", "message": "fixed action object creation\n", "proba": 5.391005970523111e-07} {"commit": "6a77845bccd6081f8dc4ae0781d9832ed34b2367", "message": "log message change\n", "proba": 1.2696633575615124e-06} {"commit": "c1ddd6849082e47af2a774797327c74a6da2e02a", "message": "name stomp bump\n", "proba": 9.047886123880744e-06} {"commit": "a0dc9a7815277ee2e6ff1b728e5ba9a71e0b3428", "message": "a does not exists\n", "proba": 0.021768681704998016} {"commit": "5f4efb6279213d62744b4b403b10fd7ab9f5802f", "message": "Just replace some identifiers with better names.\n", "proba": 5.153926849743584e-07} {"commit": "76d50c76470b45102457a0ef6dd4c61b27c7efa1", "message": "ENH: `log_bdd` default for argument `name`", "proba": 1.3026051703945996e-07} {"commit": "90e6c923ceb420d1b9492535f34a8cee93f59582", "message": "API: rm args `bool_states, bool_actions` to `synth.synthesize`\n\nbecause they are inefficient.\n", "proba": 1.3548103083849128e-07} {"commit": "89a20bb560b51f6330caf40868729eb318771ab1", "message": "Raise exception when the group is missing\n", "proba": 3.3924718536582077e-06} {"commit": "467934171d8ec8f809f993c22fd6dd4d53bb3027", "message": "Prevent cleanup exceptions from breaking things and properly cleanup on shutdown\n", "proba": 2.2430114654525823e-07} {"commit": "0337a6db2538fd9cad946c72c196a378d2cce2e6", "message": "Leave the denychans module to its own doing (remove more stuff from default config values)\n", "proba": 1.0347982737357597e-07} {"commit": "6d11f21f8843e7c68489b669e1e5f085e9da7676", "message": "Hide more stats stuff\n", "proba": 1.234608077993471e-07} {"commit": "10fe24835c2c6c1e8afcf103591302b672c27309", "message": "Add new action processing functions\n", "proba": 4.817264880330185e-07} {"commit": "2c276a7f2e6e2daa84cdf7487b23a5a81dbeff40", "message": "Call onRegister hooks and allow user rejection on registration\n", "proba": 1.748362734588227e-07} {"commit": "5b6a9a118237409431cd3adba0b2d1550cf49d5a", "message": "Renaming get_* methods to be more consistent.\n", "proba": 1.0223992319424724e-07} {"commit": "12464a643231b6cdf92b60397e6575a0406e8d6e", "message": "Let guest, band, and mivs admins see group_admin\nFixes https://jira.magfest.net/browse/MAGDEV-1046. Not really sure what we were doing before this.\n", "proba": 9.957633295698542e-08} {"commit": "75db1f3d4458a6b1848b438b329ab1423b3f501b", "message": "Make admin_table_opts floats\nFixes https://github.com/magfest/magclassic/issues/41.\n", "proba": 1.0625147695009218e-07} {"commit": "84b5824c720e4e4f07c0ab40f7fc81a3543e5fbd", "message": "Unindent output of --help\n\nThe __doc__ inside the _EntryPoint subclasses contains uniform\nindentation that should be cleaned up before printing it to the user.\n", "proba": 1.4726271047038608e-07} {"commit": "a61dd10af8353b9dc9f2635f5f2a8d171616b888", "message": "[msm.ui.msm_test] deleted, because it is already contained in msm.tests\n", "proba": 1.6659781465477863e-07} {"commit": "59ffb3fda800609fcc9d2386b0f9ea5d6399f321", "message": "remove trace of extension\n", "proba": 2.9659147458005464e-06} {"commit": "6428c9288a86658cb3d9a1e91816c4bcf162a6f0", "message": "Avoiding the use of re.Pattern and regex.Pattern\n\nThis fails for Python 3.6 and 3.7.\n", "proba": 1.2188315849925857e-06} {"commit": "6861f28a2f9f7106697eba516526f76da296fcb4", "message": "Minor fix to Ansi parser to ignore bell control code\n", "proba": 1.3112689600802696e-07} {"commit": "6eedb855d80aa1ab88514c41602df88e339ea88c", "message": "Update __init__.py", "proba": 7.178883242886513e-05} {"commit": "ae7d026f5217f696205fb5f98fc3834fa0c8eaa6", "message": "Added Content in __init__\n", "proba": 1.432014755664568e-07} {"commit": "4d0e30017b2a403a1114a88cc142ae1f202ca5f0", "message": "add regex syntax\n", "proba": 0.0017464568372815847} {"commit": "523e1d03a2d66b2840ddcf1e0d06876766364a4b", "message": "Better fix for enum with multi-type\n\nEliminate the enum if it consists of values with two or more different\ntypes.\n", "proba": 7.232576422211423e-07} {"commit": "da995d9dcdae36993ebf3be597362950e502c088", "message": "Fix actor creation is no source is provided.\n", "proba": 1.1407014710584917e-07} {"commit": "da50e75a0e643aeba37326ea030108917093b2db", "message": "correction to the bar force to be deducted in the compression zone", "proba": 2.1031230801327183e-07} {"commit": "fdd33336966a1e53de6a7056868cbbe6cec10170", "message": "add comment about raciness in aggregator, needs to be fixed sometime\n", "proba": 1.1406569200289596e-07} {"commit": "788e939687afb8914df93a57de7740ce1693a2ec", "message": "restructure state-machine to fit with nsi spec\n", "proba": 2.0981629234029242e-07} {"commit": "8f2d8c0eb39d75575ef295b301f48a22dad9d6cf", "message": "Formatting.", "proba": 1.0361566182837123e-06} {"commit": "18d7fa6c0052b033c06043f4e0f111899b5a0b71", "message": "Fix bug in test\n\nThe test was still calling scan.get_image_range().\n", "proba": 0.0002559293061494827} {"commit": "fed4d97fe3768b260ab3a03ec637ffec18bd9955", "message": "removing deprecated parameter\n", "proba": 3.3866954254335724e-06} {"commit": "8e1c0c208b97167194afa523ba626944e9e78434", "message": "Added test for convervation of counts", "proba": 1.614567395336053e-07} {"commit": "a4351a5c0dcd4726b8337033a8f6553327750527", "message": "fastq genome metrics\n", "proba": 4.304000356114557e-07} {"commit": "fb866d5ccca9bb850a99019fdc310cee516648ad", "message": "py3.4 compatibility; use `'...'.format()` instead of `f'...'`\n", "proba": 1.275792897104111e-06} {"commit": "af6ece005dbca70abab7f68e08072e77ae7868ac", "message": "parse_packet can return None.\n", "proba": 0.0014194132527336478} {"commit": "94dcd5da01b83458af72406a955dc5d3fd32b339", "message": "Display a user-friendly exception when entry-point is invalid\n", "proba": 1.6498948752996512e-05} {"commit": "67edd19eb8a457dbb2c6d154c1b127333b85f451", "message": "Small formatting fixes\n\n", "proba": 3.700216950619506e-07} {"commit": "0efdbdc80974779ea2c4e8519ae92385c0f7fc14", "message": "deleting\n", "proba": 2.925931539721205e-06} {"commit": "51095a9800e2a56ea85d192a6680fa5f689fa8d7", "message": "make atom example work\n", "proba": 1.520869591331575e-05} {"commit": "3ca3813d886be42b8add14eb5749d82b2a6f7c43", "message": "Test item editor page content creation\n", "proba": 6.220907380338758e-07} {"commit": "e16207783ce9bfd91cbd9b741c0403c0aba93847", "message": "Allow adding the same app with differing languages\n", "proba": 4.358176283858484e-06} {"commit": "8bbc98469e9b2a2eb22381ffa71bdc358d229798", "message": "Don't test order of query params\n", "proba": 5.0522826313681435e-06} {"commit": "27a749861e950650538a55d392e838e51152019d", "message": "fix trival cast of type ((void)x)\n\nThis trivial case simply converts the input to 'void', or 'None' in the\ncase of Python. This trivial case occurs when performing testsuite with\nmingw.\n", "proba": 6.074592988625227e-07} {"commit": "ab06e4eacfec26dcf5135d10c235c08c264c823d", "message": "Changed periodic tasks dates\n", "proba": 1.965104638657067e-05} {"commit": "7b08e12e997232c0a6a9b6bd72a91205adc1b6b7", "message": "Add some spacing for clarity\n", "proba": 1.8424432710162364e-05} {"commit": "3ace51cad09a69766a99c50018c4adc5b2342ab9", "message": "nojira: fixed pylint warns.", "proba": 1.2220399980833463e-07} {"commit": "4fe5f9be63d72753436ca8ac4a631d29078fba38", "message": "Abort when the process id isn't found.\n", "proba": 1.408981376016527e-07} {"commit": "924ad83720b867049f320c26b9ea4fe44704da9f", "message": "Adding more runtime checking of input symbols and dimensions.\n\n--HG--\nbranch : yt-3.0\n", "proba": 4.447290677944693e-07} {"commit": "b76c62c0ace71458625896e0be1aa7ae92b03f8b", "message": "Add CategoryChoiceField\n", "proba": 1.1537465525179869e-06} {"commit": "b1a7225349b7106299fb33e9644f852ed72fc376", "message": "Upload all synthetic data\n", "proba": 6.433814178308239e-06} {"commit": "ad6d8ac478f4168edce6d5fda8a8ae34f5c47f93", "message": "Fixed upload of original table.\n", "proba": 1.0886974877166722e-07} {"commit": "ca8432b6e85e424cbb40bf11be81d874358245e5", "message": "fix for alarms and screen event loops (e.g. curses_display)\n", "proba": 1.1578707415083045e-07} {"commit": "857ebe15db6d7c49c941010d9adbe5c16ceaee92", "message": "Cleaned this up to get the data correctly and return a better\nerror response.\n", "proba": 3.578273037874169e-07} {"commit": "38df07243962030456ed34703efc859f867bb345", "message": "up transcoding keepahead from 3s to 5s\n", "proba": 1.6147873793670442e-06} {"commit": "0bfcc34df681373e18c61dab26a7e8d9d22494e2", "message": "tests/calcs/hazard/disagg/core_test:\n\nWhitespace.\n\n\nFormer-commit-id: fc5210ced4b35108b52b3a59bbc4fbe028a58cd4", "proba": 0.00014825660036876798} {"commit": "d68884fda8145c9c1f6102cff32b683d63d738c4", "message": "tests/calcs/hazard/disagg/core_test:\n\nFixed a broken test, due the the change in a function name in hazardlib.\n\n\nFormer-commit-id: b949703a03f0780cb889a7f11214442267a61990 [formerly 6419173f019ffff9a345f3d71cc0bd59ee06fdc8]\nFormer-commit-id: 6df709240ae8212972fe8a1b5e1fe804433c5f1a", "proba": 0.00011889529559994116} {"commit": "f09f153014fcefa911af3586cb45068274ecde79", "message": "Fix HomeKit test (#15860)\n\n* Don't raise NotImplementedError during test", "proba": 5.285596671456005e-07} {"commit": "e6cf38d7acb5f0c069cb091bf0dba7e4c7cfa284", "message": "Adding correct mem target for alerts.\n\nTODO: we need to port D3 to actually display this value, instead\nof calculating the percentage ourselves.\n", "proba": 1.0795866955959355e-07} {"commit": "918f0bc7fcc21f25fe77ce429eae6f53b266a368", "message": "Fix logic so addldapuser and mergeldapuser work for all LDAP configs\n\nLDAP configurations where bind_dn and bind_password are empty are\nvalid. The present implementation will skip over getting user\nproperties for such configurations, thus addldapuser and\nmergeldapuser will not work.\n\nsimple_bind_s gracefully handles the case where bind_dn and\nbind_password are empty, however search_s will not handle user_dn\nbeing empty so that should be checked.\n\nChange-Id: I492775ff683ed986d116d8001a399699bd8e8b49\n", "proba": 2.6240919396514073e-05} {"commit": "f332237cd3c79d2a08a059531380efda8a5fbdf2", "message": "require global permissions for department admins\n", "proba": 2.77046552810134e-07} {"commit": "1e44d604fac8d2ba638a71b852db1ad33898b732", "message": "dont do that. causes problems.\n", "proba": 1.0705842896641116e-06} {"commit": "8dad2ced7ab104cac44a918d3c23766053df83aa", "message": "HMTL Docs: Add Configuration, Fix Example Section\n", "proba": 1.2687455352988763e-07} {"commit": "3f2b236bc3826d946d215cdd74a37b0bb18a5819", "message": "Mkae array.reduction docstring match for dtype (#6624)\n\nCased by changed in #1755\r\n\r\nFixes 6278", "proba": 1.2643910451970441e-07} {"commit": "e4e5f3399a968e20786c4ea3a92d61f07da33af9", "message": "#185: Incorrect ADB server version\n\n - Added new version\n", "proba": 1.3368470774821617e-07} {"commit": "a95f0b18cd326b8549bcb2a427840dcb8bb260d2", "message": "@classmethod added\n", "proba": 1.4330872488699242e-07} {"commit": "63fe29e5989ceded8bcdffbd3c07062abab19384", "message": "Update test/TestUtils.py\n\nCo-Authored-By: Sviatoslav Sydorenko ", "proba": 1.1077440831286367e-07} {"commit": "eb7838a3b6638a54c9c0f2e206c50dc855468d75", "message": "* gen-make.py:\n Remove more neon artifacts.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1349903 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 7.240346917569696e-07} {"commit": "8b487c58bf01743715ccac7d41ecc07cf210e0ae", "message": "added doc\n", "proba": 1.3335389326130098e-07} {"commit": "12ea98993963c3cbf77647983116bc9a4a18f9a1", "message": "Remove Stefan's debug output :)\n", "proba": 1.1247501561229e-06} {"commit": "60e3be93529b5907b9440f5c0c4e6af6b65755a5", "message": "Fix test under PyTest.\n\nThe `setUp` function relied on a module function which used\n`__context__` which is only available when the module is loaded\nthrough Salt's loader.\nThe test should have, in fact, failed when running under\n`runtests.py` but it didn't, which suggests the module's global\nscope is _dirty_.\n\nThis PR stops the test case from relying on the `__context__` dunder.\n", "proba": 3.1137977885009605e-07} {"commit": "1fc80c6212d520117bf736ef2a8c1858558e2e8c", "message": "add completeness from models\n\n", "proba": 2.9022214675933355e-07} {"commit": "f22a84aaa66a5538a48ae93e13ab3b0fdb71648f", "message": "Bugfix in Mann-Whitney U\n", "proba": 7.176188887569879e-07} {"commit": "7e13c1f7be188c69ca55e0de7a759722bc1d2ee3", "message": "Add supportedAlgorithm() method to see if digest algorithm is in\nthe supported list.\n", "proba": 1.2712054342500778e-07} {"commit": "2fdf207f0db1e3681eefe2c7e5263d793a0496ac", "message": "Adding a new test for incorrect usage of tangelo.types\n", "proba": 1.3192089909352944e-06} {"commit": "54c42a9573bacd0e99276925145cbab42291bed5", "message": "Add a test that checks if the GSoC proposal limit is respected.\n\nThis test ensures that the students are allowed to submit only the number of\nproposals as restricted by the program setting.\n", "proba": 1.0262402838634443e-07} {"commit": "458186e585c44b331aae5f8efab5dcd5de325873", "message": "update test_asarray_preserves_numpy_array_order to also verify numpy consistency\n", "proba": 4.1913554582606594e-07} {"commit": "41e91a2b6578229c77ea946e4a3f3b5e14b12cf7", "message": "More tests for creating recurring events\n", "proba": 1.1243989916920327e-07} {"commit": "f9b67b2ea6ea1b012c72f050278329e613c10b84", "message": "fix import of pickle\n", "proba": 6.951826435397379e-06} {"commit": "f4b037b60753b5655c1781ae3eca6af8bdaea25a", "message": "Trying to make tests pass on windows\n", "proba": 8.137900522342534e-07} {"commit": "a6eeda7ed6037285627ca6e468a7ef8ab467034f", "message": "Revert \"eos and UNK will be overwritten if they occur in the corpus, should always be 0 and 1\"\n\nActually fine if there are weird values, as Nematus does not really use them.\n\nThis reverts commit 09eb3594fb395d43dd3f6c2a4dec85af683cbb30.\n", "proba": 1.3386305397489195e-07} {"commit": "5d2054f74e1da9bae21d1c7c4fa77df735dd82d3", "message": "Fix PEP 8 warnings (#148)\n\nFix the following PEP 8 warnings:\r\n\r\n * E302 expected 2 blank lines, found 1\r\n * E201 whitespace after '('", "proba": 6.145126098999754e-05} {"commit": "d007c50045d40f095ac34e34396c1f9a55d0b6b7", "message": "Squish: Reworked tst_qml_indent\n\n- updated line selected for changed template\n- added xfail for indented empty lines\n- using automatic removal of blanks when saving\n- made global variable local\n\nChange-Id: I87205c69652f236767d6551b96bfd7960f39a02e\nReviewed-by: Christian Stenger \n", "proba": 1.3694685208065493e-07} {"commit": "9c1f15198d797f65fab5961dfab42399026b21fc", "message": "reset rotate backend back to None\n", "proba": 0.0012275325134396553} {"commit": "23c07ceebfe9cea373dd83e6997a9e0d0cb29884", "message": "CFY-1431 fixed test\n", "proba": 1.6163298255378322e-07} {"commit": "3c5ce7606ff47f429adeb5844d8498f04900cd58", "message": "DEC25\n\nmark the 'to be done' part\n", "proba": 3.237998100757977e-07} {"commit": "eefba35a7b93895df217017755cd8c416d4fa056", "message": "DEC25\n", "proba": 3.9051008116075536e-07} {"commit": "bf97c15e3382e621319899182b0fa4f6814c73b4", "message": "change mins to secs\n", "proba": 0.9993667006492615} {"commit": "4d38b2249019b5da5c9df6f0e580a3184eed6e80", "message": "fix timestamp of end date in webservice\n", "proba": 0.0012512898538261652} {"commit": "d70d087208dcdb9fd8299b326d7dc187c1a3d5cd", "message": "sort the non_analysis_field names\n", "proba": 0.9999985694885254} {"commit": "1bd59aaeed3555621e36ad10757a099ecf125a31", "message": "Silence a couple loud 3rd-party loggers\n", "proba": 5.514809799933573e-07} {"commit": "0aa03fd856fa6ad1481797d6b456271bbbd0e9dc", "message": "Refactor scope enforcement in the Enforcer class\n\nThis patch moves code responsible for scope types enforcement\nto the separate method which can be reused in different places,\nlike e.g. to enforce scope for instances of the BaseCheck class.\n\nRelated-Bug: #1923503\nChange-Id: I6fd671728582b2f60939764075a8e2a977e78b58\n", "proba": 2.998902743911458e-07} {"commit": "bede41020da98d4de50415e50659d6d2b8d76432", "message": "fix compiler crash in optimiser for unexpected node types\n", "proba": 3.1376211495626194e-07} {"commit": "159a8cfd769b34cba980ab7ca139642934cf89ea", "message": "seems I forgot to pull, so only 900 got done\n", "proba": 3.442567049205536e-07} {"commit": "a4293b81e406c814c3fa86a298ee91a7e18f9d9f", "message": "try without shutdown\n", "proba": 1.4009049209562363e-06} {"commit": "91dc61cbc061be48ccd7956c4e25614c240f5445", "message": "Docstrings and debugging on the Node class.\n", "proba": 1.117563499519747e-07} {"commit": "66ab02cbca8d6e9a11fa0069b2ba73cf12bb8135", "message": "update todo\n", "proba": 1.4243519785850367e-07} {"commit": "70d16741d831a802c6ba67c5c6e28bf3836e2e74", "message": "Flake8 a little.\n", "proba": 1.2932203219406802e-07} {"commit": "05b35aa633b4f83be8951437309618c00d9fa21f", "message": "CFY-2649 flake\n", "proba": 2.974524306864623e-07} {"commit": "17225df81b6fbfedc49dbf1fccb6d68df5a44ce0", "message": "VPPAPIGEN: Consistent CRC32 on complete file.\n\nPrior to this fix vppapigen would just do a crc32 on the Python representation\nof the file as a set of dictionaries. That of course was not a good idea.\n\nChange-Id: Ie454736ffec02fa4679ab27e684b1d6c6406a0f1\nSigned-off-by: Ole Troan \n", "proba": 4.3238466673756193e-07} {"commit": "9e5c8a768e0eb187b8f8c04385cd761aaefcd3fe", "message": "Add warning logger to notification\n", "proba": 5.708282628802408e-07} {"commit": "b80966c6d9a4aa88ea8f972892dc971339afe302", "message": "fix evaluation of assignment order when considering DefNode calls for inlining\n", "proba": 2.3692707884492847e-07} {"commit": "74cab9d916e92e2d2968969334f25e465f2fbfc9", "message": "feature/oop-api-refactoring: Extend kwargs by adding `class_name` and `converter` as properties\n", "proba": 3.4229964285259484e-07} {"commit": "f44d238e7275978e44eb7443268ad692542e9964", "message": "second phase for research_help.py\n", "proba": 2.685588356143853e-07} {"commit": "ec9a60b0efc0fe326a5539e1cd2ad6adcafbadf7", "message": "verify that all executables that we are running exist\n", "proba": 2.1123514670762233e-07} {"commit": "dfda6ae64d8c29acc4f1bf2c1ffb6279419bde60", "message": "Apply patches to fix global state pollution by axiomatic tests and mantissa stats\n\nAuthor: exarkun\nReviewer: glyph\nFixes #2063\n\nThe mantissa stats application powerup is changed not to explicitly start itself,\nbut instead rely on its parent to start it if it is appropriate to do so. This\nprevents it from installing its log observer during test suite runs when there is\nno code which will take responsibility for stopping the service and removing the\nlog observer.\n\nThe axiomatic tests are changed to stub the log observer installation callback\nwith a method which does nothing. This prevents the log and stdout from being\nredirected to an axiomatic log file owned by a store created by a test method.\n", "proba": 1.6315816253609228e-07} {"commit": "79a0e9b2ee0fdbc51fbd9163bdd2c035357b4b6c", "message": "CFY-2777: vcloud_plugin_common.wait_for_task\n", "proba": 2.0324723664089106e-06} {"commit": "c4361e9b47c81fb66d44403e2389d798db671909", "message": "stack_create, stack_delete api added\n", "proba": 8.29581097150367e-07} {"commit": "9ff792c1d3f466119276152321971d256d3879f7", "message": "update:\n1. Application() \u7c7b,\u521d\u59cb\u5316\u6846\u67b6app, \u9879\u76ee\u5165\u53e3\n", "proba": 2.1452396481436153e-07} {"commit": "065a12078e97d5930cce4551507860277823b8b9", "message": "Fixed reference to removed method.\n", "proba": 1.0995890420417709e-07} {"commit": "b8220e311efc14dec9dabb95e65466e5ae0b4fec", "message": "Add find_one function to mongo\n", "proba": 0.0008873093174770474} {"commit": "6f00ac763eed284d1d9be0612eb21cd0d2cac41c", "message": "adding custom __pow__ method override\n", "proba": 7.29737221263349e-05} {"commit": "d6cff42ea5940e56fa30353c8e96f491f5722c45", "message": "fix build (TBR)\n\nBUG=\n\nReview URL: https://codereview.chromium.org//1353213002 .\n", "proba": 1.0458784061029291e-07} {"commit": "ba0bdf40b6925fa163ee7ee28e5262987200a95f", "message": "Renaming _Unit to CssUnit\n", "proba": 4.5971043505232956e-07} {"commit": "07519428837cb87bf6a980543223607d74592db5", "message": "Edited tests\n", "proba": 3.895875693160633e-07} {"commit": "d23dce61864507cc12b9fb888713cd2bf2dd9b96", "message": "Refs #8047 -- Removed some CPython specific parts of the admin scripts tests.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@8158 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 2.057115125353448e-06} {"commit": "5406f31a1a4033d7d798dcb190d5f8f2b2161fa0", "message": "Fix TensorBoardCallback for older versions of PyTorch (#8239)\n\n", "proba": 1.1146555323193752e-07} {"commit": "cc61c2054f8ca5aa90bd7d3a78ffa55b5bf02387", "message": "CM Shell default commands.\n", "proba": 1.5510788387018692e-07} {"commit": "8793ea67b96d885961be29d757c40f58f1f110ae", "message": "removed south as a dependency\n", "proba": 7.509795523219509e-07} {"commit": "4123e9b5e0110feca001bebc95cfd255ce5c9935", "message": "cardiff: Adding colors on summary report\n\nTo ease the detection of curious & unstable groups, let's use different\ncolors to the output printing.\n", "proba": 9.965461345018412e-08} {"commit": "1965cae08f33304d4a3b1715ea86868f1644c302", "message": "Changed the auth_backend tests in a cosmteic fashion so that they pass under Python 2.3 as well.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%406552\n", "proba": 3.392083726794226e-06} {"commit": "0cbe747ca2ffe9ed36fc3b143b01b8584042be48", "message": "linux script version # update\n", "proba": 2.755480466021254e-07} {"commit": "13d79e9aa991225d9ca20a5df1ff3abc5e18f1e9", "message": "Corrects a bug on decode_utxo (changes data for bin_data when looking for the utxo indexes)\n", "proba": 1.343792916941311e-07} {"commit": "57d3901e0de16dcdaacba1470b0651fdf792f730", "message": "Ensured that the feeds framework supports both datetimes and dates. Refs #4076.\n\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@16989 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 8.657094440422952e-05} {"commit": "8d3de7f46bd9615cf52932f77e2dad641e292154", "message": "removed utils folder\n", "proba": 7.092319833645888e-07} {"commit": "a3da19aac6bdd3fa8d218408582205f7241a4b04", "message": "fix: Changed system test to use list_models() correctly (#1397)\n\n* chore: release 1.13.1\r\n\r\nRelease-As: 1.13.1\r\n\r\n* Changed test to use list_models() correctly\r\n\r\n* feat: Changed system test to use list_models() correctly\r\n\r\nCo-authored-by: Sam Goodman ", "proba": 1.6843739558680682e-07} {"commit": "876c32c6a9f3128b6d7d39314725fad74c15e4ce", "message": "Opportunistic import order cleanup\n\n (sorry-not-sorry)\n", "proba": 5.334240427146142e-07} {"commit": "ce068d082248e675670c5d1861f89af2eb6acd77", "message": "small renaming\n", "proba": 2.9259622351673897e-06} {"commit": "21fa4abe0b5f16966e8d0cb6f5fc3f16b8cfeb91", "message": "update unit test to point to temp server\n", "proba": 1.6654284706874023e-07} {"commit": "2771f7379f098863717dfd2e02daebb6abfdbe75", "message": "better set of context default attributes\n", "proba": 2.8581935112015344e-06} {"commit": "20f5184c5cfdd6f86155fb105b944b25e3037efd", "message": "minor fix\n", "proba": 3.935496124540805e-07} {"commit": "76a15d7ed959b0be97460e00e3889554e04423e4", "message": "new ssl handshake operation\n", "proba": 3.596765338897967e-07} {"commit": "3ab56e1dae41d89a9f07ff10ef26d9e9f7d1459c", "message": "add predefined scope\n", "proba": 7.537246915489959e-07} {"commit": "888605a92b8db216815dba4f9d58c570590b06ec", "message": "Moved callback to the outside\n", "proba": 1.5851367152208695e-07} {"commit": "c4d4c3c3c578f099a2fa3f1386e2423b64fc5b3d", "message": "export NUser in models\n", "proba": 1.3539450094413041e-07} {"commit": "1a433cfacc4889ec412486c370685b908bb56e23", "message": "implement mc kernel between env objects\n", "proba": 4.092380549991503e-06} {"commit": "c4ca8970beb73582596a4cdd4b043d638337deb1", "message": ":muscle: Add argument parsing.\n", "proba": 1.6050275064571906e-07} {"commit": "f3c21da98747aa09d947aa014bbff37451f95dcb", "message": "new write event\n", "proba": 0.00039298550109378994} {"commit": "7ba142e1be3fefa42acfdb4215c283c94eba616d", "message": "implement combination kernels and gradients\n", "proba": 2.3613283417489583e-07} {"commit": "470a0c484d8fd1e8e4c5767886225082f66779ff", "message": "Detach disks from offline VMs on attach.\n", "proba": 1.0990795118459573e-07} {"commit": "6e1812b934e955d97319ab475b234db550129ee4", "message": "check websocket http method in cyclone handler\n", "proba": 3.228858247439348e-07} {"commit": "a3d18dd20baa0950f04d4fb3e35107a173ea2668", "message": "support fo receive and send buffer in server\n", "proba": 1.5921665408313856e-07} {"commit": "6b9abd2793ce52a569f6dee27c450191112c8393", "message": "more cleanup on db create util ... still broken ... need password\n", "proba": 1.2432735729817068e-07} {"commit": "ab1385955c9a769f59e0a4380b89b770f354dfbd", "message": "new validation\n", "proba": 3.9696095655017416e-07} {"commit": "1edcfefd273357fbcde716e175e87f41880c8942", "message": "new http proxy change\n", "proba": 2.917943220381858e-07} {"commit": "c2836f8d3e87e1a748605a1bc7657a372fba5e76", "message": "goal_vis now reads from GoalReader, performs verification via keyboard (Enter and Esc)\n", "proba": 1.0336502498375921e-07} {"commit": "8b38dbd2b55733a6f6bc7fc897538b7987d8c115", "message": "Put governor code into class and implement sigterm processing handler\n", "proba": 4.920993319501576e-07} {"commit": "e07277e08f0ee07ba811e2602c58fe2a9a90dd94", "message": "gpio test file modified\n", "proba": 3.051202099868533e-07} {"commit": "6f5d7c091acfd58a40869901de4c661f923174ed", "message": "Override default encoding to utf8 in test that assumes unicode compatible\n\nPreviously the `test_unicode` test would fail on machines with ascii (or similar) as the default locale encoding\n", "proba": 9.699182328404277e-07} {"commit": "0f1426902c363eca31deeeebf2591c7d599d9e16", "message": "Revert \"Make the JsonResponse explicitly utf-8\"\n\nThis reverts commit 4f1f514e5999d30fe54dc41e85d5f2372bb4262c.\n\nFix broken tests\n", "proba": 3.2791281228128355e-06} {"commit": "31b2b0c56cde5bbaf2bd147f4ccd3139cb5c2120", "message": "Add rectangle drawing routine\n", "proba": 4.2847150893976504e-07} {"commit": "1165713ecdd57b4da11e409508f0dc6c6988ae5a", "message": "moved more functions out of .ipynb; still developing\n", "proba": 1.2448420250166237e-07} {"commit": "b86e06cd540f25b0d5bed8b9134823e754e105aa", "message": "Rename YieldFunction to CoroutineInProgress and YieldLock to\nCoroutineInProgressLock. Both classes are only for internal use.\nRemove the external use handling (__call__) from CoroutineInProgress.\n\n\ngit-svn-id: 9d763a2146cc7918956fa045a5de4b112f309167@3101 a8f5125c-1e01-0410-8897-facf34644b8e\n", "proba": 5.491635420185048e-06} {"commit": "51972d07246f2f8cf541c1d63f52554ab50196b7", "message": "Removes a redundant test case after removed 'batch' in 'netapi'.\n", "proba": 2.5882010845634795e-07} {"commit": "ce4edd42a0eadab44f07d0940d8776c1dc36e18f", "message": "Clean up test\n", "proba": 2.527539436414372e-06} {"commit": "d353fdc980b7d82de6cd59888372bac3f0402eef", "message": "Adding unit test\n", "proba": 4.5228426870380645e-07} {"commit": "ca51c4dc2a4c2bc94ffe398f9a69f2f54cb6fe84", "message": "More edge cases that does not work.\n", "proba": 1.2291745576931135e-07} {"commit": "9f8761525e83a558aef418e353f31efa4ada2e74", "message": "Convert byte strings to unicode\n", "proba": 0.9999994039535522} {"commit": "b5c27f99d1c293c1468a2b670c36cf49f89c5e79", "message": "Move deepcopy higher to not mutate original headers\n", "proba": 2.8280598485252995e-07} {"commit": "64c7ffd77d315074ad6d9ce69f454d6e6db714bd", "message": "\u0422\u0435\u043f\u0435\u0440\u044c handle_row_editing \u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442 \u0441\u043f\u0438\u0441\u043e\u043a \u0441\u043b\u043e\u0432\u0430\u0440\u0435\u0439, \u0434\u0430\u0436\u0435 \u0435\u0441\u043b\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043e\u0434\u0438\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442\n", "proba": 8.327300747623667e-06} {"commit": "488e0c159ba88255559d625b7bcb887bceb2e9bb", "message": "missing import\n", "proba": 0.0014933461789041758} {"commit": "15750fcb2b2aac625dc2c7a5ec981c93f2c1af2c", "message": "local-run: dont prompt me to pick a deploy group when theres only one\n", "proba": 2.516998449664243e-07} {"commit": "830c078cdbbea5910ace48121f402e3b01c82109", "message": "removed call to MetabolomicsOptions to resolve isort error\n", "proba": 1.4770645861972298e-07} {"commit": "2a20f111b154ad03957acf12a2d48d448f20f6b7", "message": "Argument number no longer needed\n\nThe proofing state data is checked before trying to validate the NIN\n", "proba": 9.434998560209351e-07} {"commit": "670b896f0ef8a4feda9cbb0181364f277dc50299", "message": "Fix bug to only store the 30 most recent points\n", "proba": 1.310292532252788e-07} {"commit": "3a219688c315f370aab031172ce45508351a8698", "message": "minor fix to generate ontology\n", "proba": 4.3971090235572774e-07} {"commit": "02a02c526fbb9da02a78b285bee824e188fb5a9f", "message": "DEV: do not log SHA from paths, because versions include it\n", "proba": 1.7234414428912714e-07} {"commit": "8dfe8a7713de755bdcbe4d02de375dfd5e17f7d1", "message": "Updated from Brython Server: 9/15/2015 2:14:51 PM", "proba": 1.1238886798992098e-07} {"commit": "b6bf370c0d66d24802068c446c6a4a98dd61b46d", "message": "Pass endpoint parameters to API.request as kwargs in API.reverse_geocode\n\n", "proba": 5.880795015400508e-07} {"commit": "0bd0292fbe7cdd7b1b6f7a43906ac59ffb97ed72", "message": "Stop allowing positional arguments besides id for API.retweets\n\n", "proba": 2.816512960635009e-07} {"commit": "51f680c27af5bc55cde2688cb0ef7b5e0b05c38f", "message": "Change API.mutes_ids payload type to ids", "proba": 6.130603651399724e-07} {"commit": "bb9178d60b7c6ba5c951d56d1828beadc079e7e8", "message": "added initialization method\ntalkBox accessors\nnow window opens through the openWindow method\n", "proba": 2.2999353177510784e-07} {"commit": "7cdf8cb5021757352d5be7f1a5490544af76b669", "message": "Add missing 'count' parameter to followers_ids\n", "proba": 2.1426794774015434e-05} {"commit": "8be9b1cbec1c58be07ecc93d1643ee8dda7fa214", "message": "Default parser to None for API initialization\n\n", "proba": 5.296051313052885e-07} {"commit": "4ed4cbb2ee7af32da94c2c96b106ccecca3c727d", "message": "Add proper Python header to file", "proba": 9.94760739558842e-07} {"commit": "e525c2c4b400d6d522a227c5efdb699d3f36689f", "message": "Improve connection robustness\n", "proba": 2.093574721584446e-06} {"commit": "783fdcfc30bd12c57fef0e98811555f5423a94a0", "message": "Add connection text and disable buttons if the API key is wrong\n", "proba": 1.5108856814549654e-06} {"commit": "c79e06b0b8ff49ca31b7b52fa3d52ebcf73c7ad2", "message": "privat o intern?\n", "proba": 2.10117846677349e-07} {"commit": "96d2f0f1733ce7ac106c374a162a3dba24268e3f", "message": "bugfix", "proba": 8.478961035507382e-07} {"commit": "ddd5a8fc94165d1d815483da75a31b6e0d9b2b53", "message": "More format updates.\n", "proba": 1.2130401216836617e-07} {"commit": "5b9b45ba18b227a73f39de060c0dce83fd6a0ebe", "message": "Fixing syntax issue with two exception hanlders left over as an artifact of the private to public transition\n", "proba": 1.3749307470334315e-07} {"commit": "d521583c66976e44c551d21613b9ede62a10529f", "message": "fix linting issue\n", "proba": 2.1390999336290406e-06} {"commit": "670f532a463f590ed5d9a80773ed5fbe369fe734", "message": "grad_scale was added to fitpot.py\n", "proba": 2.4535998477404064e-07} {"commit": "21bf705fec449fd461fa71881eea1a22f74bb85c", "message": "small fix to ofdpa code\n", "proba": 1.9151163144215388e-07} {"commit": "2f807f62f57fc3c3a1e8cba4d823e56266b2110b", "message": "Remove optional arguments in iteration schemes\n", "proba": 7.433155815306236e-07} {"commit": "fc4f7cbcb0b2d90d65e278f7d1a5b433e1396882", "message": "Release 1.0.3\n", "proba": 2.3633785417587205e-07} {"commit": "8ce668def6fe3a6096a47585efabd90570a69b65", "message": "* write output to log file\n", "proba": 2.911516787662549e-07} {"commit": "f5d4b0c7a8e6c3fdea8821e39ab5a24ba9bf2022", "message": "use a new style class\n", "proba": 1.4784276345380931e-06} {"commit": "dcd54d8f995ccb4e200226a68beddccbc1bbc6e3", "message": "Further tweak regex\n", "proba": 1.9420831165462005e-07} {"commit": "e95092c91a5cab9833fdf5a69d911f2d3dfe2a58", "message": "Address review comments\n\nReplace use of print and write with logging (with different levels).\nAdd the ability to choose the logging level on the command line.\nFix the exclusion of uARM from compilation.\nRemove print_on_fail from run_cmd() functions, now use logging.\n", "proba": 1.162981320135259e-07} {"commit": "607a0e14c9906affa2b2116772f9cdf1f658e256", "message": "It always seems impossible until it's done -- Nelson Mandela\n", "proba": 1.7265571159441606e-06} {"commit": "c52b328995d32a9e62a18d16ef0cfff848fad4d3", "message": "Added a check within snap planner for one-waypoint trajectories.\n\nIf a plan is requested that has the same start and goal configuration,\nSnapPlanner previously returned a two-waypoint trajectory with\nthe same point as the start and goal.\n\nThis leads to numerical instability and uniqueness problems, because\nthere is no reasonable way to interpolate between the two waypoints,\nsince they occur at the same time and have a delta-time of 0.0.\n\nThis fix explicitly checks this condition, and only returns a\ntwo-waypoint trajectory if start and goal are different.\n", "proba": 1.5433514022333839e-07} {"commit": "d3d522ce7f13fcf74a962680b885b869a64328d0", "message": "project_settings installs postactivate hook\n", "proba": 4.395603809825843e-07} {"commit": "a75946e648f1d18158cc43dd58f7de916a40efc1", "message": "fixed alignment for dialanine\n", "proba": 2.9161407155697816e-07} {"commit": "a9c63058bcc46058f2eec6ff3c587e087912f9b0", "message": "Deferred imports\n", "proba": 1.0177418516832404e-06} {"commit": "ad4192c5472c075a99b35466502ef1852e2bf1ef", "message": "remove public\n", "proba": 2.1767085911506e-07} {"commit": "95904c59e07e84fb50f987ebb71ab8758368b160", "message": "Fix CC sync\n", "proba": 1.5393135299746064e-06} {"commit": "a72a23b26fbad8baed4517291315e98feac6feeb", "message": "Fix / url\n", "proba": 2.930101459241996e-07} {"commit": "e36b3c8edff3cda50709bb16b2dd90a4db90d39b", "message": "some minor changes\n\nquit\n", "proba": 6.670254037999257e-07} {"commit": "203fb9e00f6cb72a59321246584f0e54614abc05", "message": "@transaction intercept commit argument; commit / release here.\n", "proba": 1.0785966964022009e-07} {"commit": "ae9c692ba14fcc54f9fd475d00808583c3038427", "message": "sansview: Minor change related to welcome page.\n", "proba": 1.0302804298589763e-07} {"commit": "0a606774d4e7524c241cf6dbaa6be06ab54e1050", "message": "Announce internal OMHZL module as well\n", "proba": 1.1389535359285219e-07} {"commit": "86298d9a5cb9fa5b6d98c8fec482b5ddf5e8e55e", "message": "Missing patch from previous commit (modify function registration)\n", "proba": 1.0551394069580056e-07} {"commit": "4fdd9c65cf9414a653c25632bf2fd38d580d1b14", "message": "Be consistent with languages\n", "proba": 0.0006699845544062555} {"commit": "96e0784412ffb5ebee9081429842c73eff9dc8dd", "message": "sasila\n", "proba": 5.025267455494031e-06} {"commit": "528287d096e9b9278a00681797340be2f1fe9661", "message": "[tools] handle commits merged without PR in deprecated script (#10723)\n\nSome commits are merged without a PR, so the deprecated script fails. Change so that issues can still be created using the commit message and sha instead of the PR title and number.\r\n\r\nSigned-off-by: Asra Ali ", "proba": 2.3711989172170433e-07} {"commit": "f988d798859cd831b7976c78c99beccb55239436", "message": "Formatting\n", "proba": 5.685269206878729e-05} {"commit": "07e887a3694e7910cd12e5d72d2dc31b07697fe4", "message": "recognition and synthesis\n", "proba": 3.1534062827631715e-07} {"commit": "deceeb6e545e46d5db0e0b88a5a0425980f69058", "message": "Add a test for the None case of get_peer_cert_chain; also re-order assert call args, remember?\n", "proba": 2.651385671015305e-07} {"commit": "e630935fa309aa1259a4baf2f682e7f0398921ff", "message": "Please coverage\n", "proba": 2.8526219466584735e-06} {"commit": "5c8efc634ee6f08935b1220236e12162ef955e37", "message": "use lexists to check existence of symlink\n", "proba": 2.2202415550509613e-07} {"commit": "5e8c5109ddc3032225d27472e4d2b96079040405", "message": "Remove some unused variables from mail contrib.\n", "proba": 1.122620361115878e-07} {"commit": "7255e52177c6b6dc90ec3583a185ca6a9a59ed4d", "message": "Make response optional so that Celery would be able to deserialize exception.\n\nSee also: https://github.com/celery/celery/issues/5150\n", "proba": 1.6583295519012609e-06} {"commit": "14c32fbbe8276153395beeac67776254e145357c", "message": "astro/fits/fitscube.py: Save command to header history\n", "proba": 2.4206246962421574e-07} {"commit": "6064ec357f9b3b69813006f95ac0b0bdd669d65d", "message": "Test the right error.\n", "proba": 3.2256680242426228e-06} {"commit": "f15b9a6ad3f129fcf225e48d83fb4d6aea1955af", "message": "TranslatableField should alwasy be populated by model mummy\n", "proba": 0.00013209991448093206} {"commit": "a83ea62df8d1259828cbc5da1cdb93f245a4c064", "message": "Fixed Typo in code.\n\n...cdmset... to ...cmdset...", "proba": 1.5573188250073144e-07} {"commit": "1f402f8442a5abd94dae7ca88b42a29f1a47ce33", "message": "more geometry mods, tuesday morning update.\n", "proba": 1.0472218292534308e-07} {"commit": "fa9ab2ba267bad4be182fd04c7585bb24ff4851a", "message": "Fix six import\n", "proba": 4.9664162361295894e-05} {"commit": "85bbe3285bb047f91f891824e164e3248c5660a5", "message": "supported args parameter in main()\n", "proba": 1.6508140276982886e-07} {"commit": "d7455290e250a7fcb773d609a1206466fb9e72a3", "message": "actually silence cssutils css3 warnings\n\nDespite the comment, #e8fe4d34cd59cf5d175d54e07585c987ba765228 doesn't actually seem to silence the logging.\r\nSetting the log level to FATAL hides the CSS3 warnings. Closes #422.", "proba": 1.1832631230390689e-07} {"commit": "222c8c726d36119b56256320fa03b4d0506f37e0", "message": "Made a skip list for short_run, added help text.\n", "proba": 1.1340004846260854e-07} {"commit": "75c9dd7fa224879885b2d7b885d39bc86f337047", "message": "Refactored get_distributions.\n", "proba": 1.2238103863637662e-07} {"commit": "aa59feee6b1306e7842c23376733607b09d3cdec", "message": "Fix for issue #112\n", "proba": 1.2372542812499887e-07} {"commit": "93045e6c0837916c2414c5d17490761696dfa73f", "message": "events: weightedEvents() casting change\n", "proba": 3.108438704657601e-06} {"commit": "ed649c0b7e57f6a98c0dbfbb6329d6770a2381f6", "message": "do single-threaded flann searches\n", "proba": 1.3922464177085203e-06} {"commit": "757005cc8f4ae0eb9427cb680ffe69612bf9217d", "message": "``open``, not ``file``, for Python 3 compatibility.\n", "proba": 1.5310256173961534e-07} {"commit": "7aa29d2e766e2f0250238dad1ddb3d5e63265abd", "message": "Use major.minor format in the version string of the sphinx configuration file\n", "proba": 8.233796506829094e-07} {"commit": "8bfc5e3d2d8ed1a0c3a1864c7606bf00467764a9", "message": "fix: Fixes typo\n", "proba": 9.68140666373074e-05} {"commit": "0e848505d8361981fa520a599f695c55755858dc", "message": "fix autodeletion for sigs without type\n", "proba": 2.0295360627642367e-06} {"commit": "94561da721e4e840a32809a313ce6ece0e9d758f", "message": "Use round instead of int\n\nCo-authored-by: Derek Homeier <955e65eba8e58aa01aa289170b3c5b72f3c4064d@gwdg.de>", "proba": 1.2986113517854392e-07} {"commit": "1064aa818bb58794f29fdbde3d01db08f076ae36", "message": "Updated from Brython Server: 2/23/2018 5:31:30 PM", "proba": 1.0823267615478471e-07} {"commit": "c2e1da8d61ac1006cb9bce6502a887d228bd9d60", "message": "- do not crash\n", "proba": 7.615540198457893e-07} {"commit": "d35f691cfbce61497e7b006aab19d46eb493026b", "message": "Corrected HACKALERT.\n\n", "proba": 8.032076266317745e-07} {"commit": "f56ccbdfabae143b210268288485d2ed88269e34", "message": "[project @ reinstate the file store and make it show you the directory where the test data was if it fails]\n", "proba": 1.1016820167242258e-07} {"commit": "0e241283e8c59acfb2b2ccc87a77132b852568f4", "message": "Added exceptions. Frame validation\n", "proba": 1.7412973818409228e-07} {"commit": "35adca4a8c9cbcb5354b9c47438fb56839469703", "message": "widget.send_report: Add missing name argument\n", "proba": 1.226581275659555e-06} {"commit": "6e476b6ee2cbd893d110fe1e6bc318bbe46342bd", "message": "minor typo fix in stats.funcs\n", "proba": 6.308666229415394e-07} {"commit": "156b99a7d50f23a2322eb44ef0dbe2a56d58bb72", "message": "adjusting punctuation in work title label; determining hand label from metadata not content\n", "proba": 0.000543398957233876} {"commit": "b48ada819f1e4101b4a7324d81f8992b80467b17", "message": "Revert bogus disabling of Tcl and Tk.\n", "proba": 1.2100187518626626e-07} {"commit": "815fd4d3a29b5000cdc18c3e69b74a0257bc3cc6", "message": "Temp commit, amend me\n", "proba": 1.2426677642451978e-07} {"commit": "d814e7e05bd5754d72c702bd4cc06e581375a5b8", "message": "Fix Sphinx warnings in astropy.config", "proba": 4.751752385345753e-06} {"commit": "ccf2e73ce274752dba1f9a7ad07b272831506cd9", "message": "- return hostnames instead of node_ids\n- return emails instead of person_ids\n\n", "proba": 6.931457755854353e-05} {"commit": "7dbd4630dccda2408505ba01e22dfbe9e5ae1994", "message": "improved style of Eso.get_headers\n", "proba": 2.7961542059529165e-07} {"commit": "e995d10599aeae091aa2c1e31f14f98a9161d6f3", "message": "Fixed imports and parameters for send_request\n", "proba": 1.725069438407445e-07} {"commit": "8468afd0bb146a3caa3966c9874232dc83e1861e", "message": "remove old assert\n", "proba": 0.9986823201179504} {"commit": "367335eeaf7a1137da74f2497945a7a02499e90a", "message": "BaseEventLoop._assert_is_current_event_loop() now only raises an exception if\nthe current loop is not None.\n\nGuido van Rossum wrote:\n\n\"The behavior that you can set the loop to None (and keep track of it\nexplicitly) is part of the spec, and this should still be supported even in\ndebug mode. The behavior that we raise an error if you are caught having\nmultiple active loops per thread is just a debugging heuristic, and it\nshouldn't break code that follows the spec.\"\n", "proba": 1.862123468754362e-07} {"commit": "429ac8c63f7a445d27f7845993e1aa725f98351e", "message": "make label collision z-order aware\n", "proba": 2.6941715987049975e-06} {"commit": "412ee55fe149c86f3436da3de5f38e374a3eb3de", "message": "fast git\n", "proba": 4.093681695849227e-07} {"commit": "c3aa4650364f391ec461525f0c81b0685d18684a", "message": "better wayland session detection\n\nXDG_SESSION_TYPE may not always be set to \"wayland\" or \"x11\" depending\non what compositor/setup the user is using. For instance, weston (the\nreference compositor) does not set this particular environment variable.\nInstead, check for the existence of WAYLAND_DISPLAY. This is set by all\nwayland compositors and tells clients which wayland compositor to\nconnect to. If we have this variable set, we can be sure wayland is\nbeing used.\n", "proba": 1.3894117500967695e-07} {"commit": "65b13b7e944477df46766f702a06ef69bd7116d9", "message": "removed wget from preprocess2 and added Balanced Streams.\n", "proba": 1.0621359081142145e-07} {"commit": "b0fea6a4a54427c62248cf64d1e2cd4992a87353", "message": "Keyboard: Fixed altgr handling.\n\ngit-svn-id: f4e1a40f847802203273bde8e26df4d11611876a@5019 44470bb9-56e9-0310-a0f8-c586564d3dc6\n", "proba": 1.0657176972017623e-05} {"commit": "9e2c145cf60ac0c6b75fdca79e7638be0f232cf3", "message": "Simplify Serverconnection3._process_line\n", "proba": 2.9119240934960544e-05} {"commit": "e150097d29d060038423440129cfcf16626b758c", "message": "Also activate on visiting STR page.\n", "proba": 1.0656159332711468e-07} {"commit": "a260eacf3a83080c6686b1a2166d617965124dec", "message": "Removed mesh.activeUVLayer hack, simplified some code.\n", "proba": 1.0534844108178731e-07} {"commit": "5c3575b8aefcb9b546438bf64ee59f072d3a855b", "message": "Import works again.\n", "proba": 1.1441443348303437e-07} {"commit": "d9ce14aa4f5f035f92723eb30bac83212693fb82", "message": "minor fix due to updated pyffi & nif.xml\n", "proba": 1.3091759853978147e-07} {"commit": "2cd9517add605b13d2eed25c315a95b29901c80a", "message": "Increased tolerance for position stream frequency diagnostics.\n", "proba": 1.18556286565763e-07} {"commit": "f27eec8f3fbbb04130e11c0829b1e00d1f0d0260", "message": "don't have to add in the lineage\n", "proba": 0.00029572134371846914} {"commit": "da6315fedc9387e86598f2bf31d071a0e70bb725", "message": "i to j\n\n", "proba": 9.513039003650192e-06} {"commit": "2754966e9ecceae18c00809e1201622a6b686b08", "message": "fix relative path issues for creating the journal\n", "proba": 8.537284088561137e-07} {"commit": "aa281d5c6d1aa618734488d4da994d2638cadd33", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "d50b49011c051717436ba579f69ac0bb88f62732", "message": "Delete meaningless variable declaration\n", "proba": 1.5338637240347452e-05} {"commit": "7c17f1ae55b8b4363986a998ef24b4e69e94b72b", "message": "ENH: basic interactive ROI selection\n\n - sub-class the bluesky widget to update CSS\n - add 2 helper functions to manage talking to vlm + creating widget\n", "proba": 1.2537095983589097e-07} {"commit": "6e92269035eff1305246ea923d778ee81df2a296", "message": "add time taken when answer wrong\n", "proba": 0.9998883008956909} {"commit": "ce53e9f3cb6ca516af56de52e3152d25d3599bce", "message": "union_find: add docstrings\n", "proba": 5.4265350627247244e-05} {"commit": "bd2d54b5f966df3e31cabe529d413ac2165a0f4e", "message": "Added nexus/ urls to the example project\n", "proba": 1.7159072740469128e-07} {"commit": "b797b3f00f38be5a67644d3ed4864880bf646a4d", "message": "update unit tests\n", "proba": 3.6642228451455594e-07} {"commit": "27f29e912579f18c019e424c04f8f4701d73f36a", "message": "Delete adtm_explore3.py", "proba": 2.0942457013006788e-06} {"commit": "2f039b63ea65ee034a9a89cfd6700e41f4ccfc08", "message": "fields generation\n", "proba": 7.371597803285113e-07} {"commit": "6a873b5687ba92ea6ac8fa04c728fbbc733e958c", "message": "On left arrow, go to parent before collapsing it\n", "proba": 3.8237814692365646e-07} {"commit": "1f6d387907c441a6761bc7da6199f088d4a94ae0", "message": "Password and adresses can contain non ascii chars...\n\nfixes #470\n", "proba": 2.70069563157449e-07} {"commit": "dc3353bcd247d19932bde2802a119ac1e9a9ca82", "message": "Fix making dirs in prophyle_propagation_makefile.py\n\ncloses #230\n\n\nFormer-commit-id: 81a3a4d7a1bc039b65bd74fb4a0ed342e8fe1cf1", "proba": 3.5584880606620573e-06} {"commit": "86ce4b7724d510936d1081bee6c1cd1d3d01622f", "message": "Saving progress on the emulation side of the generation.\n", "proba": 1.0744366818471462e-07} {"commit": "0558e4b3a45999aa395bed1666bb64ee7d1098cd", "message": "PYTHON-996 - More aggressively lower recursion limit\n", "proba": 2.118846111898165e-07} {"commit": "7a62f225110a22129824f5eaf1dcc878d533b233", "message": "Improve coverage\n", "proba": 1.0328417374694254e-06} {"commit": "9f394817712106a118e1871c557b6b6c8edffdb4", "message": "option for filename out\n", "proba": 4.535917832981795e-05} {"commit": "b135926fa32bd239d808c68bc4a1fa8f0f38976d", "message": "Add complementary Unit Test for signed Enum\n", "proba": 1.336956643172016e-07} {"commit": "70b917fbfac145ad29d794a0c66b91b0d06014e4", "message": "generate suite.id so that it also works if suites are removed e.g. due to --include/--exclude\n", "proba": 2.533408405724913e-06} {"commit": "1fcbbb133c5c47553a59201728a1d8cdef00ec1b", "message": "adds check in grapher for missing node names when processing systemState\nFixes #5\n", "proba": 1.3842246460171737e-07} {"commit": "2d64ad37d46045f92a897c4b7e4046a5a259cd5a", "message": "Add failing tests for three missing properties.\n", "proba": 2.0939590683610732e-07} {"commit": "80183e2484b91cbe0e0d52b9e3821e4fb3adbb88", "message": "version(ASCII double; currently 4.1)\n", "proba": 2.1449920950544765e-07} {"commit": "c1eacdfa58fe3f3a1c8eb16acb846943fc053f57", "message": "Started testing calc_load_and_loc\n", "proba": 2.5673176651253016e-07} {"commit": "0eae3e9f9935fb5472e100ff2489f07accd99700", "message": "Revert \"Added Sector field to project_activity report\"\n\nThis reverts commit 4f11e258d403d3745e0be724dbad49cb7fc7f0f1.\n", "proba": 1.1179152892282218e-07} {"commit": "d15b996dc4a741390507a96d6facf113f8da0869", "message": "Verify that the generated playlist contains the path to the item\n", "proba": 1.2834088920499198e-06} {"commit": "4d55c5bf7e234e15a118b9376af3cad269fc9813", "message": "Do patching in setUp\n", "proba": 2.8330368877504952e-06} {"commit": "6882e3ec35a89a30748566372fedbd1d20135ec9", "message": "Fix: raft : lower number of nodes, to get a working version. TODO: find a way to reach 1K nodes and still converge.\n", "proba": 1.1231772134578932e-07} {"commit": "dcc100dd5498dfd247857ff35a815767fa8d2186", "message": "Mark test_repo_hg as expected failure when there's no hglib\n", "proba": 2.20640640691272e-06} {"commit": "5a4acdd8fd2addf73a1779f48f314f06bb1d6c67", "message": "#178 fix for undefined exception\n\nSigned-off-by: John Smith \n", "proba": 1.402328422273058e-07} {"commit": "2e6178c9cfac3b7b0f9dca261b14b97b0583345b", "message": "Corrected SRLS tests.\n", "proba": 1.8140674740152463e-07} {"commit": "63a9c479a7c36628ff04e000d4ed7c67b0638b3a", "message": "Test kex payload generation.\n", "proba": 1.407941709885563e-07} {"commit": "125598de99104391c88338b065d4fd78181b2439", "message": "tests: Write a few tests\n", "proba": 0.0005248714587651193} {"commit": "cf88602a0725139b5a0509e65ee4d02693436b59", "message": "make his_central_test methods explicit about which methods mock\n", "proba": 2.0992703866795637e-05} {"commit": "f4b934a56bca10b25020a5d5148f56928f8fb3c3", "message": "Test publish_channel public channel.\n", "proba": 1.3641685825405148e-07} {"commit": "cb4f83772b04a44df5cdb7c44516c6ade7109c2f", "message": "Rewrite unittest to use assertEqual and assertIn\n\nWhen tests fail using assertTrue does not provide information on the values\nWhen using assertEqual and assertIn it will provide the expected and actual\nvalues\n", "proba": 6.2782041823084e-06} {"commit": "7d052ca2b4ac34c2ba5e96ed8b4137c08b74fe4b", "message": "add a smoketest-style unit test based on the gcc package\n", "proba": 2.808319266023318e-07} {"commit": "e6fac4fdc46ff84640bee6f499fed2619ee97371", "message": "sfp_crossref: Ensure URL FQDN resolves; and code cleanup\n", "proba": 1.4142626980628847e-07} {"commit": "4ee49360cccaaaa3d2b3dd45daa0d64502ec723a", "message": "test: Add DEFAULT_IMAGE constant to testinfra\n\nThis is in preparation for #3205\n\nCloses #3208\nReviewed-by: Marius Vollmer \n", "proba": 1.1936518262700702e-07} {"commit": "e28f1a8a50c43131bedc517618762ab7c87547af", "message": "fix message aprobados sin dictamen\n", "proba": 1.1362580153218005e-05} {"commit": "bcc9b1f9780e4d852b5b5a1a412c5f8c52b8893f", "message": "Update grepapp meta\n", "proba": 7.567771262984024e-07} {"commit": "0aa49c1ec7244c11799073b132cf543bf4d9550e", "message": "Refactored MultiPersistentJSONable\n", "proba": 9.29084876588604e-07} {"commit": "2dd2eb25a970225d2cc6736f4fb70e519481bc6e", "message": "sfp_template: Implement new VULNERABILITY_* reporting approach.\n", "proba": 1.715434478910538e-07} {"commit": "46d2854955edf669ef8f44a168e6c24ff4099ccc", "message": "Use last message API for YCC module\n", "proba": 2.04935588499211e-07} {"commit": "8425d6c189522d428a6502c25e556083d48bb5ac", "message": "Run black.\n", "proba": 7.000199389040063e-07} {"commit": "3593d871606ae73028cec325dc947af59a47b887", "message": "bottle .body writes to a tmp file. We want control over it\n", "proba": 1.2733627841043926e-07} {"commit": "0cb60574bbc53c48eaa20de9775022da5933c2d9", "message": "Added mark_as_unread in model\n", "proba": 2.067316984266654e-07} {"commit": "4651ab8168a20fedcdee06d2163d88b7ba143e1a", "message": "Poll Output Fix\n\nFix closing sessions before sending output on their last poll.\n", "proba": 1.1199427518704397e-07} {"commit": "b26f3166554cf5de29fcedee7463bc523786cf72", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "8f208c5ea6a259956e89dd530b591c39121e2df3", "message": "Fixed another miner issue when setting the price for stop-loss buy.\n", "proba": 1.1010916978193563e-07} {"commit": "3daeba2c7e26f421a42f2154cf988c6ba9d37f3b", "message": "adding mk_root\n", "proba": 2.223056071670726e-06} {"commit": "9c84563a65cc5f6fddad73551ec6db5c1c144201", "message": "temp admin access\n", "proba": 4.124549661810306e-07} {"commit": "400bbd8c7d56543a5cebad25d078ec0331b07a3c", "message": "The proposed branch prevents FlatManager from executing network initialisation tasks contained in linux_net.init_host(), which are unnecessary when flat networking is used.\n\nThis is achieved as discussed in question #144979 (https://answers.launchpad.net/nova/+question/144979):\n1) init_host in FlatManager has been overriden, thus preventing it from calling init_host in NetworkManager.\n2) Also, methods related to floating IPs have been overriden in FlatManager in order to raised NotImplementedError.\n\n", "proba": 6.946643793526164e-07} {"commit": "6b1003bce2e2a9508596b2e7b61e4a375b61e2a7", "message": "Moved custom admin related links to authentication urls file\n", "proba": 1.3606590698600485e-07} {"commit": "530d7cf3117a719bf4ad8e759066a1445baa135f", "message": "Add debug mode to help usability\n", "proba": 1.0636061915647588e-06} {"commit": "4feb150d3189b37fa81ffae81377d526d3c73632", "message": "Ability to use a thread pool (--thread-pool) or process pool (--process-pool) of confiugurable size (--pool-size).\nSmall batches of AUIDs to avoid network timeouts.\n", "proba": 1.091385755103147e-07} {"commit": "9328c078af411f3b9150b875aaf239da140389b6", "message": "whack a mole\n", "proba": 1.4981524145696312e-05} {"commit": "ea7f9e631aec504f5943609480b32d8adcce26d3", "message": "Updated docs, making safe an actual argument to Session.connect\n", "proba": 2.447386009407637e-07} {"commit": "a202a23979bf6829ac576072a83c0b60fcaf6312", "message": "fix after review: style, improving tests, replacing underscore", "proba": 5.821784725412726e-06} {"commit": "1c3e53b10796499c4c7b5bcf966dc7535336360d", "message": "\u4fdd\u5b58\u6587\u4ef6\u4fe1\u606f\n\n\u4fdd\u5b58\u6587\u4ef6\u4fe1\u606f", "proba": 3.0469681178146857e-07} {"commit": "da5d48ec783729628a34f264276d155390fe6188", "message": "[FIX] typo in connector/__openerp__.py\n", "proba": 4.775896013597958e-05} {"commit": "a61e6fc9148ff9d210fdcd04ab7e892f5ac111bf", "message": "Update autocutpy.py", "proba": 5.366231334846816e-07} {"commit": "7ed98d0cc5b87e1122209eef78093cf46ffd7d27", "message": "Added group leaving reasons\n", "proba": 1.8124973166777636e-07} {"commit": "917655d15b389cbe30291b0ccd560aae304e1cbb", "message": "[FIX] mapper should read in _all_columns to see the inherits columns\n", "proba": 3.0425024988289806e-07} {"commit": "8b19a94ec592a59651f558c1c65cac374f85baa2", "message": "logging\n", "proba": 1.1690622159221675e-06} {"commit": "fabb4b2ddf5815f803487e7c175e3a30d96a74e9", "message": "ENH: fmin_l_bfgs uses post-collect and can return opt info\n", "proba": 1.257054549341774e-07} {"commit": "4e60ed294eab8285bf1d634ed3e8c09e469a9bec", "message": "Added timestamps to downloads\n", "proba": 2.2744001171304262e-07} {"commit": "3c98a4bff56be07e495f83d2df52e29131005b5b", "message": "Remove accidentally left behind debugging message.\n", "proba": 1.154625550725541e-07} {"commit": "d12fbb118d58c2d64710d6885fedb9620a726801", "message": "Quantificfixed log\n", "proba": 6.081966148485662e-07} {"commit": "a0b2f0cb0fabbe8d430c436cf5284f356590dd91", "message": "tidy, rename, add servers\n", "proba": 2.979128908009443e-07} {"commit": "7a1775317a652f4c2cf11e49274cd0543106a5b0", "message": "cdp on mgmt eth\n", "proba": 1.8769337657431606e-06} {"commit": "ac0a82df6ec154ea32afd43f290dd4080e2fcef0", "message": "removed max_length\n", "proba": 0.0002984022139571607} {"commit": "c60a311fcbc8431c147ad611e8f3097b1c9f1914", "message": "Remove redundant returned data from method, as it was unused.\n\n- Also cleanup docstring for the method.\n", "proba": 1.205485204991419e-07} {"commit": "7ea0dcded320f6ef3d8ecd7fa9f4755dfae55dd1", "message": "Append /ufs/guido/src/video to sys.path.\n", "proba": 1.1142984135403822e-07} {"commit": "f909ecf8cf15cfb9e9fa751e8770034f53283861", "message": "Change format function\n", "proba": 4.375141998025356e-06} {"commit": "5d4c5901b6dbb844c813f35b574135ef156faa86", "message": "update: save_interval\n", "proba": 5.294134552968899e-06} {"commit": "040a4df4fa42f5fcc808da2600ea7a37d0973bcb", "message": "PFW: Wrong rule order in generated xml file\n\nBZ: 85553\n\nThe xml generator was inverting inherited rule, this patch corrects it.\nRules are now ordered in the inheritance order.\nRule inherited from high level element are now at the beginning of the\nrule list.\nIt is only a cosmetic change a functional change.\n\nChange-Id: I5c718a93d24c64ec690377915a98404823cf8fba\nSigned-off-by: Kevin Rocard \nReviewed-on: http://android.intel.com:8080/90354\nReviewed-by: cactus \nReviewed-by: Centelles, Sylvain <288429720f63c6d68421a1c2a03aafe980c6e4bc@intel.com>\nReviewed-by: Denneulin, Guillaume <854ca584c0091d5374a3e56520494273fa21b7a4@intel.com>\nTested-by: Dixon, CharlesX \nReviewed-by: buildbot <4f01036b9437d59848e062e621b13556bac09299@intel.com>\nTested-by: buildbot <4f01036b9437d59848e062e621b13556bac09299@intel.com>\n", "proba": 8.304254151880741e-06} {"commit": "de084286ba04ac94a394f2a391c739f0a80ec3a8", "message": "Fix zero diagonal\n", "proba": 0.9999845027923584} {"commit": "0fab5e331e7a49763d62cfb2fe3d95b05edaca2a", "message": "PEP8 compliance (function names and spacing)\n", "proba": 1.06177736824975e-07} {"commit": "3359034690525a15b27409f5a0ec799a2e811e2a", "message": "Improve error messages regarding bad args.", "proba": 3.027261072929832e-07} {"commit": "5ee33d38917a4baaba11725d5b0935c86f436474", "message": "Regex command to get year\n", "proba": 2.7817731051982264e-07} {"commit": "183f149afb2f8e44afdd4861088c7b3c86a90457", "message": "udpate contest problem\n", "proba": 5.824527988806949e-07} {"commit": "9072a3bf2f408c0b876905c086b3d2c8c2887b0c", "message": "remember tag names for commands, so that they can be sorter/filtered later\n\n\ngit-svn-id: 7746e1be614c04306162a6afe133859c0e9253b7@256 34294538-1d18-489e-82e9-bb8ff975a0eb\n", "proba": 4.847079253522679e-05} {"commit": "ff1c18669b01cb80cdf3b47331b706f9bc5ee801", "message": "Fix status problem\n", "proba": 6.733767804689705e-06} {"commit": "8ca5234cb6e8442b87bf8b198f0f3ab7131a0821", "message": "grammar updates\n", "proba": 1.5933194390527206e-06} {"commit": "317ce3e5b1b57a371476c03b1accabdec2c91cc0", "message": "BUG: Fix bugs in logsumexp\n", "proba": 2.7391732260184654e-07} {"commit": "0bf054a6e556591e5d9606ad11614e1e31b80b6e", "message": "Fix Helm download location\n\nThe old binary is no longer accessible since Helm moved their releases to a new GCS bucket. I got the URL from https://github.com/helm/helm/releases/tag/v2.17.0\n\nCloses https://github.com/googlecloudrobotics/core/pull/71\nhttps://github.com/googlecloudrobotics/core/pull/71\n\nORIGINAL_AUTHOR=Florian Weikert \nGitOrigin-RevId: 1003f12e65c31c3430b19f68dec49b2c3b217d07\nChange-Id: If674bf5b96349d8446838d14838f451594f8b36e\n", "proba": 0.998600423336029} {"commit": "a9a204a63e59317947bb21c3ebeec5a1211ad9c5", "message": "fix for pizzly not respecting transcript versions\n\npizzly ignores transcript versions in the GTF file, so we need to remove\nthem from any provided FASTA files, or else it won't be able to match\nthem up.\n\nThanks to Avinash Reddy for pointing out the issue.\n", "proba": 1.0037703646048612e-07} {"commit": "2b1ec5e536c7b1cc8abb14173601bf57278ba107", "message": "MUX based units yaml modified\n", "proba": 2.594634054275957e-07} {"commit": "50f7d12af67bf895e50c0cd864e5d03394a709f0", "message": "Enable doctests.\n", "proba": 1.9809691309546906e-07} {"commit": "4bb3a481e22ceea52180ef0f9c7e7214d3fa58bd", "message": "ftintitle: move helper functions to module scope\n\nThese do not need to be closures.\n", "proba": 1.2218512779327284e-07} {"commit": "4d616ceb93241763d2003d4ae066515bd6340e33", "message": "Fix styling\n", "proba": 7.240195145641337e-07} {"commit": "f57249b5d4c486f4f9b053230f3837a968c03fc7", "message": "Reformatted\n", "proba": 9.475690603721887e-05} {"commit": "fb44c0ec192bef438a7a2ab7832a43b5f688e448", "message": "remove slash from all urls at tests\n", "proba": 4.944787974636711e-07} {"commit": "0f23654b6d01eeeb78f261fae03e4bb9e669ba03", "message": "Output commit and timestamp in benchmark script\n", "proba": 7.701078175159637e-07} {"commit": "532aec98098180b98f9dd0fd76e8e22a23ac5fca", "message": "Add comment in benchmark file to clarify what it is\n\n", "proba": 1.2563354800931847e-07} {"commit": "1e38fadfd5871b4647002602d97df2b4d23c0a87", "message": "mnt: fixed missing import in a benchmark\n", "proba": 6.430357757380989e-07} {"commit": "c48a58f5da8ad88bb6c2768a1f0faf0c34f0f892", "message": "Decode Jinja2 template off the filesystem\n", "proba": 8.082814701992902e-07} {"commit": "db6b68bc2f5a6070e69419d243134f381c1f7bc8", "message": "Update omnidb-server.py", "proba": 5.576231387749431e-07} {"commit": "f5c2d2bc08fe42aacd683990a3e77f6c994aca5b", "message": "Starting refactoring answer resource and make functional kq resource for frontend developers\n", "proba": 3.0104936854513653e-07} {"commit": "aef2d1b8bea651202df8c98f467e3209d29b5666", "message": "Make those double CI messages moar betterer\n", "proba": 0.000506160722579807} {"commit": "6720f51fc599a498c5d88f6427c01f582ab9574c", "message": "Implemented unicode representation of AssetAvailability\n", "proba": 8.15786188468337e-06} {"commit": "d4db270ab603a45b00e0ca959a75fc14bc1f6d3a", "message": "m3u: Add comments to ease future cleanup\n", "proba": 1.1155573531596019e-07} {"commit": "fe3c27cf18dd2a21e0d43a0df7535695e80700ef", "message": "Add windows workaround for IPv6 sockets to also listen on IPv4\n", "proba": 2.3383628899864561e-07} {"commit": "84086e007f0bd00548b404bbeb407345277b07e6", "message": "Fix flake8 warning\n", "proba": 2.4223933792200114e-07} {"commit": "325a5b6ac3b699c063946500b1dd97feee4e6dc1", "message": "buzilla2trac: fix datetime to epoch conversion which was done in a non-portable way.\n\nThanks to xenolinguist for the patch. Should fix #6794.\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@6501 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 1.272055783374526e-06} {"commit": "67765f92b45afa0df772ae708c18dde1a88ec837", "message": "Refactors initializer, and adds generate_dns from consul services\n", "proba": 1.3513624708139105e-07} {"commit": "5af9924ccb02a028caa512e2bcce852adde86bce", "message": "fix: don't HTML-escape all the text\n\nWe are outputting Jira markup, not HTML, so escaping doesn't make much sense here, or does it?\n", "proba": 2.5172053028654773e-06} {"commit": "0f203a232bf6b5123e11ab3df9ffea351960342a", "message": "some crappy docs\n", "proba": 2.269654828523926e-07} {"commit": "e3fd7b4067bce201744ef5b6b473f707de009c9a", "message": "FEAT: DATE: Add date_str()\n", "proba": 3.2004267268348485e-05} {"commit": "6b36639cc7ff17f4d74aa0239311867b3937da87", "message": "Add py solution for 329. Longest Increasing Path in a Matrix\n\n329. Longest Increasing Path in a Matrix: https://leetcode.com/problems/longest-increasing-path-in-a-matrix/\n\nApproach 2:\n Top down search\n", "proba": 8.569489000365138e-05} {"commit": "cb7dd78b0a24214450dd70212168f81c0ad50f48", "message": "Update webdriver.py", "proba": 1.046793045134109e-06} {"commit": "729d4706bb7a8e89046c44fa3f7701615f725d8a", "message": "chore: use \"pairwise\" provided by pyannote.core\n", "proba": 1.8348471257922938e-06} {"commit": "4189ba1a8b03eab699e51ba3a9f0a9b1000e6bf5", "message": "tda: MixerSkewnessAnalysis: Bugfix renaming symbol in dict\n", "proba": 1.781987606364055e-07} {"commit": "d9dcf92d6827b611c3209592d086d61d07a197ae", "message": "MC: added method open_plotmon_windows and use it in init\n", "proba": 1.7941131602583482e-07} {"commit": "9e752c40b613031118ff413a2bc4950f3959e0b7", "message": "Add: \u4e3a Page \u65b0\u589e render_embed \u65b9\u6cd5 (#1103)\n\n", "proba": 1.0637720038175758e-07} {"commit": "ddab72123e89d57acf3630b73cb9936114105fcf", "message": "Require username and password\n", "proba": 0.9967053532600403} {"commit": "116d8ba0e5c108b72ad17c39922b756eee789f40", "message": "fix for py33\n", "proba": 3.7476490888366243e-07} {"commit": "1b7d781b0299f12f21ea91fbdbc667559a709b0a", "message": "Updated Flash Video upload paths\n", "proba": 1.971771155240276e-07} {"commit": "9ed86e2eb69653353c6240d74110feb67ac4abdd", "message": "tests for conversion to pickle\n", "proba": 1.1162155715283006e-06} {"commit": "c1fe5f864db24888b08b2c525051873d4ccc7bb7", "message": "modified: upload btn padx 10\n", "proba": 1.7737356472480315e-07} {"commit": "cd844a20043d60544a64d1cefeed90a1722945f5", "message": "automatically initialize usmUserSecurityName columnar object instance\non creation, as stated in DESCRIPTION (SF tracker ID #1620392)\n", "proba": 1.0455593013602993e-07} {"commit": "e6c555767718ae64deadbf7fb145d01ecb7be33c", "message": "139 fixed high cpu usage\n", "proba": 1.35711474058553e-07} {"commit": "e6d5563371dd4569fc1cf7c2051b15a6cb1c081f", "message": "ImageWriterTest : Remove expected failure on testJpegWrite and additional cleanup\n", "proba": 1.2792490622359765e-07} {"commit": "547e08f57b278680bb0bd1c3708df07a98a64834", "message": "PyDev: Fix issue where the filename was being returned as unicode on Python 2.\n\nGitOrigin-RevId: 2157111068b389e3a95ff82df77869d0f7a4b20a\n", "proba": 0.010860085487365723} {"commit": "bc29b176260c4465d22fc461de4dc968bd1f89ca", "message": "Fixed FlannNearestNeighborsIndex.nn regression\n", "proba": 1.1955456784562557e-06} {"commit": "f0509db5e1888152fc5c4102736375fc870032e6", "message": "Provide display name of new volume\n\nRefs https://github.com/CELAR/SlipStreamConnector-Okeanos/issues/5\n", "proba": 5.589200782196713e-07} {"commit": "e205ba1860f62e3ac7d7dd41319428c0a8d10b4e", "message": "fix jpeg build by merging libjpeg.a and libsimd.a\n", "proba": 3.019182486241334e-07} {"commit": "933b4984129efd7ea24766c48bcd95d3197504b8", "message": "jpeg: use https: URL instead of git:\n\nThis way download can work when non HTTP ports are blocked.\n", "proba": 1.1064770433222293e-07} {"commit": "6b8ae6fba09e67178b511d04d5e83bfd73a2c8db", "message": "urllib2.quote instead of urllib.urlencode (RBL-5583)\n", "proba": 1.2169043372978194e-07} {"commit": "170d49ce5da0c667afcf58b7804160b24cab3eb6", "message": "set threshold to filter annoy output\n", "proba": 1.4753360346730915e-06} {"commit": "4278ffa39f7c778e8908eed344edc7adafd647bc", "message": "Update description of mq plugin\n", "proba": 2.199000590508149e-07} {"commit": "6139a8da3bf8dd30aeb2eaf651b4f7259faa0c29", "message": "changed how ga architectures are parsed\n", "proba": 3.1934162052493775e-06} {"commit": "41853e0778fac517eea37bcd5817ec401fb15f92", "message": "Removing location_client from ambulance.\n", "proba": 1.350110352404954e-07} {"commit": "fa891f91b42e6dd98ef5c70cd1bc8ce04b18a70e", "message": "Testing.\n", "proba": 7.396357091238315e-07} {"commit": "6e1bcfdb2a7ebe34511c5bc92265ceebe373b47f", "message": "WIP implementing domain-wise TLS policies\n", "proba": 1.7532683216359146e-07} {"commit": "2349b3e86a8f7df2bc7acdb2842224c8aaf496df", "message": "fixes model validation bug\n", "proba": 2.8308446076152904e-07} {"commit": "d6bd6084be9de670114e053ca5e22a6b4662874f", "message": "PI-133: Fix issue with detecting missing security group ids because of comparing integers and strings\n", "proba": 6.905236773491197e-07} {"commit": "329a8e6c45637ff3c8628cd60731f3d288ce2366", "message": "feat: catch parser errors\n", "proba": 1.9520298337738495e-06} {"commit": "336a0c09a20bbe872d3068ca3aa5f71412025bb5", "message": "Suggested change\n", "proba": 1.506738726675394e-06} {"commit": "ca15299b0cd36864f06157ff179d45ccef2a3baf", "message": "Updated from Brython Server: 9/22/2015 2:39:54 PM", "proba": 1.090201919851097e-07} {"commit": "9b6e31cc75cf405cf2cea171177a006142e076ec", "message": "Updated from Brython Server: 9/22/2015 8:28:05 AM", "proba": 1.0814373752054962e-07} {"commit": "2447f161a2aa84869bdf9b4f3fa6470bc08773b2", "message": "Updated from Brython Server: 2/5/2016 2:19:19 PM", "proba": 1.1383715303736608e-07} {"commit": "8a991c6ca5e6ee8acd2d7fef11a5dbbada448338", "message": "Add in scales.\n", "proba": 4.4963721279600577e-07} {"commit": "efb9cd1a01cda103502a27b59cb7b6dc4f05c56e", "message": "Pass listen flag to fallback tts\n", "proba": 3.403433481707907e-07} {"commit": "9390481606f80a90566cf306ffd035e235114168", "message": "Removed Component from administration interface.\n", "proba": 1.1623924933701346e-07} {"commit": "093c9941e9d075c39a85c4159dc451885dc01a5d", "message": "Correct the assertRaises call to name the callable, but not call it ourselves.\n", "proba": 2.3514898828125297e-07} {"commit": "a66a687f786eae3bab0e371bdf912646a5ea3e66", "message": "Code folding for profile/views.py\n", "proba": 2.061511139572758e-07} {"commit": "007dda5b88baa958d9d03b917793b5e0d6e2baf7", "message": "Make sure DEFAULT_FROM_EMAIL is taken from general.yml too\n", "proba": 1.5577585088522028e-07} {"commit": "ef480168136adab9d8d3e6395571e53683d5f559", "message": "Fix Python version checking\n", "proba": 7.05894417478703e-05} {"commit": "860e2a3d2c2fd25cb73e829f2eeaa1530160722b", "message": "Fix missing json import\n\n(c) Copyright IBM Corp. 2016\n", "proba": 0.00023862201487645507} {"commit": "994d293107d13f00c7c87f9a48b51db2c742e570", "message": "Update FFBPmp_demo.py", "proba": 4.4436828261495975e-07} {"commit": "5a41b43b5b3affbefc5e1159d1193e58ae8e0f6e", "message": "x-urllib.py \u4fee\u590d import socket2 \u7684 BUG", "proba": 1.904912210193288e-07} {"commit": "9261806eec93dd4912716fe86e658393bc5504fe", "message": "kedz eagle eyes do it again\n", "proba": 2.7755774567594926e-07} {"commit": "18ea2253cb01cf469ff861681dd82ef8ecfd0fc1", "message": "Change output names to expected ones\n", "proba": 0.0021637403406202793} {"commit": "0a1cd46f06e32457ab4ad4d59dd35ad46385da72", "message": "ignore\n", "proba": 3.4102181416528765e-06} {"commit": "3f7d6ec3ead879d392e5f8591f845322b118544b", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "d2e226bd866ef6554a5e597ca0f4113880be41a0", "message": "Update a test\n", "proba": 1.0321642776034423e-06} {"commit": "0fffcd7ab02db498b95f8779c704927fc05f4021", "message": "tracker: avoid None item when calling setItemAt (shouldn't happen, but happened in production)\n", "proba": 2.0656931098983478e-07} {"commit": "db49825c1f3e6b86f3f7102368b72c801cd81932", "message": "interp/remap toolchange example: cleanup\n", "proba": 4.626236886906554e-07} {"commit": "6d68b243623c08a34f212450a7c96d04535660eb", "message": "improvements to chunking pipeline\n", "proba": 3.145560754092003e-07} {"commit": "b68a69a557ade5e58afad6aa135682ec2a9876fb", "message": "add more filters to user admin, fixing #290\n", "proba": 1.2232806056999834e-07} {"commit": "272c70f6ac2bc8cbffdb11e886cfb3cc2d673a6d", "message": "Make OPTIONS_PADDING/MAX_HEIGHT class attributes\n", "proba": 5.4824300605105236e-05} {"commit": "bd87f8b9c377af36b864eb76796cbfdfa9f4b9cf", "message": "Remove unnecessary UI\n", "proba": 1.4931531040929258e-05} {"commit": "f77fd6965eef79ec65bc95ca94bd54703d8b2efd", "message": "Reinstate 1param plotting - it should handle it now\n", "proba": 1.1356974738419012e-07} {"commit": "c0af010b2d606dfdf6fb25a8f01990934dd7d703", "message": "Added f_all function.\n", "proba": 1.1872996452666484e-07} {"commit": "c7c8c0ebe5d2784fbd8cc4cc69c2235f76f0d833", "message": "Location (lat/lon) mask func added + minor housekeeping\n", "proba": 5.205830007071199e-07} {"commit": "a3e46c909201addfc83e38fee0a501811d500d5b", "message": "Testing creation of forest age category tiles again for legal amazon loss using correct forest extent 2000 tiles.\n", "proba": 1.0367442371261859e-07} {"commit": "4e68ee7d361bc34e77002cbdcfe077e89fcb3bd8", "message": "Add __version__ attribute to gala package\n", "proba": 3.9721689972793683e-05} {"commit": "c4b4ba6239913d6d1fee78425afcb38108c8e4a0", "message": "Remove unused function h5py_stack\n", "proba": 0.0006196832982823253} {"commit": "38eddd1043123faaaadf52620268b969f1c3e529", "message": "Explicitly declare UTF-8 coding\n", "proba": 0.0020330012775957584} {"commit": "8f4dd1c8af2a7dfb51a3ce9feade5ec0bc3a66c4", "message": "game: Allow for build keyword\n", "proba": 2.1942179273537477e-07} {"commit": "d2cfd4315a355ac3b0a3b4fa87b3e429c82a4849", "message": "Implementing a better version of the RAPI cache\n", "proba": 7.695366548432503e-07} {"commit": "b1dc50227ec50f765bdfdf736bc4b7fd787ee112", "message": "Document/comment reduction code\n", "proba": 4.571546128318005e-07} {"commit": "f372dd918b27dfdbaa45b1a6c7224bb27ab3f685", "message": "Use one solver reference in Canvas\n", "proba": 1.6501074640018487e-07} {"commit": "6ad46507c59b0a21bf2e0669c8563ed05a5bb273", "message": "DOC: Clarify isreal docstring for string/obj arrays (#18843)\n\nAdd Notes and Examples about behavior of isreal for string and object arrays\r\n\r\nCo-authored-by: Ross Barnowski ", "proba": 1.1961907375734881e-07} {"commit": "373a188ee7641efbbc1f9b04b961c58e48c64ded", "message": "Fixed incorrect type hint in hello world script.\n", "proba": 1.2273729055323201e-07} {"commit": "65c3770f6cee4b676c0d2e1a94ff4fdc996e8958", "message": "Reduced matrix calculations in Canvas.update_matrix()\n", "proba": 2.142690078699161e-07} {"commit": "a7237ca8cb068e7f54e8684903dcd12530f090e4", "message": "even better tests for parsing comments in variable table\n", "proba": 1.622869518769221e-07} {"commit": "6da3fcdef10808f97f7eec838756efb6cfbde2b8", "message": "Add bridges s1-s3 to topology and explain some details\n", "proba": 7.530090897489572e-07} {"commit": "eb27a1c34de3eb52d203d731c8949b19969385d5", "message": "change version number\n", "proba": 7.900014679762535e-06} {"commit": "421a6a0164be8df233c32c27f9aeb5630c2be796", "message": "reverting self.executed_cats\n", "proba": 4.36795198766049e-05} {"commit": "8afcd2ca030c06684ed8ca5c46740fb849c0fc03", "message": "hotfix\n", "proba": 0.6886289119720459} {"commit": "cd1fb3d4797ef56bac396ef77fa21160c07b6699", "message": "Fixed Bin method\n", "proba": 3.756938724563952e-07} {"commit": "67ed1283b35be7aad2f4334faaadd731487d60ee", "message": "Added SimpleDB stats.\n", "proba": 1.1899329166453754e-07} {"commit": "b01f0410471a41cc459494e6fe06477bf4a85bf7", "message": "pep8\n\nbzr revid: olt@tinyerp.com-20090114091223-lbuvca2agsqehdbp", "proba": 2.8981943955841416e-07} {"commit": "eca921e6782ba8ab259f175b73eda4c3b7575155", "message": "[IMP] Add a new method: get_module_as_zip_from_module_directory(module_directory, b64enc, src)\n This function compress a module directory as zip file\n", "proba": 0.9981876015663147} {"commit": "9feaa00fb2b73e6aa6abf2925ac8f794c5e25bc1", "message": "improved", "proba": 1.5695990214226185e-06} {"commit": "cadd4d79bd2eeb1f1f7ad95b0eee629c1ead544f", "message": "Arrange code so its not as long\n", "proba": 8.758665899222251e-06} {"commit": "ade17a35f9d1455eaf2d506cbde4b0b5bd09a657", "message": "update progressbar.py\n", "proba": 5.714840654036379e-07} {"commit": "68ec3b6dcd2806ad0d78f3e3cadc279ecd9e0136", "message": "QIdle: setup logging before importing pyqode\n\nso that the qt api log appears\n", "proba": 1.7524492079701304e-07} {"commit": "f28f59b41819a85093f2be80cfafbcde4e3495d3", "message": "improved regression example\n\ngit-svn-id: 911ee904f7a83a87adf200ace2e42cbd1ac1ed0c@20 d5231056-7de3-11de-ac95-d976489f1ece\n", "proba": 7.5908533290203195e-06} {"commit": "e61d60fa5ea1afe9033740bdb2f0998198a89829", "message": "Make the multipart dump reader more resillient to incorrect dumps\n\nIf the content shell browser process dies between the time the minidump\nis written and the time it's turned into a multipart file, the dump\nreader will fail to read the dump and throw an exception instead.\n\nBUG=none\nR=dpranke@chromium.org\n\nReview URL: https://codereview.chromium.org/142323007\n\ngit-svn-id: bf5cd6ccde378db821296732a091cfbcf5285fbd@165816 bbb929c8-8fbe-4397-9dbb-9b2b20218538\n", "proba": 0.00031931197736412287} {"commit": "fac5462547974bc7be8b164d7006dd7fc6bafc52", "message": "changed count property to within\n", "proba": 1.6402528046910447e-07} {"commit": "6b89cd3e85f565f89640d860e9fd0b43c35d92a6", "message": "reformat references", "proba": 3.1944641705194954e-06} {"commit": "bb2e5a19d42fb608d9281ef12379c0e3de659761", "message": "v2.2 to add credits for testing efforts\n", "proba": 1.255429964430732e-07} {"commit": "de948c0d6d5bfe19e074db344df5cf48302519b3", "message": "Fixing datetime\n", "proba": 8.070285548456013e-05} {"commit": "d286b80ecc3ef8dd3114ec3d2c8b3623975c6d77", "message": "Added more functionality to permissive.py\n", "proba": 1.6960845528046775e-07} {"commit": "32345fbec969227e4796a95ef455afb6d69479cc", "message": "Added django logging\n", "proba": 1.520836008239712e-07} {"commit": "522d1d2024ab5426f11e5e9bd40ed61bdcc08951", "message": "Bug on number in hexa computed by gen_cfile corrected\n", "proba": 1.6620519716070703e-07} {"commit": "5845ac38df4eef63811cd72120a6157c973bd1bf", "message": "Initial commit\n", "proba": 3.003353299391165e-07} {"commit": "9734a911038781dba858d3c952650fbab21aa9b4", "message": "don't let webpy consume all errors\n", "proba": 1.9419012460275553e-06} {"commit": "841e96d10551026e33164649ce859d7853f38a81", "message": "parseElevatorTable: fix: parse unused buttons\n", "proba": 2.1084573745611124e-05} {"commit": "0210846139fef876f5b10ae552c913b3b0024fbe", "message": "Add CURRENT_PATH to the cli controller\n", "proba": 5.131386160428519e-07} {"commit": "b39dc2282f755ed2f705141b0e31df1217b27756", "message": "Make the batch/transcript action redirect to the first task in the set\n", "proba": 2.977642452606233e-06} {"commit": "f3f4e60a8d620baec108b9cc409077bf7e69b4df", "message": "DOC: updated doc of CudaInner type classes\n", "proba": 1.217895828631299e-07} {"commit": "d3670f4c8a07cc9e29c417a0f0ffa6499a3f53e2", "message": "Fix error with per-view and not per-view csrf on one page\n", "proba": 4.910066309093963e-07} {"commit": "48d79f5bfbeabf0bd48219ea6f66d96e925da135", "message": "return unknown when XALT can't find exec\n", "proba": 0.0001133413243223913} {"commit": "046210b93d3585066b6970b7bc2f246434f23b0c", "message": "Fix mixed space/tabs\n\nSigned-off-by: Sebastian Spaeth <98dcb2717ddae152d5b359c6ea97e4fe34a29d4c@SSpaeth.de>\n", "proba": 1.743947905197274e-05} {"commit": "753b195877ea35fbf3e9c06818a51cffeda48ea3", "message": "Capture problems with similar names in editable install\n", "proba": 1.5753680315810925e-07} {"commit": "77230af4c3d3fd2d369eedf5ce0b590765d53e24", "message": "Use models setting instead of User\n", "proba": 2.078038363606538e-07} {"commit": "3fd95230c054b5c555be881c0b2cbd9b1510e055", "message": "Add unit tests for QueueGroups.", "proba": 1.2598822252130049e-07} {"commit": "6804d581544ed11c24c4ff951a0a6c41bc8fa90b", "message": "Some attempts at buffer management on transmit.\n", "proba": 1.273084677677616e-07} {"commit": "9791833807dc08d69e62576fc4153104794121c0", "message": "[tumblr] support dailymotion_download\n", "proba": 1.4124471192644705e-07} {"commit": "5bb3f71672a18bf88e147cc62331a84338045e27", "message": "Re #7333: author references take precedence over freetext\n", "proba": 2.4327698611159576e-07} {"commit": "5bb0f8f3b81c629f0aaac8d4dc1687cc3fa53f6c", "message": "corrected the name\n", "proba": 0.9999988079071045} {"commit": "3b00fc52f37de7df98488209a565d7460a2d35ce", "message": "careful\n", "proba": 1.2975631307199365e-06} {"commit": "1005cf90c581b8f93be8e9871b5654b950de2602", "message": "Fix for when user does not exist correctly.\n", "proba": 1.2333006793596724e-07} {"commit": "f69d6f6577f81c2e4efbca79263ee49499890490", "message": "FWTS: skip testcases failing with FWTS 18.03 (we have fixes coming)\n\nSigned-off-by: Stewart Smith \n", "proba": 1.254233268355165e-07} {"commit": "150bfe8c663387f58d4fff820ead19a215191cae", "message": "corecommands: really fix 'reload'\n", "proba": 5.371929887587612e-07} {"commit": "5361f3be80486eaf30f2c904acfa0c94f5348ab7", "message": "fix flake8 error\n", "proba": 3.1337575023826503e-07} {"commit": "8f5865767f5ef7d8b755780c6cc6c05ebb1f798e", "message": "Did some more documenting, and in the process realized that the implementation of string matching is (partly) wrong. Added comments and will correct later.\n\ngit-svn-id: 88252f78c26a59aa3354498574018049c1a7e6e4@13 e9066bae-eb34-0410-adca-61464099497e\n", "proba": 2.044917664534296e-06} {"commit": "0f706019241180d7d8b4e125bf50431daa9d5343", "message": "Altera\u00e7\u00f5es no import ap\u00f3s atualiza\u00e7\u00e3o do werkzeug.\n", "proba": 1.2200965215924953e-07} {"commit": "1933715436a7f7828255bf3e002728f2bb80ed0d", "message": "Add sheebang to queries profiling script", "proba": 2.9130941925359366e-07} {"commit": "07b7a666bc1c538580b5e7f528e528e4cc4bc25d", "message": "Fix gevent.sleep not having a parameter.", "proba": 1.7805793106617784e-07} {"commit": "351b9c4897b25a84c767b5ac9ddeb0f8db102c77", "message": "fix archive cmd with wikis\n", "proba": 2.674740642305551e-07} {"commit": "34577af85f3d9b2a4f578e66cf47d86e5de7a3aa", "message": "[FIX] Fixed gettext translation (in particular, fixed translation in RML reports).\n\nbzr revid: jth@openerp.com-20100907084902-0l323afsiju4y1i4", "proba": 1.5988037205261207e-07} {"commit": "56a961ca0a2ac8cd1b40e094d9b70cf263e7b6a5", "message": "tcamapp: Clean up the property dialog\n", "proba": 2.8969481036256184e-07} {"commit": "7878e5ba0b087826060d94b36c42b16e0f2c176e", "message": "[IMP] Added report tag.\n\n", "proba": 1.0561259955466085e-07} {"commit": "a67b0e6194e79fd4b6825590bfc9771fdc974aac", "message": "Probably fixed message bug\n", "proba": 2.4324171477019263e-07} {"commit": "cf770834143a7425671dada9f5af3c69732ef5a5", "message": "[FIX] fixed missing isnoupdate and get_context\n\nbzr revid: jth@openerp.com-20100305100537-jqia7equynfbue4o", "proba": 3.9137879070949566e-07} {"commit": "566ebf60b6d9e484ac0450b738d5cdb085dffe6f", "message": "Removes the version from tests init file.\n\nSigned-off-by: Markus Hubig <1530596661b504c08a18435b39f5ffa8d6f49ebb@gmail.com>\n", "proba": 1.1409604638856763e-07} {"commit": "9f7249272ce16da45dca005b6bad55bf810d74cf", "message": ":book: Add documentation for Attribute\n", "proba": 1.4433328487939434e-07} {"commit": "4a9e9259ef05a63bd4d2d9fe9622c1cb93bca770", "message": "Fix encoding issues\n", "proba": 0.0002293761062901467} {"commit": "7337acb99e53f43962830476ab90ebd0c523c1e0", "message": "Prevent running unit tests against production\n\nUnless SMARTFILE_RUN_TESTS is set within the environment, the unit tests\nwill not run. This is to prevent accidentally running them against the\nproduction server by users of this code base. Although the code\nattempts to not leave leftovers nor make changes that detrimentally\naffect a live site, it is best to prevent it from being run without the\nuser considering it a bit.\n", "proba": 1.622838539105942e-07} {"commit": "d56f9e77b93e946052b32020d14626e5cdf8f95c", "message": "Fix glob when the library is installed with pip\n", "proba": 4.549738150672056e-07} {"commit": "7f20b2d4228bfb87cc8ce1f7b7572239ce608eec", "message": "Option to leave RIDs as RIDs.\n", "proba": 2.0153605362338567e-07} {"commit": "bb5862eba6bafab002d95dbe9e57ef843959a729", "message": "Added filenode unicode path test to global test runner\n", "proba": 1.9601245071498852e-07} {"commit": "212ce9701cac53a218b1cc9afedbe8ff53435bed", "message": "fixes opts dict update behavior to not overwrite non-None values with None.\n", "proba": 1.1804599608922217e-07} {"commit": "30f363a3cce74063063d1c04c11c314d96e42820", "message": "Fix #1359 (#1360)\n\n", "proba": 1.870577932550077e-07} {"commit": "5c477c5cc9f866ea9f6729f907abe6cb8edfa319", "message": "Have to get the channel object\n", "proba": 2.2007775157817377e-07} {"commit": "a9384dee9abfbb44b2361556f4de9f696636b0cf", "message": "fixed\n", "proba": 9.654138466430595e-07} {"commit": "610bdeaca231b1fac104a29e630583182848feb9", "message": "nimp deploy: zip of zips: better, on-the-fly processing\n", "proba": 1.6396428748066683e-07} {"commit": "5b9e76e0804ca4d007a06c87ec5137d775bfddb6", "message": "Fixed error in duration plot\n", "proba": 2.7998873974866e-07} {"commit": "2bcffd1f68e74548400d8ac0ffb56d46448ad45b", "message": "* contrib/server-side/authz_svn_group.py:\n Fix typo (\"authoritative\", not \"authorative\"). Followup to r16271.\n\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@856348 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 0.00015608352259732783} {"commit": "483129fdb301eea611141a088f5b1c829ea68380", "message": "[tests] Correct name of test\n", "proba": 0.000473894557217136} {"commit": "925879ec5fef56046b8d31a500d50468b94578d0", "message": "Made changes to mpi_mainz_converter\n\nadded \u201craw\u201d for the \u201cdata\u201d key and deleted unnecessary comments\n", "proba": 1.1074778427655474e-07} {"commit": "e94e5ac365b52b1da461994b087a125360f2adfa", "message": "[tests] DuplicateSourceFilenameTest does not need testing in 32-bit build explicitly\n", "proba": 1.841675754121752e-07} {"commit": "84dc44ccd2a14a915ac9971db1e3d1b699b188ce", "message": "Changed the static files settings when tests are being run.\n", "proba": 1.1457319715191261e-07} {"commit": "b15dd3e89a0f63fa3609031e717f782c38a7560b", "message": "Added pointer to more emoticons\n", "proba": 1.596685734739367e-07} {"commit": "6f8cc906c4be9c88e6bab121eae931aa8f5b713b", "message": "Run unit-tests in C locale\n\nThis prevents testing translation support, but the tests didn't work because\nthey match on error message text.\n", "proba": 1.1825704149259764e-07} {"commit": "6ab0ee0c45d3d024cf4c6c52d14a87e0a2b9c8a0", "message": "Whitespace\n", "proba": 8.480420547130052e-06} {"commit": "5a72641df8f36d17b6906fede7ae5a4809a6307b", "message": "check port availability and basic sanity check of request in dud backend\n", "proba": 1.380875573886442e-07} {"commit": "dab347601779709da6cb34809e04f06d804c3cc3", "message": "Delete accent_ngram_bakup.py", "proba": 4.50082661700435e-05} {"commit": "998ba70865e10fcab34376c56dfb6ff6999ecedf", "message": "remove unneeded imports\n", "proba": 7.257848665176425e-06} {"commit": "a23c5804b9b1cf9b79c7d7ab20f62de855fe24b2", "message": "working -ish edge detection\n", "proba": 2.04937535386307e-07} {"commit": "b8794ae9c1c4b349a97b3ceb220f41623e99b733", "message": "head up\n", "proba": 5.241153644419683e-07} {"commit": "1f6c3e03505a92c54cb31ebc9575ebcc8cdc36ec", "message": "Filter all bad values of calibration before calibrating data\n", "proba": 1.833444230214809e-06} {"commit": "f108e1b86143ba29d0272276b2f6f2d9d29f2b84", "message": "increase log level in tests\n\n- Log messages will be displayed with failing tests.\n", "proba": 1.112883865062031e-07} {"commit": "29666609f476293a586c416db865c5e0bec0e55b", "message": "Print various things on errors\n", "proba": 0.000252945494139567} {"commit": "b5593bbfb8fda3bbdb9c5408f17078949ab91481", "message": "Fix old-style `pytest_funcarg__`, instead @pytest.fixture.\n", "proba": 7.32309558770794e-07} {"commit": "33646bf4823d4944d0a871f57db09987ff8808d3", "message": "putting some order on the messy code put down for poc prototype\n", "proba": 1.4391009983683034e-07} {"commit": "b3192eeefc9386186896608c0e8bc0931bf6b422", "message": "chore: remove unused enumeration in cassette scrubbing\n", "proba": 1.8020318748313002e-06} {"commit": "0c225de43260e24ad8cc30e746e42a22f35504d8", "message": "Implement the `requires_salt_states` marker\n", "proba": 0.9984921216964722} {"commit": "e5fcb0d2d2bfcdaf6c0fae04307d7a9ca14036af", "message": "tests: allow defining arbitrary number of OSDs\n\nSome tests might want to set this since number of devices will not\nnecessarily map to number of OSDs\n\nSigned-off-by: Alfredo Deza <3f4d00ffa77e6441ab2d23c25a618925d2383b02@redhat.com>\n", "proba": 2.0982329829166702e-07} {"commit": "497c61ddfc65d9087d8fb208922c2c606c0f1574", "message": "New mocks for Controller and it's dependencies\n", "proba": 1.22863184515154e-07} {"commit": "36740bf92999dae7258e1aeb6e8d82b43e1773f5", "message": "Add config and plugin wrapper for app test fixture.\n", "proba": 1.125979594007731e-07} {"commit": "f10e48d4fb7bca3fa2640f6f1c74c4c10655c76d", "message": "Fixed lint errors from previous commits\n", "proba": 2.0136083378474723e-07} {"commit": "86c3e1811ffa196b776b6d27520dc0d34849db4b", "message": "add fixtures for pool", "proba": 3.558789956059627e-07} {"commit": "8067634447b54981fdad6140737e9f3c220b7b2f", "message": "Fix merge conflict\n", "proba": 1.2819501534977462e-05} {"commit": "fd3eadd62ec7082472c239540c2214be6cbe3797", "message": "simplified duplicate checking\n\n\nFormer-commit-id: dd2e0d5653be1f0e69ff66d0dfd57cd3e7cc33c2 [formerly 3ce8bbeae286c6959e16de4fe063c6c0cba2806f]\nFormer-commit-id: 7a9ebe0866da12b2e67a9350c513369f17acc8e4", "proba": 0.016859538853168488} {"commit": "3ecc1a70da3636618fe14ff2ebf754eed9ec75a1", "message": "tests: add teardown handler\n", "proba": 3.0417297693929868e-06} {"commit": "5614595b80b336b14ba5e55f84b397692886829a", "message": "added new disagg params to param registry\n\n\nFormer-commit-id: 22d40628a0972f824d9315915b783410c2098414", "proba": 3.692595385018649e-07} {"commit": "16df6573a8d7bd3b4b836e7aaed21c08f6909042", "message": "Attempt to increase buffer size for flaky bloomfilter test.\n", "proba": 1.1260558352432781e-07} {"commit": "a3687b51ba811d3b6f38f2018bef45579c244b98", "message": "AMQPMessageConsumer acknowledges received messages\n", "proba": 1.373827132056249e-07} {"commit": "306c08e27e7dee2efb0851e2a74cc4e7f0b5196f", "message": "Game.crush gravity 'vertical' draft#0\n", "proba": 3.6984038160881028e-06} {"commit": "549560462a733368f42b2bcaf337c08ba9ebdaaf", "message": "style: remove extra debugging print\n", "proba": 5.543111456063343e-06} {"commit": "355b7ca4aceb520d06639f2b7151344abdee4646", "message": "adaptive is much faster than non\n", "proba": 0.00014243456826079637} {"commit": "6a1a57efcaa9e972fc8ae6c51c2a181cde083d48", "message": "Added permissions for pdf access.\n", "proba": 1.081744755992986e-07} {"commit": "04de1784a31c5deccd856fc9a24dde908c723559", "message": "Add capability for using load magics or button solutions.\n", "proba": 1.0482590084848198e-07} {"commit": "e74775db795025d0365ebb045ff982cebea8ad0e", "message": "tests/fixtures.py: be more efficient in bulk insert\n\nPostgres supports inserting multiple rows at once which is more\nefficient than the add_all() method.\n", "proba": 1.1357364826380945e-07} {"commit": "8c589d5634c947a07c68bdfe69e6c063bda49528", "message": "cfg: unneeded multiple inheritance\n\nFixed bug #927650\n\nIn python=<2.6, collections.Mapping inherits from\ncollections.Sized, collections.Iterable, and collections.Container\nwhich are also subclasses of object.\n\nChange-Id: I6238c683324127abd9fb637748a10b6bdb2961e0\n", "proba": 1.6048177258198848e-06} {"commit": "4f4c886c285684a58d91df61a4ddbd363412e5e2", "message": "get rid of dup memberships w no dates\n", "proba": 1.3563021639129147e-07} {"commit": "ecc61f6e5b3375f2c7ecbeff41a124c1efc575db", "message": "Fix pep8 on adminx\n", "proba": 2.2418309697513905e-07} {"commit": "6524818993dc7edc1f7a316620c3a88432d70899", "message": "replace field articles to containers\n", "proba": 4.875280865235254e-06} {"commit": "4a3b94f726bceac9c2ec1bd99fb34bd4f57ad473", "message": "Change argument name from p to probs\n", "proba": 3.296085196780041e-05} {"commit": "916e8e1f3a61a14fe75c49cce71a9d758f93d2cf", "message": "smart regex filter for matching numbers https://bugzilla.mozilla.org/show_bug.cgi?id=805637\n", "proba": 1.675125167821534e-05} {"commit": "122269b4d010d432d0ba5a8f05cfb90dcd982537", "message": "lets be nice to the subtitle services, and wait 10 sec.\n", "proba": 9.93668720639107e-08} {"commit": "0de214f127d27f85efe7b83f15484123149fae97", "message": "message: add AS_INFO1_BATCH\n", "proba": 0.000429237523349002} {"commit": "02bdc87c98ece10832df8cc871c356d911869177", "message": "search: Limit available queries to first 50 hits, after sorting\n\nThis makes the typeahead search for e.g. NCBI accessions actually\nusable.\n\nSigned-off-by: Kai Blin \n", "proba": 1.323095517591355e-07} {"commit": "111d9984085d622cc0e6077869e607f6b614b002", "message": "TIMOB-8117 Modernize the packaging to use our fixed xcode-select.\n", "proba": 1.000282452423562e-07} {"commit": "e7a74f23d98ea110e7c44c68c52027c249630ae3", "message": "Fix bug with URL_COLLECTOR_SINGLE\n", "proba": 7.770627235004213e-06} {"commit": "70b03ad2336fa77bcbeea873d41a5a7392497c46", "message": "xrange", "proba": 1.2795721886504907e-05} {"commit": "a0fabbce1cd28cb0bd651cb016386633298c52bd", "message": "add region schema to v2\n", "proba": 6.369513130266569e-07} {"commit": "36337ddaa0124fa3b8fcbf3a92ff602d6983e64b", "message": "The '-b' option now writes to stdout\n", "proba": 0.9993869066238403} {"commit": "3f605a582ffa1e65272f4eafdfcb4c15c754ad3b", "message": "Remove PropertyManager\n\n* Merge its code with ManagedProperties\n", "proba": 1.2598269449881627e-07} {"commit": "f9ce4e95fae35e82083a63fceb58aa30bb4989f7", "message": "Update delay.py", "proba": 9.985523092836956e-07} {"commit": "10607e72391ef5f701e96740a622130a3680346f", "message": "Simplified Triangle.inradius docstring example\n\nChanged the docstrin example to use actual points,\neg (4, 0), rather than symbolic points, eg (a, 0).\n", "proba": 1.700013143590695e-07} {"commit": "26fe7300bbf7e37040da62a3ae1c6f714d75a4bf", "message": "fix orthocenter to use do_intersection\n", "proba": 5.435387606667064e-07} {"commit": "000793be69f85ad39c26b808032509e92844fc28", "message": "small fix\n", "proba": 5.359547685657162e-07} {"commit": "ad4c1014184f8a7c4b72a4620262bf5fda3264d2", "message": "Add issue number(7659) in the deprecation warning\n", "proba": 6.134385785117047e-06} {"commit": "d78309e72507b38d70dfa5d3663c120c6dc41057", "message": "Remove comment\n", "proba": 1.7397370299931936e-07} {"commit": "c3e92e024b28b3e21afbf33e4f438ec12b0a155c", "message": "preserve existing synapseConfig when writing credentials and re-use login console prompting\n", "proba": 1.4173939177908323e-07} {"commit": "932ed893abbea6778374c7b60db6796c8b2a7924", "message": "Shut off data pull in the middle of the night (fixes issue #45)\n", "proba": 1.0493672419897848e-07} {"commit": "535355f5b950a3cde72daee60c6da9b5bb6b01f8", "message": "Support both txredis 2.2 and txredis 2.2. (Yes, they have the same version number and are different.)\n", "proba": 5.260944249130262e-07} {"commit": "e7bcc90b5ffaa612a7b2585a2dad63fcead68739", "message": "test for save_zip\n", "proba": 4.2973724134753866e-07} {"commit": "ba26c1cf092f22ed87aedefdb92f9f4a99e586aa", "message": "Reorganize MRA tests and add undo integration test\n", "proba": 1.7834582877185312e-07} {"commit": "650b3c133b0d34e11a6a57228985e692b64990eb", "message": "fix \"there is already a user with this email\" check (fix #19)\n", "proba": 3.1233685149345547e-07} {"commit": "59036d465ad8b4acb6f930e303415240efd1b754", "message": "remove useless write\n", "proba": 1.0164092600462027e-05} {"commit": "d17a155c1eb4e7d29426be8b38630f08cbde9ca7", "message": "Add some documentation _o/\n", "proba": 3.955924512411002e-06} {"commit": "f721ee44c0f8e57ba84157bfba3df41f9f4238ed", "message": "Add logging for dataset submission\n", "proba": 3.017107133018726e-07} {"commit": "2272b17f1e54d5def1d1b2e3dfb7f8cd036ec801", "message": "static_root movido para o local_settings\n", "proba": 5.676557179867814e-07} {"commit": "51ca6ff8b21d12814528e4725a984c1179407c30", "message": "Catch keyboard interrupt and quit\n", "proba": 4.5173854346103326e-07} {"commit": "a9b0c6ca598179c4c07291f3cc4111a021d92078", "message": "Refine multiline behaviour\n", "proba": 4.4643689989243285e-07} {"commit": "69c87e3bcb84b44a71ea14444fbe7db9abbc1805", "message": "Fixed variable names and path delimiter for #11441\n", "proba": 2.852274576525815e-07} {"commit": "e1ac805db79e100ba13c07765278b2b9e5d443b3", "message": "Docs change to remove_html_tags\n", "proba": 1.948083536262857e-06} {"commit": "3cbec134b8ca1354c78f9a855debf8f659377316", "message": "use brief dtype, rather than full object\n", "proba": 2.0029023062306806e-07} {"commit": "818e55f9ddedb6d59a85f8757ad69aa579dfdfeb", "message": "fix(webapp): add media isos and floppies when creating new desktop\n", "proba": 3.9709763655082497e-07} {"commit": "28fe29969a61f7af5e6172335b657ef80eceaf19", "message": "add view\n", "proba": 3.281100759977562e-07} {"commit": "83764d5e6ce8a55ec46200731576408a1cb708c8", "message": "added PO in the fixtures so that should be higher\n", "proba": 1.2704806806596025e-07} {"commit": "8122f63861791f47e01a5ef76c340e3d33e5ee39", "message": "add Travis build target for LPC2460", "proba": 1.8028227088962012e-07} {"commit": "0bd27e06a077b39dceb84d56bb01b6c2eb1729c1", "message": "Completely refactored the runnable tester\n\nThe RunnableTester class is now a subclass of the Runnable that is being\ntested. This simplifies overriding methods.\n", "proba": 1.135985598921252e-07} {"commit": "e402c3f0c2c9a2d4d0b8f608552dc68165d979ea", "message": "PEP8 fixes\n", "proba": 1.4330707642784546e-07} {"commit": "b16f36d2eaba067a2078080d979b304a54fd00a7", "message": "Fixed FakeLdapDriver, made it call LdapDriver.__init__", "proba": 1.2159090090335667e-07} {"commit": "dee8e707a6b4b2193d4aaad18bbcf65b76ea6b53", "message": "Use instance uuid as password for VNC\n", "proba": 7.741452918708092e-07} {"commit": "7cfd35795100d8f90770af54cf11b231aef7dbd6", "message": "Fixed uninitialized value error\n", "proba": 1.0606545401969925e-06} {"commit": "95b01db098ff40ab517c7dd53d418c79076830d1", "message": "nrf5/examples: Updating documentation in SDCard module example. Correcting typo and adding SD card wireing documentation for direct SPI connection.\n", "proba": 9.820116275705004e-08} {"commit": "54e51159ba2d937739fdc2265787036292d1f11b", "message": "Fix slice shape assignment in array analysis\n\nset_shape() is specialized to SetItem/StaticSetItem nodes,\nand slice shapes do not need its specialized path.\nConfusion comes from the fact that wrap_index (which is related\nto slices) uses the same \"ext_shapes\" data structure as setitem,\nbut is in fact independent of slice variables themselves.\n", "proba": 1.8679395452636527e-07} {"commit": "08bd12c3ded2eaeffa317695cfd379f20f85cab1", "message": "Add ability to analyze calls to StencilFuncs.\n", "proba": 1.113119481033209e-07} {"commit": "eed79ad2f52d2b977b5c500aec8ad148d19a4377", "message": "unique names for array size vars\n", "proba": 5.287708972900873e-07} {"commit": "68ebfefe88d885402f1f4c57c88ae7806dc341ef", "message": "analysis assign size 1 to special class\n", "proba": 1.4120687410468236e-06} {"commit": "e3fc85f2e5e60da8294279bb4d7480b3c24fbe20", "message": "Add comments about the complication of handling the dtype argument\n", "proba": 2.9086081099194416e-07} {"commit": "425068b019fc5f3644f6b7cdc030ab3c7de857f3", "message": "MAINT: extract private helper function to compute histogram bin edges\n", "proba": 1.711789877845149e-06} {"commit": "dcb554428e5a749a2f18ee7815e4be56c268fbe3", "message": "DOC: link to stack from column_stack\n\n[ci skip]\n", "proba": 1.1498498508899502e-07} {"commit": "df2150a81bebf632f25048f27d48aaef8de45e9b", "message": "Handle unhandled keyboard interrupt\n\nWe let the op module handle KeyboardInterrupt but if it doesn't, we\nshut down gracefully and note the interrupt using -15, which is the\nsubprocess resultcode Python uses for SIGTERM.\n", "proba": 1.9178305876721424e-07} {"commit": "34aa017084edf57f5f28945199bcec30db26c6d4", "message": "add plot_pole_colorbar function\n", "proba": 1.3118670949552325e-06} {"commit": "6c9043d0654329235f4b2ae71412d224a9de65d2", "message": "Format line\n", "proba": 0.00010127160203410313} {"commit": "a69a147c268b2fff441ff2f2d3a68456a6b10938", "message": "Migrate android_process from adb_commands to pylib\n\nBUG=476709\n\nReview URL: https://codereview.chromium.org/1219033002\n\nCr-Commit-Position: 972c6d2dc6dd5efdad1377c0d224e03eb8f276f7@{#336857}\n", "proba": 2.224766717517923e-07} {"commit": "a838b5ed8b98ae2797917a5c918a5eb52c3cd714", "message": "fix Grid + Option\n", "proba": 3.6533643310576736e-07} {"commit": "b5822b89cd604bd2f88f84f70c875ad9485c46ec", "message": "Made helper format_date() more error tolerant\n", "proba": 1.752870417703889e-07} {"commit": "4a806530add179d47c8af5ecdb62732374a1b910", "message": "try str args\n", "proba": 3.505525228320039e-06} {"commit": "70e0b7de8d87facb4db9052662e09156a111fd53", "message": "\u0434\u043e\u0431\u0430\u0432\u0438\u043b \u0432\u043e \u0432\u0441\u0435 \u043c\u0435\u0442\u043e\u0434\u044b \u0441\u0441\u044b\u043b\u0434\u043a\u0443 wd = wd.self\n\n\u0434\u043e\u0431\u0430\u0432\u0438\u043b \u0432\u043e \u0432\u0441\u0435 \u043c\u0435\u0442\u043e\u0434\u044b \u0441\u0441\u044b\u043b\u0434\u043a\u0443 wd = wd.self\n\n\u0438 \u0443\u0434\u0430\u043b\u0438\u043b \u0438\u0437 \u043c\u0435\u0442\u043e\u0434\u043e\u0432 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 wd , \u0442\u0430\u043a \u043a\u0430\u043a \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u0432 \u043b\u0435\u043a\u0446\u0438\u0438\n2_2_fixture.avi\n", "proba": 3.6779329093405977e-06} {"commit": "1fe5ba299398bb2a3dfcfe0bdce6939b3e72a2d8", "message": "Add methods to flush the session when checkout is complete\n", "proba": 1.309765309542854e-07} {"commit": "b40703ffd8900377026369c075a2aa5bdc7fe2aa", "message": "Fix elasticsearch storage setup bugs\n", "proba": 4.3495381873981387e-07} {"commit": "1196443ca6647263da4db1faf7c7e8dd921ae7e5", "message": "Doing the right ownership comparisons\n", "proba": 7.289274321919947e-07} {"commit": "2803b30515e468679a42844d1ba0fd8c92c48484", "message": "enabling instance validation before saving\n", "proba": 1.7855413148026855e-07} {"commit": "9d0ca7671a8b2e285341ee9728a17036f5b902b6", "message": "Problem with modify ways\n", "proba": 7.103264124452835e-06} {"commit": "da696bc778048e1dc7ae186092b8ef17da5e1925", "message": "Update reset_dfs_vars\n", "proba": 1.2757381000483292e-06} {"commit": "6e499e1431b1f7f324db82fd2430969c2c940b61", "message": "fix typos", "proba": 0.9999740123748779} {"commit": "5dc8c426f663674e87dfe8096f6014d06570e084", "message": "Remove unused import\n", "proba": 5.658957888954319e-07} {"commit": "e3dde3299b45e11653b360cb0611d4af469f66f2", "message": "correct data model for static daterange\n", "proba": 2.208136720582843e-06} {"commit": "94c68ff9382b5a9ead79e2f00240861a68b3f9cc", "message": "[IMP]\n\nbzr revid: apa@tinyerp.com-20120321054356-t3t96j0kunsi4924", "proba": 2.1260885318952205e-07} {"commit": "134c643d54bcb52369b740cc0917ccb1513487e4", "message": "hotfix\n", "proba": 0.6886289119720459} {"commit": "885d267a425a8ba14a0026e207a568cafdcaeed5", "message": "Various bandstore improvements\n", "proba": 1.563321632147563e-07} {"commit": "ba2a9b331571494725305308fd7cc2c0f0ba287e", "message": "Validate action relationship\n", "proba": 2.801577693389845e-06} {"commit": "eff0bbad02b51116ea3ef58bfff677a064560ded", "message": "[IMP] display of stock moves in dropdown lists\n\nbzr revid: abo@openerp.com-20120911165505-6ah1xqfanpaywjjr", "proba": 1.7637700011619017e-07} {"commit": "9f81f1cba8a5f6ffc3c449909489343555745df5", "message": "fix convert pt_to_tf2 for custom weights\n", "proba": 2.0736192709591705e-06} {"commit": "28b40e917498e706254022d82bf137582c3c8b80", "message": "Fix subtitle release name in BierDopje\n\nMatching confidence could not be computed because of the\nmissing extension\n", "proba": 2.579426336524193e-06} {"commit": "b1700394db02c1dd468a54283d46d19696807c27", "message": "topics should be set\n", "proba": 5.341292762750527e-06} {"commit": "eabe8af3bb1bacb931faf0318ebb6532bbd4b4fe", "message": "[FIX] stock: always set the internal transfers picking type as active\n\nbzr revid: qdp-launchpad@openerp.com-20131206163243-7v6y4szabdyrgiu9", "proba": 1.5325360891438322e-07} {"commit": "5ce27ae560a6467f1ddb5cc73de7060d9eeb91cd", "message": "Fresh retrieval of cancer study groups\n", "proba": 1.301286687294123e-07} {"commit": "7907b3e0e0cd2a169eee8a283254331b239f289d", "message": "[minor] Put tmp designspace file in master_ufo dir\n\nThis is for platform compatibility; I had an issue with the way\nMutatorMath used the designspace file and the location of tmp files\non OSX. Basically it would look for a file like:\n\n/var/folders/foo/bar/../../../../Users/jamesgk/workspace/MyFont.ufo\n\nbut fail (for some reason unknown to me, calling \"ls /var/../Users\"\nfails on this Mac).\n", "proba": 4.386663192690321e-07} {"commit": "2a4cafb45b8af49da6ab641dbc5136fb9e31d9bf", "message": "Fix some funky changes to the PEP validation tool.\n", "proba": 1.1577635916637519e-07} {"commit": "fcdffdefb05612e2a03f6acccc94c02968f02949", "message": "[FIX] Minimize changes for enhanced unique id.\n", "proba": 1.1014572010026313e-07} {"commit": "3005d702e5cc809225e5faeed93c9413bf4dfed4", "message": "Pass config_id into the NotFoundConfig exception\n", "proba": 6.096263405197533e-07} {"commit": "65da23d5fc28fdbea2547326b552f9c84390c07f", "message": "CI Fix scipy-dev for deprecated numpy.distutils (#22513)\n\n", "proba": 1.2399733861911955e-07} {"commit": "4d1768683556268c4441062756b2e5933b452ae0", "message": "Add more specific test for is_data_valid and is_model_valid functions\n", "proba": 7.42789707146585e-05} {"commit": "e18f2b44d16302633a56fa50adb13746cf4a1aaa", "message": "Actually, we dont even need to prepend the static prefix, since django's staticfiles already does this. [#35518737]\n", "proba": 1.237399374076631e-07} {"commit": "a89b48f0e470d795bf5ac30acb88b27be4fc83ae", "message": "Allow for door close to take 20 seconds before texting back an error\n", "proba": 4.8240502792396e-07} {"commit": "facb2c61ea875c9b5020f2f3619a012837801606", "message": "Reworked fields permissions on level-hints\n", "proba": 1.850097248734528e-07} {"commit": "aa8f7514eb91a2156707ee708a92f43d2047a503", "message": "Point IDLE menu Help / Python Docs at Python 3000 version\n", "proba": 1.2444537844658043e-07} {"commit": "a20da89549b926c8d35d2570b659e72eb0ecaeaa", "message": "avoid failing if data source is missing\n", "proba": 2.232805491075851e-05} {"commit": "720f2bd4c0c884d6af5cfdb84ad237417fe1f56a", "message": "Use gevent\n", "proba": 6.802727057220181e-07} {"commit": "7bea23de3e3346e25aba185c70c205b352f36df4", "message": "Adding hook for images/sec and other small changes", "proba": 1.4327592623430974e-07} {"commit": "2d751b470f6e1ffe74270f233bc6cbdbff141b88", "message": "updated chart condition to exclude sum\n", "proba": 3.2102394698085845e-07} {"commit": "7f762d2bf47992da6c218b15203888aee337057c", "message": "dont double-print message\n", "proba": 3.4175559449067805e-07} {"commit": "75eacc6a82fb8964e9862318ff200045b83a053a", "message": "Try harder to unset modes from the database\n", "proba": 2.1115639015079068e-07} {"commit": "5c2cad20d7e80cfd55db710ce637f7034e115a52", "message": "Add custom_conf configuration parameter\n\nThis will be used in place of postgresql.base.conf, to be included on\nthe main postgresql.conf.\n", "proba": 1.0519804760633633e-07} {"commit": "799590426f5edec59717562539150c3e2b2ab305", "message": "[FIX] propagate context through stock.move.action_cancel()\n\nbzr revid: ls@numerigraphe.fr-20130611124338-644rre13nhmnesvv", "proba": 0.00019305259047541767} {"commit": "ef5e1ad112c6eac77a314e8678d6c021ff92dcab", "message": "Fix one compileall test (#10453). Patch by Michele Orr\u00f9.\n", "proba": 1.0327594424097697e-07} {"commit": "6602b4e3fa5efeab9ac318f28f84b36d573ef038", "message": "Make sum the default for date emitters\n", "proba": 1.9129136489937082e-05} {"commit": "67f0432e3e73e8069a3d0c618c2abee76cf577a7", "message": "Fix expression documenation\n", "proba": 0.9999570846557617} {"commit": "cb2f2e0560212e7b05e6376c50ac59c2720068d3", "message": "slowtasks | support JSON output\n", "proba": 5.470740234159166e-07} {"commit": "42e48298518ba4cde81fea4400bd2726b21bfa88", "message": "fix(find files): allow sub dir\n", "proba": 1.291925173063646e-06} {"commit": "5de2aca215669e8aa682955ece5369927142e98b", "message": "minor\n", "proba": 2.1615694549836917e-06} {"commit": "9b42b2a13082e325fabf3f8e4b3f86b3b775bfe7", "message": "generators: get_files() should use paths relative to Generator.path\n\nAll paths should be relative to Generator.path unless we're actively\naccessing the filesystem. This makes the argument less ambiguous, so\nwe have less likelyhood of joining paths multiple times.\n", "proba": 2.333662905584788e-06} {"commit": "7e23fab6c5993339ae4fe4234b55e09c7209926f", "message": "Let's use assertIsNone / assertIsNotNone. It's hype.\n", "proba": 2.046158215307514e-06} {"commit": "e7597aec48b0326524f5e5e0745b5198c95861a4", "message": "Drop six, and clean up\n", "proba": 1.336003236929173e-07} {"commit": "229ab8800775184af0c56a591cdc382ebe5e3cb3", "message": "reformat\n", "proba": 0.00018977442232426256} {"commit": "31bf1ec8a63c9846f45f8a451e3fc4c160910554", "message": "Added extra fields to contact model\n", "proba": 1.1955087586557056e-07} {"commit": "6adf3a601a2c6d1f02e2373f8fb54e13392c46d2", "message": "\u66f4\u65b0\u89e3\u6790\u89c4\u5219\n", "proba": 3.482130637166847e-07} {"commit": "45140d7293a7844aef69cb8446aaab14137a4486", "message": "Make sure to run exes within mono if required\n", "proba": 1.9115709903871902e-07} {"commit": "5953fccbbcd53a9e9ca57f418459e37f065bc644", "message": "Issue #16115: Add test for check that executable arg to Popen() takes precedence over args[0] arg\\n \\n Patch by Kushal Das\n", "proba": 2.5511261014798947e-07} {"commit": "e2a4b29758286ef382e27758842fecde54bd7aa1", "message": "add context processor to set use_bootstrap_3 template variable\n", "proba": 5.157339160177798e-07} {"commit": "6d341675977fec60055862f80130f62f438b737c", "message": "CFY-1276 use a standard centos image\n", "proba": 2.0656575827615598e-07} {"commit": "80c9c043dc5944a856191bbf65f95c34d88089f4", "message": "Fix a regression that was causing us to walk off the end of an array.\n", "proba": 5.299686563375872e-06} {"commit": "e670e30f2c847240e3f9ee80ac4c0865ac779381", "message": "Clean up benchmark config JSON output. Add a couple of missing params.\n\n\ngit-svn-id: abd770af2affaf62930f25b244f6edafe8ddae5b@168 164481a5-15cb-f69f-4b93-856c5b7754c5\n", "proba": 0.9999969005584717} {"commit": "dcc4bdbb79a627f69126561634782c2fad2faa9c", "message": "remove BOM\n", "proba": 4.76245695608668e-05} {"commit": "49a93f5a895321b0b995f549ffc502e6adf425a5", "message": "Add CLI wrappers for project_{connect,detach}_node\n", "proba": 4.094019914191449e-06} {"commit": "fbaba21992e39119690ec9ce541ebc58d9d96293", "message": "Stickler blank line\n", "proba": 7.857651326048654e-06} {"commit": "825a749dbdd054d0fafcd17965cbdd2debcbf739", "message": "Fix searching by subject_uuids (#2876)\n\n", "proba": 1.9048631827445206e-07} {"commit": "8f613ae2cd90066a5b379291dd52b9cf19348747", "message": "exactpsf measurement iterations default 1 -> 11.\n", "proba": 1.1812358735596717e-07} {"commit": "543eb18ec10057a4f06e94df9d7f805b9811c4ea", "message": "support connecting to other peer registries registries\n", "proba": 1.3682570454420784e-07} {"commit": "38f710a188e63e7beb059e5ea2b4c9bb38b598f6", "message": "added geo and time functionality\n", "proba": 1.4577082652067475e-07} {"commit": "5a7405e127265879ba8d5066e3adb89583391df8", "message": "cli: Print help to stdout, not stderr.\n", "proba": 5.884402298761415e-07} {"commit": "5d173a3f1c6e3a0b069c676c6ae537fbc5425f48", "message": "Added a property to issue that returns all the main articles in the issue.\n", "proba": 9.995157768116769e-08} {"commit": "23e9e22c1370df352ca426df4547914061ed0f8e", "message": "Remove schema from base\n", "proba": 1.2797654562746175e-06} {"commit": "99186b08994186c62ed758eebdbfba1c5d1eec01", "message": "Fix a bug in the kml_feed used for the neighborhood monitoring", "proba": 3.8306467331494787e-07} {"commit": "51e408c9eaec784db0532f9ab0febe5de80d0fb4", "message": "Delete getPhotometry.py", "proba": 4.2213170559080027e-07} {"commit": "2f0afb74a3d870f9c0f52fdceff08808740a1ee2", "message": "cleaning up and creating function for this fairly confusing bit\n", "proba": 1.3177337621073093e-07} {"commit": "00541bea3a0ac9c02c18730c30d77b6d942f1e07", "message": "ROM comments\n", "proba": 2.916544019626599e-07} {"commit": "31d449e31db013500f57b4e2389c2489a39d2b6e", "message": "add more d2i/i2d bindings because sometimes you just don't want bios\n", "proba": 2.7173618377673847e-07} {"commit": "aaee0f733625e701929e397154b25aeb6b61be3b", "message": "rename function\n", "proba": 1.148408955486957e-05} {"commit": "5ec86ed66ac95e57122019d5316dc1e39e53b0f4", "message": "bump beta version\n", "proba": 3.2253188919639797e-07} {"commit": "3783c166b3f25b28848b3173f12d525b16b85ca3", "message": "Fix quickplot() warning() for folks without PyQt5\n", "proba": 8.325492899530218e-07} {"commit": "310099d88838c8e08d15fb34028263c9294b62e9", "message": "atlas : provides blas and lapack\n", "proba": 1.7226066972853005e-07} {"commit": "d9c1b62d383ea487932a44e7fc3d74d4ba27425d", "message": "CMake: added v3.18.0. (#17688)\n\n", "proba": 1.609437276783865e-07} {"commit": "7fce4c5083bf218cc53049915f6853152f37f7bc", "message": "Add list_url to cmake (#2714)\n\n", "proba": 1.1977660108186683e-07} {"commit": "d52ac82f95673f55599ed1c2fb3b007f97ff2f33", "message": "Convert gl2ps to CMakePackage (#3360)\n\n* Convert gl2ps to CMakePackage\r\n\r\n* Remove unused spec variable\r\n", "proba": 1.8425434689106623e-07} {"commit": "900f8f0806609a32050b2a1f57d68bc45c064fa9", "message": "Add version 2.5.1-alpha1 of MAGMA (#11486)\n\n", "proba": 1.333743711029456e-07} {"commit": "8a45aa41854fbc1824401662f93e08d078109f6e", "message": "p4est: add missing dependencies\n", "proba": 1.2733593166558421e-06} {"commit": "95d73385835dd1347cacacd1e25efa48938ee90a", "message": "[pinpoint] Use Change.FromDict() in the /new handler.\n\nValidation will be handled by FromDict(), so the handler doesn't need to call\nValidate() directly.\n\nReview-Url: https://codereview.chromium.org/2911613002\n", "proba": 4.37536982644815e-07} {"commit": "5748f997e9db6a8507f6c49381a9b4978fc404e9", "message": "Add windows anaconda compatibility\n\nChange the order of favor to put Anaconda above the system package\nmanager. Still give highest priority to the configuration file.\n\nReferences-Issue: #385\n", "proba": 1.491107468609698e-07} {"commit": "cff719b8f309c091ab94056770310225afb14f98", "message": "Convert comments into sphinx style comments\n", "proba": 0.9999994039535522} {"commit": "7c3401a78a128c2e6e193e55184d9616f6e48beb", "message": "Swallow Exceptions when using the \"mini\" growl function\n", "proba": 1.6641280353724142e-06} {"commit": "66544d98f15a0ac25d5519e64b7d8f549c0c565b", "message": "fix query reference in openstack poller\n", "proba": 6.43297084934602e-07} {"commit": "b6189a762fd02b2bf03a65099c237acc4d6faf17", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "046d0b59566471baedce300de6c4c1ea47437956", "message": "Rename extruder quality changes files when renaming a custom profile\n\nCURA-2484\n", "proba": 1.4480646370884642e-07} {"commit": "2d8365d6afa0c51471a396b2e9a3190d87a59513", "message": "Further imporve unittests.\n", "proba": 1.1198572735793277e-07} {"commit": "32410c4d758f71ec244558ae14d86d0549bc749e", "message": "implement set syntax\n", "proba": 1.4276160982262809e-06} {"commit": "5a3e8f0d4540ddfecfef185cb3e9e03f413d1057", "message": "Fix opt_parser\n", "proba": 2.835967052305932e-06} {"commit": "452d3f09b5728047752178ae6cb2dce48eccdff4", "message": "Fix deprecated issue\n", "proba": 3.298291176179191e-06} {"commit": "fd6147c13c473317c1d6eb473f0af6d2f116b754", "message": "fix infinite recursion\n", "proba": 0.0005595740512944758} {"commit": "29bd5845989ab0324f106b611c01c39d772d9505", "message": "Modified debugging code\n", "proba": 3.2693360481061973e-06} {"commit": "5c8ce3b32a195d4b350b87db155af50215cd9521", "message": "Strip trailing slashes\n", "proba": 1.1761521818698384e-06} {"commit": "38691b72059d587304fc366bd0177de4e4b2ab55", "message": "Stash db engine\n", "proba": 5.732553631787596e-07} {"commit": "661f7aeb6b235097063d24e89f16fe5dd49c0e03", "message": "Try bypassing properties.\n", "proba": 1.8433907200687827e-07} {"commit": "1d5e80b818de8c1f20f0ff84ff579a1fda8ce9dc", "message": "Fixed setacl \"no URI matches\" bug and simplified logic\n\n", "proba": 1.7022811960032413e-07} {"commit": "b63cc4eeb6a150e4964be84c2088dc41da06a86e", "message": "Add support for the \"Modulation\" wheels\n\nNow you can use the Modulation wheels to navigate the data array. The\nModulation wheels are absolute position encoders, so the position of\nthe wheel translates directly to a position in the array. If the wheel\nisn\u2019t touched after the program starts, it has no effect: the program\nstill starts out at the beginning of the array, even if the wheels are\nin some other position.\n", "proba": 1.0264987082564403e-07} {"commit": "2563db8ce28db14d9e64602aa5870ea377f9eb80", "message": "fix flake8\n", "proba": 3.947170910123532e-07} {"commit": "099afdb666f2baf85a9d0445b0a71598165eea98", "message": "fixing encoding as utf-8\n", "proba": 0.0018527224892750382} {"commit": "b74dcc16cb878306b6e181925164f9e944d7e1a1", "message": "Making the function less magical\n", "proba": 0.0037034014239907265} {"commit": "9826b747f0b6ca7126081a0c887a664cd2765d97", "message": "Document how to override filter and extract methods better\n", "proba": 1.5125624486245215e-07} {"commit": "4e2dbf9804ee7f21b54a5275bb5539f762420faf", "message": "Removed unused import\n", "proba": 2.9346514907047094e-07} {"commit": "eed0a307fd651b1c7440c48752934c5294ccb61d", "message": "added join function (left outer join)\n", "proba": 1.2685241301824135e-07} {"commit": "cee2c9249e4901e2a1b1ecf9eebec4c16ed88d7a", "message": "mask dialog finished\n", "proba": 8.565517077840923e-07} {"commit": "660d8155500bfafee729fe2ecd327702a053b44c", "message": "fixed reset size bug in pdfpane normal zoom\n", "proba": 1.488984509023794e-07} {"commit": "9f26bafdcd4a77d6bf81adeb3abf2074c6471f38", "message": "When DEBUG = True, add /error/ endpoints\n", "proba": 0.00015965398051775992} {"commit": "65478866a4cccced5e8ab54a82ed85d4ea55dff3", "message": "Remove python bindings to inverse convert method\n\nSimilar to the convert method, the inverse_convert from the Channel\nclass had no functionality and the write method performs the\ndesired operation without requiring external loops. Removing the\nmethod and dependent ctype definitions.\n\nSigned-off-by: Travis F. Collins <85b3090024574187adc8ed76279a4ab31e75e8d8@analog.com>\n", "proba": 1.4006296567004028e-07} {"commit": "a1dae31e08f2497c4edd87f6ffa8b77cdb155810", "message": "ensure that cache keys don't have spaces (or other illegal characters)\n", "proba": 1.337012776048141e-07} {"commit": "0bd1140c690fa89dd541b10194605e456070159b", "message": "Fix conflicts between enumerate and list.pop\n", "proba": 0.998654842376709} {"commit": "52e94a2b506fd6948be63dd396afd09480b8dd67", "message": "kwargs on reset for Reward and Action Wrapper (#1340)\n\n", "proba": 1.0201182476521353e-07} {"commit": "897f28319677d1c866a7d0f21faf15acbaf35e7c", "message": "Catch errors on reading input file\n", "proba": 4.530617729869846e-07} {"commit": "5c47ca94fcb4c8218bd28419ae19c85a692cf71d", "message": "pass --key args separately\n\nBUG=skia:\nR=jcgregorio@google.com, mtklein@google.com\n\nAuthor: mtklein@chromium.org\n\nReview URL: https://codereview.chromium.org/402613009\n", "proba": 7.200477512014913e-07} {"commit": "3f63c2855060943f4c368e6eb5de9413d2a138ec", "message": "revise Loss\n", "proba": 7.461778182005219e-07} {"commit": "4ec05f070062030cefdccaeed574b5096aad71aa", "message": "Add message string to the TypeError raised in user_create.\n\nThis doesn't actually get presented to the user, but it's still a good\nthing to be doing.\n", "proba": 1.357975776272724e-07} {"commit": "1a08f061c49465112991fd7e880acb042455d230", "message": "Remove extra sorting\n", "proba": 1.6935741768975276e-06} {"commit": "62d61d297b69d53a2d57aaa639c7abb84b8aa0d1", "message": "Preserve host as entered\n", "proba": 1.330325147819167e-07} {"commit": "8f564096290ffec01933fdbf19b0daa5633a67e4", "message": "don't hardcode the ezjail-admin location\n", "proba": 3.6961850128136575e-05} {"commit": "4db2e8fddee8eb987ec2eca1037b8242f9dda7af", "message": "Remove double File importing\n", "proba": 7.087174367370608e-07} {"commit": "e0151ae457b66d10781b3efa85e97b06f852734f", "message": "changed to fig.show to avoid floating figure\n", "proba": 2.8322648404355277e-07} {"commit": "5249b33e914b457f855346b409ba4c773b1fce8f", "message": "added function to import latex packages in the module\n\ngit-svn-id: b62a74e6a85b74e782ead772f54cba8e909798b9@67 6e728def-ac18-4b39-bad8-e7d984b3b6fa\n", "proba": 3.076050006711739e-06} {"commit": "8dda8fb31690994993e25e015516c6d0380fcc6a", "message": "turn on etags\n", "proba": 1.0993788919222425e-06} {"commit": "43b10375463b9605dd55acac8446107877609b93", "message": "TestCase knows how to get_new_category_data\n", "proba": 1.0329520137020154e-06} {"commit": "3df8dd4b38b84e60b15bdaab0c14031c0076b00b", "message": "typing: Broaden parameter type for bulk_regenerate_api_keys.\n\nIn zerver.management.commands.logout_all_users,\nwe pass a values queryset containing the ids into\nthis function, which is not actually a list. This\nbroadens the type annotation so that the ValuesQuerySet\nis accepted.\n\nSigned-off-by: Zixuan James Li <74923aee05c23ca90566381b5d6b0cd9451b6054@gmail.com>\n", "proba": 1.9628593861398258e-07} {"commit": "821873a295fcdb955d1a9e20371454847a10b352", "message": "Technically this should return\n", "proba": 3.1818067327549215e-06} {"commit": "68f968a9eff02c697a6a8da7ee85a2b92fe32d18", "message": "Render each frame.\n", "proba": 1.2949061556355446e-07} {"commit": "8e78e2eee5741820d583524ba5a0ba15f09ae93f", "message": "add userentry\n", "proba": 9.435700576432282e-07} {"commit": "c577c3437cdaae0521f7e6801506abc57875cb33", "message": "stringify migrations without numbers\n", "proba": 0.9999992847442627} {"commit": "445490d05718e3e3458a63a45e883d097cf59f83", "message": "do a star import in face_client/__init__.py so user can directly import\nFaceClient.\n", "proba": 1.214013423123106e-07} {"commit": "ff947b04b6d9b82bda0487343454dd4a5be5299c", "message": "switch job state fetch from batch to multiple single requests\n", "proba": 5.43281203135848e-07} {"commit": "8c3932af58a923cda6182b91f6a2fc08e67a609d", "message": "multicolor display for groups is back, with fast pick drawing\n", "proba": 1.2133443760831142e-07} {"commit": "08252b9fad2e77c4260a20d64b7773473f6e8bdc", "message": "Adding \"ParameterValue\" as optional parameter for \"VAR\" entries\n", "proba": 3.6787187696063484e-07} {"commit": "ce212c96f1d78a92b24717e696ec56f33427fc74", "message": "bind to socket, don't use gevent\n", "proba": 2.319763012792464e-07} {"commit": "cfa8abfd8b9406fd8100ff37bf6fb6811128dd77", "message": "Fix init\n", "proba": 0.9986026883125305} {"commit": "1169329a71fdbc927f0c5a21fff4c09b43b79f50", "message": "Annotate zerver/views/webhooks/github.py.\n", "proba": 1.1390632437269232e-07} {"commit": "6a47bcb8abde46cc139911ece361e2315885647b", "message": "chore: Remove unused import\n", "proba": 4.601667751558125e-05} {"commit": "92701630e12d0d955b2a9c0811c23065a94d3c51", "message": "Added docstrings to test methods\n", "proba": 1.5525039032127097e-07} {"commit": "f4e29629acb1f5f35330889a9b0aed3f3ecdde3e", "message": "remove SSL middleware because django1.8 supports it (and I intend to switch to that before launch, as soon as django-cms supports it)\n", "proba": 1.1767305352350377e-07} {"commit": "3e056e96ab7b5fd0446fc5f007f68be3a91a83fc", "message": "Fix the max-value assertion.\n\n1. Replace the constant value with a PRECISION-dependent (constant) variable.\r\n2. Replace the bit-wise assertion (which was BTW wrong due to operator precedence) with a simpler inequality assertion.", "proba": 0.00041153174242936075} {"commit": "7e7fb460b93f3edd66396ea7449fdd38519a5eea", "message": "raw like sushi\n", "proba": 0.0002850952441804111} {"commit": "2c96b1c08877c0211cda9821e0629f23a649eaf1", "message": "make sure not to include the hydrostatic form in the forcing twice\n", "proba": 2.758225150500948e-07} {"commit": "a450b3bcf8f5280ac50003934dff7b978f356c80", "message": "clean up tests\n", "proba": 1.1756878848245833e-06} {"commit": "0ecb0b2dade0a18b0ee50b524bf19945e2faa441", "message": "also set test for 1**NaN == NaN\n", "proba": 0.0021310485899448395} {"commit": "19253c702fbf75e88470f10a47b1adf8a70eed85", "message": "Small fix\n", "proba": 3.271289870099281e-07} {"commit": "e48928e07e8588f638c6bdfafc39ebf657013d65", "message": "Remove obselete RegisterView\n", "proba": 2.2376721631189866e-07} {"commit": "0b7a34209b504e28ec658e37fedd70665417d939", "message": "Change UnLoadedChunks to LoadedUChunks\n", "proba": 6.932871201570379e-07} {"commit": "115c562be4533482fe6592ba90358093c8b9a699", "message": "rewrote chapter parsing to use regexes\n", "proba": 3.346969776885089e-07} {"commit": "9ebd51ed0e95ed3f39d0672a93c09e80fdebbe9b", "message": "Corrected log -> logger\n", "proba": 8.42764052322309e-07} {"commit": "d4348b7635583e5b2bed8b32649bb5b6d44f0552", "message": "always mark btc get order as filled\n", "proba": 1.6721604367830878e-07} {"commit": "2c4ddd3e20f52466c91e8000a838cae177b6c909", "message": "Remove unnecessary print.\n", "proba": 3.4706304177234415e-06} {"commit": "0d75815b324d4c783a72ecfd79b7a3ff3ab36b04", "message": "fucking pdb\n", "proba": 4.4120378106526914e-07} {"commit": "2f6380e61271701e95636da192282a570bd31f20", "message": "Fix bu all recently aired\n", "proba": 1.409828200849006e-07} {"commit": "ed7f3edc1b4677c509c95f0a9be4fff4fc78a574", "message": "Made pythonista use global config directory\n", "proba": 1.4948564341921156e-07} {"commit": "fa147ee9e9b421a09f99be773de2837533c8e48f", "message": "Bonus IPv4 test\n", "proba": 5.40690052730497e-07} {"commit": "77b37a204a604309d7d30cd3c9d6a5b4555fa18d", "message": "unicode function added\n", "proba": 9.346979936708522e-07} {"commit": "31f8d12e5534ebba3b1a318949e89afa0ffff483", "message": "Cleanup 'band style' command\n\nSimilar to the weirdness with world's naming. I guess I thought it\nindicated a subcommand better that way?\n", "proba": 1.2470984245283034e-07} {"commit": "52b5b08910356b22cb9837bda88f73f517dd8652", "message": "\u267b Internal small refactor, move `operation_id` parameter position in delete method for consistency with the code (#4474)\n\nCo-authored-by: Sebasti\u00e1n Ram\u00edrez <668e2a3febf6a4b75056e840735926407962bc4e@gmail.com>", "proba": 1.1234214980504476e-07} {"commit": "747514ab8895c71d987585c947cb97e855d289fa", "message": "Fixed a 24 caret bug in the transitive_c build script\n", "proba": 1.8141470548016514e-07} {"commit": "4375483fe33f3fd7d01dfedc9f295d3e7964007d", "message": "Add inet:whois:{rar, reg} tests\n", "proba": 0.9981765747070312} {"commit": "ae1e2dbc385625c317ec63e04bbe272d8cb148aa", "message": "Optional meas channels for RB\n\nInput logical channels (if any) instead of string or full channel library\n", "proba": 2.7326373697178497e-07} {"commit": "a98fa27917190769b4bee40e567382cf71f611f3", "message": "Db functions fixes\n", "proba": 5.042599013904692e-07} {"commit": "8541b83f83d88a1427f62ebfffe5e3f334f16046", "message": "auto commit\n", "proba": 3.614777313032391e-07} {"commit": "edc0da2494132c34b5cce778c5d68ef23006f192", "message": "removed hard coded '*#' from ListItem class", "proba": 1.6195961052289931e-06} {"commit": "cce78d69f2353dcb6c11db264a8113d7f0ec7b17", "message": "calculate start tangent vector polymorphically\n", "proba": 5.70675865674275e-07} {"commit": "4e9eed029241e8381b462e2fc51ae943abb64853", "message": "Reduce memory footprint of waypoints and locations with __slots__\n", "proba": 2.34562685363926e-06} {"commit": "2ac0c6d7ff5259eae40bcdb5df73e587666735c8", "message": "Hotfix for downloading archives of selected datafiles and datasets not working with legacy (synchrotron) store directory structure\nWas broken for old format of experiment/datafiles as opposed to newer format of experiment/dataset/datafiles\n", "proba": 2.1322084364783223e-07} {"commit": "19f2fcbe5ab081cc327c40057fcd10a9c8d5cae4", "message": "Added ability to remove all controllers using patch from Tony Arkles.\n\n\ngit-svn-id: 033d166fe8e629f6cbcd3c0e2b9ad0cffc79b88b@1322 3a63a0ee-37fe-0310-a504-e92b6e0a3ba7\n", "proba": 1.076833541446831e-06} {"commit": "3e740333f4cb7d4cc2456ba4eadde93cd1c439d2", "message": "adapt function to different products for pot/energy discounts\n", "proba": 2.809136105952348e-07} {"commit": "6e9d29df1d6335d41a950633478551c78484a794", "message": "[FIX] P3: bytecode changes\n\n* Python 3.4 adds new convenient bytecode-inspection API to dis which\n is nice, however Python 3.6 also switches from the old bytecode to a\n new wordcode which breaks _get_opcodes and *requires* that we use\n the new API\n* add various opcodes which either were added in Python\n 3 (CALL_FUNCTION_EX) or were only used for some small corners of\n Python 2 but have been expanded or despecialised in Python\n 3 (BUILD_SLICE)\n", "proba": 2.7458190743345767e-07} {"commit": "aacd1f80cad654f336366510b71f5d9a2b48e3a6", "message": "[ofs/local/storedjson,bugfix][xs]: correct typo ('r' instead of 'w') in opening file introduced by pudo in cset:9b1d9dfa967c.\n", "proba": 1.2286190553822962e-07} {"commit": "a68d85040c4739f567971c47cc602107db8fa662", "message": "Use safer cps compare\n", "proba": 2.1327981869490031e-07} {"commit": "1ea516f6751b3bf4c7183ed3a18a997b0a790684", "message": "Make body matcher always skip comparisons of ajaxuploader requests (vcr).\n", "proba": 1.0485949530902872e-07} {"commit": "7ad75de7f38a95d4dc8eff7d099f38110b79f3bf", "message": "add convenience method to search for log files in standard LRAUV data tree (runs a bit slow); add ability to map a track based purely on fixes\n", "proba": 1.7354783210521418e-07} {"commit": "7f801b810587cb60b96949af5fd1516af6973f9f", "message": "Cache opaque-key plugin classes\n", "proba": 4.1956707264034776e-07} {"commit": "0be9a67d2fb09aa5a9eaa404e2fa808d77493406", "message": "Removed key/secret args from SnsHandler\n", "proba": 9.184621490021527e-07} {"commit": "202bb411b0400f393ffbfd9ff3db77806de22fbf", "message": "Rename fail + pyflakes.\n", "proba": 1.7497488613571477e-07} {"commit": "11af4d95fda2993dbd0b0de97e5fdefcc92e4d11", "message": "Update file_insert.py\n\nFix padding", "proba": 2.064981345029082e-06} {"commit": "8c9835042692369123675049839824e77257f37e", "message": "Print repr of GL_VENDOR and GL_RENDERER for drivers that return non-ascii strings.\n", "proba": 1.2345610400643636e-07} {"commit": "682d80703886048e4c36a30501320600632a209d", "message": "Fix query syntax\n", "proba": 0.023027800023555756} {"commit": "7ac19b26c488f97654558a625b9c64e2e8b77442", "message": "Update transaction.py", "proba": 8.95135713108175e-07} {"commit": "dee7755b7ce1c09c9c1109319664d7e3c0baa037", "message": "Add convenience websocket send methods\n", "proba": 2.6935140340356156e-07} {"commit": "4357f82979c0e335ad22356241b9415561ec9de0", "message": "typo\n\n", "proba": 0.0007799062295816839} {"commit": "552475bf1ea11f956dd6df5b7be39f3ad0f606fc", "message": "Also forgot to change the location of the dictionary in gybote.py\n", "proba": 2.478907390468521e-07} {"commit": "aa5362002f8761e480847f306c6393082b08abfe", "message": "add additional warning about guppy module\n\ngit-svn-id: http://compss.bsc.es/svn/compss/framework/trunk@3078 9ab3861e-6c05-4e1b-b5ef-99af60850597\n\nFormer-commit-id: a23bf302d37dc43a58dd17fcf71f899bb35d9b22", "proba": 7.89682644608547e-07} {"commit": "af3c9b6165fb599445b78fe21a232b53119f3933", "message": "Ensure lcp is unique\n", "proba": 4.274312175311934e-07} {"commit": "ea4e351ffb83b08861548ffaed28bb1aec9ffffa", "message": "bug fixes for default lang of notice\n", "proba": 1.7150107112229307e-07} {"commit": "1203199f2307bed6c1a8b6a62a024d196582ba17", "message": "quieter download\n", "proba": 2.620281293275184e-06} {"commit": "957a37d690812c1757ea35d55cc2ff4937181851", "message": "Added main function.\n", "proba": 1.1484613793300014e-07} {"commit": "350958036487beaf747376c2b4ea022e9766af2e", "message": "change env\n", "proba": 2.1127696072653634e-06} {"commit": "39b0faa3ec14648b4af24cfa5ae2b9294ed2e327", "message": "[RLlib]: bug fix, should be input_dict['is_training'] (#19805)\n\n", "proba": 2.4202596250688657e-05} {"commit": "60de8e3e8e047e5d8c072190274109bd17bb3bc9", "message": "Coverage 100%!\n", "proba": 1.2680331451520033e-07} {"commit": "38af666300985f36f3b99c90c903e5ee828463de", "message": "Improve docs in spool.py\n", "proba": 1.516252382316452e-06} {"commit": "186143912bd4005f5f0164fb9f099dcbaca15dc1", "message": "Remove KernelObj from KernelTree and make a node the BlazeElementKernel.\n", "proba": 1.1110068953712471e-07} {"commit": "aa74150a257b829cce80233d247edd729a5639c6", "message": "Simplify router ref check.\n", "proba": 1.5651460216759006e-07} {"commit": "07a64b75b455cd4dd7c0c531a33371645db26ab5", "message": "Fix docs\n", "proba": 2.6344785055698594e-06} {"commit": "4b3ea09dad2648049c9bf0689a18b47798415289", "message": "fix QChem unittest file access error\n", "proba": 2.421257079276984e-07} {"commit": "6fb488dc4a514906f77483f12fd0135fad3ddb4e", "message": "Fixed extension keeping period.\n", "proba": 1.3716199021018838e-07} {"commit": "f668c7db7e4a8704cda34eda77931861e19ee8e7", "message": "Modify regex to accept new -debx suffixed image versions", "proba": 3.9389806261169724e-07} {"commit": "b87d1c4cc6eeea1794e23b10d9949130c11a268a", "message": "headtail.py: Deleted.\n", "proba": 2.4637716933284537e-07} {"commit": "0e478e497343a10c1d3f6fa9643380567b567c87", "message": "Moved RFC3896 compliant urlencode method into utils. This should be used in all cases where query parameters are being added to URLs in place of the standard python distribution version (urllib.urlencode).\n", "proba": 1.0286193230513163e-07} {"commit": "06f675e037e6bb7b8c35cded5a264f7a46bd6803", "message": "Don't double up the units\n", "proba": 2.342917241549003e-06} {"commit": "77ef0c125050d3307e9c663963f0e90fe72635c1", "message": "exit_program from error; MountNotFound error\n", "proba": 5.192435310164001e-06} {"commit": "0e1e218943a4168cf015c4f37c1d7dba17fbba6f", "message": "fix for issue with recursive processing of files where they are not\nin the current working directory\n", "proba": 1.7223717918568582e-07} {"commit": "db0d98d64d1e010b8a0d51225510f0708a22a691", "message": "Added additional length to AZ in model as it was originally not long enough. It was being truncated.\n", "proba": 1.054137683809131e-07} {"commit": "798dce62e992cb814f310c4749d6af760f907c28", "message": "changed default que for fabios network to short because it takes under an hour\n", "proba": 1.3663897391325008e-07} {"commit": "a39b078307ad9ffcbb8b37f34af8c10185ab7d9f", "message": "Fix division by zero.\n\nPiperOrigin-RevId: 206385795\n", "proba": 0.9991113543510437} {"commit": "a368f4997cbe423895e9374cb6413117d811e6a5", "message": "Enable tests for nn_ops in eager execution\n\nPiperOrigin-RevId: 466506823\n", "proba": 2.3539378446457704e-07} {"commit": "102fd6adb6fa4e16ebb155ac5e4682934957ed3c", "message": "added readonly attribute to BaseField\n", "proba": 2.9797399747621967e-07} {"commit": "69e70ef41e7c060e5abcf138f9a8aea62b5a9ccf", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "36df0a280e21069a1b707e95b0e564118b6f5af4", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "4bf976a4612c29f0a188a33afa379c879083fdad", "message": "changed, so pylint doesn't linger about 'next', again\n", "proba": 2.366664801911611e-07} {"commit": "2de9d6604fc6e7dc61079466903647582daaca94", "message": "Clean up blog.py\n", "proba": 3.6119377000431996e-07} {"commit": "efc4bbd0c20578fffc5adfbd4a0cdf44d45290fd", "message": "Make `fragments_groupby_mtag` also work on a caller-supplied fragments array.\n", "proba": 1.2330160359397269e-07} {"commit": "d6d628764d4bde7ae0ab63b07cefbe43f8a819ed", "message": "Changing name of ipy1 related classes\n\ngit-svn-id: e6d44ec3d56a4b51a9cad284a9139aeaee5a4315@82 3447e8dd-9f38-0410-a211-e3037a7e05e3\n", "proba": 4.1344756027683616e-06} {"commit": "9828be5e1b320171b2b2f0f7abe47920fef5e4bb", "message": "case insensitivity for commands, CORS flags\n", "proba": 8.116121534840204e-07} {"commit": "7c618db6235f9b13b373d432fbb9f3f5c272f766", "message": "test both sorts of LDOs\n", "proba": 2.4517277779523283e-05} {"commit": "322441cfbf1daaf7b4b1f5ce635649095ebf11aa", "message": "fix incorrect tensorflow.bzl for ROCm headers\n", "proba": 4.826406438951381e-07} {"commit": "3126372a72e6112e16768bcc30439bb7b96f6716", "message": "Update dill_archive from dill-0.3.2 to dill-0.3.4.\n\nPiperOrigin-RevId: 444706740\n", "proba": 5.403132945502875e-07} {"commit": "3c6b839a72fdcfe3161b8904b52ef41c15208869", "message": "Added option to skip sig testing\n", "proba": 2.0928750643633975e-07} {"commit": "51a3a61af4a96a631dbe4756bea5743b8bc5f8e7", "message": "blacken\n", "proba": 2.8316915177128976e-06} {"commit": "df2ee91326791ebd0fc46ff8f0b067a580dd07cc", "message": "add pusblish_date to product lists for in-grid editing\n", "proba": 1.7261918117128516e-07} {"commit": "78ebfcd6b0d97470d93d6d45f1ba4bb281db0500", "message": "Removing duplicated code from sigproc.py: read_header\n", "proba": 4.802069452125579e-05} {"commit": "d026065cf4e3742fb140864ce65cfe9047e7f525", "message": "fix(dbusclient): print return value for cli actions only when it exists\n", "proba": 2.42399266880966e-07} {"commit": "1f624aad7863ebf613ea3f6992a30aa97a50cc3c", "message": "minor modifications to sabio_rk.py\n", "proba": 2.7139924441144103e-07} {"commit": "ddfdb501cde1a6b78d12e4c3d6602d91116c49b6", "message": "cerbero: Print logs for all previous steps on failure\n\nInstead of only printing the log for the current step, print the logs\nfor all previous steps that are available. Helps in figuring out,\nf.ex., compile issues that might be caused by incorrect configuration.\n\nPart-of: \n", "proba": 3.5733698950934922e-06} {"commit": "2869740923608b3509821c5a94529ffdb91e4578", "message": "Improve error message in Teachers (#4151)\n\n* Improve error message in Teachers\r\n\r\n* Better", "proba": 2.6150738108299265e-07} {"commit": "e62d035d11ff3b0313ae337d6af4be5a35e8464c", "message": "patch list allowed in dateo for now\n", "proba": 1.1871728844425888e-07} {"commit": "591f50b9424d1b0120e357aa49f7a9ac4775a00c", "message": "Don't print fixed-address if host has no IP\n", "proba": 4.151540451857727e-06} {"commit": "2e2936578bd65111d76a55b9622215b2a8993e2d", "message": "organisaatioluokitus: adding an explicit length-check for coordinates.\n\nThere seems to be an issue with some coordinates having a high confidence value but the coordinate is clearly wrong.\n", "proba": 1.860350238302999e-07} {"commit": "0a0c8206e978331176ceb05587e7d0eb562b241b", "message": "tools.bench: Removed pymills dependancy on misc.duration (imported this function)\n", "proba": 1.0281819129431824e-07} {"commit": "5bd20a346d6be6c16437c1b2f3a9510f9235aff0", "message": "Handling missing source or target file types\n", "proba": 3.763436495773931e-07} {"commit": "b8255deed5810d1a0bf7eb25e4f23de3f0bd2967", "message": "[project @ Add documentation]\n", "proba": 1.1441639458098507e-07} {"commit": "de6f0a7b126cc5abaee41c73cf2a9876ab0b437e", "message": "Fix creating new data table on python 3 (#2654)\n\n", "proba": 0.0003097848384641111} {"commit": "745b0b2d83cdbd28fcb4f565b77b31ef6f888350", "message": "Remove try/except block around CDLL\n", "proba": 2.442678237457585e-07} {"commit": "abe88f676c3a3866c72a1500f1709adcd7aa75b2", "message": "Fix some more queries\n", "proba": 6.044740803190507e-05} {"commit": "31d7d3ea88f0ea0fbbe027d2fb00948209676781", "message": "Explicitly convert SF133 \"amount\" column to floats\n\nOtherwise, we will see a mix of floats and strings, which throws off the\npivot_table step. We fill in NaNs _after_ that step.\n", "proba": 1.6173659389551176e-07} {"commit": "c9b36bf8cc8dc199f077740d462d924191309319", "message": "adding ex_eapi_vlan.py::\n", "proba": 2.7556276904761035e-07} {"commit": "a4beab26c4e38a0c393991553c47ef8af39a1a3c", "message": "Fixed a minor bug config validators\n", "proba": 2.327323613826593e-07} {"commit": "38271eb0689a1148f0016cd6a7f104582eb9815c", "message": "Removing left-over test\n", "proba": 8.81776713868021e-07} {"commit": "8d86ab2f1d2e03a4bd36f20323f980f5ef871a49", "message": "job/params: added new parameters for bcr calc\n\n\nFormer-commit-id: eece6db5994ce3fa9ee2ceba84b37cffb862e914", "proba": 5.188168415770633e-06} {"commit": "3ba5da30d3eaf6b0f78c38f807ae08a74b3f1517", "message": "Don't display expiration warning for expiration date in the past\n\nIf the expiration date of a password is in the past, don't display the\nexpiration warning, as it's not helpful and confuses the user.\n\nThis can happen after a user whose password was set to be changed on the\nfirst login changes it, but probably also in other situations, depending\non how many more bugs in Keystone there are around expiring passwords.\n\nChange-Id: Ib79f6ef354c456bbdc2d7c1d4371ae15e825b557\n", "proba": 0.0003940422320738435} {"commit": "1d310024bdc067e5d8c36d1545927c2306703939", "message": "Throw an error if no filename is set when TraceDataSource is started.\n", "proba": 1.1954790579693508e-07} {"commit": "c0205012161e79c34e5f8dcd262524aa60266a79", "message": "add south migration tool\n", "proba": 3.909180747996288e-07} {"commit": "2d5d6349aa4a7c83d1266755b51e9d909c56a2e4", "message": "Enhance menu_url_target syntax\n", "proba": 3.0588926165364683e-06} {"commit": "b8adfb954cd184ee1516d041eecea23e7e048411", "message": "rosenbrock divergence\n", "proba": 2.705500264710281e-06} {"commit": "3cd9567b570686ff5eb8c71c56652286aee61fd1", "message": "#241 (qa) (fixed) writes API tests for OpenMRS rules\n", "proba": 1.2460237996947399e-07} {"commit": "9d8e4a8a26002bf9d073703e6191f6c8c7c232f5", "message": "added statcounter cookie code to all pages\n", "proba": 1.7901292892474885e-07} {"commit": "879c3d1c0c52d4f293d6d8b65ff47128e85102ca", "message": "In main.py function led change method from default GET to POST. call set_led.\n", "proba": 1.2219514644584706e-07} {"commit": "4fe1196d4d17cf1f4eacbf0db76380de6a9e5841", "message": "Add disq plugin\n", "proba": 6.07227605087246e-07} {"commit": "51d14907df5e73ab26a6c27048e60557517bb9fb", "message": "Support anonymous checkouts and users with no first and last names\n", "proba": 1.5234837746902485e-07} {"commit": "9673e634966df3792d4103e5fd7ac156cd9ba677", "message": "Added PATCH method to default config\n\nThis patch adds the PATCH method (rfc5789) to the default permitted\nHTTP Methods in this middleware.\n\nChange-Id: Ia5ead0fe27a0e5e6a0eaec532bd267276b003794\n", "proba": 1.2058317224727944e-06} {"commit": "c4673f1820008c644d65438b5dc0fc1c74d00d63", "message": "load SOLR working\n", "proba": 1.8329846795950289e-07} {"commit": "c3e20fc74cdd657d48d07867da158b4a757d425b", "message": "scp work continues\n", "proba": 1.4145392412956426e-07} {"commit": "638d6b700ddbc733c24b64ccf056f96c63c1c67b", "message": "Implement secure RBAC for blacklists\n\nThis commit updates the policies for blacklists to understand scope\nchecking and account for a read-only role. This is part of a broader\nseries of changes across OpenStack to provide a consistent RBAC\nexperience and improve security.\n\nChange-Id: I8ba1c1fb57eb8a7abf2c101d446259cfc7a8d34a\n", "proba": 1.3257623550089193e-06} {"commit": "496207745f1c4b25d22bae7e3c3c55e424ae71d6", "message": "apps.core.models.assignment: Documented delivery_types.\n", "proba": 1.183671685112131e-07} {"commit": "b0d20ca56194332f7e6e1759d9cc1d8d6d850ddc", "message": "Update apex.py\n\nadding a note to the `Apex` class to address #25", "proba": 1.4509372192605952e-07} {"commit": "9e0987961ce857c8070f2f0f1bc07311020a8603", "message": "rtd testing stuff\n", "proba": 2.1410497197393852e-07} {"commit": "9ab159eadfef64ea119d96ff5213b109330af553", "message": "new is file validator change\n", "proba": 3.565550287021324e-05} {"commit": "55ca88f6c6d1e26030839c064027ef1e6c92d280", "message": "safe version of pip install\n", "proba": 1.8530320744503115e-07} {"commit": "2c46d7493bf97af2283494934f5d496707d5c8b3", "message": "Fixed #5979 -- Always use SITE_ID=1 when running Django's core tests. This\nmakes things much easier. Thanks, George Vilches.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%406814\n", "proba": 5.671654434991069e-07} {"commit": "7ec6efee696ac065b902a864f962b35e4f7a12fb", "message": "some updates on python test script\n", "proba": 2.2029298918369022e-07} {"commit": "a21b6e10a591762c060e4d2e1b54edfa3d7fb862", "message": "We don't want the tests in the coverage report.\n", "proba": 1.5083331561527302e-07} {"commit": "66272bd575e6f7b18c1281b79edaf627ac5c9fe9", "message": "use sqlite in-memory db for tests\n", "proba": 5.834061767018284e-07} {"commit": "ebaca7679c85fbdb61cc18d7389e532b52ebb592", "message": "Fixes to the settings.py for CircleCI\n", "proba": 1.8488273667571775e-07} {"commit": "0328fecf21fb72846b5221f8fcea55dca6421a6c", "message": "Add additional filebrowser test settings\n", "proba": 3.6275824299991655e-07} {"commit": "8e0cf7b9b6ea04b0dafb62597b989b16a6e72ced", "message": "Tests corrected.\n", "proba": 3.5914695217798e-07} {"commit": "3f0a3cd5540680be07e25afe282ed7df7381e802", "message": "Remove check for existance of VPNs. Not having them may be correct\n\n", "proba": 1.6495407635375159e-06} {"commit": "42938e85de060d25c4482112d4671a08c5d51e72", "message": "fix test_50k - nr_reduces should be upper bounded\n", "proba": 0.0002750133571680635} {"commit": "da55404369df63b3e9b173677ea3887f17aedc1a", "message": "Convertion to utf8 strings in a few tests\n", "proba": 2.156993787139072e-06} {"commit": "addda287b957521abaeb53afd054b0dacdb99ec1", "message": "add class Test_snapshots, method test_1_create_snapshot_from_repo\n", "proba": 2.3331645024882164e-06} {"commit": "04c7c4ccdf697ee647dd99c95f1c47bb0e1f0da4", "message": "Fixing unit test\n", "proba": 4.797669248546299e-07} {"commit": "564340c3bf6df8c8704379a650a19e4fc20894bf", "message": "Added test_read_config_fileread test.\n", "proba": 1.2491541667714046e-07} {"commit": "d40c3b29830eebd2ef05c1f42e0eca41be6c822e", "message": "add test_main_post\n", "proba": 5.218968226472498e-07} {"commit": "3080318c450e682474aa1d3ed0695008feaaf621", "message": "change API for multibase\n", "proba": 2.901687423673138e-07} {"commit": "09bd758fb88387cf9e58666b1bbcded4e019037e", "message": "deal with reparsing the config files\n", "proba": 2.928922526734823e-07} {"commit": "79afcf670db29d124c185fb1f6599a312752fe1f", "message": "removed never used variables\n", "proba": 4.523778898146702e-07} {"commit": "e450baf0f822e607ef01f3573259e1213352c2ef", "message": "finally silence flake8\n", "proba": 3.169397473357094e-07} {"commit": "da837f10a176cb95f1c6127efa2597eb20444aa0", "message": "Remove defunct test.\n", "proba": 1.4446427485381719e-06} {"commit": "4a8337dc8cd64a997787aaa15553809f10014545", "message": "Refactor\n", "proba": 5.142872396390885e-06} {"commit": "90021f5203d44aae32bc008645e9c970d2c9cc6a", "message": "Remove test_collect_inventory_basic_from_directory() as the exact same\ntest exist in test_model.py.", "proba": 1.3172160606700345e-07} {"commit": "730545e1358e2f0aaac07a2d42d87b315064300a", "message": "First tests for csp\n", "proba": 1.6411415515449335e-07} {"commit": "6b3c4697fc36409280911e378d7c146854bbb08e", "message": "Remove unused code\n", "proba": 5.7894176279660314e-06} {"commit": "3187cee2c9221e665ee141b694132fab7715995b", "message": "fixed tests\n", "proba": 7.448433620993455e-07} {"commit": "23037ad7634ea992b0c67278c63c2fda3b6d9587", "message": "tests: fmt: fix expected format\n", "proba": 0.0013132333988323808} {"commit": "a1874160cc93a0a67062b10780b1fef7aa2458ee", "message": "fixed test errors\n", "proba": 1.1367294519004645e-06} {"commit": "1a1abaef7a65b42f4ee6feefaaf58dc86f66c881", "message": "Better integer casting test which should work on 32-bit machines\n", "proba": 1.0550705837886198e-06} {"commit": "1c602be597b160571d1e78229340b1dae8d33fc6", "message": "tests: Add MPI interpolation w/ duplication test\n", "proba": 2.1279750228586636e-07} {"commit": "bccd0e52141d98aa195dd080475ba8187827832a", "message": "tests: Test MPI overlap2 mode\n", "proba": 5.751583103119629e-07} {"commit": "b883cdd9ec0fdf651c1625eec4297eb1df440df5", "message": "Tested ModelException when using index and default together\n", "proba": 1.3617119520858978e-07} {"commit": "56230bebc1703ede55bea8e37abb9a9e4d398df8", "message": "Drafted WCS test.\n", "proba": 1.2388777292926534e-07} {"commit": "91ef48395af746e0748c4bdb1a234619d9afd303", "message": "Add tests for RMQ implementations\n", "proba": 1.8894986908435385e-07} {"commit": "b1fbeb3c7c0307f1690b89f72677ec7d94315d8e", "message": "Add unittest for rpc.TcpChannel failure cases\n", "proba": 2.3446108343705419e-07} {"commit": "9ce14929ad538fccfbd1ca98e82e0ebc737908fb", "message": "Make rsv tests run even if rsv is not installed\n", "proba": 3.5516359275789e-07} {"commit": "97b8a19dc0b7225b48616621c4c5f872404437f7", "message": "Added test for sending a list of strings over a TCP connection\n", "proba": 1.4136168147160788e-07} {"commit": "d54ef5988129012939b8be26a34a50fa9e719ac5", "message": "Test getting data from job that does not exist", "proba": 6.682868843199685e-06} {"commit": "23dee28c3a99100e7e71d12e1bb77119106ee0a1", "message": "wsgi accepts multiple configs from now\n", "proba": 1.1998376692190504e-07} {"commit": "640b3f882135cbc4c4c8ee70aed6f549ed0e5b63", "message": "Stub tests for local file objects in get()\n", "proba": 1.453333027257031e-07} {"commit": "e97c8fd586737f82de76710400d324459cd3589a", "message": "tests/unit/api.py: minor improvement to docstring\n", "proba": 3.9233245274772344e-07} {"commit": "ad477d30e90d0e65de918204e0ca6bb7440732ad", "message": "Add two more tests to headnode_delete_hnic\n", "proba": 3.1356589147435443e-07} {"commit": "79d919d44b6e658dc0eda654f153f8ace290909f", "message": "don't read data unnecessarily\n", "proba": 2.4540870526834624e-06} {"commit": "fed8461e4bff9bb90abfd850676b4078a8dcf4cb", "message": "Improved version check so it is much cleaner, fix relative import issue with Python 2.5 not working\n", "proba": 2.1277233486216574e-07} {"commit": "78c1532bf2e08c58efa2e11b5a11ed87815bfea7", "message": "Make patchless testing actually work.\n", "proba": 1.09047022078812e-07} {"commit": "b941f79121fd8886c51c7f54ae75960bbc522e79", "message": "fixed wrong exceptions\n", "proba": 1.1013748917321209e-06} {"commit": "8f8954ed259cb7e94eade7975d18c61f1780bdcc", "message": "server.py: add tornado_server_kwargs argument (#6350)\n\n", "proba": 1.528748043710948e-07} {"commit": "278e77f46a0d1de0293e5d94a0e4aa476bfe32ac", "message": "avoid spawning a shell\n", "proba": 6.394658612407511e-06} {"commit": "c5edd6afe70b7b523aec5065c06ad388878f5707", "message": "Added random ordering to faciliate selection of featured birds (#86)\n\n", "proba": 1.0010286644046573e-07} {"commit": "52ef2ef594d903d38709121746aab6c7d9c15e02", "message": "Hotfix Added: Version\n", "proba": 1.292279705467081e-07} {"commit": "e619f452877c54c2801415abaf0f93ff3889adb4", "message": "Fix pickle tests\n", "proba": 4.625090696208645e-06} {"commit": "78a6423c5a9a908a579f4f6e06dc37ff475c1420", "message": "adjusting cached_view to also do a doc_get if the doc isn't cached\n\ndoesn't feel right, but expirations and other invaidation might squash the master doc.\n", "proba": 1.0703030284275883e-07} {"commit": "6a82d0a8aebe2b7194c3a881846054523dcb617c", "message": "adding flipping flag for on/off doc/view caches\n\nsimpler invalidation framework, adding generational view caching based upon view/doc_type", "proba": 2.1768040880942863e-07} {"commit": "a1a442d9f7c382ab322f90874fa0482ddf33d5ca", "message": "TEST: testing odd dimensions in downsample scalar and displacement fields in 2d and 3d\n", "proba": 1.7401519869508775e-07} {"commit": "1820e6f9ea41acb086a92a4cd0bafb58e0a00cf8", "message": "PEP8: whitespace.\n", "proba": 5.017749913349689e-07} {"commit": "23e9c281c3fcd47558467ac6f0bba61489219f91", "message": "fixing gain distortion\n", "proba": 7.722185273451032e-07} {"commit": "448c9c752e30adae13bfb35189ad2ac0ef28a297", "message": "Updated result analysis code to generate CSV with solution finding time and reconfiguration time in seconds.\n", "proba": 1.1284747358786262e-07} {"commit": "4b76d8396ee20de2949a71b54ebede15b66fbe24", "message": "Fixed failures in memleak tests on PyPy--need to call gc.collect() explicitly; PyPy seems to have different GC tactics\n", "proba": 2.3134532511903672e-07} {"commit": "2b17e44010e6d1f208851b9b0ee748ab9b603244", "message": "Remove old local settings loading\n", "proba": 4.1683435370032385e-07} {"commit": "2aa7dce4a42feb5cd3ceb9324e58da524cdb4b6f", "message": "Derive download directory from filename itself\n\nIn some cases when using `-f` to create sub-directories from metadata,\nwhere the full slugified download filename and the non-slugified\ndownload directory happen to differ, the download would fail. This\nhappens because the directory the track needs to be downloaded doesn't\nget created.\n\nWith this, the download directory will now be derived from filename\nitself so that the sub-directory name always overlaps.\n\nFixes #727.\n", "proba": 2.655662569850392e-07} {"commit": "2fd204093d355b00af606fc8ed23dd718bdf15a2", "message": "Set fields to \"NA\" when none set; otherwise the offsets / detection code on the R side fails.\n", "proba": 1.0452961163309737e-07} {"commit": "c8133102000666b5cbc34132f8e9ab2bbe13b691", "message": "SFM: updated presets\n", "proba": 3.4933731285491376e-07} {"commit": "fbedd6b153a35e4174bfa15b429265928373fe34", "message": "Move very basic input processing from Mixture to a new function, preprocess_mixture_composition\n", "proba": 3.5216287415096303e-06} {"commit": "af409cfacac17d41ce300ee715bcb02360bff4d0", "message": "aceepting friends\n", "proba": 5.225681434239959e-07} {"commit": "aaee26f07c7a6c508426df2393b963f2a4244afc", "message": "Update Sed.py", "proba": 4.941356337440084e-07} {"commit": "02fd933efdf82a974096e6aa22d7ec9d71374d28", "message": "Fixed #12628 - Don't ignore read-only fields in GenericInlineModelAdmin during save. Thanks, Alex Gaynor.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%4012367\n", "proba": 2.393623788066179e-07} {"commit": "932f5067c7e1f9540c80b9c43a1097004f6ea801", "message": "Fixes #11: fill tool error with lock transforms enabled\n", "proba": 1.5485174742480012e-07} {"commit": "cc058465a1747bbd18a147cb3f88920b0d03e517", "message": "removed debug stuff", "proba": 2.9116611699464556e-07} {"commit": "6247d27d8698d98b912c164d6b94b4a5e5edfc2f", "message": "mark for release\n", "proba": 1.7771424154489068e-07} {"commit": "2fb1fcd16a7bfa6fb85f460eb08d60ee834dafc9", "message": "Fix ImportError with IS_POPUP_VAR for django>=1.5,<1.6\n\nImportError: cannot import name 'IS_POPUP_VAR'\n", "proba": 9.307573236583266e-06} {"commit": "ea959478a2a13b9000f4cc8f778c9f09a2b8c1f4", "message": "Mark connections in pool as closed to prevent reuse\n\nNeeds further discussion\r\n\r\nExample Script \r\n\r\n```python\r\nfrom sqlalchemy import *\r\nengine = create_engine(\"exa+pyodbc://\", pool_size=1)\r\ncon = engine.connect()\r\nprint con.execute(\"select 1\").fetchall()\r\ncon.close()\r\n# in exaplusgui\r\n# select * from exa_all_sessions;\r\n# kill session XXXX;\r\nraw_input(\"Kill session in exaplus and Press button to continue\")\r\ncon = engine.connect()\r\ntry:\r\n print con.execute(\"select 1\").fetchall()\r\nexcept Exception as e:\r\n #[40004] [EXASOL][EXASolution driver]Connection lost.\r\n print e\r\nfinally:\r\n con.close()\r\ncon = engine.connect()\r\nprint con.execute(\"select 1\").fetchall()\r\n#[HY000] [EXASOL][EXASolution driver]Socket closed by peer\r\n````", "proba": 2.6917111881630262e-06} {"commit": "628f168bcb28a34f779c71888e2582f9e140384b", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "7284d51b8dc37ea593ad54c4dd1b9db4877ed159", "message": "Add visible_to_all_users to run_jobflow method\n", "proba": 1.2374777043078211e-06} {"commit": "d9ac4b00465dfdc8633db12f1703500a5e2cec11", "message": "Don't filter if the window_size is None\n", "proba": 0.9999971389770508} {"commit": "046fdb4722c347d8a3774fbf92905081848c4f99", "message": "Bump version to 0.11.3\n", "proba": 2.8911355798300065e-07} {"commit": "1a079dadc39432f9f7c6a79b0b6d988a10499655", "message": "Added DkimTokens as a list marker.\n", "proba": 1.0791214322125597e-07} {"commit": "7eb77a4a904d1dc14786b0ed9e5b3648c6b334dd", "message": "Fixing permissions on tables during grant/revoke\n", "proba": 1.8765349807381426e-07} {"commit": "4afb3dd89e2697963cd9bc03bbfebd5c63c95b80", "message": "fix serialization of parameter of type map\n", "proba": 3.453563977018348e-06} {"commit": "43438d01f64076f15a4de76b454991d37a4f7b33", "message": "[fix] added comments\n", "proba": 1.295429967740347e-07} {"commit": "276f1a21499958ca348f991f62937c05f2d554c7", "message": "dict instead of map\n", "proba": 1.4119547813606914e-05} {"commit": "6d3f3d0d67046eeaf0d4b78d28a912326270997d", "message": "Include the deployment's ID in the command output.\n\n(imported from commit e5fe9f31a4c9336a8b6cb449938d935705639e71)\n", "proba": 4.942039595334791e-07} {"commit": "b5682db88cb4592d4415f5d17a26909575f178eb", "message": "fix(contrib/aws): fail when AMIs can't be found\n", "proba": 5.976218631076335e-07} {"commit": "5e51346a4b132369b396456a82c053a7ec1187bc", "message": "Delete tclab_mhe.py", "proba": 1.3802813555230387e-05} {"commit": "9edf608b195203be6b95226c04068cfb81037c13", "message": "narrow the parameter distribution by removing the velocity, which is\nindependent\n", "proba": 1.5448873682544217e-06} {"commit": "e03149450bbd37b4040a31842086eb3b64892d4a", "message": "Use a fake user if fedmsg.meta returns none.\n", "proba": 1.7819435527144378e-07} {"commit": "df947d4d26bc8e314899a118bc7079bf18c44066", "message": "remove unused django.contrib.messages\n", "proba": 1.6388405583711574e-06} {"commit": "39cbea866dcb6607e83a05744687ce021daeea07", "message": "Fix bug making it impossible to add beer to order\n\nSaves the OrderItem form after setting the global order id.\n", "proba": 1.0285938145671025e-07} {"commit": "12dc0b9b36055d977bd446dd4dee121569801301", "message": "explain in comments what the code does\n", "proba": 7.988997481334081e-07} {"commit": "8b493c6044386e97051a702aa48c45d95ecf1c09", "message": "bump version to 1.5.1\n", "proba": 3.93477932902897e-07} {"commit": "07bc8936abc8da362daeb2e0777d90b420a0ac21", "message": "minor clean-up on alpha pagelabels - for exact duplicate origination, strip off dates from pagelabel #269\n", "proba": 1.1653838782876846e-07} {"commit": "2b0b21c3c003bb70f65857f22a8de5006a83156b", "message": "Properly assert that varargs are at the end (#11)\n\nWith version 3.5 the varargs are now part of the normal argument list and thus\nit is not guaranteed that they are at the end. But that is required for the\nrest of the code to actually do the right thing, so it asserted that but did it\nincorrectly.\n", "proba": 2.1533915628424438e-07} {"commit": "520481f84bd502813662e85d00d5042973982c35", "message": "Added documentation and removed completed TODOs.\n", "proba": 1.0659330484941165e-07} {"commit": "edca8a5bbd98c1490cb932d32cfa6eba5aee7fee", "message": "fix(utils.py): \u4fee\u590d\u5f15\u4e0d\u5230\u4e3b\u7ad9\u7684bug\n", "proba": 2.923731585724454e-07} {"commit": "09f6f64e5b7d115251c5fc6b42a697da1f127508", "message": "Make logout view do nothing if the user is already logged out\n", "proba": 2.5253348212572746e-06} {"commit": "61aab05f118ca9b53292381d596587ca9a2ed387", "message": "sendredpack -> send_redpack\n", "proba": 2.8268894425309554e-07} {"commit": "2fb19f0eaac9ac549b1a1ca50afd2f9487d83cc5", "message": "Add path to CredentialSet.\n", "proba": 1.2650846770156932e-07} {"commit": "dabf77cd4e0715cf0fe6c9d59f66bdd63cc544f3", "message": "Use the unicode_literals future import to make all of the strings in this module the correct type.\n\nAs if by magic.\n", "proba": 1.133390696850256e-07} {"commit": "bcd4550a9ce9c6603eb1b6958760529b36246bb6", "message": "Address review comment: more accurate comments.\n", "proba": 1.117263010996794e-07} {"commit": "6eec69d11c7532a9e344dfd9d7050e1135502b9a", "message": "Add control_valve_choke_P_l\n", "proba": 8.005440759006888e-05} {"commit": "c806fa5c5339c5aeea470029382c2054026203bc", "message": "fixed iter 0 confirmed_pos issue\n", "proba": 1.6135422242768982e-07} {"commit": "b658702811ceddced712a552488962fab5eb86a1", "message": "Add type checking in execute() in usertask.py\n", "proba": 9.502144848738681e-07} {"commit": "a62f71ace38ed7ae2c3ccc03d3d7de641cd20633", "message": "fix the build\n", "proba": 1.5704548786743544e-05} {"commit": "ca2809a80ac04300c016e6eb6c199e2c5ef78c3b", "message": "Fixed bug with the notification engine;\n", "proba": 1.1481208161967515e-07} {"commit": "44336c7776474ffe4009b26f99bb1c093b2da730", "message": "[BUGFIX] Ensure that DataContext.list_datasources() iterates through config instead of relying on DatasourceStore requests\n\n", "proba": 2.9599115691780753e-07} {"commit": "66be7452ebcaca67aaf397e414b51bbef80549c7", "message": "making regex comparisons case insensitive\n", "proba": 5.315682938089594e-05} {"commit": "1b04b825fbd814dd672915a54f3e9333afe1f8a6", "message": "fixed so that newBatchSize is always the chosen size\n", "proba": 2.7752969344874145e-07} {"commit": "5208bdbbdab9068327343f94ca48764873c10e50", "message": "version 2.0.3b25\n", "proba": 8.002921276784036e-07} {"commit": "e7bae996dea4d1362899ad54575ff851c4b51161", "message": "fix error messaging and remove spaces\n", "proba": 6.949977091608162e-07} {"commit": "b6cc571e02905b0956835b650ea76bae292dced0", "message": "Removed server crashing if hasDefault is not present\n", "proba": 6.758315862498421e-07} {"commit": "97b80f3da9b091ee6daf73d04410cc2bce831e61", "message": "sci: fixed test issues with python 3\n\nHttpretty returns bytes, so we need to convert the value\nwe are comparing against to also be bytes with Python 3.\n\nSigned-off-by: Paul Osborne <2d2305038687bbc5c42a93e4e4419307a6b61a9c@digi.com>\n", "proba": 1.447576096325065e-06} {"commit": "ded3e814ee2e935e1ae65aa24ea09d782107a640", "message": "Removed TODOs\n", "proba": 1.7387817763392377e-07} {"commit": "de938e1b70b72df2a8b6ed108149a9d43197151d", "message": "Swap color channels when using encoded database\n\nFixes #52.\n", "proba": 1.0522413163016608e-07} {"commit": "5545aa6ce7d840a1fa46ceccece8dc693847de4f", "message": "added safeTypeName and histogramDict\n", "proba": 3.4826086903194664e-07} {"commit": "972a051d11dbe8c23a899d7fea2abc067cff7b3a", "message": "Big chars\n", "proba": 2.5015467031153094e-07} {"commit": "b25afab180fb64cdbb963ffea217aaa54cdb74e9", "message": "don't reload templates on publish\n", "proba": 2.9996493822181947e-07} {"commit": "19d1570cec23ce381c9d9cc71ffea6743f31c305", "message": "Changed to bytestring\n", "proba": 7.156060746638104e-06} {"commit": "2c42b2ed8555c4f826837fa21f1fc1e3678ecfe2", "message": "more fixes\n", "proba": 1.2181001807221037e-07} {"commit": "0b7eb1f187d7b797e753bf52bf446d7133c4cb77", "message": "subscribing\n", "proba": 5.480510480992962e-07} {"commit": "b0c783e2f68c45b91c9d6ecc7499c90c6d6c9219", "message": "Make getting and setting configs easier\n\nNo direct usage of encode/decode, no direct usage of ConfigParser.\n", "proba": 1.3292243750129273e-07} {"commit": "01b81adca7f47c895b11a9ce4b6681b79e0f2b4e", "message": "linting errors to ensemble transform tutorial\n", "proba": 1.573107084595904e-07} {"commit": "f70dd26afebbfba0f3f366fdfa966bef1a99c4d6", "message": "Add signals to TransformationList and method for extracting a scaling matrix.\n", "proba": 1.0917896986484266e-07} {"commit": "0c285b3f028b013ea4c6c1e2ca2772260d6ff72e", "message": "Fix session set_cookie for share session bug\n", "proba": 2.531060658839124e-07} {"commit": "784f5f3fb7141942c6ff9a1680c66efaf9672c80", "message": "Shush the linter\n", "proba": 4.0139320844900794e-07} {"commit": "9920d818d8f203617ee1d8934b77770609e8447c", "message": "Add output of cui mode to demo_plot_state_mpl.py\n", "proba": 1.08289650597726e-05} {"commit": "f9d66598eb5d7d47186c25614510b18e1695e946", "message": "add tests for text representations of dates\nalso, fix pep8 fuuuuuuuuuuuuuuuuuuuuuuuuuuuuu...............\n", "proba": 8.601896297477651e-07} {"commit": "8d1711ebc5d31188ae18d1c574aac9eeb0eaa459", "message": "chore: Use click.echo in favour of print\r\n\r\nAccepting suggested changes because `click.echo` has improved support for handling Unicode and binary data that \"does not fail no matter how badly configured the system is\" _(ref: docstring)_.\n\nCo-authored-by: Suraj Shetty ", "proba": 6.26489338628744e-07} {"commit": "d8dca020b314b8ad06e0fdcc4d3abb4c877621bf", "message": "fix: Remove `cmd` only if exist (#12886)\n\n* only remove cmd if exist\n\nWhen calling this function from backend this line raises key error as there's no such key called cmd\n\n* style: Simplify code\n\nCo-authored-by: Suraj Shetty ", "proba": 7.216878202598309e-06} {"commit": "c899bb5cbd1db653dfb148557ac0ecc41066bbc8", "message": "fix: remove unsused variables\n", "proba": 4.049466588185169e-05} {"commit": "4f12dae18ad2642cc8d00d09cbd0c7b14fd07613", "message": "Chabrier\n", "proba": 1.5898299352556933e-06} {"commit": "5382488e28bfbbcfcdb5aba92c5de75472bf44f0", "message": "Fixed #11357: contrib.admindocs now correctly displays many-to-many relationships. Thanks to Ben Spaulding for the final version of the patch.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@11127 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 5.596903065452352e-07} {"commit": "cf7a078774dbcfa0fa2e286fd7907e15478d55d3", "message": "Added a related name to the ForeignKey in the abstract base class of the\ncomment models. You'll never need to use this name, but it will lead to invalid\nmodels if not present.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@8803 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 9.91250362858409e-06} {"commit": "8e84cd1572faaec9974e94f671c9744444ec6eb8", "message": "Fixed CsrfMiddleware post processing so that it in the presence of multiple\nPOST
s, only one tag is added with an id, for HTML validity.\n\n\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@2900 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 5.501936357177328e-06} {"commit": "60e302109a694f37bee812fcb2bc2c131c2f6175", "message": "Removed some testing code inadvertently commited in [8348].\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@8349 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 0.00017710716929286718} {"commit": "b30cba4e2bd764cd4f1ec5c0ae1664a078ce967b", "message": "Fixed #11993: fixed the the `floatformat` filter on `NaN` values in Python 2.6.3. Thanks, kklimonda.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@11619 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 2.9118380098225316e-06} {"commit": "db5f728436658afe9872acc3d3b2a2de99a32f20", "message": "Fixed a small typo in the wordwrap filter's docstring.\n\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@3353 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : 593b3a7259926a1bfeb84137d6caf14714314453\n", "proba": 0.9995724558830261} {"commit": "976088ee2057f93f0234b026492c763a53af6945", "message": "Load and use fixture data if available\n", "proba": 1.8666752055196412e-07} {"commit": "78cab743aa37a781e152f3fc471ae6f13424e21d", "message": "DJANGO_SQLALCHEMY_ECHO now falls back to False when not present.\n", "proba": 1.6908212785438081e-07} {"commit": "e02f49d9dff7ac0f92670ad55da7e767d6a6bc33", "message": "fix wrong field\n", "proba": 1.8378383401795872e-06} {"commit": "4c2ac858d3e06c08e78dcc70c199c9c5ad32ae7d", "message": "add tests for user deletion transistions\n", "proba": 2.9276321811266826e-07} {"commit": "420e9f5ae753ad1439848370edd5a6dcc13328d4", "message": "fix form context tests\n", "proba": 1.691769398348697e-06} {"commit": "ddcd7a4c9930a64c7f13e0e7a9b6c5a976766d90", "message": "FEM: gmsh mesh tool, fix geo tolerance value\n", "proba": 1.5022192201286089e-07} {"commit": "52b5a776c7bd5e87e3ff2cd967af8cbe4dc44635", "message": "FEM: FEMMesh2Mesh, some small changes to work together with FreeCADGui tool\n", "proba": 1.2089736856069067e-07} {"commit": "3003b7d9c40783bff2ba4173cc30043a206cd64f", "message": "FEM: frd reader, add reading strain data and calculate stress and strain vector\n", "proba": 1.256281620953814e-07} {"commit": "ced74875e9f68c5991b8882d2fe6f48f26fc98d9", "message": "cambios\n", "proba": 5.796223831566749e-06} {"commit": "92947e2a301158a0e414c711139cabd2ec84e063", "message": "Remove consolidation gui from AllmannaRad\n", "proba": 1.6256453250207414e-07} {"commit": "2eb1871eba783d70c6156363429ab9d44e0c3cff", "message": "Update unit tests. Fixes #44.\n", "proba": 1.0321056720385968e-07} {"commit": "2614339a6ec58ef68afcfe4287e7b806ad95e354", "message": "Added multiprocessing for checking submission and write stdout directly to file\n", "proba": 1.365959860777366e-07} {"commit": "e4dd59bdf3b33d75fc1714c1327220dffe3a29a7", "message": "Updated file renaming\n", "proba": 1.2536418125819182e-06} {"commit": "f4b198d62038632b426bae13a2e1124fb3d1f348", "message": "Makfe fuzzy search as default for desktop application #457\n", "proba": 1.2794050974207494e-07} {"commit": "81d6084d2ad8e349df2c8410ce8a6d82c9b85fb2", "message": "without interpolating macros, which are not available here, this attempt to uniq does nothing\n", "proba": 2.4553554567319225e-07} {"commit": "a6d962afc0b2da202d9e214661d6f6336dc3a636", "message": "raise an error if a symlink points to itself\n", "proba": 5.196207553126442e-07} {"commit": "1eea0ba2570c80ef28a0efbd9e8aa7024f6403db", "message": "add unit test for #1216\n", "proba": 2.2046175729428796e-07} {"commit": "988d96a18ab97d680944412065b825c0d83cedbf", "message": "Use the path returned by osf\n", "proba": 3.404420567676425e-07} {"commit": "16ab6c0c60f19b376bf33e90abc93fd94d8a92f1", "message": "get aws from env\n", "proba": 1.9964907949088229e-07} {"commit": "20acdc021a200a2b771ff51a9b2950a7545cbe16", "message": "[AC-4900] Cleanup regex error message\n", "proba": 2.2827269674507988e-07} {"commit": "759c4b6d10426f21173c82c315002d6e71cd089a", "message": "[IMP]Improved code as per v9 standard.\n", "proba": 1.1121772303113175e-07} {"commit": "aace5ebe115ee0ca7a0f3c8ac90f0553a0c322bf", "message": "Remove np copy, returning new array\n", "proba": 9.501850399828982e-06} {"commit": "8f9417ae22521b8956856a56f1bb498261797282", "message": "reorder phrase\n", "proba": 0.9999995231628418} {"commit": "35eaef3ae925c56978bb0b789ce56561f806d7e5", "message": "Restore model with TODO Fix memory out\n", "proba": 1.5093777960828447e-07} {"commit": "56e22d0854cb90a2fa159e9cada61829dbec2a92", "message": "Fixed to models.Model\n", "proba": 1.9915313487217645e-07} {"commit": "72760c6e6c53411dc84e7f3a16208c4b0a6fa54d", "message": "fixed tests\n", "proba": 7.448433620993455e-07} {"commit": "8c3b772933a8d87513b68ac4a1bfdd566f2d3335", "message": "Fix Dell EMC Xtremeio drivers report wrong value\n\nfree_capacity_gb is reporting as free space multiplied by provisioning\nfactor. Correct value to be free space left on storage\n\nChange-Id: Ie5b3b4c814bdec4fc914c633157fd4ea858a953b\nCloses-Bug: #1746228\nSigned-off-by: Kien Ha <3e36ebd6a7c89ee7d9a20a5fbbffc571f107e566@gmail.com>\n", "proba": 1.4294154482286103e-07} {"commit": "1cdae0aafe613089a5f75410400d4f684544d963", "message": "Bug facettes de recherche\n", "proba": 2.2234283392208454e-07} {"commit": "33ce37c6b9bc1463ca021e7b472c0ec879d9c372", "message": "Fix facets_default_number\n", "proba": 7.829171954654157e-05} {"commit": "a9061d8b4248c049bfb29c3ee425b674dc752d2c", "message": "LIKA-444: update fetch_xroad_errors to not exceed maximum fetch date limit\n", "proba": 2.1555180751420266e-07} {"commit": "ab1173cc4ff2231131bf67e9068daca05759df1d", "message": "related_name adde\n", "proba": 2.9882798116886988e-05} {"commit": "cccc812824f9ace518371b5e25ec6397efcac252", "message": "Added generic.py.\n", "proba": 1.2275695837615785e-07} {"commit": "13157cae952f743e7811a982bae79ca09f0e594e", "message": "Fixing injection in fuzz_header due to the new syntax\n", "proba": 3.282145826233318e-07} {"commit": "8a2709af18e15c874c675e0e16a07b97e4a85992", "message": "Reload Projects and Agreements from SIGIDI by admin action with empty queryset\n", "proba": 1.1422407908412424e-07} {"commit": "798e6db635f195b7e8946264cee7511cae6b9d0c", "message": "Temporary disable parameters and participants.\n", "proba": 1.2061660470408242e-07} {"commit": "cd4c6b50815e3f15a862b9d63a3d7719d8d5f822", "message": "new class for harmonic complex tones\n", "proba": 2.1553084650349774e-07} {"commit": "d41aaf910d58143bb0e5ac22b7cd6ea9a3aa832c", "message": "Update Vigenere.py", "proba": 2.5962430072468123e-07} {"commit": "047dfc77141e3eb07b9e392e75879ebc0b4bcd6c", "message": "romfs pruner: do not try to prune .swp files\n", "proba": 3.1705067726761627e-07} {"commit": "f19db339c1fd85860e2188d3e0e6e865474cbe98", "message": "better erorr handling for es index mapping\n", "proba": 2.277373596371035e-07} {"commit": "9242696d4201337e0079c697f3fd1646e6599902", "message": "fix mutli-index search\n", "proba": 9.898881216940936e-06} {"commit": "d9647d377676234a716246e4204ac886a7ceb228", "message": "repair formatting\n", "proba": 2.53309917752631e-06} {"commit": "c3bd1bb1f83333f4a41d3761a44309ede21de575", "message": "Fixed a small issue with undo_bill\n", "proba": 3.5737238590627385e-07} {"commit": "6cc7c25ebff2ac2193668b0c4d9f82eff9c8e31e", "message": "Update tri surface example\n", "proba": 2.09269330753159e-07} {"commit": "94f9abd00da0a31a8e3e567ce05126d9dd7cdc7c", "message": "Correct docstring error pointed out by zooko", "proba": 3.369076466697152e-07} {"commit": "aceb3e2781aad1e91eea5aa9aa0340479fc3bd11", "message": "flake8 another file\n", "proba": 1.4398244729818543e-07} {"commit": "be54bded295519a0f6c504774c78cbbec3283b3a", "message": "enforce hard link limitations\n", "proba": 4.835183062823489e-07} {"commit": "fc8fffc16cb3101dc8cd985ba9d342ed9993793d", "message": "examples: casas_sda: update AlResult function calls\n\nSigned-off-by: Tinghui Wang \n", "proba": 1.3825886924223596e-07} {"commit": "78e1247394b423d9ab03114d42998ed77ec85c85", "message": "Refactor syntax string transformations in documentation/syntax/_generate.py.\n", "proba": 1.244249716592094e-07} {"commit": "b141198f1da94d95a61ab31c10a95815fb399b71", "message": "EnforceConfigLogBuildRequirements greylisting initial implementation, checkpoint commit\n", "proba": 1.844572494746899e-07} {"commit": "081733f646f2a9d44ba7b4e91d7b5f100fa3f990", "message": "add main function\n", "proba": 0.001199997030198574} {"commit": "f5bf9021d377dd13b44e9153726c4f3b3768b76e", "message": "Fix: --help was no longer showing all the help text\n", "proba": 1.3116784430167172e-05} {"commit": "4f2980aa4d1a282a975bec50e3229392997e0f66", "message": "* build/transform_sql.py\n Re-add the \\n after a line when generating the macro. This matters\n when the SQL file has non-whitespace before and after the newline\n (e.g., \"CREATE\\nTABLE foo;\").\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@876813 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 2.0696083083748817e-05} {"commit": "76935a5d66a3cd90288e9cf7a9dd389539fc0eca", "message": "Fix simple logic bug missed in review of references logic.\n\nTEST=None that I know of; only triggers on nightly builders\nBUG=chromium-os:15372\n\nChange-Id: I6e27d93715be3687e82b828d53db1e3c8d01408b\nReviewed-on: https://gerrit.chromium.org/gerrit/14935\nReviewed-by: Brian Harring \nTested-by: Brian Harring \n", "proba": 4.714949227491161e-06} {"commit": "b9a84d266b17df9e6073a6c45f5269df8d2f59ae", "message": "correct bug\n", "proba": 4.1552716538717505e-06} {"commit": "0d6aa8f42371cf90a24a135bcf3ec496e2fff76e", "message": "Order comments as latest first\n", "proba": 1.2557293871395814e-07} {"commit": "70fb45894a18105ea5cecf2ee260b4e3aa6ee2cb", "message": "Chnaged nest to statevalue\n", "proba": 3.6803959346798365e-07} {"commit": "e63d0eff3310e97b4c2509e60b7ff219d0f60431", "message": "Solves fatal naming issues due to previous update\n", "proba": 5.117192358738976e-06} {"commit": "533872c6e3538ef68e8710321b9f1159596576ed", "message": "fixed ll, ls for san-fabrics\n", "proba": 1.2064467114214494e-07} {"commit": "e29dff590d487373e5212e7aa232a6edda5d7b70", "message": "Compliance to pyinstaller\n", "proba": 1.7047049993834662e-07} {"commit": "0cb44238112dfbc6c8f5c65b3fecc8d595027f67", "message": "[examples.linearelliptic.OS2014] use LincombOperator in create_product()\n", "proba": 1.3023320377669734e-07} {"commit": "31bc882cf08a48e20db6c81d46b8d6fdb73a7557", "message": "Update efficient test to use the stateless random op\n\nPiperOrigin-RevId: 435399855\n", "proba": 6.350522312459361e-07} {"commit": "188cc29c5c33120ce0ffc9234262547e94d7a7c9", "message": "Update after recent sporco-cuda bug fix\n", "proba": 1.3438979351576563e-07} {"commit": "75f8df695a17e0e13d40c1d1d8870ff6cf0a1ea2", "message": "CLIMATE-603 - Default example download to /tmp\n", "proba": 1.1799208721186005e-07} {"commit": "adb9069a72d545492da391491a20dec22a622748", "message": "change lists to sets in tagging doctests -- more resilient to tag search method changes\n", "proba": 1.2768101953497535e-07} {"commit": "fa0580e7b473c3350a6f1745e2468d0c414d8dc5", "message": "Adding conditional to skip max_length error in windows\n", "proba": 2.733276005528751e-07} {"commit": "23ce6e0bdb4edd0775b82353d3878c1c7769396a", "message": "[delete] unnecessary code\n", "proba": 0.0008834388572722673} {"commit": "82eb949ca4d94ce5ee2d337d87928ae98ae8880b", "message": "Change keyboard shortcuts.\n", "proba": 2.9058523409730697e-07} {"commit": "01a262c61c1fb9d09fd6fa35e458c11a84fbf8e5", "message": "[Assesment] CS1F - HCI Assesment Report\n", "proba": 1.2079433986400545e-07} {"commit": "3d2c85c0f0eb63d1cccf7a75584099f1f0c69af3", "message": "[Lecture] CS1P - Python review\n", "proba": 1.2749545419410424e-07} {"commit": "48786ec6d1c5e923f144530e36020e53343b665a", "message": "Cur debug prints too much, so reduce the output.\n\nPiperOrigin-RevId: 384799133\n", "proba": 7.120837835827842e-06} {"commit": "c4a74cc72fb3a6799abff44d8c11140dcba38911", "message": "Added event processing callback to python NC supplier\n\n\ngit-svn-id: afcf11d89342f630bd950d18a70234a9e277d909@117241 523d945c-050c-4681-91ec-863ad3bb968a\n", "proba": 2.889035499720194e-07} {"commit": "54d943d87063f2b5a0ecb8f6b13ab7c33c3218f3", "message": "add :TODO: to key server as bug fix reminder\n", "proba": 1.3356962824673246e-07} {"commit": "3f4d22c396bda2e60bdf8780219f3766921274ab", "message": "Remove some python 2.7 u\"\" strings\n", "proba": 0.9999994039535522} {"commit": "6a34f5d7180c7a95001023e6b4bf6e3a375a0eef", "message": "Upload to BQ after NCSO reconciliation", "proba": 1.3083146654935263e-07} {"commit": "1ff839a1d77cd47dda0974a38afa5b5eddbe5b68", "message": "If detector is dectris then use a different regexp to get the date etc, out\noincluding removing .nnn from the end of the seconds (though I guess this may\nbe needed - it is however not supported by the dtandard date stamp...)\n", "proba": 1.2318089659402176e-07} {"commit": "09705924264ba785528a880ff463171ec549c3ed", "message": "Added test for mod and divmod SEPT\n", "proba": 1.4207637377694482e-07} {"commit": "63c066ad97d97034c41716bda910193d11898579", "message": "trying itterator\n", "proba": 1.5158321730268653e-05} {"commit": "967e7c560379ca6091abe7c5885aae24014d19bb", "message": "INDY-1450: add comments to test_node_catchup_with_connection_problem.py\n\nSigned-off-by: toktar <693efcc3eefc70dd401303f85580b26042b61007@dsr-corporation.com>\n", "proba": 1.2107551583540044e-07} {"commit": "7651f34bf92587cdfcf054e20e7f965f4d383e60", "message": "Move strip_z_values() into BaseDistrictsImporter\n\nWe've only used this on kml files so far but in principle\nother geo formats may encode altitudes which we need to strip\n", "proba": 1.0943791295403571e-07} {"commit": "569520625c9719e2f3e8669b638981e0c690a7d8", "message": "[py] reduce the default script timeout in executing_async_javascript_tests.py (#5326)\n\nWhen using w3c driver, the default script timeout is 30 seconds, so\r\ntests expecting to timeout and not overriding the script timeout take 30\r\nseconds to run. Setting it to 0 makes the tests a lot faster. Then, it's\r\nreset to the default value once tests finish.", "proba": 2.8735735213558655e-07} {"commit": "ce1fe9a5d6de5307adfd2c3c540b51cf79210251", "message": "Fix small bug in openmm_simulations\n", "proba": 4.783588565260288e-07} {"commit": "b7a83fd989a3da3709deb68e486dfdfb8faee9f2", "message": "Fix temperature parameter in validator\n", "proba": 8.798922499408945e-05} {"commit": "32cc22438313cf524ca4a27466763dc510d8336e", "message": "savefile now integrated with calcfreqs function\n", "proba": 1.3306474500041077e-07} {"commit": "329f488be4bdca5bf381bc349ee0e8767b8ae4c7", "message": "Adding support for RFC2821 MUST items.\n\nMichael\n", "proba": 1.3483783334322652e-07} {"commit": "b8513d91f917c7bee79c42c6f493b72ea8d7176c", "message": "Cubes changed colour. Added component to bounce the cube's position around.\n\nMichael.\n", "proba": 1.0149732077024964e-07} {"commit": "53ee4ad0710a66764e698b750488abcee9a9e1fc", "message": "added warning message to WISE converter\n\ngit-svn-id: 4511b3d811903a91403bf66535cdd426db6c410e@499 7a03b35a-38c0-11de-8fef-1f5ae417a2df\n", "proba": 4.442716772246058e-07} {"commit": "febf39effebc8f042602f72530fd926d99923d76", "message": "Added syntax to see if download file already exists and if it does do not redownload it\n", "proba": 1.5557306198843435e-07} {"commit": "7f0e817e819ce1011c941e2535b984fe91e8c8a2", "message": "Fix parser nonetype error\n", "proba": 4.148023799643852e-05} {"commit": "51060603e921165454e233bd7391a965955d3aec", "message": "Warn re skipping functional tests due to lack of twisted\n", "proba": 1.3440633495065413e-07} {"commit": "aa6d27fc15affc046874669fa3fe1cbd964d54a4", "message": "rename Form to FlaskForm again. I upgraded the version of Flask-WTF\n", "proba": 2.226600770427467e-07} {"commit": "a04733b785cf6163c681d6d32c2f1e4cf22af7df", "message": "Remove extraneous settings.py include\n", "proba": 8.652148721921549e-07} {"commit": "4f0c85bd6e7527c392f6e5c9715dd6ad54a17f50", "message": "Fixes for PPV dilation-based masking. Include spectral connectivity rejection\n", "proba": 1.4281796723025764e-07} {"commit": "c0240d01c59afc11ce6c8d24fd91f8d09c26fd1b", "message": "Bugfix for query on where and in\n", "proba": 1.2905431390208832e-07} {"commit": "ce1ce858298f89598f91979233d916552d84099e", "message": "Minor formatting.\n", "proba": 1.9760311431582522e-07} {"commit": "535d485b271a2c8bfae4a8b669e8e6650f605fb3", "message": "Cuzcatlan now officially supports basic information coefficient functionality. Small text modifications\n", "proba": 1.1691876977693028e-07} {"commit": "55ca838ad55cd3332de3a67d48271b7fb39fef96", "message": "parenthesis [skip ci]\n", "proba": 1.103586964745773e-05} {"commit": "a6a8daa9d284439faeb37203e5c6a9a59129172d", "message": "\tmodified: crawler/rate_crawler.py\n", "proba": 1.6890578535821987e-06} {"commit": "d56f65d4fb3e016e1776b8d5246328ecc6dc82e2", "message": "cookie expire 1year, restore newline after \n", "proba": 1.2072270294538612e-07} {"commit": "ed2384e017e7e4a01d92d2683e5642c470e702f3", "message": "Revert offset breakage in integration test\n", "proba": 1.770207234130794e-07} {"commit": "7ae275775cec82f1ea531a20497b4fbd6d13194c", "message": "Aggregation taht works in MONGO shell and not in Pymongo\n", "proba": 1.5023410071535181e-07} {"commit": "e386fb941984e56651c7a299f9252c76254e19e7", "message": "re-testing\n", "proba": 3.430499759815575e-07} {"commit": "04e5a26f2e19f014a3f332930058f34ab9beee00", "message": "removing staging replacement\n", "proba": 3.346344215060526e-07} {"commit": "3b3950b66e3bd2be98c5f90246e771eefea87c76", "message": "Warn against undefined block elements\n", "proba": 3.5179459700884763e-07} {"commit": "ed315e44589ca4a0eba5572ceed930ded292f8dd", "message": "cope with specialness of Lynx timetables tomorrow\n", "proba": 1.1653416720491805e-07} {"commit": "2247149ba40538e4e88f94d87694c5f24918041a", "message": "Labeling nodes only\n", "proba": 2.1362751567721716e-07} {"commit": "6df1583f03a5b0164844ede85d742c4bf4ecf9fe", "message": "Fixed failing test (which was failing in master). walk_test now returns 25 items in the walk rather than 21, presumably due to adding of S2 cells in https://github.com/googleinterns/cabby/pull/72\n", "proba": 8.152053396770498e-07} {"commit": "022858981252253198583926fce74c6f911ad9dd", "message": "filled in functionality for computing pid and merging new pid profile into current average\n", "proba": 1.9822087438114977e-07} {"commit": "1dccb520d8ef672d5858c662eada366a3724f1e5", "message": "Fix long line [flake8].\n", "proba": 4.2760028009070083e-05} {"commit": "4fad7c997bd9cce723491b62412a6631c37a5ef8", "message": "Now has options to filter by chip peak match\n\n-fc (filter vcf output by *ChIP* peak match)\r\n-fn (filter vcf output by *no* ChIP peak match / by *new* tf_sites )", "proba": 1.3919674302087515e-07} {"commit": "812f60ec5e8f1caf523386949f0d2e0ea2a2cd3d", "message": "InfinitePlane depth buffer working correctly for the first time, though expensively.\n", "proba": 1.0778192915950058e-07} {"commit": "1dea9b6c4c3cd4e537976367b1892b17ccb22faf", "message": "Prevent ActiveIpset from recreating ipset after on_unreferenced().\n", "proba": 1.1575295388865925e-07} {"commit": "ed49ff7e9003d76f3a0dcca3615a3875e8c432a0", "message": "Set dialog as inbound when created in `run_dialplan`\n\nI'm not sure this is the right fix but looks like\nit handle #87 for now\n", "proba": 1.2915269564928167e-07} {"commit": "bfb74548eafd5353b398546278e5e532d9cb14f6", "message": "make REST api conditional\n", "proba": 5.184311248740414e-06} {"commit": "3303da409355f46167787689bfafb719811e1015", "message": "Disabled individual/selected object hiding since it conflicts with annotation (and isn't useful)\n", "proba": 1.0994632049232678e-07} {"commit": "4ec8b70e1c77fac8d784fe8918f4e66783d473c4", "message": "add vm id to heatmap canvas\n", "proba": 3.413796889617515e-07} {"commit": "ccf1fc67834f9350cb1ba21c8310d78d5cddb4da", "message": "fix: typo", "proba": 0.9999938011169434} {"commit": "e02e4d58d9c0a726c3bf8cbf81b9f28b50dcb132", "message": "resolution_series_min_week added to time_masks\n", "proba": 2.444187998662528e-07} {"commit": "4e2e68950f867adde762523ee8e88adc2f4e381b", "message": "Wrong error message\n", "proba": 0.00010220781405223534} {"commit": "17cd45dd336780956710867bb43470dd5f6c670a", "message": "webos-image: Update layer pins for 2013-11-18\n\nmeta-webos as of 2013-11-18 13:45:05 -0800\n\n7d5dafb webos.inc: Change default PACKAGE_ARCH to MACHINE_ARCH\n\nOpen-webOS-DCO-1.0-Signed-off-by: Susan Montooth \n\nChange-Id: I85196ff7ce21f3968d512f73913ad867ddabdeeb\nReviewed-on: https://g2g.palm.com/3921\nBuild: Susan Montooth \nReviewed-by: Build Verification\nReviewed-by: Susan Montooth \nTested-by: Susan Montooth \n", "proba": 2.0027609082262643e-07} {"commit": "d833440fec342a574f8bafb529b5e622a7d40c2c", "message": "more date handling\n", "proba": 2.4398516984547314e-07} {"commit": "750fde9c9769a7e0fb9f3a74747b287420a2b01d", "message": "Use relative imports in cybox/common/__init__.py\n", "proba": 6.7436121753416955e-06} {"commit": "0d44e568d8706ce8db61c384c8a4c4dfc9caeae8", "message": "webos-image: Update layer pins for 2014-06-23\n\nmeta-webos as of 2014-06-23 17:16:51 -0700\n\n81282a6 Revert \"webos-image: nyx-utils=16,v1.1.1\"\n\nOpen-webOS-DCO-1.0-Signed-off-by: Susan Montooth \n\nChange-Id: I8b9cabd9b186cdf10beb7ba71d279702a3664c38\nReviewed-on: https://g2g.palm.com/6091\nReviewed-by: DCO Verification\nBuild: Susan Montooth \nReviewed-by: Build Verification\nReviewed-by: Susan Montooth \nTested-by: Susan Montooth \n", "proba": 2.1166346186873852e-07} {"commit": "ca057429cf65e111449cf5c394075bc0089aca0a", "message": "Changed content type to text/html\n\nSetting content type to application/json, even though correct, causes problems in IE:\r\nhttps://github.com/valums/file-uploader/blob/master/readme.md\r\n\r\ntext/html produced the best results for me. Was getting an error with the\u00a0recommended\u00a0text/plain\r\n", "proba": 4.646110028261319e-05} {"commit": "eac6ac32bcba8eafff56f35d1a7c7cc311fa96cb", "message": "hash in 1M chunks for low ram machines\n", "proba": 1.611078914720565e-07} {"commit": "724d8e24fa95a51bfc674be282c894c42c86969d", "message": "Remove pdb\n", "proba": 4.216555680613965e-06} {"commit": "5a628501a51e4026622e113f19e606b80ae4466d", "message": "[project @ Fixed packagexml.py to handle release notes with leading whitespace]\n", "proba": 1.0571861253083625e-07} {"commit": "b4110be021eb4c95b4ac743fe6f91cbaf9ffba9a", "message": "use absolute import to allow external libs to provide devices\n", "proba": 1.367526607509717e-07} {"commit": "096f7a845c40b0378b82c8b5679cf37250c8f23f", "message": "Fix flag displaying\n", "proba": 6.373456358232943e-07} {"commit": "4e11a93b6fe7b8aeb5d704fb87321c423381cd82", "message": "Meddle with bar spacing, make bar width dynamic\n", "proba": 1.1886206863209736e-07} {"commit": "b1c58d6bc99522a16de5b4f553f571cca8ee7e00", "message": "{Core} Use semver for azure-mgmt-core (#16074)\n\n", "proba": 1.1428662105572585e-07} {"commit": "bd6c7121f1a4947a5e64440f3141f7d6490dce3b", "message": "Fix splitlog setup and teardown problems\n", "proba": 2.5701984895931673e-07} {"commit": "5c34f0a0e38a4a742b902526e66d89dd9c992789", "message": "pylint.\n", "proba": 7.759924187666911e-07} {"commit": "220cc0045f117003c503644f14f2cde64e3fa64a", "message": "For the time being, disable material controller export.\n", "proba": 1.0964810570612826e-07} {"commit": "25689d7e5013f705289d3c0a106c20d180f0bda6", "message": "added description field to Project\n", "proba": 1.408151177884065e-07} {"commit": "a4aab9f2fba76380929d3786420e5bb4c825497e", "message": "Fixed: Linux file dialog remains scrolled after changing directory. Fixes #210\n", "proba": 1.307758310531426e-07} {"commit": "c34f6321efcfb249c30067d836772527e2c442f6", "message": "Move huge dictionary out of the NamespaceParser class\n", "proba": 2.698661489830556e-07} {"commit": "0c93f3b84cc163828310b1f3ba323dd5a81f768b", "message": "lib: adds prefix_attributes and rename_attributes\n", "proba": 7.776118309266167e-07} {"commit": "de9c6433d5fef6342b7003d345138b8bdcf4a325", "message": "Material property updates for Blender 2.56.\n", "proba": 1.0266514038903551e-07} {"commit": "ef0f2f182601fc1582c9f229010a62053e425344", "message": "Add lower unique index\n", "proba": 0.9986068606376648} {"commit": "a9115d7f35b3edf71bf93ae29e2de3bf8e50baa1", "message": "Fix for Python 3 argparse default usage\n", "proba": 8.154432862284011e-07} {"commit": "a728cf165373f95f90969acab88b37e317040a6a", "message": "\tmodified: iocwatch.py\n", "proba": 2.549365376580681e-07} {"commit": "985da21ee510c5aecfc073e125f78453b39db4b0", "message": "Removed postfix stuff when importing name (was not used).\n", "proba": 1.0423912755186393e-07} {"commit": "6ec7e84c2d2fd715a4cc63fab3dfc7b99d8d3e88", "message": "remove reference to mtime functions\n", "proba": 6.149792852738756e-07} {"commit": "773a47969795cd96b2642de5b5ca76a8907cf7f2", "message": "Implement report API\n", "proba": 8.387534080611658e-07} {"commit": "2a46217fe8f10a11dea36be5212253ffb116d553", "message": "Reorder conditions to make cancellation safer\n", "proba": 1.2788171943611815e-07} {"commit": "763630bc0aa3963cd76adf8ad88ec2a8b2d4c005", "message": "refactor: Change big part of main to a function\n", "proba": 0.00013347089407034218} {"commit": "c569ea955de1ca89e004c4a3d95031a859df7771", "message": "again\n", "proba": 3.7802493579874863e-07} {"commit": "3657b736c88ec33706f366ac872c521ddbf64d09", "message": "Replace __iter__ with __str__.\n", "proba": 0.0028745157178491354} {"commit": "3fa92c850684bc94abb760e6f0b6ae96b436ad10", "message": "Note: transactions should by supported by with (yield from connection) statement if possible, raise error otherwise.\n", "proba": 1.0817942808216685e-07} {"commit": "2b99e02b88c7800e56e80b9ac17f489824b6edcc", "message": "add parser logic\n", "proba": 3.9607606595382094e-05} {"commit": "9334702917080e8b6ef6bb94d93c8e449294d8b3", "message": "Fixed a stupid bug, my listi wasn't working correctly at all.\n\n\ngit-svn-id: b233c5b81dcfbfdfca783093b3213ccfd2356b3a@543 3eb578c0-666c-0410-8428-3510748880ad\n", "proba": 6.113470590207726e-05} {"commit": "a131623ffdffd91399cda33dcef2c9fd5492f9d8", "message": "wrong location of NC file\n\n", "proba": 9.695871767689823e-07} {"commit": "e3ba93e839320f67c6eb36bb2fc4381ecc1a4a6f", "message": "RTPStream doesn't need to track a future\n", "proba": 2.441560127408593e-07} {"commit": "6f66f72d13a8af88c8ddc6ce3d65c7af13a8ce95", "message": "reformat output\n", "proba": 0.999998927116394} {"commit": "ecea11881ed1c09b89be558b88288d183cfa8883", "message": "Test for IDLE responses returned by idle_done()\n", "proba": 1.95712090089728e-07} {"commit": "84f5a59a6a8a0ad1190a17003367ef3b34e8da2d", "message": "layers: Handle aliasing in parameter validation\n", "proba": 3.3138368848995015e-07} {"commit": "71a05ba7adf28f0449c0bcd726fa164c48cbc3d9", "message": "edit_distance builtin added\n", "proba": 2.739517981353856e-07} {"commit": "e2c9ca34fe207f8d549fe9fc160cb625ef6bb3f7", "message": "Min2Cass.py now support 'yyyy/mm/dd hh:ss:mm'\n", "proba": 9.785085239855107e-07} {"commit": "b9c6d875bcddca73deaff35e14a56e373e5dcf46", "message": "Use argparse helper to add default values\n", "proba": 3.281864167092863e-07} {"commit": "42b0a79112d27f5647fcf73830221965950b8a89", "message": "refined hyperparams grid\n", "proba": 4.851112862525042e-07} {"commit": "2076003023569e17657efb85934c7a9b73ce58af", "message": "minor updates\n", "proba": 2.60650864447598e-07} {"commit": "0c0b59875cf72389cba4e283480cb51a52fcd255", "message": "homework 3 and 4 exersices\n", "proba": 1.000471115730761e-06} {"commit": "2e11a15e4e26911b814148846412d8081aee76d2", "message": "tick version for nightly releases\n", "proba": 2.70149399739239e-07} {"commit": "b0d9f17b21ffe7fc1bced7f2e925e509c4734ed5", "message": "OF: Should use override if defined", "proba": 4.467794951779069e-06} {"commit": "4bd202d2c5ac80a94fda6087510f3ffde052435e", "message": "Fix a Py2/3 incompatibility in profiler.\n", "proba": 2.0564253588872816e-07} {"commit": "cd34fbbb7954b80cfdeff375182fbe7d2d0fad7b", "message": "a little more documentation (inline labels for constants)\n", "proba": 1.1987168591076625e-07} {"commit": "d261ac3fc21d4009e28835c696502b39b9284d3e", "message": "initial models\n", "proba": 4.0726152406023175e-07} {"commit": "dbae5e760101da63a983162e132f327421b3220a", "message": "lateral_planner: use nympy.isnan().any() (#23500)\n\n", "proba": 1.1872016330016777e-06} {"commit": "14bdb37553d26813c4bb3c898f54443b679b0a95", "message": "tweak error strings\n", "proba": 8.706928724677709e-07} {"commit": "2f0ebad003ee4ccfa01a9f11c29ab4c6f44be1a1", "message": "validation: Simplify writeValidateInlineHandleValidation\n", "proba": 0.0003880295262206346} {"commit": "9c84e5d4c1ef0670b3b6622fb7946486f78ff7fe", "message": "Remove trailing line break from C4 UCI instance\n", "proba": 7.811840418980864e-07} {"commit": "b755840651a461e7e3992289699eefa1b6c78613", "message": "forgot the \":\" after class", "proba": 0.0011193127138540149} {"commit": "ed28c956eaa49c81c4ed05c4e47f458f4ecebc93", "message": "Changed __str__ functions\n", "proba": 0.9999074935913086} {"commit": "5f3d26b03be43ffed80162e294885cb55012d719", "message": "Tinkering with combat\n", "proba": 1.7688385867131728e-07} {"commit": "b185032974f8f1b39d7afc084267276bb36eb036", "message": "compute fees for mempool transactions\n", "proba": 4.939118412039534e-07} {"commit": "86b3a8336cf51d3795b669c09e93fd13c7e69940", "message": "Add new cognito user fields\n", "proba": 3.0008851581442286e-07} {"commit": "341f15b71e919430ac796898d928c0e98801df69", "message": "Make modifier keys toggle buttons.\n", "proba": 2.6532828201197844e-07} {"commit": "ed29e37ad6dc92cb5a387ef16d31f3a582347a5f", "message": "intendation error\n", "proba": 9.398618203704245e-07} {"commit": "ad1d128542d3354d8f7e4d6b9b8c6d8fedb8b664", "message": "Write to log a problem description instead of generic message.\n", "proba": 2.419855889002065e-07} {"commit": "464441d0384a9dd72dbfe56000bb8f5f84b79331", "message": "Undo Hash", "proba": 4.2749994463520125e-05} {"commit": "e50e46195efdad3bd522143d82d37d3912167a55", "message": "Prefetch related case user_assignee for message search\n", "proba": 2.2456933379544353e-07} {"commit": "b19f65a818a27eee66d220e930671b908bd8ed91", "message": "Fixed occasionally failing test in RuleTest\n", "proba": 1.4514547785893228e-07} {"commit": "92c90db482f1cbdb4f58ba9feca7c614f6412138", "message": "Add a better workaround for 3260 in tests for editable tree\n", "proba": 2.3052076869589655e-07} {"commit": "56b9303f3f10e3bd7092dd7689f84a4a20bba764", "message": "Revert \"fix tls\"\n\nThis reverts commit 0f3055133e28ddfded47105650f538d774bfbacf.\n", "proba": 1.2607981147993996e-07} {"commit": "5b230ef4f53d1efb0ff45f76bdfffb4af609dff4", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "9f3a25afe6b5da07a74df8c3eeee02ebf94a9c1d", "message": "Fix missing request to render config.ovpn.mako\n", "proba": 1.0788760391733376e-06} {"commit": "eb6f52ca1b4a324dd88d210341361906ef0d2e12", "message": "Events: Workers were not recognized as alive, because max_heartbets removed new heartbeats instead of old\n", "proba": 9.840858547249809e-05} {"commit": "8b6ba55112821574a34bd6b79941fe6eb9338b28", "message": "pyutil/cc-ipynb-to-pdf: make it work wiht spaces in filenames -- #4476\n", "proba": 1.8650715674084495e-06} {"commit": "0edda7c9921a365b1b29203dccdd4260ab439769", "message": "smc_sagews/jupyter: Queue vs. queue module\n", "proba": 1.0079149433295242e-05} {"commit": "ce2d54e7c42afd1147788a7ba8bdaed5efa3cbd9", "message": "cerbero: Don't set old env to None for unset env vars\n\nIt's wrong (unset != None) and causes a traceback:\n\nTraceback (most recent call last):\n File \"./cerbero/build/oven.py\", line 143, in _cook_recipe\n stepfunc()\n File \"./cerbero/build/recipe.py\", line 279, in \n setattr(cls, step, lambda self, name=step: step_func(self, name))\n File \"./cerbero/build/recipe.py\", line 358, in _do_step\n stepfunc()\n File \"./cerbero/build/build.py\", line 100, in call\n res = func(*args)\n File \"./cerbero/build/build.py\", line 582, in configure\n f = self.write_meson_cross_file()\n File \"./cerbero/build/build.py\", line 502, in write_meson_cross_file\n windres = self._old_env.get('WINDRES', '').split(' ')\nAttributeError: 'NoneType' object has no attribute 'split'\n", "proba": 0.999687671661377} {"commit": "c0c514dbc4149d00ced9bc3d7c5e7825f1039171", "message": "do not lower the body\n", "proba": 2.6868005079450086e-05} {"commit": "28259f072ad18a065231808a1d6e987d6520332b", "message": "view ZeraSenha utilizando senha rand\u00f4mica\n", "proba": 1.9576044962832384e-07} {"commit": "ada515e8cf1d44fa82ddeb09e3db44c9dd4c685b", "message": "fixed import error\n", "proba": 5.289116415951867e-07} {"commit": "882b2739b19bfeba2abd288825653b81ba1ca311", "message": "Make tsung_data.py only report consecutive throughput samples during a stable period.\n", "proba": 1.297766942798262e-07} {"commit": "e3f5827202ba2b2161ad6bbbcfc69a00e1f64288", "message": "*** empty log message ***\n", "proba": 5.360483328331611e-07} {"commit": "6094c8656a2048846f75e37fae0a239d15c49c06", "message": "Made the Basic auth realm name configurable with a setting.\n", "proba": 1.0701784702860095e-07} {"commit": "3907630f7019d9f37ff319d6389f8f25727046a8", "message": "debugging of pre_processor done\n", "proba": 4.6449724777630763e-07} {"commit": "fd8f300e35d4e9ca983dcf91d39f2d3dd3e2333d", "message": "caos.caosql: Use namespace declarations when resolving link names\n\nWhen resolving link names in a path expression, declared module aliases\nshould always be consulted when a link name has a namespace.\n", "proba": 1.2069207855347486e-07} {"commit": "ecf4127091447157eb77b8b906c5e05d5432e880", "message": "Uncomment\n", "proba": 6.078162755329686e-07} {"commit": "1ce17950e0f0ea4dad6657d978a6073f7d6076bb", "message": "Make sure scan helper cleans up after itself\n\nCloses #389\n", "proba": 1.243592464561516e-07} {"commit": "7dcbc97135588dbca780f972017f0b52eb2b7db8", "message": "Add some print statements to the intake pipeline\n\nIn addition to the logging, helps us track the progress of the script over\ntime.\n", "proba": 1.0605184286305303e-07} {"commit": "e91c827fc747ce8dd1149cbe22b4b3f386093e27", "message": "upgrade autorest.java to v4.0.5 (#17848)\n\n", "proba": 1.0924645721388515e-07} {"commit": "26b3d4b1ab1720830fdd0d1933395c665033923d", "message": "Reverted change from erroneous merge.\n", "proba": 1.2047370034906635e-07} {"commit": "9686196d33367161d77b0244b45b7e42cc90fdef", "message": "createOutput was not using the addChild or addAttribute method.\n", "proba": 1.1588395665285134e-07} {"commit": "f2fa69c5f75f1b047c952ec0e48b2404f8511bb1", "message": "Style: changed naming convention and what is being returned by menu_item_json\n\nchanged naming convention to better follow PEP8\n", "proba": 3.332344533646392e-07} {"commit": "d85b4aa11b986e5b655f907632771f7e0b7fa872", "message": "restore GetPublicKey interface mistakenly removed in 4b555e64d1e49d91ed851c59bb11b734b302f71d\n", "proba": 1.0292527576893917e-06} {"commit": "3a028cb2d4456acbd4ae448c06dfc43f330632b9", "message": "refactors for RedirectFallbackMiddleware\n", "proba": 3.628551326073648e-07} {"commit": "a4a3131944b9a284e2b82b68bb924c0432607e96", "message": "Move config parsing code to same block\n", "proba": 1.057805889104202e-06} {"commit": "c5b0d88ff1e4f9dd2e9f7256b49afc516190b548", "message": "Testing ambulance updates.\n", "proba": 1.3802331011447677e-07} {"commit": "2236bb73d3a2e96429bd56faad276f32b636735f", "message": "Organize imports in output_modules.py\n", "proba": 0.00019558928033802658} {"commit": "197bcee009f1e2ba111d32771eac9ceb1ec06431", "message": "Adds IPythonHtmlMode for RichTextOutput\n", "proba": 2.30434821446579e-07} {"commit": "e4903b8a2a913dc995888ff52928bd432ee249e6", "message": "[coverage] Ignore object api\n", "proba": 7.233224437186436e-07} {"commit": "7da4e4aca560640435d88c346f6e2fa9c8a54a23", "message": "Now filters out games that arent installed\n", "proba": 1.3100077467242954e-07} {"commit": "32224ec8cdfbdd3a116e4630b59fb84a05648f6b", "message": "re-added the on duplicate key handler, and removed fulltext from topic\n", "proba": 2.42334550648593e-07} {"commit": "84bf05d9bfcc7db9c407a4cc16ed074b9167eac3", "message": "changes for paul\n", "proba": 8.975317200565769e-07} {"commit": "650f5ba60b0fa542d278aeb592a5bdd6a24a41e0", "message": "fbx2gltf python 2.7 compatible changes\n", "proba": 1.11786573597783e-06} {"commit": "ee7f6529b1ad30afb66a470d424e1b0643fec1c3", "message": "[fbx2gltf] Catch the unicode decode error.\n", "proba": 3.259499976593361e-07} {"commit": "3ab7342c24a33a4c99a0ea304ce7fa18dc0436d1", "message": "Fixing the generation path in the gentable.py script\n\nUploading the code to GitHub caused a bit of a directory structure\nreorganization. I needed to update the path at which generated files are\nput on disk to account for this.\n", "proba": 1.1335463767636611e-07} {"commit": "2cb39206880dfface9315c3d1a2bb3a86316d06a", "message": "grokdump.py - some support for on-stack HeapStats\n\nR=ulan@chromium.org\nBUG=\n\nReview URL: https://codereview.chromium.org/1142343009\n\nCr-Commit-Position: 972c6d2dc6dd5efdad1377c0d224e03eb8f276f7@{#28694}\n", "proba": 1.5951120246882056e-07} {"commit": "81d70b96e55995dd41f2518a71820d57bbedd155", "message": "Create party sequence on article/order creation if it doesn't exist for that party, yet.\n", "proba": 1.1561483148625484e-07} {"commit": "b914e66969385804fc02e879eca0931e8aaaca0f", "message": "Fix hints in not found error\n", "proba": 6.428996925933461e-07} {"commit": "9ebdd50247e3f1463eb511e844ae78077f21ee9b", "message": "strip off private fields\n", "proba": 1.540578011827165e-07} {"commit": "169f2336dbce9bca75adb3975ff615bb9662d652", "message": "Use ${/DJANGO/python} in django-manage command\n", "proba": 2.8371567168505862e-05} {"commit": "8b2d7860aaf910b35ed8d0f32c5d69852b44dc0d", "message": "maketodo: normalize tile prefix\n\nSigned-off-by: John McMaster <527ca5438b47432dedda4309be2f991b71bfb11c@gmail.com>\n", "proba": 2.5737501800904283e-06} {"commit": "74d4f9717b5d4333388096db541633e3119da993", "message": "Fixed a range of information preprocessing errors, introduced some additional error reporting. Needs more work.\n", "proba": 1.0694275687228583e-07} {"commit": "1a17313b78cd5d3aef8015d88ae0a8300c12b5a1", "message": "Remove commented prints.\n", "proba": 1.2648915515001136e-07} {"commit": "096fda6f8ff88318563b7b88cda8dfb1a3c03286", "message": "Changes for python3\n", "proba": 6.767758691239578e-07} {"commit": "d1d9b833f6bb97a1531a00ed8783e6ea577ebcce", "message": "Work-around for file pushing in android perf runner.\n\nAlso include the device serial when logging adb commands.\n\nBUG=374740\nTBR=ulan@chromium.org\nNOTRY=true\n\nReview URL: https://codereview.chromium.org/815003003\n\nCr-Commit-Position: 972c6d2dc6dd5efdad1377c0d224e03eb8f276f7@{#25934}\n", "proba": 7.557500794064254e-07} {"commit": "63e71f08e8fcb143e23c1aa6e32da8d13689bde6", "message": "* [Utils] Updated ``NetflixReview.get_version_from_output`` to better find a suitable version for the given version name.\n", "proba": 2.1477104894529475e-07} {"commit": "87103abd56dca24bccb8c68aabbf031eccbc0a46", "message": "Making building and linking tests fully parallel.\n\nThis uses similar code that is used withing the toolchains to parallelize\nthe linking process of all the tests accross all the available CPUs. It\nalso respects the `-j` parameter if you wish to limit the number of cores\nused.\n", "proba": 1.093456916123614e-07} {"commit": "0c624c25eeb712eea4a7b909d68bffe11a300ac2", "message": "option to run in 'competition mode' for saving PASCAL eval server results\n", "proba": 1.7209482905400364e-07} {"commit": "bb2feec184e989d60a338a0b4855d2953aed91b4", "message": "Orientation fixed\n\n", "proba": 4.094360974704614e-07} {"commit": "aa9a856c45d361f01c6298bcaf2c6612f9992556", "message": "debug CI installation issue\n", "proba": 1.9614240898135904e-07} {"commit": "cb151bee248d5ceefc2a418aefb11fb858d686c7", "message": "went with Jeff's suggestions\n\n", "proba": 1.5350461524121783e-07} {"commit": "9b21bd1a6f56544a27867d208d978a46e1e31d5a", "message": "0.5.1\n", "proba": 0.000604925793595612} {"commit": "7e45659f267f04e3fb5891497d148a4e48759d58", "message": "Add short output option to toread_volumes suitable for script use.\n", "proba": 1.1638611852049507e-07} {"commit": "8115299860c7d4fcc1fc159fd93ccbc2a77eb48f", "message": "Remove \"IOLoop is closing\" error.\n\nCallbacks added while the IOLoop is closing will now simply not be\ncalled (which has always been a possible fate for callbacks added\njust *before* the close). This exception has not proved to be very\nuseful and sometimes has false positives that are tricky to work around,\nas seen in the linked issues.\n\nCloses #1491.\nCloses #1244.\n", "proba": 1.2128040793868422e-07} {"commit": "466ef56ac6142877dde68f9292a6b0ce1a431f63", "message": "Sort constants on sped_aliquota_icms_propio\n", "proba": 5.948912530584494e-06} {"commit": "691b488287bc34e791501e0ce1c33a8467386b84", "message": "1.3.3dev: Remove statement unnecessary after r15100\n\n[skip ci]\n\n\ngit-svn-id: 0d96b0c1a6983ccc08b3732614f4d6bfcf9cbb42@16212 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 8.188042102119653e-07} {"commit": "15869cc1fab0bd790b392f81895e6de5593bbd36", "message": "add pagination to all request\n", "proba": 2.621823682602553e-07} {"commit": "46c207468f040f7cd0731e0b8bc95bbb522643f8", "message": "There should be more descriptive doc strings around some auxiliary functions\n", "proba": 1.1815169500550837e-06} {"commit": "1809bdf55707ae24649884b07da0ef5af4ce5aba", "message": "add settings label can ignore settings\n", "proba": 1.6501984418937354e-06} {"commit": "86b2ffdf8ad7b9ade66d9c917a295ad62efb2234", "message": "adapt to python 2\n", "proba": 0.9998874664306641} {"commit": "c72a5eafcf17b905a77cc7c81be32cba4c2aa7f0", "message": "format code\n", "proba": 6.055130870663561e-05} {"commit": "feaa2bc446d4c57a48c8f569583b74b958075828", "message": "adds GridSearcHCV support for perform_feature_selection\n", "proba": 1.6566936267281562e-07} {"commit": "4966580fe5a34be3bcb2a160ca2ce69a0d9d9f71", "message": "Using multiprocessing, nicer\n", "proba": 1.7728224577240326e-07} {"commit": "acbd54cd2ca8ea666d20bda05b1ff3abf0a90268", "message": "just a comment\n", "proba": 1.2448383301943977e-07} {"commit": "dc603df406761b10893ee9a2a17d6727f5cefbd0", "message": "more ten fixes, use system time, not mediawiki\n", "proba": 1.2750250277804298e-07} {"commit": "fd0c18abb14b5ad8a39acb9bddee1696d471dd34", "message": "trainer: add option to control the dataset shuffle buffer\n", "proba": 4.514400870903046e-07} {"commit": "c98abddfeed3088626813acf6fbf3c83feca7e0c", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "89ff447c2ce6332778a7693ab0668387c03e7cf0", "message": "[FIX] Hr_holidays: leaves' calculation corrected on removal of leaves\n\nlp bug: https://launchpad.net/bugs/502984 fixed\n\nbzr revid: jvo@tinyerp.com-20100105080722-qsj0oa3afd8xst5f", "proba": 3.607834173635638e-07} {"commit": "2e02338a2b065bcf3cd00c74607187dd0b827891", "message": "[IMP] mail_mail: small code and docstrings cleaning + moved some code into\nits own method (find email_to) + set email_to as 'Followers of X' only when having\na notification-style mail_mail.\n\nbzr revid: tde@openerp.com-20140321171455-gz0q3eo0fbato50k", "proba": 1.982633420993807e-06} {"commit": "9c649e0192a60701002e37f4f342de01edb2cb61", "message": "fix previous human sorting fix\n", "proba": 1.3588595493274624e-06} {"commit": "c1fe80b1130319a03f0051166fbd1ea72827f4c1", "message": "[Bug Fix] Pass ax to all methods\n", "proba": 1.2635256041448883e-07} {"commit": "1891cf49d0fc0ba7f403b44cf6be64b6611be22a", "message": "allow to parse \\r new lines as well in stdout api call\n", "proba": 4.5890445221630216e-07} {"commit": "5908a1b4137faea5cfda89be5d62902931f3fe56", "message": "Add simple docstr cleanup utility\n", "proba": 1.9196383505004633e-07} {"commit": "020a7a1343683a88626bde1671f086940728c6f1", "message": "check for version\n", "proba": 1.890693823725087e-07} {"commit": "6f8587fd30cb1cf7de86ca1b21f7e677fd8e13e3", "message": "Catch if plugin dir does not exist\n", "proba": 4.2310546177759534e-07} {"commit": "6520427f6fdc5507bbb101a95f1b4e1e2e576b7b", "message": "Remove some commented code", "proba": 3.854098622468882e-07} {"commit": "3489cc9f6ab593cd3664f2086577a6fde5e4ab94", "message": "Move namedtuple definition outside of argspec function\n", "proba": 7.502229095734947e-07} {"commit": "bff02573f7069ccc3bc8b0c66c94eca3c692840e", "message": "remove fetch_all param\n", "proba": 2.5008575903484598e-06} {"commit": "bb264819e993af9ded3aa2b7f27dfece042fc5ac", "message": "add 'track' flag\n", "proba": 1.1092574823123869e-05} {"commit": "aab71a627624f9adfaf7a5dc075d2100ead6ac29", "message": "fix indentation\n", "proba": 0.00035826992825604975} {"commit": "1120df0de00e5be2f284f6f6be773db08feae1b1", "message": "Include SimpleRawIdWidget in tests\n", "proba": 2.308287463392844e-07} {"commit": "271c5cfbdf3e31f605a1797a30eb9bc97b721007", "message": "Move api-generator to use `sentry start` instead of `devserver`\n", "proba": 1.1744020156356783e-07} {"commit": "e2c229d2eeffb62c854eedd2a8f932f06ffbc97e", "message": "Fixed setting self.release date correctly\n", "proba": 3.503652692415926e-07} {"commit": "91fb2f82698c59be57c0c0efa55d9bff56685c6e", "message": "remove deprecated queue_movie plugin\n", "proba": 1.115320628741756e-06} {"commit": "2ed2d2cea6351e8a9615ac00c898d740032ad23d", "message": "Set different user agent in torrentz plugin. fix #2677, #2678\nImprove error messages for torrentz search\n", "proba": 1.7333425148535753e-06} {"commit": "3faee203104c5fa71dcb9faea498c3033476f15f", "message": "Try to fix functional tests.\n", "proba": 1.0098104894495918e-06} {"commit": "cabd327fa5e98abd25d8ea885daea16e162db885", "message": "Switch to using the real `requests.Response` and verify a little bit that it is working.\n", "proba": 1.2977496055555093e-07} {"commit": "66d08fbcc76111f35b2d58f97d77b8113223b385", "message": "Wait for registry to be listening before attempting to push to it. Use a separate DockerClient for tagging and pushing.\n", "proba": 1.0734289190850177e-07} {"commit": "3a96125077ecf0b6889874dbea013665ee7cff29", "message": "Add test for enumerating with space in volume name.\n", "proba": 2.1951871076453244e-07} {"commit": "6fa18e51d6a9080f82da8ca770897b52c9a96482", "message": "Output errno on HTTPS server as well.\n", "proba": 1.6798293245301466e-07} {"commit": "8f8b74702a9ff33c89b101d87377c08dde1263c2", "message": "Re-add account lengths to resource model\n", "proba": 3.064376983274997e-07} {"commit": "03ecf188b7442356f25b7f42f8f630d96379054d", "message": "erase remaining useless argument\n", "proba": 3.9999824366532266e-05} {"commit": "35b66c69206f67ec31971e7c532947d7b30003ce", "message": "Fix import ordering\n", "proba": 1.3003701724301209e-06} {"commit": "c7d9a28dcb7554ed0fdb47f94fa698df5b3791be", "message": "refactor(urls): fix team url\n", "proba": 0.9994335770606995} {"commit": "c40ef810773fe0108386159436c3fdfe6259cfd9", "message": "Display the decoded stream contents in SubprocessUpdate\n", "proba": 4.91874573071982e-07} {"commit": "acac2806be67808879d526d8ba9f2b7d23ab562c", "message": "updated services_v02.py\n", "proba": 3.021475265541085e-07} {"commit": "f343ca7ebd26d106b4e28d9134cc45f7bad7bfd8", "message": "Update oobfuncs.py", "proba": 6.043090365892567e-07} {"commit": "a3b29682ac18f22ab36296493206224a2ae8d4dc", "message": "- added node nesting tests\n", "proba": 1.430323663953459e-07} {"commit": "2b650a353278054f5a3f6c4fb034bbe96aceaa13", "message": "Fix set-url usage\n", "proba": 0.00021300795197021216} {"commit": "ce6331d67afd55860d19e6874463e44a1720d69a", "message": "use os.path.getsize\n", "proba": 1.1993300859103329e-06} {"commit": "9c79b33053759ca0927e3d76428099b886c7f07b", "message": "Call clean before save\n", "proba": 1.342561830597333e-07} {"commit": "15a2a8e9e2b3ef4ea37db54443ecf0583d78629b", "message": "Drop use of third party mock\n\nThe third party mock library was needed for mocking support across py2\nand py3. Now that we have dropped py2 support, we can use the standard\nlibrary unittest.mock instead.\n\nChange-Id: I8b0db843743ba234f35f54e29ca820c909102059\nSigned-off-by: Sean McGinnis <961eeb09b6d45516665e15b82e013282c4faf575@gmail.com>\n", "proba": 4.562908770822105e-07} {"commit": "e48e36567ff6acec33bc5b9d1236f184f92cc1af", "message": "Change patched glance client to fit glance-client code change\n\nIn Juno Release , \"python-glanceclient\" component changes code in the\n dir \"glanceclient/common\" to replace the old http client implementation\n in favor of a new one based on python-request. This leads to glance\ndriver image sync failed because of lack of http client attributes and\nusing the method that has never been in new httpclient.\n\nChange-Id: I06419f792e949fed353277851f9f0f67ba38729d\nCloses-Bug: #1349651\n\n(cherry-picked from 20152f86f917b21ac5ffcc44e7320503ee354bfd)\n\nChange-Id: I9c7f80b9f5849ac5d9d5f4b20d0ddd62074f2bfd\n", "proba": 4.1771563701331615e-06} {"commit": "4b7d042f2d71344da59218e3a6d161fc889c62af", "message": "Have a clause for redfish not yet ready\n\nWe need redfish, but redfish is slow to boot on TSM..\n", "proba": 9.983477866626345e-08} {"commit": "5329605d83bd9c65d5a21670cb8e61fb0b57b874", "message": "fix uuid for serviceescalation\n", "proba": 6.309054697339889e-06} {"commit": "025e4a2f9e3cb55e93805cec1ee99bd4a639348f", "message": "Correct the program package path to avoid permission problem.\n", "proba": 2.760949087132758e-07} {"commit": "12d78c1618da26d56a4669111e27f8427bc32b2a", "message": "delete all cont norm functions\n", "proba": 2.459844154145685e-06} {"commit": "d8b553f76577cb681c2105f03db596442bf40720", "message": "This now actually works. See doc string. It can run a module (i.e.\nimport or reload) or debug it (same with debugger control). Output\ngoes to a fresh output window, only created when needed.\n", "proba": 1.1043644576602674e-07} {"commit": "9aec50026529149b8f2486e7b390bd2c9f00d3e4", "message": "Python 2.7 compatibility fixes\n", "proba": 2.4667150455570663e-07} {"commit": "171a4137a0e64e67ab2b057a32adfe1a11fbdbb2", "message": "from Will, added more comments\n", "proba": 1.089863062020413e-07} {"commit": "e6cb5b373750080f3f43d16c09c0da009516367e", "message": "Add function to get old version number to metadata\n\nThis is needed to get the version number out of the old data type. Since the old data type may be gone by now, the version number function also needs to be in the plug-in. What function to use is communicated to Uranium.\n\nContributes to issue CURA-844.\n", "proba": 1.1380306830233167e-07} {"commit": "7b32e2cb42e08e395209f56d839744c70b48089e", "message": "removed debug", "proba": 3.875272795994533e-07} {"commit": "5132c9eae265a3ff1e24ed6220e0b518f7a88a36", "message": "allow filtering on date_last_activity\n", "proba": 2.9681094019906595e-05} {"commit": "98e4b57857ce3066941b897abafa9ad04db4471a", "message": "isort form_metadata.py\n", "proba": 1.985210246857605e-06} {"commit": "de52c8070e6d68fd6127d175a724154d1c715039", "message": "fix merge\n", "proba": 1.3355820556171238e-06} {"commit": "a71838f0b3613320186a81d326f035178ba2f1c0", "message": "Ready for review\n", "proba": 1.2607463872882363e-07} {"commit": "ed1ef07accac75c20ff9c2fc1fdef6058852914e", "message": "look for mathjax in the custom static path if it's supplied.\n", "proba": 1.0244957593386061e-07} {"commit": "eaf9649ebe68c52210d4f2e1fc9e500e7bf47a93", "message": "Note Consolas on linux will be used only until we have font configuration.\n", "proba": 9.890285923574993e-08} {"commit": "b2a7c68796ca0966e06c0303f187fcded76f9584", "message": "removing Symantec Deepsight from skipped\n", "proba": 3.100191463545343e-07} {"commit": "e7d37997d92b911dd2662112474e8574246e513a", "message": "Fix minor typo in docstring example\n", "proba": 7.133039616746828e-05} {"commit": "877e9417a455b78a8904d8c952fd32ad4a142938", "message": "works py #1\n", "proba": 1.2967599616331427e-07} {"commit": "dd4bc88331789cc81cf76c5362d863b0524fb9a5", "message": "Updated test_updater.py so that it won't print the spurious writemetainfo\nwarnings.\n\n", "proba": 1.1079637829425337e-07} {"commit": "2764c5d78d3b70565a4c894b949386a5835e97a6", "message": "[IMP] unlink move acc in picking\n", "proba": 2.2716081105045305e-07} {"commit": "fe8bde8087a256018935b54add35ea2daae1e603", "message": "CO-1439 : Link res.partner.bank to partner when bank statement is edited\n", "proba": 1.1147172074288392e-07} {"commit": "a81e2c786c7f989b4d8d173575c3ec28b6bdafb9", "message": "Update test_transfer_ftp_true.py\n", "proba": 1.9102795704384334e-05} {"commit": "ec51151ed4406edcbd880e2bfb71abe3b90747d9", "message": "remove unused decorator from BaseUserRoleMenu\n", "proba": 3.797398164806509e-07} {"commit": "80b2edf0d2b66861344b3a59d24a0ea94ec317ef", "message": "run.suite.groups\n", "proba": 1.0290466434526024e-06} {"commit": "ee66358763f067e22b86f89b202247864d8bca41", "message": "return httpcode 400 on policy bundle add validation error\n\nSigned-off-by: Daniel Nurmi \n", "proba": 2.2108581276825134e-07} {"commit": "8478fb3891329414bd1228b714a813f0e7b66680", "message": "Fix issue when running tests on device with Xcode 11\n\n- Must resign libXCTestSwiftSupport for tests in\n order for them to properly run on device\n\nPiperOrigin-RevId: 284620454\n", "proba": 1.725411635788987e-07} {"commit": "4c468737fdc7ee565054f1975a2321dfcf91ca21", "message": "Alembic fix\n", "proba": 1.0400999599369243e-06} {"commit": "3c2d4205332a25a0bf46a8064730a1e0928db3a6", "message": "cl_send_alerts.py edited online with Bitbucket\n", "proba": 2.3574919794100424e-07} {"commit": "e91520005132e4fc80593495041663967fe23712", "message": "Comment out broken command after rebase\n\nThis is only temporary, as a rebase to the new buildout structure\nsomehow broke the image convert command, maybe due to a different PIL\nbuild.\n\nThis makes the feature work again, but with a skipped conversion step. 4\ntests still fail.\n", "proba": 1.1444476655242397e-07} {"commit": "b0c78408300724adb8cfd6b7f951daa01d781df7", "message": "add new routes to kraken monitor\n", "proba": 1.6368227306884364e-07} {"commit": "365427f0f0c5356e34c81274846edeaade06486e", "message": "For manage.py migrate --list --verbosity=2, print the\ndatetime that migrations were applied.\n\n--HG--\nbranch : list_migrations_with_time_applied\n", "proba": 0.9999536275863647} {"commit": "c3e8c022ee0a5c8f6ff1de0220c00e714914a09b", "message": "Fixing PEP8 errors\n", "proba": 5.253744461697352e-07} {"commit": "b9c864da3872b40ec0e55f27cc75575f5deb1ab4", "message": "fixed iteration over file list when folder contains log file. Fixed removal of pixels only working in one scan direction. Added integrated Jsc vs. solar sim Jsc plot.\n", "proba": 9.972534797952903e-08} {"commit": "3ec86226809d5b795b583ea2519e9a121d18b36f", "message": "Update best-time-to-buy-and-sell-stock-iii.py", "proba": 5.209261644267826e-07} {"commit": "fb610059e58c8f91e724f000227abea7388d69bc", "message": "Update leetcode.008.string-to-integer-atoi.py", "proba": 2.2047195216146065e-06} {"commit": "c5448a1c58b80f23e1a2d9b32925f3a03bd18860", "message": "adding contact info to parsing script\n", "proba": 1.9792658179085265e-07} {"commit": "3e33b4e76e99dfa629939b4a18b54d0bfe1877ca", "message": "dokuwiki support\n", "proba": 2.418395581571531e-07} {"commit": "51ef536ba8109aa581ab602b165d6b33022ab81b", "message": "correction bug SQlite (oubli de doubler le '%')\n", "proba": 1.2724437681299605e-07} {"commit": "9427886e5546f7724c6b77bc374aa20adf35bbed", "message": "Customize widget\n", "proba": 7.903652203822276e-07} {"commit": "408bb942d283f551fec24bc97ce0af6315c6f932", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "af6c45b8a83957faf72439f3dc2cee9b25858b98", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "3e64c557af6ce5a0178800199edbf4b73f9296e7", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "0b67ed8bc4aab7a7c7a9fed03bffb87b340fb484", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "42012fd8291b14920ef13a12ba12688d58e2face", "message": "[FIX] account : given precise names to the taxes for sales and purchases in account/installer.xml\n\nlp bug: https://launchpad.net/bugs/871680 fixed\n\nbzr revid: bde@tinyerp.com-20111013131726-q31fp6synbz23d6a", "proba": 2.0045467863383237e-06} {"commit": "af94e5af6b6234d986085b7555a2356a14bdb686", "message": "[FIX] calendar: loading problem with some locales\n\nWhen you try to load calendar_demo.xml, the loading of demo event\n`calendar_event_1` fails with fr_BE locale (and probably some others).\n\nThis is due to the rendering of the mail template\n`calendar_template_meeting_invitation` (which is used when you create\nan event).\n\nThis template used a method `get_interval()` in calendar.py, which\ndoes not always return Unicode strings. Furthermore, these strings\nare dates and should be formatted according to user locale.\n\nPS: Yeah, we love Python2's management of encodings and Unicode...\n", "proba": 1.3355905537082435e-07} {"commit": "bc3e86de05a63a02f1d720908e6d64b8355d57f1", "message": "counting nodes and edges of factorial CRF", "proba": 3.3807049248935073e-07} {"commit": "fc570a574eff023cfa101c7510928b3401bc933d", "message": "long description of investment fiels in catalan\n", "proba": 2.1465064037329284e-07} {"commit": "1d9bdb43bf2adc7b6b55b616d65f0a5db44b67dc", "message": "[FIX] mail: read ir.config_parameter with SUPERUSER_ID\n", "proba": 4.2580217041177093e-07} {"commit": "d88aa539d463594fb203175dee667da0f65c31e5", "message": "[FIX] purchase: picking list\n\nWhen a product is returned after receiving, the return picking doesn't\nappear in the corresponding PO.\n\nopw-686895\n", "proba": 0.000225113719352521} {"commit": "52e44a68190d520ba670fccb72b07ffb20612bf5", "message": "[FIX]: caldav: Fixed problem of encoding in import calendar\n\nbzr revid: rpa@tinyerp.com-20100802120050-tj3duw1w5eok93p5", "proba": 7.098640253389021e-07} {"commit": "ce4a56d6671c9180d2a7b84f0a0558999fa9757c", "message": "[MERGE] default UoM for purchase orders\n\nbzr revid: fp@tinyerp.com-20120930114014-4zttrxf8tqwmr17r", "proba": 1.5282073206890345e-07} {"commit": "ac25124ddd022094390e7782f7b186e9d786ace9", "message": "[IMP] decimal_precision: performance improvement:\n * redirected 'get_precision.change_digit'\n function to use 'precision_get' method from 'decimal_precision' class\n * 'precision_get' method now uses a cache (invalidated in write)\n * added an sql constraint: name should be unique\n\nbzr revid: olt@tinyerp.com-20100921124435-5vrd80zpucjaxya4", "proba": 4.873168290941976e-05} {"commit": "e773c1dce86202766d7cb2274edce2ee3a406b52", "message": "[FIX] resource: prevent error when deleting resource.calendar records\n\nAttendance entries should be cascade-deleted along with the parent\nrecord.\n\nCloses #10310\nCloses #13044\n", "proba": 8.154106012625562e-07} {"commit": "c349e9a8f8df58ed74c3487891a47c2ade3dfe38", "message": "[FIX] stock: Add missing context to search\n\nCloses #13636", "proba": 5.214833436184563e-07} {"commit": "859b4a6ba75683a948f6aa1c7538f5c96fd816b4", "message": "A little bit more. It's still not working right though. I think I need Agricola to tell me why too, cause I have no idea.\n", "proba": 1.2145113714723266e-07} {"commit": "8ac2082545a970c0e88901aedbaa157372547bd7", "message": "Fixed a silly mistake in pants.channel.strerror\n", "proba": 9.975284774554893e-05} {"commit": "47e37404fd77b601ab1aa2c4a765ae375fc9eea5", "message": "TLS connections can be established by default with system certificates to publish domains (for example to 'mqtts://iot.eclipse.org') - the client only requires cafiles if the broker provides self signed certificates\n", "proba": 4.1379766457794176e-07} {"commit": "25e9a1ab27305fb7d09ae32851ebe822b002d64f", "message": "better resource requests\n", "proba": 9.607938409317285e-07} {"commit": "2b4c9f87ce520a9177069915fbf29bae9f5f84cd", "message": "add argparse 'message' option\n", "proba": 0.014023576863110065} {"commit": "ab1a85d38b1801b6d90dad86b9669a47cd18f471", "message": "Added new pingback types for risk review", "proba": 1.276442418429724e-07} {"commit": "e831a5a27493a8da27b4cbbb57bba06200469a3c", "message": "Update android version to 1.5.3\n", "proba": 3.648113988674595e-07} {"commit": "91ef75608fd36682f37b58aef291476aecfb779a", "message": "Update views.py", "proba": 4.614934141500271e-07} {"commit": "3c319e21ea026651ee568d3c2a74786d33257a93", "message": "Add charge to Paystack class\n", "proba": 1.914953884352144e-07} {"commit": "22d22fe1084d9b11c8be427b95107016ecf9855f", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "bed7924f361e2f5ae8bf92138f5dd20f8220dc34", "message": "Update flask_app.py", "proba": 6.657653102593031e-06} {"commit": "aa6adad76728f41344b6fb01a8eeb2f152b27875", "message": "valgrind is a thing\n", "proba": 9.253091093341936e-07} {"commit": "694541c00e6efb6d3e87f506c6b30d6c1360111a", "message": "add exclusion of lapack_lite directory\n", "proba": 2.805323902066448e-07} {"commit": "f01b6d1c41ac075061083d012f1161d0cdcf06c3", "message": "Remove temp wagl package script\n", "proba": 3.340748264690774e-07} {"commit": "477c4c375ddcc6bd9450b6ada07155f5e64f2572", "message": "Added 'exclude', 'total', and '__iadd__'.\n", "proba": 2.6242270905640908e-05} {"commit": "c42aacf14a7a2c903666d5e26c24b4dd98fc5e4a", "message": "Don't call sync on gadi\n\nIt's too coarse grained as it affects\nthe whole node. Leads to extremely long pauses.\n", "proba": 1.0311612186342245e-07} {"commit": "b3bc946e06b06c98745b2d2ad659138ef4cc2d79", "message": "Another Py 2->3\n", "proba": 4.619906576408539e-06} {"commit": "715140602c129a28075924c1cf2e980ebceb0126", "message": "Hack pybtex to yield the desired output for HTML. Nasty, but works. closes #849\n", "proba": 2.034555336649646e-06} {"commit": "3e57136e1a5d7f272a3e98ea8c313be2ce684b0e", "message": "[06/xx] Add id and version properties to old style models\n\nIn order to ease transition of model-agnostic mechanisms we can take\nadvantage of duck typing and make both old and new type objects look the\nsame.\n\nPartially-Implements: blueprint refactor-nb-api\nChange-Id: Ied7753eeb00a050ca80d7619a4fce42b59ba47a5\n", "proba": 5.436014589577098e-07} {"commit": "7925e27550990013bbb19de22fcfec919755b944", "message": "\n\ngit-svn-id: https://aqualid.googlecode.com/svn@197 a28edc5c-ec3e-0410-a3da-1b30b3a8704b\n", "proba": 8.470265129290055e-07} {"commit": "2670fc8d56dd125463f6ec78f5d1e5a18a92d7ab", "message": "Completed rough sketch of converting between planar and spherical\ncoordinates, using the WGS84 and Google Maps ( Spherical Mercator )\nprojection.\n", "proba": 9.962534619489816e-08} {"commit": "13521ab8efe0462d1710dad883475149e95d01d3", "message": "transfer more opts\n", "proba": 1.2798274440228852e-07} {"commit": "4bf6d1a37919168f0d99731f9dbb29298bc4c591", "message": "we are using wrapdb\n\nSigned-off-by: Igor Gnatenko \n", "proba": 1.519870380661814e-07} {"commit": "8ec59a8990aedb23f968c0c743f5142496f0b21a", "message": "* Updated some text in PeriodicAnnouncementModule\n\ngit-svn-id: e84324dcea430a25d31b23aeeed6d1d5f521e724@169 96408d3d-42d1-492f-8470-de6ea9014457\n", "proba": 3.3167277706525056e-06} {"commit": "125f0e4ad83c472c323f4c18e442db0d7abd41a3", "message": "grapher: include more data points in x axis and include some future history\n\nThe greater granularity allows for somewhat more accurate drawing of\nexactly when things happened. The inclusion of some future time helps\ndeal with minor differences in the clock of the WVA as compared with\nthe clock of the host system.\n", "proba": 1.0361215174725658e-07} {"commit": "c24b4477568b77e40d307acb51ee70110194f0fd", "message": "Additional tests\n", "proba": 1.6050672968503932e-07} {"commit": "81b45d4c5048fafd315e0dc1fdd9ffa1ab3de154", "message": "Simplify dict-generator expressions\n\nDuring 2 to 3 conversion, the [] braces were replaced by () to turn the\nlist-expressions into generator expressions. This is not required if the\nstatement is the sole argument to a callable.\n", "proba": 4.564162168207986e-07} {"commit": "15b538cf57214cebf66e71bdce5285ea25ba2589", "message": "p-dt-fix (#988) - removed print-statement\n", "proba": 2.8889851364510832e-06} {"commit": "c4ff26f7a52336f8943dac3ea74156966c1ee996", "message": "Update additional fields when ingesting a calculation\n", "proba": 2.858016898699134e-07} {"commit": "aafd012d3587816a67aa79211b4170030dc1e4fb", "message": "add spec data\n", "proba": 1.4122034599495237e-06} {"commit": "8754c747fde6c35c253990b3c3014edff5950609", "message": "reflect moved create_downloads in clld 1.5.0\n", "proba": 1.6054958962286037e-07} {"commit": "79b481a5f9c52b2a6bb65928b13a5152361b3bfc", "message": "Adds missing newlines\n", "proba": 6.297002983046696e-06} {"commit": "8dbb9c14b4dca43d292e9787cc6bd1f57893c9ad", "message": "fixing probability calculations\n", "proba": 1.8377015749138081e-06} {"commit": "bf5a86c1b443ab44d566a544d108fc9f170cb104", "message": "Fixed a typo.\n", "proba": 3.9507861515630793e-07} {"commit": "b64758392c536e1265d8e8ab9a0d772ad3a96473", "message": "new_game\n\nj'ai cod\u00e9 la fonction new_game", "proba": 2.10005346161779e-05} {"commit": "25aedf77258a8ffc49a5ff8733c2bca679e8667d", "message": "fixed some unit stuff\n", "proba": 1.8559767056558485e-07} {"commit": "d5b652a86b61929ba127858d2a95bfe02fbcf292", "message": "removed some old misleading comments\n", "proba": 1.895615469038603e-07} {"commit": "2d317fa1173eff4211e08e75b348b5e099d12fe5", "message": "email main archive.org page, not deep link the mp4.\n", "proba": 1.023991700321858e-07} {"commit": "51dc2aad8bea043d9ebb8890a1bd88e796a0b185", "message": "very minor optimization\n", "proba": 1.8638965570971777e-07} {"commit": "2727bbcf523ec9439584f5ca7911525444c11f8d", "message": "Add check_permissions method to ApiV1ConfigView.\n", "proba": 1.1825546408772425e-07} {"commit": "c63dcdda372d4d8a37abd39432deb62b8d4b1d23", "message": "Fixed another problem where we were creating a class twice via two import\npaths. Self-referential relations (e.g. ForeignKey('self')) were still slipping\nthrough the net. Refs #1796.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@3279 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 5.028071882406948e-06} {"commit": "5159065886d7f1f09bc972edefc1f79f65897428", "message": "bugfix & result expansion\n", "proba": 1.7119680251198588e-07} {"commit": "7b25b9ce982846bc468502cb4f5bf78ae8c4c49b", "message": "Fixed silly page ordering bug on updating a page.\n", "proba": 1.0888594914604255e-07} {"commit": "2a19821547a15199701c0c5ce65e4902472ad8d8", "message": "Remove out dated unit tests for strutil\n\nRemove out dated unit tests for strutil.unescape.\n", "proba": 1.2288791140235844e-07} {"commit": "f8489f2108c1f2b58408aed3ad5e04bc617c8a3f", "message": "Add print on add user command.\n", "proba": 2.2611988015341922e-07} {"commit": "2e7e424109f65881463acfca4c2982708a09cdab", "message": "Add missing host_qs.\n", "proba": 1.3421475841823849e-06} {"commit": "cbb12add875a0c880aacd7796ffbc18580c0f28b", "message": "Remove duplicate code.\n", "proba": 4.22508419433143e-05} {"commit": "12efef06357544ee81a3731899f528e9b867792a", "message": "Fixed #6031 -- Added error handling for _pre_test in django.test.TestCase; exceptions during pre-test setup are now reported as test failures, rather than crashing the entire test framework. Thanks, Thomas Guttler .\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@7023 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.2486234481912106e-06} {"commit": "82965ef37dac9357995f28a0fb0f124902dcb007", "message": "Update more fields to use the new more efficient dict field.\n", "proba": 1.0724077270651833e-07} {"commit": "0c6b6cd4c7c8d8446a40a8865e4059b5927e9c85", "message": "Added hdf5_compression\n", "proba": 1.636607436239501e-07} {"commit": "d70a1ca7f13cd776f3a5e9fa845d87a12c59174d", "message": "Rename List command description.\n", "proba": 2.455788887800736e-07} {"commit": "b58afc1320fcacc823509c4d58007e414d38cfd1", "message": "Fixed add monster form so default/min/max values are applied to input\n", "proba": 1.84871097985706e-07} {"commit": "8cf05a7bcf85ca81101bf4f0b13d7ce17ef86434", "message": "Fixed aqmp consumer cancelling\n", "proba": 2.212935896750423e-07} {"commit": "92634ff16f8f4579b31c30733d8d5457c5181fca", "message": "Improve how hug clis are tested\n", "proba": 6.104138719820185e-06} {"commit": "7ecabc127f5bde13dec3105b376a1749a6d5052d", "message": "Fixed #7127 -- Fixed incorrect docstring for page_not_found() view. Thanks, kcarnold and Simon Greenhill\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@7650 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : eec71c0404ebe19de5610d5b829add1c42c18dca\n", "proba": 9.408070127392421e-07} {"commit": "1e38f982425e26b7fa8ffa85e067750fcd73aeb5", "message": "adding a unit test and updating existing tests", "proba": 2.0574258030592318e-07} {"commit": "43d717d74df87a4ffd1cfaa8bf47ae4c0c27678f", "message": "Fix broken API links", "proba": 9.613588190404698e-06} {"commit": "c1ffb50d85a55a598acf5b28de7c335d3165461e", "message": "__str__\n", "proba": 0.0013365611666813493} {"commit": "655515fdcb5ed01a9048cca615db104d48fde695", "message": "hwt.code: cleanup", "proba": 7.118688517948613e-05} {"commit": "a577062b4d86c0de676cd5f6308aaadec9939a79", "message": "asd asd\n", "proba": 2.3644708562642336e-05} {"commit": "e8b4bab8d859867ae312eb9a2a32fdd5a2da3aaf", "message": "Removed unused traversal functions\n", "proba": 8.352619147444784e-07} {"commit": "172d67b1260111c54cb42775d3f763208b9e1f86", "message": "Support Android Debug Bridge version 1.0.40\n\nRan basic usage `dump` and `dump -F` against API23 AVD, both appeared to work fine.", "proba": 1.0090357704939379e-07} {"commit": "46903c66d0380363f85736a1570ce0d81154ac81", "message": "fix(hydrogen.py): Updated for latest version of PyOpenCL ;\n", "proba": 1.6582491468852822e-07} {"commit": "4aed2ea7c6f007d7369b9fc765837de8c5fd575f", "message": "add UnicodeSluggedBase\n", "proba": 4.159345508014667e-07} {"commit": "67bb3411929715522cf8721316ff6129341b0bcf", "message": "better graph traversal\n", "proba": 6.493241926364135e-06} {"commit": "3f1faa2d600919a806ee84e43245995863d9e605", "message": "empty comments\n", "proba": 8.671949558447523e-07} {"commit": "a504883be4bc7fe4c7441b3a7fee6933bb74ee6e", "message": "Remove non-ASCII character\n", "proba": 0.9999980926513672} {"commit": "00dcb30b753a1c6e16d9ae05de88a5d3fffa500a", "message": "- fixed bug in celery delay syntax for extra params\n", "proba": 1.2343113553470175e-07} {"commit": "2adb4d103f5381967d2ac54723bdb395fce923d1", "message": "Updated version to 1.0.0\n", "proba": 7.547302516286436e-07} {"commit": "6b7ed2ea9b957704db6bac76cbeeb22491dfa850", "message": "code cleanup\n---\n", "proba": 2.044031077730324e-07} {"commit": "99663639ef8f652ba509545afc7d405c12b937ce", "message": "icestorm: allow for timing failure\n\nSigned-off-by: Wojciech Tatarski <431121b10bd310643d219c632c934b4c1f5d4931@antmicro.com>\n", "proba": 1.2798200543784333e-07} {"commit": "cf0e3960db16424a27836a8408abcf7e5883ca9a", "message": "Always refresh if ``date_last_refresh`` is not set.\n", "proba": 1.8417300395867642e-07} {"commit": "0e1e7ef918bc625fd3e0c6cc1e384478d1237940", "message": "FIX 245 GPUFIT greyed out\n", "proba": 1.216632767864212e-07} {"commit": "30b42a6852e1ad462aa778e305af9e705cc0eb2f", "message": "Added timeout test\n\nAnd cleaned up tests further.\n", "proba": 1.0451286414081551e-07} {"commit": "5b55739470f17a5cbb81365b8fcaf937994b77bb", "message": "* subversion/tests/cmdline/svnlook_tests.py (run_svnlook): Add docstring.\n", "proba": 1.0578860809573598e-07} {"commit": "02be245c660ccbd33f1df4cb580e9e436cec51f2", "message": "Ignore this commit\n", "proba": 5.938664457971754e-07} {"commit": "5dae2f808658fe9b0f2d6d508c3e8c66a1a28e58", "message": "added palette to base africa map\n", "proba": 1.7885507475057238e-07} {"commit": "121f540a05c6916eb37f1529fec4836747764a6c", "message": "added default implementation for check_aggregate_support() which makes sure that only Count() is supported. Patch contributed by Jonas Haag. Thanks!\n", "proba": 1.0004064421309522e-07} {"commit": "176d0c5fee00648a96e8ec3cb5228b5da0a34fe5", "message": "Fixes #2483: pip install --user option un(der)documented\n", "proba": 2.3045745933814032e-07} {"commit": "9c4e8c28085bdd11c8dff4d480f9ddb885d72b0a", "message": "generate_key: If .ini already has [secrets], exit\n\nCurrently, if you call generate_key.py on a config.ini which already has\na [secrets] section, it will append another, causing a cryptic error\nwhen you try to `runserver`. So if the .ini exists, parse it to check\nthat it doesn't already have a [secrets] section before adding one.\n\nFixes issue #53.\n", "proba": 1.337349431196344e-07} {"commit": "77af5935f90885a7937dcd7c9edbce2910177052", "message": "Checking if path is writable, instead of checking for uid and owner.\n\nFixes #2390.\n", "proba": 1.0377393522276179e-07} {"commit": "79039a3cad213489f5fe3d87bf3c9bdb4160f790", "message": "fix test import\n", "proba": 4.41157482100607e-07} {"commit": "f03fbcb5f73f0009ddc3daf70078a3a398433188", "message": "Add missing task failure signal handler\n\nFix issue #4, thanks to p-himik for reporting it.\n", "proba": 1.0316470877569373e-07} {"commit": "b95619661aedfb451dafe96bfa73332a0a9c6e08", "message": "wrong language!\n", "proba": 5.60593580303248e-05} {"commit": "7ba57e8b1b08d015f63300c64912e828499c1194", "message": "continued development\n", "proba": 1.957240414185435e-07} {"commit": "920928f0cec0fdfb1caa9732b40d64a316aecc16", "message": "small cosmetic bugfix: error message\n", "proba": 6.444564064622682e-07} {"commit": "8ff25a9e0dbc9e8d12fe4a06ed470ae3234c2fe5", "message": "edit inv and inverse docstring\n", "proba": 4.5265062453836435e-07} {"commit": "57642b25697a4eaa1229a139219782849380487d", "message": "Use 3.2-compatible unicode syntax\n", "proba": 0.0015509917866438627} {"commit": "93d174bcc4cf773bea2534d3683a1e91e5489c89", "message": "improve docstring\n", "proba": 9.166568634100258e-05} {"commit": "cf1e2000f623afea8f3afb58e4a7659288c45777", "message": "document the API\n", "proba": 3.0686527452417067e-07} {"commit": "57dd8b93b5e8df6fdfc6dbe369ff8fde6daf1c39", "message": "working for now\n", "proba": 1.2191321729915217e-07} {"commit": "673f07324fd0e4dbf0b1ffd41b3dccfb9be6deef", "message": "comment line of CUSTOM_USER_AUTH for its not ready to use all features\n", "proba": 1.2236014867994527e-07} {"commit": "ca29fd192821805221fa3073696c97527c5bc52a", "message": "Systest f5mlb-15 failing\n\nProblem:\nThe test_restore_after_bigip_controller_delete system test is failing\ndue to the expected bigip configuration not matching the actual (this\nis true for several other system tests).\n\nSolution:\nThe issue seems to be that the controller is running slowly due to\nmemory constraints. The test performs the comparison before the\ncontroller updates the Big-IP (minutes). By increasing the docker\nmemory assigned to the controller, the updates happen under one\nsecond, before the test does its comparison.\n\nFixes: #142\naffects-branches: master, 1.0-stable\n", "proba": 0.0001602808915777132} {"commit": "aebfae5edc40a2d8bb1d79d49c0a99f90f8cba46", "message": "also handle degenerates better when we blat sequence\n", "proba": 1.5233152339533262e-07} {"commit": "8c5cc53998250179f31d24c78931417aabc0fbbc", "message": "Removed problematic test.\n", "proba": 2.5576059670129325e-07} {"commit": "522af477dca77bb7f68d3c3b39c0e22b16f6500f", "message": "LINKs parameters - cope with missing trailing slash and add detection of /v1/api URLs.\n", "proba": 1.043296293801177e-07} {"commit": "c3f495bcfde7a87db8a12979fc33dc6a1287a611", "message": "Make maximum poll interval configurable.\n", "proba": 1.3405251308995503e-07} {"commit": "22f4e29bff088ba7954616392ed9c76cec7e5a1d", "message": "Avoid LISTEN when in hot standby\n", "proba": 1.1109576689705136e-06} {"commit": "a2999f67fd567461043e439ba65ea58e85e43307", "message": "fix to avoid obsoleting CGAP terms\n", "proba": 4.0113644672601367e-07} {"commit": "710a395eb406a65189e4eaecf9e64989b9e06a21", "message": "Refs #5 Added RelayCountry to the reimplemented list\n", "proba": 1.1709507674595443e-07} {"commit": "1cbd38d62880c27aa41a2c09b530093cac623b12", "message": "parameters updated", "proba": 1.145879878095002e-06} {"commit": "c61b79d9a92df42d3809832f8fa2a19ce63db1b2", "message": "some courses now have group info in the event box. Use that info for the ical summary\n", "proba": 1.1208338435153564e-07} {"commit": "08745e418d5ea83895764dfe0643cdd50dd20335", "message": "Fix custom attribute filter\n", "proba": 9.681540404926636e-07} {"commit": "2b08b6d870db29201a2de86af9bf0ab703c9232c", "message": "using pycassa.ConsistencyLevel.ALL for reads/writes on the \"available\" table,\nso that it matches the way we were using zookeeper. While this is certainly slower than using ZK,\nit is also much more scalable. We might have other uses for perfect consistency...\n", "proba": 1.0419340412681777e-07} {"commit": "6024a0ff0d73e4f6c26a588bf745e7060efe4b25", "message": "webservice is executable\n", "proba": 0.00335689727216959} {"commit": "cbcdc8999e2d8a71d1d5866788df1cd2ab3c8ecf", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "6cf91c8ca4239bf5eedb90ff1a215795126a6fb3", "message": "Switched to using our own round() implementation.\nThis way we can be sure the correct rounding algorithm (banker's rounding)\nis used on all platforms.\n\n", "proba": 1.1459504634103723e-07} {"commit": "a22e571ffc5a759b8548bd763186d3c48ba0af3d", "message": "update conf file to point to proper path for pyd file assuming 'Debug'\n\nThis will work for now.\n", "proba": 1.0115407889088601e-07} {"commit": "a1e98f1ddf5c840439b2e99c9ef45e394e81894e", "message": "Release lock even if document update fails\n", "proba": 3.6910040535076405e-07} {"commit": "3173e78e91909ed0a033d257a222bb22b1997ae0", "message": "Disregarding subtiers listed in broker's agency_list.csv\n", "proba": 1.753780054514209e-07} {"commit": "c060e3f74fb4c61b1176adf82ce7acabba33cdc2", "message": "OPT: extracting results by number of model slices\n\nFormer-commit-id: 413e8365303a24eb08e10cc3358b90554931733f [formerly c60046be0e8c0bf922dee049b2eec8c02af219eb]\nFormer-commit-id: 630cd6dfbd1762b3df6aa83ee61b21ff7af9c974\nFormer-commit-id: 2ce284485270b77d5f4d658c9b5389d74e67c39c", "proba": 1.0127073437615763e-05} {"commit": "2ce284485270b77d5f4d658c9b5389d74e67c39c", "message": "OPT: extracting results by number of model slices\n\nFormer-commit-id: c60046be0e8c0bf922dee049b2eec8c02af219eb\nFormer-commit-id: 630cd6dfbd1762b3df6aa83ee61b21ff7af9c974", "proba": 1.4510145774693228e-05} {"commit": "e42afbe173367626dde3ab924f83175ac8fffacb", "message": "subjectadmin.tests.test_deadlines: Fixed most tests.\n\nSee #651.\n", "proba": 1.0025687657844173e-07} {"commit": "6797453c3a01198381697ac6a5249b2e0771e55d", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "eae9f442b30fc94f831bd6d281255c5311d5bcd8", "message": "minor (rename)\n", "proba": 1.2791871313311276e-06} {"commit": "59a5d34df1f525e8e3493cb5b1312c7b5f8c5ee4", "message": "Add TODO\n", "proba": 2.269595142934122e-06} {"commit": "eb82f255c0edf06f3a4d70a92d83c19ab9ba37ab", "message": "14.0: sql_request_abstract : add legalsylvain as maintainers\n", "proba": 1.667155800078035e-07} {"commit": "cfce86e0c0100775b4f690fefa8498421fb3777e", "message": "Small fixes in cardinality rule\n", "proba": 2.5689928406791296e-07} {"commit": "8fe1657fa402ec41a584fb33c85f4da611142c64", "message": "[gae_sdk_utils] Fix gcloud SDK finding when installed via apt.\n\nWhen installing the SDK as an apt package, it puts gcloud in\n/usr/bin as a symlink to the sdk's bin directory. This will resolve the\nsymlink (if any) before calculating the path to the appengine stuff.\n\nR=9f116ddb1b24f6fc1916a676eb17161b6c07dfc1@chromium.org\n\nBug:\nChange-Id: I9c455afcfb8be927ecf96dc3767a1f0264b4ae9c\nReviewed-on: https://chromium-review.googlesource.com/724379\nReviewed-by: Vadim Shtayura <9f116ddb1b24f6fc1916a676eb17161b6c07dfc1@chromium.org>\nCommit-Queue: Robbie Iannucci <40f3d43a28ebae3cb819288542e1c84d73d962d5@chromium.org>\n", "proba": 6.364143246173626e-06} {"commit": "c334d3cf207ec088ee3e417e079d881a02348182", "message": "Fix djstripe_sync_models for SubscriptionItem model\n", "proba": 2.4832568215060746e-06} {"commit": "45abaf819ff76551e5b7dd1f33a704e35524e194", "message": "Fixed import statement.\n", "proba": 1.4998657604792243e-07} {"commit": "949778d3de2fe0539c9b4c6523e7e4c25fe12b09", "message": "refactor using_OpenSCAD.py\n", "proba": 0.006044900044798851} {"commit": "ad69cc13d3f4cdb3565b937b2331c7a7fd50c61d", "message": "[FIX] hw_posbox_homepage: Fix default server value in steps by steps wizard\n\nin helpers 'get_odoo_server_url()' return the server string or False.\nIn steps by steps config wizard we display this value.\nSo in server input it display 'False' and with this value we can't submit the form\n\nNow we set a empty string if the return is 'False'\n\ncloses odoo/odoo#48346\n\nX-original-commit: 57283f213ee3d1dd4f59c83cc34fbdd3545c4533\nSigned-off-by: pimodoo <16075eed7f0f1db85d54c35d23e6589f4efb5038@users.noreply.github.com>\n", "proba": 2.5593271857360378e-05} {"commit": "68b2ab08d631ca0c7d9ffd57caec6728d9430e01", "message": "Added a command to close the bet, in case there's no more HS coming.\n", "proba": 1.1451671610984704e-07} {"commit": "dd25f1ab0946ce34fc7cdaf1d0a95b6e4a65dad8", "message": "REF: eliminate method _write() in json writers (#36218)\n\n", "proba": 2.646083601121063e-07} {"commit": "c7ee7ce8e0a0d0de6f74a0ed10b8bd3d8b05e00a", "message": "[FIX] pos_adyen: active constraint if the identifier is empty\n\nDisqualify the constraint in the adyen identifier if it is empty because\nit is not needed in other payment methods that are configured with other\npayment terminal.\n\ncloses odoo/odoo#36702\n\nSigned-off-by: pimodoo <16075eed7f0f1db85d54c35d23e6589f4efb5038@users.noreply.github.com>\n", "proba": 1.615425389900338e-05} {"commit": "9d4dbf552c4ec7ad24ed21fc684b31b7f097938e", "message": "added rolling moment interface methods", "proba": 1.7178246025650878e-07} {"commit": "1a7ec791a8b52844005ab43c2bc0d131311e7ea6", "message": "fix: wrap all cache key definitions in _get_cache_key\n", "proba": 0.0007391516119241714} {"commit": "4f5d30ad1194e8d228fc8429f6455f96e5ee20bd", "message": "Allow access via IAM Role\n", "proba": 2.185202987448065e-07} {"commit": "c4ab2980f4266d73cd4767abe0e0e80f8ad64469", "message": "Fix spacing and stash list creation for remove\n", "proba": 1.8670063184345054e-07} {"commit": "34b87a0aa7924ecb88efdae108ac8ce521e4812d", "message": "Kill the twitter/commons -> pantsbuild/pants migration script.\n\nTesting Done:\nCI went green here:\n https://travis-ci.org/pantsbuild/pants/builds/64722855\n\nBugs closed: 1614\n\nReviewed at https://rbcommons.com/s/twitter/r/2293/\n", "proba": 2.803467680223548e-07} {"commit": "7dbb1a22e5228c08c2b192754db6653737c7fc8c", "message": "[#3261] adding date stamp to derived from when copying a resource\n", "proba": 1.2731683796118887e-07} {"commit": "0bcfbfa99196a3a210d739e9c74be3eeafcd60a8", "message": "Added charset support\n\nSigned-off-by: Christian Tremblay <31ac1ca2e4859489ad6997067c1b3a4264642859@servisys.com>\n", "proba": 1.1889664364161945e-07} {"commit": "f8832c5938bfa77d3a5559b3918d5296dc0ed06b", "message": "Updated test to make sure that tags are cleared on graceful shutdwon\n", "proba": 1.3275369781240443e-07} {"commit": "a5c6b8f72748227fbc9d82f219fd31edd6837f1e", "message": "workaround bad URIs\n", "proba": 1.0185468681811471e-06} {"commit": "171e974e469a533a5e4a11fa956cb0a44c9619a6", "message": "Initial work...not complete\n\nSigned-off-by: Zach Hill <9de8c4480303b5335cd2a33eefe814615ba3612a@anchore.com>\n", "proba": 1.1846248071378795e-07} {"commit": "14dc5f8f7789f13f712f5acaf6594b69d4cbd3d9", "message": "adapt state machine\n", "proba": 8.094925760815386e-07} {"commit": "4cbb9c11d03c2c9d85a153b73ce8dbc9bfe268bf", "message": "Changes in signals plotting in example for kernel recursive least squares module\n", "proba": 2.210078093867196e-07} {"commit": "4d8b27c95fded5a587c8e670487c14a0867bba82", "message": "Host argument has been added to the basic_gateway example\n", "proba": 2.167870860603216e-07} {"commit": "7b8eaaa8f3d46cb871913db0cb36ceb4a0eb06b6", "message": "Added volume command with optional +/- operators in sonoshell.py\ncommandline example.\n\nThis patch adds functionality for reading the current volume by running:\n\t\tpython sonoshell.py volume\n\nThis patch adds functionality for adjusting the volume by running:\n\t\tpython sonoshell.py volume +\nor\n\t\tpython sonoshell.py volume -\n", "proba": 4.2628323626558995e-07} {"commit": "4d0f24514fd82892758c1084d51528642a335803", "message": "template.py: implement include and global sharing\n\nNow we can include and reuse templates, to include a (say) base template\njust do:\n\n{{st.include(\"my_base_template.tpl\")}}\n\nThe global context will be shared between them.\n\nSigned-off-by: Leandro Dorileo <27489cbbb360dd9a8af745ba3f6e7d2c506ebdd9@intel.com>\n", "proba": 2.705085364596016e-07} {"commit": "473942c67e1cf3606ca4010ce277a199c511db5e", "message": "Fixes the source typo\n", "proba": 8.127722685458139e-05} {"commit": "afed313369e332f2c7b64bcb9e65582126016a4e", "message": "Modify example to use remove_small_connected_components\n", "proba": 4.065105258632684e-06} {"commit": "a2bb75f52c2eee1ffacee3c9ef31d9bda3ebf531", "message": "Improve app (store) string checking (#1032)\n\n* Catch specific error in Python script\r\n* Improve app (store) string checking\r\n\r\nSigned-off-by: mueller-ma ", "proba": 2.0709005355001864e-07} {"commit": "cc52b9ab2d7953806e8961bbf6db15068fdfaed4", "message": "Importing app_monitor only when used\n", "proba": 2.468800346377975e-07} {"commit": "09cb47628aa79d2f052afe4cdf820b9659fb6546", "message": "radix sort for strings (by Sedgewick and Wayne) implemented\n", "proba": 1.6631936716748896e-07} {"commit": "955c2206437642333366fb92031f4e64388c49be", "message": "Fixing issue with cases with no config\n", "proba": 4.6630188421659113e-07} {"commit": "bcfcd3d9b32eb9041bce381655fcb4a061bac268", "message": "Adding exception for bad checkpoint\n", "proba": 3.844000673325354e-07} {"commit": "e1fbf897b8d2d3cd6de09c718a8cf78a4cd831c6", "message": "Call cleanup after each test\n\nThis improves the situation for #298. I see far fewer peak ipengine\nprocesses, but still more than I would expect if cleanup was working as\nexpected after each test.\n", "proba": 1.1292724622080641e-07} {"commit": "a4ab4ff77aaf85450e7e69458cdb0f6d7b8a2450", "message": "Filter out passwords from error reports\n", "proba": 8.266485565400217e-06} {"commit": "b9823eb7ab8131d905550b259bf7d34156e6f785", "message": "Allow user token as api hack\n", "proba": 1.6429374909421313e-06} {"commit": "0636c069918ddf544d5aa3ca9eb77b50c39a37ce", "message": "Add local apps in settings\n", "proba": 1.3832708418703987e-06} {"commit": "ceeb1646c76d76187b5327909f4ce9d72f3b68f2", "message": "Add message telling that json2csv is deprecated #552\n\nSigned-off-by: Philippe Ombredanne ", "proba": 2.8753908054568456e-07} {"commit": "e3cb99380fe32059c45bf45bf7c9e8e40fb7648e", "message": "Fix versioned soft delete test to include 'links' in expected\nchanged fields.\n", "proba": 1.0380818338262543e-07} {"commit": "07087af395039accc3715d389a550f151e2fdd91", "message": "Fixed unittest-runner's lookup of new directory structure\n", "proba": 1.5417303700360208e-07} {"commit": "601aa9add23dc71e57617de4300f952b47850542", "message": "run make format\n\nSigned-off-by: Alessandro Comodi <622632e70fd6771cf2cd943f69e5e51ab66adef8@antmicro.com>\n", "proba": 1.2658605896831432e-07} {"commit": "f07cd69012b50342bc09980b5e55a0453690b006", "message": "corresponding test for dict extra_vars bug\n", "proba": 2.8477299451878935e-07} {"commit": "bf1e37ba2b9de6444da7c1c8dca144de3cfbbbd0", "message": "_isUpdateLinkVisible function added.\n\nIt answers the question whether the current user should be displayed \"Update\" project link. Previosly the logic was much simpler as only the student who owned the project was supposed to see the link. Currently, this singleton group is extended with certain organization administrators and program hosts. The logic became more complicated and deserves its own function now.\n", "proba": 1.3363167283841904e-07} {"commit": "19857719f3a68d14c1221bb04193a69379a8bf89", "message": "Add wrapping of std::ofstream to the example\n", "proba": 2.8549016860779375e-05} {"commit": "52be3f886ce63e9b62d23936303f13d6b20e9bf9", "message": "removed mem stuff from example\n", "proba": 1.601046619725821e-07} {"commit": "c2e52a40412d4e4c81167254fbb95e1d19bfcace", "message": "Upgrade to higher level use of python and numpy.\nAlso, change from floating point to integer logic.\n\nsvn path=/trunk/; revision=3237\n", "proba": 9.426208634977229e-06} {"commit": "ad9d4341e2a7b56684b485374d2b5f161e057ab3", "message": "docstring cleanup\n", "proba": 6.257351401472988e-07} {"commit": "0698f252e3eddebef3c2c48afa42e12e1fd7ac1b", "message": "fix location to look for gitid in github repo tree\n", "proba": 6.094670652601053e-07} {"commit": "1001d0145501968fde2f6ac8d8e23e6f220c1f04", "message": "Sort examples docs.\n", "proba": 1.6559891946599237e-07} {"commit": "3044af0b1e633d36001505207eeeb3adaac5c758", "message": "add tlsh\n", "proba": 0.000915359880309552} {"commit": "751463af16fd5a92c0fce5361681b471f57806eb", "message": "daily backup\n", "proba": 5.347565092961304e-07} {"commit": "1a778af12a7413b6df5edb70322b9ba2a0b1ae6c", "message": "Correction de l'op\u00e9rateur intervalle pour les filtres.\n\nTrouver rapport -i <3>8 fonctionne maintenant.\n\n(en revanche la syntaxe dit l'inverse de ce que \u00e7a fait...)\n\nRapport 3530.\n", "proba": 1.1365202681190567e-06} {"commit": "615f5f8fa2676857bb3e74b3e746bb5ea78c1b67", "message": "Added an informative error message. Straightened out some comments.\n", "proba": 1.0172173858791211e-07} {"commit": "e0f319e4244e16a1fb6a45b52ebdf50fe7cbd0df", "message": "pattern.web: new Spider code\n\ndocumentation needs updating too\n", "proba": 1.3915786212237435e-07} {"commit": "c370c1255fd21859461d891627db3830c970c54d", "message": "remove domains from the list of default parameters\n", "proba": 2.274986627526232e-06} {"commit": "28dc5b91483715a8d886152b7aa57e3cdb041883", "message": "switch from pngmath to imgmath\n", "proba": 3.9044061850290745e-05} {"commit": "d41fa335d4676903c11c890f8bb10c9430dbfcae", "message": "pants server/killserver shouldn't be serialized.\n\n(sapling split of 54a205d6c24a1556e1a1204982bca813afa62f7f)", "proba": 3.394428631509072e-07} {"commit": "3c2c41fbd2f39104987737297c12e69b1f8a7ca6", "message": "remove needless conv.convert per PR1063\n", "proba": 4.1398870962439105e-05} {"commit": "6de1fb98f09853e91b21b289bf952e1ca3c88c79", "message": "fix ansi highlighting for iopub error output\n", "proba": 1.0850712897081394e-06} {"commit": "eecb0e340dfa1b153bd1f354453ba6433d50e7de", "message": "plugin.api.http_session: add class TLSSecLevel1Adapter()\n\nCreates an adapter with OpenSSL security level 1. Example usage:\n\nfrom streamlink.plugin.api.http_session import TLSSecLevel1Adapter\n\nadapter = TLSSecLevel1Adapter()\nself.session.http.mount(\"https://filmon.com\", adapter)\nself.session.http.mount(\"https://www.filmon.com\", adapter)\n", "proba": 0.012198797427117825} {"commit": "3ffceff9d5608c151fa35ddb20280bbfc3d69e7e", "message": "send-blocking: set transit key before sending phase1\n\nThis ensures that we'll be ready for them. Previously there was a race\nbetween us revealing the direct hints to the peer, and us setting the\ntransit key (thus allowing us to check inbound handshake requests). The\nTransit instance handles this race (with an interlock on the transit\nkey), but it's still nicer to do it cleanly.\n\nThis exposed a new race in Transit, where the inbound connection would\ncomplete before transit.connect() had been called. The previous commit\nadds an interlock to wait for that too. Until this change, the transit\nkey lock was covering that one up.\n", "proba": 2.073785907441561e-07} {"commit": "9a37cf11246ccb89cbb38e19b2e826d4b7ce4e5c", "message": "trak reader\n", "proba": 3.848666381145449e-07} {"commit": "a3df78d278ba0a4b8cc97f3cfcbec6b1ae2400a6", "message": "re #11573: Fix test for new title attribute in metadata list items.\n", "proba": 9.844139015058317e-08} {"commit": "4e0e08baf704032845abb15b6a828fd3c4591dd0", "message": "Fix lint.\n", "proba": 1.0368545417804853e-06} {"commit": "43eba841be4ae600e059ed1db01eed30f3ab97bd", "message": "DF methods\n", "proba": 5.7287661547889e-07} {"commit": "f3409252cef0a415f5ae6d8532718f847cc1ccc0", "message": "Fix lint.\n", "proba": 1.0368545417804853e-06} {"commit": "558f0e55383b676c550b33848d43d103bbf663b9", "message": "Changes in Order regi workflow\n", "proba": 1.958745485808322e-07} {"commit": "1a2a3a75cac171c3839fc0a0e35015fdec1ed7e0", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "39f7ab0e8839787bf8345398366276a016af6854", "message": "[FIX] stock_request: add expected_date implicit on tests to avoid errors\n", "proba": 6.636402645199269e-07} {"commit": "aee3a2461c511f8e9ee0ecd3d3cfeb464f7455bf", "message": "add test for iterable status of lst\n", "proba": 2.233551015251578e-07} {"commit": "99c119bfe25286642a9dd594d618446d21a5e5f4", "message": "no message\n", "proba": 2.1470650608534925e-05} {"commit": "19ad13abb4b7f4878dd671b1407041dbb4be9218", "message": "added SOUTH_TESTS_MIGRATE = False to settings.py to make the testrunner ignore previous south migrations\n", "proba": 4.632832997231162e-07} {"commit": "f8c7fce74bc0ffd053abd975f69115849947548a", "message": "start to handle parameters\n\ngit-svn-id: 39e099a8ed5324aded674b764a67f7a08796d9a7@2314 662fdd30-d327-0410-a531-f549c87e1e9e\n", "proba": 1.3175393860365148e-06} {"commit": "e2d89383b10c680d15767c19225462a3bf6effe8", "message": "Factor a little piece of code that iterate every time on dimensions\nfor building resulting curve.\n", "proba": 4.2436890907993075e-06} {"commit": "e21d36275168ed6f383fe132423b69bb392a3ae5", "message": "Checking on primary key instead of object\n", "proba": 4.416677086283016e-07} {"commit": "2896662743192f96fe4c90679825bd44747992f9", "message": "Return early for empty response.\n", "proba": 1.8051390725304373e-05} {"commit": "2d5d40ce0ea34312717b066bd179b8b75fffa66c", "message": "Fix smartthings cloud webhook (#29219)\n\n* Fix smartthings cloud webhook\r\n\r\n* Update smartapp.py\r\n", "proba": 2.3781400670941366e-07} {"commit": "ef71c830d4456d0615e440641f0baeab513d0bfd", "message": "[Mod] update to new v2 version of bybit api, close #2593\n", "proba": 1.180139150847026e-07} {"commit": "7072aee1ec166dce1e01fca444aa85d5e47a28df", "message": "Add ability to tag agents on install with TAG=WHEEL syntax.\n", "proba": 1.0603202582615268e-07} {"commit": "7d4be7250f8bef496a750e8a5b90255f66a52e39", "message": "Updated client to include -l and -v logging options.", "proba": 1.0625796420526967e-07} {"commit": "d5819e689ee5284b5c6aae28d20a6ef88051b4ef", "message": "Add snarky comment in VSCode Extension Installer.\n", "proba": 1.1492973328586231e-07} {"commit": "56b242bca1ac4d353fd333a41994d86a5d18587e", "message": "Reorganise notification messages on page saving, so that we aren't translating sentence fragments in isolation\n\nAlso shorten some over-long code lines\n", "proba": 9.857585973804817e-05} {"commit": "bb9822e775adc70d7b79bb592b5e7805701bd83b", "message": "Add before_form_save hook in CreateView\n", "proba": 5.51826587980031e-07} {"commit": "adb07887d92e63e6102009dc70ad8489f97b61c1", "message": "apps.core.models.assignment_group: commented out get_status_student_cssclass(...)\n", "proba": 1.4324368180496094e-07} {"commit": "759c8d137c6366e4edfa14175e78319c07e48281", "message": "variable name change\n", "proba": 8.44591559143737e-05} {"commit": "b6989a3c34a8bcabec096a9836a0f476763e116a", "message": "Fix unresolved import in django 1.10\n", "proba": 3.8161437259987e-05} {"commit": "ba580c0c84cd8932471fe8c4b96c9b053de9b7a0", "message": "fixing crash in sql in show_latest_posts", "proba": 4.341552255482384e-07} {"commit": "38c9390944dd7c3331e1f7d96e0c3bd894849d2b", "message": "Patched out _declare_queue override to let pubsub create queues for now.\n", "proba": 1.0418089146924103e-07} {"commit": "3a0844ec9848cc954f72d9c2bbd5684f48638df3", "message": "Luke: Patched int test for dataset management\n\n- Added support for the new data container.\n- Added statistical checking (using normal distribution) to ensure\n quality and accurate map/reduce queries for bounds checking.\n", "proba": 1.0429143060264323e-07} {"commit": "7a1a4090c15dfdd587c7d4827a2ec91d3fc3483c", "message": "Update randomization factor, change hard distance limit factor\n", "proba": 2.574042241576535e-07} {"commit": "405537626e6edb0a5353700611856042d37b9bf7", "message": "Add CUDA 9.1 pkg version to setup script for nvidia-docker\n", "proba": 1.49499044255208e-07} {"commit": "a3567b431ab1be32f8c8e6beaabaaffad243319b", "message": "Update test04 to not power cycle nodes if already discovered, assuming pr-gate type environment\n", "proba": 1.2048668907027604e-07} {"commit": "91595b4b25ff2f9519c20e03466d187a85a21f55", "message": "Disable rasterize_and_record_micro.top_25 on Windows\n\nDisable rasterize_and_record_micro.top_25 on Windows because of crashes\nto make the performance bots green while investigation continues.\n\nBUG=360666\n\nReview URL: https://codereview.chromium.org/231393003\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@262979 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 1.6628113144179224e-06} {"commit": "77a12a1036d3815cba197a6085319663386bf6fe", "message": "Compatible with python3.\n", "proba": 1.2337923749328183e-07} {"commit": "b9aef09697d291b4e71197eb364559c4c65737a6", "message": "further work on setup\n", "proba": 1.1969302704528673e-07} {"commit": "99cbf18e9625a90ba96636576bcabb6345fdb304", "message": "branch out at assert based on chrome and firefox\n", "proba": 2.852541172160272e-07} {"commit": "a492c5ec4d7ad9fe6c76e698d98ae5faee9eeb5c", "message": "Fix/Update RequestAPI\n", "proba": 3.479554493424075e-07} {"commit": "2f672cb07f420fd42bdbdad9f9a1a18ac8f23e85", "message": "Add boot code\n", "proba": 6.975202495596022e-07} {"commit": "e76b77fab2eca56445da4d04f143b38197056c4d", "message": "AddonMgr: Check and repair addon .git folders\n", "proba": 1.9765475656186027e-07} {"commit": "3395a327385f22ab95708accd8b85d35da5f0e7e", "message": "+ Fix translation issue in StartPage\n", "proba": 1.308853825321421e-07} {"commit": "d5c45fcfb2b912ae9d50c7fc339a43612976edcf", "message": "Fixed what could have been a typo in this... only found out by including the functions from outside.", "proba": 1.3026388501202746e-07} {"commit": "5d1a2b5f55e2075766917c092cdecde945f8d09f", "message": "pep8 and pyflakes cleanup\n", "proba": 1.2500395030201616e-07} {"commit": "182b7d023a8018738ad89a8aa263ec3a001d0e4c", "message": "KP_Page_Down: instead of hiding a block, move it to the trash\n", "proba": 5.329297891876195e-07} {"commit": "b85225cf518c9cfbd76716aebd1f1d4e0619319c", "message": "better? handling of sensor initialization\n", "proba": 0.015685873106122017} {"commit": "cdc5a209a4d5d6f106a8b0fa485d8abe97b577e0", "message": "mostly working box and action renaming?\n", "proba": 1.0567264752125993e-07} {"commit": "012b5be34da8a0281e0e29e5bae626292f676c01", "message": "Ensure status code == 200 before trying to decode json.\nFixes http://sentry.yl.io/tweetposter/tweetposter/group/36/\n", "proba": 1.5121113392524421e-05} {"commit": "4d9267e102b3ab6b055a3c87dc0ef238bb97fac5", "message": "Add IO binding support, which allows CUDA training\n", "proba": 1.3659311548508413e-07} {"commit": "db15d14c8fadd1ca8eed9bd2578bfe0d35f82b0a", "message": "[fix] guessit: Fix potential crash when name could not be found. fix #2611\n", "proba": 2.2174866899149492e-05} {"commit": "187d1088b824d45c253741e0af12f6d9f49f951e", "message": "Add mardown generator in sample_data", "proba": 1.814558885371298e-07} {"commit": "928e06e8784a377d7280c7a8b0d3285acd9494a2", "message": "get_group_type modified\n", "proba": 1.7662287064013071e-06} {"commit": "1b0d19d2fd227017d030a12575a0fe56dfc276a1", "message": "[examples] python3 compliant\n", "proba": 2.7375433546694694e-06} {"commit": "12a3aa51d619de386c3c6808e153f007645056fb", "message": "one test -test_publish_user- still is failing\n", "proba": 2.1773719254269963e-06} {"commit": "93c9c6d324973b61cff8cb5c074aa33041a226e9", "message": "Adding list template for Promos on FB Messenger", "proba": 1.8390605305285135e-07} {"commit": "4b28ae0640477a727115ec0b6e2c9b7b9f062b33", "message": "\u4fee\u590d\u62c9\u9ed1\u7ba1\u7406\u5458\u65f6\u7684\u5224\u5b9a\u95ee\u9898", "proba": 1.861203742237194e-07} {"commit": "eb42496b07271bc71ad1a213621eaff8722f4187", "message": "Toy stats. ", "proba": 1.678527468129687e-07} {"commit": "d78e25f1ff41eb09abce0be07dd1deb06d0087d6", "message": "run forever option for runschedules command\n\nrun with 5 minutes sleep between runs:\n ./manage.py runschedules --wait=300\n", "proba": 6.811882030888228e-06} {"commit": "fd84369e7280a783e251ba950d7ac9b882cdd91f", "message": "Shorten up list comprehension\n", "proba": 0.001355971791781485} {"commit": "86cfdabfba3b9f79ed403577aff3f96ec2276346", "message": "Remove verify=False to force HTTPS connections\n", "proba": 7.974101208674256e-06} {"commit": "f21a704d7dd63cb0c5da06c7b175951be4154fac", "message": "test with the latest chado image\n", "proba": 1.3804451270971185e-07} {"commit": "418df3131548e16d7dd849382f3c9d32acfc1df6", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "8a6bc014bde2d7a9220fd5ae12d565e8baeab77c", "message": "!#105 Fix: clean unnecesary path chalicelib\n", "proba": 4.0440906445837754e-07} {"commit": "1254259866c7320961b0352f60d66057abad97f6", "message": "Add template used tests for queue_html and queue_search.\n", "proba": 1.1651572151549772e-07} {"commit": "e19374df133b6e5e2cd070f07315c4365e379585", "message": "Adding horizontal filter for editing groups ACL in Django admin\n", "proba": 1.9976069154381548e-07} {"commit": "0bd009a10345f3c6ceda2969ba675e587297133a", "message": "removed unneeded mysql replacement\n", "proba": 1.3808877383780782e-06} {"commit": "d1cc3d7917750c91b572ec80e51b6e361ef7c360", "message": "Fix tiny error in BuildConfig.py\n", "proba": 1.6997299098875374e-05} {"commit": "bc44e2a637a232bf068234997a7ccc474ea031c2", "message": "fix parser script", "proba": 4.188002094451804e-06} {"commit": "285abf3211da2549fb3e5946a2f4cb23af47233d", "message": "switched to factory function for transaction history\n", "proba": 4.1039152165467385e-07} {"commit": "84ff5d3ed35adea3c09118a1fe6d65173044d5a7", "message": "Final version\n", "proba": 3.068933551730879e-07} {"commit": "15de4dc21cd33446a37dc5495f73db59c349ed6b", "message": "Strip ':' from channel names\n", "proba": 1.14293179649394e-05} {"commit": "2445c1a3fbc86f9ea33e4fe12c340adc1e35f81a", "message": "add doc\n", "proba": 2.4148786792466126e-07} {"commit": "30100ae9e287154d6e6e81ed54a263262ebb7a38", "message": "ififuncs - removes json debug print!\n", "proba": 1.536510723099127e-07} {"commit": "8c695def5207e1078b9f5eaa5b5a2ae695e83f61", "message": "Modify bug about actively setting multiple network at once\nfix bug 1771089\n\nChange-Id: Id2e48d89994a192c3dad813f0bccef5bc93fedde\n", "proba": 5.4437987273558974e-06} {"commit": "ca5f11579e767d2164a81f76516afb4c7c22b9e7", "message": "Disable a test on cygwin.\n", "proba": 1.657578678759819e-07} {"commit": "f97dd3ffab63244e6619a665edaa51879ae6a06a", "message": "don't recurse on a pass node, just return it\n", "proba": 4.0913946008913626e-07} {"commit": "213387603287ed2947fb392d070d212a80cfc02a", "message": "Address pydocstyle offences in cheroot.connections\n", "proba": 1.9743039558761666e-07} {"commit": "af33589c3bf2e888bb1d3fb062b15b9f36344242", "message": "Prefix copy/move with to and from\n", "proba": 1.3379310814798373e-07} {"commit": "2292ff5cd70ff1812566e2d44be3f3500ed42330", "message": "Fixed import_model\n", "proba": 6.082366326154443e-07} {"commit": "4515dbb8afb9f5f3e0469008f1cad3501d6362ce", "message": "fix(gestion): enregistrer la date quand on ajoute document\n", "proba": 5.368580673348333e-07} {"commit": "971c1e2a06b67796053e6d8ed1c8b3a99612dbc9", "message": "Add a database router to direct traffic to the 'project_db' instead of the default one, to get around Heroku\n", "proba": 1.891920220487009e-07} {"commit": "9d19ef7cfe3296d7aefe06c7328bd112f624d310", "message": "bumped up version number\n", "proba": 1.7878547851069015e-06} {"commit": "9ef3ae11e28645845b4bf7c84e99472541db072d", "message": "Improve helper for check is entity is collection\n", "proba": 0.00044778300798498094} {"commit": "934e84355233363dbb25b1f1ee69124b378e4b3d", "message": "Add support for recording new donations\n", "proba": 1.3004553522932838e-07} {"commit": "a5489c9fedbd8ab5255cbcf255012ce385384ae7", "message": "Some tweaks to imposition - made the top level page number better size, but unfortunately forced the pages to be A4 size, so they no longer scale perfectly in the presence of the signature marks and page-thickness offsets.\n", "proba": 1.0077182821532915e-07} {"commit": "ad398260732978391cf03f03907e338d11bf43c3", "message": "Drop tests.\n", "proba": 1.6632793631288223e-07} {"commit": "47a63e077c5c3a939518a041c3750e7a25f4db2b", "message": "fix extra-long query support\n\ngit-svn-id: 1dc8261ca909f20fce6cfd8a2ef29e7db7f5be91@147 5914aa95-5b3a-0410-a3b5-7b719e7fe9b2\n", "proba": 0.9999994039535522} {"commit": "f8de06a486846b9c578672de0216928a432e3083", "message": "Fixed comments\n", "proba": 1.3232697426701634e-07} {"commit": "560a028d46abfe3a80ea25b10ae469ca698c647a", "message": "Add an XFail regression test to the core for a problem uncovered\nby the Ruby bindings.\n\n* subversion/tests/cmdline/svnlook_tests.py\n (property_delete): New XFAIL test.\n (test_list): Add new test.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@1303460 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 5.1356973926885985e-06} {"commit": "a2abe5f01a4feea79b1069ee508e5bfa75d11fd3", "message": "Copy transformation directly instead of copying decomposed parts\n\nFixes CURA-1404 Closes Ultimaker/Cura#694\n", "proba": 1.1260665644385881e-07} {"commit": "39a89aaa69e71f294db8a8275b6d47c7dc33fa5c", "message": "* subversion/tests/cmdline/svnsync_tests.py\n (run_test): Move checking for stderr output before checking for lack\n of stdout output. If there's no stdout data, it's likely because\n there is something on stderr, so showing the error is more useful.\n", "proba": 4.657916576888965e-07} {"commit": "119f3a65c27afc0ed0454de6705a8c52eb41ccde", "message": "Updated opaque_field_test.py with latest mac change\n", "proba": 2.793518376620341e-07} {"commit": "39d868cc57dcc0bb14ca6c0d6e5208e093daf0f9", "message": "Renamed type in decorator getters & setters\n", "proba": 1.703705549971346e-07} {"commit": "7766cdb11ea9f7baff0978c96ea0e8a2ef75d8c8", "message": "Removing dead code.\n", "proba": 9.797086022445e-06} {"commit": "216c3fd854e8d1dc944879603565d3c154b0815d", "message": "Try to fix a buildbot failure where python's builtin sqlite doesn't like our\nwc.db.\n\n* subversion/tests/cmdline/upgrade_tests.py\n (check_dav_cache): Don't try to read using old SQLite versions.\n", "proba": 1.4888622956732434e-07} {"commit": "83ca12dc61ac10c81061e266a0cfd79f18007837", "message": "Assert outcome\n", "proba": 8.050724136410281e-05} {"commit": "0e009a7ef2508c4f7f154f582168a398c71fd989", "message": "Removed all the keyword of non-optional argument.\n", "proba": 1.7261339735341608e-06} {"commit": "39d4954073ef1ea9698a03e9a8e128a42ab12e3b", "message": "[jupyter] configure several locations of JSROOT for require.js\n\nIf local \"static\" location fails, it fallback to WWW urls.\nHelps to correctly work with nbview", "proba": 1.5492442173581367e-07} {"commit": "a6245478c82d8bd2c9abea34b9ec4a94ccc5ed09", "message": "fix thumbnailing (#2548)\n\nin commit 0e28281a the code for thumbnailing got refactored and the\nrenaming of this variables was not done correctly.\n\nSigned-Off-by: Matthias Kesler \n", "proba": 1.2837219287575863e-07} {"commit": "809a129fac322d46ffcbb8cc5e68e3addb5d5d33", "message": "tendrl-bug-id: Tendrl/commons#548\n", "proba": 1.1187626114406157e-06} {"commit": "2df2dd5d234039e2ddb1998fbe280a9be86140d6", "message": "Remove more broken urlparse.urljoin examples.\n\nurlparse.urljoin('scheme:foo/bar/', 'baz') == 'baz', so it doesn't work the\nway I expected. Instead, let's use regular string joins.\n\nBUG=chromium-os:5311\nTEST=Examine example Packages file.\n\nReview URL: http://codereview.chromium.org/5414001\n\nChange-Id: I1d81dd7a3a79ca6c1f0750993535d3b66696ec23\n", "proba": 0.0010583290131762624} {"commit": "a2a5a3c357991aa62fd2401e34b949a302f511a4", "message": "added more required data to the on chtc run script\n", "proba": 1.5181869628122513e-07} {"commit": "1b32a4e3a50013b682852b8059807e7be8c8e655", "message": "DIAMOND: add zlib dependency (#7801)\n\n", "proba": 1.1186553905417895e-07} {"commit": "9a0af8a5ce7d5add2739443673e6a48667b30e8e", "message": "HiC-pro depends on python+ucs4. (#8564)\n\n", "proba": 1.3198945225667558e-07} {"commit": "c5017fdabb7da7dbb07dd818002e8fc33d5a104c", "message": "[IMP] Observation form descriptions\n", "proba": 1.4919352508968586e-07} {"commit": "4d040ae96815466682fee6590244d0b87923d093", "message": "Add Dataset model test.\n", "proba": 4.418909895775869e-07} {"commit": "6d30a3831698e5f8e8d70b6b83348e73008152cc", "message": "Let Connection._disconnected be a proper Future\n\nThis means that awaiting on disconnect will properly raise errors,\nallowing to differentiate clean disconnects from faulty ones.\n", "proba": 1.378444096644671e-07} {"commit": "f31ac8174066034e21486c7df554b1130c3e7c73", "message": "remove pycs in remote server\n", "proba": 3.7131513863641885e-07} {"commit": "75282e2ec4463063fa4ddad0512dda96e5d3c16e", "message": "Some fixes\n", "proba": 3.0638540238214773e-07} {"commit": "824eedff75403ac434f487ef4658aa26b706a099", "message": "Automatically set the `to` field\n", "proba": 3.37033748110116e-06} {"commit": "ac6c810be07c65ec8a67ce7ea35929e2d62510dd", "message": "monkeying with the model.\n", "proba": 1.2535505788946466e-07} {"commit": "5ca7d79253d68fa7c1f666e7d1fce5ccc006c65d", "message": "Don't crash on this crap\n", "proba": 3.158173171868839e-07} {"commit": "ddd2cba96c48aa9a6b62a02bac07096123511f22", "message": "sorting/radix: make sure LSD digits are integers\n", "proba": 0.01127625536173582} {"commit": "fe672b1b907858c382b1693079775cc1717332d9", "message": "Fix #41 - set settings_dict['SCHEMA'] for south.\n\nThis is required by SOUTH to perform migrations correctly.", "proba": 1.0781811710103284e-07} {"commit": "014cdfee07fb10d422b33aeb079638015f8ac6a9", "message": "Set version as 1.4.0\n", "proba": 0.0007121096132323146} {"commit": "d941eda19202d6415cb9e90becbf934763882157", "message": "marked expected failure for test_custom_task_class_get_schema_name", "proba": 7.318878374462656e-07} {"commit": "18a94cd1850aac7f391db6674497ff20da7687b3", "message": "change hypothesis test that takes too long\n", "proba": 0.00025286036543548107} {"commit": "d505ffeb4eb0741e724350d33b5332098e79af02", "message": "Fix forgotten commented code.\n", "proba": 1.2812550664875744e-07} {"commit": "3ba2c6e0de61894fe2c39fd244f0cb7b0c735150", "message": "forgot to commit plugin.py\n", "proba": 2.9975274173921207e-07} {"commit": "ee1dce97adfbeaff4141f081f6c5793894d0b800", "message": "Be explicit about the type signature of map_func\n\nHighlight tf.data.Dataset such that the reader doesn't miss it. The typing was mentioned at the top of the doc but not immediately visible at the params table.\r\n\r\nMotivation for this change is that after studying this doc, a user still came up with code calling `interleave` with a function that takes element and returns element.", "proba": 1.3465471226936643e-07} {"commit": "f18e8e133149aee3eee41c7b65e3be7ddcca4de5", "message": "Cleanup of minimum time to climb example.\n", "proba": 1.1544372569005645e-07} {"commit": "f1084df4439d72040e85ea35aee74e374f859836", "message": "Stop treating question refs as numbers, and allow old question refs\n", "proba": 4.822536720894277e-05} {"commit": "f97732a751fdb501a6d4a7c1d6e4f4f0a39c0362", "message": "adding branch\n", "proba": 1.3869720305592637e-06} {"commit": "e31dd83e5ffebd8a4dd502efb89907d5a44fdc19", "message": "2.4.0 Beta\n\nSigned-off-by: Don Naegely \n", "proba": 1.0757921842241558e-07} {"commit": "7f7913decf1ba9716f5d4a785b6db476c7e7bf30", "message": "Travis CI bad network\n", "proba": 3.4623880651452055e-07} {"commit": "5eca5ba4099edbc21a72d40437bfd4d7f8170d16", "message": "Fixes error reporting on the search endpoint.\n", "proba": 1.1429577995158979e-07} {"commit": "5b46965a7dbcb7d775d9bca1b6bc4ee4f4652101", "message": "Use ObjectIdentitySet for FuncGraph.control_captures\n", "proba": 2.0771170738953515e-07} {"commit": "e0f0198f8900d1ac256c491991464778d87e77e0", "message": "cleanup les_mis.py\n", "proba": 6.9249290390871465e-06} {"commit": "8bc0830e795d1342da59b24995db7d9adcda928e", "message": "add TODO to assessor.py\n", "proba": 3.3827916467998875e-07} {"commit": "87273086b8a867c199e4c496511960ae7e376d49", "message": "updated tests to v0.6.5 version\n", "proba": 1.6000727498521883e-07} {"commit": "74ce3d69ce9027b47ea5170b376739f43c583790", "message": "Update models.py", "proba": 4.731647038624942e-07} {"commit": "f5c6287407116fbeecb7926af4801177edc3afa3", "message": "Update doc for einsum to show trace option\n", "proba": 1.3175854007840826e-07} {"commit": "3f32776f0f58c961a1ad625f3e5e34ce31a9ebbb", "message": "switched up svol example\n", "proba": 7.249149120980292e-07} {"commit": "c1d5d469f7107a5a395c7915c0eff1696ebda7bb", "message": "Internal\n\nPiperOrigin-RevId: 311800537\n", "proba": 8.894768939171627e-07} {"commit": "af294b8f87c2573a54a9af92c50bd159c958de0b", "message": "DOC: fix typo", "proba": 7.313945388887078e-05} {"commit": "1539345e3870dd23395e2417378135184a16f473", "message": "Internal change\n\nPiperOrigin-RevId: 450618762\n", "proba": 8.869196221894526e-07} {"commit": "25081175533fca2f97142c66e012ed15c21cef2e", "message": "Make train_parser example a bit simpler.\n", "proba": 5.904847739657271e-07} {"commit": "7983fcf95f5454ce367e651b052bfc5fa0751122", "message": "footer admin\n", "proba": 1.9514418454491533e-06} {"commit": "226fafb0cb162199a7bce5e2b60c2acb5a51aabc", "message": "fix test_reverse_time bad action name(issue 125)\n", "proba": 5.624802383863425e-07} {"commit": "f037df42f0550c2236f26cd97d3419869f613d81", "message": "Update tests for NoneTypeChecker\n", "proba": 2.5633809741520963e-07} {"commit": "24dcafd8e429ea3f299598766584e258019297f9", "message": "Persisting dependency graph and other speed improvements", "proba": 1.3537190568513324e-07} {"commit": "923e367e5257c28153cc8753e606491c28343c19", "message": "\tmodified: expfactory/database/relational.py\n", "proba": 3.3859419090731535e-07} {"commit": "a71f775922872da3450945fece45374df864de14", "message": "fix typo in docstring\n", "proba": 0.00255287135951221} {"commit": "27d9fa6c25a87902138dc45c6940ef23f1427999", "message": "Update inputlocator.py\n", "proba": 1.0746064162958646e-06} {"commit": "71cd3876a7b6b6bb50c996bd8faf97089657ba36", "message": "Do the full scrape\n", "proba": 4.6892026148270816e-05} {"commit": "7868afc1d6db773fa8cc9fa863c068beee45fa92", "message": "pylama\n", "proba": 2.37460312746407e-06} {"commit": "4d262a76793d17efd988c798b3364aa8e5898b53", "message": "fixed typo in tests\n", "proba": 4.7256179414034705e-07} {"commit": "bda620aecd690004c52e550ad7de187ce0eb655d", "message": "test: check abandoned tx in listsinceblock\n", "proba": 3.085008302150527e-07} {"commit": "9ed9c0dfc13459d146bb2132b4bbcd3f605fac56", "message": "Improve Hypothesis tests efficiency\n\nWith the previous way of creating lists of actions most of examples\nseemed different to Hypothesis (because they have different integers),\nbut not to the build_from (because most of these integers were just\nignored). The new generator model requires additional parameter, but it\nshould generate more diverse lists of examples (because no generated\ndata is ignored now).\n", "proba": 7.710859790677205e-05} {"commit": "afc224e497b3c61bb106864bd3697f98b855e032", "message": "Don't use response.json() as it's not available on Django 1.8\n", "proba": 1.2235703934493358e-06} {"commit": "87c59ce79d42f0711e742339772ffdc52c887aa6", "message": "Fix sudo handling\n\nRun 'sudo /bin/sh -c command' instead of 'sudo command'.\n\n- sudo exit with error code 1 instead of 127 when the command cannot be\n found. This was hidding errors and producing false test results.\n- Fix PATH issues\n\nCloses #41\n", "proba": 3.2430925784865394e-05} {"commit": "d0831535484cce2ed79a77e9907c00490777a2e8", "message": "fix typo\n\n--HG--\nbranch : parametrized-fixture-override\n", "proba": 4.025024281872902e-06} {"commit": "fe68c5869866149b1c00d6280f3e491883d0b7e9", "message": "add test_warn_missing case for --assert=plain\n", "proba": 9.584477993485052e-06} {"commit": "ebd5bad8c1a7ffd1304b0e413bfc7e17580aae9f", "message": "mistakes were make\n", "proba": 0.00029543612617999315} {"commit": "5fd47b36d1d9613e38bd6e16b793e77bceb98a0b", "message": "[test] slight C_API test refactoring (#1655)\n\n* renamed functions\r\n\r\n* updated find_lib function\r\n", "proba": 1.352079124217198e-07} {"commit": "0809284d675ea2a971501a44d85e272b800152ca", "message": "Fixed indexing, printing nthreads, fixed memory leaks in unittests\n", "proba": 1.3716291391574487e-07} {"commit": "90db153023d4e49fa963f5d84b050ac209f7b6eb", "message": "Create a test suite.\n", "proba": 4.382717179396423e-06} {"commit": "3d6c91b46990213b0a7f96005cfc36c5c61e97b7", "message": "Only pull busybox in integration tests if we don't already have it\n\nSigned-off-by: Aanand Prasad <94fc4f3e3d0be608b3ed7b8529ff28d2a445cce1@gmail.com>\n", "proba": 1.1334371663451748e-07} {"commit": "388e3f1f35021e3a84156445f0c15a4ef74f4494", "message": "Add ciscoxr testRemark tests\n\nSigned-off-by: Misha Komarovskiy <6929490d9243dfad8c3c349ae2ec57189195237c@gmail.com>\n", "proba": 1.094544046509327e-07} {"commit": "91774e3cc14f03c060eb628fb753741939b6d3e8", "message": "Whitespace\n", "proba": 8.480420547130052e-06} {"commit": "873015fd8b9c52b9731ec13734a9a1b73c28b7cf", "message": "update tests/misc/progressbar.py\n", "proba": 3.0614882007284905e-07} {"commit": "680ba0969ee566107d3acee8d22de2045b12be6f", "message": "REALLY make sure generated test order is stable\n\nThis really does what f87ac17506c9ec47c973d7942a2951a3e953c2b5 should\nhave done and fixes the horrible bug introduced by that commit.\n", "proba": 1.0604739486552717e-07} {"commit": "6a45125a1dd951332200568036950690cd9ddad5", "message": "Don't shadow names\n", "proba": 3.012549541381304e-06} {"commit": "d85f3ed8677f086a1aaa4d753d050951f30b1d12", "message": "added except for thesis git no university\n", "proba": 1.3766154438599187e-07} {"commit": "45538f7458fc135f4f812bf5603244e0a323c934", "message": "Fix style issue.\n", "proba": 1.316654731908784e-07} {"commit": "6f6f2d5e34fcf2a23b0cb0eeb5226b65cef40c2c", "message": "Updated baseline values on tests; fixed python3 warnings\n", "proba": 2.497201592177589e-07} {"commit": "51663d44ff24f507bd8b1ca6f77a546a8d7fc472", "message": "Add test of action evaluation for interpSphericalPotential\n", "proba": 3.4921140468213707e-07} {"commit": "2f837a68f8d99bcb6d86e46f5b1bdcc998dbbae9", "message": "Add test\n", "proba": 5.080644768895581e-06} {"commit": "dc5b7798840693a827b0185a81d8ba353b1fcc09", "message": "Add adjustment data type test\n", "proba": 5.522156811821333e-07} {"commit": "2e046e3b6fbf1306e4a444c15d6f5ed6fcd8a0d0", "message": "Update test_axosoft_api.py", "proba": 9.853172286966583e-07} {"commit": "c7e0dbf4f70a33403aa6c1c627ca0f90b7129756", "message": "Dont test game_of_life.c for now\n", "proba": 1.4052400842956558e-07} {"commit": "3d772ab67f8db2108ab6daa0a1f9d9ecae547ccf", "message": "Add test for invlaid arguments\n", "proba": 3.2750858736108057e-07} {"commit": "7c87301a6cfc999a01fa0927094a7f9145cca180", "message": "Add tests for api protection\n", "proba": 2.467176329901122e-07} {"commit": "ab6357d3b025e68b1826894432a6a2d7061061c7", "message": "Corrige une date mal format\u00e9e\n", "proba": 1.530332156107761e-06} {"commit": "7ae8349c5697242b79a6f5cd9fc3b6ba52d5d22d", "message": "replaced with env lookup\n", "proba": 6.603412202821346e-06} {"commit": "cb394df45edf077153777cd7359e890c43c25df4", "message": "Add tests for missing term\n", "proba": 1.9270667053206125e-06} {"commit": "2fc91a4d1fbbe367d26435024728aaa931ae6616", "message": "Add test for repr\n", "proba": 5.166485266272502e-07} {"commit": "66b646c3646be63f7faab8e3efad2e8ec0ae5a1f", "message": "attempt to execute the script by using ./ on python 3.x\n", "proba": 1.1786441973526962e-05} {"commit": "edfa22f7564ef9efb6ff0f88ca3de37fffc3b108", "message": "Update tests/test_imagecodecs.py\n", "proba": 5.419269655249082e-07} {"commit": "60e2c9f8e46a67c086b1d822751a200c8e0b7435", "message": "Revert patching of integration test\n", "proba": 2.6373641048849095e-07} {"commit": "ad857ee29d76d2afc24c9a189c0226849f95aed2", "message": "Properly rename an integration test\n", "proba": 0.02027612365782261} {"commit": "4a3539ac1789b269178b0656165b6d3a752cebb0", "message": "Add test for better coverage\n", "proba": 3.9730824141770427e-07} {"commit": "a74a937b55f307eb727f0d9c729621de0208511e", "message": "K8sServiceTest: fixes check of invalid clusterIP\n", "proba": 1.6082083220680943e-07} {"commit": "88b251bbc5cfe7f7f7725bf3f6fc13517990c7dc", "message": "tested remove method\n", "proba": 1.2190351299068425e-05} {"commit": "e254a2d31c032301516275935ca429677441175f", "message": "Test that empty host sections do not lead to crash\n\nSmuggled this into an existing check as it does not seem to warrant a new test case.", "proba": 1.0369202385618337e-07} {"commit": "6779c782e2ed06d39003b9642d8fd034f038dd95", "message": "Fix typos\n", "proba": 0.9999994039535522} {"commit": "02ada9e3c3757274e95a5fca0a7aa598a4d14760", "message": "fix: issue ACTIONPOPULAIRE-A\n", "proba": 0.002007631817832589} {"commit": "732be9a8aedaf7721da569f5b52d6abc149ea5b1", "message": ":fire: Do the pkgdb2 thing :fire:\n", "proba": 1.1621867770372774e-06} {"commit": "dbb787db8ec6a7ee74ede116f423f0588daa3d21", "message": "clear session when logged in\n", "proba": 1.8652693256626662e-07} {"commit": "3cc7202ffae33c0a23b0286302eba4584d68972b", "message": "Add a helper for joining one body to another one.\n", "proba": 1.3931800424415997e-07} {"commit": "3cdca41e7177866b0fd2f0f69154e1caeed1cc35", "message": "Some fixes for Raouls Recharge-class\n\nTo make sure test_002 still runs\n", "proba": 1.1615259865038752e-07} {"commit": "adc6f8f6d11823c7d95aa777c934223063e87b3f", "message": "fix: force avconv overwrite\n", "proba": 3.185608193234657e-06} {"commit": "e7141cab5a731d6bd637fd0951ce60ee6f8664af", "message": "Also export rotation in geeqie metadata file.\n", "proba": 1.0570006026000556e-07} {"commit": "de2567bc7635aaf84c0836bd4477d79006a90f5b", "message": "sync all\n\n\nFormer-commit-id: e5e6ea642ed264ad7d2785377f3957aa0d899576", "proba": 0.0003220251528546214} {"commit": "55a0322da824169b207b567f3c92afd967b0d741", "message": "Minor changes\n", "proba": 3.7887019743720884e-07} {"commit": "4245b764101ccc55a6099415bbca4f5d191a2fc9", "message": "add ALL option to -with parameter\n", "proba": 3.5821858546114527e-07} {"commit": "de53ed7cdd575c920a6800522294e78a859dcbea", "message": "alternator_test: mark test_gsi_3 as passing\n\nThe test_gsi_3, involving creating a GSI with two key columns which weren't\npreviously a base key, now passes, so drop the \"xfail\" marker.\n\nWe still have problems with such materialized views, but not in the simple\nscenario tested by test_gsi_3.\n\nLater we should create a new test for the scenario which still fails, if\nany.\n\nSigned-off-by: Nadav Har'El <625169824b719df98706d88646d0aae6f368ae4d@scylladb.com>\n", "proba": 3.374965672264807e-06} {"commit": "e11723ef06b8790c44fa798f0be6381073df07af", "message": "No technique may have the troubling flaw\n", "proba": 3.991059202235192e-06} {"commit": "ac2125b3211de701a74796bffc958a50bb592179", "message": "Disable \"insecure requests\" warning messages, we expect them.\n", "proba": 1.2769245927302109e-07} {"commit": "f36c7e93942c7eba7fabf4e039136b5ddd92ceb7", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "d8225e170bac72afb09b0b05973c0f534dbc8992", "message": "fixed test in recommender\n", "proba": 2.748040515143657e-07} {"commit": "29a3ff3d2bd03bfdcef076644ed6ab1ed9aab956", "message": "Use re.MULTILINE to get rid of weird spaces\n", "proba": 1.2623500822428468e-07} {"commit": "f7fd35fc4a6f2ff627ab58b9cf62e1411e081167", "message": "test updating the minion blackout timeout to 10 seconds\n", "proba": 9.284594852942973e-07} {"commit": "d36d4db80885ff97349fbedf23731263a65629b6", "message": "Add missed coroutine decorators\n", "proba": 5.72033741264022e-07} {"commit": "b6852434ac89d293589a215d2ea4085ca4dee045", "message": "Disable cuDNN by default for the BaseProfiler.\n", "proba": 1.0793869620329133e-07} {"commit": "0bd44d352ef85d7c45b819841ff1ee6c5ffae55e", "message": "add missing semicolon\n", "proba": 0.9999992847442627} {"commit": "808b4fb83560ebf0445bbcff34b465a3949b8244", "message": "corrected err parameter\n", "proba": 2.4024520826060325e-06} {"commit": "d2017ccac2908df11bce6f991aa089ae72658809", "message": "rename alias bug\n", "proba": 5.986007067804167e-07} {"commit": "8f56eb09fe225ddf15298be4894cb0907f4eaa7f", "message": "[Tests] Cleanup feature_block.py, remove unnecessary PreviousSpendableOutput object\n\nSummary:\nPartial backport of Core PR13669\nhttps://github.com/bitcoin/bitcoin/pull/13669/commits/44bbceeef1b76526b73cbdd3ff785c4d5b2c74f1\n\nDepends on D4821\n\nTest Plan:\n test_runner.py feature_block\n\nReviewers: deadalnix, Fabien, jasonbcox, O1 Bitcoin ABC, #bitcoin_abc\n\nReviewed By: deadalnix, O1 Bitcoin ABC, #bitcoin_abc\n\nDifferential Revision: https://reviews.bitcoinabc.org/D4822\n", "proba": 5.156082806934137e-06} {"commit": "371f7968f63baf30c91b57d6a307ecc56bcfc20d", "message": "as long as I am nearby, use the new API\n", "proba": 2.865989756628551e-07} {"commit": "62559405f01fb444819beccbb8cd5816b402e132", "message": "fix for prompt-toolkit breakage\n", "proba": 2.3750101263431134e-07} {"commit": "9a0e3e6e37dd3cdb82ae8076f9414d3c9a007fe0", "message": "Add size and time to Log index,too\n", "proba": 1.7882369718336122e-07} {"commit": "27163c756389dc57bff17b5331934e7496c2aa09", "message": "add qctools report writing/gzip compression\n\ngzip is surely not installed by default in windows, right?", "proba": 1.0030871067101543e-07} {"commit": "4442bccb3c2fa45c8681a0f63b32206089872937", "message": "test mesh interpolation invariance (FieldVariable.evaluate_at())\n\n- new gen_datas(), test_invariance(), test_invariance_qp()\n", "proba": 1.579581748956116e-06} {"commit": "d3fdb3df64fae4b1cba5385df085dcf2b806691b", "message": "test(bitbucket): fix invalid ips\n", "proba": 1.7940217730938457e-05} {"commit": "e9ae2244043116ebde3d8ee45c98879f88edaedf", "message": "bump version 0.4.1\n\nSigned-off-by: Pawel Nuckowski <3410d478534dc950630c1b06a87f6026e7fda7ed@gmail.com>\n", "proba": 1.0611902467871914e-07} {"commit": "5c2e51a5cd3b63245bebb905f306679a8d1120cb", "message": "ext_grid collections\n", "proba": 3.8046553640924685e-07} {"commit": "167af4dc4901a8c4525fdcc405545d10048568fb", "message": "CLEAN\n", "proba": 2.426723949611187e-05} {"commit": "d95474e060f25e3eb251bb77a21ab87e7f7b7d5b", "message": "python 3 fixes\n\nfurther fixes\n", "proba": 1.224770187491231e-07} {"commit": "ea576e7c53d29c61e47b6588e6bb8a406e8f48ea", "message": "fix _timeline_tweets search not working when start_time was not set\n", "proba": 3.1168037821771577e-06} {"commit": "fbb4bfcebc2a5de1da589be0f0056ba87410591d", "message": "Updated the code to actually make some sense (not really).\n", "proba": 1.2909875124478276e-07} {"commit": "2b53c57b9d1625297ef730415915bd1f264730a5", "message": "A simplified size verification helper and an extra test for sizes which are not divisible by the allocation_unit\n", "proba": 3.632512175499869e-07} {"commit": "d4290f6c1b9d2e5f3abd9ade9aabbe144bf7e144", "message": "Write better log xml\n", "proba": 3.5891440347768366e-05} {"commit": "e00e02f17c39f78a14b0d0231b761a43fc6a3022", "message": "Adapted tests to new classy version\n", "proba": 1.2309223507145362e-07} {"commit": "82d7c546387b3e8081854dd85a0f27423e9349be", "message": "Imports.\n", "proba": 3.639121075593721e-07} {"commit": "4f595e9031890a335b12e783e5f70b4e5623f856", "message": "Fix cartesian join re dataset deps in update_state (#24925)\n\nWe use the subquery to get distinct downstream dataset references for the dag (there could be\r\nmultiple tasks that touch the same dataset), then join to DDR to get the dags pointing to\r\nthose datasets. The subuery avoids a many-to-many join.", "proba": 1.662033071170299e-07} {"commit": "86d4590ade845af9ce862b9a1ed01ef49346ed84", "message": "DEPR warning in io/data.py w.r.t. order->sort_values\n", "proba": 8.549431527171691e-07} {"commit": "f7359ffb7421b679a248187a92561c0800d7febb", "message": "Fix Redis driver with Redis 3.2.1\n", "proba": 3.3868749596877024e-05} {"commit": "b289edbfa2a2dd40b2d1a52bb9f05299f913fe36", "message": "fix the tests on django 1.6\n\nAny exception inside an ORM method (like those cause by our pre-delete\nsignal) invalidates the transaction. You need to use an atomic() to\nprevent this.\n\nReviewed-by: Antoine Catton <4589f2e060cef08c47d868a06754605a848a1006@fusionbox.com>\n", "proba": 4.6365192929442856e-07} {"commit": "90cf82224339992b52ba2dd576700bac91cbdece", "message": "add cpython SOABI when available\n", "proba": 5.028576310905919e-07} {"commit": "7eeb1b3b4c69e75ff05d9f04c9c8458825007178", "message": "Remove annoying border\n", "proba": 1.725844299471646e-06} {"commit": "5632714fb0a246726bf227e0370f14d2cf7b4501", "message": "edits\n", "proba": 5.252051664683677e-07} {"commit": "22acb9f29d29e74c8b2dcbf485470608e5952e6e", "message": "Update test_mppcommands.py", "proba": 9.461038530389487e-07} {"commit": "dd9f04e152997b7cff56920cb73c1e5b710a6f9d", "message": "Fix performance degradation when updating dagrun state (#8435)\n\nCo-authored-by: Dan Frank ", "proba": 4.0420781033390085e-07} {"commit": "8db55f5ce371620408cb9c5d86583896b6bc7fdf", "message": "Update status endpoint with latest entry.\n", "proba": 1.1363940899400404e-07} {"commit": "20d1c20e3f0ec0b93425a70f0dded8742553b9fc", "message": "Some switches mislabeled as optos\n", "proba": 0.0015478176064789295} {"commit": "8b385b98ab5c1df822e39581a1efc53718366737", "message": "fix failing test\n", "proba": 5.703402166545857e-06} {"commit": "9a3d5b519d762e7b33371e74d858453d3a3339de", "message": "Fixing base types\n", "proba": 4.137518772040494e-07} {"commit": "f160d7d82b402c0297cf9d1c6fd22ca47ff117be", "message": "Proposed changes for ``test_metrics.py`` (#1577)\n\n* Trial pytest changes\r\n\r\n* Updated tests\r\n\r\n* Fixing errors and repetition\r\n\r\n* Updating tests\r\n\r\n* Proposed updates\r\n\r\n* Removing TestMetrics class\r\n\r\n* Update test_metrics.py", "proba": 2.2151276368731487e-07} {"commit": "d2daf66c627297fbe420a5f8330bacf22b7eeedd", "message": "fixes issue #53\n\n", "proba": 1.4827551808593853e-07} {"commit": "7f63cc41e3e540507e15810f1292e59b1f968e4c", "message": "Update test_mppinverter.py", "proba": 1.009344487101771e-06} {"commit": "9bd7887fe590257040209bececaa47771788b36a", "message": "space apparently possible ?", "proba": 2.013946414081147e-07} {"commit": "3e656fd0f73e92cf6c54fb712b1763572702229a", "message": "Refactor to use subproc instead of biopython wrapper.\n", "proba": 1.1268851807244573e-07} {"commit": "d432722b4ecb64f52acb8fca8c0a3ca32f3d3a5a", "message": "This actually matters.\n\nThe namespacing of Retry needs to match for some internal requests\nhandoff to work.\n\nSee https://github.com/sigmavirus24/requests/commit/c4bd6ea1501ee24a7e45d3e888f11d2a52e41469\n", "proba": 1.5392901104860357e-06} {"commit": "a09f1f3cf7808855f1b4ab145414b7556810578e", "message": "Removed app-stack from create_elb\n", "proba": 4.6256457153504016e-07} {"commit": "d22ec839fdcf8b5d5c6876403d7b7d970650f300", "message": "Fix test_run_with_tuple if home directory does not exist\n\nWhen the home directory points to a directory that does not exist (e.g.\nwhen building salt with sbuild), some test cases will fail:\n\n```\n_____________________________ test_run_with_tuple ______________________________\n def test_run_with_tuple():\n \"\"\"\n Tests return when cmd is a tuple\n \"\"\"\n mock_true = MagicMock(return_value=True)\n with patch(\"salt.modules.cmdmod._is_valid_shell\", mock_true):\n with patch(\"salt.utils.platform.is_windows\", MagicMock(return_value=False)):\n with patch(\"os.path.isfile\", mock_true):\n with patch(\"os.access\", mock_true):\n> cmdmod._run((\"echo\", \"foo\"), python_shell=True)\n\ntests/pytests/unit/modules/test_cmdmod.py:159:\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\n if not os.path.isabs(cwd) or not os.path.isdir(cwd):\n> raise CommandExecutionError(\n \"Specified cwd '{}' either not absolute or does not exist\".format(cwd)\n )\nE salt.exceptions.CommandExecutionError: Specified cwd '/sbuild-nonexistent' either not absolute or does not exist\n\nsalt/modules/cmdmod.py:665: CommandExecutionError\n```\n\nSo change to `/`, because this directory exists on every system.\n\nSigned-off-by: Benjamin Drung <86a6db991ec5c1a96f98c92b98df9d547d7c8c84@ionos.com>\n", "proba": 0.9999955892562866} {"commit": "d9c9a0fc9996f03fdfd3a78b6df36538b755fbe8", "message": "general work\n", "proba": 2.785000674521143e-07} {"commit": "1569564cc45bf5ecf35cc4d9b47e68101c8b6b56", "message": "Add call_later to txaio.__all__\n", "proba": 3.97346525460307e-07} {"commit": "b5fb2dc739181aa5643da0cb72ba6094f92a948c", "message": "smoke test for multiple unions; made test more \"DRY\"\n", "proba": 1.2020801420931093e-07} {"commit": "9c598989be572b5b6570c3b881856ddf0634f1a0", "message": "ntfs test minor change\n", "proba": 3.648928270649776e-07} {"commit": "592e1fe7a9f0e05650c5ec6dd0897a79915ab706", "message": "create dataset for game, team, players\n", "proba": 0.9984581470489502} {"commit": "5535d48843499aa51f2c8249f2a31565d7ee4d22", "message": "Add test for MergeComposite on a QNN graph (#7080)\n\n", "proba": 1.1036905789296725e-07} {"commit": "03cddf4ee5737911518b172c5cef250cbc0e1174", "message": "replace deprecated inspect API to support type annotations\n\nInspect's getargspec() has been deprecated and doesn't support type\nannotations. If a method is decorated with type hints, the result will\nbe\n\nTraceback (most recent call last):\nFailure: txdbus.error.RemoteError: org.txdbus.PythonException.ValueError: Function has keyword-only parameters or annotations, use inspect.signature() API which can support them\n\nFixes cocagne/txdbus#80 \"ValueError is raised when annotated functions\nare used\".\n\nSigned-off-by: Henrik Lindblom \n", "proba": 0.0001837395248003304} {"commit": "7245ba0130a776c96baff72249d0fbedd7f198a9", "message": "Add tests\n", "proba": 5.818237696075812e-07} {"commit": "345d4a816a371ebb868f41c8eb81a2f87008eae4", "message": "Fix tests in the CI\n", "proba": 3.07121035802993e-06} {"commit": "5306c646128072f91cebbcea5158c5c8870e333e", "message": "auto: format python code\n", "proba": 0.00017442504758946598} {"commit": "685387b18d91789c1d4f772d35db4310daf9ce29", "message": "Updating to test on bench PI.\n", "proba": 1.18643832536236e-07} {"commit": "73721912e2bd4d08d7bfaa641b8158ec09542dd7", "message": "Fixed #16002 - test failure due to missing `from __future__ import with_statement`\n\nThanks to julien for the report\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@16213 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 5.016281079406326e-07} {"commit": "3715088c2efd1d285edc7772a5296c9ae3d1a997", "message": "Fix first line of csv to include strategy name\n", "proba": 0.0012352106859907508} {"commit": "ed3b403724556b0f51f124d22f7c256285d9a9e0", "message": "Fix the server not being able to set status modes\n", "proba": 1.2143901813033153e-06} {"commit": "9804079f2ed9b6351eb74d97a730d6624c096355", "message": "Updates test.\n", "proba": 1.489777048391261e-07} {"commit": "346fc8e6e208f88908e92875296916b3cf86d67f", "message": "Tweak wording for Flight\n", "proba": 2.1183369369737193e-07} {"commit": "fd1c9b7172ed4063bea6e5b62e4699a2d451920a", "message": "FileNotFoundError does not have a reason.\n", "proba": 6.894293846926303e-07} {"commit": "0f69f5081c60fb399c1b0e20625259d9f7d4ca37", "message": "Cache provider numbers\n", "proba": 6.191863803906017e-07} {"commit": "db0d6b406d567965130173e049d2b97323fcc2fd", "message": "Use random.choice+tuple instead of random.sample for sets (faster, cleaner)\n", "proba": 4.376091737867682e-07} {"commit": "93144a6cc95c58c76d3fa94a9375c6d682967084", "message": "permute common quad face in _gen_common_data(), new _permute_quad_face()\n\n- all keys from _quad_ori_groups in sfepy.discrete.fem.facets are tested\n- face permutations are not applied when testing serendipity basis for speed\n- update Test.test_continuity(), .test_gradients()\n", "proba": 1.248107878382143e-06} {"commit": "053a316cd65db6fa2056dd2d6a2cd0d4ea1f97ec", "message": "Product: Fix startup artifact\n", "proba": 5.2537568990373984e-05} {"commit": "1ef3d6111a8e4f32dfa9a2c311b6996afd9e98a5", "message": "Permit warnings in *_stale_pyc tests\n\nThe *_stale_pyc test is repeatedly failing on production systems\ndue to additional pytest plugins being installed and triggering\nPytestAssertRewriteWarnings. This causes 'passed *' string not to match\nbecause of the ',' after 'passed'. Match just 'passed*' instead\nto solve this.\n", "proba": 3.648468975825381e-07} {"commit": "54c990e87ada7a9110d3e81ba54b75ca7adbcfe6", "message": "Or old value is None and expected to be a set, make it an empty set; otherwise we raise later.\n", "proba": 2.9098373488523066e-07} {"commit": "57b1baf1d1e569d59ff3e674130e5b1234bdd9e0", "message": "Add a test to reproduce #1006\n", "proba": 4.3741474087255483e-07} {"commit": "1bca0eaccb1f6c704c1a663787dac39ecd80f617", "message": "adding a test for multibyte delimiters\n", "proba": 6.108314209996024e-06} {"commit": "0180b88e3ab42121d40ac551d8c5731a94e285d1", "message": "check for None maxsize and also check that pipelined netstrings work fine\n", "proba": 1.633138282386426e-07} {"commit": "474b159ddc1a0a506591c50b5eb01aa53412b4a4", "message": "Add tests\n", "proba": 5.818237696075812e-07} {"commit": "901d8abf2207a08cada7faee43b954164c5aa7c9", "message": "Test length of the value_list for metadata_list test\n", "proba": 2.721051487242221e-06} {"commit": "bd923db365facbd22708ba2dd9e5dfd4183870e1", "message": "elk tests ready\n", "proba": 2.235707654563157e-07} {"commit": "e31a6e2087a41146e8f8a5b3bb3dc715f3a6aed2", "message": "updated tests\n", "proba": 4.204522952022671e-07} {"commit": "fb327381b5b7ab31ab15f7addb91e9c681811860", "message": "fix: Skip copyright verification on deleted files\n\nChange-Id: Ia0d549dd6a50c23990ad482e0e1768a83498af3a\n", "proba": 5.147314823261695e-07} {"commit": "6932533c296f24d38a916280f83bc797f6c65e0e", "message": "fix: pass along config in tf shim constructor\n", "proba": 5.759943064731488e-07} {"commit": "0c737df2badf9dd6b71e63fc0c7972342483a025", "message": "Fixed MultiRequest wrapper to use a max HTTPConnectionPool size corresponding to the maximum of 10 (HTTP adapter default) and the max requests issued per batch\n", "proba": 1.603127515181768e-07} {"commit": "af5d3fbaa905ab27245e9da7fc3514eec28c0e94", "message": "TB auto update checker added\n", "proba": 2.018016544980128e-07} {"commit": "fe6bb4e16b15efbaab4c32978d930153deef51a3", "message": "Auto update improvements\n", "proba": 3.436131805756304e-07} {"commit": "4f93f473390845226522230204eef094b91a0932", "message": "updated model tests for UserCompletedCustomAction\n", "proba": 1.5036481215702224e-07} {"commit": "6e8f5ab23945202dcca7cb5a5f05187351a8f303", "message": "fix error when adding perm to a group\n", "proba": 6.41362589703931e-07} {"commit": "aa68663797746d655b60f8008d350999208e8f29", "message": "Refactored the netcdf2kml files into reusable functions.\n", "proba": 1.2893437428829202e-07} {"commit": "8ec37d86415ca2d6959f2f47904d2a18add86d5d", "message": "Do not use git-shell for students\n", "proba": 3.3966566093113215e-07} {"commit": "797a3de341225f3b7aa6147d69f305991ae2c48a", "message": "Test reading in single sheet in multi-sheet Excel file\n", "proba": 1.7835502319485386e-07} {"commit": "a4cd2807890b4f0d31cfdb768db6dd878db95aa4", "message": "Conflicts resolved that arised in merging discussion views/urls\n", "proba": 1.2949703886988573e-07} {"commit": "a43bb2396ef7f94d3d5d187205cb218ddd8de362", "message": "Sort/List sub partners last update wise\n", "proba": 1.3084944328056736e-07} {"commit": "0250176e5dec3e5f90c0e0a2d108bdf59f85beff", "message": "pep8 fix\n", "proba": 2.8706645593956637e-07} {"commit": "78c6e4e5e52b5460fb774ecfe3a4f117cc895a33", "message": "fix check_jaxpr docstring\n", "proba": 4.6957387667134753e-07} {"commit": "09f39d891abab7e92bcd9c1e2442aa001d433278", "message": "remove __all__ from api, because not needed, fixes #180\n", "proba": 1.1501407243486028e-05} {"commit": "c311fb77fb62e40647992aa1f360c64d58f328c0", "message": "Make it possible to override raise_to_shaped for new types (#4064)\n\n", "proba": 1.3663650122452964e-07} {"commit": "527562208cb3c78a933f7a18db52a28120bedc26", "message": "jedi_vim: reorder to use echo_highlight in try-import block\n\nThis uses `echo_highlight` for exceptions caused by an empty \"jedi\"\nfolder.\n", "proba": 1.1489181872548215e-07} {"commit": "f382875d5a0ca225a49027f34819b9991bda3cde", "message": "embedded bots: Add full test coverage for queue processor.\n", "proba": 1.0899587010726464e-07} {"commit": "754f98d7f3c8ec70ae10934c8cf8816ed460a9da", "message": "get_all_deployments() now really all deployments.\n\n * Enabled or not\n - Enabled deployments are those that are deployed and being served.\n * Assigned or not.\n - Assigned deployments are those that are assigned to a server group.\n - In other words, if deployment.server_group is not None, it is\n assigned.\n", "proba": 0.00015963116311468184} {"commit": "fae09996b53b1f7b17a54b55555272c40fa08ad7", "message": "feat: add ajax functionality to logout (#2065)\n\nThis PR is necessary for single page applications to handle redirects on logout.", "proba": 1.042299828668547e-07} {"commit": "fc955453787491127c557b4e18a4757960ea8c2c", "message": "rename: save/restore tab/windows; not via `new_buffer`\n\nRef: https://github.com/davidhalter/jedi-vim/pull/364#discussion-diff-25785992\n", "proba": 2.8605285251614987e-07} {"commit": "198f4015e4c14b0b1c94a9db0ad6ccb48d39ae19", "message": "RedirectAuthenticatedUserMixin now handles ajax request correctly when user is authenticated\n", "proba": 1.374932168118903e-07} {"commit": "809852ce55d7dcf027aeda80e89db92a1d01fede", "message": "import uncorrected proof list from __init__\n", "proba": 3.19650126812121e-07} {"commit": "f3d51772d65fdd0815b8fbc497e9a451af13175f", "message": "Fix api.Script docstring\n", "proba": 0.0004331675299908966} {"commit": "84b2946b884eb9ef905724ee4cf2fca9dce85ef9", "message": "Remove kafka from list of JMX checks.\n", "proba": 1.107099834030123e-07} {"commit": "95fbdef2f635b6de3df3a960176e6899e6b05b2f", "message": "make SCHEMA_PATH absolute\n", "proba": 0.999963641166687} {"commit": "62ba7446a67dec0d6edbba6a706adb7130ffcc3e", "message": "Round off in on_command_error\n", "proba": 0.003533346811309457} {"commit": "bf559ddea4a22a766c4eaa5a0954e514bfd5e3f4", "message": "add rolar command\n", "proba": 2.1931602532276884e-05} {"commit": "abdd4073d1b1df9fa0bda6e36f1f061e64d93ba0", "message": "New serializer for point\n", "proba": 2.42104022163403e-07} {"commit": "42f98ee55e2ca75c7e08dff19e3cf5750632223c", "message": "removed the multi-line because it added new lines\n", "proba": 1.624748074391391e-05} {"commit": "db4d2ddc54df1c10eca0133719d034398b5709cb", "message": "Warns if using --edit without editor\n\nCloses #151\n", "proba": 1.3614938154660194e-07} {"commit": "43d34dcd642ce9a5bdb49f8d65f8a665129f3237", "message": "Replace np.vstack with np.concatenate in load_data\n", "proba": 0.9999566078186035} {"commit": "209b314d398735543ff74d46e6fc3b336a4ae723", "message": "Create and update waypoints.\n", "proba": 1.1603092531231596e-07} {"commit": "ffd9507df79035365a718973b8cb5719b16fd578", "message": "improving Call tests\n", "proba": 2.5898725652950816e-07} {"commit": "f363222b3fd18d14f14b4ce5b1b15c8f25ebf21d", "message": "Make merging bed entries optional\n", "proba": 1.5028267625893932e-06} {"commit": "7d092ad92a180b0cfa1c7cbcfc4a5d0a86e09657", "message": "Utilisation de \"import netaddr\" au lieu de \"from netaddr import ..., ...)\"\n", "proba": 2.150547118162649e-07} {"commit": "468ab077e007c2d7ff6a7e7c298fe3b514841608", "message": "No negative attenuations\n", "proba": 0.00014327913231682032} {"commit": "d2805f78522c8868c4deb92e3b17a37373794bd5", "message": "Use panel instead of error_message\n", "proba": 3.1109010478758137e-07} {"commit": "7d0b048d97572b3b835c0d7851434ceba8b89106", "message": "Add collections to remove list\n", "proba": 1.9400950179715437e-07} {"commit": "bd5a2662255bc5eff632f0dd2de705e39b5b5961", "message": "fix saving one to many relations when only pk is given (no refs)\n", "proba": 1.8385344446869567e-07} {"commit": "8879e9827b0160776031bd06ef083b81282904e5", "message": "Update validators.py\n\nRecaptcha not always returns error-codes and flask-wtf might crash with such responses.\n\nHere's sample response that I got today:\n\n[console ready]\n>>> json_resp\n{u'success': False}\n>>>\nKeyError: 'error-codes'\n", "proba": 2.592029773040849e-07} {"commit": "b84189cf37754ba9690ee27b1e981667c7ef8191", "message": "JMXProbe: compositeDataToManyRecords and field \"value\" as data catchall member\n", "proba": 1.1895959062258044e-07} {"commit": "88938f12c18e7171f60c554f195add84baba50c2", "message": "Plotting network output as board in matplotlib\n", "proba": 2.3774303770096594e-07} {"commit": "0e72d3db0a90bb15dafd16ae142490e906566dbf", "message": "remove import unused in community edition\n", "proba": 1.886157150465806e-07} {"commit": "8a54dfe9cdc009f4c33e168554caacfd9dd1cbf2", "message": "link on the review button for the new cockpit widgets\n", "proba": 2.171361472846911e-07} {"commit": "93fb5b3356f1b8e0bd302b66d4f788c49fe25c4c", "message": "quote that argument\n", "proba": 0.0007932222215458751} {"commit": "c1936044b31a358965f8af50e826a290d4d8df44", "message": "Added CS section to config\n", "proba": 1.7562454956987494e-07} {"commit": "e7d59263d18f6deff3084aa59f1af0199046a000", "message": "Split out tests for letter and email branding\n\nThis also fills a gap where we weren't checking the central org\ncase for letters.\n", "proba": 2.3297351958717627e-07} {"commit": "bbd2b0362c1cd9c599675ce6226cfa0fd29761fa", "message": "Removed maxdiff line\n", "proba": 2.597877539756155e-07} {"commit": "b6aeb98857a2568140ddd9c183771b84b971f062", "message": "-Update of docstrings\n", "proba": 1.322026008665489e-07} {"commit": "d630a7e508daebf6752de7fe55a5e8ca5802d3de", "message": "Fix bug in group list", "proba": 6.312205300673668e-07} {"commit": "9b714543d7928900380e554694573045d7bf9130", "message": "Go back to auto-creating groups\n", "proba": 1.73635910982739e-07} {"commit": "2269b849ac99f40212d715e94ab0e7d7fba4b525", "message": "Add new table\n", "proba": 0.00016310691717080772} {"commit": "a759a54d574912c696d8e50bbf0ea8d828c4a259", "message": "getOrgAdmins function added to profile logic for codein.\n\nIt is just an alias to the generic function, so there is no urgent need to test it.\n", "proba": 1.0987273668661146e-07} {"commit": "2f220153470ca87a7107060e1f92aa777432f095", "message": "user_id cast to int in valid_admin\n", "proba": 1.7061572634702316e-06} {"commit": "011c79dc9b51f50d7d0fb8858d37065283e88776", "message": "Refactored user handler to use base interface in the core\n", "proba": 1.8197421525201207e-07} {"commit": "e89937c387aa418768ae53bcd5d38a1dbb1dc1c6", "message": "fix typo", "proba": 0.9999909400939941} {"commit": "7efbc41c43eb49f57c39688ff02365a47239afd0", "message": "[FIX] check that pictures exist before using\n", "proba": 1.8135294510557287e-07} {"commit": "3933ccf0fc1bc42fbb9d7e415392cae6e7d04a0e", "message": "Use delayed fields for auto-generated ModelChoiceField too.\n", "proba": 1.0528877680826554e-07} {"commit": "3b13d437e9b63a4452be9a6316601992c435ff7e", "message": "Update numberOfClusters to get available backend\n", "proba": 1.5734927671928745e-07} {"commit": "957039f8b17f5a8992fb9f1bd012d13e6609347b", "message": "Fix issue with asset dir not being created unless there is other dirs\npresents\n", "proba": 2.0880624163055472e-07} {"commit": "f6b74baf7c372b53011ab84781707b852b51df99", "message": "Add init_scope tests to TestChainList\n", "proba": 4.4625556938626687e-07} {"commit": "d69f9fe875eb8813c8d6154d166e81a9ce5e4aab", "message": "Make ajax_user_list test user list to be ordered by id without guessing\n", "proba": 5.134027378517203e-05} {"commit": "682446b11e30c4ec5cbc24c3ccefedc98e7905af", "message": "Pass list of frameworks and grouped services by status to view_supplier_services template\n", "proba": 1.2338605870354513e-07} {"commit": "6463251950e7927543845a9a5bb0cc678aee0426", "message": "Use tilegrid bbox if no grid_bbox given\n", "proba": 3.0828223316348158e-06} {"commit": "c4f5a5f0f4825d8627ac53260b56262b08d13b72", "message": "Some basic logic cleanup to get rid of a bunch of regular expression calls.\n", "proba": 1.1244783593156171e-07} {"commit": "e6485fde829d96cc6acb19da46d0268944aecde0", "message": "remove extraneous space in changelog\n", "proba": 0.01907632127404213} {"commit": "858ab2740dffa0cb729812454a8283895ca72009", "message": "add area color rendering to map renderer\n", "proba": 3.0030668085601064e-07} {"commit": "bc90848a5e24ce65fd4277b8b592be93e7802953", "message": "removed wrong line\n", "proba": 1.6456111552543007e-05} {"commit": "729e187730a1b447d56de65cf7c88523fbb0e95d", "message": "version bumped to 0.2.0\n", "proba": 4.116984371194121e-07} {"commit": "805e654be1c46fc56c1fb3ca482cc0a10b43c42e", "message": "todo: added a todo.\n", "proba": 4.776422883878695e-07} {"commit": "70e3a39db8763e4febb6bbd9abeb702c9e343157", "message": "feature: more stopwords.\n", "proba": 3.321918029541848e-07} {"commit": "128e8e832d99f91f90a9ece5c733fe21adc213dc", "message": "Dont overwrite test function names\n", "proba": 1.3180332416595775e-06} {"commit": "300ad8e21cf403dc2c8f648e034abcad7485e8f3", "message": "tests/geo/surface/planar: check that get_mesh returns rectangular mesh\n", "proba": 5.081092240288854e-07} {"commit": "93a987ccb395608529f1ede7e106b6691797db2a", "message": "Fix import NI services\n", "proba": 3.10960189153775e-07} {"commit": "ebcacd61c5a6d0762a5f2b8ca3baa356e3d6be52", "message": "revert x,y naming in calculate_directions", "proba": 3.0657997740490828e-06} {"commit": "f85586d6bab79b35c0f221486f781994eac3f504", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "8d40af6cf9f45cfd7724cc11caaa8b78df8f342e", "message": "Make test future proof\n", "proba": 4.788871228811331e-05} {"commit": "d9d12bf8fe77b077ca734e0702749b5ebb867c1b", "message": "Add fake Reverb transition dataset to testing library\n\nPiperOrigin-RevId: 317069839\nChange-Id: I01e4921dfee4597afe8f7d45407c2eccdbd983fa\n", "proba": 2.3813702227926115e-06} {"commit": "532643e503691a8cd1fec4c42c2456b23d5d73a3", "message": "Assume all undefined levels are objects.\n", "proba": 0.9999771118164062} {"commit": "3c299a491c4098f321cb309842b9d917e510a183", "message": "remove nbsp from cell values\n", "proba": 7.246602763189003e-06} {"commit": "61d010321a602e08df5a4f53c7080f4e5004a628", "message": "Remove locks.\n", "proba": 5.968831260361185e-07} {"commit": "631c6a77ac8e8184875c4559d13f92dba87accbb", "message": "Added retry loop in case the upload fails (RBL-6374)\n", "proba": 1.0958078178191499e-07} {"commit": "2a539882b9b43f55a49136d3853c86d9c1427455", "message": "Fix docstring for cancel subscription function\n", "proba": 3.1862413152339286e-07} {"commit": "2b1aba8ce15d678461fe42c17aabee5b4b3acd36", "message": "Fixed url module once again.\n", "proba": 1.1172715375096232e-07} {"commit": "49d1b0ed3079f71f22eed49941c711f99398149b", "message": "Set required version of CLI to 2.14.0\n\nSet required version of CLI to 2.14.0\n", "proba": 1.4771450196349178e-06} {"commit": "27a6f0a8f7606a0e09f702324ddd28b9d2ea46eb", "message": "Update app_management.py", "proba": 2.71067074208986e-06} {"commit": "cfcb0297df7d881771689946f127c521cacf4265", "message": "cfg/bubblesub/sr: add -a option\n", "proba": 1.0039233302450157e-06} {"commit": "374e73c9b334a5599188b7ea34db1ddf69d6e711", "message": "Remove Apps list\n\nRemoved the apps list from the sensors, as it seems to be too many repeated information.\r\nAlso removed real-time update of the sensors, as it seems not so reliable everytime", "proba": 1.5929015262372559e-06} {"commit": "e46e683945095ee9e51a8e39ac4c6e48f3138ebd", "message": "Remove obsolete document\n", "proba": 0.00010021086200140417} {"commit": "65220b72cfc7825f91021b9428e1da99e0c4f904", "message": "adapt to refactored catalog.", "proba": 1.2390762549330248e-07} {"commit": "0e7f7279b18239d60a1a4602bb9f6fc94d617cd9", "message": "Fix typo on update_sliver_info\n", "proba": 4.220034315949306e-05} {"commit": "6dd7fee797d401987eb1dcd285d1c8049981dd40", "message": "If slice lead changes, update sa_slice table\n\nfixes tkt 66\n", "proba": 2.1294285090789344e-07} {"commit": "a4a0ef4ebb2b9b3920fd2879fffc0dc6524f05f4", "message": "Don't update title before it goes through tasks (#1463)\n", "proba": 1.1833579094400193e-07} {"commit": "e295554fe5c17a01f0747b87ec2d0ab81199493f", "message": "Remove storage\n", "proba": 8.777335551712895e-07} {"commit": "37cf11f0b50bda09a4e3f90b45e582bbbd86a2fe", "message": "Remove duplicate import.\n", "proba": 3.78637963649453e-07} {"commit": "bb8a39d699ac929d420e23d4566e8252bfccbf64", "message": "core: Pass copy of core to ErrorHandler instance.\n", "proba": 1.0667832128774535e-07} {"commit": "52ce57c8dae2076c8291d997ff324b724bf1d285", "message": "fix: session date and time conversion issue has now been resolved and other end points are working properly\n", "proba": 1.1470974925487099e-07} {"commit": "fa4a74e6b7d0b4dfcdb414b1fb93d22951f805b2", "message": "Defie split_root_partition state\n", "proba": 1.603202463229536e-06} {"commit": "a6fb864d02052c0c9c043a45871447cd14ba94ef", "message": "set_form_versions(None) is a noop\n\nShould these be actually doing something?\n", "proba": 7.400287245218351e-07} {"commit": "7b79c850437edb5508890c52c73076e555f74182", "message": "use location_id property on fake locations\n", "proba": 2.8841023436143587e-07} {"commit": "a2a9850d9000a53e1294aee61d649dd23ca55d7f", "message": "Say stub history was updated after save()\n", "proba": 1.2241956426350953e-07} {"commit": "ecda801539508ab07918994dcc3210e6c601e76f", "message": "debug.\n", "proba": 5.692169793292123e-07} {"commit": "f5d521b45fe5091f50644d03a44cde1dabed0834", "message": "hotfix to remove RTDocs from the evaluators\n", "proba": 1.3507336404927628e-07} {"commit": "43a852ff895cba0f66d1912a2252e808356baf91", "message": "Added filmHeight methods to softimage adapter. Added comments for magic numbers.\n\ngit-svn-id: a3b746cc1383a42926249ed33eaccad697259b1b@17763 896c8824-d3f5-0310-9c61-ac502b9a79dc\n", "proba": 2.2330652882374125e-07} {"commit": "892c5016d8d499a7c623d5ff6252e56b1757bf45", "message": "Stop stifling the equal sign in workgroup API class\n", "proba": 9.305825869887485e-07} {"commit": "18d3191658f8fcd14c734c3239c895cddaf6dc6d", "message": "more logging for failed auth\n", "proba": 1.4794048297517293e-07} {"commit": "81c33b8ae000cc11bb5ce2e9fcc359baa68ec593", "message": "deprecate old functions for translating models\n", "proba": 0.0003016912960447371} {"commit": "51425b21cbd732900560072da313fb70a8bf8557", "message": "Quick fix: Do not show links to deleted Questionnaires\n", "proba": 1.300952874316863e-07} {"commit": "f7463839b7a7373da25ea547aefbb86486039d93", "message": "Include file.signed in the signing API response\n", "proba": 6.187412964209216e-07} {"commit": "cac83768f446184095268d0b0e0e87efe8e85d54", "message": "Revert \"Revert \"Use global increment setting to auto-increment (bug 756242)\"\"\n\nThis reverts commit 04c1caeae4c15297bc742b84280b94063c3d9e17.\n", "proba": 1.1892771567545424e-07} {"commit": "69ad571f7ebe731d3f960740e368fd3c1720fa9e", "message": "DEFIVELO-106 Cleanup filters for coordinators\n", "proba": 1.1731594895536546e-07} {"commit": "5e6713bfdc28bc6cb8601e5859800021d114e2ed", "message": "Minor fixes.\n", "proba": 1.3141544741301914e-07} {"commit": "39232c2c5c0a6948234f22ac3dd2ba148fc443fe", "message": "Fix build error\n", "proba": 8.29380155664694e-07} {"commit": "61e3721ac35b04da9fede590a84ac119c7727838", "message": "use the git commit object for author date instead of last modified\n", "proba": 4.3271055005789094e-07} {"commit": "10195143fcd23acd3f0518e0be196a3ea17c0a20", "message": "differentiate test for web and mobile\n", "proba": 3.039760940737324e-06} {"commit": "fba72d1124f7fb8878b06c23fb911a6f2a76a5ac", "message": "uses datetime.now to get correct date\n", "proba": 1.0459643817739561e-05} {"commit": "562a30225ecc5f126d86142f94b8d0270de77359", "message": "fixed bug\n", "proba": 6.589494319086953e-07} {"commit": "92b90cbdd41905d69863b7cd329d8280a3662db8", "message": "Use codereview.chromium.org instead of chromiumcodereview.appspot.com in extensions doc script.\n\nBUG=273810\nR=kalman@chromium.org, kalman\n\nReview URL: https://codereview.chromium.org/24980005\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@225762 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 3.2433804335596506e-06} {"commit": "e10b9fe2719d1fd1b448623d93e7e46e09913e9e", "message": "[Cyber] Improve the performance of python Topology Manager\n\nThe original Topology Manager will create the new node_manager or node_manager in every function call.\r\nIt caused about 2 second blocking which is unacceptable.\r\nFix it to improve performance", "proba": 1.4842797099845484e-05} {"commit": "cabea53c8f3d31dec12d5f205ed643a2951d46ef", "message": "remove a set bug. line 150", "proba": 0.9996793270111084} {"commit": "b3e45a5fd3a85ee6d9739b2d631f9ea422b280d1", "message": "connection in backend can be manually set\n\n\n\ngit-svn-id: a9a8e3128c9301006a1337346ea7e68b115376f6@658 5ec1a27d-59bc-451c-a1e5-77859e3e35f3\n", "proba": 3.873052264680155e-06} {"commit": "40e03ab095aa3cdf5388255d2f04f3d182b605a9", "message": "Fix docker check failed o/p for multiple exited containers on multiple hosts\n\nChange-Id: If256fe93b608278aeb64f8846580486b8b799989\n", "proba": 2.8798608582292218e-06} {"commit": "01f06ebae2e3829725f472b442b501e67662c215", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "8045334b849f6fdee6cb45d4360d03311b279f65", "message": "Implement %%prun as a cell magic too.\n", "proba": 1.2610469468654628e-07} {"commit": "50624b84ccdece781750f5eb635a9efbf2fe30d6", "message": "Apply black to IPython/extensions/autoreload.py\n\n black --target-version py36 IPython/extensions/autoreload.py\n\nTo ignore those changes when using git blame see the content of\n.git-blame-ignore-revs\n", "proba": 9.066162647286546e-07} {"commit": "e803af3c8a7e2ad0226454f09518f1d1e495a11c", "message": "parse ifconfig / ip addr / ipconfig in localinterfaces\n\nalso typically faster and more reliable than gethostbyname,\nbut lower priority than netifaces.", "proba": 1.0474955303152456e-07} {"commit": "906aaa8b8b123bb8ec26bf2eafe50d32c2d3b17a", "message": "networking: handle case when ProtocolIFType is None\n\nProtocolIFType property of LMI_IPAssignmentSetting data can be empty\nsometimes. This commit adds a check for it.\n", "proba": 1.093325536771772e-07} {"commit": "f86cfd613c3d9e6dda98c9d1e8024db4db96bd67", "message": "Add actions for marking edited providers as OUTDATED\n", "proba": 9.117875379160978e-06} {"commit": "3f1c4dc31bc1907742393c871d1d59317870096e", "message": "Support for StreamArrays.\n", "proba": 1.2093565260329342e-07} {"commit": "7001f41349917db4ab5edcc0c2b20c4d29af864b", "message": "fix strict parameter on url datatype, re #7583\n", "proba": 1.7469760393851175e-07} {"commit": "700e19a6ed9745459a50646d7d29a935fcfd08fe", "message": "fixes linting error, re #5945\n", "proba": 1.2411967986736272e-07} {"commit": "731783c733cd0ed33e887fb5eca00e501f551604", "message": "Set settings flag to production.\n", "proba": 1.166119858453385e-07} {"commit": "b54ea44b5bdd8690d440f32a2a63d699950cce9b", "message": "Fixed a variable name typo in autoscaling.py\n", "proba": 2.6701836759457365e-06} {"commit": "366c1e6c831844257e69b5050198b529a8fbe239", "message": "Automated rollback of commit fc3edc67433192d4742d80de49a6ffbb58e76d63.\n\n*** Reason for rollback ***\n\nBreaks builds for physical device targets running OS versions that do not directly map to floats, e.g. on my phone running iOS 15.6.1:\n\nValueError: could not convert string to float: '15.6.1'\n\n*** Original change description ***\n\nUpdate the Info.plist mtime of any embedded bundles after copying the Bazel build artifacts over to DerivedData. This matches Xcode behavior and more importantly prevents an issue on iOS 16 or newer devices where incrmeental installations fail due to delta bundles not having a bundle ID because they don't have an Info.plist.\n\nPiperOrigin-RevId: 478566431\n(cherry picked from commit b748e0ab3cad1fb681de44a0a028bfccb0681940)\n", "proba": 4.354767781933333e-07} {"commit": "4f7843f2a27de22ac63d18a422460b409d377a0a", "message": "Debug outuput\n", "proba": 1.0183681524722488e-06} {"commit": "508ad0e28f40f537e906a372a2760ca6730ebe94", "message": "use None as default for \"on\" field\n", "proba": 2.788293159028399e-06} {"commit": "f02362f7c4e90e6d5c1f32a3f5ab13179b1fbd3f", "message": "Avoid redundant quotes in DBGVersion 2.\n\nThe declaration in this plist isn't supposed to have the quotes. This\nhasn't really affected LLDB's interpretation of the source maps in my\ndirect experience, but it might make the mappings more solid.\n\nPiperOrigin-RevId: 186325005\n", "proba": 2.2867928350933653e-07} {"commit": "bdbcd530bd00965917ba0656d25d783fe717eef3", "message": "flake8\n", "proba": 2.8183080758026335e-07} {"commit": "638b154da980e27e0b764db5ea42dfce1c9d7885", "message": "Update production_settings.py", "proba": 9.836028311838163e-07} {"commit": "091ab7e40db5dd1450305393817418eb2d1b986c", "message": "Added license description to ricecooker import\n", "proba": 1.2385693537453335e-07} {"commit": "02d66def5aad4b58cb1bf64e2c19afa87b7aece2", "message": "{Core} Print traceback to debug log when handle_exception is called (#14588)\n\n", "proba": 1.3161663048322225e-07} {"commit": "a3459e6aa0caf99a843cdf25a573644d53738d3f", "message": "improve hash and account for OWA=inf in BrownCompleteness\n", "proba": 2.1101990910210588e-07} {"commit": "f4a809cea056c3808f3dad9fa7c3368e40ade22b", "message": "mini bug fix :)\n", "proba": 1.597556860133409e-07} {"commit": "f12e4aa3c1e827b1f0bcf9af2fd6970f3b744a84", "message": "[#7566] Do not check for permissions for tickets without acl settings. Use count query instead of find\n", "proba": 1.1760361218193793e-07} {"commit": "91e32481daa890878aad454aec8ac52c78f38f89", "message": "FORGE-221, FORGE-223, FORGE-333: Change the url to act as a search\n", "proba": 5.909974447604327e-07} {"commit": "4ed020f829fb825bb15327d74b98ca891cd6cc7a", "message": "Todays post to nyc365blog\n", "proba": 1.1862414339702809e-07} {"commit": "268bf22a030bc8a98c2824ae0e07f60b9562399d", "message": "Fixed import commands.\n", "proba": 1.8249367883527157e-07} {"commit": "0aaf890ace54e906f28641978007eddf2c40ab5d", "message": "fix failing test\n", "proba": 5.703402166545857e-06} {"commit": "bc4b8f6059ab3780b07376aca4d21e1a0cd61c8f", "message": "Wrap returned JSON in a function call if a callback is specified (i.e. JSONP).\n", "proba": 1.326673810808643e-07} {"commit": "23c0ac24801c8806a2d975214e0ee3df3292645b", "message": "Fixed a bug regarding regex/phase arguments for delete_all_jobs.\n", "proba": 1.0688545870607413e-07} {"commit": "5249cd2d331edd9dd598ee032df08fd728689d39", "message": "added a method to retrieve all searchable columns names and their descriptions for a mission\n", "proba": 2.239988816654659e-07} {"commit": "2d61571e461a9704ba57511da16747de61648966", "message": "workarounds for default-to-ICRS approach\n", "proba": 2.916569030730898e-07} {"commit": "780ff946e53cec570dc92652ee2214cf197248a4", "message": "throat aspect of calculate dt has been vectorized\n", "proba": 1.9274180829143006e-07} {"commit": "acafd486dbb1deecf2d998c74c06cb07092b92e7", "message": "OWVennDiagram: Selection\n\nSelection with keys Shift, Ctrl and Alt is now consistent to selection in OWScatterPlot\n", "proba": 1.1935084387459938e-07} {"commit": "52174835adf3c7a1487e3b01287f922bb2dfaee8", "message": "Actual URL to get API key\n", "proba": 2.0505170539308892e-07} {"commit": "577ec3cf0e81b2712799cf3413d37df06793cc2e", "message": "Update topic_checking.py\n\nremove if session.username when using anonymous client", "proba": 5.718718057323713e-06} {"commit": "f5de65e3e7521b17b090af265ecc17e70fd11b05", "message": "Fix username in test", "proba": 0.0009984556818380952} {"commit": "045885db7dfb527c5d74e34b04c20356807c141f", "message": "Update goem.py", "proba": 6.515321615552239e-07} {"commit": "85cc34100c67ea9c8109059e4f456918eb54373f", "message": "Order result by date\n", "proba": 5.142948111824808e-07} {"commit": "784a9744246b641f16eea1d5b13b12cde8819f64", "message": "Updated freebase interface\n", "proba": 2.3850265051805764e-07} {"commit": "e36f44cadd2dd887e7ef29c25437e9b8cd67a1ac", "message": "Check if passthrough user_config is decoded properly from hiera data\n\nParsing of pci::passthrough hiera data was supposed to return a list of\nuser configurations. Since a string was being returned, the derivation\ndid not yield any results to override the user configuration.\nThis fix checks if the json load is decoded properly for the pci whitelist derivation\n\nChange-Id: Iedb3e2b8c503999aec8fde647d8d1692c9ee08c4\n", "proba": 4.157655348535627e-05} {"commit": "3bb386c4c1da2d1ed65882110b52c12d7fd04fce", "message": "less sn\n", "proba": 1.229456302098697e-05} {"commit": "5c40436d955373482be2a210040c2941e1ff5fbf", "message": "admin...createassignment: Add backlink in header.\n", "proba": 1.1362087803945542e-07} {"commit": "f99efffa371cb1b62afeb0de6d8115b6cc5ed56d", "message": "labeleauty checkboxes\n", "proba": 5.354905169951962e-06} {"commit": "fe220e03fc2db6c768d8f4b2602799ff9df61b9d", "message": "tweaked formatting, pep8\n", "proba": 3.628368006047822e-07} {"commit": "022624e0b4f90c3c43486930fde413db2a1c5417", "message": "State set_project_name automatically updates context variables to contain PROJECT_NAME\n", "proba": 5.32610215486784e-07} {"commit": "7a82d63c677998f572dbffc6ee26337f0ac7e2e3", "message": "Remove obsolete todo. Quantized slice test is already added.\n\nPiperOrigin-RevId: 370377809\nChange-Id: Icb66c72947cf9e0cc0881343cd864d98ceb18148\n", "proba": 5.872702331544133e-06} {"commit": "ee07d9963fc38de5d1c613d619487713f54f91c6", "message": "Docstring cleanups to remove references to tf.compat.v1.placeholder in example code.\n\nPiperOrigin-RevId: 270268534\n", "proba": 3.181013141784206e-07} {"commit": "cb8783f2b5834c3458bea78002d5745c88c43c32", "message": "added doctest to tf.signal.frame\n", "proba": 1.9512542337452032e-07} {"commit": "a2466d1488cd36131c344c51a475d48860ed0bf3", "message": "Removing TensorArray.pack and TensorArray.unpack\nChange: 144235900\n", "proba": 6.458579946411191e-07} {"commit": "384fd7326913bca4c8027f587f33b39cd3dbf958", "message": "philipp's changes\n", "proba": 3.956351406486647e-07} {"commit": "1aa1a657972cea3989fb11c4c5da56815a231f0c", "message": "Restored part of clip metadata table format mistakenly commented out.\n\nThis corrects a mistake made (again) in the last commit.", "proba": 1.0411136486254691e-07} {"commit": "66024e0909eb6faa9ac3eaf0a3a8856d6b12d2b3", "message": "Added checking before removing file\n", "proba": 2.706548514197493e-07} {"commit": "b5281ecb1c27522a8cde00076be4844e54bb76c5", "message": "To investigate, seems to be triggered in FnParameterisedHolder.setParameterised() when undoable==True\n", "proba": 5.4491236369358376e-05} {"commit": "6edf874d1b3eee356e490eb953c0b2b6126caf7a", "message": "Fix lms js i18n static collection.\n", "proba": 1.211762423736218e-07} {"commit": "648e5c730021e308a70dc6f32db47de48fd21338", "message": "Simulator: don't crash if no photons\n", "proba": 5.648381920764223e-05} {"commit": "a97393376f19553f63331a34b1fb1fd73c609452", "message": "Use the credit card name field in payment forms\n", "proba": 4.413417968862632e-07} {"commit": "9c3a9b834255e9e8cfb33978317dbb77b6f84ab9", "message": "Patch manifest_maker to support extra_files--this is really the only way I can see to do this at all sensibly\n", "proba": 1.1831593127453743e-07} {"commit": "6618d1f14bffd59d4e8168777c0378869bc66442", "message": "Fix 'except as' statements that were breaking things in Python 2.5\n\ngit-svn-id: ab6bf8000d1665d25489a57e6eb1d47f930a9df6@23560 fe389314-cf27-0410-b35b-8c050e845b92\n", "proba": 0.99998939037323} {"commit": "edaf2c9e3f132b88c91ec9d13257a1761f0b8ba6", "message": "move unittest to main()\n", "proba": 1.7562773280133115e-07} {"commit": "b4990c781b6f5cda725f2c1564036661e19a8c41", "message": "Reformat.\n", "proba": 2.2127775878288958e-07} {"commit": "0022e15912784672be06aa1afacc8f4c6b3f0ec4", "message": "Send a grade back to the LTI consumer after finishing a question.\n", "proba": 1.0764900792992194e-07} {"commit": "613578e2e7c44eaa12c4d5af5113400531915d15", "message": "replace spaces by '_' in the image name\n", "proba": 0.9999994039535522} {"commit": "0f73bd8605dde203a56f396e65e3f3746a5e152d", "message": "Allow setting correct working directory on checkout.\n", "proba": 1.2412796479566168e-07} {"commit": "c825789bdff310f44cbb132a723e99d1e6331d8f", "message": "docs: explain that future.cancel() is non-blocking (#420)\n\n", "proba": 9.182675967167597e-06} {"commit": "dbe76b155b8dd563744de9ad266fc2fa9fbfc154", "message": "Issue #7 - maps pe exports directory entry\n", "proba": 1.1612944916805645e-07} {"commit": "8599f449f8e1c74f2ea583f24b17cc0af0bc6c87", "message": "Issue #15 - captures file_name, size, and hashes\n", "proba": 1.2920924064019346e-07} {"commit": "8c5d70250a6e396d6e8909e7e8f570c0f74de1d2", "message": "fix ui resource_type field if resource\n", "proba": 4.955635176884243e-06} {"commit": "5250c64510e2b91dfda776971864a98665933a15", "message": "mostly works\n", "proba": 1.4597505071378691e-07} {"commit": "908139ae1fa0f5a8ef99ede6a9d1e9b6cda4259e", "message": "Disable TestManageSFAppReplicationController.test_get blocking gate bug\n\nChange-Id: Ic4916cfd5a20d60bf39202e1e7376de29d730763\n", "proba": 4.968399025528925e-07} {"commit": "8d74b7711c16467df35846fe04cca87ab9e72e3b", "message": "wip fix hidden events in failed but real btc txs\n", "proba": 3.798930379161902e-07} {"commit": "73d84eea2876864871bec0b45ddf4fda461602bb", "message": "Black.\n", "proba": 1.782578692655079e-06} {"commit": "67b3eb27b9c282caebedea10ffc19b6dbde3d306", "message": "save 'missing line' and 'wild points'\n", "proba": 0.0007152317557483912} {"commit": "071619e3c9103ae8d315b9f24c9367acb1878364", "message": "move pymc3 imports inside results classes to prevent unnecessary theano loading\n", "proba": 1.3795738595945295e-07} {"commit": "6d746d1762f5230efa6561af90021d3c0f1ed6b4", "message": "re-enable new membership request notifications\n", "proba": 2.2784554687405034e-07} {"commit": "07b73e68619533559a2f4a1d84644ae0cf7253d5", "message": "* tools/examples/putfile.py:\n (putfile): Remove pool parameter. Use automatic memory management.\n\n\ngit-svn-id: f8a4e5e023278da1e04e203c7fe051e3c4285d88@856298 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 8.567478175791621e-07} {"commit": "3da1a6676e539674352b4189b4bfcc464c04c364", "message": "remove gzip literal\n", "proba": 0.9984530210494995} {"commit": "b1e8d660ac38eda55dd868c18e6fb06daa20e84b", "message": "wradlib/wradlib mit default zusammengef\u00fchrt\n", "proba": 3.9644717730880075e-07} {"commit": "105188979416218803494b3beae7b0c030889c2c", "message": "chmod 755 fontbakery-crawl.py\n", "proba": 8.629133390058996e-07} {"commit": "d5f7850fc65ad4b79f1309b933b551790545e573", "message": "DOC: Removed reference to speedup from the module docstring.\n\nSome other minor edits in the module docstring.\n", "proba": 1.0252738036342635e-07} {"commit": "9ac7678fb838b5c663dcca33f022dba2a829ec0b", "message": "gen_addon_readme: Add --commit and --addons-dir options\n", "proba": 1.1295163631075411e-06} {"commit": "ac313135f4909cbb634fa88bbf39da92c75ceee0", "message": "io.read_EDGE_netcdf:\nset an range_lim default value of 200km\navoid errors in case range_lim is greater than the maximum range of the data\n", "proba": 1.0128225085281883e-06} {"commit": "9df594e45782c8bc297d54868b2f93296e200c1f", "message": "FIX: incorporate fz-product format description\n", "proba": 0.002768862061202526} {"commit": "69bdb37994fc4df67ece7a827f663e6444db165f", "message": "QC: Avoid mutable default arguments.\n", "proba": 1.3009689325826912e-07} {"commit": "efcde89e06df1b3e0a5d76b4200fccb26107a565", "message": "Added __setitem__ -- enable operation: ihex[addr] = byte", "proba": 1.565538696013391e-06} {"commit": "ac3670eaf856120be7eb9993b1603125abe633ae", "message": "Fix senlinclient plugin\n\nNew senlinclient release have broken the plugin.\n\nDepends-On: Idf9ada2da132092c579f2aa432b5d128531b2737\nChange-Id: I7eb100b0eab75f239c75f1bd015536b24b50ca44\nCloses-Bug: #1746156\n", "proba": 7.329900881813955e-07} {"commit": "b54d1ffd9c9805ac704f116c2b1e334ee0dd8bad", "message": "heat-jeos : convert cfn-hup to use CloudFormation API\n\nCovert cfn-hup to read resource metadata via the heat CloudFormation API\nWe use the boto client library, which simplifies client connection to the\nAPI.\n\nNote this means all instances using cfn-hup must now\ncreate /etc/boto.cfg and /etc/cfn/cfn-credentials (populated with keys\nfrom AWS::IAM::User and AWS::IAM::AccessKey), see HA template for\nexample.\n\nFixes #25\n\nSigned-off-by: Steven Hardy <4d1810d1ff6d7f22d774341c4549c02173d2f2ab@redhat.com>\n", "proba": 3.6354788335302146e-07} {"commit": "46ed89b7a32f2c415dc12a077e2bbc8bbf973eb9", "message": "runtime: gdb support: gracefully handle not being able to find types\n\nThe Dwarf info has the full typenames, the go *struct runtime.commonType\nhas the short name. A more permanent fix would link the two together\nbut this way the user gets useable stack traces for now.\n\nR=rsc\nCC=golang-dev\nhttps://golang.org/cl/5097046\n", "proba": 0.00020944249990861863} {"commit": "daea2b888d9094e7ecb7edcf73c31c715d6c3d89", "message": "Don't create byes for inactive players\n", "proba": 1.5463525926406874e-07} {"commit": "759022dbcb5d89cee60e133a7bcd4597018fdb28", "message": "lower log priority of Pagecache Queue Size amqp mixin message\n", "proba": 1.713791135671272e-07} {"commit": "c756457aa17ef425e2dc6caa15b639476b642225", "message": "Fix typo in sensor names (#44598)\n\nFixes home-assistant/core#44464", "proba": 1.3284125088830478e-06} {"commit": "1ce2b6357a456d88a3a7ad835afb2e8c69dc4569", "message": "Replace rollershutter with cover in demo (#7140)\n\n", "proba": 1.0722440890731377e-07} {"commit": "a02840379d56999a1755fb5dad952e92a091399a", "message": "Track WeMo devices by serial number\n\nThis makes us track WeMo devices by serial number instead of URL. Per\n@jaharkes' suggestion, tracking via URL could potentially be a problem\nif a device changes to another IP and then appears to be discovered again.\nSince we can't track based on mac (for static-configured devices), we\ncan use the serial number exposed to make sure we're always looking at\na list of unique devices.\n", "proba": 1.0703867303618608e-07} {"commit": "dffdd8c3a2ec853ab5e47b9a6b57af20f3241edb", "message": "website: small simplification\n", "proba": 4.576560604618862e-05} {"commit": "c891c7e1c0a672dc6e21a627b1294002d36f0bbb", "message": "Making this report be sensitive to the selected date range.\n\n", "proba": 1.339542308187447e-07} {"commit": "698de9d42a30de911d7961b84abe8c4e40467f2e", "message": "[#3519] importing model classes for model instance in init file\n", "proba": 1.3460015679811477e-07} {"commit": "f4b049634c13124d0a8eb2f0407c32eaab7e3a86", "message": "fix broken function reference\n", "proba": 7.253699436660099e-07} {"commit": "012846090de6007cb72acbcfd9a23fe21bf70d93", "message": "Fix server cluster to use separate CSeg server map.\n\nCSeg uses a separate server ID map internally to figure out how to\nconnect to other CSeg servers, and a single port externally to allow\nspace servers to connect. Fix up the settings to do this properly.\n", "proba": 1.0725407406653176e-07} {"commit": "8cb1972d80bc1c1dfc284b590121cd579e1f8fd2", "message": "Switch to using new .copy() method\n", "proba": 1.2880425401817774e-06} {"commit": "64e2108cfe87c719f4ad5f967eba7d98b0000891", "message": "Trying to fix dataframes to save node pressure losses\n", "proba": 3.134869643872662e-07} {"commit": "a4a732280bd6bc734dea2e9a8f4dd780309845c8", "message": " fix flake8\n", "proba": 3.947170910123532e-07} {"commit": "2f0ee476a3d23f003c6008c9f08fdc5e7c5df358", "message": "catalog: Remove unnecessary brackets\n", "proba": 1.8243640624859836e-06} {"commit": "30d5cf006c84dfc68b6ad84e1e7d204f80e49be1", "message": "Improve the message output whenever autoBisect does not conclusively provide a bisection changeset answer. r=gkw\n", "proba": 0.9999994039535522} {"commit": "3b5213933ecf4274396c3e1e214f0a212f797308", "message": "Remove unused imports in autoBisect.\n", "proba": 1.2048955966292851e-07} {"commit": "15958a5ca5da10bf242404c1435471e1764d5969", "message": "intialize 'timestamp' variable\n", "proba": 0.02635256201028824} {"commit": "5a74a8ef3069b03a85a3f4d743889668ac85e443", "message": "add show ", "proba": 1.8444562499553285e-07} {"commit": "75e114013b315021dad0060e2cfe1b211c02ad4e", "message": "Consolidate LeApp id management in integration tests\n\nThe machine migration test steps missed out on the changes to\nCLI identity management, and hence were failing in CI.\n\nTo fix that, and avoid similar problems arising in the future,\nthis consolidates all of CLI identity management for the\nintegration tests into the _run_leapp helper.\n", "proba": 1.5619103521657962e-07} {"commit": "3f6575eccbba99aa9f7648abffec8efb0c03dee9", "message": "Updated from Brython Server: 5/18/2016 1:49:30 PM", "proba": 1.0820790663501612e-07} {"commit": "519985190c7aad7f779cd2b664f4e316cc8a401c", "message": "Update dependency bazel_skylib to v1.0.3 (#606)\n\n", "proba": 1.105624747310685e-07} {"commit": "810acf8115c3bcd53bd6a9d0c31a03b943126efc", "message": "testing type annotations for hug\n", "proba": 2.3847650254538166e-07} {"commit": "bf5813a2275511514b89be8a725e8ff40e30818f", "message": "__duk__.sleep() builtin\n", "proba": 0.9996920824050903} {"commit": "19e8765294a1567442d37f3da05ae75705b95b4c", "message": "Added splitting to hourly-Script\n", "proba": 2.029571675166153e-07} {"commit": "b24185d75ed017394a23fad194d5d0de3f6a5a16", "message": "Fixed a bug introduced by my last fix. Learning how Biopython parses fastq records...\n", "proba": 1.0258527538553608e-07} {"commit": "ba567990a9b942385894d2e26634510e75d6c076", "message": "Add v3 am Status and Describe.\n", "proba": 1.132853597596295e-07} {"commit": "e76cf1f779cfb601d35ecaaf5e515a36ad556b16", "message": "voltando forms como da app e prefixando o forms do django\n", "proba": 5.392744242271874e-07} {"commit": "fa2b451720a97cacebdcf6d676e0814618e9947b", "message": "Remove unnecessary log\n", "proba": 3.4595666420500493e-06} {"commit": "e8bd1b4a2c676e45dbce52c354f18541ec95b516", "message": "Part of textDocument/rename.\n", "proba": 1.2889036327123904e-07} {"commit": "cabd165130cac15f6a94625e2220b55555f178c0", "message": "Adapt tests\n", "proba": 6.053149945728364e-07} {"commit": "dd94cf1139a1b5a81e6eeddc0cbb6fea371cc3c2", "message": "Fix didChange notification.\n", "proba": 1.3736398329911026e-07} {"commit": "033db93265631aad36ef3d58113c187df5f95b3d", "message": "test null property in payload for AboutForm\n", "proba": 2.1455650767165935e-07} {"commit": "1bb48d51f75ede6250ae33564a31e043de7420ed", "message": "use pycurl for downloads --\n\nwget package was not handling redirects from supplemental material\nhosted by sciencedirect\n", "proba": 1.1753107287404418e-07} {"commit": "7333c4a075d1deb0f0966f096ae611c4eda7650a", "message": "Delete LeetCode-LowestCommonAncestor.py", "proba": 3.6426595215743873e-06} {"commit": "81691318cb732caa33f143cd78c522f5548ad413", "message": "objectsFF is dead", "proba": 0.0018724167020991445} {"commit": "85266d9e8c7430bdec5812b3c1af7d85a83c88a1", "message": "Make config_path an optional positional argument\n", "proba": 2.6014626200776547e-05} {"commit": "ca5a7dbc6558574c486157a79b41280d02d0d63c", "message": "Issue #15599: FreeBSD on KVM cannot handle a very low switch interval.\n", "proba": 1.037224848232654e-07} {"commit": "9e8854d8264d47594f35bb8afff599d6ffa329a6", "message": "Change links formatting\n", "proba": 2.460507744217466e-07} {"commit": "88cee059aedd9adc7d36902b41e0d8a476e3efe0", "message": "Fixed missing @ for decorator (#1441)\n\n", "proba": 1.2629136847408517e-07} {"commit": "971e1892af1b7d98a1b52e3341fb3c6b6d62ac11", "message": "capability to read in point spectra saved with pifm images incorporated. the attribute is called 'point_spectra' and each spectrum is saved as a dataframe. to access the first point spectrum type point_spectra[0]. each dataframe has two columns named 'wavenumber' (in units come cm-1) and 'intensity' (in units of V)\n", "proba": 5.4488209570990875e-06} {"commit": "7b07f10d3992ac0830fade4718914d8b02d9f5af", "message": "A better approach on showing up network interface details\\\n", "proba": 1.1229437291149225e-07} {"commit": "2c547aacd19776c09692a03eed2ada06a474fbb7", "message": "support for battery and backlight on i3pystatus\n", "proba": 1.4930968461612792e-07} {"commit": "d641e50fb760f27da471eb564c4670f1d068cdc9", "message": "Fixed the \"process threshold\" setting\n", "proba": 4.173859633738175e-05} {"commit": "3411f8c6174a1fc137687833d4c22a575bd5d565", "message": "Included the Invader class and some basic behavior.\n", "proba": 1.0249961235331284e-07} {"commit": "f4bfb133c329c599dcd4bec8df86c11641aa0721", "message": "Adds a --verbose argument to the cli.\n\nAlso debug messages in that module.\n", "proba": 1.30562497702158e-07} {"commit": "6db31c4c41f8928b8ad17a1f93ff822ca178f126", "message": "codestyle", "proba": 1.249137881131901e-06} {"commit": "b320e392c5c07ad15b263a9ac514b8f9672c7c61", "message": "added docstring for bBox Arg.", "proba": 1.1524473109147948e-07} {"commit": "c635e2098fd7168ef5f6dc11a610bb5f8cba81e8", "message": "exploding profile dictionary to work around DRF bug\n", "proba": 1.3822761957271723e-07} {"commit": "c7ab0e5603a0e85d94934bdee2ccef0faca3c8ac", "message": "Remove bad import\n", "proba": 3.238160388718825e-06} {"commit": "1bd211d6030dab24713a6b52ff63b99c756755c9", "message": "remove ability to create/delete instances on v2\n", "proba": 5.106371645524632e-07} {"commit": "0d2f5c5b000c31336740bee552b708311c0a9662", "message": "also use model atmospheres and weedout in windows synthesis\n", "proba": 1.1066396155001712e-07} {"commit": "c2d96ed090721814e9d718ed765c2cf1c94b1a7d", "message": "[FIX] error on creating new Field\n\nbecause default value has to have type string\n", "proba": 5.886731742066331e-07} {"commit": "f005c796394792e8d5226814d7e1abd87d3b44a1", "message": "website_sale_suggest_create_account 13.0.1.0.1\n", "proba": 1.4660273564004456e-06} {"commit": "bfe65c4ed6cd348affb11df13f4de2c07f37a2dc", "message": "Fall back to default port and db in redis connection setup.\n", "proba": 1.0446463249991211e-07} {"commit": "ec5a477156e9e8959d6fff7af11cdc3da79f378f", "message": "Fix generated wscript for those with sh but without jshint\n", "proba": 1.9401393558382551e-07} {"commit": "5af65b0f7c97191f999845b39f5173559456d609", "message": "fix error in windows\n", "proba": 3.4259726362506626e-06} {"commit": "6a75b434271426b49676056832bceebd41ed6e9f", "message": "try to hanlde the problem\n", "proba": 6.732367637596326e-06} {"commit": "0c1fc4c6468265b5ad5b8d41d3bd6ab9a34b50e7", "message": "I think I've figured out how to delete the blank created tiles in gross emissions and net flux steps. Testing on a few tiles on spot machine now.\n", "proba": 1.0070016287500039e-07} {"commit": "4d6cde38cefa61209d307ed8015bdd40f2695668", "message": "test: refactor rpc_signrawtransaction witness script tests\n\nto see what is distinct in each test.\n", "proba": 1.1517430209551094e-07} {"commit": "4a2aad6addd1235a9deb581b622054c473f7a774", "message": "Added more pixel formats\n", "proba": 1.3293487199916854e-07} {"commit": "7716b8d830322f00d4dea4f2e86f2fb072e2feb2", "message": "Public DNS is not always available\n", "proba": 1.4487332578028145e-07} {"commit": "03a717e3902e4ca376d43be1288666e430f3e252", "message": "Some refactoring\n", "proba": 1.12484246983513e-06} {"commit": "0a6be6c81bb120848adcf2dfe59cd468c7166d11", "message": "Module docstring for ocspdash.web.app\n", "proba": 5.686331974175118e-07} {"commit": "a6b3d59dfc6de0a7cff6f9062837341e673985fb", "message": "Added forgotten _inherit on clouder application.\n", "proba": 1.0484469470384283e-07} {"commit": "7203b7d5e4cdb8959f2c75757cf6ee78d79d2fd1", "message": "Some comment for order's gasstock generation\n", "proba": 1.2612719046956045e-07} {"commit": "6e36bdb907f4cc85e14451e9010455c95d75fadd", "message": "Expose ESPHome project information in device information (#65466)\n\n", "proba": 1.0096017177829708e-07} {"commit": "283e70ebceed259a4c323aa7870c4953051c98b4", "message": "[IMP] Comment profiling\n\nbzr revid: jco@openerp.com-20140313142102-6dgiwvxlw9ul58ek", "proba": 1.5116164320261305e-07} {"commit": "877d885fbd30c45618fa801fd3350e2564ae1ace", "message": "Skip FIPS U2F PIN test if PIN is set to something else than 012345\n", "proba": 6.17689875070937e-06} {"commit": "fec2461e0e71dc28ad5cb6e7e088021c18c72658", "message": "Hungarian is also supported in Google Cloud TTS (#24861)\n\n* Hungarian is also a supported language\r\n\r\n* Hungarian is also a supported language\r\n\r\n* Hungarian is also a supported language\r\n", "proba": 2.2647596154001803e-07} {"commit": "c5ca43189402adb78709631f1dd37e48b020edd1", "message": "Add path option to SABnzbd component (#25908)\n\n* Add path option to SABnzbd component\r\n\r\nAdds an optional `path` setting to the SABnzbd component. This allows support for SABnzbd installs that use a different `url_base` (typically a reverse proxied configuration; see https://sabnzbd.org/wiki/configuration/2.3/special).\r\n\r\nThis change passes the `path` along to pysabnzbd as its `web_root`, which in turn uses the path to build up it's api URLs.\r\n\r\n* Use dict.get for Sabnzbd web_root path config\r\n", "proba": 4.468884355901537e-07} {"commit": "547fd7d352a42194ffc1de74bdc3ef4be35f00f1", "message": "fix exception on device removal (#47803)\n\n", "proba": 1.2709435281976766e-07} {"commit": "23c795f5ba989abe4079687b7a53ad65e0616416", "message": "Update file_backend_orchestrator.py\n\nAdded one missing paramter\n", "proba": 3.494266138659441e-07} {"commit": "05c9def924282ed828e600e58c5576ac664b77b3", "message": "[IMP] stock: improve helptext for field 'stock_available'\n\nbzr revid: cha@tinyerp.com-20120919120818-aejvs1qdn68tcoiq", "proba": 4.907715833724069e-07} {"commit": "335a8afe79d0d25c91508d881d49d06c862b79f1", "message": "[FIX] stock: remove state modifiers for field note in stock.picking\n\nRemove the state modifiers for field note in stock.picking in order to have a\nbehavior which is consistent with sales orders or invoices.\n\nopw-639956\n", "proba": 6.449274110309489e-07} {"commit": "5eb3b61c14ecc99562269d722d7e748129fe4608", "message": "[FIX] Stock : Removal of picking shuold affect product stock\n\nlp bug: https://launchpad.net/bugs/491241 fixed\n\nbzr revid: jvo@tinyerp.com-20091202071524-csct9ktra6u9ytgw", "proba": 1.4224828248643462e-07} {"commit": "6d4780fd1a7ec8edaccfe8b80f7fa4a93c55f4a6", "message": "formatting\n", "proba": 1.1576831639104057e-05} {"commit": "0e18a17f8e518264ad9c742c2db7b58860036343", "message": "some polish in session.py\n\n", "proba": 2.575326334408601e-07} {"commit": "80a00a7be566f0f5385cfcb294046867d6acda12", "message": "comments\n", "proba": 5.451620381791145e-07} {"commit": "5864d6d78fa21d3e55ab72d9c6d3bf2a147cfa50", "message": "[fix] passing config\n", "proba": 5.617822580461507e-07} {"commit": "f5186f8a51885ebb342c0a975e30df0e59af4915", "message": "Reverted the upload_to customization, since any os.path type stuff won't work on amazon S3.\n", "proba": 1.0008511708292644e-07} {"commit": "7be3d35d016fe11952c1d3b202f9ce0e33a2c9dd", "message": "Improved live plotting\n", "proba": 2.7191322260478046e-07} {"commit": "9f59a7eac0cf7f51d60050d5ecc5f5b710fc157b", "message": "ProbeActivityThread with thread\n", "proba": 2.732593031851138e-07} {"commit": "6e65613401048c2189e0b991ada5af727b36d494", "message": "IFMAP client is overridding ST ConnectionType\n\nvnc_ifmap_client in vnc_cfg_api_server is overridding schema transformer\nConnectionType object with sandesh ConnectionType object.\n\nChange-Id: I94294d5515a7605f57b75779d26b7a325b9d8bcc\nCloses-Bug: 1657393\n", "proba": 3.50503967183613e-07} {"commit": "52315463694ad2940a85ad3869b9a240646d0660", "message": "Added maketrans in get_variant_id\n", "proba": 1.8500443843549874e-07} {"commit": "aae7a3e645765587079112454495b393a5438c14", "message": "Minor fix for wrapping function: weight -> weights\n", "proba": 1.141179382102564e-05} {"commit": "391228c4b18930815829dfbc8d37994a36c30428", "message": "Backup file no longer overwritten\n", "proba": 7.393987289106008e-07} {"commit": "3b4c6cc65eb78f46ec381966f3ae0794cbeb4b7a", "message": "properly converting status to integer\n", "proba": 0.9999980926513672} {"commit": "cac669364f6b01bfc840b2e571b6613fa084bc2f", "message": "more robust capa math preprocessor test, and new test for inline\n", "proba": 1.358899339720665e-07} {"commit": "58a2acb1e42fb15d2b19f8767cd7a3f406edf795", "message": "Fix test types\n", "proba": 8.220401468861382e-06} {"commit": "db0c30c833564956fc5d35f7657f8e706fa1c664", "message": "Abort \"open file on remote\" for unpushed revisions\n\nFixes #1259\n", "proba": 1.5851064461003261e-07} {"commit": "04c389b5ef061c3ddc9cdc75b488cdad1489319e", "message": "Lock the data store before reading it to produce the XML to ensure that it isn't overwritten during a read\n\ngit-svn-id: 27e0aca8c7a52a9ae65dfba2e16879604119af8c@1322 93a4e39c-3214-0410-bb16-828d8e3bcd0f\n", "proba": 1.0933126759482548e-05} {"commit": "2525509f5414388b7728bfe2f9e819bd751306a5", "message": "modify docstring\n", "proba": 1.5368024151030113e-06} {"commit": "4643d11c2d6da282a986fdb610bf3c16b47ce3f8", "message": "Fixes the Checkbox widget\n\ngit-svn-id: d9c6dde0f7e2de8b6df4d8fb80f7fbb81645aad2@4278 5dc97367-97f1-0310-9951-d761b3857238\n", "proba": 6.856971594970673e-06} {"commit": "5ed98b78a91aee75d7730185a151304a1c001e32", "message": "Fixes \"selectable\" issue\n\ngit-svn-id: d9c6dde0f7e2de8b6df4d8fb80f7fbb81645aad2@4342 5dc97367-97f1-0310-9951-d761b3857238\n", "proba": 8.933287176660087e-07} {"commit": "abf449de4f6943ff326ae07b562d16b4ef982e8c", "message": "Added more useful error messages to REST API.\n", "proba": 1.0579364584373252e-07} {"commit": "510d0e0fdbcfa54992b268311f8e9b25f0aa7e41", "message": "test 8\n", "proba": 3.0773685466556344e-07} {"commit": "c1198ea647c3c8391c5bdaa10f09a4f4770630e9", "message": "MAINT: docstring\n", "proba": 0.0005440711393021047} {"commit": "faebf973a400888948861d9f323d1b8c060f532a", "message": "Add import instance\n", "proba": 1.3337644304556306e-06} {"commit": "ddbdac7d60bdd76caa5d0c8b30f664e9a6bd8ca3", "message": "TEST: updated testing function for checking file existence\n\nFormer-commit-id: 8b123664f6fdf69cd1e470249fe39c8de818b2f3\nFormer-commit-id: 123e56c581ed9cc5b15a1ea6d61e1d35cd44a022", "proba": 1.7905713320942596e-06} {"commit": "d583664862c80231a26edec6cf44a1852c81a3a5", "message": "TEST: straighten: added duration\n\nFormer-commit-id: 4c59ca3447dadbe276568da31cec084936b7f1a2\nFormer-commit-id: 63d9a9095888823aaf05be733287637a237c6702", "proba": 1.95854499907e-05} {"commit": "5012ff1dfbcd8e7d0d9b0691f45c7b3efd811a08", "message": "Remove outdated parameter from docstring\n", "proba": 1.1598247510846704e-05} {"commit": "a0155c478720bc2eb999ebadc2d448182cba43a7", "message": "[MIN] Removed non-used methods\n", "proba": 1.9077428703440091e-07} {"commit": "af57605caac491c9cf012cfa5cd48430904ecaff", "message": "Use HTTPS to download SM plugin\n", "proba": 1.8407766333439213e-07} {"commit": "5b45eb1104db309d68c4f9f5339c5de33540b486", "message": "Improve log message\n", "proba": 8.455634815618396e-05} {"commit": "1007ff4103e58de86b86e7752502b67881175ff5", "message": "Add open Dijkstra search\n", "proba": 2.691737108762027e-07} {"commit": "1861585018d16d25cfa6772e8a7ae436f21c6283", "message": "Create the file-system needed to spin this up.\n", "proba": 1.4513108226310578e-07} {"commit": "09b1a65b6fdae24bf3a7b24025f9cb494f213c96", "message": "fix documentation for agar.test.WebTest\n", "proba": 4.86530893795134e-07} {"commit": "8487ca5bbc6132d7c780d4334185f524f3a2f091", "message": "fix recurrent SAC.\n\nPiperOrigin-RevId: 301329656\n", "proba": 0.99983811378479} {"commit": "3484183020e4a824e0fe84cd67f2e54836606f6f", "message": "feat(mailing): add filter and search on segment admin\n", "proba": 2.1359694812872476e-07} {"commit": "2b24cdfee37d740c21b6d66060ec60563bf5d060", "message": "Convert test_utils to async/await\n", "proba": 0.9999992847442627} {"commit": "3d4e5db24c074edd940224cf1245cdbff624c60a", "message": "added _reuse_address and _reuse_port to web_runner.TCPSite __slots__ (#2792)\n\n", "proba": 1.1497928653625422e-07} {"commit": "9e78ad505663468dc5d2175bc9bb3b71788b43dd", "message": "drop outdated comments\n", "proba": 1.4693821981381916e-07} {"commit": "f1ebf12752ea90eba0b6592e7c4e7c7356c69111", "message": "fix syntax\n", "proba": 2.335806129849516e-05} {"commit": "62e9fb3df3a0de40174373f79f90a025e266fd11", "message": "Fix error type\n", "proba": 1.8247943444293924e-05} {"commit": "2d5fbafab75343958ea45ea7cc5499e0486a6394", "message": "Fix to search order fix. It now returns more than 20 results. Ugh.\n", "proba": 1.0336896139051532e-07} {"commit": "2a0fdbb601c1044ec169460edc41e00e0cb39512", "message": "add --show details and history\n", "proba": 1.1346376282972415e-07} {"commit": "25217a81e418866912deb044f1a0673804abd325", "message": "Fix encoding\n", "proba": 0.9983772039413452} {"commit": "a4b4f7fa995561e41fe6b8af0311648620d31aac", "message": "Safe gurading the code\n", "proba": 1.3328306636140042e-07} {"commit": "2047175bb13f10976dc20d834c9fc313fa364788", "message": "Fix user history view.\n", "proba": 8.654344014757953e-07} {"commit": "0c3b36bad0d1396aedb0b241e20fc423b6a96767", "message": "Add option to preserve or not the Z position\n\nObjects can now preserve or not their position in the Z axis, if the\nposition is preserved then when the \"magnified\" object is added to the\nglobal file, the object will be positioned exactly where the\n\"non-magnified\" object was. In any other case the object will simply\nretain the (x, y) positioning and will be drawn at the very end of the\nglobal file, making it such that it will appear infront of any of the\nother objects that were in the scene.\n", "proba": 2.1289451979100704e-07} {"commit": "577abd326f4cba039f4980edb66a0033577268e7", "message": "datamodel: introduce OAuthToken, UserProfile field changes\n\n- move oauth info from UserProfile to OAuthToken\n- add UserProfile.verified\n- make UserProfile.privacy nullable\n- UserProfile.type is now called user_type and can be longer\n", "proba": 2.6630934257809713e-07} {"commit": "fc5b6ff1d7cb6c2e3d33ae0b1c44e3f5773031f8", "message": "Add support for ATv 5.4 MultiTuner\n", "proba": 1.3125337261499226e-07} {"commit": "b865a8573633a1af57a14406733fbba9441e91f8", "message": "a bit of reorganization\n\nSAILnet now extends a more general dictionary learner class. Some of\nSAILnet's functionality is general to such algorithms and I've started\nmoving code to the superclass.\n", "proba": 1.1010433809133247e-07} {"commit": "379f440bd6e71b814794b50ab14c3fe5be0e4095", "message": "[AIRFLOW-5468] Fix PubSub system test class name (#6085)\n\n", "proba": 1.1931874155379774e-07} {"commit": "2972ef54dad9063a03d309d08c2a418d213295ec", "message": "update cli test (#79)\n\n", "proba": 1.160832709956594e-07} {"commit": "64898d43f18ad4386bc6923dd7a790470fd74ad0", "message": "tearDown() should run before daemon shutdown\n", "proba": 5.400523605203489e-06} {"commit": "6c59efbbb0e68c7ddca7889b984e77845c6ef5c4", "message": "Update Weather.py", "proba": 8.152379677994759e-07} {"commit": "5239c1cb3b3b09c1de238230ede64b455b2dca2a", "message": "Update Weather.py", "proba": 8.152379677994759e-07} {"commit": "25d8470e0517e076a222390faa4fde2c8676ff91", "message": "Removed formatting from the select_related test title.\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@4797 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 0.0010410778922960162} {"commit": "d1d668139be98283dc9582c32fadf7de2b30914d", "message": "Add licensing to the introspection filter\n\nIt's a small utility script, but it's better to have a license for it\nanyway.\n", "proba": 1.3605864523924538e-07} {"commit": "b60084c2c2bcd88b34dde5dc9f71c0b690db6af2", "message": "cleanup email error, add version\n", "proba": 2.4748939608798537e-07} {"commit": "1b551be4460965d04bfe3e654a5280c369e0ffb0", "message": "Change method name to echo_dict.\n", "proba": 1.571988264004176e-07} {"commit": "2380c4e0280dfddcd19ba71cd40365c6d47ad36b", "message": "add method to know if the token contains the given type or value\n", "proba": 1.5231034012685996e-05} {"commit": "18302af56650e139c0c3e11c8b3086e4d7247cf5", "message": "Remove unused variable\n", "proba": 1.4636463674833067e-05} {"commit": "e1aaeca31d2254686e7e641bcd3c40dd1b38ab8e", "message": "corrected the error: only string key is supported for test case test_complex_edge_value\n", "proba": 0.0009580348269082606} {"commit": "cde29cb334f4052cefd52d53b32da081776e1ed7", "message": "Fix boto_apigateway tests for PyYAML 5.1\n", "proba": 3.4806464555003913e-07} {"commit": "44ba96613b8ca96bde8386d9782a2112c07ece18", "message": "This needs to be done as a PyLint plugin not as this kind of test.\n\nIt's the only way we can check all code paths of the __virtual__\nfunction.\nRegarding the 3rd-party modules gating, we also need to create a pylint\nplugin which known what are the hard deps of Salt and will complain on\nall other 3rd-party imports.\n", "proba": 1.108314648945452e-07} {"commit": "c170cab8d2c96bfe42f1c0f04da1de4b2f9edae7", "message": "Linted the Core.py file to make some changes\n", "proba": 1.9679426088714536e-07} {"commit": "19b7edde2ff11b1971ce0da9955909654ae364e3", "message": "Changed location of tethys src.\n", "proba": 1.2305797270073526e-07} {"commit": "c3b62b7ace8b18c3e62cbe9f76da2496acffe41d", "message": "added a unit test that makes sure the sampler works on a bernoulli", "proba": 1.466008967554444e-07} {"commit": "38e880dac02e45a0d47455c397a4050549700471", "message": "removed unused arguments\n", "proba": 1.4486449799733236e-06} {"commit": "52fc6b61627d5b485c9a063c5231d328e859ca4c", "message": "fixed typos in migration\n", "proba": 1.4534732599713607e-06} {"commit": "c3380688af3d0eddbdb9b5c2f3df062149c56a4d", "message": "[IMP] l10n_es_ticketbai & l10n_es_ticketbai_api_batuz - permitir cancelaci\u00f3n de facturas de compra para poder enviar modificaciones\n", "proba": 1.8862381523376825e-07} {"commit": "707b639233412ce352b2c198bcfe5b06ffd7873f", "message": "change imsave to use pylibtiff\n", "proba": 2.686182654088043e-07} {"commit": "4f26788931fbeb1a73a31ca33979606f32582334", "message": "up the case", "proba": 0.0012732575414702296} {"commit": "2e548b49365fc604c81860f147e9cbfb7ad17b6d", "message": "rename parse -> add\n", "proba": 2.0854655247148912e-07} {"commit": "94918ddcf551276957a0da543347526370773821", "message": "add sync_log_id to restore cache\n", "proba": 1.0752132766356226e-06} {"commit": "6ddfe1d6b137f1ae023e9e72aac20a5aaf52be21", "message": "Refactored code to PEP8 and cleaned up logic\n", "proba": 2.9805380563630024e-07} {"commit": "c5b77fd659010f9a6f33cc9345c547f0fc35bc4a", "message": "Remove duplicate parameter.\n", "proba": 6.802428629271162e-07} {"commit": "b5b34f69317e7f83825c67ef77b0e1cd3d5afd1e", "message": "removed unused and undefined aws_regions\n", "proba": 6.040935431883554e-07} {"commit": "b33c9dad40e129e8db54a806e0aa260801469a0f", "message": "Improve docs w.r.t. networks_cli_compatible. (#56971)\n\n", "proba": 1.294976641474932e-07} {"commit": "3ec4739cc71143bbea976ed5f6c41468e9acb191", "message": "the env argument for docker_container wants a dict, not a list (#58475)\n\n", "proba": 1.4903625356055272e-07} {"commit": "3df54fb7c92429e909bf5e94b6ee7546d003c765", "message": "Rework the query generated by search_host\n\nMake the output ordered by the primary name. Also convert the IP and DNS\nrelated filters to use joins instead of subqueries, which finally allows\nus to look up hosts having no fixed IP addresses and ReservedNames as\ntheir primary names.\n\nChange-Id: I6e73ecfc1486101f15cd9d9ca1b457a353e3529b\nAddresses-Issue: Jira/AQUILON-1051\nAddresses-Issue: Jira/AQUILONAQD-425\nReviewed-by: Zoltan Sebestyen \n", "proba": 0.0009070431115105748} {"commit": "e0135f09c7488dc1271fa2148df2c73741fea28b", "message": "changed example comment for endKML\n", "proba": 1.5498028460569913e-07} {"commit": "3e3438cc8f78b47602fd7974c887246adfe9d1ad", "message": "More fixes\n", "proba": 1.199226744574844e-07} {"commit": "3b12b355a0087e8a3d002c1eadee1be16a878b08", "message": "Use `is not None` so empty list can pass if check. (#1026)\n\nUse is not None so empty list can pass if check. This is required when use tries to delete all hosts or groups.\r\n\r\nRegression introduced in #987\r\n\r\nTests:\r\nTest in local setup that the last existing capacity can be deleted.", "proba": 1.1680064204711016e-07} {"commit": "5cd59d4bae310e3c9c6c2ceb2af87c1b23531ac7", "message": "Restoration of pytables functionality\n\nA recent change to improved mzXML reading performance broke the pytables\nencoding. This patch has restored the functionality by adding a 'None'\nvariable to the readData function.\n", "proba": 1.1712366898564142e-07} {"commit": "edb285fb820ae3f1dbcac14b4ba9043a6517f110", "message": "Revert \"pyTables enhancement\"\n\nThis reverts commit 7869948f28e4d5b981d99fe0def4fc558e85bd9f.\n", "proba": 1.128608175804402e-07} {"commit": "c43a7835eb59867f38ab6f3f5c6091b7ee3f78c2", "message": "modify lab3\n", "proba": 2.697529453143943e-07} {"commit": "57e9c1ed938eb08511d5ec59660b06b4c36a41a3", "message": "Remove coding cookie from heapq.py.\n", "proba": 1.5521531793183385e-07} {"commit": "701b715b2acd3681cb797a0d7f2e9a4fa10966c6", "message": "#14434: make tutorial link in 'help' banner version-specific\n\nWithout this fix, both 2.7 and 3.x would always point to the \"current\"\ndocs...which means that before this fix python 3.2 'help' pointed to the 2.7\ntutorial.\n", "proba": 1.2848120434227894e-07} {"commit": "6bb0e8098c66d601b961d406fe0a52455fc36ac6", "message": "Adding suffix removal function to utils\n", "proba": 4.495737471188477e-07} {"commit": "12fbe9db2fa3997246274d1b2f4e95b498106ae1", "message": "Adding skewness (but set to 0) back to generation, to check if alpha and beta still are fine.\n", "proba": 1.0223426727407059e-07} {"commit": "fb0612aeb62006b70cf71b3a7c432d27bbdeb73b", "message": "Fix checking against a baseline (#21444)\n\nWhen bulk releasing rcn for providers we should check if the same\r\n\"full\" version was released and only release if it was not,\r\n\r\nWe used to check against the rcN release, but this was only working\r\nwhen we had rc1 previously released.\r\n\r\nWhen releasing rc2 in bulk, we now skip the packages that have\r\nthe same \"full release\" tag.", "proba": 1.0708870235021095e-07} {"commit": "8f262a46c7ca820b9a4fbe0dd236c86f93e65bc9", "message": "ticket #508 check using hasattr if object has either __globals__ or func_globals attribute\n", "proba": 7.621497957188694e-07} {"commit": "754e72559175a27a7ce5175b358f0e521032f68a", "message": "Class value indexes should not be hardcoded as variables can be\nrecycled.\n", "proba": 1.5691649934979068e-07} {"commit": "7a7ca5eb359338f512e7333e1457f0f80c793e74", "message": "update View_Network_Transfer.py\n", "proba": 4.880216692981776e-07} {"commit": "f434cffe3513eb81b1855d40f3e8093922c8856d", "message": "Fixed method name\n", "proba": 1.567986146255862e-06} {"commit": "552b10a5b84f000c2742a4481e7f82f877a01f34", "message": "remove noqa at end of lines\n", "proba": 1.3941110410087276e-05} {"commit": "b029725f91d9d602ffce0fb007575d320d564fcf", "message": "Making substitutions of characters that Day One doesn't like.\n", "proba": 7.478534485017008e-07} {"commit": "f8dd948b72ce603842974cb3937d30a364c1d739", "message": "fixed indentation\n", "proba": 1.1986932122454164e-06} {"commit": "4f1ec13860a296eca1489dc6691e68ec893d562f", "message": "Some of the ATR settings were not being reflected in a refresh.\n", "proba": 1.0472638223291142e-07} {"commit": "b9d3a8f16bdcd7b59d62c8562afe70e43475e79c", "message": "hakuna matata!\n", "proba": 6.321108685369836e-07} {"commit": "7fbcf93917160091e301590db402db92c42f8df2", "message": "Small change\n\ngit-svn-id: 78c04ade7a39d415e1dfbdfb93d0db9e927fa022@122 15d7aa0b-6f1a-0410-991a-d59f85d14984\n", "proba": 1.4232795138013898e-06} {"commit": "39fa22c59e51a424ead6beee7874edb33b47d007", "message": "missing location after copy purchase order from production order\n", "proba": 1.990164264498162e-07} {"commit": "befc67e4e585eccb6b72fa4956371383ccc49fd3", "message": "Documentation incorrect\n\n--HG--\nextra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%401754\n", "proba": 7.799111472195364e-07} {"commit": "b3b82912b669fed3afdccf230a718d6c8bf032ad", "message": "revert test mode\n", "proba": 5.172371970729728e-07} {"commit": "63d867e6a658106de4a8e9a1713db506b4d1ca91", "message": "adjust comments\n", "proba": 2.8409945684870763e-07} {"commit": "181a531aca22163cd6df8a73b7a3de4736a8c2bb", "message": "remove translations from support form values\n", "proba": 5.132492333359551e-07} {"commit": "9519afbe476d6e972cfd18e87f9b3a1521944249", "message": "Set default LANGUAGE_CODE for sites\n", "proba": 5.519324304259499e-07} {"commit": "70b843f943c239cf65bb83a98d33df969e635252", "message": "change MissingValenceParameterError to contain TopologyAtoms\n", "proba": 7.415765708174149e-07} {"commit": "651e8b733595560c289f1d71412a48eece126b47", "message": "Renamed _ParameterAttributeInitializer to _ParameterAttributeHandler.\n\nThe reason is that this base class performs now many more tasks than just initializing the ParameterAttributes.\n", "proba": 1.1548755196599814e-07} {"commit": "0c4715f587450b9767f678e38b124f2a8793e5e6", "message": "improvements for match finding\n", "proba": 3.029484787475667e-07} {"commit": "dc220aecf53ef77d2ad5c95d47d01391bf83fe06", "message": "added restaurant app", "proba": 3.063751705667528e-07} {"commit": "fe5eb98c101fcf17921e99724324c7accbd5d3de", "message": "Update to path_alias table after Drupal 8.9 update\n", "proba": 1.9086745339791378e-07} {"commit": "83c873298aef19c819a9fe105607400a83b5e86a", "message": "Commented test [skip hazardlib]\n\n\nFormer-commit-id: 7ba0e22b03dc3d262d1342dc6f5c70e12e0cc447 [formerly f2f3c794b9fab7d90c8b76eb28b714817475c33d] [formerly f2f3c794b9fab7d90c8b76eb28b714817475c33d [formerly 3503885aaa8cff9a17f66a7f56b156a3238024e1]]\nFormer-commit-id: a5b990517b343ee0ee9554566a27f3daabd52526\nFormer-commit-id: 7ec83fdb16f24cef8eefe40916a4e245f9279dd2", "proba": 9.888605063679279e-07} {"commit": "8ba620b509df51b1185a6bb910f5978ac07cd48f", "message": "the long search for a + bug, also added .WALKING and .RUNNING\n", "proba": 4.809273264072544e-07} {"commit": "2026bc6b20f9d9cb9ca6daf55a62875c3013ab3b", "message": "Python 3 fix\n\n\nFormer-commit-id: 1b5d63db804567dbc27e5998ee6670fa454c1b1c", "proba": 0.0004950628499500453} {"commit": "246c649e787a4ca90d7a30477c72c779005a7344", "message": "Send self join message even in case of user update\n", "proba": 1.293300613269821e-07} {"commit": "a4af4e086681c51718c29ae401b10d45eac10321", "message": "Add appropriate policy rules to admin images panel\n\nCurrently many panels are missing appropriate policy rules.\n\nThis patch adds policy rules to the admin images panel.\n\nChange-Id: I8b25b420417387ef1d0ede1169243e30da343067\nPartial-bug:#1534495\n", "proba": 3.681392968246655e-07} {"commit": "13e277525cff3b9e9d8a0b712bf191893ec9a114", "message": "fix whitelist\n", "proba": 6.01322426518891e-06} {"commit": "808fbb3b1cfc6f2fcf51301c5de03a455df77864", "message": "Fix typo.\n", "proba": 0.0016038167523220181} {"commit": "c9b1b2c0030a7889eaab54d31c28c77255bce4bf", "message": "Fixed test_azure_shell refresh ip\n", "proba": 4.012076146864274e-07} {"commit": "f20acc8223b2ffd394fc948f85ae9b130d776849", "message": "Specify which node a request to '/acs/api/v1/auth/jwks' goes to\n", "proba": 5.771716587332776e-06} {"commit": "586e9218b9cc7bc2aaef6baabf494dbbacce397a", "message": "Coojagen: bugfix missing MOTEARG in serial socket mode\n", "proba": 2.7542509428712947e-07} {"commit": "3383f77441339154a681f7cb378e86c32b39bc45", "message": "update the clip guided PR according to the new API (#751)\n\n", "proba": 9.984639603999312e-08} {"commit": "f62782bc65a53b82843fe3d3b80fb67a487d12d2", "message": "allsky_single.py corrected\n", "proba": 1.4672814359073527e-05} {"commit": "97723cc18a49234ec846acf99aa90d5aac5072c1", "message": "Add updated _check_first_line code\n", "proba": 6.328313702397281e-06} {"commit": "c8dfa2960001dafe41a16ccf40fb54e9d8072cad", "message": "removed social-auth\n", "proba": 2.171917731175199e-05} {"commit": "954235306904afb66bf448d3f54c19e7bb969546", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "5262989ff589738af471251ac7c09cd0769f7038", "message": "remove commented out code\n", "proba": 2.4085790073513635e-07} {"commit": "801dd638b899f1ddca531c80db24bf69aee61cb7", "message": "Updated from Brython Server: 5/5/2016 2:43:10 PM", "proba": 1.1355209750263384e-07} {"commit": "5b4ff77082e9a2400eb79cbde680e3890cac3699", "message": "Updated from Brython Server: 4/26/2016 2:50:23 PM", "proba": 1.1061310090099141e-07} {"commit": "3734fe814be1292fb377ec1cb4c9fe2cad965fff", "message": "Updated from Brython Server: 1/3/2017 1:21:45 PM", "proba": 1.0963032792687954e-07} {"commit": "35c90c668eedb18950ef7abe547d1272ff948a9b", "message": "Updated from Brython Server: 12/9/2016 1:41:21 PM", "proba": 1.1110916631196233e-07} {"commit": "48edbca2379af25cd2803af37e0f12b5428d0147", "message": "optimizing algorithm : encryption runs at 35,300 char/s. Not great, looking for optimizations.\n", "proba": 1.1247636422240248e-07} {"commit": "ac9c5fc707223a5fbfedd00a35478b95086c9dc6", "message": "Updated from Brython Server: 4/26/2016 2:44:25 PM", "proba": 1.1106361341717275e-07} {"commit": "ae2a4e6a306863916381380c204d151f8ac75eb8", "message": "Need to update the function actually used...\n", "proba": 1.1052748050133232e-07} {"commit": "f92520aecd35259e11b9a675f1242d5ba575f834", "message": "Use the newly added CheckLicense() canned check to verify license boiler plate on source files.\n\nDon't check for the year since there was no clear concensus about systematically updating the year on every change.\n\nTEST=none\nBUG=28291\n\nReview URL: http://codereview.chromium.org/552203\n\ngit-svn-id: http://src.chromium.org/svn/trunk/src@37361 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n\nFormer-commit-id: 9f47af03e80e1c7b154f53b3d3adb866a33c49e0", "proba": 1.686724863247946e-05} {"commit": "4050a30a1198cc54f5b050e47db3a27d019dadd5", "message": "Fix path separators for Windows in presubmit\n\nThis should now properly support autoroll CLs to no longer having\nto disable this check.\n\nR=d8d88e7d7e77f69e23d1d1432231196fb8e02a62@chromium.org\n\nBug: none\nChange-Id: I079b76db2e8cc3e2990894d1e58227ca01e8c578\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2822644\nCommit-Queue: Tim van der Lippe \nCommit-Queue: Alex Rudenko \nAuto-Submit: Tim van der Lippe \nReviewed-by: Alex Rudenko \n", "proba": 1.0500823009351734e-05} {"commit": "fbfb660373e735f023961f91120bd1e1171497cd", "message": "Lots of cleaning/prettifying\n", "proba": 1.2234160351454193e-07} {"commit": "cd967341c80636b758542a4e0b196d58e218e2d8", "message": "dnsmasq and network-manager services stop before run the main function.\n", "proba": 1.0567365649194471e-07} {"commit": "dbb6eb380ee7acde38072d42a3d763a0f6f73bab", "message": "Moved configuration to YAML format.\n", "proba": 1.349430647223926e-07} {"commit": "5cb06bbfb40736f2baff7f5a27e2effd230d26e9", "message": "Some tidying up. Made a factory function for the combination of\nDVB_Multiplex and DVB_Demuxer.\n\n\nMatt\n", "proba": 1.5630190830506763e-07} {"commit": "2a26125b9a4c46d5f56aeb96751d0dbe9dc6cd13", "message": "use new collection sqlalchemy code in migration script\n", "proba": 1.5977062162164657e-07} {"commit": "8a2e6e812309926b9d88f95f9d83c9a35bd98321", "message": "add option to specify lr-threshold while using lr-on-plateau strategy\n\nSummary: As in title.\n\nReviewed By: skritika\n\nDifferential Revision: D15299135\n\nfbshipit-source-id: 2fd513b32c0ab41911cdf0b0186f6c3bb5256285\n", "proba": 3.5501864203979494e-07} {"commit": "e4c5a285f07197d0c0111a4cb3616634cae24144", "message": "CertificatesEnddate tests at 100% code coverage\n\nUse pytest to test that getting the datetime of an invalid date raises an exception.\n", "proba": 1.0667751126902658e-07} {"commit": "f3cdae790146b29bd8ad94024ee99d466f3689f0", "message": "Changed scanner to new way of creating sockets\n", "proba": 2.2102868513229623e-07} {"commit": "6b7374053e5b0c8162826a51581854a8a2364d36", "message": "Document new use for import luna.tests\n", "proba": 1.7004769858885993e-07} {"commit": "4dd087102af8f4bd84ccc9d42e8a75fb877034e4", "message": "check if group exists\n", "proba": 1.6669187061779667e-06} {"commit": "1fcebf22a6541d0179251d850a98f657ca4482be", "message": "xenapi: Improve cross-device linking error message.\n\nCatch invalid-cross device linking exceptions raise from os.rename\nand provide a more intelligible error message.\n\nChange-Id: I22b6a145141431b6d4e4cb0176881f0cf0dd609f\n", "proba": 1.5853007425903343e-05} {"commit": "e3d581afdf1e8143be1df583827120a17a09210e", "message": "fix: dont mutate `df` when creating custom fields\n", "proba": 2.901908828789601e-07} {"commit": "f6c879ab1d6f92a13c34fd3a2237121c67846089", "message": "refactor: Route History\n\n* Use newer deferred_insert APIs\n* Refactor query to use QB notation\n* Styled with black-ish\n", "proba": 1.478739051208322e-07} {"commit": "05166f919c070fc36b34e7b79f48061fc81850dc", "message": "fix: rename cancelled docs patch query\n\nuse backquotes in queries where column names are dynamic(To avoid query\nissues incase reserved keywords used as a table columns.)\n", "proba": 1.2233786605975183e-07} {"commit": "6b41b4a595e04cd6e46d617f5637b4a69591ca15", "message": "rpc method modified according to show the metadata for ebooks and resources in it\n", "proba": 1.1664757693097272e-07} {"commit": "ce192045f9d57f470ee98aefd27de850c5a5bd5f", "message": "Update GroupEncrypt.py\n\nAdded nameGen function which can be used to generate a list of names, rather than having to manually input them. Generates a list of n length that stores the names of those doing secret santa, no repeats.", "proba": 1.1433677116201579e-07} {"commit": "35d4fd921c4401ef7e837b594f78d50d8069558d", "message": " \u6807\u793a\u4f18\u5316\n", "proba": 1.2727313958293962e-07} {"commit": "cea78edd10aa77f63c6dc92f35fefb05f910feb6", "message": "Debug logging, trying to get a continue from the normal poll error.\n", "proba": 1.0483909562708504e-07} {"commit": "d0dc2e3af6dd89307e412465bc25979f4ff6e499", "message": "Removed duplicated function to create a swap fs\n\nThe mkfs() function in common/utils.py already can be used to create\na swap fs on a device, so there's no need to create another one in the\ndeploy_utils.py file.\n\nChange-Id: I0e1983d53b43d69b350cff462e975984ce2d86c9\n", "proba": 3.559767355909571e-05} {"commit": "c10c4e772e4741c6ff074760ebe961eae4651950", "message": "Add license info\n", "proba": 1.8226305087409855e-07} {"commit": "9afae61ac211fb6a6633fc53c2428fac75383d70", "message": "Fix a typo in the docstring\n\nChange-Id: Ifc1891ada442b2046a3e967fc26104b4b5a77b8f\n", "proba": 0.9999994039535522} {"commit": "bdb1f22a41d07a040289add0dc0fe65dc8cca8fe", "message": "Fix 2 Instragram API File\n\n", "proba": 1.8957094027882704e-07} {"commit": "c3f7eb1afcd4c420ac28cb5c80ce5b0d20da9ec1", "message": "Add implicit joda time dependency\n\nChange-Id: I449809ac154ffb9bfff68fae3e4ba267ce27624d\n", "proba": 0.001039846334606409} {"commit": "4b3bb51fcbeab7088a9248f297deb6686ce9789d", "message": "Implement MachineDefinition::__lt__ so we can sort them properly\n", "proba": 0.9999724626541138} {"commit": "1f45413090cd84d8dcfb04b9f183d00da059a004", "message": "Cleaned up None handling with a maybe wrapper\n", "proba": 4.995681024411169e-07} {"commit": "5902172ec4a13f6c9a1ef3a3859e5a8007537112", "message": "Update main.py\n\ndefault max timer is 10.\n", "proba": 4.0533768697059713e-07} {"commit": "714b492c444842c4fc0e735c75a49950eb5d0ce0", "message": "[Build Script Helper] Avoid outputting install_name_tool failures\nIn incremental builds, these commands will fail, which is okay.\nFailing to remove specified Rpaths means they are already missing, and failure to add specified Rpaths means they are already present. So we should ignore these failures and proceed with the installation, which we already do. Always outputting these errors pollutes build logs and leads people to mistakenly blame these errors for unrelated failures.\n", "proba": 1.1699958122335374e-06} {"commit": "acd23de3515ba7fe7b87b1601b22978f7b44a2c1", "message": "removing trailing space\n", "proba": 3.942374314647168e-05} {"commit": "312b9d8d941e9c48aa3bb23667ff32678ccb75fb", "message": "[BugFix: ZSTACK-28049] use port instead of device\n", "proba": 1.4999044140040496e-07} {"commit": "5edc524c3ec9d57ea0ff426cc4cfe8cc7ba09047", "message": "fixed importer to include metadata again\n", "proba": 1.2505880420121684e-07} {"commit": "c00b24da9352894e954fac51f0d00d66cafac35f", "message": "[Improvement: remove temp usb device xml]\n", "proba": 1.4019900618222891e-07} {"commit": "b3c75d34e6e1e35af5eda8aa71dff633111bba5d", "message": "04/05/2017 15:04 pm\n", "proba": 1.2876333244093985e-07} {"commit": "5d9e43a94e385eef3d75c258ce9f8e70f254698e", "message": "more stop gap for #247\n", "proba": 1.2740210308948008e-07} {"commit": "3a76d635000ffbe1d06729a1ebc9ddff64ae74d0", "message": "improvement error info\n", "proba": 3.240185151298647e-07} {"commit": "de2d741ba1356a4500f6e5de88b3ff10de762146", "message": "[FIX] sale_margin_percentage: corregida ausencia de par\u00e9ntesis\n", "proba": 4.93048673888552e-06} {"commit": "24290ead381e504788d82890b7ae83f06e736668", "message": "FunLists shouldn't be time-sensitive.\n\nI'll make a subclass at some point for if you really want to store lists of functions...\nbut for now, it's just for the rules of the game, as of game start.\n", "proba": 1.418924853169301e-07} {"commit": "472c8f66ae865d5d2ca9eef1585978a7151c2a4f", "message": "Confirm vm status to avoid error when stop or destroy vm\n for https://github.com/zstackio/issues/issues/2807\n", "proba": 1.6124438673159602e-07} {"commit": "d91d0dde5b3dde515e7382ec54d0c342ca991b57", "message": "[IMP]sale_promotions_extend: categor\u00eda completa en promo cambio de tarifa\n", "proba": 2.1176259679123177e-07} {"commit": "ba7dfb2045bc75a106fa908b84503daf60328f9e", "message": "Untabify! (Barry, this is gonna cost you a bottle of wine! ;)\n", "proba": 1.1157637658243402e-07} {"commit": "29f3f231ba932cd9a2620601978bc948fba3b60c", "message": "mkstemp(): Repaired error in docstring (the sense of the 'binary' flag\nwas reversed).\n", "proba": 1.2368649038307922e-07} {"commit": "7295cab6d89629c5b228f0393ebd6b3bb418438a", "message": "Change the default seeding -- use 8 bits of sub-second precision and\nfold in the higest 8 bits of the time as well.\n", "proba": 1.0194393951223901e-07} {"commit": "5fd76f4c490c3b63e312917f587f63bfef747e67", "message": "Changed default to RGB rather than GRB\n", "proba": 4.484254077397054e-06} {"commit": "1807563ac1e6f767f67c4222e39c519224fac5dc", "message": "Removed re.MULTILINE flag for regular languages. (Was not needed.)\n", "proba": 1.0534984795640412e-07} {"commit": "d46899f0167e793cad5943e685c86623c731a6cf", "message": "Refactor for OOP, modularity and Pythonicity\n\nRename 'generate_state_machine.py' to 'smacha.py', short for 'Jinja-based code\ntemplating, generation and scripting for SMACH', with a view towards\neventual open-source release.\n\nRefactor code to make it object-oriented and modular.\n\nAdd SetOutputState template for setting digital outputs.\n\nAdd test script for new smacha yaml script format that will allow for state\nnesting, concurrency, etc. in future versions. Not yet usable.\n", "proba": 1.2501503476869402e-07} {"commit": "d3a2ecdc5cff808cbb20866c2eb91cc236e08497", "message": "bugfixes GaussFilteredCosIQPulseWithFlux: return values of chan_wf and hashables when called for channels that are not used by the pulse\n", "proba": 1.2192357701223955e-07} {"commit": "aab48f93a5142e59391d51feda83eae1a5505532", "message": "[FIX]l10n_ch:solved configuration wizard traceback\n\nbzr revid: kbh@tinyerp.com-20120921061643-5p25uqu3yidpppf5", "proba": 3.017590586296137e-07} {"commit": "a70afbf2d8249afc4c132b990efaa505750e5e8d", "message": "RD-3512 Set user timestamp (#3342)\n\n", "proba": 3.3748658552212873e-06} {"commit": "2b883e2447dcc35af3463b073ab865030a5f59b8", "message": "authenticator: default readonly to False (#1939)\n\n", "proba": 1.2225179091274185e-07} {"commit": "4e347c5733e8a7f525db7172c6a7d4d1b11ada52", "message": "Auto park\n", "proba": 9.533532647765242e-07} {"commit": "0eede7952b3da72869133871198e49fa25dffc34", "message": "BUG: fix refactoring victim in factormodels\n", "proba": 2.6024352450804145e-07} {"commit": "b04e25db7f7222d54bf5d09ea78cc6bbb8931dbd", "message": "Git: merged impl of archive (added working_directory_keeper also)", "proba": 1.2091858536678046e-07} {"commit": "ca4ad4a141ba9c8f8fc93857a6bd2b22f1bb8fd5", "message": "Added a cleaning method to club_app view.\n\nThis ensures that you can't create a application for an already taken Link ID.\n\nPatch by: Lennard de Rijk\nReviewed by: to-be-reviewed\n\n--HG--\nextra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%401688\n", "proba": 2.7234301569478703e-07} {"commit": "0754a6d028061776c718463ce8c16879ebd5520f", "message": "Unbreaking Hudson\n", "proba": 7.4620020313886926e-06} {"commit": "47da393a50f3110e9e0de4666df1edeeba7c7f3a", "message": "Trocando o success_url\n", "proba": 2.0387123811360652e-07} {"commit": "334ea1b3d65ab0b0389e7a9ee35725a23f722aef", "message": "data_manager: properly handle dataset names with underscores\n", "proba": 0.006756416987627745} {"commit": "3c8d8d4e361fae94c74f0d3e183f16475900939c", "message": "remove debug prints\n", "proba": 1.4093592426434043e-06} {"commit": "b1b115ecd6d680f653da9d81d573a238f224128f", "message": "benchmark/scripts/SCIPY/ssyrk.py: Overwrite will work on a Fortran array of the correct type.\n", "proba": 1.2262520954209322e-07} {"commit": "cd4730cf0f41b3f09c4cb9538a9f1e12781dfabd", "message": "Added fallback for API call exceptions\n", "proba": 2.518640940252226e-07} {"commit": "479e5ca8f9c266aecbb0c2e69135074bf5e9068a", "message": "Replace deprecated assertRaisesRegexp\n\nThe assertRaisesRegexp method has been deprecated since it was renamed\nto assertRaisesRegex in Python 3.2 .\n\nhttps: //docs.python.org/3/library/unittest.html#deprecated-aliases\nChange-Id: I9b6e6283301dfb6d1874b81bb5f26db56568bd5a\n", "proba": 0.9996782541275024} {"commit": "b105d7e63165d06414463a462ef59068a92525f3", "message": "Add static utility method for creating project repo instance\n", "proba": 4.4147694211460475e-07} {"commit": "333e64326bc721dc6f68ee361defd171c756ce6e", "message": "Adding helper returns when timeout is zero for reach plans as well.\n", "proba": 1.0921687731979546e-07} {"commit": "b62aad921b50bd24e35e93cb5dead12fa0123d4c", "message": "Better initialk description\n", "proba": 6.286744564931723e-07} {"commit": "2e02280a454583206fcecf1f6973e8f263262575", "message": "fixed argv\n", "proba": 9.662244337960146e-07} {"commit": "c3441ff835be45d99a09091e3e460a4b7c185e92", "message": "Use logged_in callback (which fires logged_in event).\n", "proba": 1.153689908051092e-07} {"commit": "ddad47543d79772b4d07e4d21836cff8a7722d29", "message": "Updated monty_python.py", "proba": 1.1070771961385617e-06} {"commit": "0b253670bf673813f5e6d3ff3af0163674482882", "message": "Don't clear potentially_flaky bit in minimize_task. (#2467)\n\nThis can otherwise get into a bad state with minimize_task repeatedly\r\nrunning and unsetting/setting this flag for certain flaky crashes.\r\n\r\nminimize_task also spawns a lot of other tasks (e.g. variant) that will\r\nquickly fill up the job queue.", "proba": 1.1589898463171266e-07} {"commit": "12427e0967baa0c43caf15b7b122ca275a4f78ba", "message": "Fixing a problem with positioning\n\n--HG--\nextra : convert_revision : svn%3Ad2f3068a-bb81-11dd-ad1f-f1f9622dbc98/trunk%4012\n", "proba": 6.209725688677281e-05} {"commit": "a08e1948f956d5dd809d2c32d9d4620314165363", "message": "updates\n", "proba": 4.4353927819429373e-07} {"commit": "ef2aa5099028d25a9218343a13a3efdcf26827ba", "message": "implements new Nyquist calculation (as in Roberts et al. 1987)\n", "proba": 1.1550825718131819e-07} {"commit": "1121e2638ba254bab0a189ddac618f7eac8fd6a5", "message": "Implemented: P18 Protein Structure Image in the proteinbot\n", "proba": 1.2926260239964904e-07} {"commit": "c51f75714f4eba0a8b5f3de546412831ee24f6bc", "message": "remove unnecessary method\n", "proba": 0.001775110955350101} {"commit": "728ea80a2f21e0a0aabc147dc3b6ec92e9cf121d", "message": "Release 3.1.15590\n", "proba": 1.571977890080234e-07} {"commit": "8691c7211e2d816ec6ab80a69d2783bbe86af9ee", "message": "woops\n", "proba": 6.7884320742450655e-06} {"commit": "805966d5d87493ce58207ba97c5f0f21b76a7d3b", "message": "Fixed a typo that caused syntax error", "proba": 3.8373450479411986e-06} {"commit": "ac6ebd4237a620a05f5f2cd7e2b06383f056bb3e", "message": "Simplify compare.\n", "proba": 5.493442586157471e-06} {"commit": "32db97335926bd8586134973923cd0ea50ada5b4", "message": "Fix errors being spammed into a channel.\n", "proba": 1.233277089340845e-07} {"commit": "b3c57f56d5c0fafdd28c40e244cb39bc86261e42", "message": "Fix error logging.\n\nSigned-off-by: Laura <07c342be6e560e7f43842e2e21b774e61d85f047@veriny.tf>\n", "proba": 3.394415557522734e-07} {"commit": "313fcfdf31b43a035634af42efd5bbf19e12601b", "message": "Update tests/nlu/base/test_persistor.py\n\nCo-Authored-By: ricwo <4c5882e218a344c6b88075675f2e61ce609cd98e@gmail.com>", "proba": 1.1436316071922192e-07} {"commit": "a4a8731adaadcf1d43ebbefbbc6afaa53c6a930f", "message": "change the default word count to 5.\n\n4 is just not enough words unless you have a really, really unweildy\nword list.\n", "proba": 2.54554174716759e-06} {"commit": "8b0287e90e9ba47c826f3ea4370608e037091306", "message": " - Added test to check the divide_by_mass keyword\n", "proba": 2.3970275719875644e-07} {"commit": "43d8eb934c0a8c669713c30138312da7a38ff327", "message": "fix python test that failed in some servers\n", "proba": 2.028667267950368e-06} {"commit": "8512bfc6d8ad835a6f387cdf088692f333ab4a85", "message": "Try/catched put to RocksDB storage.\n\nSigned-off-by: Sergey Shilov <064bbdfaeb89a0bebebfe7b388747a73c8941704@dsr-company.com>\n", "proba": 1.1345716188770893e-07} {"commit": "c4bcda7303617c3b7553dc990e4787e3413df03b", "message": "Trying to make first plots with rho and traceP/traceAtA ratio\n", "proba": 1.8842028737253713e-07} {"commit": "244b85c9cca5d6e3eae9da089b2538029e77de79", "message": "comment out broken test2\n", "proba": 2.1864390475911932e-07} {"commit": "282d8cd066389151bbc562ac852b9dc41f55f901", "message": "Unit tests for \"First Wort\" and \"Flame Out\" boil additions.\n", "proba": 1.0415168105737393e-07} {"commit": "433cc685c520e9fc300431f506ac9cd5cc32ca8d", "message": "tests: Fix an oversight in validation tests.\n\nMake sure that bytes and uuids are tested with all comparison operators.\n", "proba": 1.2660852632961905e-07} {"commit": "8718f8dab9b21f3c37218cfa00ed721794da9980", "message": "Minor usability changes. Still running tests to see if learning is taking place.\n", "proba": 1.058844958379268e-07} {"commit": "539051dd460aaf004f16d6e4767b43605177028b", "message": "add case of disconnected\n", "proba": 0.9999462366104126} {"commit": "76117197bf3e25b3211049929cb331517dc63570", "message": "Add data if repo is forked/archived\n\nThis is important data for evaluating a project. Current change\npopulates repo data with parent repository if the repo is forked\nand with the date it is archived if archived\n\nSigned-off-by: Ivana Yovcheva <86e73595f14df5226ef437d57671288872a8681c@vmware.com>\n", "proba": 6.477683882621932e-07} {"commit": "4fc4d6832f377d6f90744a0ac47e2cac90ce0b84", "message": "Fixed spectrum calculationj\n", "proba": 2.1354480850277469e-07} {"commit": "c63bd596ddc2daf67c420b1e57dda269a523fc71", "message": "add to_alias_type to admin\n", "proba": 4.6402348630181223e-07} {"commit": "955eca13d7adaff80f7e4c0706807e66a0ea9a7a", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "44f6c372db9c7416a1b24f66f0a06445d47b6659", "message": "Rewrite \"read\" function.\n", "proba": 9.967554797185585e-05} {"commit": "524f0208c7e71c7ba0b698b5f4d35e5851c24ace", "message": "Document newly-added functionality\n", "proba": 4.2594754745550745e-07} {"commit": "c6f2f2a67ca460b88e6f04207d61a7fd8222016b", "message": "remove the update_master lock. with a single client, there should be no downsides\n", "proba": 0.0022356596309691668} {"commit": "5c544e083fab89741b2db1657de234c86c00266e", "message": "client: do not use isolated in win7\n\n64bit bots have the same issue.\nhttps://chromium-swarm.appspot.com/task?id=4a08f76ca035d110\n\nBug: 932396, 1045281\nChange-Id: I0d57e1bbffbfa54f6702d6facb480f8dd7a407a0\nReviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-py/+/2027347\nAuto-Submit: Takuto Ikuta <71927f930fca81015e0f496c65cd126ab1a692e3@chromium.org>\nCommit-Queue: Junji Watanabe \nReviewed-by: Junji Watanabe \n", "proba": 9.428576390746457e-07} {"commit": "8311e274707cd06c519c2cf39856aa7d7cb16c88", "message": "tweaks\n", "proba": 9.085585475077096e-07} {"commit": "14ed843db50af4c9447248a7a1d3ef55ecc40569", "message": "Expose more fields on hostgroup\n", "proba": 1.6624578336177365e-07} {"commit": "116814b3740b30acb0454eaa75e76fedd2a49217", "message": "Fix typo in src/pikepdf/_methods.py\n", "proba": 0.0016427922528237104} {"commit": "244aa02160dc594eb14f2152c3dd5e3db024aad0", "message": "Add coding: utf-8 head\n", "proba": 0.9999990463256836} {"commit": "1e681cf85a1f0e525d533683a9d6d50e40728173", "message": "-Multi-select fix", "proba": 2.5530732727929717e-07} {"commit": "b9e46bead1674e3f35e179cb25e1c0985dde0f5d", "message": "[Urgent] fix error when import config\n\n1. What is the problem\nThe patch that refactors neutron ml2 config opts to be in\nneutron/conf/plugins/ml2 is merged [1], making unit tests fail.\n\n2. What is the solution for the problem\nDelete the line which import neutron.plugins.ml2.config\n\n3. What features need to be implemented to the Tricircle to\nrealize the solution\nN/A\n\nChange-Id: Ia4c8de9ac0dc66541c194588a8c51a489078d909\n", "proba": 0.0011456841602921486} {"commit": "9fc3d057d8fb1474b66d41d4668b92dedbf47890", "message": "create single sector window \n\nTask-Url: https://app.asana.com/0/185270059359143/276008476372755", "proba": 0.00030331703601405025} {"commit": "59c7715085c3d2435ae0a7ad35a8dceeabf5a033", "message": "Submiting look prototype works including picture.\n", "proba": 1.0080354684305348e-07} {"commit": "0e62e5128d7e8b7f8ca93663b1208945dcc79453", "message": "Add helper routine to reflow modulemd\n\nReflowing first makes reading diffs of changes easier.\n", "proba": 1.0629485558411034e-07} {"commit": "32267f0b1b0599d856d6c735eebdb9f06f85a3e4", "message": "Store machine screenshots in screenshot store\n", "proba": 4.0332986372959567e-07} {"commit": "375d086eeedcf2f1937aeb7df32f537934078769", "message": "made changes for thememanager", "proba": 3.0023909403098514e-07} {"commit": "86fddc48bfed8b92ed1548c31819238aa1dd24de", "message": "tests pass\n", "proba": 9.660087698648567e-07} {"commit": "331df02cf4c3570075b09dac7628f54d4d29599e", "message": "let BED parsing ignore values that don't match the BED format\n", "proba": 1.11520466816728e-06} {"commit": "58468192980461b88b02020417ea49f7fa39a2fa", "message": "_opt[log_lvl] is totally unnecessary\n", "proba": 2.2805414118920453e-05} {"commit": "d9fb500ca93bb38dc66c2106a11da7381a9319eb", "message": "Added a docstring\n", "proba": 3.387449964975531e-07} {"commit": "dcb1c2e441b5a6c2f00c8881ee9fa79bdd643940", "message": "Support editable repo urls with an auth string\n", "proba": 2.0901164532460825e-07} {"commit": "f55db7e1464b352ddd3f304bb32fd4c5718efa4a", "message": "fixed some bugs\n", "proba": 3.6130126090938575e-07} {"commit": "d5c99a93e6bc4839794547de597cd1a27c2078a6", "message": "Fix some Example parsing issue, leading into missing text\n\nllange on github reported that part of text was missing for some examples.\nThis is is due to the regex used to detect such keywords, which only accepted\n\"Example\" at the beginning of a line. Any text before it was simply ignored.\n\nThis patch considers that the use case is uncommon and disable the \"Example\"\nrendering in this case, which fixes issue #9.\n", "proba": 1.2310209740462597e-07} {"commit": "e13e6e40418ebdb53eab087703c8c3daf78e7bff", "message": "Moving counting of points within a radius into it's own function that it can be used for purposes other than the colored bi-variate plots.\n", "proba": 1.0949199236165441e-07} {"commit": "7c1ff397d7bd4cf01742b9a9588053582925cf1f", "message": "heh simple math\n", "proba": 1.3861330444342457e-05} {"commit": "8ade18509cab646bc602399559822bc18b8c3d46", "message": "[data-mig-run] pass stats to postprocess\n", "proba": 1.4931408998108964e-07} {"commit": "165c83593ccaf046dc465fc04ed607d269f6cd93", "message": "Added comments and fixed small bug\n\ngit-svn-id: 1df7fcefc24ce524793a7474bd98e66739d04a42@531 15d7aa0b-6f1a-0410-991a-d59f85d14984\n", "proba": 2.1214422929460852e-07} {"commit": "589e59c5fe509cd7abb5d1161ab6acd041187b70", "message": "Fix bug Speedline, if create a tax without description\n", "proba": 2.719298208830878e-07} {"commit": "f7bedec98e17f8518d5c0577eee18001d34c2f83", "message": "Improve test coverage for tzical\n", "proba": 3.150448151245655e-07} {"commit": "7d65ca59fb4096421a66f722487895dc22090fb5", "message": "machines\n", "proba": 2.246463282062905e-06} {"commit": "f6c334ecb984ac036f4c4d1faaf616a18ad4b6fb", "message": "BDKD-262 Removed TODO comment\n", "proba": 1.1293424506675365e-07} {"commit": "4cd043aa2a71d31c51f8912d8abf7dedfe3d8a34", "message": "made desu counter\n", "proba": 4.805114599548688e-07} {"commit": "f5ae6615319f41a266ab3b7bfa1664d9b6665233", "message": "test: fix indentation of test\n\nDon\u2019t know why this was wrong\n", "proba": 9.24645746636088e-07} {"commit": "d93177a01e9a367e2a3c4da448ef2c8da53e91de", "message": "fixed a bug for missing project attribute data", "proba": 3.99167305431547e-07} {"commit": "fb8200a82435a9e3f19af3c4ac794b7dc2e2bade", "message": "fixing name error\n", "proba": 2.693770738915191e-06} {"commit": "8fbaa6cc84c6d1e4914e5d9b54e7b18bac0f7ba0", "message": "Fix duplicate method.\n", "proba": 5.395530024543405e-06} {"commit": "9c5d35f1953854f0c34c9062ba84ce88180ea622", "message": "init inserting comDat\n", "proba": 6.676852353848517e-05} {"commit": "641e6206237433b07209e59f07780dc334948941", "message": "Memoized intb64, fixed buglets\n", "proba": 1.3054282987923216e-07} {"commit": "2daf54b7ce6d9b0b84c2892dd99eda5910e36a83", "message": "Updated parser for new method.\n", "proba": 1.21316844570174e-07} {"commit": "4bd56d51c3511c650169e06aa3c2afdd368815a5", "message": "fixed missing raw param\n", "proba": 4.966594246980094e-07} {"commit": "7f96cc8aa762f0cd864a05b8a13feddbf2d6e1c8", "message": "rewrote redis tests to share much more code\n", "proba": 1.139723906362633e-07} {"commit": "049958ed4c555743884bda050e47909030ad74c2", "message": "bugfix for case insensitive single cell description match", "proba": 4.4901500473315537e-07} {"commit": "70721ad5977852d02072abf3e42b0ee1f9547017", "message": "Fix qstring/asic code convert for python 2\n", "proba": 0.9990618824958801} {"commit": "11e8c9c3bca0a16187889aad4c90817146936704", "message": "Qtc 4.15\n", "proba": 1.8659397937881295e-06} {"commit": "6b4c6ff4a5501b1fb04517e3dec02c8581b7030d", "message": "use assertEqual instead of is False\n", "proba": 0.9999984502792358} {"commit": "d0bff7a0ade4e6b59742f22692abf07992532b14", "message": "Fixing mailbox opener so rescan works more than once\n", "proba": 1.235446660530215e-07} {"commit": "a11d0fa24cac56f78ac3da756b6c3bf41b33447a", "message": "Show user in the submission admin page\n", "proba": 2.2427248325129767e-07} {"commit": "a952c2b4ca2de2de7dce990331d21cad3cad469f", "message": "Add a fields parameter on FormWithWidgetMedia to silence deprecation warning on django 1.7\n", "proba": 2.367655724810902e-07} {"commit": "5d79f22896c77bf49153ec23f4cc138cfa088466", "message": "Add split_dataset to pascal_cropper\n", "proba": 2.350721388211241e-06} {"commit": "f2712d4cc799a28c018d895a56bda429ebc2ba33", "message": "Add file list and dock to move faster\n", "proba": 1.7028916943218064e-07} {"commit": "52384cf7cfa885b6d3fee52cf392df04022dfb08", "message": "Alimenta uma vez apenas\n", "proba": 6.504718044197944e-07} {"commit": "e90016ed2d106e7540a40081ab30871914cc9919", "message": "Add task to install eval env\n", "proba": 6.499359983536124e-07} {"commit": "4b386006ed02a01856b4a35f9e6c5bfdf027f547", "message": "Add support for splitting training into train & validation\n\nAlso prints some stats as the model trains.\n", "proba": 9.950931456614853e-08} {"commit": "1022882f2db742c3975cb8e2069299a079330907", "message": "fix: fail with assert False in decommissioning test in order to get logs (#240)\n\nChangelog: none\r\nSigned-off-by: Greg Di Stefano ", "proba": 1.0276696684741182e-06} {"commit": "cccccb911fdf53bc02caa71963e5e7589dde156a", "message": "add gpx generation\n", "proba": 6.834642931607959e-07} {"commit": "e9dbbd80bc1bf7a65133cbe16c8deba10340da77", "message": "removed a default mutable argument pitfall (#809)\n\n", "proba": 1.1106001096550244e-07} {"commit": "febee3e06553e40666e5122973aae0284c71528e", "message": "patch cache replacement\n", "proba": 5.352948164727422e-07} {"commit": "b328c7dd409ea916244c3dec139a61e01e3aa83a", "message": "Better structure of Flask config settings.\n", "proba": 1.1888054274322712e-07} {"commit": "d6b6019c51ac20d7a6e67ee6346846434499b245", "message": "change: use .processors.list_processors_by_* in .backends\n\nuse anyconfig.processors.list_processors_by_{type,ext} to list parsers\nin anyconfig.backends instead of similar functions in it.\n", "proba": 1.3322016911843093e-07} {"commit": "2df0a234d2d7b9bd0899bd4409544b520d408524", "message": "Use a variable name which doesn't clash with a python built-in.\n", "proba": 1.336193093948168e-07} {"commit": "afc39d80d419721ce1841a54fe73c9ff48f7571d", "message": "add unit test for bug fix\n", "proba": 2.5907323220053513e-07} {"commit": "e98367b54ec313932bc5af8f809cae5ca953d226", "message": "Serve static content if requested\n\ni.e. images and css\n", "proba": 1.2993149312023888e-07} {"commit": "e224f095cea3e63cd34c74c0903a6178d7b826eb", "message": "simplify the flag of template support, s/TEMPLATE_SUPPORT/SUPPORTED/g\n", "proba": 0.0002004210400627926} {"commit": "f5900efbf8371f349635fe6b5bf9bf87bbc59a51", "message": "Store the colour bar axis.\n", "proba": 1.457655542935754e-07} {"commit": "a7e28a25b0ad255c55a3d9d7cac5efcce13bbaf8", "message": "change: just re-raise TemplateNotFound exception instead of RuntimeError in .template.render\n", "proba": 5.602291253126168e-07} {"commit": "070aaf3901cb9f72bcc03f16a07c993e6faa1081", "message": "Initialise plot objects to None rather than empty lists.\n", "proba": 2.976436803692195e-07} {"commit": "0c206e87216be422c10d6f441bc44167d2660626", "message": "fix cbs dictionary table creation\n", "proba": 2.727939545366098e-06} {"commit": "1b726b7f2e18870821305982ec799522a0eb8557", "message": "moving import unittest2 to unittest\n", "proba": 1.9295865172352933e-07} {"commit": "a0e137b63e20792f700094291db6a7bed4282a3f", "message": "Spacing.\n", "proba": 6.940101684449473e-07} {"commit": "601261269b1e43147804c4959f2aa386106992e5", "message": "fix: counter overflows (when converting to bitrate)\n", "proba": 1.6895462806587602e-07} {"commit": "19686c8ca381c7c9854001b9300cd78edf3c0e9c", "message": "Fix handling of in SVG\n", "proba": 1.8857323311749496e-06} {"commit": "0f54b4437345dfadbff20479adc17ccd22fe36db", "message": "Bump the version to 3.0.1\n", "proba": 0.9999990463256836} {"commit": "55fb07a52938c6ba8d6a090e2d45ab9e90677716", "message": "fixed an invalid superclass reference\n", "proba": 5.625306584988721e-07} {"commit": "7b9c3137739a1dea9e487a346646323c019c1520", "message": "Check for gpg binary\n", "proba": 4.888573243988503e-07} {"commit": "3d3d7d2d71dc246a8a5c58b60d98d481cf4a4053", "message": "Only set the new data if we have the current dimension in the variable we're working on.\n", "proba": 1.2128191428928403e-07} {"commit": "0a908781d403218679aeca0b08b796268116e8b7", "message": "Added indexes to globus_uploads and background_process\n", "proba": 1.3251475650122302e-07} {"commit": "e7d9f5ea88589a464d06ed2757616c9cff974687", "message": "Add unit test for migration\n", "proba": 4.2557726942504814e-07} {"commit": "8491b0ee5fae802b4e51b0e63123ae7d2a81e7ec", "message": "Add parent as index in datadirs.\n", "proba": 1.4001220449699758e-07} {"commit": "d7aebd1877874c7efa29c2cfab27770f9e487555", "message": "Remove unnecessary sleep from unit.utils.process_test.TestProcessManager.test_restarting\n", "proba": 1.3593179573945235e-05} {"commit": "92942c66f21dcbb88c0e05b5171f8bc6e5608c13", "message": "Create index on checksum for datafiles\n", "proba": 6.120286570876488e-07} {"commit": "fd19a57bed9d79efef761366f1651f0328a5cc75", "message": "Removed unused import\n", "proba": 2.9346514907047094e-07} {"commit": "c4a0156bb3ee666ca2292f7a25b7551de2c25bc1", "message": "updated to be more flexible\n", "proba": 1.1657607501547318e-07} {"commit": "589a479b8dfe25264d95d52a8ab785dd354fa4cf", "message": "Remove the SSL monkey patch\n", "proba": 4.934240678267088e-07} {"commit": "9c06897c7afda9872f3244049989e2bb424050f2", "message": "Remove pep8 error in symantec plugin\n\nThe symantec plugin contains some violations of pep8 rule E711, which is\ncurrently ignored by tox. This patch removes those viotations.\n\nChange-Id: I4f843ab49eb74c403bdb541f8f9fe79b4a61b383\n", "proba": 7.167058697632456e-07} {"commit": "70cc4de680b781c963aafbc5dafb751edcf8084e", "message": "Fix ip address retreival for server connectivity check\n\nChange-Id: I23a65090feaccf9c18a096f51f84e2b9aee8e0a7\n", "proba": 8.014355330487888e-07} {"commit": "d7035fccca87f6cd3ac44596d23783d8a1dad131", "message": "use upper case\n", "proba": 0.9999921321868896} {"commit": "4063b73e3b28153f521f30369e353f5c4984f166", "message": "Updates to mainline\n", "proba": 1.6291745907892619e-07} {"commit": "40840865243b741b294ab7d2a230cb50dd9f20c0", "message": "Change vip property to return future_vip when exists\n", "proba": 7.3078587092823e-07} {"commit": "2eba6f5984f35a5bf896d089961d04a52cbf3373", "message": "Added a function to retrieve an instance ID given its address\n", "proba": 4.1098840597442177e-07} {"commit": "23ab353a60c5da054ce25331167a590a3456697e", "message": "Fix improper resource type of materialized objects from pipeline\n", "proba": 4.712948793894611e-06} {"commit": "4882c5d087efb10286464963a90d91f4c5fe53b2", "message": "added some basic schema generation from parent elements\n", "proba": 1.9842855181195773e-07} {"commit": "730a73d555bf62c3715315ae8c2afdf8d6c692f2", "message": "make tree darker\n", "proba": 0.0022868814412504435} {"commit": "ee9c804b99d45a75060b10d355c75f8f6925f57e", "message": "[IMP] delivery_seur: TestDeliverySeurBase added to improve inherit.\nTT37147\n", "proba": 1.3395730036336317e-07} {"commit": "91318bc256991c9946f450219721665148480cd8", "message": "Add retries for flaky tests (enabled by default for now)\n", "proba": 1.0455832466504944e-07} {"commit": "7e938ba083b51b01b963c91b3931268a2f897583", "message": "Improve robustness of chapter downloading for mangabee. Should not fail for chapters with 50.1 50.2 etc.\n", "proba": 1.1446234537970668e-07} {"commit": "2930ae9cc3c2cef50701345f66516aada11cb9bc", "message": "path.split: default separator changed to 'os.sep'\n", "proba": 3.5675200251716888e-06} {"commit": "4fc85a663fedffa742e635c920fd4f865aa9dccf", "message": "Revert \"XXX debugging\"\n\nThis reverts commit 5070d0404f600ac230210df71abf6b51dc406c7d.\n", "proba": 1.3280815380767308e-07} {"commit": "1ac7ea14113a1ed4cba41bfc01c59bd99477db17", "message": "bug fix if target file smaller than signature index\n", "proba": 1.0425648042655666e-06} {"commit": "a640ae8c53718ca953712d4634a3b19f1c88fe17", "message": "Add a todo to support writing benchmark messages to all partitions\n", "proba": 2.067664013338799e-07} {"commit": "5ff0f09ea4d89d39088288ee73ef7585a3ce2677", "message": "Fix issue with new https URLs.\n", "proba": 2.942865933164285e-07} {"commit": "7991db276869adccafd6d423d48dadca2359cea3", "message": "bug fix import make_data\n", "proba": 4.6791180352556694e-07} {"commit": "217699e4730a1bdb7c9e03bfd9c2c0c31950eb7c", "message": "update datasource\n", "proba": 7.438090960931731e-07} {"commit": "d32db1289b5445cd6541c36e3100694e68de48e5", "message": "string keys for dict\n", "proba": 5.82021166337654e-05} {"commit": "6c5f57d40a4583371e65fe7f4e9243bdba06d09a", "message": "For 'histogram()', when shifting bin edges to deal with 0.0 values --- there could be a problem for arrays with no NON-ZERO elements... deal with that.\n", "proba": 2.564339638411184e-07} {"commit": "c48454defd585757a64e5c68a0fe9892c420d38e", "message": "HUE-1521 [core] Improve JT HA\n\nWe need the username of the current user when trying to find a new JT HA.\nChecking if MR1 or MR2 should not trigger a call for checking the JT HA,\nit should just look in the hue.ini cluster config.\nWhen logged-in as a hue admin, the page might need to be refreshed once\nbecause of the /debug/check_config_ajax call.\n", "proba": 1.1880653261187035e-07} {"commit": "762c9b4774a110d783f5623c16c2975099ed21c6", "message": "Apply suggestions from code review\n\nCo-authored-by: Matthew Johnson ", "proba": 1.206598625458355e-07} {"commit": "20536a2cc33d18c0d5cd7737d76e94770b7f90a7", "message": "Resubmitting simple validation\n", "proba": 1.7551086273215333e-07} {"commit": "f1ee373eb42e13831dd52867f4c126be275742b0", "message": "Fix numpy.exp overflow in smearing function\n", "proba": 0.000214859246625565} {"commit": "c55a38366dc5f5654954ac6f1a19edc06823c7fa", "message": "Add MN as ion (it's bad, there should be more, more ions here)\n", "proba": 1.620837429072708e-05} {"commit": "8ca6ebcb251b08cee3e24844111238c00a085d80", "message": "Add node type to network\n", "proba": 1.4700959809488268e-06} {"commit": "7cc562b2f654d8d1657de287f66826d16aa1d35d", "message": "Fix word piece attributes (#97)\n\nAttributes for config items should be public and match the argument\r\nname.", "proba": 1.0888117429885824e-07} {"commit": "f0e8150b37c4687372bfd43f32b1767c20ae5b23", "message": "check input file in try\n", "proba": 1.463875832996564e-06} {"commit": "7016bf1f2ca6f17eb8fe29d93017b7b736c24114", "message": "Added clamp node to math\n", "proba": 1.8814306201875297e-07} {"commit": "e05e1623b31acf0888a834b0b4eeb5426a67d2b9", "message": "jose-bot.py: remove send_typing\n", "proba": 4.936160848956206e-07} {"commit": "90d19bc74f9ff526008b2da53e0bfe85615889aa", "message": "Fixed load weight typos\n", "proba": 7.055108994791226e-07} {"commit": "f6e85279d8a63b9b72417b95189519c7902dad56", "message": "Data optimization: removing non-installed bike parkings from db\n", "proba": 6.165665809021448e-07} {"commit": "3b636396a5d558126f9d18ff89b3e4d5bae06079", "message": "slight changes to test scripts\n", "proba": 2.1150182760720782e-07} {"commit": "b663fd3e20b2c1c9f3346e1a63b56048335fdfbf", "message": "Update dependency bazelbuild/buildtools to latest version\n\nIncluded changes:\n\n - cab7f6bacee9bddfcc12d4a315e974cb3029de9e Add release binary for darwin-arm64 architecture (#994)\n - 27a6414354c1b41452773d1e2acc8c54b478be8e Bug fix: add size check on split of \"cmd|*\" syntax. (#992)\n - 3b5b7385ae6187bf01a2234f1a633cc26e8aa995 Allow mixing command files with label lists (#991)\n - 5dade79a52519533b5f36fba10b69df9adf43833 Add safebuildifier packge. (#990)\n\nBAZEL_BUILDTOOLS_VERSION_REV_ID: cab7f6bacee9bddfcc12d4a315e974cb3029de9e\nChange-Id: I81a76f3ed4e745e28b80fbac0faec8e64178faea\n", "proba": 3.754091449081898e-05} {"commit": "f5ec089c4886b37f7bdca690290b0f4a79f496e3", "message": "switched error to warning. added cmap checking\n", "proba": 2.8870076675957534e-06} {"commit": "d316321f6dd419cdfe2e5577705c1cf7a9a0612a", "message": "Close file after reading in utils/database.py\n", "proba": 3.3008544164658815e-07} {"commit": "473af8cf4e691cddb97c760af2fd934c67a29f3b", "message": "Back out last commit, which worked on my machine and not on the build machines. Infuriating!\n\nMerging revisions 113619-113618 of svn+ssh://svn.lindenlab.com/svn/linden/trunk into E:\\trunk, respecting ancestry\n", "proba": 2.8209808533574687e-07} {"commit": "604adf9cd66584e6943c708d122b9c22c5f34565", "message": "Enable 0 + Histogram1D (important for sum())\n", "proba": 3.49947254107974e-06} {"commit": "0ed964f7e15139c0cd91efaa71a609b75041ac25", "message": "Fix fetching items when a folder contains < 20 items\n", "proba": 3.4981112548848614e-06} {"commit": "029e7db3736c311217d028a10901fe066eee450a", "message": "Refactored CommentForm.get_comment_object into a handful of separete methods to make it easier for subclasses to provide custom models and data. Refs #8630.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@9889 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.669690277594782e-06} {"commit": "e4ac261bf36751d173b3d57e8a0c03da2ff713df", "message": "Update views.py", "proba": 4.614934141500271e-07} {"commit": "954a477119e4ecfbb5c8310866ce3bfd9d84d509", "message": "fixes\n", "proba": 4.844783347834891e-07} {"commit": "80fb9396c3cce6b7482743b6031c58e409e016a2", "message": "Fix for the occupants [skip CI]\n\n\nFormer-commit-id: d7e7b3d33ee3a300f2ba4de4180ae2c03893c5f8", "proba": 3.3928149605344515e-06} {"commit": "42cfb587744d70c8b82c303ab6c379121b0ff13a", "message": "Add test for multi-level evidence flatten\n", "proba": 1.8253073221785598e-06} {"commit": "0c431b0947b97638d1dd97093e06f7a824026e46", "message": "add tag to zip filename\n", "proba": 8.915448006519e-07} {"commit": "1681b85029c700c2b2495c83c14a317c5192533d", "message": "improving code style\n", "proba": 1.954842900886433e-06} {"commit": "93dde79792c1300feca98ec2cc89f4b0b3f6bc13", "message": "Fixing up a util for honeypot log copy and archive\n", "proba": 1.261026483234673e-07} {"commit": "d8f6331318f29cd2e6dd5165fa028fe9d6944a85", "message": "home-assistant/home-assistant#18645: Remove un-used constants.\n", "proba": 1.9991620092696394e-07} {"commit": "7650e34cff9c74f4a7fca0496a6e058dd063c221", "message": "Add regression test for stmt type filter bug\n", "proba": 2.3499610790622683e-07} {"commit": "72695fdd79eebda7a7a3bc90dcf7d6a04ae5d589", "message": "Renamed methods to be more consistent with their functions\n", "proba": 5.501908049154736e-07} {"commit": "76c8df9d6acf3e6ab6f4b2feee71f2493b955f34", "message": "Nouvelle correction sur les contextes d\u00e9connect\u00e9s\n", "proba": 3.675520474644145e-07} {"commit": "76efc8a64dd298b5575c4c1fe873e29e306fafda", "message": "l10n_it_fatturapa_export_zip 14.0.1.0.1\n", "proba": 1.490850195295934e-06} {"commit": "615132f3d39323e1370793cee8ef9ba2c3acf1bb", "message": "Fixed SIGNIFICANT BUG in io_utils that would always give you the wrong vocabulary dictionary if it found an existing one. PULL THIS COMMIT!\n", "proba": 1.0909591452445966e-07} {"commit": "e938dcfbda7fe2c460570b2f9df869985940c867", "message": "Switch universal media_player to use async_track_state_change_event (#37832)\n\nasync_track_state_change_event is faster than async_track_state_change\r\nand since we do not care about the data being returned to the callback\r\nthis is a simple speedup", "proba": 6.643786605309288e-07} {"commit": "d3558fd9313cd37f3369da7469fe165fd5274e82", "message": "update the 26th\n", "proba": 3.103853885022545e-07} {"commit": "ba3940ee95f9d54c5a61eb37371cf0ca1e3a3cf9", "message": "Add nth selector to parsr.query.\n\nSigned-off-by: Christopher Sams \n", "proba": 1.2886184208582563e-07} {"commit": "a41ce35ca3c2b9444d3b1930545681cdc65ecae8", "message": "add comment before the updated setting\n", "proba": 2.0395603428369213e-07} {"commit": "3dcbe8680055c90262b01ee3fe7e315e5475577a", "message": "l10n_ro_stock_account_notice 14.0.1.2.0\n", "proba": 1.2927977195431595e-06} {"commit": "c9e7d2dd52484c74e98da273ae97ab503644eccb", "message": "FIX - now link correctly attendance_day with public_holidays\n", "proba": 1.3261779940876295e-07} {"commit": "1f51f01fd67d251a9447e4ecb3703a04ab283f1d", "message": "Output images use the same image format as input's\n", "proba": 0.027177363634109497} {"commit": "cc9051076ccac12101f3cfad51dbad8d3487a1e4", "message": "It's not instack-install-undercloud anymore\n\nJust fixing the success message printed at the end of an\nundercloud install.\n\nChange-Id: I2f0e0530dc5c535ee90ac996617bc467f14e2ede\n", "proba": 2.0568818399624433e-06} {"commit": "18e4533b4772ac7ffd35e4a2ca68603bdc116803", "message": "png2rgba: Support palette-based PNG files (#128)\n\n", "proba": 1.0620792068039009e-07} {"commit": "17b5013b7a902cab089c408af67415f4a5f46ede", "message": "Added option to specify k in classify_fingerprint.py\n", "proba": 4.228924694871239e-07} {"commit": "7cb54756819ac4a9ed8493c4ae7253b441107c75", "message": "fix util\n", "proba": 8.196916496672202e-06} {"commit": "8b7c7afa450baf5fae1fb3956049ca63fb58add3", "message": "Bugfix in LatexBuilder.generate_list\n", "proba": 2.773151095425419e-07} {"commit": "2516bf2d7b19e920601832ed6c0a14a69bca2299", "message": "utils/png2rgba.py: Fix for Fedora's python PIL\n", "proba": 2.0194240278215148e-05} {"commit": "bbe66541390f9daaf2d993b328584e148bdf8ba3", "message": "Added timeout to waiting for tshark process to close\n", "proba": 1.860419445165462e-07} {"commit": "a270140918ccf28f3113fd72967ffd2ab3192d35", "message": "revert\n", "proba": 2.2110909867478767e-06} {"commit": "4ba1eea7ac92e7bdd0ae36967674d58fa6cafc16", "message": "Added Cartogram as a nested relationship.\n\ngit-svn-id: d73fdb991549f9d1a0affa567d55bb0fdbd453f3@7980 f04a3889-0f81-4131-97fb-bc517d1f583d\n", "proba": 2.316401378266164e-06} {"commit": "fc38cf4765a0d3aeced35c7e4a963f652e45f599", "message": "Redirect home after logout\n", "proba": 6.190942940520472e-07} {"commit": "c3efe57ea979ea2190fc3c6843f78b58fd13ddf3", "message": "Minimaal 5 namen\n", "proba": 2.1065034161438234e-07} {"commit": "4a758853fb278c1230d52f27f2bf58a0ec27b4eb", "message": "More DRY approach to icon font downloader tests\n", "proba": 1.1625765239386965e-07} {"commit": "45052f0407139a3914a57d26f55feed31094bbb5", "message": "interim\n", "proba": 5.729242730012629e-06} {"commit": "6c8667b841810d8f8183d74a8948dc381ca628ce", "message": "Betere email met inlogURL\n", "proba": 1.4027683903350407e-07} {"commit": "60eee57bc681569ff94d7c93ffeee55bb2004ef0", "message": "creating qc page for run\n", "proba": 2.1697738361581287e-07} {"commit": "9b22928f2b1cf02ec5f4144b126838d4ca62325e", "message": "BuildSet now has a representation\n\nI had Zuul Scheduler report warning messages such as:\n\nzuul.Scheduler: Build set is\nnot current\n\nWhich is not very meaningful. This adds a __repr__ to BuildSet which\nshows up:\n- the QueueItem representation\n- number of builds in the set\n- merge state\n\nThe merge states are internally stored using integer constants. I have\nduplicated the information in a dict to lookup the int as a meaningful\nstring. That is not pretty :(\n\nChange-Id: I0e087e4cb3f4c1da4ef40d0805793f737af1765e\n", "proba": 0.9999799728393555} {"commit": "0d2823340f947a1ff24a7f54d060a2798274ccf7", "message": "Added NotSupportedErrors for datastore BadArgumentError errors in ordering\n", "proba": 1.198730501528189e-07} {"commit": "67de46730f5ae2386ef250741935995095cbc93b", "message": "Enhance compatibility\n\nWith Anaconda3-4.4.0-Windows-x86_64 in Win 8 & 10, encoding name \"utf8\" will lead to error. We change the encoding name to \"utf-8\", it's OK. Very strange, we do not know why.", "proba": 1.1957698120568239e-07} {"commit": "123a11cfea83f931f72495f00a79c35a956e8e6a", "message": "Fixed #9268 -- Ensured that the next argument is passed on when previewing comments. Thanks to leanmeandonothingmachine for the patch.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@11019 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 7.212270816125965e-07} {"commit": "8645c8e24c36197ab53216dc5b22248979cec1eb", "message": "Fix error on registrants page\n", "proba": 6.113963308962411e-07} {"commit": "53a6bc4a0871ff8b93dfa3308a4cceef8a345466", "message": "Propagate linkopts in stratum_cc_binary\n", "proba": 8.171380159183173e-07} {"commit": "01952030a030c1ff0e10c8e0dbc957fbe51ebe24", "message": "Remove automatic stopping after GotoStart\n", "proba": 3.010809450643137e-07} {"commit": "aeb7639951944c3a4cceb1d9598fa19dc8aaa5ea", "message": "Fixed `GeoQuery.get_columns()` to be compatible with the changes in r8426.\n\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@8431 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.643755581426376e-06} {"commit": "1a48f85e04f9192ccf9ba675ff8ddd5719752950", "message": "Add screen -list check, fix initial pid check\n", "proba": 4.512209841323056e-07} {"commit": "284f3622f70559c9127a95863725a9fb46bdb7e3", "message": "Updated `GeoWhere` to be compatible with changes in r9700.\n\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@9702 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 1.674597001510847e-06} {"commit": "65c5e238bca16c272e8d3de8677106fdadb53419", "message": "Removed need for trailing slash", "proba": 1.0931208635156509e-05} {"commit": "ec8a2e3b0787a3027cd0a0954a8637fc9bd6a5f3", "message": "Prevented syncdb from calling system checks multiple times. Refs #23650.\n", "proba": 1.030905565357898e-07} {"commit": "36dc105dc9e9ac859b64fd4fabc6224462e4e539", "message": "undid quotes in log messages\n", "proba": 3.7780219486194255e-07} {"commit": "f20bdf7b30fd32736914c8701fd0cf1cdd7e25af", "message": "Fixed param names etc.\n", "proba": 1.2649530845010304e-07} {"commit": "5a97cc1cfbcaffffcdbafcd50e8bf64bcd700e9d", "message": "nameservers fix\n", "proba": 8.223257168538112e-07} {"commit": "8500673349f4e35df96964ab6b04e15585145e76", "message": "include metadata entities for SparseRunVariables\n", "proba": 3.0563626296498114e-07} {"commit": "516313021846ecd6023209b48b96af66f7238a4b", "message": "Test api user endpoint with POST is not public\n", "proba": 7.0734940891270526e-06} {"commit": "c3903ab203a197bb6106fb88a3a11546f661ff68", "message": "fix: [MISP_The_Hive_feeder] handle not saved pastes\n", "proba": 1.6641486126900418e-06} {"commit": "195494efc0d4ff4b9c5f1533340a9a50022f05dd", "message": "cros_image_to_target: Fix --port option\n\nPreviously this script never honored the user --port option.\n\nBUG=None\nTEST=Manual: Run with or without --port option\n\nChange-Id: I971ee69818a37e6706ce70327b1d243fd78d214d\nReviewed-on: https://gerrit.chromium.org/gerrit/16429\nReviewed-by: Ryan Cairns <01b618abe573c4fe9e8bd701c0194deadb0e7835@chromium.org>\nCommit-Ready: Paul Stewart <3c7b6905653b79322a22957b2a611e2638095229@chromium.org>\nTested-by: Paul Stewart <3c7b6905653b79322a22957b2a611e2638095229@chromium.org>\n", "proba": 5.872192559763789e-06} {"commit": "deac3c885d9934bfa68a35526bac04787c6e1854", "message": "Allow remote filename to appear in destination site, site_remotepath\n", "proba": 6.380596460076049e-07} {"commit": "61ad2c3e7265a782ddf44e000ceb8bcd4f364560", "message": "Fix a syntax error\n", "proba": 0.9999188184738159} {"commit": "bd76221ed82af9007283f206c227a4eb472f12a4", "message": "fixing broken while loop\n", "proba": 1.114954784497968e-06} {"commit": "ef71076e60da6309dea77bb4426652dc0a86949a", "message": "Stop for today, tomorrow need to complete 125\n", "proba": 0.00015958822041284293} {"commit": "0da53043a5ea14f1a4be4317d8b39b6378d23bb1", "message": "Fixed shift_display\n", "proba": 7.847494885027118e-07} {"commit": "1e465233d48339fcb39ac1baca0e3cab9e879884", "message": "Reset content cache on clean()\n", "proba": 1.747185933709261e-07} {"commit": "b384f612c9dae245196238572af0b124f6798eb2", "message": "Commit test\n", "proba": 2.0256707102817018e-06} {"commit": "fd52d1d62fea4d80ea4612b6980541900bbff517", "message": "\u90ae\u7bb1\u548c\u5bc6\u7801\u91c7\u7528\u8f93\u5165\u65b9\u5f0f\uff0c\u5bc6\u7801\u91c7\u7528\u4e0d\u56de\u663e\u5c4f\u853d\u7b26\u7684Unix\u98ce\u683c\n", "proba": 1.4026025496605143e-07} {"commit": "404a145dc50d0ebcd305a326ba6d16603ebbae57", "message": "Refactored RigidBody.py so that mass is now a function of state, rather than a state variable itself. This particular change is so that we can have different constituent mass components (separate fuel tanks, for example).\n", "proba": 1.0970123298648105e-07} {"commit": "f45765e356078142e05248b0a8ccea187b18aa13", "message": "add a new scribbler GenParticle\n", "proba": 6.56128861464822e-07} {"commit": "1cda4432bfa2e65b96edbccc1c2fab8e1a1b5dcf", "message": "Add inplace option to util.merge_dicts.\n", "proba": 1.3205264792759408e-07} {"commit": "e1ea4cb9b8b32ebc49a80abc9ec5fe17b096f81a", "message": "Added function docstrings\n", "proba": 2.1233084623872855e-07} {"commit": "70ffbd1fb5acdb494f80458642dc3982e0d15a07", "message": "Fudged catalogue to match Ref.\n", "proba": 1.0781626968991986e-07} {"commit": "d104a995204724060415dd341dd2ab08542c47ed", "message": "first test of sort\n", "proba": 3.255360525145079e-06} {"commit": "d1214484e60676d80c4b08dff8325fb257650bff", "message": "ovirt_vms: Fix boot devices idempotence (#36833)\n\n", "proba": 1.2655371506298252e-07} {"commit": "b84df0aa2fe7863e1966076a688037368d6a94be", "message": "Fixed base_url in template\n", "proba": 5.260894226921664e-07} {"commit": "ebb39a0151f9bc87877f3bb797ca7a00a9224f3a", "message": "Fixing nxos_smu (#5021)\n", "proba": 1.2102680102543673e-07} {"commit": "e28f936173df1350b200881f8626ab964be65402", "message": "option to set number of subreads\n", "proba": 3.863873189402511e-06} {"commit": "1da69309e5964f8e9f409076772c6f5c85e841bc", "message": "ssh connection plugin: Report missing sudo password\n\nIf no password is provided, sudo hangs at the prompt. Identify this and\nreport that the password is missing as an error.\n", "proba": 1.404018519224337e-07} {"commit": "e15727c833e34edd2e711983afd145e7ad85f378", "message": "adding edit translations... things may break\n", "proba": 1.832299574289209e-07} {"commit": "9ccf8942963ba39210bca5229169d4e8cce275f0", "message": "fix test size and add printing value counts for y\n", "proba": 1.3950786126315506e-07} {"commit": "1b82e4ddbdca03a2bb4b9cd1db096c63c0a2d3fd", "message": "Added DataSet Functions (#333)\n\n* Update learning.py\r\n\r\n* Added remove_examples function\r\n", "proba": 1.253719119631569e-07} {"commit": "16c9aaef2b995609e97d4ebd5d5bc43e0ec8cef9", "message": "[FIX] Python typo fix\n", "proba": 0.0001574215420987457} {"commit": "6fe311a4207fb015b10e1c3e883c984c8c1c8521", "message": "web_services: remove commented code\n\nIt is implemented in another part of that code.\n", "proba": 1.3304546087056224e-07} {"commit": "6f580b52c2e26fb0c16318c00d0d841e5b6f8a8b", "message": "Delete binary_tree_search_video.py\n\nreplaced by binarySearchTreeAnimationApp.py", "proba": 2.882889748434536e-05} {"commit": "4d2a0fff834b5050c7f589a6995103c501ce3f13", "message": "Add checker for Ruby\n", "proba": 6.600797064493236e-07} {"commit": "1204510ba85175ebef94bbcb912a6d61076ddc31", "message": "add move Ref_Dir.uvoptx to target folder\n", "proba": 3.9750003111294063e-07} {"commit": "4390a79cbf71f24e8a9c30b853e9cc1920314af2", "message": "update console config", "proba": 8.96199139788223e-07} {"commit": "086ad7ea68304f4b10f6f3288a3569ae03b72765", "message": "update vm power status\n", "proba": 2.82312839772203e-07} {"commit": "873419131fa2a2f7c6e5ab97c2edf2e6afa39345", "message": "view.py: use dict's get method instead of an if statement\n", "proba": 7.706735232204664e-07} {"commit": "1775beb00da8ebaf2bfb12cb7f6f8676b8f207fb", "message": "Fixes on parsing\n", "proba": 3.297600983387383e-07} {"commit": "6690c49470435184111ee461a2162d2f385085fa", "message": "Maintenance + admin\n", "proba": 3.3791189935072907e-07} {"commit": "07b0f0338daeb9acad5f10daf27b93ffa52a4bf6", "message": "StreamVision.py: switch stereo on/off via X10 even if not using F9 to play/pause\n", "proba": 1.6680256464951526e-07} {"commit": "11a15e829d70ae4756966b0622b1512a6b2dd6e9", "message": "Keyword documentation for Pass Execution.\n\nUpdate issue 174\nStatus: review\n\nKeyword documentation done. Issue ready for review.\n", "proba": 9.72774429897072e-08} {"commit": "7f68edeb5d2a8848ddacf5965d9304fcd58ad3f1", "message": "Fixed to continue on failures in teardown. Related to change in issue 615.\n", "proba": 9.773569331628096e-08} {"commit": "522f826fdb4eb97338a727691fb13b8ee4d8f339", "message": "cleanup\n", "proba": 3.1109298106457572e-06} {"commit": "4e4ba2f1975c0aec7467e624b786e024a59b9cc0", "message": "Added some tests to use for debugging the problem.\n", "proba": 1.087952270495407e-07} {"commit": "2e3b221cd79cd767bb8fdacbf96578cbc616429a", "message": "whitespace\n", "proba": 0.9998207688331604} {"commit": "fa947e26a17163158fabe201cef61f17064f981b", "message": "Handle line continuation differently\n\n--HG--\nextra : convert_revision : svn%3A79c32731-664e-0410-8185-e51b9e89f9fb/trunk%403306\n", "proba": 8.123423640427063e-07} {"commit": "f97d048adcaf2fbfadc94de41df595cbf6ab14db", "message": "Try comparing on URI strings to avoid multiple annotation access\n", "proba": 3.024032082521444e-07} {"commit": "d5a6004bf5428f5bfea2aa29abd402a573bd2575", "message": "add 'MacroCall' type\n\n", "proba": 6.653152922808658e-06} {"commit": "9b9eee7fc0310fed65656982f0c16f76799d3ee4", "message": "When removing and merging duplicate person, create a redirect\n", "proba": 3.2166474284167634e-07} {"commit": "aa9cc79a4f804cdc7dd328abe8dee8673a835d23", "message": "Fixed the upgrade script\n\n\nFormer-commit-id: 87ecfec70e924de686b1e22ca7950dbbf78b8150 [formerly 87ecfec70e924de686b1e22ca7950dbbf78b8150 [formerly 6663780f296ff49a109fba29c996702def1b35cd]]\nFormer-commit-id: 90f217028f8e7fade1df20d57a1f119df1555f98\nFormer-commit-id: 88d11a67bd53ad95cd28fdb6ef1d3c771305fe75", "proba": 2.706243549255305e-06} {"commit": "3c6359580097acc8d32926d0540168bd9b205c37", "message": "added credentials function to gather uname & pwd\n", "proba": 1.9968258868630073e-07} {"commit": "0c7cefe60b6678ce0007f624f4ab88e22ce87f71", "message": "increase code coverage of SnapshotRetriever\n", "proba": 1.5073611336902104e-07} {"commit": "6e6fe5a434a18565997941262d2e5e8d40de2057", "message": "Add a log statement\n\ngit-svn-id: 4c4cc70b1ef44ba2b7963015e681894188cea27e@262715 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 2.8503884095698595e-05} {"commit": "b679e03f9f5a79ad08f55adce6aa90fa494c2c55", "message": "added alpha and beta params for beta-binomial\n", "proba": 6.297101435848163e-07} {"commit": "4b7c67eeeb5ab4fb838e999c207f3d50bcf6c72f", "message": "Fixed subscriber and publisher to the official names\n", "proba": 1.5339310266426764e-07} {"commit": "993145a0bf9ff153d2968270f2500d4109bbb80b", "message": "[FIX] Removendo debug\n", "proba": 2.0097847652778e-07} {"commit": "adf81c5e727f8e874371d70a1ae55c211611e66e", "message": "fix test (#485)\n\n", "proba": 1.4934100533992023e-07} {"commit": "84cec1938dbb59590df46690bb2f0155850fd8b6", "message": "wireless: T1627: configure own_ip_addr to be compliant with the RADIUS protocol\n", "proba": 1.579438730914262e-07} {"commit": "8212dbe02511788daa148cc5bae5fc7d2a2c9d93", "message": "OpalCommand now has header, add to cmds sent\n\n- Update version number to 1.2.0\n", "proba": 1.2669246984842175e-07} {"commit": "6d5887cd1fe2a169e0fd7591b2b6c928bb0d6dc6", "message": "Codeblock and list formatting changes to markdown\n", "proba": 1.6409568104336358e-07} {"commit": "3cec600cce94a8e140f6d2f2a47f35eba0687905", "message": "Completed some of the path validation.\n", "proba": 1.222364005570853e-07} {"commit": "be5f48ac4e2bc3a821057ab2c9f2439fe6dd2052", "message": "removed occupancy grid generation from map.py\n", "proba": 2.3455278608253138e-07} {"commit": "6608330d76d50746aeba63a032d85a5389164a54", "message": "BaseTools: Fix bad macro expansion during tools_def.txt parsing\n\nthis is something I missed in 8ac46e4\n\nContributed-under: TianoCore Contribution Agreement 1.0\nSigned-off-by: Michael Zimmermann <13027ca0fefa2b406bb0e61c3b36bc21411fbb83@gmail.com>\nReviewed-by: Liming Gao <6480311aeeb4b006862f6d13ebabddc03f51e507@intel.com>\n", "proba": 1.573524173181795e-07} {"commit": "6723fd98c5afcf3b8b465581556c7840eb59588f", "message": "Linting\n", "proba": 1.97951612790348e-06} {"commit": "c44939559584c81d6b6361c143e4ffbe68979b12", "message": "fix: cleanup parent slider from RPY widgets\n", "proba": 3.590866697322781e-07} {"commit": "63b9446fd5a136447b44560b055a7ab853ee81b2", "message": "I noticed that memory usage spikes considerably when running one of the tests. I tracked it down to the nonstandard checksum test, and in particular the \\ method. As implemented, it effectively multiplied memory usage of the HDU data times 5. Here's a version that doesn't require copying, and is faster to boot.\n\ngit-svn-id: 5305e2c1a78737cf7dd5f8f44e9bbbd00348fde7@818 ed100bfc-0583-0410-97f2-c26b58777a21\n", "proba": 1.6962227164185606e-05} {"commit": "d55b8a1662b8a6d155ac147c127191736d92e65a", "message": "Print some other method types\n", "proba": 0.00014842493692412972} {"commit": "30c11048b88ec842f697584c393ea551afb2fb6c", "message": "fix bug when initializing tracked column\n", "proba": 4.128319517349155e-07} {"commit": "26536cc7c97cac42cc49d805e978a086dcd1fc82", "message": "Re VIV-496: Skip test broken by zeit.cms commit:93dc9b4a9b90\n", "proba": 1.1298681812377254e-07} {"commit": "8debcae6cd013b7f5ad9b93ca973e8adfcc9a16f", "message": "Delete sensor from process container before terminating to avoid respawning.\n", "proba": 1.1028004820445858e-07} {"commit": "2fa10b2fa95072363e3903bde2671bed883e4ba9", "message": "Review feedback\n", "proba": 1.8462372963767848e-07} {"commit": "1de5248a0a68a8318c90744d2cef655215d48439", "message": "Clarify possible variable value in the docs.\n", "proba": 9.016824265017931e-07} {"commit": "d63cdcacc3dc3997e08f715381c6ef05203e958b", "message": "Make nic_name as optional parameter (#25990)\n\nFix adds support for adding VMWare vSwitch without\r\nany physical NICs (uplinks). This makes nic_name as\r\nan optional parameter. Also, updated documentation and\r\nexamples to reflect these changes.\r\n\r\nFixes #25632\r\n\r\nSigned-off-by: Abhijeet Kasurde <6334fd0c217b1f2a15926284df229acde5b4fc3a@redhat.com>", "proba": 1.258448349972241e-07} {"commit": "9b496818cfdbb676de18887456834566f10ffa91", "message": "Simplify distribution test\n\nIf it's Ubuntu, use UbuntuSourcesList; if it's any other apt-friendly\ndistribution, use SourcesList; otherwise, fail.\n", "proba": 4.86523958898033e-07} {"commit": "5eeb7e1386a22669fd0f26b2b53cdc033b3dbe52", "message": "require 3 or more genomes to draw tree in vfp_phylo()\n", "proba": 1.2791977610504546e-07} {"commit": "f2a6fc9e45ad06e8d54448c8eed5c1af206d171a", "message": "ganeti.http: Implement SSL certificates\n\nReviewed-by: killerfoxi\n\n", "proba": 1.2042396235756314e-07} {"commit": "e388dfc3fbda642bc7b98a62a802b6d208d2e52d", "message": "Adding strip to get clearer graphs\n", "proba": 1.826388853487515e-07} {"commit": "edb9346985ae2c73cbfe0304ae95ed455f1b807d", "message": "debugging\n", "proba": 2.4004323222470703e-06} {"commit": "cfbf68440e18b60bb832d5f5086dd497488446c8", "message": "Moved where Pack class was\n", "proba": 1.7289612230797502e-07} {"commit": "bfd144423ce5046fada46e09f84054de656b13de", "message": "debugging\n", "proba": 2.4004323222470703e-06} {"commit": "df596d1f9e73135108f547dc18ad9e73b9109086", "message": "Make failure to parse cisco-guid or h323-conf-id non fatal. We shall\nprobably start phasing out this feature, so that we only include those\nheaders if valid header is present in the incoming message.\n", "proba": 1.0818623508157543e-07} {"commit": "a2c60cc225718731569ca2a9d1fc511e49a0aa02", "message": "add iPad pro icon setting\n", "proba": 2.861090422356938e-07} {"commit": "628724028dc3057e59297da98bb9f1d659b0426f", "message": "Hide ug-* admin positions from directory page\n", "proba": 1.268262934672748e-07} {"commit": "c2c88e1454eb3297254c0de0f6814ddec0b0d7cb", "message": "formatting\n", "proba": 1.1576831639104057e-05} {"commit": "a7a1a14c561a7497f6bd879f9f685f03eca8d3d2", "message": "Allow for upload/dry-run without post-processing\n\nThere is no reason that dry-run and upload should work if and only\nif post-processing is enabled.\n", "proba": 3.5309267332195304e-07} {"commit": "6b53899078a6dafdd2dcade03ee61dba99fbeeff", "message": "Updated from Brython Server: 4/22/2016 2:13:44 PM", "proba": 1.1103904284937016e-07} {"commit": "8b93e36035cc6e715fb0ee8c293828459212ebc8", "message": "Review comments\n", "proba": 2.473494760124595e-07} {"commit": "445174a1603ea0ad62a04142b9dc7deb9f62dcbe", "message": "updating query view to assume query functions on models\n", "proba": 4.188730144960573e-07} {"commit": "5482e3a27d960b0dd54183f313a4803ff2d99488", "message": "Playing with timing\n", "proba": 2.8951197350579605e-07} {"commit": "9c9cc701cbfaf629c307b0de8be0bf8389317746", "message": "Improve error messages\n", "proba": 1.4079369066166691e-05} {"commit": "21f532677726647d1e78d6d671b2bcf51e16c607", "message": "Fix crash in the case when no reverse link found\n", "proba": 2.785327069432242e-06} {"commit": "552cc8f09e7040020876a687a7be71b2d6581317", "message": "Fix docstring\n", "proba": 2.9501701646950096e-05} {"commit": "6ad08709833b01488e574ba472d07ccd81c69b72", "message": "Put grabbing ws object in try block\n", "proba": 1.5406411648655194e-06} {"commit": "45b78b2fe10fe2640279dccc868e568c45bbf77e", "message": "Redefine retrieving name of subcommand\n", "proba": 0.00032622049911879003} {"commit": "9c082e057390e89c164c7bf37fc418b8777f0c98", "message": "[BEAM-12491] Fix reporting of throttling metric #15014\n\n", "proba": 1.2890339462501288e-07} {"commit": "0e7d50d20f6f94bc2bd0e47c893300a853207304", "message": "load: Remove debug statement\n", "proba": 3.974655271576921e-07} {"commit": "1882f3883ccc6e5c05ab358015f209486b2e5712", "message": "Updated limited satisfaction decision maker; makes more sense\n", "proba": 6.157586085464573e-07} {"commit": "c8171cb9016e14ce764d92d01c947e4653a46d36", "message": "file comments\n", "proba": 2.3564376760987216e-07} {"commit": "27b20aa4c1ded601352a6b904d849ed734e1c97a", "message": "Give the 20k job test in the python unit tests 10 seconds\n\n", "proba": 0.0004757493152283132} {"commit": "73dafc08048e2684e6b44dadef9310b1fc3bd5b6", "message": "Removed usage of global map\n\n", "proba": 3.0542997819793527e-07} {"commit": "39dba4e9a6e6beaad68402306fd4dfd0227b8f2e", "message": "removed internal filter dependency in _logL\n", "proba": 2.728512527028215e-07} {"commit": "116515efe3428c01837574b68622f0c6b2a30aee", "message": "fixed array slicing in regression functions\n", "proba": 2.45183628067025e-07} {"commit": "570ee912bdeed62076bed648fac2063220a471da", "message": "Atomic/help.py: cmd_env no longer a property\n\nWhen the cmd_env defition had its property decorator removed,\na single call to cmd_env in help.py was missed.\n", "proba": 1.3782876351342566e-07} {"commit": "217a01ce1f22d63eb89ce68572c1ae2135d9d187", "message": "Added implementation of contest.status method\n", "proba": 2.7103635602543363e-07} {"commit": "c2a77832d02b52fef65bd2f6fa14c893b906d184", "message": "Added test for job.set_status\n\n\nFormer-commit-id: f4781e8fd4e21f1a913054aac352900728f9cc26 [formerly d3d301df00984421563fca0806d448d095eb134c]\nFormer-commit-id: 9389c623a403d591c91c241a30a3815fd4b71d9f", "proba": 1.0469876770002884e-06} {"commit": "8ec7d95555572e206b1c53d1ac282a7c24d24cdf", "message": "seed remote dir status to dataflow", "proba": 2.955494267098402e-07} {"commit": "e0cceb3b65a79d9719690fcb2daa4a3c92e4eb4f", "message": "added detail ability to query\n", "proba": 1.2825692863316362e-07} {"commit": "650b9d4ff827cefe644d5cd2004d5af21342ac87", "message": "Add method to deal with switch master\n", "proba": 2.1646604864145047e-07} {"commit": "4ecb20e7b13f3c51daa90caa375b253816f4868a", "message": "add round_times and decimals parameters to notmat_to_annot_dict function\n", "proba": 7.598058436997235e-05} {"commit": "0556c963daec9864fc88d745e1810695cbf08c60", "message": "added scripts section; removed @property\n", "proba": 2.0992297322663944e-07} {"commit": "f70f7ae06efc340d517cada0e64beb289d7661d3", "message": "manifest - moves logs and manifest to subdirectories on desktop - fixes #118 - thx @raecasey\n", "proba": 1.2193426357498538e-07} {"commit": "bcfe1a616aacd335603581d6e7c6a38712f2da9b", "message": "Fix syntax error caught by Travis build\n", "proba": 1.3186530622988357e-06} {"commit": "6b11b8fb67a39db0b43ac88518564ea1d2c71a07", "message": "delete cookie in unauth mode\n", "proba": 5.175737101126288e-07} {"commit": "512c8cd7a0199708ff638a7c1968dda233d33eb9", "message": "Update integration tests\n", "proba": 3.225995897082612e-07} {"commit": "f238268fb5497bf7b181f41785b60eb4b9e16121", "message": "revise one assertion\n", "proba": 0.9999994039535522} {"commit": "cba2564bb7a5862c2975b11837449480ca554ad3", "message": "Disable local port on CPqD switches so we don't have phantom links between LINC-OE and CPqD.\n\nONOS-3425\n\nChange-Id: Ife6aca095140c4e3d147aff6f82536c062463a8a\n", "proba": 2.1423589657842967e-07} {"commit": "377f6780a8802f0c33f4cebc028e02c43e398cc3", "message": "Adds conditional formatting for blank translations.\n\nPart of #384\n", "proba": 1.8733950923888187e-07} {"commit": "3bb9ce22302f90bbebddf38894f7ad6d7863558f", "message": "Remove debug message and re-handle None.\n", "proba": 3.913522732545971e-07} {"commit": "421ded6e43dfb656c864a5923eca34ac906ad386", "message": "Add task to MSA tasks.\n", "proba": 0.0001248811895493418} {"commit": "2f1444068dac5f849ed602b5b3289108f9ed50ef", "message": "Fix the provenance test to handle async provenance.\n", "proba": 5.691757110071194e-07} {"commit": "ce32fa645b4c6b6f0f6a7b99a82eb1e0897c8413", "message": "Add mod condition import\n", "proba": 2.5552120064276096e-07} {"commit": "ee3f9b21c6c45cbdd1ad6d49e5bf84d1888fc5f9", "message": "WIP: Create a dictionary of brands based on listings.txt\n", "proba": 1.5835306044209574e-07} {"commit": "5fc544dd2feb96ea66d7599508500a55b235a7b6", "message": "added attachment folder id to project model\n", "proba": 2.4350421767849184e-07} {"commit": "cc9e77aeccfda2832855743a53a2626194b1e8ba", "message": "Add tests\n", "proba": 5.818237696075812e-07} {"commit": "77afc4b2aa6c2cb7832e721f64588af34e308e43", "message": "Add columns for ROI position.\n", "proba": 1.935796092311648e-07} {"commit": "0edaa21611bcf4bd4ac2f3cda1a7dcd8a575ab5d", "message": "iem20\n\n", "proba": 1.7460312164985226e-06} {"commit": "d510556442b8cbebf862eacde93ae6d0f8672c4e", "message": "Use env variable\n", "proba": 5.974685336695984e-06} {"commit": "e6bc8e0fb60200ebcd1011bae9df60a96a7e5a0a", "message": "heuristic to find orphan relation in sdp vocab\n", "proba": 8.314471529047296e-07} {"commit": "70ed9a758e32ac6d8d02892319d22d691903bc49", "message": "Add protection for Stat objects with 0 visits\n\non the UCTValues option.\n", "proba": 1.0481670642548124e-07} {"commit": "220cbe8bfcb5703044d1c0d72529e353effeeb62", "message": "Minor fixes\n", "proba": 2.2240030261855281e-07} {"commit": "882d709586c70dcf0ac073d46edb050c0a17a82c", "message": "Updated \"clv_medicament_list.py\".\n", "proba": 1.1689313339502405e-07} {"commit": "f6e3aeb82e08349d6a84f3dd05a3737d7c45f2be", "message": "add an extra check in case the rank is static\n", "proba": 5.000313763048325e-07} {"commit": "fe6e1df7b90c38ade54c4d997e7ee31565bbffb4", "message": "MultiProcessRunner: Skip tsan test as it's incompatible with multiple threads started by MPR.\n\nPiperOrigin-RevId: 389969777\nChange-Id: I5473294b1993953bcf52f6176a98929637ab85ae\n", "proba": 3.0942072726247716e-07} {"commit": "b5895d30435382626f2e5d64ba3761c353874c26", "message": "Remove background_attribute\n\nPiperOrigin-RevId: 326503272\n", "proba": 9.600844350643456e-06} {"commit": "f1afb70fa1862d4a0f38dbc37ed04e12c140f9a8", "message": "Handle the case where range_image_pose_compressed is not available.\n\nPiperOrigin-RevId: 402660627\n", "proba": 0.0017366638639941812} {"commit": "2ef3bcc92dd599125cc5fe34566953717e9ac841", "message": "Commit just to get Jenkins to rerun.", "proba": 1.0446782283679568e-07} {"commit": "6fcb8f5202483aa9a71dd7cea211f0742ec56b9b", "message": "Fixed test and did a clean clutter", "proba": 1.9571022846776032e-07} {"commit": "44c7b7af286dcfd07004c08ff698ec04791d7219", "message": "Update e2e\n\nSigned-off-by: Andrey Shovkoplyas \n", "proba": 1.129459832327484e-07} {"commit": "283ef93b27ed2879439f9cd6649313248f5eddb9", "message": "Set minimum Python version to 3.6 in code (#86)\n\n", "proba": 2.086984522975399e-06} {"commit": "296c2906deec797903e648dbeeda8bc5e8345412", "message": "Add auto_weight option to keep layer weights in balance.\n\n\nFormer-commit-id: 1519a72dbcb3bd08d7a0c16b3d785f06e6ace6c9", "proba": 5.950676950305933e-06} {"commit": "a35e97445775bdbe4461ebd4c13c97178c35f5c7", "message": "Fix typo introduced in commit b841176\n", "proba": 9.297867109125946e-06} {"commit": "60e895eb8f30366f6d9b3d04dc7e412d583896d2", "message": "adding grammar parser\n", "proba": 0.0005488981259986758} {"commit": "0a175fe0f505d66d75b6e9b775af7893a131486b", "message": "Use relative path to detect config header and remove -std options\n", "proba": 2.52858541216483e-07} {"commit": "fd767d61a23ff8bd6452f64c604affec16e90edc", "message": "regsub is gone, nothing to ignore\n", "proba": 1.5109995388229436e-07} {"commit": "558b2d0b9b943959377fc7d8d74ba08411527a8e", "message": "Add url to vagrantfile and experiment with some new fabfile structure:\n", "proba": 1.0641778658282419e-07} {"commit": "f65c19a77b1f761dcb830c19cc7b3e8fe7d715b9", "message": "Fixed path issue for the agent.conf file\n", "proba": 3.1382467113871826e-07} {"commit": "abffde7028fefb32fce9c87a206f409d1f1a8e60", "message": "Flush bot pipe.", "proba": 1.6322383089573123e-07} {"commit": "a73a2c2d683b37e6f1e772623f4ea0a8e483811d", "message": "search by full txid\n", "proba": 1.7131308993612038e-07} {"commit": "e298898eb72dab06a03885396b9974d73fb81602", "message": "Update controller.py\n\nadded instructions to install adafruit library", "proba": 1.902495654348968e-07} {"commit": "e793f2c095b916c44868baae44b721a958746f64", "message": "tested pickle\n", "proba": 4.2565661715343595e-06} {"commit": "9424197dc575d75e89681ef3604d4835fa65c813", "message": "Better account map\n", "proba": 1.1418730991863413e-06} {"commit": "d241b5a4cb8fd1248ec1f8de9bd98bb489cfbd9d", "message": "Finish MembershipParser, work on populating the ParsedMembership table\n", "proba": 1.3665174947163905e-07} {"commit": "0bb814ed3ad1f35322622a7e9e36712e75311284", "message": "Updated docstring for send_link_email\n", "proba": 3.2165277730200614e-07} {"commit": "851f7dad3a14c4cf47f56315516266625bf7ac42", "message": "Fix Deterministic failover tests\n\nSummary: Fix Deterministic failover tests.\n\nReviewed By: vrishal\n\nDifferential Revision: D19394767\n\nfbshipit-source-id: 0433101e08f45e57f6963e2cfb58eff5655633d6\n", "proba": 1.8047768435280886e-07} {"commit": "ef798adc25626a3dd20253758aa8353ff01f7187", "message": "Added new command to help message\n", "proba": 1.3352645567010768e-07} {"commit": "f1e6d9238a2438d447063c1e5a86a2f96e0a4ba9", "message": "Made the application variable module global.\n", "proba": 1.1652483067337016e-07} {"commit": "95e8893e1c6542af2dfb1eae23ca61d3ea75f827", "message": "Change filter to prevent warning in example\n", "proba": 1.8870586870889383e-07} {"commit": "a16cc77ad1ecdf086aac236d4f9e4d6b8f945500", "message": "Max out distcc jobs to 12 in develop.py\n", "proba": 1.9233307568811142e-07} {"commit": "7609dfd165c93af6a4d0e5baf82d1c48fcf0c77b", "message": "Match pseudoinvert better to typical test cases\n", "proba": 1.3332656635611784e-05} {"commit": "833f1588476b9a69f4ee53a5856e997afb66eee2", "message": "bed files 0-based tbd\n", "proba": 6.511060632874432e-07} {"commit": "c919591e7327f11a1c4fecb652c58d7518772971", "message": "Fix tests\n", "proba": 2.8394715627655387e-06} {"commit": "7582b51e68d74f7036524a6c70f4925d803b5488", "message": "use --drop-existing flag in seed\n", "proba": 3.7644988992724393e-07} {"commit": "abfb469f910b2e16b0d439c57f5878dd5ae46526", "message": "CLOUDSTACK-7442: Fixed template permission issue in test_project_resources.py\n\nSigned-off-by: SrikanteswaraRao Talluri <35d46b2ff1bf95340df8625bc8fcffc8da6fadb0@apache.org>\n", "proba": 1.2278810856969358e-07} {"commit": "5cff36e39ae691fbd7c40597df1732eecf294150", "message": "esx: Fix freeing of heterogeneous lists\n\nAlways call the free function of the base type. The base type\nfunction then dynamically dispatches the call to the free function\nfor the actual type.\n", "proba": 1.1363984242507286e-07} {"commit": "7019c2b3e3671b661a0809b19d7790a97b397a8f", "message": "Pull bodhi_js out into it's own widget, and have it require the expander\n", "proba": 1.4835076456165552e-07} {"commit": "445f86d4132420c828fee509258ad83837bb5070", "message": "Fixed redirects for reminder emails to work with module system.\n", "proba": 1.0529199556685853e-07} {"commit": "8c6741b2bb3ad9419a715e424811190356cf9bc2", "message": "fix typo in documentation\n\nlet's -> lets\n", "proba": 7.848557288525626e-07} {"commit": "ef0bc0aa525568304a3da50f0b3a6efae18302f6", "message": "Support check_mode for add_host\n\n`add_host` doesn't really actually change anything - there's no\nreason why it shouldn't work in `check_mode`.\n", "proba": 1.267475795430073e-07} {"commit": "e0ed88e668f806e9dee404ce5c31957bdbac5f4f", "message": "normalize error message on src != dir when local\n\nnow action plugin returns same error as module\n", "proba": 1.650075915904381e-07} {"commit": "f40778cae35cdde426336f2d78b45d485e36b521", "message": "Update documentation of filetree to mention limits of 'src' attribute (#54347)\n\n* Filetree plugin does not return the 'src' attribute when `item.state` is set to `directory`\r\n\r\nError is `'dict object' has no attribute 'src'`. See https://github.com/ansible/ansible/issues/51513#issuecomment-459150769 .\r\n\r\n* Update filetree.py", "proba": 4.942595523971249e-07} {"commit": "56dcf2cc040df8bc0f807327ee7f770a24c1aac8", "message": "with_sequence: pass AnsibleError through\n\nThe parsing methods try as hard as possible to generate meaningful error messages that are all ignored and immediately overwritten by a new AnsibleError instance. Better use the original one instead.", "proba": 4.7264967406590586e-07} {"commit": "c95d4ca05f5f50f8b38f90be89f0395ae735edec", "message": "Properly assign search path to environment.loader in template lookup\n\nSame fix as was applied in f162990c to the action plugin\n\nFixes #12355\n", "proba": 2.1577496056579548e-07} {"commit": "86728ad2ccfbea4a733b664aaafff0fcc22c4b0e", "message": "use scenario instead of git info in version field of the test results\n\nChange-Id: Ie80cc39e64d0fe70981623229560aa145df95c50\nSigned-off-by: Morgan Richomme <863ecccd07b4194c40ddc432b982c8c67e56599a@orange.com>\n", "proba": 1.3229087869603973e-07} {"commit": "f23a631bbee7f6a2c15be4afd7889fef30a6a40f", "message": "Added missing normals; fixes failed materials test: imports\ncorrectly but export fails assertion testing as no face normals bloats\nvertex count.", "proba": 1.0476673395487524e-07} {"commit": "1ffb5a31f908bbbb3b32549670f83781cd7d8690", "message": " added baseexception\n", "proba": 3.4600839171616826e-07} {"commit": "d0a2fbbe4fcdfd3c92b1811c1d1a489130580c8d", "message": "Oops, this should have been part of the r577 commit.\n\n--HG--\nextra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%40581\n", "proba": 5.720741000914131e-07} {"commit": "cde044290c34112c5020c0955224ea7a541d6ae9", "message": "not neede\n", "proba": 0.00017116450180765241} {"commit": "64b90c8f53f0a16e9311d05d5b42d60aa16e9967", "message": "fix #161 django<1.4 compatibility broken", "proba": 1.7310301814177365e-07} {"commit": "5132d80414548fe511f411e4e8fed45e709202ef", "message": "Cleaning up after test\n", "proba": 8.861358651301998e-07} {"commit": "ab3447c1a60b7c1753b83ccfbe9e47b104dd3f54", "message": "adds invalid-data to pattern-header problem template.\n", "proba": 1.1786207920749803e-07} {"commit": "8ac3336b4ea80f76758615d2f5261773e31fb5e5", "message": "fix in error handling in topology_rest.py\n", "proba": 6.46759758637927e-07} {"commit": "6b2c9e28153fa410e75bfa62c6b30585f5c14fad", "message": "Allow the use of `my_asn` and `common_internet_exchanges` in emails.\n", "proba": 2.943991432857729e-07} {"commit": "96de2da79b2537088f56e214620ba407d2d64bcd", "message": "Handle recursion case with lists of unexpected values\n\nSigned-off-by: James Campbell <1f5d57c840f6bc62c607eb3983b0ef428cfb4438@gmail.com>\n", "proba": 4.856955229115556e-07} {"commit": "5a5ddee30c6500326fe1120e4c20d42ff5f847ce", "message": "switched around\n", "proba": 1.2686357422353467e-06} {"commit": "3555c49441dadd828894b5ae5fb13e1c0c26affa", "message": "Cut some long lines\n", "proba": 1.0721920261858031e-05} {"commit": "f73d88c8bc61e7d5b0f2a36abad20311e2bfb375", "message": "tweeting badge code\n", "proba": 5.509573952622304e-07} {"commit": "04351eb28dcfeca171c9a6144c79e6487a4e3a10", "message": "gpio: improve wording of docstrings\n", "proba": 0.0020328464452177286} {"commit": "17509fe36139ee60d22c88f7d17969d95be2bfd6", "message": "Bugfix: define variable.\n", "proba": 1.8021248138211376e-07} {"commit": "3fa94b73c30e09ca0e57e245f453e73e7da2b8d3", "message": "Recreating the object now preserves the original unique id. It turned out that this was, in fact, easier to manage.\n", "proba": 1.191008038858854e-07} {"commit": "f6ed011e1568974460e60ac436d8248c550a380f", "message": "change: Update bare flavor show links response format\n", "proba": 1.5177685952494357e-07} {"commit": "9cd5d53dbac92714d831da78cda386ceb3ebb6fd", "message": "Fix delete group member bug\n", "proba": 7.320009558497986e-07} {"commit": "b2e703805cbe99b57cde6f096341241208150a9b", "message": "Update unchecked with id.\n", "proba": 1.242686806790516e-07} {"commit": "80b05f024defa8382f3928b7147ede42566852f1", "message": "debug: tests\n", "proba": 4.768701546709053e-05} {"commit": "1385ddc5884267aa4a398856faa5b14ce24cbae2", "message": "Fixed bug in test code\n", "proba": 4.0246609955829626e-07} {"commit": "e62a9cb3e50bda98e98f62c02c620a2d77dd6047", "message": "load sub module\n", "proba": 7.461991913260135e-07} {"commit": "01e096058128b952570b981c10855170de05d3a3", "message": "Add layer to litho_star\n", "proba": 1.566881451253721e-06} {"commit": "73dda8223c3b0cd268484053c6963faec072544d", "message": "Enhance columns() so it works with iterators.\n", "proba": 1.1748456074656133e-07} {"commit": "0dbd424d4d8875ea61094af35007fab2e8c7cafd", "message": "Trying to figure out why some gross emissions pixels appear to be calculating incorrectly.\n", "proba": 1.7828052989443677e-07} {"commit": "9a7a450452721a69b6738458bb8c7a1a40be94d3", "message": "improve configpath handling\n", "proba": 1.0584780056888121e-06} {"commit": "dda9494d2dc1fb2527813dee2caa07b68d0ab6e4", "message": "Fix missed management_url setter in v3 client\n\nSetting management_url is intended to mean that this is an overriding\nURL not one received from the service catalog. This was fixed for\nproject scoped tokens but was missed from domain scoped tokens.\n\nChange-Id: I8484f4a26a5695ef7ae962918ad442fe20bd2caa\nRelated Change: I2fa41e2ae1b853bbb254698cf94b9314eb0f0903\nRelated-Bug: #1252927\n", "proba": 1.6297695992761874e-06} {"commit": "67566e70c4fab4dd71c5c963b2a5eb37e7280c1e", "message": "finished cut offs for SS\n", "proba": 1.2978807717445306e-07} {"commit": "cc1e2a72b39cd50e6829f9b1098e03b6d071306d", "message": "remote checks goawaypath in src and target paths\n", "proba": 1.902871389347638e-07} {"commit": "837a8fc340e6c48b8e5666368947840561d1334e", "message": "Made changes to centre of gravity plotting\n\n", "proba": 1.3228432749201602e-07} {"commit": "52a8107abe642330da7237d92130a0e3c303f0a3", "message": "more warnings\n", "proba": 1.2962431128471508e-07} {"commit": "61f6a6e9bb501e1a9d8eace58746f11cb34b141f", "message": "linter: Allow using javascript instead of JavaScript for calling examples.\n\nThis allows us to call js code examples as follows:\n\n`{generate_code_example(javascript)|/users:post|example()}`\n", "proba": 7.072974881339178e-07} {"commit": "ec59ea7986f65e1b9b64f75a51e3bb38040a41bb", "message": "Trying to run gross emissions again from the top down.\n", "proba": 1.1040653191685124e-07} {"commit": "de5eb473065f085bbb5638d558d044f4c917b249", "message": "limit human_key\n", "proba": 0.998261034488678} {"commit": "1b7392c989df392d911a148baedc07d9a323de25", "message": "get_html_string() included a table header even if the header option was set to False. Fixed.\n", "proba": 1.4201188491824723e-07} {"commit": "9f92c9757219b502af3b4dbaa8c6ee6c1e874440", "message": "removed print statements from debugging\n\n", "proba": 9.525312634650618e-06} {"commit": "804e083e664746dd4fcf1507a959e750084af14a", "message": "Fix pytype for copybara import (#2995)\n\n", "proba": 1.158740090545507e-07} {"commit": "c81a7356a2a5aecb531d12254966498362701209", "message": "add showLabels option\n\n", "proba": 3.657697504877433e-07} {"commit": "58bad7f9ee1f8269f59df6258d0c1bab157d6994", "message": "Removed --log from options.\n\n--log should be specified as a global option. i.e. `ia --log upload ...`.\n", "proba": 1.1338674710259511e-07} {"commit": "59ae224d5ef9385901ff840a69f35806866f896c", "message": "minor cleanup to datalog examples\n", "proba": 1.2733627841043926e-07} {"commit": "80beff14ec1a4144cd4b4583d33d9129a5797303", "message": "Cleaned up LeakyCFProjection.__init__(), following Jim's suggestions.\n\n", "proba": 1.6575187089529209e-07} {"commit": "d07107af5a395b33ac0a67ab4201b301568c82c4", "message": "Makes the `Tracer` object `weakref`-able", "proba": 4.128623550059274e-05} {"commit": "cd88c590c081d33bd16ef9ec2453d3f730611eb0", "message": "rework user configuration API to be backwards compatible\n", "proba": 1.167628170151147e-06} {"commit": "c16d669e189863f28970da30c32e68ca1ce8985c", "message": "\tmodified: application/config.py\n", "proba": 5.467657615554344e-07} {"commit": "891f38e3746b62467af66c2fe2ef95e2360abcde", "message": "Revert to tkinter default behavior on the main menu bar.\n\n", "proba": 1.0660692595365617e-07} {"commit": "005a47d7be21a9ac09459e0e34719ee8241c8f22", "message": "cleanup experiment code\n", "proba": 7.845795835237368e-07} {"commit": "11b40d9ca684aa805906c0d4e6d87a9962c50ed4", "message": "don't give edge's named in dot files if their value is None\n", "proba": 0.9999856948852539} {"commit": "b79efb1681cb248e6fafe912e5e8ebd7e20d0d60", "message": "Bugfix settings['celery_result_backend']\n", "proba": 1.734019150489985e-07} {"commit": "c36ff5a201dd147bb1ee55e06b771d72ce8f2df8", "message": "Add comment with link to Bunny implementation for heartbeat connection check interval\n\n(cherry picked from commit 17149d8a2dba250ff77fc128b9b286e742c42a11)\n", "proba": 1.249468652986252e-07} {"commit": "51462c625791f2f0e743e8b7cee4df734d0a1fa1", "message": "increased debugging\n", "proba": 9.070123496712768e-07} {"commit": "36da66091c7d342d6f5b98f2835468fff883d4c5", "message": "use canonical_alias_tuple\n", "proba": 0.0009810324991121888} {"commit": "e2c535d4a57740b30842b0e915add103fe002aba", "message": "Bump to 1.1.2\n", "proba": 0.00021814512729179114} {"commit": "b17e9b51e40489e995815e2de1089e4080478223", "message": "Fix another setParent issue\n", "proba": 9.952144864655565e-06} {"commit": "ddfadb1b9e088fb19c2c9a54cb9cfcf0cfb0994d", "message": "reverting changes for PR #142\n", "proba": 1.4538680659370584e-07} {"commit": "f7e441225321163f6c6701e9cef7af5fca0c9fdd", "message": "Add resolution and frame number options to scrapper\n", "proba": 1.6702861671546998e-07} {"commit": "618287302b05481a7dfbd58d7a9cb8fc1b967fe8", "message": "added standardized isoelectric pts and mol weights\n", "proba": 1.268221723194074e-07} {"commit": "8af58f15eedcdd5629f429a0505f78dbbafc4d6e", "message": "Move active price conditions into a manager method\n", "proba": 5.228642976362607e-07} {"commit": "e25f633c3a4a6e64eaac8f68429bfc34b0ccf8e7", "message": "refs #100, added a test to generate form with email field\n", "proba": 1.907035169779192e-07} {"commit": "f29f1c5c35b3b0045175ce3d79fedbb44e988504", "message": "Added a comment about indexes in ES6\n", "proba": 1.3031531409524177e-07} {"commit": "ca128d94a072f7a5e638711e3b88e43a396658ce", "message": "add docstrings to unitcell.py\n", "proba": 1.2013827017653966e-06} {"commit": "276e03847b3df364c7f5ba86b347cb9162bc831d", "message": "updates urlparse references\n", "proba": 2.6546393883108976e-07} {"commit": "f938ae06a099e5f1a2bf4e0f1467d2caada22cbc", "message": "Removed ipdb line\n", "proba": 2.51626659064641e-07} {"commit": "0ea350a87a7c791220f373f29c6bd9fea03ae186", "message": "small workaround for sites without title\n", "proba": 1.855206903655926e-07} {"commit": "4702a72ec723bee8fcb587354e59c9c116cc346b", "message": "stormpath: printing out the result.account object, since there's no documentation about it\n", "proba": 3.6004098546982277e-07} {"commit": "fc89919b195068b4811339a4ec2c5b8db5d8111d", "message": "Implemented random forest as a possible estimator of quantiles.\n\nThe draw is now possible for a custom grid size.\n", "proba": 1.0688994223073678e-07} {"commit": "594b3d8e724452b50d51f300fd98855dcc84b17b", "message": "removed comment\n", "proba": 1.98248855554084e-07} {"commit": "0288ed1d0e31ccd3dbc8fd8b856b900818cd699f", "message": "Add bamplot\n", "proba": 4.6969666982477065e-06} {"commit": "9c4729dcac765fc395e09682d06713d0d5b87b8f", "message": "remove some comments in BrocObject.py\n", "proba": 2.3849787567087333e-07} {"commit": "c7010e3d97123eb376d90efc73e101da317f7d10", "message": "Update initial data and add session\n", "proba": 2.613084291169798e-07} {"commit": "1b212df783cd7198905f6477375490ab57d873e8", "message": "return 201 on post\n", "proba": 4.479621111386223e-06} {"commit": "318ea7b8b02c101c7ca9a38468cfd72c1c494414", "message": "removed json dumps so proper json sent to SoR\n", "proba": 2.9341617846512236e-07} {"commit": "84f50fce69ae1a946e1ad3afcfee387e7fc204f9", "message": "Replaced Unicode with SafeText\n", "proba": 0.0003089100937359035} {"commit": "68d8eeebac8fc977f46068620bbc757d49a0e5ec", "message": "Lets see if this is enoght.\n", "proba": 1.3927123632129224e-07} {"commit": "751f6cd0c311a560618bf8fa2446798d6caea4af", "message": "fixed account admin setting\n", "proba": 5.899196366954129e-07} {"commit": "445d9f5bda265b4b318579306aa6da13473a9307", "message": "Added a keyword argument force to the withProgress() method.\n\nIf force is set to True, the progress bar converts its iterator to a list\nif need be, so that progress can still be displayed.\n", "proba": 1.9408371088047716e-07} {"commit": "fa2bbeabb8cce1e02f3e702a2e77e5b7529ffd69", "message": "make connect build the correct type.\n", "proba": 1.589873903640182e-07} {"commit": "ce6aa3be8a82f25111ca17738ca829a50853e055", "message": "Swap companyeventresource image ref\n", "proba": 5.45124635209504e-07} {"commit": "f43683284a97eaaeb5974d98a2147014fce4f0ff", "message": "Fixed limitation\n", "proba": 5.485613883138285e-07} {"commit": "c24ed62f68b2f3e3dd4f6bcee6db46830592f72b", "message": "Small fix for typing\n", "proba": 2.3921975866869616e-07} {"commit": "568c060bbd0b5f37950c9205263f23118583ee4d", "message": "Bug 662343: 404 handling via a redirect to homepage\n", "proba": 1.193902221530152e-07} {"commit": "23c3269e904b148d15a72f2f2b3267fe0c8e49b7", "message": "added import for task mails\n", "proba": 2.1153289253561525e-07} {"commit": "ea078abc573bf413c1f4e0b54bfc15141206bcea", "message": "Require word boundaries.\n", "proba": 0.00016113811579998583} {"commit": "07b51eb46e4721206fbd1c6f1f427efdb38d80be", "message": "Added a helper function for removing the ROS log handler.\n\n", "proba": 1.121139590054554e-07} {"commit": "bd5a6b1983851d8d696390b19fae862775ee0084", "message": "Revert \"Remove explicit link to homepage view in i3p_base\"\n\nThis reverts commit 3d4327f6d9d71c6b396b0655de81373210417aba.\n", "proba": 1.1168496172331288e-07} {"commit": "989bb08a73bb1d572505e098f3d67212499fb1e9", "message": "run_md5 is no longer required\n", "proba": 1.1031808071493288e-06} {"commit": "2b42d288c08bdfd0fc3402fa118d91a1aebdb655", "message": "Windows: Add support for creating symlinks as an unprivileged user\n\nSee https://blogs.windows.com/buildingapps/2016/12/02/symlinks-windows-10/\nfor announcement of new flag.\n\nThis change follow the same pattern as what was done in \"go\":\nhttps://github.com/golang/go/pull/24307/files#diff-b87bc12e4da2497308f9ef746086e4f0\n\nChange-Id: If1e99fefdd3f787598e695731019c34b9bfcd1c2\n", "proba": 0.00014490423200186342} {"commit": "e82f8dc0864c795b538d601fd7998294bc8f9863", "message": "Add 4-th custom definition which is equal to \"enable_prompts\" setting\n", "proba": 9.159132901004341e-07} {"commit": "b3e3a1be44952f9b13940e5af575cc7c542ec4a8", "message": "Bump to 0.7.0\n", "proba": 8.148807683028281e-05} {"commit": "1b4d4f569586ea2d242feaa2e0336070f17df56a", "message": "Handle Atom & Vim as IDE\n", "proba": 2.724863634284702e-06} {"commit": "3d748c8a3377a045dc3402e8c860576610d7815d", "message": "feat: add yearly in dashboard charts\n", "proba": 2.7843793759529945e-07} {"commit": "06b8f47ba47a5ffecc0755cdd374d82ff96aa4a2", "message": "remove parenthesis from is_authenticated()\n", "proba": 0.9999961853027344} {"commit": "89d9b8bf1f2614d0e9e72bfc5b1b9cce88615a97", "message": "Add in the start of removal for rr deep.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 1.1180261338950004e-07} {"commit": "f4d0a19598c99a52ae14ad54fbb623c42d6a60b4", "message": "delete format kwarg (#252)\n\n`prepare` func sets `format` attr to image. Then, in `save` func, `input_file_name` is parsed and used in `format` kwarg to save the image\r\nThis caused `multiple values for keyword argument 'format'` error", "proba": 5.582841367868241e-06} {"commit": "dab180983612ab6d17bbcc743a95f0e741b34be7", "message": "Split log_event function to smaller chunks\n", "proba": 8.055195394263137e-06} {"commit": "7263be0d63d5af0eae9da680528ad032be47e037", "message": "Updated population filter.\n", "proba": 1.5775178496824083e-07} {"commit": "a3bb39cbeb5144863b3c25df00d01c2a05bd4053", "message": "add main.py", "proba": 2.1683622435375582e-06} {"commit": "ad21fdc69e1ae31895abfb3386f53fededdfdfed", "message": "Adds password validators\n", "proba": 2.803170445986325e-06} {"commit": "eaa2f1cd7deb1b1ece0e8d33834bcf41ec58188e", "message": "Added ts to postprocess\n", "proba": 1.2593247333825275e-07} {"commit": "63cd4a7cd5c7dfaed32b55558b979638c51cb111", "message": "name mistake\n", "proba": 0.9998993873596191} {"commit": "9d24cfd71f14d719a67c903204d866f15e6848fc", "message": "only print if there are warnings (#7850)\n\n", "proba": 2.7594091989158187e-07} {"commit": "45ac4834ed9a745dadd06187416b66562ace18f7", "message": "use_list_ops param to allow list operations (details +++)\nor not (less details, less granularity, but diff can be\napplied several times transparently)\n", "proba": 1.2833278617563337e-07} {"commit": "a82693bec66bf7221e543b84b52116950e9fd1fc", "message": "changing dummy function to args, kwargs\n", "proba": 2.5607889710954623e-06} {"commit": "4a199cfd459ffb8b3e39a2003cb37cd31ae820fa", "message": "chore: use gapic generator python 1.4.1 (#225)\n\n- [ ] Regenerate this pull request now.\n\nPiperOrigin-RevId: 473833416\n\nSource-Link: https://github.com/googleapis/googleapis/commit/565a5508869557a3228b871101e4e4ebd8f93d11\n\nSource-Link: https://github.com/googleapis/googleapis-gen/commit/1ee1a06c6de3ca8b843572c1fde0548f84236989\nCopy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMWVlMWEwNmM2ZGUzY2E4Yjg0MzU3MmMxZmRlMDU0OGY4NDIzNjk4OSJ9", "proba": 0.0015023363521322608} {"commit": "10240eaca58c9540c5eaa9aba77b719852cb9ac7", "message": "win/toolchain now does Update 3 for VS2012\n\nPulls Update 3 (instead of 2) for VS2012. Uses the now available .iso\nrather than the .exe downloader that was the only option previously (much\nfaster and download doesn't require elevation).\n\nR=jschuh@chromium.org\nTEST=win7 x64 vm, rollback, run, build chrome.\n\nReview URL: https://codereview.chromium.org/18542003\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@209818 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.531785412429599e-06} {"commit": "66f66633c39fdd879a071f3b2871e21f73c1feaa", "message": "Retrieve assembly_id from the database\n", "proba": 5.192487151362002e-07} {"commit": "82b83195cd2f3d798ea518b4ff4dd6a282ba5b4a", "message": "Making things less alarming if they are disabled.", "proba": 1.6093252952487092e-07} {"commit": "19d0707a5242d38a565702fc1bd180d58ee28afc", "message": "Refs #13 Change default value for bayes_auto_learn_on_error option\n", "proba": 1.3181761460145935e-07} {"commit": "c5bb46a1b7becbe623e3dab46e8b882111c0c3e5", "message": "Add read() method to PushRequest\n", "proba": 5.337624315870926e-07} {"commit": "000ac9bd0843743d225af8a9154cfd3d23188478", "message": "Remove print statement\n", "proba": 0.0070150988176465034} {"commit": "d4ea29dfaab7a5594875519f9eeafe9ecf198f88", "message": "fix IDs, and auto formatting from new IDE?\n\nDon\u2019t switch IDEs in the middle of a project guys\u2026\n\nFix Server ID when importing server data from AutoDB\n", "proba": 1.0893518265220337e-07} {"commit": "e061f410cc006e5059d27ab36a5ecbe537e78317", "message": "Stubbing in new MUserUnreadStory model. This is only for unread stories beyond a premium archive user's unread_cutoff. Need to change unread counts and get_stories to consider these stories.\n", "proba": 9.76406653308004e-08} {"commit": "499e87ee4668dc8ce3f7d5af21e923731913473e", "message": "improve test\n", "proba": 2.261180452478584e-05} {"commit": "7eefac09e4205dd06569c7e577956d138f96a031", "message": "changes to more closely approach Python 3 compatability\nimprove logging\nmake _sockread() more efficient\n", "proba": 2.2030832269592793e-07} {"commit": "6abaebb2488f7ced049a110c1ec23997090216a2", "message": "More consistant naming\n", "proba": 6.184887979543419e-07} {"commit": "0e5eec9cdef41a0b1214d0f981aed8c272cb0c75", "message": "Use environment variables for database config\n", "proba": 1.2830797686547157e-06} {"commit": "ad405f4d27ac1b0f885ecaf2dd6381c1e79ec73d", "message": "Switch keywords to not use POS\n", "proba": 2.238451202174474e-07} {"commit": "b911270b29961b13212f70c3b7d9560a3de73f22", "message": "-Add: Import PlexServer to the main namespace.\n", "proba": 1.0302804298589763e-07} {"commit": "730caba738fad578a9670ae032aabd45b5ffc497", "message": "fixes #2920\n", "proba": 1.757880880859375e-07} {"commit": "01b710e8af92e81a30c7fe3a864709834aee29db", "message": "Fix input timing\n", "proba": 0.000260251690633595} {"commit": "6b8e380b96bffe340d643f48190c8f5e01dbf1c5", "message": "Trying to impve sysctl settings\n", "proba": 4.049980475429038e-07} {"commit": "b758c26f96bf3b5418c8e153f950d1b4d722d0f3", "message": "Add files via upload\n\nnew encryption method:\r\nAES with CTR and hmac (sha256)", "proba": 1.1410376998810534e-07} {"commit": "ef67c0fb9579c4b51de8dd3613e46faea546160f", "message": "Detach datatypes from package\n\n - Datatypes raise only built-in exceptions\n", "proba": 1.3198466319863655e-07} {"commit": "26641b6e5845982f2df9ec3e2d06bc3bfe458b0c", "message": "Updated hosola script\n", "proba": 2.7224172072237707e-07} {"commit": "00e763642c3d4492d4ba4520bddd01b3f7f422ff", "message": "hopefully fixing test\n", "proba": 1.9590108024658548e-07} {"commit": "be8617aef699beab4fe22f3998a32ed757699eaa", "message": "MIMEError -> mime.Error\n", "proba": 0.00010054272570414469} {"commit": "11c5aa41786cefba01df93ca9eb56f08916f21f5", "message": "ENH: creation of tdc pixel hist is now encapsulated in this class\n", "proba": 1.1787208364921753e-07} {"commit": "6d7c9f8d69e4c8ad675008943953cf36f099e39e", "message": "Image was broken on About window when you've been launching Shaderman not from it's directory.\n", "proba": 1.0302136388418148e-07} {"commit": "ffe9bba2e4045236a3f3731e39876b6220f8f9a1", "message": "Update joke of day: Fix for moved SpinnerThread\n", "proba": 1.435289362916592e-07} {"commit": "5f93469d72ffada82ecc9c1216f5b1c6c0723875", "message": "error msg correction\n", "proba": 7.259399353642948e-06} {"commit": "7ddc2d36c5e13e0e8234097bca72d39977d19c11", "message": "Fix API when user is not logged in\n", "proba": 8.95754794782988e-07} {"commit": "6ad87c4d67ee9ab4658f5696fa46aaa92bb0d298", "message": "Switching off overwhelming md5.\n", "proba": 1.6876767006124282e-07} {"commit": "d5e6629f9ffecce417e595070d0f57e72c1c75e3", "message": "--clean option fix\n", "proba": 2.2904487195773982e-07} {"commit": "e5591cc5d3c57aeded8ce2212978eaffa2ea7b9b", "message": "Uprev to 1.0.1\n", "proba": 0.00046544198994524777} {"commit": "821f0ed11e4741b81d3e0ae97a7e3fe8b2bb03d5", "message": "fixing the error msg\n\n#325\n", "proba": 0.00011044885468436405} {"commit": "74488d02bcb0fff6a48ed25a1c23be0f8579ba57", "message": "add user to list display\n", "proba": 6.514600841001084e-07} {"commit": "c2282c3addcfce7879390b22165a70659797ae99", "message": "gi_extension: downgrade error to warning\n", "proba": 9.265347671316704e-07} {"commit": "9a620da8ef90b2ad221915c35b6bd33fe97cbcf0", "message": "Fix contributions export\n", "proba": 6.441516688937554e-07} {"commit": "afbb654d32a523946bdd4dac73edb1d41af8492a", "message": "Fix install to create destination folder if missing\n\nPyScripter also cleaned up some trailing whitespace.\n", "proba": 1.1449509429439786e-07} {"commit": "bbe31335cd3abc253fe4fc793e297d948f9a458f", "message": "Fixed pytype complaint\n", "proba": 2.0591120630797377e-07} {"commit": "f84160edb10676c6c01ce7940384af3e9d90c1cc", "message": "Add cache-control headers to dbfiles responses.\n", "proba": 1.2142866978592792e-07} {"commit": "134e03614c4d24d1ebed9816eb71d9cd074c8d2d", "message": "residuals from conflict\n", "proba": 2.305654788870015e-06} {"commit": "9c7e4385b818f4617a3d650f862e51db04d41393", "message": "[EXAMPLE] add MongoDB DB/Collection settings\n", "proba": 2.900685842632811e-07} {"commit": "0cb92a594016fed73bea7c7b786328b99b0eca8e", "message": "New search autocomplete on home page\n", "proba": 4.4808587063016603e-07} {"commit": "8063036c5e619af528fa5f55069640259f29b406", "message": "Parameters can have a 'constant' attribute. If this is True, they cannot be set on an initialized TopoObject (and they are also instantiated). The Constant Parameter is now simply a Parameter with constant=True. Constant parameters are now no longer excluded from pickling - they are pickled like everything else. Such changes go together because deepcopy uses __getstate__ and __setstate__, as does pickling.\n\n", "proba": 5.844776751473546e-07} {"commit": "e3aff9b872266d152841bfa5c738167b213228f7", "message": "add error detection stuff to ipn\n", "proba": 2.692763985123747e-07} {"commit": "40abc706d2cbef8aeaa85008f73ed91901b7592f", "message": "Updated cmake.\n\n", "proba": 1.3243479202174058e-07} {"commit": "9437c4ce49387f69e53f52a9d0a2a9dff1bf13c4", "message": "Another fix\n", "proba": 3.8027690152375726e-07} {"commit": "ab99028b45b24d6a3185156e64aadac27b274e43", "message": "Update quick_sort.py", "proba": 1.1950543239436229e-06} {"commit": "23c8f8b26f3fe0782ecd08ba306189bd693d0c9b", "message": "Modify the Vagrant tutorial script to install ZFS modules\n", "proba": 2.2020959988822142e-07} {"commit": "91c70775f2a6cb9d75c61b43509ef7f19047e025", "message": "Obey sparse mode in create_buf. Fix bug in create_buf where we were adding hidden files\n", "proba": 1.4989463181791507e-07} {"commit": "2cd645c8d10b14572992fb05925969d2a86f9e87", "message": "Log piwik fails to sentry\n", "proba": 2.304297623823004e-07} {"commit": "8984927b92825f1e2315782a7b7a750a0fbd2b28", "message": "Clarified a comment.\n\n", "proba": 1.971477104234509e-06} {"commit": "52fd9109d3a3ed47b4a9d046d2e00aff84735471", "message": "Minor edit.\n", "proba": 1.5052866331188852e-07} {"commit": "5d88d44baf4c1d8ad83dcdb2b85a8a7be7be2187", "message": "VectorFieldMap.interpolate, .resample\n\n", "proba": 5.659978228322871e-07} {"commit": "2cc01f84fc3dcad6cf657c444877319a000a4cdd", "message": "fix missing arg conversion\n", "proba": 6.109955575084314e-05} {"commit": "8bb2f682cb4ab2b5fd3828f56e388109b071c806", "message": "websocket sender: Use a longer connection timeout and slower retries\n\nReduce effects of reconnection storms by giving more time for the handshake\nto complete and retry slightly less often.\n", "proba": 1.1995379622931068e-07} {"commit": "3857912a291bd33b38418760fc1b7978810e2ae4", "message": "Minor formatting adjustments.\n", "proba": 1.942022009870925e-07} {"commit": "54b914e616810be3882b444dfc92f16a0db47f7e", "message": "Fixed pyflakes errors and added module docstring\n", "proba": 1.5382966012111865e-07} {"commit": "b20fd9b77f3e46ef32d51a720eaa8748c7aff879", "message": "bug fix in api.network_connected()\n", "proba": 2.504361020783108e-07} {"commit": "43fe5a6d47cb8268d05feb7fccf2abf2db2390f5", "message": "#194 test email notification", "proba": 1.422260282879506e-07} {"commit": "b95a6f94e1fc9d667b0fad22810a08e102e51b13", "message": "no show in simialrities\n", "proba": 4.821162065127282e-07} {"commit": "1e976ca33059268eb00518f66869e76215f2a73f", "message": "new: synthetizeAsIpcore", "proba": 1.1382916227375972e-06} {"commit": "b12eecf10efc4d35448a5289be59a3a33f5b80fb", "message": "Grr. raster_stats cant be tested since it screws up xml output.\n", "proba": 1.3307921165051084e-07} {"commit": "67d49e188c7336133c9abffd2b552f658283051f", "message": "Add missing test for manila share attributes\n\nChange-Id: I9830704bf37920bcb56369b8d2be2f08c99a58fa\n", "proba": 1.846962550189346e-05} {"commit": "88c97ead9e79cc0ae045abe88ccea3f240df5f6e", "message": "Fixed file opening", "proba": 9.480004905526584e-07} {"commit": "fb9df4c6b3788a5d1edfeaad2f240307d0e98868", "message": "adds PCAM to torchvision.datasets.__all__ (#5280)\n\nCo-authored-by: Nicolas Hug <1a73af9e7ae00182733b2292511b814be66f065f@nicolas-hug.com>", "proba": 1.210070621482373e-07} {"commit": "d1ded5ace90700a745311da259e00c6b19a85de7", "message": "EHN: add possibility to have string in pi labeling\n", "proba": 1.3893815093979356e-06} {"commit": "6a0b26f714b612a91d2d9d88c39faa21a0e021d6", "message": "interlace_acs: Hard-code FLC inputs rather than FLT. Add some header keywords to interlaced result.\n\ngit-svn-id: b93d21f79df1f7407664ec6e512ac344bf52ef2a@1091 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 6.994689465500414e-05} {"commit": "56444b61ec1575f66efc72e84d36dfae85c59626", "message": "new params for cv emotions\n", "proba": 2.598276580556558e-07} {"commit": "a415ed39553039841fe46e936e8d16b9d82e9b56", "message": "Fixed billing check on DMR\n", "proba": 1.7507987593035068e-07} {"commit": "a3a7ef72efc86d3f82350a9d72a9114324f9c1e0", "message": "Update counter.py", "proba": 8.538008273717423e-07} {"commit": "bf536d5cd2a76fe3ce66783630daac978cf303e4", "message": "Topic: fix default format\n\nThe old format also included useless nick. I don't know anyone who has used the default meaning it and it annoys people and it just annoyed me.\r\n\r\n> XX:XX:XX -: blah blah blaa (Mikaela)", "proba": 1.917005789664472e-07} {"commit": "78adcc4b7aaf9ced99a4bc8b8162d8570d2caf39", "message": "Show the InclinedSupport that is a Device in the admin django panel.\n", "proba": 1.0512022186048853e-07} {"commit": "95215b1e1d4880348691156249b3c2b7e2285182", "message": "More elegant solution for adding the https scheme to the toolshed url.\n", "proba": 1.0232166403056908e-07} {"commit": "33144b01c9c19168f29adcf403e18c2d7e98caa5", "message": "AWS NAT: Name always optional\n", "proba": 4.950576567352982e-06} {"commit": "c6fe3ce37e4b2bbb275b040a239e0551af59e0a3", "message": "ehn: table head lines, borders\n", "proba": 1.7351651422359282e-06} {"commit": "893213293437935ff794e38f72334307357bcc59", "message": "added missing output file (Issue #30)\n", "proba": 1.4030720763003046e-07} {"commit": "a5ad34abf35f1c9538d9aadd92211ce1e6f46f8b", "message": "LOCO.ENH: Add methods to handle girder fitting\n", "proba": 1.4772618328606768e-07} {"commit": "917d5f5da2ca652bad9001000abc2bf42724cb9a", "message": "Rename debug quit method\n\nGiving a little more foresight to the future, may be nice to sort of\n\"namespace\" debug functions.\n", "proba": 1.2680331451520033e-07} {"commit": "db61130b26c14a92995fcbc48bb68dc6b2440514", "message": "test album no photos\n", "proba": 1.701648761809338e-05} {"commit": "7e76b34917c5fb0b41b9089c220a85d5bae890c8", "message": "add missed location for safari plist\n", "proba": 1.653991006378419e-07} {"commit": "0e5347894859de0bb281de353ceaa95cdc76ff3d", "message": "[transactions] proerly sort the authorities\n", "proba": 1.8402781279291958e-05} {"commit": "fda70429635b71c0fbac5c208c1e8a530d5a79f7", "message": "switched to scipy.optimize.minimize\n", "proba": 1.4151035429676995e-05} {"commit": "ac2cf39816b6ee750f31fc0c0e1c45378a5543f4", "message": "\n\ngit-svn-id: https://aqualid.googlecode.com/svn/aql@518 a28edc5c-ec3e-0410-a3da-1b30b3a8704b\n", "proba": 1.078754621630651e-06} {"commit": "04cd9760c7ec9f3adfdcc828bcf885ed8e4c8a78", "message": "added storage and flex dispatch to rio supply runs\n", "proba": 1.1020834733699303e-07} {"commit": "485591c6c339cd91c9bf3579d122cc6bdfdd188b", "message": "setting works as expected\n", "proba": 2.1178803422117198e-07} {"commit": "89caf0e5ed32a0cbd81aed0d64021a650dada320", "message": "plugins/script: don't warn on missing scripts.txt\n", "proba": 8.776783033681568e-07} {"commit": "684dfd0be3f98135f9ab9c2710bb08b0f71a6827", "message": "fix api root ressource\n", "proba": 7.31398017705942e-07} {"commit": "c4175c79e3725c3cdba020d3c619d1d1b5f9eb6e", "message": "Correct return value format in flush.\n\nChange-Id: Iec091db403c1ef0680e34d7c6b50cb121489f4e2\n", "proba": 0.999863862991333} {"commit": "60482e3da477acf49fc1d29b76d413131c601013", "message": "response -> responder\n", "proba": 0.003324283752590418} {"commit": "90608dc935322985143e0f44014e99a69eef740c", "message": "utf8 file encoding\n", "proba": 2.1634955373883713e-06} {"commit": "99972ca883d2dc7e30d018bddfd04cf6596b9ded", "message": "reload button", "proba": 2.158265488105826e-06} {"commit": "7d578bec6a51b1f1363ae82832bf8c98203bfa5d", "message": "Setup argparse.\n", "proba": 3.3116475606220774e-07} {"commit": "eee6736ed0bf964e29714ca3bc69169162cb9390", "message": "Removed credentials from example (#21)\n\n", "proba": 1.1721171944145681e-07} {"commit": "432f2da1e94c2ad1d3d11b0b81b047463c5ed2b1", "message": "Medium size thumbnails\n", "proba": 7.752216220069386e-07} {"commit": "813fe3efd96ce4ed0d983b6afd0e44230ddc25dc", "message": "Made message spec a class instead of a named tuple and documented message init.\n", "proba": 1.0439949704732499e-07} {"commit": "2da00ffd9148e93ed6d0dd6a23eff36b19c1f965", "message": "Fix Sphinx reference failure\n", "proba": 1.8229362694910378e-06} {"commit": "578381f62f19a8cf71dd8c7e7d4a4e1c783f024b", "message": "Adding error checking for yaw_range parameter of cylinder_grasp\n", "proba": 2.3695622530794935e-07} {"commit": "a93149a346fce07d59864991cc0aa6c69ab362bc", "message": "improve comment\n", "proba": 2.557023037752515e-07} {"commit": "86fb047f287e656ca2729b47155191550a6401de", "message": "0.12dev: Merged [8305] from 0.11-stable - easier subclassing and reuse of functional testenv (#8388).\n\n\ngit-svn-id: f68c6b3b1dcd5d00a2560c384475aaef3bc99487@8306 af82e41b-90c4-0310-8c96-b1721e28e2e2\n", "proba": 6.352258424158208e-06} {"commit": "bc800769976df7b1a9a6b62e83b5874eff115143", "message": "Delete config.py", "proba": 3.0714595595782157e-06} {"commit": "506ae95731cfa88ef6d2940e8dd6a54a1219c8f0", "message": "update database backend\n", "proba": 9.429079455003375e-07} {"commit": "1e9f35516c5e90bf01b60fcb3028978c5f1349c3", "message": "more gchart update\n", "proba": 1.2744658306473866e-07} {"commit": "dda03c1cd52bd61848ae077afe2ad0a1da0b1dfa", "message": "Adds a shortcut to a transformation's context for handlers\n", "proba": 1.34750837332831e-06} {"commit": "6f3fda60a69717b12dc2c24f79a690bddc941385", "message": "Update multipurpose.py", "proba": 5.240793825578294e-07} {"commit": "73c64a0228a392d91806e8462c5aff2697f994a3", "message": "Some changes\n", "proba": 1.9587992028391454e-06} {"commit": "128f6b0c9f1b7750c6437ce6f405c0b46c2aeda2", "message": "debug work around\n", "proba": 2.1521267967727908e-07} {"commit": "f43e233a3ff64102238753f738009a7d87510338", "message": "more gchart update\n\ngit-svn-id: 6db40d0534cac73ba019dccfebee869402ecad0c@1526 7a2bd370-bda8-463c-979e-2900ccfb811e\n", "proba": 2.2289270873443456e-07} {"commit": "230abb843eb69fc45abef6712c494d2f64cfe695", "message": "Resets implicitly set Transformation.config.result_object\n", "proba": 7.750634836156678e-07} {"commit": "811fc6832fea8e08f57fed21692e7e7a276304be", "message": "display the names of nodes that would be destroyed", "proba": 3.9546387142763706e-07} {"commit": "7a7d0194c581d29d8165770b29dd8384104d792e", "message": "stats: Use next_pid for execname to PID mapping\n\nSometimes the comm filed in the trace may contain values\nsuch as <...> which causes failures when we try to map the\nexecname to the PID\n\nSigned-off-by: Kapileshwar Singh \n", "proba": 1.2560671791561617e-07} {"commit": "86157f268dc2e421d94efcce3445e4927f50d292", "message": "Fix for when model is being populated elsewhere in the stack.\n", "proba": 1.055264178262405e-07} {"commit": "ae7ac7d591266de3f43dadc65be1b6cfde734f7a", "message": "branch merge\n", "proba": 1.250864102075866e-06} {"commit": "2d586fbda8ef411319fec5673643204c62996fe5", "message": "Changed supporting/deadly/solid into flags\n", "proba": 2.720242378018156e-07} {"commit": "a396cd17b236bfb3f44c1c8514185afd40602974", "message": "Remove unused intify\n", "proba": 0.0030660012271255255} {"commit": "e3b912b1c7df77c7f2d90b736e4688432ddc58e4", "message": "removed dep on ik utils\n\n\ngit-svn-id: 9d271b02f21ef92375d53f3a729673c5fe5e0adf@1015 5fc10e88-4e10-11de-b850-9977aa68d080\n", "proba": 5.204429953664658e-07} {"commit": "e9a1007a655333c119163ba2da38393ed6fee527", "message": "Catch case when last col in row is not WKB\n", "proba": 0.0038617418613284826} {"commit": "a50b5e0eceaf0f58e942c52169a3b757620fc407", "message": "Bug 1266065 - Use Django 1.9's new class-based method_decorator()\n\nhttps://docs.djangoproject.com/en/1.9/topics/class-based-views/intro/#decorating-the-class\n", "proba": 1.6864281349171506e-07} {"commit": "fae87b053191c873e2f936096d6c6ac4b9576475", "message": "Fixed imports and preparing for work on fuzzy c-medoids.\n", "proba": 1.0174463938028566e-07} {"commit": "ae5bd8d06a07ddc67b581ca8e1483f4068a6333c", "message": "fix: Clearer user config messages displayed in the import view\n", "proba": 2.4173118617909495e-07} {"commit": "28e907d058c80589911a4c09f2559344f60d6cfe", "message": "admin_order_field\n", "proba": 9.941120424628025e-07} {"commit": "0a632540ce521a7613c831284f2fea4154c7af6f", "message": "[#3072] updating mi aggregation metadata generation for view mode to handle JSON type 'array'\n", "proba": 1.0699784525058931e-07} {"commit": "fcc3264ecb443224430a69bb2aaf4799ab34e007", "message": "Fixed encoding issues on legacy data in all_messages\n", "proba": 2.3518690284163313e-07} {"commit": "79ab99319258849c7c2b3a63f5484363af3566da", "message": "Get the non-html content to send_email()\n", "proba": 2.5446189511058037e-07} {"commit": "9acbdb19df5ceda845625acc9adb9618d6052186", "message": "Add more output to example plugin command\n", "proba": 2.7978668981631927e-07} {"commit": "360ec737177b34e95a4e0a1ec4bc0ce9d1e509e4", "message": "Add top level count to /detail-aggregate\n", "proba": 6.875620215396339e-07} {"commit": "67e4ef2a4c1b1aac4e8238b2bf7103cf8c2aaa80", "message": "fixed super calls\n", "proba": 4.5804048909303674e-07} {"commit": "03c25f913d191bf219abaeee24c4e9e5a7a2fc5a", "message": "use old behavior (signed int16) for old version of SimpleITK\n", "proba": 1.70072993910253e-07} {"commit": "dba8bd8c5bb0b6cc9e24cd938421240059f5b9f8", "message": "fix: Avoid trying to build attributes with not intended fields\n\n- Previously: if the header field is not an attribute type, then\n it was added as an attribute field.\n PyMISP then used to skip it if needed\n\n- Now: Those fields are discarded before they are put in an attribute\n", "proba": 8.890460776456166e-07} {"commit": "373edad680c5bd8d20f3031b1ef0f58b82652d37", "message": "Process commenter avatars more, set profile + comment_removed fields\n", "proba": 1.6731080165754975e-07} {"commit": "3c1a3289a7ecb0866db311163c352b4c4637586e", "message": "Made the reading messages a bit prettier\n", "proba": 5.198182407184504e-06} {"commit": "1ac1cb896c0f37cad6eff501908aa8ee1400790d", "message": "chore: eof newline\n", "proba": 0.04052402824163437} {"commit": "7527fd15b2299bef63e22474788f91c12e156bf5", "message": "rename some fields application rather than patent, add type to app\n", "proba": 3.1979618597688386e-07} {"commit": "276a4f3b59f1da31030c4fa77aa64860b404514f", "message": "Add new collection attributes\n\n", "proba": 2.2082662098910077e-07} {"commit": "839b4ab15a116f7866fd0e033a802866d0b74700", "message": "Fixed logging imports when file is required (#74)\n\nlogging.handlers wasn't properly imported. They have to be imported implicitly.", "proba": 1.0744305711796187e-07} {"commit": "20747fca9e94a4a9fb50629f498ee42224296302", "message": "Add max_length to CharFields\n", "proba": 1.0007468517869711e-05} {"commit": "de61f822d48c49daafe413dadc62714b1e04c79d", "message": "[Fix] close #2832\n", "proba": 2.2347654748955392e-07} {"commit": "804fb82d436bec7f1f637890203d424eff38dd16", "message": "[core.cache] a little timing and logging of cached function calls\n", "proba": 1.7961109222142113e-07} {"commit": "a60419917544ef893deac1a8a68b89827c29cfe8", "message": "exclude missed in classify shapefile for when classes are not present\n", "proba": 2.637872285049525e-07} {"commit": "1f18df4a4467783feabc9295b67f46e3d73f5737", "message": "Improving illustration plots\n", "proba": 6.069693654353614e-07} {"commit": "a69383c32fc204535355e718f522c1d5b81e7fe0", "message": "adding example player\n", "proba": 3.214172750176658e-07} {"commit": "5df91f61aa4012be7b469f8926c0b50953898c59", "message": "VOL-1030 Ignore flow update if OLT is operational down.\n\nThis solves the hang issue when openolt driver is killed\nand possibly helps with a sneaky voltha hang issue seen\nwhen the system is left to run for long time. It helps\nwhile the root cause is investigated.\n\nChange-Id: Ib73d6f1dd869f56d266b385c085e976ccca4cc17\n", "proba": 1.1232516499148915e-06} {"commit": "26912713325307fd65e8ef3ab89294e719a1df94", "message": "pmfg pmapi: use 'utf-8' rather than \"utf-8\" in encoding literals\n", "proba": 2.733017026912421e-05} {"commit": "4e4be91c10c00ce28a6ea1ae2ef1f86d48e1d3a7", "message": "don't create copy of a suffix in getEntities. Keep only lists of cities,districts, subcities and not the full dicts as keys are not used in serving\n", "proba": 1.256795627568863e-07} {"commit": "74f3138de25693760a40b18a0dbf92b1dc82da7b", "message": "Ensure uniqueness in missing repos\n", "proba": 1.7575486708665267e-05} {"commit": "90fd558013288c0f742632d96bf34dfeec72f598", "message": "remove resize arg in retrain_on_generator\n", "proba": 9.02096132904262e-07} {"commit": "94814371ef5eea6dd9514f3d6daf7f28540a6c94", "message": "minor terminology update\n", "proba": 6.431952783714223e-07} {"commit": "7d51040821a2b7be9aaa1a326f4053500b375814", "message": "fix typo in flat_top_gaussian_edge stub decl\n", "proba": 0.0008931817719712853} {"commit": "c641e3c66c1e0e92d401e40fe509829093ffc740", "message": "cleaned up documentation\n", "proba": 3.9444839217139815e-07} {"commit": "123e108c9fffcf3f71e03b1b36788af87ab41edf", "message": "Conservation de BundleContext dans le Monitor Agent\n", "proba": 1.2224339229760517e-07} {"commit": "cf07cfe34c5eba8c26590cc171f3d78ad8e5cc69", "message": "examples: Use canonical version of Legion header file.\n", "proba": 1.0402362704553525e-07} {"commit": "fb2bae024d750d9ffb40b0fef39d67c819afee2a", "message": "rename to _variances in base model\n", "proba": 0.9988665580749512} {"commit": "0913649584b89e2bff183bcc3da2311ad409d03b", "message": "Calculate moments using a common pixel radius\n", "proba": 4.67095969725051e-06} {"commit": "a299719ec917f8ef4934724187bb3ac5a73eaee8", "message": "fix file not being found", "proba": 8.863260632097081e-07} {"commit": "424a21e5831951c3d2196d2f593fd8dbcfc0f64d", "message": "equalize_sidebearings.py: Rename `center` method to `equalize`\n\nBecause the term is not exactly appropriate in this context. Equalising\nand centering are really 2 different things and this method does the\nformer.\n", "proba": 5.562081923926598e-07} {"commit": "786e2451ddf29d0583181fd7f8c6ba96b66ee3d5", "message": "Also print indices\n", "proba": 1.0178284355788492e-05} {"commit": "c68e0450144e9da8f116cc3dcbbce80d83484e97", "message": "deleted duplicate button from QA inspection report\n", "proba": 2.7413057068770286e-07} {"commit": "b4a989d28c4f9afba22a87eb16aafda0a5f5abf5", "message": "removed unused import\n", "proba": 4.2686903611866e-07} {"commit": "f29f5e9bf8703e3ed351a29cd832b5f2abf64a57", "message": "Added docstring\n", "proba": 5.633284558825835e-07} {"commit": "7f884ecfafc3ee7d2fe8ff081d8593fa5047bac7", "message": "fix some bug for led in handbit.py\n", "proba": 3.233640768485202e-07} {"commit": "ca9aade314f8ed123c542fa7ff9e362c6350766b", "message": "If limit is higher than 5000, do offsets\n", "proba": 3.715411594384932e-06} {"commit": "bc97476dbb810d713be897921d3506e8949c5ed1", "message": "Convert inputs to stuff function to int to better mimic functionality.\n", "proba": 5.16720490395528e-07} {"commit": "9fedfe689fa9052bbb26957eeb7e34baff2a425d", "message": "Add line endings detector for vim\n", "proba": 8.157590514201729e-07} {"commit": "1cb398d3a515902c4e404a66c2d55b08addc8618", "message": "Bugfix: Instance statuses were never set to RUNNING.\n", "proba": 1.110030396489492e-07} {"commit": "7d0cdf7cfc36b469f316706e70d00b0f5250d89b", "message": "Add lyra2re hashing algo\n", "proba": 0.999834418296814} {"commit": "43629c2874c89415a59749fc84c2ba3cf07cb6d9", "message": "fix changes processing\n", "proba": 6.797046694373421e-07} {"commit": "5e5293026792c023a4fe26e15a6f7ca166cc7b1f", "message": "dhcpd: Send NAK when we're out of addresses\n\nIf we run out of addresses to give, we now NAK the client.\nI'm not positive this behavior is correct.\n", "proba": 2.272600454489293e-07} {"commit": "efdd02e2645ac1f21a6ea487afb9a6db17250339", "message": "Simplified sort: show suffixes of suffixes together.\n", "proba": 2.8129537099630397e-07} {"commit": "308d237c76eda3183a039555940c8374594d130d", "message": "updated schema\n", "proba": 7.477942176592478e-07} {"commit": "0e5bc0cc434ccb0b810277834b814d751602ce76", "message": "fix typos\n", "proba": 0.9999740123748779} {"commit": "54e2a5897911d59ba732b79ab4de652f39b21c79", "message": "Fixed attributes parsing\n\nSigned-off-by: Peter Lemenkov <2f981fc861bda8c748898150c942841af4296212@gmail.com>\n", "proba": 1.0999330157801523e-07} {"commit": "16da0fcfa68d9b6e72a049c768d8cad3d6ba4b83", "message": "Remove duplicate route.\n", "proba": 1.1750735211535357e-06} {"commit": "9422e438d079dbf0dd87da166d68bd6801203870", "message": "Update HttpClient.py\n\ncassette save bug fix, save with tuple", "proba": 1.7446051003844332e-07} {"commit": "adb6e17a15cb15112cff16c2bf66d624654f6dc6", "message": "Enable range keys in batch count queries\n\nEnable keys to count using range keys such as \"gte\" (greater or equal\nthan) or \"lt\" (less than) when doing batch count queries. This is\nuseful in particular to count the documents with a number of errors or\nwarnings greather than 0 (gte 1).\n\nSigned-off-by: Guillaume Tucker \n", "proba": 4.0191071093431674e-07} {"commit": "5cf14cb0d0060e5dfd9d626835be065d5c4c1335", "message": "formatting\n\n", "proba": 1.1576831639104057e-05} {"commit": "b26fccf445e45cb323b6daf59b401c358124f94c", "message": "Removed break from test_vp\n", "proba": 5.832993679177889e-07} {"commit": "2de1b84f49d59b99337f5e7bb376015a5db2bfc2", "message": "change default filename extension for mmcif format to cif\n", "proba": 2.884767980049219e-07} {"commit": "b0e558b70613871097361ee3c1f016aa60e4c2f1", "message": "Update YUI error handling logic\n", "proba": 3.0560943287127884e-07} {"commit": "34ff582b1b1555483211f4067bea2482021f106a", "message": "[Gen] Fix '_var' usage string to show the right command\n", "proba": 2.6272618924849667e-05} {"commit": "e9ebd040c2bf70c80464092e8545ba69c07cf800", "message": "Automatic agreement link\n", "proba": 1.754224996375342e-07} {"commit": "f166df05c515da61468c215eefd6bcbc42542ffd", "message": "schedule number function\n", "proba": 4.1528212022967637e-05} {"commit": "99a630b6bc9681c0654bc25b61fefd207a74a133", "message": "Revising from unit test creation\n", "proba": 1.8823027403414017e-07} {"commit": "61fe502f6ab44e4c21b148fe233fb93b7882e96e", "message": "adbhelper less text for debug\n", "proba": 1.1298417348371004e-06} {"commit": "3945b2adb418e2b37c6785a1a7472f1711156bf0", "message": "Augustus hash (#7447)\n\n* augustus: 3.3 package hash changed\r\n\r\n* augustus: bamtools libraries now seem to be in lib64\r\n\r\n* augustus: fix lib problem with older bamtools\r\n", "proba": 2.547090787174966e-07} {"commit": "f8743d0cbfe6a1ea16b7d31eebaeb7638b46e10f", "message": "openfoam: add v2106 (#24579)\n\nCo-authored-by: Mark Olesen <389690c0b0826b585112bfedf38b1a20410c67a9@esi-group.com>", "proba": 1.1115749032342137e-07} {"commit": "64a8db07161b2c1b1b0b1f1d6347d093b7e48aeb", "message": "Test removing agency_id\n", "proba": 5.701019745174563e-07} {"commit": "6277e587520b380aef5dc2f4003c508174654fd1", "message": "VectorSpaceMapper: Ensure Logging functionality can be utilised when called with the driver module or called individually.\n", "proba": 1.0417114992833376e-07} {"commit": "6e0b2c97b8b9780c61d965d676700b9288f74a9f", "message": "Added functions to the Address model that properly format the address object for presentation.\n", "proba": 1.0291275742702055e-07} {"commit": "8303156e9d35317be0fbf68fe147b3148874408c", "message": "Always OutDate() the lu's config\n\nFor historic reasons, each job has two, potentially\ndifferent, configuration references: one of the processor\nand one for the logical unit. When requesting locks,\nmake sure we also out date the configuration of the logical\nunit. Note that out dating is cheap as it only sets a flag\nin the configuration; the actual refetch only happens\non next read access.\n\nSigned-off-by: Klaus Aehlig <4ce51de36d9068cd7db2eec1151e0f3f95419008@google.com>\nReviewed-by: Petr Pudlak <9d19625f8ee825a2c398462ed335cbcf98f79c32@google.com>\n", "proba": 2.8294266485318076e-06} {"commit": "0d73068200fe7fba1fef07b02074e35659f34af0", "message": "Simplify cleanup of locks\n\nSince, from stable-2.12 onwards, locks are no longer explicitly\nadded and removed, there is no need to release them separately.\nThe freeing of all locks of the level left will take care of this\nanyway.\n\nSigned-off-by: Klaus Aehlig <4ce51de36d9068cd7db2eec1151e0f3f95419008@google.com>\nReviewed-by: Petr Pudlak <9d19625f8ee825a2c398462ed335cbcf98f79c32@google.com>\n", "proba": 1.1194414355486515e-06} {"commit": "56b9fb1f73f855c8628a5060e9b68e5d6188aa58", "message": "added versioning tests for composite resources\n", "proba": 1.9282565233424975e-07} {"commit": "a9e8d336f475ad1f0a336b62c42eee0aa957e474", "message": "bugfix in stack.aggregate if no weight is given\n", "proba": 2.7277810659143142e-06} {"commit": "8f02061ecbc111470124820d888a3b3b12d8b762", "message": "quick fix\n", "proba": 3.852059364817251e-07} {"commit": "08db03a36de0b5eb590ce08a76e5f7d6b27a8010", "message": "rename functions\n", "proba": 4.7871944843791425e-06} {"commit": "745d9a7e5cc707cf0818a4ab0ffebbe0eba4be43", "message": "fix styles and adedd filtering data from cache\n", "proba": 1.5072403414251312e-07} {"commit": "f595dc2dba2fa8bdc3ac6253a7d11bfe5230f80b", "message": "Delete landform.py", "proba": 2.141063305316493e-06} {"commit": "68c36511a97316fa36685ab2178da0f9e6269579", "message": "Making it so sonicbot tracks full user masks\n", "proba": 1.9718839894267148e-07} {"commit": "c65f934bb035e79ed2ff190634c2aad52b18d1a2", "message": "remove semicolon", "proba": 0.9999992847442627} {"commit": "7bb388bd946e39247b92abee7296e68f8cfb2223", "message": "Add support for the MLX90615 sensor\n", "proba": 1.3099402451643982e-07} {"commit": "e3eb42e0c6bc2533d53099f9671aed3ec1078020", "message": "sending incorrect fieldname with error, easier to point it to user\n", "proba": 2.411173625205265e-07} {"commit": "85e31294292fb3791c84f76118f6cb23b1d25c58", "message": "Fix double import\n", "proba": 1.2142177183704916e-05} {"commit": "1d692f8932a605ed21cf5a212170cbc565be56a7", "message": "Update auth.py", "proba": 1.2510704436863307e-06} {"commit": "efb6439b3621e408c7567f7ff36aafaedaad00be", "message": "Fixed error with data return\n", "proba": 4.40530214973478e-07} {"commit": "f416cc084ba5c26dcd5c8667f2eb5a3b3c97daa0", "message": "Fixed some minor pep8 issues after rebase\n", "proba": 1.293184652695345e-07} {"commit": "2012bdd9043f8996152b763b6136c1c2734af261", "message": "fix GEP::toString()\n", "proba": 8.488434832543135e-05} {"commit": "8210392beb180badb5dfacd1e732d94f7ed2df94", "message": "SINGULARIZE WIP\n\nHi ! Thanks for your code , I use it to convert to singular\r\nwip for now", "proba": 1.374534832621066e-07} {"commit": "bb7bf9d57d35faa66566d2a502cec0f2bbfce9ed", "message": "Fix missing path separator\n\n\nFormer-commit-id: ca3de7a67882c1b23c39602b7b5457c90cded94e", "proba": 0.9999994039535522} {"commit": "2a50b948902e130cfc4764880140445c0cb59d71", "message": "removing old files\n", "proba": 3.7903134852967924e-06} {"commit": "11ab9231aee62ca0948c2c290cba394918923a62", "message": "fix(worker): except, log GitlabListError and continue processing\n", "proba": 4.004572247140459e-07} {"commit": "c25365d5ff658ebb89c2e9515007ced77f55c80c", "message": "Be more verbose about why msbuild tools could not be found\n\n(cherry picked from commit 51834a4589339beae3b9d7a313f70b546392a0ef)\n", "proba": 3.852573797757941e-07} {"commit": "50e4e6ae5ee060ac1e52a4eb9758151b969c5570", "message": "[AC-7892] lint\n", "proba": 0.00018289650324732065} {"commit": "9d7180dd8f6b3aa2a07fa321dde0bce33be3fde1", "message": "Update aegea ssh help\n", "proba": 2.567133776665287e-07} {"commit": "46103c3468a5b0c742405225dbcbbec3478400cd", "message": "Optimization of /errors/ page\n", "proba": 6.235917453523143e-07} {"commit": "4151b8c000ac3f748f8878ff3b72c449b8f29ed5", "message": "Bug 1174216 - Don't store series in reverse order\n", "proba": 2.9717966754105873e-07} {"commit": "36de94fad7192b3197275de51875840084862f2c", "message": "Add option to print out a merged use-data script\n", "proba": 1.5431586462000269e-06} {"commit": "f6e879d9e011420b2ac9b605f3a2f6cf43f7fc3e", "message": "Remove extraneous print\n", "proba": 0.03591964393854141} {"commit": "da2b8fca54886f8112ce80c20264118a0ed40abf", "message": "variable ITI and more modularity\n", "proba": 1.693564826155125e-07} {"commit": "1e362dec5d54c7d9fb2dd4a9b2598610aacc9e05", "message": "tools: added road boundary for map gen (#1803)\n\n", "proba": 1.0448894727232982e-07} {"commit": "4cb81b785fbf11f9aeadcf535fcde6b22752d627", "message": "Forbid certain identifiers to start with a number\n\nvalidate_basic is used for checking the names of clusters, metaclusters,\nnetwork and DNS environments. Forcing these names to start with a letter\ndoes not seem to be a serious restriction.\n\nReviewed-By: Wesley Hertlein \n", "proba": 2.484691776771797e-07} {"commit": "5cabd065e1878ff9850150885b0c4c1e7c1eaad0", "message": "Arrumando listagem de vencedores\n", "proba": 3.3208729632860923e-07} {"commit": "5ac6e36e454c4511fc13777e29be6309eb3f4422", "message": "The bug in computing shift KL-divergence in the body of tf.while_loop has been fixed. Image inputs have been removed from tf.while_loop arguments and are now accessed from the global context of class members.\n", "proba": 1.0581786824559458e-07} {"commit": "97ae0bf15f43f5937ee747678bc1e46756d9b85c", "message": "removed typo\n", "proba": 4.8293022700818256e-05} {"commit": "0d6d452c185708752145d4847d0ffe55e623190a", "message": "added EM Bright info parser\n", "proba": 1.3828524458858737e-07} {"commit": "3e008fd51b12a81c404870a7fb1d01f82363907b", "message": "FUP: Unit tests for https://review.openstack.org/636970\n\nI forgot to add unit tests to the original change.\nThis patch adds the missing unit tests.\n\nChange-Id: If281f9a8c33864fa18a3b8a8de854816f5773efe\nRelated-Bug: #1578989\nRelated-Change: https://review.openstack.org/636970\nSee-Also: https://review.openstack.org/502306 (nova spec)\nSee-Also: https://review.openstack.org/508149 (neutron spec)\n", "proba": 1.4152275298329187e-06} {"commit": "2489429d323644945dfbbc4947cb18ed78b6540d", "message": "Fix server error with float timestamp\n", "proba": 6.049391231499612e-06} {"commit": "3d06718c933e8d730233c2b178340fd43e4160a9", "message": "Fixed silly pyevent bug.\n", "proba": 1.1638523034207537e-07} {"commit": "50d67a9d6a85c5887a965b522039f4cd77688b98", "message": "Add --only option\n\nAllows you to choose to only look for include guards, or only look for\npragma once.\n", "proba": 1.0343681111635306e-07} {"commit": "22147c110182ce88a67de6c109f961ac8850818b", "message": "small fix\n", "proba": 5.359547685657162e-07} {"commit": "ba204025bebe67be858d18fb355d5cbf35e72acc", "message": "diecutting: Modify some part of the method\n", "proba": 1.0722252454797854e-06} {"commit": "2b5a67da68ef8c5a6ea758e694bd275b6f606d84", "message": "Update formats.py to use proper markdown list formatting\n", "proba": 2.643967320636875e-07} {"commit": "9b2d90aa5f28503dce35d53f9c76d49eec5244b4", "message": "- fix a glitch with how the default thing worked out\n", "proba": 2.855025797998678e-07} {"commit": "934b842cd7773e10a5af884dceaabdafc6648834", "message": "stats tests\n", "proba": 1.0325481980544282e-06} {"commit": "f33ee01e6456734ab723ee4444b7bbfb706b29be", "message": "follow-up 15d74b4e19147736eead6e868c2bc4e63f47da0e\n", "proba": 1.056460587278707e-05} {"commit": "026f254f952a646439809a141f553409999f190c", "message": "Fixes the grsec test with python reformatting\n\nKERNEL_VERSION is defined for each function as required.\n", "proba": 1.0257804206048604e-07} {"commit": "3ca865e0d6ba973e533a8f2d062a3b6c5942df03", "message": "can count by bases\n", "proba": 1.1227268714719685e-06} {"commit": "1160423a3ee96629c08f872159f14a2f6311f131", "message": "indentation corrected\n", "proba": 9.829654118220787e-06} {"commit": "5c7a8f302a0a7dbde4160f54f93cfa968d163770", "message": "Fix typo.\n\nThis should have been caught by a unit test!\n", "proba": 7.391167287096323e-07} {"commit": "8a2b874a0dba27ef638d5c67daae9577f5eff0c0", "message": "Variable refrenced before assaignment\n", "proba": 2.972022230096627e-06} {"commit": "b521ab3c5f67e659e0db4636ef66afcfca085ff5", "message": "CSV to PKL converter now converts indices as well.\n", "proba": 1.0328343336141188e-07} {"commit": "9e787a9cea908cfe5ee2627b6e61ad17201f40d2", "message": "Replace notification queue with exchanges\n", "proba": 1.3114445209794212e-05} {"commit": "aa858ad2c9b592b8b453283f4cce4da7d906bb3d", "message": "Revert \"Add clang options\"\n\nThis reverts commit b482faaf9d85e8d710151e544d7cf79ad1823665.\n\nThis breaks things for some reason...\n", "proba": 1.1135250588267809e-07} {"commit": "dac5db8266b659e31b8161777539c0bc12957ddb", "message": "print errors if experiment methods fail?\n", "proba": 4.658401394408429e-06} {"commit": "5fd5864bd2f414686d9582354c8896bde3022934", "message": "new juliaset optimized\n", "proba": 1.4785021562602196e-07} {"commit": "c09ff2e6ed9ada1d46f20fd2aba62a0872f96340", "message": "Added debug logging messages for errors view\n", "proba": 1.9004049534032674e-07} {"commit": "25e3101390e364fe5dce383b40deebfa7d7488bc", "message": "1.\u4fee\u6b63\u5904\u7406 linux \u547d\u4ee4\u7ed3\u679c\u65f6\u7684\u4e00\u5904\u4f4e\u7ea7\u9519\u8bef\uff0c\n2.\u5c0f\u6570\u70b9\u56db\u820d\u4e94\u5165\n", "proba": 1.3338963356090972e-07} {"commit": "c64b0cfd74037dbbb44925fbb868e95aefea6388", "message": "Support filter based on CPU core (over)allocation\n\nChange-Id: Ieb15c71e7a335fc642687fe59a3cc2f9929ade26\n", "proba": 6.068802349545876e-07} {"commit": "e0d1504bd8e56219893a9ebac9768599a47a45b2", "message": "fixing size of panel name box\n", "proba": 3.72744608512221e-07} {"commit": "33ccf5e1e1895ace11fa179e36f79e6b31b8979b", "message": "example: hide Article text items\n", "proba": 0.0007397762965410948} {"commit": "a388201d9820993da01ee3fc78506b93a5757fc4", "message": "fixed another bug\n", "proba": 2.0313724746756634e-07} {"commit": "d4ff884350d77aae39b8d91734dc4d05b766888c", "message": "Fix a bug in CF storage driver - update the headers instead of overwriting them.\n\n\ngit-svn-id: 353d90d4d8d13dcb4e0402680a9155a727f61a5a@1101197 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 1.934141073434148e-05} {"commit": "b2e4e8450ea83b8a78015ff00bd081440b3bbdd8", "message": "add another weird variant of the emacs mode line\n", "proba": 6.994139880589501e-07} {"commit": "d40beb214ce4f432518e362519a830bad0976e12", "message": "add [[%s]] so it makes it easier for other scripts to use the log file\n\n\ngit-svn-id: 2e40ff80485b5e2f2cc1551d2bae08335b3d761f@217 03ba9718-dac9-11dd-86d7-074df07e0730\n", "proba": 2.258215499750804e-05} {"commit": "15010eb7cd71fd1c7b07f2dd905903b2c8d6cbff", "message": "use os.sep, let joinPaths take any number of args\n", "proba": 4.8854803026188165e-05} {"commit": "a011c3aedcd4e2aeb4a7bb2aa192703ed6996eca", "message": "\u30a4\u30f3\u30c7\u30f3\u30c8\u304a\u304b\u3057\u304b\u3063\u305f\u306e\u3067\u8abf\u6574\n", "proba": 4.451359814083844e-07} {"commit": "7e35ab0fbecef2543ba1bef2968d4f6774c87b0a", "message": "Updated style to meet PEP guide\n", "proba": 1.3076686400381732e-07} {"commit": "1b2444831ea5b731e0df49cd946b1ad4769ff885", "message": "Fix a bug in update date membership every time a profile is changed\n", "proba": 3.940442354632978e-07} {"commit": "98d4b76da8850b96d5ed2be97ae49047bffc4d75", "message": "Compare unicode text to unicode text for messages\n", "proba": 0.9983635544776917} {"commit": "0724c2bb0f03bf80d082265e5e117a17eea3855c", "message": "fix foia autocomplete\n", "proba": 3.7886259178776527e-06} {"commit": "96ebb480737bfd9f9dd4cd111beaa946dd2da372", "message": "git: Show public repo in git apply log\n\nSigned-off-by: Fam Zheng \n", "proba": 1.2733796950215037e-07} {"commit": "7f5d5db7606ad63d8e04058664cd6435818ae43b", "message": "Added support of NOT logic for filtering tasks by status\n", "proba": 1.537511877813813e-07} {"commit": "08970df04b799fa35b36bc2a8a49457c924413d5", "message": "update merge_partition_pairs to be compatible with merge_partitions\n", "proba": 3.069905574193399e-07} {"commit": "a826901a4765aa07b762cadbb599363fc588b199", "message": "Bugfix regex.\n", "proba": 2.0425190427886264e-07} {"commit": "2e1f2d496d2bf935a40dc683b5ec7317a757d3f1", "message": "Augmented fix for neutron session expunge failure in L3\n\nCloses-Bug: OPENSTACK-2433\nChange-Id: Id1fd6e3046aada1df54a51aa5d7650693ee1607b\n", "proba": 3.987449872511206e-07} {"commit": "ca406893e714092723d4abfc7a7a632f1d876a9f", "message": "Clean up code (just a bit)\n", "proba": 1.6723039664157113e-07} {"commit": "ae9c921d654205f9b5c25b6e92d98ad8aad758bb", "message": "Fixed bug in wizard in feature view.\n", "proba": 1.0875248790398473e-07} {"commit": "b7625f329eba561ca44969425f204e30fcbe722a", "message": "don't break within unit\n", "proba": 1.924976459122263e-06} {"commit": "90181da92e500f73963f6bdf6c1ee4dfc67a3793", "message": "found bug\n", "proba": 1.2649643394979648e-06} {"commit": "199df0c4d56afe841925f672f3ea764a85ce2f0d", "message": "10% chance to reject read if abnormal gc content\n", "proba": 1.260017938875535e-07} {"commit": "956e2a6707cc4173fd587e90681da0726def4880", "message": "fix in sdss: kmax set automatically\n", "proba": 2.5843803541647503e-07} {"commit": "3e139dc33a20930550936f1e770c02c6bfece86f", "message": "make PropPreservingPartition.prop_symbols a set, instead of list\n", "proba": 3.002619996550493e-05} {"commit": "d0f45ef61992797eefc0b7b5f7b9496df162253a", "message": "Skip r3pc tests until zmq socket collision on buildbot is resolved.\n", "proba": 1.0508253467378381e-07} {"commit": "475877ff57877a48aa98122ca41481821506ba64", "message": "version 0.8.2\n", "proba": 1.4560065437763114e-06} {"commit": "ae241b50a8c7640a1784134fee683fe244bd0cbb", "message": "Show traceback of errors\n\n", "proba": 1.5566833155844506e-07} {"commit": "2747fdb9705bc9562c06023043fa6408c3c078d9", "message": "Add radio_fields for restaurant in admin.py class DinnerAdmin\n", "proba": 3.925675002847129e-07} {"commit": "5d5b7343c18d004b6a7a3eaf2c55bdb8a9c23866", "message": "Revert \"[ADD] Se agrega denominacion \"D\" y posicion fiscal \"Administraci\u00f3n Federal\" para AFIP.\"\n\nThis reverts commit 189f75835d43d94bbf2e6ec47dedb0d48a705aba.\n", "proba": 1.6685507375768793e-07} {"commit": "7be76eea2456713f3e25cee69b477923ff3e692c", "message": "added new field\n", "proba": 2.1040219166934548e-07} {"commit": "21a50fd9511eda5cca9cae3628a992b7a64dca26", "message": "dash region | fix json output\n", "proba": 5.087471436127089e-06} {"commit": "0c616fa8a020dd504be798076430d90997b82ac7", "message": "Added functions in main to be included at the module level import\n", "proba": 1.7254841111480346e-07} {"commit": "d5c8e177288a6b248872775b7472a4c5ada547c7", "message": "version 0.8.5\n", "proba": 1.2770710782206152e-06} {"commit": "acdb28890be32867b8e5c39c14bd33ff18c18671", "message": "cosmetic\n\n\ngit-svn-id: 81e381228600e5752b80483efd2b45b26c451ea2@10792 e27351fd-9f3e-4f54-a53b-843176b1656c\n", "proba": 8.059838023655175e-07} {"commit": "244cd3e25049812863275bf256da9af9fc0cbf9d", "message": "fix of pylint and travis errors\n\n************* Module l10n_de_toponyms\nl10n_de_toponyms/wizard/l10n_de_toponyms_zipcodes.xml:1:\n[W7930(file-not-used), ] not used from manifest\n************* Module l10n_de_tax_statement_zm\nl10n_de_tax_statement_zm/readme/USAGE.rst:5: [E7901(rst-syntax-error),\n] Enumerated list ends without a blank line; unexpected unindent.\nl10n_de_tax_statement_zm/readme/USAGE.rst:5: [E7901(rst-syntax-error),\n] Inline emphasis start-string without end-string.\nl10n_de_tax_statement_zm/readme/USAGE.rst:5: [E7901(rst-syntax-error),\n] Inline emphasis start-string without end-string.\n-----------------------------------\nYour code has been rated at 9.87/10\n", "proba": 3.919735536328517e-05} {"commit": "6832d44f5f28a597a6f5e841f17d6e12aef1dcf0", "message": "Added underscores into name error message\n", "proba": 2.6289717425243e-07} {"commit": "46c5c570f7009988035f78e2b442d11235faa762", "message": "Changes for separate downloads directory in build script #911 (#1079)\n\n", "proba": 1.0575854503258597e-07} {"commit": "dbe69880b435be670c310611732b01d0c176791d", "message": "PEP-8ify.\n", "proba": 2.677476686585578e-06} {"commit": "62f4801ed70984abc92f7e2c48cc4152a5f72260", "message": "Standard Django advice is to not use null=True on character data fields.\n\ngit-svn-id: 72004cf0fdb91158a18fb5306bfb1f89abf93d11@201 ab604574-8a94-11dd-aa62-cdabd1f4ca1e\n", "proba": 0.006753543391823769} {"commit": "50567cdd968038f61e7d23827f26f38c1943f33e", "message": "Bug fix\n", "proba": 5.465154799821903e-07} {"commit": "76fd5bf2739a433175a6b227a31312a2801c2ca3", "message": "Fix dogepartyd to check the correct version (of dogepartyd) fixes #4", "proba": 1.5278313014732703e-07} {"commit": "ae202b3f817e943c61a882614135fbe824da43e7", "message": "Minor doc updates\n", "proba": 2.146285424942107e-07} {"commit": "31cff363758a17f5a57e0d2f0d125f5f619e5823", "message": "In debug hook detect exceptions caused by infinite recursion and produce a more meaningful stack trace\n", "proba": 3.17115109282895e-07} {"commit": "6185efa6b2a2c06d7502722d170f1c09b256539a", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "14d2bbbea59082f3e025f20e143069574c93d8c0", "message": "error on signal strength\n", "proba": 3.033120947293355e-06} {"commit": "1203922fb10503894c6ac7c751b99808245f9286", "message": "Changes to ECO dataset_converter\n\nfrom_tuple now returns a list\nCloses #761", "proba": 1.4211728682766989e-07} {"commit": "d36210dcdf42e89b7a81c9f2644db222d9f3a6ec", "message": "Version 0.43.0.\n", "proba": 1.3887255079225724e-07} {"commit": "4e5adcb85d943951d1ac998cd835313856ded7d1", "message": "ID conversion functions in sgrid\n\nAdded functions to return the \u201creal\u201d ID from position in an array of\nall interior nodes, and vice versa, to structured grid.\n", "proba": 9.904255904302772e-08} {"commit": "46fd6b61ba48608ea2f805abde5d59f6bad5d340", "message": "disabling now removes menu entries.\n", "proba": 1.1837359892297172e-07} {"commit": "5fb87ad308a52dee4d6e9024fb4f519afde9a9da", "message": "Localization: Make age and time_difference function translatable\n\nThis also adjust the cutoff for the \"about 1 day / month / year\"\ntext to 1.5 days / months / years, just like with hours.\n\nIt also fixes the since_date parameter to be converted from\ntimestamp just like from_date. This will happen only when\nsince_date is an integer or float to not break any code.\n", "proba": 4.1134288153443777e-07} {"commit": "11daa6f7ecc4cbea68d8acb76d323a8c87f06ea8", "message": "Added JER and XER to command line tool.\n", "proba": 1.0488869861546846e-07} {"commit": "00b9970160ae2c00bce2ea04e82070036625f136", "message": "Introduced Menu object for handling unregistering menu_items which does not have any entries left.\n", "proba": 1.0740740208348143e-07} {"commit": "4ff7e24b92cad52d0567205827cb4bb4445c6b6a", "message": "Rewrite instance backup strategy (nc-283)\n", "proba": 1.0738154969658353e-06} {"commit": "77fb1ab513c14d591c63e8e6bd16264212a07012", "message": "karma: pull up the karma for a given user\n\nsome comments changed as well\n", "proba": 1.526900518911134e-06} {"commit": "ef8b2174b42e53d349d411cd68247fa0ee8ccb79", "message": "Version 0.111.0.\n", "proba": 1.4468636777564825e-07} {"commit": "e3ca79bdacb8cffa848851be2ab951bea5176edb", "message": "Pass original object to fossil convert function\n", "proba": 1.6115258176796488e-06} {"commit": "3c8a41ea266e9dba9b310185d8c5afd9c7d745a8", "message": "Use property instead of method call\n", "proba": 4.352932592155412e-07} {"commit": "667d351b9debff597649ea6da83d28c549ef9879", "message": "just add this class to the baselist to start, use common code\n", "proba": 1.4337570064526517e-07} {"commit": "d7fca807c8e05e60a88bf78b238d3c24e547e7c2", "message": "Makes senate permissions query by email instead of username.\n", "proba": 4.4080508132537943e-07} {"commit": "ee3b0f2e50b78f3a8a2ca1b4937502da68d3db35", "message": "Properly define raw_input)( in Python 3\n\n__raw_input()__ was removed in Python 3 in favor of __input()__. This change ensure similar functioning in both Python 2 and Python 3.", "proba": 0.00018994856509380043} {"commit": "a2e944b62f3c3f29924d8c1db7ae1eaf7423f3ad", "message": "Add explicit encoding to allow delta character\n", "proba": 1.1791084943979513e-05} {"commit": "39ce002406e894cd4368014df1c8e5fe87c1e0f9", "message": "Make existence of argcomplete optional\n", "proba": 0.9999936819076538} {"commit": "d106308e7156a39a3bdd11f6daecca493dbd3922", "message": "fix up conversion for tainted troves - set all troves to tainted\n\n", "proba": 4.1505962144583464e-05} {"commit": "260621fa71db767a4e2e8e6efe63e5412b7a7296", "message": "Update sif_assembler\n", "proba": 4.7671801439719275e-07} {"commit": "54bceee9e184039ebdc69f065b0550b5859fb737", "message": "make num_generated_cases also settable by env var\n", "proba": 1.1810820979007985e-06} {"commit": "23d810c9492e9af588383ac00827092c17c7bfef", "message": "omfaspect now weaves AddSliceTag to track omf_control and sets vsys\ntag (dotsshmount) automatically.\n\n\n", "proba": 9.914424481394235e-08} {"commit": "eaf39e39fb53f69b2dcf41f80ac2e299654f4476", "message": "3.0.0a4\n", "proba": 1.2087079994671512e-05} {"commit": "b6b5a13c78edf7f3ff236fb195ef1882eb5d77ee", "message": "unnecessary code\n", "proba": 7.829769310774282e-05} {"commit": "19757e8406b19ef296603c35fabdc4c9227c265a", "message": "Tweak another server flow function name\n", "proba": 2.3375602609121415e-07} {"commit": "832f1b1d0672aabd32aaae832ded77a98c76a930", "message": "Change the method to get the config path\nand put the save file in a \"coulr\" folder\n", "proba": 4.1227011138289527e-07} {"commit": "a8090d80e5127eb65573e597f5d4f2a595906c92", "message": "Micro optimization\n\ngit-svn-id: b0ea89ea3bf41df64b6a046736e217d0ae4a0fba@4 806ff5bb-693f-0410-b502-81bc3482ff28\n", "proba": 1.8326820736547234e-06} {"commit": "e15801a4b5b409ac626b7edd5af12a6214db686e", "message": "Added coverage for the case of using last() with a predicate on an empty generator.\n", "proba": 1.13608749074956e-07} {"commit": "1d39b51d7d458245eb3f61435506ab644eacb569", "message": "change version to 0.0.4\n", "proba": 3.228450441383757e-05} {"commit": "036c9a2cec7c109dadb2ea8cf2f1099362772deb", "message": "Replaced the string concatination with format calls.", "proba": 1.0109541790370713e-06} {"commit": "109222e9e600042ce9e8182b1b18b0fc99dd376c", "message": "Remove DEBUG settings for production.\n", "proba": 1.1832315038873276e-07} {"commit": "4e5037fa80fff40c5f3c86b4146c8a6086532fd6", "message": "limiting doctests to .txt\n", "proba": 8.892283744899032e-07} {"commit": "1c56f1b5df431f493cc1e0a2490cb982b50d5b04", "message": "anchoring the colorbar\n", "proba": 9.938390803654329e-07} {"commit": "c5634b857e396389fc0366601e22ed37c8617e38", "message": "Improved mapping to ethnicity supported by OHDSI\n", "proba": 1.5349216653248732e-07} {"commit": "8ab2a348c737cd54bf9dcdfe5d5fd7b57eb5079b", "message": "Supprimer l'affichage en console de OK\n", "proba": 6.194821253302507e-06} {"commit": "25b3deadcecab36051c8c6516daea4c6f0f86272", "message": "fixed unit tests after changing HtmlReader API. also cleaned up tests.\n", "proba": 1.1035937319547884e-07} {"commit": "40101cc3da18b3fd5ebf631968d4376c2a5305d5", "message": "Watcher prints metadatas instead of shit\n", "proba": 3.808252699855075e-07} {"commit": "beb9121b8bc1d93ac5d2c19ed28f29305249c417", "message": "ENH: to ease the configuration, do not require a simulation producer", "proba": 1.858731053516749e-07} {"commit": "07a919e7fb59dd5e9755f046e13e7914a860f3c7", "message": "Add envfile input format\n\nFixes GH-38\n", "proba": 7.80844459313812e-07} {"commit": "a22c2d588f3c264118d4e4d0d4c79ac2d8659d6f", "message": "Formatting fixes in morphology model docstring.\n", "proba": 1.1298671154236217e-07} {"commit": "9822b6a665e47b51ae9b1a83302326ce2626d597", "message": "Remove unnecessary import that causes problems with Python 3.5\n", "proba": 0.00018262918456457555} {"commit": "aa6f199609171216f17c11eda25ee8769b3fbd4f", "message": "Print base help when a nonexistent help topic is asked for.\n", "proba": 1.3164348899863398e-07} {"commit": "8d3c740f133060137332598f8aa9a7eac5c51ccc", "message": "Enforce autoloading of `core`.\n\nSigned-off-by: Laura <07c342be6e560e7f43842e2e21b774e61d85f047@veriny.tf>\n", "proba": 2.717802374263556e-07} {"commit": "f9aaf3164a4263e1a1d23e84b420b8a6dbb35e7e", "message": "Propagate alpha values from color/alpha args if fade=False (#2)\n", "proba": 7.04757667335798e-06} {"commit": "1c749751733284ffd3b2fbd588fca9157044c7ba", "message": "Fix bug #436\n", "proba": 1.4346953491894965e-07} {"commit": "2a130f3d83d5b43d3bedc462b8e282f00ae8c3e1", "message": "fix: force X to be np array\n", "proba": 0.9989486336708069} {"commit": "b7cc826dcfe419a3a466ffacdf0cefc96bffb190", "message": "To handle the last redirect", "proba": 3.2168131269827427e-07} {"commit": "2d31bd151da68a9263865e1219e17ce60601cc80", "message": "Use sets for raw xrefs\n", "proba": 2.319895742175504e-07} {"commit": "53dfa851134965ce8328b1950db0ed5cfd2ec8dc", "message": "Use CAS/ChEBI lookup in BioPAX processor\n", "proba": 1.429925475804339e-07} {"commit": "a1cd3f4f595f85d9bf0b8ce0cb5e41241b4990d4", "message": "Updated from Brython Server: 1/5/2016 5:01:32 PM", "proba": 1.1346419626079296e-07} {"commit": "55e51cc7c34813105022af6b59d1db4eebcac5d1", "message": "Add two more nodes to mock ontology\n", "proba": 5.598707275566994e-07} {"commit": "93a3a30abffb412894cad9c326c28fab88b7b7b9", "message": "Use float64 for reward and returns in MFG predator prey\n", "proba": 1.2863347365055233e-07} {"commit": "9ae0cb2e08762e67a00d9d3039fb00908e39ded4", "message": "Add another node to the compositional ontology\n", "proba": 1.4061345154914306e-06} {"commit": "3fbf794650cc23a47005ed8f28473776089d0cd7", "message": "FIX restart all\n", "proba": 3.1163676794676576e-07} {"commit": "39c77b1e7dd22f07fbeb28758f3c637e1766a258", "message": "use proper permissions when checking contact profile access restrictions\n\n", "proba": 1.7478592440056673e-07} {"commit": "9a88f672e89778688add91a397cc7b5064a39740", "message": "Rewrote most of the code to use astropy tables and fixed add_data() to work with spectra as well.\n", "proba": 1.0175356379704681e-07} {"commit": "a729a04660af807dfb1d06ce4b98675e04af65fb", "message": "adding notes to header\n\n\nFormer-commit-id: ad9ac9f2e9b19eab9c4cf870e08c5cc0ed905ee2 [formerly 621b9cdf24106fcda07da3cd8aa1642fe62c0631]\nFormer-commit-id: c33092cbad6fbffbee1ea3663709ad5769111c74", "proba": 1.6602855339442613e-06} {"commit": "805e83d2091b312d8608be93e36260536ba9cb87", "message": "Updating module_utils/facts.py in v2 with v1 version\n", "proba": 5.420432671598974e-07} {"commit": "7fa547be48d6192e2572b9ade25f490bbd6ec0b4", "message": "Cut generator flags\n\nThis simplifies the code, and may slightly improve performance.\n", "proba": 1.0868074440395503e-07} {"commit": "5f9e7d09cb0c6efd01816253611092c1bbc51495", "message": "Python 3: the content of a FakeResponse must be bytes\n\nEncode '_content' if necessary.\n\nChange-Id: I25c1e1cd5330f0519bf062be840045d0ef520b28\n", "proba": 0.9999992847442627} {"commit": "6f6427d528bfe39cc3b0e8b1a61642c055eb2755", "message": "Reliably detect pointer types\n", "proba": 2.7292438176118594e-07} {"commit": "d0c19f2ab178e2286c32202e79b2ca9a3cd0fade", "message": "renamed to file_test.py\n", "proba": 1.3682973076356575e-05} {"commit": "3ae000dd7a239b694bb5364b2c9b6c89b1ece73c", "message": "Release 1.1.23\n", "proba": 1.6894173882064933e-07} {"commit": "f12fb187717e1f96acecb14ce2654800b616d803", "message": "Allow multiple keys in property lock\n", "proba": 7.461283075826941e-06} {"commit": "1aa88aab6023a34cdd2abec8c07cffe8c960c678", "message": "Follow PEP8 where it was missed\n", "proba": 1.2933338666698546e-07} {"commit": "2ee78156a8d1b8c99377cc7404a17bf00bc286c4", "message": "propatinize\n", "proba": 8.811094630800653e-06} {"commit": "09063f2e69e868478480dfa9554903c814498a48", "message": "Add __str__ and __repr__\n", "proba": 0.001121746958233416} {"commit": "67af3cd6190ebada8a4d2a963384bf8613e22bf8", "message": "Fix Bug: if set the kernel config item \"=y\" or \"=m\", in source insight config it must be value=\"1\". the value=\"\" means ignore the preprocess condition, source insight will parse the source statement between the preprocess marco.\n", "proba": 1.7453140799261746e-07} {"commit": "630b97656a18c0730d40a773fe179b41e5812c20", "message": "Copied over URLs.\n", "proba": 1.5436090450293705e-07} {"commit": "19affe24ca4819821e246584b55842786baf4ecc", "message": "LP-2067 OTHER Create 4 dummy pages on LP\n", "proba": 1.2193356724310433e-07} {"commit": "287e822dc213caae7c797b9f14c4effc6f57cb4f", "message": "test faculty preferences\n", "proba": 6.249449597817147e-07} {"commit": "3e1e7dc5b93ccf85a697d63a0aed1d78002dee43", "message": "Fixing new STATIC_URL setting to work and be backwards compatible with Django versions before 1.4.\n", "proba": 9.840722725584783e-08} {"commit": "acb0d34e15dce85cbfb6ee170493d0d29d0239c5", "message": "missed t004 on last commit\n", "proba": 1.2872133936525643e-07} {"commit": "d39fce3b4c4e040d06156fb260dc49d953a63908", "message": "test per idx\n", "proba": 3.871327578508499e-07} {"commit": "093d0b658657a33e01bf0a1876086c99d56e2a07", "message": "Debug ratio.\n", "proba": 1.849956134947206e-07} {"commit": "08efc999bd0c2e186daf7ec103f17925c0faff8f", "message": "QS.fill_cache() returns self\n", "proba": 5.904340696361032e-07} {"commit": "b63c61eeaf720b943a04d9a7581d3e4e567e4949", "message": "Just updated the python binary path\n", "proba": 1.4389802061032242e-07} {"commit": "6ce462e845a4cd38d94d0c858f3e7b5a1b0b8259", "message": "some logging\n", "proba": 5.834061767018284e-07} {"commit": "71ffb375b83d047ec1ce3875e23e64c412b269d1", "message": "refactors elements of parallel processing into separate methods\n", "proba": 3.662989684016793e-06} {"commit": "8e425bf0a264b548bb25f291fc602007f45c9803", "message": "implemented 'Browse' tab for tables, stubbed out 'Edit' tab\n", "proba": 3.805867265782581e-07} {"commit": "7b80d0e7e1f8da89b982aeaaf784901c0597044f", "message": "New class Calendar; Renamed module time to calendar (still wip)\n", "proba": 1.0617105772325885e-07} {"commit": "7f13779b9713d6953f4ec574531fe349fdbbd153", "message": "Fiddling\n", "proba": 1.71573526586144e-06} {"commit": "7c3983ad47f3f64318dd316bfafa0aa0c999a708", "message": "Stupid me leaves artefacts behind. No more :).\n\n\ngit-svn-id: 49e84222a12f9056a3667f1bde25c384ce282746@116 2f8b185b-e3eb-40a7-945f-4de83c84e57e\n", "proba": 5.909540050197393e-06} {"commit": "c0f797600acf04ff6156994fa1144e2fca4f2f0a", "message": "Support StringIO from io module for py3\n", "proba": 1.4918101953753649e-07} {"commit": "8dc7b757db32f1b7d037b5f915722495a854e31b", "message": "Moar print messages.\n", "proba": 1.8362250386871892e-07} {"commit": "7f9a5a7951e3cdbb1015efcf06912317fdc406f3", "message": "inline_functions doesn't inline constants\n", "proba": 1.2619552762771491e-05} {"commit": "16a54227b9d5d9c2b87b8183eb76f1a1bfcfc78d", "message": "fix IndexError\n", "proba": 1.519238480796048e-06} {"commit": "644ef4290f58f9ac4061786141e6a3bed0ab0bce", "message": "Better default options to be more jslint compliant", "proba": 1.379727763151095e-07} {"commit": "e3832d555b5356de7e13eebbcfd10cce701a6376", "message": "added line break to overlong line\n", "proba": 4.787997909261321e-07} {"commit": "056eafb69c1442e4f976342661332d43819b5e48", "message": "iterate over items\n", "proba": 0.00010092194133903831} {"commit": "1eb085d8c0c504792c2d2e22e3e8988b26ba2046", "message": "v 1.6\n", "proba": 9.571463124302682e-06} {"commit": "7b59075ffc1a6ae1c77e2b53e3b7c34ea9d3a41e", "message": "Fixed stupid mistake in previous commit.\n", "proba": 1.1959603796185547e-07} {"commit": "31a0ed185ce18e9aeb2e643108499203cdd4b7bf", "message": "Do not use instance variable in FloatingIPsNegativeTestJSON\n\nfloating_ip_ids should be local variable instead of instance\nvariable.\nBesides, some codes can be optimised.\n\nChange-Id: I357d997a4fbc98f470f249ae47f7b19197f630bf\n", "proba": 1.2634411177714355e-05} {"commit": "4b78aeddccd046e29795292353c1921478884b12", "message": "removed doc redundant with README\n", "proba": 3.62222067451512e-07} {"commit": "67ef4e04e6b7fddba09130deadb03056c4993d39", "message": "Fix gender/race for new source people\n", "proba": 0.00015052605886012316} {"commit": "6c4ccc05f16e3834788a4bbdf99df96f2c3a61dc", "message": "update ledger code\n", "proba": 7.115082780728699e-07} {"commit": "d419f4d7b6f126cd7a15298c0125ae99768f5683", "message": "DDG calculator\n", "proba": 1.0506495300433016e-06} {"commit": "8cf65f7350b8b0b26f82715b5ddde895eb06ae9b", "message": "Fixed small bug in VGP viewer where parent was not a preserved variable so it can communicate with the main window\n", "proba": 1.989655658007905e-07} {"commit": "466fae62625d29c9d121ac3612239cae4f68c25c", "message": "Added explaining comment\n", "proba": 1.2422673023593234e-07} {"commit": "f96a973279c476c45cc1d2edea36f0bb5209feca", "message": "Update snapshots (#5474)\n\n", "proba": 1.3074578930627467e-07} {"commit": "7f656664f91df44c587eb42817c533f6a498f4bb", "message": "Give the TOPIC command a default minimum channel status\n", "proba": 7.309309876291081e-05} {"commit": "ffcca573de8224522bb010e0f8ab27138fb27735", "message": "Make manhole more secure\n", "proba": 0.0001239566336153075} {"commit": "8e93b746302cb87a0da67b2048cfb6e9c7592b81", "message": "I just saw that again and decided a comment there would be nice.\n", "proba": 1.0472358269453252e-07} {"commit": "26df32086d19a2ecd2f79bed2f54f6d79bd30729", "message": "Aka: catch with error if 'aka list' response is empty\n", "proba": 0.0009881025180220604} {"commit": "3a8b13816b05d523b94ccbee2907a5bf2748c10f", "message": "a minor bugfix in jython kernel\n", "proba": 2.0685989454705123e-07} {"commit": "4ed4ebc77e39f700dc9d43fee5fa6d5ebba17e78", "message": "Proper JSON formatting for the chapters list, now an array of objects, not a single object in an array.\n", "proba": 1.1890288220683942e-07} {"commit": "8b4ada9316071ee32dc1fdd43b9165611cb1b75a", "message": "Fix bot echoing text back to the Gitter room\n", "proba": 5.498332939168904e-06} {"commit": "b1df989af5c0719aa5ea162d5cf9bf65d6206c7c", "message": "Remoev _symbolic\n", "proba": 2.4192766545638733e-07} {"commit": "efcd2fc7b522f4961ed2ce90dbf0d04d13a1139b", "message": "bad string\n", "proba": 0.9999988079071045} {"commit": "c35e6d88a50ca29d678aa3d90e8a0569295c833b", "message": "Break out valid_every_X calculation in Logger\n", "proba": 0.0006635796744376421} {"commit": "bcd67ba94dc3293d035005f121329e259b537fb9", "message": "update keyword\n", "proba": 5.499017561305664e-07} {"commit": "10cbc7a99b5beceb4751eee8d1811e76e2d67fec", "message": "config update for heroku mailgun and postgres\n", "proba": 1.329079992729021e-07} {"commit": "8126fc9f6b70010a1499c2d00e1bd2f14d4877d4", "message": "account for alternate mouse wheel value\n", "proba": 2.2489189177576918e-07} {"commit": "ddd80e1f37cef1d7b3554ee24c385fa8cbbd568a", "message": "Fix format() for Python 2.6\n", "proba": 0.9999276399612427} {"commit": "ee170be4d82341fde846999c55a7d19a0459cc41", "message": "Update 03_Proximity_Indicator.py", "proba": 1.2566950147174794e-07} {"commit": "63b2dbf00cc134549652191fd76fa9c5df341082", "message": "Rename Z to Zs and Y to Ys\n", "proba": 0.02499840408563614} {"commit": "e32c31fd2ca953391a70326aff6a69da80fa7f3e", "message": "fixed not splitting name (again)\n", "proba": 1.4714562723838753e-07} {"commit": "905cbb2564d2330a570bd2f71907574f5c7616e9", "message": "Cascade file deletions to event_files\n", "proba": 3.0335553447002894e-07} {"commit": "35e1c3b66c69099423333facdb07c6eea5be9255", "message": "Modify the openconfig plugin - cleanup, allow nested state.\n\n\t* (M) plugins/openconfig.py:\n\t\t\t- remove stale checks (e.g., the standard grouping naming check)\n\t\t\t\twhich was not implementing any validation.\n\t\t\t- cleanup the code a little and add docstrings to describe the\n\t\t\t intent of each validation function\n\t\t\t- allow nested containers under state (special case of counters\n\t\t\t was allowed), generalise this to allow state/messages etc.\n", "proba": 1.833670069117943e-07} {"commit": "1d4b2294324ef612c11acbfba64a898833cf0aa9", "message": "[modules/demoinfo] Include OrderedDict in json.load() to return an ordered dict\n", "proba": 2.0901782704640937e-07} {"commit": "b0b9ea2fde86f42c50f12a8a62ea3d8bca9ba97f", "message": "Added AbbreviatedException.print_traceback and updated __str__\n", "proba": 1.1637990127155717e-07} {"commit": "69f00d2e736a85784daba8a979c1ec5c82358fc9", "message": "Fix project edit tests\n", "proba": 4.27158994398269e-07} {"commit": "4bb5022af0291818f9c51bf672e4946762d101cf", "message": "fibonacci_last_digit.py\n", "proba": 0.0002392019669059664} {"commit": "f17a901eee95d82023bd9a89d18ade7da8b7adf9", "message": "fix the unsorted dictionary key problem\n", "proba": 0.9999529123306274} {"commit": "34186d908af01aa05d255e91aba085d1ca4f1837", "message": "Increment the oder in settings so ensure the order is preserved\n\nOtherwise, and depending on the database, when a set has supersets, the\nexercises could be ordered alphabetically.\n", "proba": 1.1922331566438515e-07} {"commit": "1bd125abfac0fac6802c884886bc9ac0cbb098af", "message": "printics does not need to read from user after reading .ics file from stdin\n", "proba": 3.317682057968341e-07} {"commit": "71bc4056e61579d2d0263f3754ed348e49e34bb9", "message": "adding multiprocessing for valiation reward\n", "proba": 2.0880105466858367e-07} {"commit": "2ad4ee344f702d1a4ad4a07a142d7231d105e8f9", "message": "Fix baseform to get required flask-admin fields\n", "proba": 2.1977196240641206e-07} {"commit": "61492c6151b680bd8cf39866a28f8eb006545bb6", "message": "[modules/demoinfo] Removes the tabs from the module\n", "proba": 1.6493349619395303e-07} {"commit": "7b2a5408cfc79fa3a1e6d78e46dc61f82f6b170c", "message": "Remove __main__ from bottom of file\n", "proba": 1.9999424694105983e-05} {"commit": "724848827cd9a7a96ba8ab7c081291e6deed9f3a", "message": "Bump version (v1.3.1)\n", "proba": 1.373800984083573e-07} {"commit": "5a19de617feb0bb75770bb29540e649e1b4982c6", "message": "Updated get_raw_data_from_url function to accept reduced parameter\n", "proba": 5.248456318440731e-07} {"commit": "88d046ff15d7e52c55dd2d6084aa1c2a0e201c33", "message": "improve messaging\n", "proba": 0.00039038032991811633} {"commit": "0903a11de80e0db414963c2004b1a8143fc42e4f", "message": "compute only full ready data\n", "proba": 0.00041507178684696555} {"commit": "9ef84cd97216a3f8e257086ca603f36aa571ef8e", "message": "Bug fixes.\n", "proba": 1.3982099744680454e-07} {"commit": "4f0f897455891eb2c020bc01a3525675e2f8a818", "message": "Some small work on scenario_damage\n\n\nFormer-commit-id: db56d9448d7b07e79dd5e637ab8359e21e6101ce [formerly 22c2d2f86990d462b1a0f82f23bb6d6c793fd6f1] [formerly 22c2d2f86990d462b1a0f82f23bb6d6c793fd6f1 [formerly 420894eadba55da7e393c896b6a452e5b9ea2df8]]\nFormer-commit-id: 7dac05daa219147825faa17aedd071e17f5ebf89\nFormer-commit-id: aa715cccafbfe4f436ff046432606d741bb961c0", "proba": 2.6331714252592064e-05} {"commit": "40afcf7ee5d4a3fd80b60719384bfe3b7eb167f9", "message": "First Level\n", "proba": 9.548728030495113e-07} {"commit": "24fa9783b050e13ccff7417ab4a94090fb5e65c1", "message": "Switch from legacy Pattern to InlineProcessor\n\nSee https://python-markdown.github.io/extensions/api/#future.\n", "proba": 1.0380659887232468e-07} {"commit": "3c4f9835408d039e0147c5b0678af41ccbffdbd5", "message": "1.8.5\n\n#### Changelog:\n* Fix: build docker build.\n* Fix: ansible with latest pip does not work on LANG=C.\n* Fix: jsmin==3.0.0\n", "proba": 8.138537168633775e-07} {"commit": "67bbbb18a1a3fb0f7ce019a2c0656a6bee649169", "message": "Add an admin redirect\n\nPatch by: Sverre Rabbelier\n", "proba": 1.3074129867618467e-07} {"commit": "51f3baa18a6f2b3657c5721bab696c68b60f40ab", "message": "Fixing a model\n", "proba": 0.00014767798711545765} {"commit": "e088105cd2f0b3f2d4126b7a44a5f591e7f9b4fb", "message": "Temp bug fix\n\nThis should be fixed properly at some point.\n\nPatch by: Sverre Rabbelier\n\n--HG--\nextra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%401869\n", "proba": 2.438870012611005e-07} {"commit": "a2e82e42986d1bb4b22656008351654e17e4e37b", "message": "Added a deprecation\n\n\nFormer-commit-id: a0f151e2795de74830e8f7b9f1ca9b135e96d4bc", "proba": 7.49191201521171e-07} {"commit": "65f5bfa205a5bdab96e87a86c074afcd17ea75bf", "message": "Scan syntax: allow detectorless calls but insist on a scan path\n\nhttp://jira.diamond.ac.uk/browse/DAQ-2\n", "proba": 1.8568601944934926e-07} {"commit": "62f06c8a88765b0900391fcc725eb50e1f704065", "message": "Fixed an unicode bug\n", "proba": 1.8997648112417664e-06} {"commit": "795c9cc96b54e21293103c439a319ae8db6a1048", "message": ":rainbow: ir_attachment_url: take away unused method set_ir_attachment_url\n", "proba": 8.642081957077608e-05} {"commit": "e6c6ac55c16ef65554ff3c71882da283d57ad97a", "message": "Refactor write to handle error list rather than validationerror\n\nStill catch no data exception separately\n\nAlso returns error list for incorrect headers\n", "proba": 1.3855718350441748e-07} {"commit": "7e1df6017a368cdf68e12333dd436122b1f2eff7", "message": "Refactor and add proper support for wildcards", "proba": 1.3673309240402887e-07} {"commit": "2706e16ff97c863a1690d8f90fc1eb1100607452", "message": "Adds params field to BlockingConnection object\n\nIt is needed for pika_pool library which expects that\nconnections has params attribute defined in BaseConnection\n but BlockingConnection is not derived from BaseConnection\n and doesn't have it\n\nChange-Id: Ic86c4c4e929c53c116e73242b5f71aa1ec7d3d07\n", "proba": 4.036550672026351e-05} {"commit": "d8e33a09a54b0caa91752b1293a9fa7b84a83687", "message": "COSMITS: less implicit test for bads\n", "proba": 1.9828148651868105e-05} {"commit": "d94015188244b70e2fd3be724293ce5bd449f88e", "message": "Fix showing the phone field in vcard\n", "proba": 1.0867914852497051e-06} {"commit": "72d24fbbf58e4437668cc4d9441aa925d2072c94", "message": "return HTTP 204 on successful logout\n", "proba": 0.0027183354832232} {"commit": "c3651ead4f3d0dbeb0e8c2db5cb2275bcf3e9f93", "message": "modified procedure for week #1\n", "proba": 1.2643307911730517e-07} {"commit": "c7d3279af18dafa6841d49649b597172cdf341f3", "message": "clean code bs4demo/urls.py\n", "proba": 2.503830955902231e-07} {"commit": "c334571238ba05b6ff629851ab8b884c4b1a7aea", "message": "Fix ebs volume validation\n\n - Fix syntax related to validating ebs volumes.\n - Goal is to have one function be able to evalutae several types of\n ebs volumes for mongo data nodes.\n", "proba": 1.2789854508810095e-07} {"commit": "cf94a2c37554ba69a43a14ce06b4cfd6dec098e0", "message": "(- fix) Fixes deprecated setting in django-debug-toolbar", "proba": 5.31088574007299e-07} {"commit": "904a14225a214d080d0217dcb4af6ccd430e0e7b", "message": "Translation try\n", "proba": 6.981604769862315e-07} {"commit": "8727cda695dd667e7f0c1fd94664ca18dd09bc1a", "message": "Fix call to allauth adapter\n\nThis apparently changed at some point. This was triggered when no accounts were\nconnected and a project import was attempted. Webhook setup would try to emit a\nwarning message for the provider.\n", "proba": 1.0574341757774164e-07} {"commit": "9fcc9d867031b513983a7ddfd567107f89f2d9e6", "message": "Add squad to PlayerAdmin list fields\n", "proba": 3.0773713888265775e-07} {"commit": "8988bd915b21a948535a2f8d81f92e2ec5199131", "message": "Add /address endpoint returning responses matching /postcode\n\nCall this using slug e.g:\n/api/address/1-foo-street-bar-town.json\n\nDecided this is the way to go because:\n- client code that parses /postcode response\n works exactly the same for /address response\n- makes logging easier :)\n", "proba": 0.00013855895667802542} {"commit": "1a948d70201bd43f3b81c332809d9d4874bbb09f", "message": "Switch from comments to annotations for types.\n", "proba": 1.0679620032760795e-07} {"commit": "921c599203db320835805372fce8d2da83653454", "message": "style\n", "proba": 2.627134790600394e-06} {"commit": "9adb3af504014aa3232686c8e431c25aba224b56", "message": "`Dat.__hash__`\n", "proba": 6.941994797671214e-06} {"commit": "dddf2b822953a96e2b91cca49e69adc064b4fef7", "message": "Version 1.07: improved event managing\n", "proba": 1.952329995447144e-07} {"commit": "97751274de716ab048037bbc16bdaab1cd54930c", "message": "forgot to import json.......nate\n", "proba": 1.776318896418161e-07} {"commit": "79695028c05e30b114c7933b805b191f5c3f97e0", "message": "closed #479\n", "proba": 3.4898235412583745e-07} {"commit": "50bc76b443be8f2b9f9cb66cbb8b9e48c33ed060", "message": "zippyshare fix, coproduction by ernieb and hagg\n", "proba": 1.1794629983796767e-07} {"commit": "d436a21cd824c96595306cda7cba948c6612a834", "message": "Sort ensemble workflows by created date\n", "proba": 2.837596468907577e-07} {"commit": "de6fb571bea6a8ea0d2b98c80623f67e09bfb052", "message": "Add before_request method to read query_string args into g.query_args\n", "proba": 1.0077996194013394e-05} {"commit": "14115d21b4c2430ee7c5c6292bc3f1acc8fc7ff1", "message": "Add docstiring about Korean Address system\n", "proba": 1.282596144847048e-07} {"commit": "1d98fcf5eb691b3569b2475362d630bedfd1eea6", "message": "I added the unit tests for find_by_pk method.\n", "proba": 1.1517606424149562e-07} {"commit": "86fc2d438a67bb5f4e0045edab564ed093020c36", "message": "need context processor request template in django3\n", "proba": 8.648535754218756e-07} {"commit": "b8d0eca9eb4cd17e965251dcc5ed97933e49f7d8", "message": "Not letting batcher access private variable\n", "proba": 1.5967283673035126e-07} {"commit": "2378bc129cb903ac7392fbe5e899b60baca6b790", "message": "rebalance() broken since traversals use iterators\n", "proba": 4.5517086277868657e-07} {"commit": "f1b9805f0171301d10e4f4f121130e027f97c77a", "message": "psql setting\n", "proba": 8.666336270835018e-07} {"commit": "58d19e22f1c2cec8c17aeb9ca10702da5c497ad9", "message": "Hacer desaparecer a las balas destruidas en el servidor\n", "proba": 6.260867735363718e-07} {"commit": "6ea2ea085e6b491ca51de26c0293044222a8dbed", "message": "Fix bug in annotation reading.\n", "proba": 1.4718169438765472e-07} {"commit": "76b5052f48e6e6a1254eb2b65c22f0dd67efc045", "message": "More robust syntax that prevents KeyErrors\n", "proba": 9.812138159759343e-07} {"commit": "7a4b7f514a7e35ccf53d4fe99a4490cb02b74788", "message": "v0.77.1\n", "proba": 3.210733893865836e-06} {"commit": "e7177ca606e8cc58e4a1c044aac34bd6c5f9b3d3", "message": "wrong language construct\n", "proba": 0.9999986886978149} {"commit": "d1b98333352ab3e3d228c3a42d71c6affe5e36f2", "message": "Add QuestionnaireResponse model\n", "proba": 8.970337148639373e-07} {"commit": "53600b44d5293c5356ae00762cf52858b303d48f", "message": "Add clinician role (#3753)\n\n", "proba": 8.438514100816974e-07} {"commit": "cdf1f38ee77e30a9e95cfc049bb759ec1c3a8937", "message": "Implemented one-hot-encoding for the label column in train data.\nSimplified preparation of test data to drop all rows with NaN. Later this will have to be implemented as instead a drop of NaN for the second axis, since in reality we cannot drop rows that demand a prediction.\n", "proba": 1.1134549993130349e-07} {"commit": "396ee2baf194ba8520775ed8d6a98223ee87ef90", "message": "less code repetition\n", "proba": 8.917420927900821e-06} {"commit": "844400d59b93c34cb782082abc78d0daf602fe67", "message": ":arrow_up::one::two:\n", "proba": 6.532464340125443e-06} {"commit": "cf6a86ece907b260c7c054084dbfa981b8c62bc7", "message": "datapaths: Log port up/down mods\n", "proba": 5.193418246562942e-07} {"commit": "0866fab0254119d680daa82307bb9555587d07ba", "message": "compiler: fix usage of fallback compiler\n", "proba": 2.1493369786185212e-05} {"commit": "fbe9545bce0a3d824b80e280935cf2a5e055816d", "message": "schema: pylint\n", "proba": 0.9999531507492065} {"commit": "2c1c99a83e9f8db4d1de0e6e7eb77723e1f616aa", "message": "Basic ordering based on how many loved tracks\n", "proba": 2.454671914620121e-07} {"commit": "759328d6a4d64aa3af7b946ca9a9b4e2ee9d3b76", "message": "log: Add handler that prints to any stream\n\nSometimes it's useful to log to a different location than stderr. This\ncommit deprecates the `add_stderr_logger` in favor of more generic\n`add_stream_handler` which can be used as a drop-in replacement but\noffers customization of the target stream.\n", "proba": 1.6339343744675716e-07} {"commit": "dc73c6da6e1ed8064372aaf0b4fbdfa50dd35cce", "message": "really fix it\n", "proba": 7.891315476626914e-07} {"commit": "70fdab4ee6ec54e218ee4ca885935a8235247dbb", "message": "Bug fix.\n", "proba": 1.4808925641318638e-07} {"commit": "3a66d7f23d4c9ee3835f1935fab9b52613e29139", "message": "Modules: Wolfram Alpha Clean Up\n\nRemove the repeated request under cleanup\n\nSigned-off-by: Abraham Arce <1dfe57b55ce8f50c56dfae5c09e251b17f16c0ac@gmail.com>\n", "proba": 2.6403236574878974e-07} {"commit": "531e617e868ff623961bad243f2cda3b3554c19f", "message": "gpu enable\n", "proba": 9.59010662882065e-07} {"commit": "fa3a6a4feca968497b6d56b4a16b95114c70afb4", "message": "add optional fallback=False mode to context_from_environment utility func\n\nWith fallback=False, return None as context if we did not find the\ncontext from the module. By default, fallback to return an empty Context\ninstance for backwards-compatibility.\n", "proba": 6.70284578063729e-07} {"commit": "97bab8f4bf49cd15829bd83bcfad8fd1aaed9c66", "message": "Added tests and documentation for using host_callback in multi-host scenario.\n\nPiperOrigin-RevId: 372280876\n", "proba": 1.2529373805136856e-07} {"commit": "53598803664fb213e2cae43f341ce8277f998c73", "message": "add bad timestamp exception\n", "proba": 9.142867202172056e-05} {"commit": "9b03c93d14ed7530d44e5d5479df8d50954f87f2", "message": "add a __len__() function to path history iterators\n", "proba": 1.86386241693981e-05} {"commit": "12d8bd5a22f0cee1f99f87b37bbaec94f0a002bb", "message": "bump version to 0.19.0\n", "proba": 3.5272483955850475e-07} {"commit": "784144aa296f0e2b3580119f0abade4dd3e2c08a", "message": "Fixes deleting an image (cf. #822) (#861)\n\nCo-authored-by: Erwin Nindl <0c2a6e12a3ee3123563f88831cd6d692c33fb195@nindl.net>", "proba": 1.3322066649834596e-07} {"commit": "52974e1f6438494f3afcc3c4a9adfa373f5d842d", "message": "Add target version to log about missing version (#48520)\n\nCo-authored-by: Franck Nijhof <46f1a0bd5592a2f9244ca321b129902a06b53e03@frenck.dev>", "proba": 1.3849006563759758e-07} {"commit": "8b4e5c8a362216679288d70cb3d41e97f6f5abcc", "message": "copy the path history when a path is copied, since trim_history makes path histories mutable\n", "proba": 2.023438810283551e-06} {"commit": "870decc19199cdef6febaf581074c58bcfe0a494", "message": "feat: DAF-44 - replace weird @apply pattern with a proper @property\n", "proba": 2.0962288260761852e-07} {"commit": "a0d72b6f3c269a7860f81e93122aa2a338a02665", "message": "fix bug:\nopen new folder filename should be set to None\n", "proba": 0.9999792575836182} {"commit": "b76aeb6803d6d600ba7c4f787a93d893ddecf7d6", "message": "update... g *again*??\n\n\ngit-svn-id: 2ab84e18e69922d6354bab699308d90ee643e1de@1434321 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 9.83931272457994e-07} {"commit": "cbc4189eec3f387790613d9827315aff8dcf45b7", "message": "remove print statement\n", "proba": 0.9999992847442627} {"commit": "a8f39ba4c227a6196c1a003202fce731cd2629cf", "message": "mypy fix\n", "proba": 6.046341809451405e-07} {"commit": "85bb3ba979198f9e3c5bd5cdf8f5772cfb6e587e", "message": "Fix number of databases -info (over 20 -> over 30)", "proba": 0.00011229919618926942} {"commit": "8bf334a01b0d875261704fa7f1157766af4b3cca", "message": "stupid typo\n", "proba": 6.11011273576878e-05} {"commit": "627870b8a0d29772229cb8181eb08a6c6f1639fe", "message": "port changed\n\n", "proba": 1.622041509108385e-06} {"commit": "bf9f177cb214dda2f165199b0dfc61c8a6d75aae", "message": "implemented api endpoint to create or return a system\n", "proba": 2.3544586724710825e-07} {"commit": "fdfa1379ef680dde14a03267a535629b2c2b50fc", "message": "Added user/*username*/client/*client-id*/status message to mqtt\n", "proba": 3.1520229981651937e-07} {"commit": "64d1d08e753be4a1d05887ba4881f24b02a1f4e6", "message": "Added Client and ClientLog models to keep track of clients.\n", "proba": 9.936535860788354e-08} {"commit": "a91c316768d0945ee3ec7d7f66a6e99ef8592fed", "message": "Add __all__ to table_tree\n", "proba": 0.9999974966049194} {"commit": "6e209e3113465cd9b10f42764b974071d83d1436", "message": "add org data to zendesk tickets\n", "proba": 2.394304203789943e-07} {"commit": "59512ddb65ccb580508b54f07a87e5d26adcab40", "message": "Fixing a few bugs that popped up in DesignMatrix\n", "proba": 2.49189639589531e-07} {"commit": "91b6e14214fd5c5b7f07dd917e0f443b0b46715f", "message": "Remove unused imports\n", "proba": 8.691937409821548e-07} {"commit": "4a85ff0ec4ceb98ad87bec6002f6e67788b06d00", "message": "Use inspect.signature() if available\n\ninspect.signature() was added to Python 3.3. inspect.getargspec() is\ndeprecated since Python 3.0 and doesn't support keyword-only\nparameters.\n\nChange-Id: I09dd8a38cc3166bc55917bc0813185457b43a971\n", "proba": 4.720991455542389e-06} {"commit": "84ab3f873886bb23d8984273c32b6d4e2ab3cdb2", "message": "Fixup internal keystone registration with multiple IP's", "proba": 1.1894926643662984e-07} {"commit": "047a9864a76036c5d99b6f8f06eabd0001a81ace", "message": "Improve PRAW error-handling\n", "proba": 3.6562292393682583e-07} {"commit": "bcb89bfc21cf3866fd8352ceb2b289479c915af6", "message": "Added start of the diagram export function\n", "proba": 1.2976877883374982e-07} {"commit": "54d2c9d96611cdc98db0efd7c727a9f576861b2c", "message": "cleaned up output\n", "proba": 0.001496872748248279} {"commit": "e88be1e9d5c51ab45b733bbe5b0fe4f0d78c6a3b", "message": "Major update: resilient backpropagation and scaled conjugate gradient learning\n", "proba": 1.3648153185386036e-07} {"commit": "156a4b9aa1e041518784d338e17e2dc75bc48d0e", "message": "Fix app context error\n", "proba": 1.093763239623513e-05} {"commit": "51c604090b8ab082fe79b4e35702eed0f0e3c367", "message": "Fixed Context ImportError in Django 3.1.4 (#6)\n\n", "proba": 1.2742872002036165e-07} {"commit": "cc26ecec7b26217c521711d92c640a93419c2f15", "message": "Guess version by parameters for OAuth client\n", "proba": 2.2170497686602175e-06} {"commit": "79e283a661ade8f031b17141a2c1a94bfcdb622f", "message": "modified\n", "proba": 4.220560185785871e-07} {"commit": "93bb465d0759a22b34e65bffec74782b9d312baa", "message": "reinstating coarser resolution cases in dense bubble example\n", "proba": 5.011590360481932e-07} {"commit": "bb36e7f01e2d8db61e91b61b44a77007aef3c87b", "message": "rewrite advanced setting part, move logical statement into fluxclient\n", "proba": 3.939439068290085e-07} {"commit": "859c62aa94539a49e1a64c8d8dbf0e0d0b613f84", "message": "Added a flag to pryce_mating() that enables/disables the PA adjustment for recessives.\n", "proba": 1.046526989512131e-07} {"commit": "144d05763d447789e436c28dc72d73fc53d025a2", "message": "updated demos\n", "proba": 2.544895778555656e-07} {"commit": "278039cf290e73fc0e5b6cb3512b30c4f7012b72", "message": "cleaned up imports\n", "proba": 2.651026704825199e-07} {"commit": "596f77ff551356f192327fab73607caab0d93970", "message": "Extend CIMC server logging\n\nExtend CIMC server logging", "proba": 3.54884264197608e-07} {"commit": "436afa60d2b47ef7f484d6a0bfd66d98396dca3e", "message": "Second half of bugfix- global data is no updating correctly leading to regression on encryption\n", "proba": 1.7139380759090272e-07} {"commit": "fecf502bad37e60bf28801e73c6b1dfbbeb8df0c", "message": "Bump version to 0.10.0\n", "proba": 4.438236373971449e-07} {"commit": "f37a9e89c872973fa11c0aedf8f030c2ecb297e7", "message": "PEP8 whitespace.\n", "proba": 2.498092328551138e-07} {"commit": "863180e234bb1ed00372f366b3c6bd2a18d5ec9f", "message": "removed persistence module\n", "proba": 6.498300422208558e-07} {"commit": "16a32d79c8453c15a06e0af51f0d15740105da2e", "message": "Fix observation rendering transpose bug by falling back to a specified 'default_observation' if `render_observation` not found for that player or globally.\n\nPiperOrigin-RevId: 445434570\nChange-Id: Ia922a37682f15ff18a8ecae268033b2bafff72fc\n", "proba": 6.788859082007548e-06} {"commit": "8eec87319d65c6feb8c9c94086ed5abd13ff8afd", "message": "trace msg if not json\n", "proba": 0.9985957741737366} {"commit": "d7cc0894bbcecc9fd35dff7940c6502df83d7de0", "message": "Fixed examples for region and zone.\n", "proba": 1.0650754234120541e-07} {"commit": "8903f2da55a17d11f7d32d2f1af0c9561b854b52", "message": "Specific exception classes for label problems, fix bug in add_generic().\n", "proba": 1.0713037568166328e-07} {"commit": "57610deaed1f547709d9327b6ffbbda7eefd4f73", "message": "Updated to allow for setting indent\n", "proba": 2.3840691198984132e-07} {"commit": "9c180bee2ab43175e2776eb073515a4bb6df65ad", "message": "Normalize cache keys\n\nThis prevents the same page getting cached multiple times\n", "proba": 5.252697405921936e-07} {"commit": "1e908c2e9c5ce31227a9a11650f006ad478179ce", "message": "-XX:+ExitOnOutOfMemoryError\n\nSummary:\nCurrently in certain builds Buck OOMs but continues to work while it cannot really do anything useful after OOM. So it's better to fail quickly.\n\nThis option exists in Oracle's JVM [since 8u92](https://www.oracle.com/technetwork/java/javase/8u92-relnotes-2949471.html) which was released several years ago.\n\nReviewed By: jtorkkola\n\nshipit-source-id: 2c29039a0b\n", "proba": 7.203279892564751e-07} {"commit": "5fb1a0968ebe8c5829ef13cd76264dd4dd2a7091", "message": "\u753b\u9762\u51fa\u529b\u3092utf8\u306b\u4fee\u6b63\n", "proba": 2.3831690043607523e-07} {"commit": "7128f9fb46cf5ca40934cd178010400a90508474", "message": "Add stunnel test to versions_test.py\n", "proba": 7.739851071164594e-07} {"commit": "185e6cc10b7a8fc687335ba725b24a4e9ad25468", "message": "bug fix...\n", "proba": 1.284691961700446e-07} {"commit": "85e9bc1a80b21659717cd5974d850246e35cfd70", "message": "TST: add asserts that data round-trips correctly\n", "proba": 0.00015203475777525455} {"commit": "7cadb8f315c4634821d2f73a2106d2b474bd93cb", "message": "fix mark_meas_bad/mark_meas_good in Demag GUI to use the numeric index instead of looking for experiment_name, #485", "proba": 2.5646991730354785e-07} {"commit": "c5d64431289a10bf9610eac5fdd3183bbdf03bd5", "message": "Always include x-amz-content-sha256 in headers\n", "proba": 1.8397868473130075e-07} {"commit": "e0f61045d513d1048c07b995f15c1e6cf86ad614", "message": "add docs for render_template()\n", "proba": 2.0374335463202442e-07} {"commit": "653485cd696212d61d20bd5f3cc94df78f384f76", "message": "Fixes is_released status for dataverses.\n", "proba": 1.0806847683397791e-07} {"commit": "997e5366e5f91129dffe064f1801ae60edddf3b9", "message": "Fix PK reference\n", "proba": 6.871320010759518e-07} {"commit": "f73ff2f9f811465ee2323598b12654bbacff0fd4", "message": "Updated from Brython Server: 10/2/2015 2:13:39 PM", "proba": 1.0963952945530764e-07} {"commit": "cf0cd56be44b85d75dcc9a05bc1e13c65a2cf7c0", "message": "JIRA fixes\n", "proba": 6.703510280203773e-07} {"commit": "f6ef2b8e705e999a97fa3d612c724129e4a3071d", "message": "First setup and added encode-decode read key from file funcutiality.\n", "proba": 1.0811775297270287e-07} {"commit": "ca54368ddba75aae1b2a7c3bd80680c21012547d", "message": "shift messages around\n", "proba": 2.8720694444928085e-07} {"commit": "623c8939f8c35ad51160d2b92896097866aee35c", "message": "calls EQEP2b\n", "proba": 2.1504538381122984e-06} {"commit": "a5acdc775d7afe48678b5bfb6cd70bce2c26e77f", "message": "add get_permission to get_rest_viewset in KernelUser\n\nadd get_permission to get_rest_viewset in KernelUser\n", "proba": 6.212612788658589e-07} {"commit": "34cd83246ed6b272bf646835b72870afc108c46c", "message": "Tweak to the fix for Gecko combo boxes.\n", "proba": 1.0674528994059074e-07} {"commit": "70a0eb0dddc4666e268742e6108f43ff6629b8f8", "message": "update again\n", "proba": 1.4777324963688443e-07} {"commit": "254d062ffe61e18c0314d4dde2f837bd5afa248d", "message": "clean code\n", "proba": 7.890113010944333e-06} {"commit": "06d9908274fc7244548547b9e32c3d7ae3529ade", "message": "cfu.py: add some documentation and reformat\n\nSigned-off-by: Alan Green <97e77871b5fcc4941bebceb4338c97c1fd149f8c@google.com>\n", "proba": 6.152203582132643e-07} {"commit": "cf655fab84aee0343eeeca685aa795eb4df40505", "message": "Bug fix\n\nalright\n", "proba": 1.9224249570015672e-07} {"commit": "c1a95f954f6183102c51e160a89f07cc75c589f1", "message": "Added emcee testing run\n", "proba": 1.2778637881183386e-07} {"commit": "675724b7a2faaced7873fe0f018ab8b69cd590e6", "message": "type error in unit test case resolved\n", "proba": 3.2216178169619525e-07} {"commit": "a67db0cb997f06e9eac360da53b8df91489c3909", "message": "Missing import.\n", "proba": 2.815382345033868e-07} {"commit": "a9654c91f798c59da1b2ce197a5f987885b1c13c", "message": "Force chunksize to be 1; otherwise get buffer overflows\n", "proba": 2.198020047217142e-05} {"commit": "3a48e4b6104ca3bb6fa7abadaead251e3e3084d4", "message": "[beeswax] Fix history page test\n", "proba": 1.6930060553477233e-07} {"commit": "a08ae99f4c1d04d551c7fa3625bd12858a03ba71", "message": "sync with ecluster_config() args change in ba5f2e98\n", "proba": 6.630380084970966e-07} {"commit": "05b3435476301b7da36f3056f6d168a3db688b09", "message": "Change the LoginWithOpenId test - because we now use signals, even the fixture for user-paulproteus creates a Person object.\n", "proba": 1.0462535726674105e-07} {"commit": "c22b959380435035c1eb93c0868bc6c1f20dd9df", "message": "Identify scheduler in log file.\n", "proba": 3.043465710561577e-07} {"commit": "db8cf75a5bbaf582f3c22f0b3dc3b98ceed47672", "message": "Fix missing required-in-fututre on_delete argument.\n", "proba": 3.885938610892481e-07} {"commit": "129c663117d8674dcb28c88d1dc5146f4a2530d9", "message": "GoL example improved.\n", "proba": 1.2108475289096532e-07} {"commit": "ca8f5137bf3cb7005c16b820dc446f051d59bd9f", "message": "Attempt to be smarter about toggling focus mode after a page loads\n", "proba": 3.1757966212353494e-07} {"commit": "a2e65e25f45cd6ac9633202eb630e8fc2cf3c9af", "message": "[beeswax] Check for ownership before saving\n", "proba": 1.1832495516728159e-07} {"commit": "cb553bd4bf5d8dbe220fcc8d7fa9d0516ca5606a", "message": "Improved add unit test to actually test the addition\n", "proba": 1.2990621200970054e-07} {"commit": "df2542004e6884a07efd61338a3108b6f6010532", "message": "Replace set_password() method with password member\n\nSetting the password on a User object is now simply a matter of supplying User.password; if it is salted, additionally supply User.salt. When User.save() is called, these values with be read, processed, saved to the Prosody data store, and then reset on the object.\n", "proba": 1.4652094648681668e-07} {"commit": "63cd799e8d4e7ecb43878562d4ff2007931b6282", "message": "Raise the correct error type\n\nThe incorrect error type was reintroduced in the previous merge commit.\n", "proba": 3.14699695991294e-06} {"commit": "a457f734809b5b5315a0686406db395d918ddaa7", "message": "Fix snippet_client so that it can be used with default device. (#180)\n\nThe problem was introduced in #170 , where snippet_client always assumes\r\nthat device has a serial number, which may not always be the case.", "proba": 1.7004283847654733e-07} {"commit": "ce26925d371c84e47207a3b36865286ef7ae2198", "message": "Unused logger\n", "proba": 1.6891706309252186e-06} {"commit": "8ab1ccdfec3a113b968e57debf9e69b5f5df18ca", "message": "MaxRetryError should contain an absolute URL not just a relative url\n", "proba": 1.3909371773479506e-05} {"commit": "3fddfa093d3816cf311c1e7f84019c5264b5d956", "message": "simple results\n", "proba": 8.236395956373599e-07} {"commit": "eadcfce1cf677bcd4827351dd18274e82fbde379", "message": "fixed srtheolocal for cases without interact count memory\n", "proba": 1.8905062404428463e-07} {"commit": "a0faa530f9edf034de8ef06236f87e2ec7d0df5e", "message": "convert echonest bpm to value between 0-1\n", "proba": 0.9999872446060181} {"commit": "3749e642f2649f633acea45cbf7dbaf647786051", "message": "pr/inspircd: fix typo in handle_mode\n", "proba": 3.76805110136047e-06} {"commit": "f75f0582a07459ebe07dc446d82e9c8dc100456e", "message": "Create MongoClient with connect=False, heeding the\n\nwarning at last.\n", "proba": 1.2242399805018067e-07} {"commit": "3cbb6e3caa38463394b8952ec8c84078197e355f", "message": "Fixed coverage miss\n", "proba": 1.997119198904329e-07} {"commit": "1ee75c3af62f4271fe694e816fc7bf676dfb1c8f", "message": "Added get_shard feature\n", "proba": 1.9045415911023156e-07} {"commit": "415fe0be31910512706a2922fb1904e6ae42f150", "message": "\"embedart\" and \"extractart\" commands\n", "proba": 2.892362499551382e-05} {"commit": "cbad92b35b9da1d05833e48bbd2a7340839a9f9a", "message": "Named all the faces\n", "proba": 0.005700517911463976} {"commit": "f0bbdd83802161b6c8872264674be1e1b3d235a5", "message": "Update port number\n", "proba": 1.2824606301364838e-06} {"commit": "0c89880347e56147d99ffb96ab38dbb837deb37d", "message": "\u5b9f\u88c5\u4e2d\u3002status=deleted\u306b\u5bfe\u5fdc\u3002\n", "proba": 1.2502732715802267e-07} {"commit": "99a6354762c4aeff42cc8b2806425b7a86d7fd85", "message": "Fix Exceptions for Python 3\n", "proba": 0.00012794484791811556} {"commit": "4b7aa7eaee81e48fade1e486991dea1db5d4c6d4", "message": "hashed lost_found app urls for easy resolving\n", "proba": 2.6730933200269646e-07} {"commit": "71f9582ba8b8469179585e5fe71dc107832016fa", "message": "add method that can turn an AA residue into oemol\n", "proba": 1.725855781842256e-06} {"commit": "d43f914937f4364428aeba5dbeb098ed40eafe92", "message": "Order the committee members alphabetically\n", "proba": 4.712778263638029e-06} {"commit": "9232d94f01a9d51cbcb07a75482308f36ca9c306", "message": "Simple coreference\n\nSimple coreference added", "proba": 1.6041904871144652e-07} {"commit": "6e36e7e9c3d1797b8c60eb6235a2044f14d40d0e", "message": "removed pickle\n", "proba": 0.00023095682263374329} {"commit": "a9edbb42ef9309317c5c95f01920a276a9e151c8", "message": "Major refactoring initially complete. The pipeline now identifies separately (1) classical peaks arising from point source binding, (2) broader regions of enrichment from more diffuse signals such as chromatin marks and (3) summits as the maxima locations of peaks/regions. All reported intervals should (hopefully!) be significant at some p/q value - the SPP broad peaks have been removed for this reason. All callers should work with the exception of Zinba. SPP summits are not yet reported.\n", "proba": 1.1899317797769982e-07} {"commit": "e77e67af69102a1866a9c7617324a154de39c8a4", "message": "Use basic prefix stemming, cleaner code, report density\n", "proba": 1.0365509979237686e-06} {"commit": "cc4399fff46316018a9cd727afe620c011e10558", "message": "Update docstring\n", "proba": 1.205138460136368e-06} {"commit": "664ea6afa8cff0b683d98536ca70df512c344d36", "message": "Name changed from vtkKit to vtk_kit.\n", "proba": 1.1738891458890066e-07} {"commit": "420b9a4e2b52de7234734b9c457e0711bb0f1a70", "message": "Fix issue which cases lit installed with setup.py to not resolve main\n\ngit-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@283818 91177308-0d34-0410-b5e6-96231b3b80d8\n", "proba": 6.452620482377824e-07} {"commit": "a5ffb3ade1528584826676878885f63188a49889", "message": "Silence flake8 warning\n", "proba": 2.1206412270657893e-07} {"commit": "519d7bd38cf4f0386dbb8148349f0377af142b27", "message": "fix bug when there is no vol number\n", "proba": 3.346457333464059e-06} {"commit": "60bd15b559de6485efcafae054a305b77f3f937e", "message": "Remove unnecessary FIGSHARE variable\n", "proba": 1.2343080925347749e-05} {"commit": "01a1e6fce998109f2aadd738101df8ca23fefb25", "message": "flake8 compliance\n\n[skip ci]\n", "proba": 1.1407374245209212e-07} {"commit": "550181de0b5a0bd4cde63a64733830e06e7efeca", "message": "Bug fix\n", "proba": 5.465154799821903e-07} {"commit": "cca4dad5826cbe6c27d98f37424c500abc7ea944", "message": "needed correct settings variable\n", "proba": 6.108762318035588e-05} {"commit": "68bacae05638016676e8da9608337184bea99ef7", "message": "Bug fix\n", "proba": 5.465154799821903e-07} {"commit": "788af401ebceeefcbc6ea93a4f5ad39b74e7b1b1", "message": "Syntax fix\n", "proba": 1.4397161294255056e-06} {"commit": "60feda70c6c5c4bcb12bb9ab5c9a32b43981dd12", "message": "Debugging prepare reference data.\n", "proba": 1.444643942249968e-07} {"commit": "5a3c01568c78dc896de0c20dc81a5b30de937676", "message": "Implemented get_memory_percent().\n", "proba": 2.390051747624966e-07} {"commit": "8f0ec2cbc609afdece73631d47110c216fd21cab", "message": "Added 'derive' method and support infrastructure. Derive allows recursive\nwrapping of existing gui\n", "proba": 1.4674608905806963e-07} {"commit": "21091df61de51bd48a32f3b5b61c0047fbf863d0", "message": "hashing hack in txn\n", "proba": 1.3161829883756582e-06} {"commit": "1fdaba7b79271dff843b1c7e80e467c9c126a09f", "message": "application boostrapping refactored\n", "proba": 3.7460554835888615e-07} {"commit": "717c3657cd23d3e290dcbf594bb8cf8892b44785", "message": "maintext: add parse_errors list for compliance with ukbot\n", "proba": 5.591770104729221e-07} {"commit": "7cfcb9f9546e9566e74514af7c2646f60ebd5662", "message": "git pull\n", "proba": 1.4962656678108033e-06} {"commit": "be0d38979a6eabae8833761317907c54be106336", "message": "Add footer text to built-in settings\n", "proba": 6.624072739214171e-07} {"commit": "45ff06af229c88d720db2b8caf76ff0c6631c4fa", "message": "build: SRPM targets depend on sources and patches, as well spec files\n\nSigned-off-by: Euan Harris \n", "proba": 1.0400835037671641e-07} {"commit": "a0eaeac56d9ce29b2bc97aeebf1db330661cf001", "message": "Fixes problem of particles colliding with planet (must always allow these)\nSimplify particle/particles adding/removing\n", "proba": 3.7006088859925512e-06} {"commit": "e8bdb5b95c47b8c7b6ad51fe26546b1f4127a8d2", "message": "makemake: Add ignore list for Debian, ignoring libnl3\n\nSigned-off-by: Euan Harris \n", "proba": 1.2609375232841558e-07} {"commit": "1aad149f84eb501b7cd28df6f57ff97789df6244", "message": "Improved\n", "proba": 2.2562410322279902e-06} {"commit": "fb4752890ae090b2dc464403ea0269b3f475a1f6", "message": "nalleles\n", "proba": 1.163434990303358e-05} {"commit": "6628a596683764e7cba071fa0c519c2743e8f82a", "message": "Added support for single processing too (just in case)\n", "proba": 1.0507532266501585e-07} {"commit": "6093577898a7a085ed8b23359ce91090dd43c3db", "message": "Provide JSON loads/dumps\n", "proba": 0.0030659781768918037} {"commit": "a6dc8b1ddefb539c7712eb137a8c328065319f34", "message": "add counts method\n", "proba": 4.065299435751513e-06} {"commit": "db8c62291134f1eef33ad41c01c0abf21c5fd3b9", "message": "Add log messages to workflow\n", "proba": 1.0418223155284068e-06} {"commit": "033da90c0e5fc1d664801ce9ec53ac52f1fb2000", "message": "Fix sort tests to reflect new restart-completed-job-store behavior\n\nPreviously it assumed that a completed jobStore (when intentionally\nkept around with clean=\"never\") would raise a JobException on restart\nbecause of the missing root job. That isn't true anymore because we\nwant to allow exports to be re-attempted.\n\nThis also fixes a few weird bugs in the sort test lingering from the\nrecent sort test changes. The output file was hardcoded, and the\noutput was never actually checked to be sorted correctly.\n", "proba": 5.772448048446677e-07} {"commit": "9eecb4aafef595a16f5092ebaa10fd1681bdacc4", "message": "Rollup merge of #63989 - yaahc:master, r=Manishearth\n\nAdd Yaah to clippy toolstain notification list\n", "proba": 1.2922427572448214e-07} {"commit": "5362069157b12930540770b02e91a5d5be2c8ab1", "message": "removed another source of noise in the XML stream\n", "proba": 2.897531032886036e-07} {"commit": "75ec3f738e8040e06cc8fe4db757b13c5e575f98", "message": "Add stats to wikilink extractor\n", "proba": 2.9216550956334686e-07} {"commit": "256078876cb67ab851e851686178837e7d3411a5", "message": "Add hashing utillity.\n", "proba": 6.691668659186689e-07} {"commit": "fb57e8f9216f783469b8e57fcfffb9b932b5ae34", "message": "Do not print the search results overview box when more than one\ncollection was searched and a summary format was asked for.\n", "proba": 1.0510999715052094e-07} {"commit": "fde968857951328af54d05cb779a935637125784", "message": "Fix bug in human_bytes util with 0.\n", "proba": 1.9652793525892776e-07} {"commit": "993ef72e28548aeba3f2c6f7df4824e21cd63dc8", "message": "[PK] small fix to MI\n\nMI was pulling phone, fax, and website from the currently open county,\nnot the currently open township.\n", "proba": 9.700637804144208e-08} {"commit": "6e10a6d547bcfc90485805ff09681bcabb5e0281", "message": "Options for specifying loops and logging and print min and max.\n", "proba": 1.1645806097249078e-07} {"commit": "57e2f1b0724ed7975528e8e8cf5c8582e1f27e9f", "message": "Follow a single execution path\n\nSigned-off-by: Ivan Kanakarakis \n", "proba": 4.971610178472474e-05} {"commit": "d0a27524413451510f5bf0bd07e41fe342deb0ee", "message": "add frame_left/frame_right to width when measuring column in \n", "proba": 1.2278366057216772e-07} {"commit": "22b8e4609d879dff9d8774a787cdd597bc90cf6a", "message": "Issue#4 fixed\n", "proba": 1.251368217936033e-07} {"commit": "8cd61ac6527817eec57937bba2eeea90ffb75e87", "message": "fix issue #46 by making bookmark_rx handle negative revs\n", "proba": 2.2812385225279286e-07} {"commit": "29daaf148e6862dd9835c08f85fa64024103a526", "message": "corrected avg issues\n", "proba": 1.5226413552227314e-06} {"commit": "08bfdf16c48fe7fbb96be9dcdb2fc3dafcbefeec", "message": "Path.relationships() work in progress.\n", "proba": 1.2866193799254688e-07} {"commit": "7399a35f5e7b1b03bc49f48178dc2521d4d92be3", "message": "fix issue #47: use fullpath instead of name in HgRepo._cat()\n", "proba": 1.6363186716716882e-07} {"commit": "6a5fda7d6574f88eaf32ad5292600040806e8513", "message": "oops file -> open\n", "proba": 1.794376629504768e-07} {"commit": "320c63bfa23e7ae6029cc542fc3514a0769b3c55", "message": "fix: printing wrong update interval into log\n", "proba": 8.427013540313055e-07} {"commit": "3a2ed345ed1988c32aaf8a10243c6c6816682737", "message": "from __future__ import print_function", "proba": 0.01090849470347166} {"commit": "399d1de1d34222018ff623c55a6a47632ee47ec7", "message": "Explitly select 'rackspace' auth system in pyrax for OnMetalScout\n", "proba": 1.645958178642104e-07} {"commit": "ae87f4b0bb9b6adba84df12167d11ab46d1d68d4", "message": "Fixes #85 - Admin search crashes\n\n* updating with issue8 changes in datasources\r\n\r\n* fixing admin search function\r\n\r\n* bringing version up to date\r\n\r\n* fixing spaces\r\n\r\n* updating ehb datasource version 1.0.4\r\n", "proba": 1.3132449794284184e-07} {"commit": "57db64875f5d478dc0ac7d0e89fcbabf7d318a3a", "message": "Added zoomin plots to report\n", "proba": 1.201976971287877e-07} {"commit": "bbcb5f5d2af6a8aa3827d9eb3ca207159b5be9ca", "message": "took out embed\n", "proba": 1.6139946978910302e-07} {"commit": "b744ab696cd24fe101f8c6a7949a06755d1e4e0f", "message": "Fix an old-style import\n", "proba": 0.9995256662368774} {"commit": "96e79c2b2df416f46e2958de65064d0cbadca57e", "message": "Fixed behavior for actions.\n", "proba": 1.2993298525998398e-07} {"commit": "4742914fee340d70dae3aca6a3e6eaa1e0d036a7", "message": "prototypes: added \"/base/\" URI location\n\n", "proba": 1.6805292943899985e-06} {"commit": "f4628220b7351701c0fc183cad881313c111e457", "message": "Fix ZMQTerminalInteractiveShell.handle_rich_data\n\nShown only one image type.\n", "proba": 1.1563169977080179e-07} {"commit": "574b602ab8aa796eb56b829be6e58c9be7ca1a15", "message": "Improve new post recognition with a little buffer\n\n", "proba": 3.613267551827448e-07} {"commit": "4508da5407e1781777469a415d2956cf0c031574", "message": "Fix timeout test\n", "proba": 0.00044629815965890884} {"commit": "1d27ddc7d27024313fc953c171048e5e897a5495", "message": "Fix bad migration from #1496\n", "proba": 1.611054722161498e-05} {"commit": "50bc5a8bacd4b62f3657aeb17d500ea85af1d0e2", "message": "Release 0.0.2\n", "proba": 1.4983704659243813e-06} {"commit": "7612ce1defad648618874c343d03d3811288701a", "message": "better error message\n", "proba": 7.083193850121461e-06} {"commit": "3a75044285cb49932608a7a9f9993fd6b0ddf20e", "message": "Updated NailgunExecutor to take the java version into account when deciding if the server needs to be re-started.\n\nTesting Done:\nCI passed @ https://travis-ci.org/pantsbuild/pants/builds/31273593\n\nsetjdk 1.7\npants goal bundle src/java/com/pants/examples/hello/main\nps auxww | grep NGServer (all are running java 1.7)\n\nsetjdk 1.8\nants goal bundle src/java/com/pants/examples/hello/main\nps auxww | grep NGServer (get info messages about NG servers killed. All are now running java 1.8)\n\nBugs closed: 423\n\nReviewed at https://rbcommons.com/s/twitter/r/802/\n", "proba": 3.340450348332524e-05} {"commit": "260ab690a5bb6293c2527a8a1eea84ef656ab5d8", "message": "fix: revert double insertion of graph specification\n", "proba": 3.1990995807973377e-07} {"commit": "3258a59e99240df95ea0989617d4264d28838ae9", "message": "Simplify code\n", "proba": 0.041258614510297775} {"commit": "975020721446609b886fb17825389112f41ec3c6", "message": "Method that defines the access check for the view and initialize the template name.\n\nThe access check method is called from the __call__ and if it\npasses, we dispatch the view call to the respective handler.\n", "proba": 1.1772457497727373e-07} {"commit": "fca86831365094e18242728eb352eb38e83ce8b3", "message": "Bondtype: Add helper function in boaf\n", "proba": 4.044371053169016e-06} {"commit": "e88d7c62a6d5332d5e705d9afd9184dd07816234", "message": "update ignore_headers\n", "proba": 7.586124866065802e-07} {"commit": "2a047d13f73b2fc061dd4c064fb34f9d9b43e598", "message": "Add 'Access-Control-Allow-Origin' header to all responses.\n", "proba": 1.2270487559362664e-07} {"commit": "2b2c961a09a5db9ff26b0614f6522f59a3d5d385", "message": "keyword doc to html format\n", "proba": 7.35122455353121e-07} {"commit": "a686b40e8107865ad5379236f4a5eb5444ac6eba", "message": "tweaks\n", "proba": 9.085585475077096e-07} {"commit": "38982d3c2f613afbebb254cea3d3c5629c28848c", "message": "Refactor building IF structures\n", "proba": 4.7479605314038054e-07} {"commit": "35c9c8c534a872c26f2a7b5253abda7d99ae50d8", "message": "API: do not allow to like your own activity\n", "proba": 2.1842237174496404e-07} {"commit": "d969305138f6cc895404541139822d983fa9652e", "message": "cache\n", "proba": 1.8202314322479651e-06} {"commit": "1337131607dadebfb96ec482e03ce9225c86fe68", "message": "Update api resource docstrings\n", "proba": 3.818333595972945e-07} {"commit": "b75bebd3655fc9471c9b325e27c6dcffc5384908", "message": "views setup for rendering first template\n", "proba": 1.9260474459770194e-07} {"commit": "8edd2d861d1ca1517cf5b64f87af4fb92b2b09f4", "message": "Undo percent encoding of message body\n\n- Fix some pylint/pep8 issues\n", "proba": 1.8656821509921429e-07} {"commit": "b2cfce24b6fd5ac7faf775be34e57c757f1ae787", "message": "Make test output self-evident\n", "proba": 0.9999995231628418} {"commit": "695a8c380fb2439a0779ae80c6db82d86307de1c", "message": "json support, name generalization\n", "proba": 1.7401100649294676e-06} {"commit": "eae2a03a63a9ea7e5770dec5e9d94c62247a01d3", "message": "Do report line_type as activity in path so mass transit is visible\n", "proba": 3.143224773793918e-07} {"commit": "2d9ce8bc7732861fc22d77f119ab3a71e2f6d6aa", "message": "Done with 100\n", "proba": 5.725615665141959e-06} {"commit": "64072689f56a92961ed591c28de0274a9a664683", "message": "Fixed broken PCBA example\n", "proba": 2.523798343645467e-07} {"commit": "f604de4794c87c155cdda758a43aa7261662dcff", "message": "Improve example, start pystray in main thread and webview in new process\n", "proba": 1.660692561245014e-07} {"commit": "51e504d420e46f9a268fbd6e7e84a8fe0b06d3c5", "message": "Add warning message for uninstalled package.\n", "proba": 1.2990398090551025e-07} {"commit": "2434baa804d98bb0a6acaa3ef04a467b43088ba8", "message": "Support for modelines.\n\nWorking for Python, guidelines for other languages are still to be added.\nAlso, we might need a more subtile way to define the editors we want to\nsupport.\n", "proba": 1.127528079791773e-07} {"commit": "8101be99c6da6cdd5ada6e5396ae095cf7042111", "message": "Add new Popen kwarg 'text' in Python 3.7\n", "proba": 0.001823117258027196} {"commit": "ebd8d8b023e9e20727ed6038e51c358e57aaec1f", "message": "Minor comments fix in device_configuration.py\n", "proba": 2.910683747359144e-07} {"commit": "e4ce820290db406a3fab24ab2a1c77984c5f2c8d", "message": "Remove queue\n", "proba": 2.1307623683242127e-06} {"commit": "2ecb6346f9181b43ebdf166acd275294e254e99a", "message": "Fix team name validator\n", "proba": 0.0001630866900086403} {"commit": "6a852f09de1ef28524742c4f37e9c0e180657792", "message": "Added memoized decorator.\n", "proba": 1.1848281644688541e-07} {"commit": "f4bd63c072ed813eb6e691cd7500196f1bcbfbb1", "message": "fixed custom shape barycenters (1 per BC)\n", "proba": 1.0205697265064373e-07} {"commit": "bc2a88306049731659d130bbea0de1fcad3a75ec", "message": "Update excuse.py\n\nAdded commas to leadins", "proba": 2.130480680762048e-07} {"commit": "031c5f79d95c1bb5805873b10b802fda0440090c", "message": "Remove unused with_priority\n", "proba": 4.355795681476593e-06} {"commit": "409802f56c0490ecfd83e539190e229aed331846", "message": "Remove comments at the end of the file build_project.py\n", "proba": 3.6871517750114435e-07} {"commit": "8f35b22f1573b21f5e3691aa900d973137a0a7f2", "message": "Sort the login information before printing so that they are grouped appropriately.\n", "proba": 3.033833309018519e-07} {"commit": "896ffffe0b77286be36017df21506b0006ca2a22", "message": "Updating doclets for GC\n", "proba": 1.5409277409617061e-07} {"commit": "a10b673f59c85289becb931e44af028da06b6e87", "message": "remove check for %( at start of line because it matches stripped literals - issue #70\n", "proba": 2.0448578652576543e-07} {"commit": "1af0a1a485ac8746c7c81cb20494fe77f56b5c1d", "message": "Fixing the re to open cnv's rules.\n", "proba": 1.0487809731785092e-07} {"commit": "9fb2ee27db6e5edea56a04b02cf0f75cdbc306ee", "message": "Modified sensorState\n", "proba": 6.022022489560186e-07} {"commit": "d7aa80e15931b41dcbca52a5fe13e951dd99b356", "message": "Add palendromise\n", "proba": 0.9999842643737793} {"commit": "d2b01b03ddbc55f93d274826db09de033172ca5b", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "767bb6052181984053a45a6c920db525749b11a4", "message": "prototypes/translate.py: added location for mod_ticket\n", "proba": 2.2374737795871624e-07} {"commit": "80c189d85c96e0132470cca591727ce9749a62c7", "message": "prototypes/translate.py: pass protocol_version=2", "proba": 7.635024303453974e-06} {"commit": "4e07f51e71fd93ff09e478b03e001803641d7943", "message": "Improved renaming handling for processing mp4\n\n- Better output logging\n- Resolves naming conflicts with filenames with input and output\nextensions that are the same\n- Final catch-all renaming that will append (#) to the end of the\nfilename if previous versions already exist\n", "proba": 2.720683482948516e-07} {"commit": "75fdc4462c8c2e7c5705c592bc9a25d21367368f", "message": "Removed source inheritance for Lucas\n", "proba": 2.412875801383052e-07} {"commit": "1505c0e9a405bc44dbfa17aa09c03aade0060361", "message": "Update mlogsqt4.py\n\nCombined two tasks, save to file and show in editor into one.", "proba": 1.140589489523336e-07} {"commit": "52e3dcad6e2acf67898a0c839dcf959e8dba28da", "message": "add exception handling\n", "proba": 2.0658362700487487e-06} {"commit": "301df1ddd93edbded13f41bf6389a15d8cbfb0ce", "message": "Add some debugging output.\n\n", "proba": 8.391950814257143e-07} {"commit": "a1992ad89020b400d00ff4a0bc51d0b2cb8bdcfe", "message": "updated encoding comment and expanded authors field\n", "proba": 1.3026959777562297e-07} {"commit": "a3c4bf144db2a04547fad97ca37a1488a0fcbb31", "message": "Convert Result to use changes var instead of data\n", "proba": 6.508167871288606e-07} {"commit": "7f72f37546b85e60308f14f78310103e673a9a00", "message": "munge update\n", "proba": 4.2467070215934655e-07} {"commit": "7b6359e173f96bcb5b2de69b4ef6d475003778f3", "message": "Add docstring to run_examples.py", "proba": 1.5779677369209821e-06} {"commit": "1d8941e897530a5cc59cd1ab8d1ff4b181b1cb46", "message": "Add test for viewing trait detail without authenticating.\n", "proba": 1.1086466145115992e-07} {"commit": "b30e630844f97a67b16a47a9119ad6bf0c0f6e9a", "message": "Facebook auth modifications to work with mongoengine.\n", "proba": 1.1067134408904167e-07} {"commit": "c8cf4e56004a35b2f08c316f7e96b16d6165b16a", "message": "yara - bugfix representation of result\n\n", "proba": 1.2199184595829138e-07} {"commit": "6159e4d3877128f15830bd61eafe10d58be42d51", "message": "improved step-handling in gui\n\nremember current step of molecule\nallow direct jumping via text-input\n", "proba": 1.637308315594055e-07} {"commit": "89edd8b88ee40483d06d260240538f9a8868be2f", "message": "ENH: new scan to tune the tlu delay", "proba": 1.2096090529212233e-07} {"commit": "59cac43d18427b2319e9c0afff3b54005f793124", "message": "Add PooledColumnFamily alias that was lost in the merge\n", "proba": 1.6972883543076023e-07} {"commit": "7e709667f97cf6228569d976aaf47600fa2cde4a", "message": "and the name changed too\n\n--HG--\nextra : convert_revision : svn%3A14d46d22-621c-0410-bb3d-6f67920f7d95/trunk%40895\n", "proba": 1.3532055618270533e-06} {"commit": "b13b192d9975bbeb6cf58d64a3907cec737fda2e", "message": "[FEA] Ajustes para os NS do eSocial (s\u00e3o todos diferentes)\n", "proba": 1.2519126357801724e-07} {"commit": "fcb549cf903bab2d385cab1a8d04fc028644e623", "message": "Import module names instead of individual submodules\n", "proba": 4.0121449274010956e-07} {"commit": "9fcccc5f2272afce4887c6441c4d334598e9478d", "message": "Add geotiff exporter\n", "proba": 3.919087703252444e-07} {"commit": "9613f68f68442c120ee2fa45e46833a25ceceaab", "message": "do this correctly.\n", "proba": 0.00022785204055253416} {"commit": "752351b4af954f8ca231293d802e730bee31c244", "message": "huobipro: Fix typo of \"fetchOHLCV\"", "proba": 2.2575350158149377e-05} {"commit": "8817e9db79d1dd72ecfdd9fe30e771c5698feaec", "message": "Fix bug where scope uses generic \"END\" follower by a comment\n", "proba": 2.031521688650173e-07} {"commit": "7257394957427c94c3bd3a0ba2787163f218e222", "message": "updated\n", "proba": 4.958747581440548e-07} {"commit": "7102da0df902d836402dd4aeaf4af3e0ddf28fea", "message": "Added run_flash_cmd.py\n\nThis script will run FLASh merge command on a list of sample folders\nwith input fast gzipped files.\n", "proba": 1.0188426813328988e-07} {"commit": "7d5e17a67b055b2666be40d2502570a114e58fc6", "message": "Fix Returns in docstrings of streamlines and streamlines_from_source (#1330)\n\n", "proba": 1.069070663106686e-07} {"commit": "7ef053749f4bfbcf7c2007a57d16139cfea09588", "message": "Append slash to API root if needed.\n", "proba": 1.1437624891641462e-07} {"commit": "53870dbfe7ed61fc6b9d8c9ed8fdd7d007449475", "message": "Updated responselib to add support for 'dict' response\n", "proba": 2.455259675571142e-07} {"commit": "d72ec4a2de9992eba81efe33af730ea88f5c4cac", "message": "import from braces: LoginRequiredMixin\n", "proba": 2.5626428623581887e-07} {"commit": "294b29abfb767c83844772946575167adfe0d539", "message": "logs transferring as well\n", "proba": 1.81822429112799e-07} {"commit": "5e949c70657b6c4eb698d3405321cae9e58c78cb", "message": "sitemaps rewrites\n", "proba": 8.832899993649335e-07} {"commit": "17700340e13c0a3dac7fe1b0ae16a7e6cdcc146e", "message": "added decimals\n", "proba": 0.6775221228599548} {"commit": "77f6af0eb16cb929f30cd3aa74a0f6c33ce5c9c3", "message": "[BugFix: ZSTACK-40474] vmsync no_qemu_process_running_vms\n\nConflicts:\n\tkvmagent/kvmagent/plugins/vm_plugin.py\n", "proba": 3.2322409992957546e-07} {"commit": "b634f78a7df7b4eb005551ee78d48cf5cc89c3f5", "message": "adding config value method\n", "proba": 2.3921913907543058e-06} {"commit": "2eaf2d26fd844dc9e589069e587069756e2d1883", "message": "VPP-1144: PAPI Import leads to duplicate type definition.\n\nChange-Id: I54c147004fd93681a6a9cf30fa5277c1dabce67c\nSigned-off-by: Ole Troan \n", "proba": 1.2350143663297786e-07} {"commit": "2d49b69e9f9c20a57b1975d7c3e51e3413a8c711", "message": "[BugFix: MINI-2197]\n\nAdd rollback for x-blockdev-change failure\n\nRemove filter-mirror and filter-redirector if svm fail after migrate finished\n\nSigned-off-by: Alan Jager <7ba0221af525cfcc7adbf94f7fc6b46fa1dcb7c9@outlook.com>\n", "proba": 1.1258646992473587e-07} {"commit": "68471d9649b6b6c19b266388dc08282b3d2f1aba", "message": "Update fixtures for annotation set that belongs to an image\n", "proba": 2.842477044850966e-07} {"commit": "5cca36a3bddd36b277ea14f2b008f88e9b46c521", "message": "fixed nugridse.py seeker method, added code_source option to distinguish between MESA and GENEVA tracks\n", "proba": 1.3723095548812125e-07} {"commit": "fdcc4e8059e147b35eed127668bc99f9526b0171", "message": "[FIX] Valor por defecto para ext_method_time\n", "proba": 3.888559660936153e-07} {"commit": "45067daa64628e220dce3c17d38ea609d813d380", "message": "Commit before branch", "proba": 1.2463368648241158e-06} {"commit": "d02cd3f9f4da06e595943c791077eae96c835e18", "message": "[FIX] l10n_es_account_asset: Nos traemos unas corecciones aplicadas en la versi\u00f3n 7.0 que no estaban en la 8.0, necesarias para hacer correctamente amortizaciones mensuales sin prorrata.\n", "proba": 3.507323356188863e-07} {"commit": "155676be2f2d467ea6eede49436895b4676b86b0", "message": "[PEP8]\n", "proba": 2.909185354837973e-07} {"commit": "2013136da70bb033cd84b9f522d2d506e4a7f518", "message": "Add condition on stock move linked operation.\n", "proba": 1.0842586561921053e-07} {"commit": "df74f62c06c1e13840522540a7bfc6094d2eebb6", "message": "Added sophos plugin\n", "proba": 2.8385164796418394e-07} {"commit": "b4ad2680d3415ee599c18d2974c144d1112ba7ec", "message": "File stream dropping: add Sentry logging\n", "proba": 5.685768087460019e-07} {"commit": "77ba93b24a13426ccbffaf3b2b7bca9b051719b9", "message": "summary metrics table for classification+regression\n", "proba": 1.8483561916582403e-06} {"commit": "a7e7fa564190121bcfa6e3d4e007b2dd9590837f", "message": "updated payment settings\n", "proba": 6.820858402534213e-07} {"commit": "d7f5105c80f5fce449d9e9109b79598bf64f7442", "message": "Version bump: 1.0.4\n", "proba": 4.2680716205723e-07} {"commit": "3dc2cfe3081ba99f82bf3d2a3b5d25a6aa28c392", "message": "return error body in proper requested format if possible\n", "proba": 1.8477569483366096e-06} {"commit": "03b683d98e284fe39fc8485f936631cc4036a19c", "message": "git: Remove unused code for server side git\n\nSigned-off-by: Fam Zheng \nMessage-Id: <20181121020846.7875-14-df9fd617995bad07eac70e27aa3fe5069270e3bd@redhat.com>\nSigned-off-by: Paolo Bonzini <69d3ebcf5ee4e7f05a50dc23cd96655b730804b4@redhat.com>\n", "proba": 1.283673043417366e-07} {"commit": "6cdcb0db2c1f1f9dbfc544083818aef0cf8af576", "message": "Revert \"git: Remove server side patch applying code\"\n\nThis reverts commit b2e8d8a353ce264758d400d2c22d5105e9b54a7a.\n\nThe applier depends on server to advise where to push, so these fields\nare still useful.\n", "proba": 1.2897274359602307e-07} {"commit": "e23a162ddd58ea4073e29a9cd60266ca25b66068", "message": "Fixing error in index.py so it will run. \n\nThere is an error when trying to run this code: TypeError: Unicode-objects must be encoded before hashing. I added the code to fix that issue.", "proba": 3.242815864723525e-07} {"commit": "1aca9d93beaac9f5e37cd90d1e29e572b5f7a86d", "message": "Fixed a line that was overindented.\n", "proba": 1.452444848837331e-07} {"commit": "bee0ec0d2d976419b2709a86f7f56ce33089350c", "message": "Aligns salt base env with new watchmaker-content project\n", "proba": 1.234689364082442e-07} {"commit": "fa666bbc07ab7d2afa900f6c7034168858849a24", "message": "MOD:add parameter 'filter' to some method and show lambda more friendly\n", "proba": 1.37091902274733e-07} {"commit": "fcac469fdb90552cb944a184acbec2d05115d509", "message": "Add Pandas returns to binary read and remove all testing code\n", "proba": 1.8469135909526813e-07} {"commit": "476db08b1600be76adc5da539c6f7c0603d47ee5", "message": "Improved a comment. Thanks intgr for the report.\n", "proba": 9.857291161097237e-08} {"commit": "7c2c67fb19364615a9ecbdcb835c5c241ae65add", "message": "newforms: Changed Form._html_output() to use dictionary-style format strings for more flexibility. Thanks, Waylan Limberg\n\ngit-svn-id: http://code.djangoproject.com/svn/django/trunk@4182 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n\n--HG--\nextra : convert_revision : 778c5f6abbaaab6164ed160ebb83c1e1e074608e\n", "proba": 2.295649892403162e-06} {"commit": "d1832dd288cd671d7290b60f9574eefbf2219c31", "message": "Fixed #4297 -- Made form errors available to sub-classes. Thanks, Gary Wilson.\n\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@5347 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 4.4530412424137467e-07} {"commit": "515a07c6a6dd60f31dc1bf4f4ac92b7514208c3a", "message": "Undoing comicsite field deletion as this approach does not work\n", "proba": 1.5499210803682217e-07} {"commit": "089d9ca1df43fb36eaa857e2d617a94a82c6b906", "message": "Add assertJSONEqual method to TestCase\n", "proba": 1.0822354852280114e-06} {"commit": "04cb8304c6933d96d2c42d27932079e9df14bbac", "message": "Fixed #10676 -- Make transaction nop routine used during testing accept any args/kwargs it might be called with. Thanks seanl.\n\n\ngit-svn-id: 554f83ef17aa7291f84efa897c1acfc5d0035373@10248 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 8.404629170399858e-07} {"commit": "9045786f6c3d7a1166369d1a6b60b198b80b204a", "message": "Fixed #12445 -- Added ' (single quote), @ (at sign), and ~ (tilde) to safe characters in `iri_to_uri` function.\n\n--HG--\nextra : convert_revision : svn%3Abcc190cf-cafb-0310-a4f2-bffc1f526a37/django/trunk%4012066\n", "proba": 3.727339219494752e-07} {"commit": "5f87ac67a6ccebab0e2e85dc7b94bfc8ffc9e7bb", "message": "Don't warn about __.gif transparent flag not matching a country\n", "proba": 9.821997991821263e-06} {"commit": "cdb13a5bf7863e38e516569c4a6c03d9b183783f", "message": "1.1a - Error checking", "proba": 1.5678381259931484e-07} {"commit": "85e06cf44108a3092589fb0260494e605d5df0ff", "message": "Added poll app\n", "proba": 1.6828919058298197e-07} {"commit": "1fb546b4cd77ce2a585efa6b3ecf8a0f4ca5d894", "message": "make sure there is at least something being displayed when transaltion\n", "proba": 6.777149224035384e-07} {"commit": "f0819d553da156ea44fa5c54ec19e235fc52fee1", "message": "- wrong exception capture\n", "proba": 3.4884925526057486e-07} {"commit": "ec1f762d51cd923dafb1318e5838df00dc11d79d", "message": "Added maxlen argument to import_feed\n", "proba": 1.7863247592231346e-07} {"commit": "12cebcac68f20807e40c8ca7da90f43dc2f296d3", "message": "minor: use __name__ for logger name in views.root\n", "proba": 2.5215269488398917e-05} {"commit": "cca31ae2dee5d99c593e8f8796cb989db81b20e9", "message": "Fix views metadata\n", "proba": 5.2142095228191465e-06} {"commit": "fafdcb3ccd1b6533baa2f601185140dab7faa4ab", "message": "added prep_for_iexact query, so it doesn't escape its value\n", "proba": 2.3479499304812634e-06} {"commit": "b118759332f00ec5851d531797aec099a34dd529", "message": "Add initial json tests to the TemplateUtilsTestCase\n", "proba": 2.391073223861895e-07} {"commit": "530520ef673bc1e1cc1dc00dee1bbf3bf76dd8e5", "message": "Minor refactoring", "proba": 5.079600100543757e-07} {"commit": "65165525133e8c1acfb7025853d6ae92de0afec8", "message": "fix one more constants instance\n", "proba": 0.000245779228862375} {"commit": "bc7d6fb675aa327a11642ce250b4f3e7a5047827", "message": "Reupdated predict_binary.py.\n", "proba": 3.5378434404265136e-07} {"commit": "0300483c963b02bb6db68c9b207ee698086fc728", "message": "Fix SQL examples\n\nSigned-off-by: Daniel Halperin <1a02732a15f637c31107256cbee5819e36aa7c67@cs.washington.edu>\n", "proba": 4.78062174806837e-05} {"commit": "bcf5c0689350878e1bbacdd25d8d9b4c550dcbda", "message": "Acfun: legitimize title\n", "proba": 0.9995276927947998} {"commit": "4268c0d04d1831c2f98d65afd4eb28d8f603b38e", "message": "Forgot 'self'\n", "proba": 0.0007850713445805013} {"commit": "dc720f49c40a64e02fe3e6ae48b595edd83edbd3", "message": "whitespace\n", "proba": 0.9998207688331604} {"commit": "335036bb50bd8e054d188386f11d34a554e89354", "message": "Revert some code, make sure tests pass this time.\n", "proba": 1.6057042273587285e-07} {"commit": "46a2254b7405234ab77089acc4e72a229c076010", "message": "add URL mappings for new API endpoints and timeline view\n", "proba": 1.3106325980061229e-07} {"commit": "2863ab5508df905335f9ac8b131a924fdc598f34", "message": "Made main.py executable\n", "proba": 8.179699193533452e-07} {"commit": "e3bf9032e704989aee2044f90a053064e9fd9253", "message": "Store the player keys in the preserved games\n", "proba": 7.563528470200254e-07} {"commit": "ce205b7cdf57a72318c37824f7306e1a31089d6a", "message": "saving progress\n", "proba": 2.7663705282066076e-07} {"commit": "551c3e27821e53e671e90abfda42512058ee8c53", "message": "validate title route\n", "proba": 1.684124072198756e-05} {"commit": "adfbd572c6106cbc1bb9b845ce1fc43c20b8b929", "message": "Handle unit test header scenario path\n", "proba": 2.492107853413472e-07} {"commit": "ec6b60607521e644fdcac1ea1bfef7eb8573584e", "message": "Fixed title fields in assign forms\n", "proba": 2.9486923835975176e-07} {"commit": "e69e66911f0135d6c511a7d858388860fbc01065", "message": "extension can be empty\n", "proba": 0.01296099554747343} {"commit": "bff5561e60de7fd7d33d35b90b9aa12cfee97798", "message": "Removed Print lines\n", "proba": 3.846178628919006e-07} {"commit": "9fb03a7e3238f7b7a606490640a0404c7b5aa321", "message": "Update KC CTS reference\n\nAffects:\nGTF-GLES2.gtf.GL2ExtensionTests.egl_create_context.egl_create_context\n\nComponents: OpenGL\n\nVK-GL-CTS issue: 353\n\nChange-Id: I95dd480216a685e79c5dc936f1ee59c4eda714aa\n", "proba": 7.076267252159596e-07} {"commit": "ebddc6ee52b6933142082e2f2d8d09199784b5e6", "message": "Handle YUI errors\n", "proba": 4.664455559577618e-07} {"commit": "184a090432970e83c4f39db0424c8f721b898752", "message": "add ouputToken\n", "proba": 4.419505785335787e-06} {"commit": "b393264989896aed4fab4e6097b1b4cc3f7f15ba", "message": "Improved documentation of robust kurtosis\nSeparated the expected kurtotis calculation\n\nConflicts:\n\tstatsmodels/stats/stattools.py\n", "proba": 3.244927256673691e-06} {"commit": "8719c214fb9403354f01a304137a2101df88bb31", "message": "Fix up minor whitespace issues in internal_generate_diskimage.\n\nSigned-off-by: Chris Lalancette <60b62644009db6b194cc0445b64e9b27bb26433a@redhat.com>\n", "proba": 0.001206116285175085} {"commit": "9f69d80a451a9900d8a55a69fca0fe75eb5c58c8", "message": "Removed print line\n", "proba": 8.471916771668475e-06} {"commit": "3294339960ca0be422462ae3ff7a485a14e77f3f", "message": "Update core.py", "proba": 8.660932735438109e-07} {"commit": "2977aea7d38f97b5b9e827396eaaa1aa39063d11", "message": "tastypie allow empty events\n", "proba": 1.6321728253387846e-05} {"commit": "e8fc69a978ce00868c65dec35743eb3d4a0b8409", "message": "minor docstring tweaks\n", "proba": 2.503114728824585e-07} {"commit": "8383136fabe85c2911b0f2f275ecdc7511a4c1e3", "message": "Rom name label turns red for unknown roms.\n", "proba": 1.394872413129633e-07} {"commit": "a40ac2498a693d5eda1a96062bae0c7d2ca6ed85", "message": "Since we were calling \"backup_config\" and \"backup_config_dir\" from each task,\nwhich basically runs on all the nodes, in serial execution, when vrouter node goes\nfor reboot after in upgrade_vrouter task, \"backup_config\" and \"backup_config_dir\"\ntask was failing from next vrouter.\nFix is to call \"backup_config_node\" and \"backup_config_dir_node\" from each task\nCloses bug:#1426522\n\nChange-Id: Ib293061092bdc236039339905f57b1dbcdf38535\n", "proba": 0.0003393561055418104} {"commit": "4ddca06cbd62eccdb32959be48b89ab2dc3871d1", "message": "Authenticate a new user\n\nLet a subclass choose how or even to not authenticate a new user.\n", "proba": 3.786744287026522e-07} {"commit": "a0979d479298b58aefba81c0e5db02cdab3d4a1f", "message": "Refactor SignedRequest.Page#url\n", "proba": 1.9656580718674377e-07} {"commit": "8b88b6f454643f66c2b5c9e7122de6c808fc68a5", "message": "added commandlne options\n", "proba": 4.217719435928302e-07} {"commit": "2ebb792d948f3cf3807de8f28c61fd0dce227921", "message": "Fix SignedRequest.OAuthToken docstring\n", "proba": 1.5789402141308528e-06} {"commit": "191d4ba9ee3cc2a0228d3e32868cf3e1488dffde", "message": "0777 permission\n\nReverting back to default 777 permissions, some files were inheriting\nstrange permission settings from their source files (particularly when\nusing torrents) that caused permission errors when tagging was\nattempted.\n", "proba": 1.0920625470589584e-07} {"commit": "2f449f236f7fcbc32f49845e15c1493222b6cc16", "message": "Only creating files once\n", "proba": 1.3975127899357176e-07} {"commit": "60c797dc236f5a41e7bb2e21bc034bcecbeca533", "message": "fix response parsing\n", "proba": 1.0556991583143827e-05} {"commit": "fc7436667c6c6b879b48242b3d705a2064031638", "message": "Handle mismatch between major, minor size and device type\n", "proba": 4.166579117281799e-07} {"commit": "759bfefef6a089ff1eb59666ef51d8ba8859fd5a", "message": "Adding data type validation for prompt configs\n", "proba": 1.9176165722001315e-07} {"commit": "079620f87e0700116a29cef1c82fcc09b0939521", "message": "Improve viewer like event filter\n", "proba": 1.0288454177498352e-06} {"commit": "c18cf8b981f792cce28047d11720093d63531b96", "message": "Generalize sample config values\n", "proba": 9.197993495035917e-05} {"commit": "ee04809540c098718121e092107fbc0abc231725", "message": "Use a newer version of rules_proto, with the new rule `proto_descriptor_set` (#8469)\n\n", "proba": 1.1162490665128644e-07} {"commit": "c0fc3b8207753ff2b7881327c8fd38422eeca848", "message": "Fixed bank prototype queries to work against current datastore.\n\n* Also started to fix test_single_container, pika bug preventing it from working fully.\n", "proba": 9.962079161596193e-08} {"commit": "7453b00449fd93d3c8ab7011c8904caf0b2a3433", "message": "fix: more set fixes\n", "proba": 5.783506935586047e-07} {"commit": "be1619537d6de79c4fe4e433f2db38c978f6af3a", "message": "Changelog edited. Small correction in doc.\n", "proba": 1.0586853704808163e-07} {"commit": "d922e29a8e0133e02c025dae755c78394100aac4", "message": "implement count_metrics(), show count of total # targets\n", "proba": 1.1103496717623784e-06} {"commit": "e57ebfd758e236a5aba58c2f801db5e01718d1e1", "message": "Whoops\\!\n", "proba": 3.3538427146595495e-07} {"commit": "d0cfbc5315fac0086ab3be3e65e133ba22fb468a", "message": "Add a TODO: need to communicate runtime state via IPC\n", "proba": 0.00018055454711429775} {"commit": "384732c963f0fcf5913986a51cd23a9fa09c82e7", "message": "ScatterPlot not working. Remove for now.\n", "proba": 1.046505033741596e-07} {"commit": "1edf24ae2b376b7fc7d8ab55d63fc59c190a2e20", "message": "Fix the type error Andrew pointed out: s/b ControlMEssageREceive\n", "proba": 0.9999994039535522} {"commit": "810cfabcd63a695ab09e777baf4c999d4f4989ec", "message": "def __all__ for _common.py module\n", "proba": 0.9992283582687378} {"commit": "e785e1d1d6798b5d33e9357fa267ffbc61369a77", "message": "Revised group score calculation\n", "proba": 6.371220138134959e-07} {"commit": "8888098fdc563be26c57a4712762505e932df344", "message": "updated cpu_percent() doc string and moved functions for more logical placement.\n", "proba": 1.0298521146978601e-07} {"commit": "e99118986e966f22749688c448059c98f8ce8d6f", "message": "Modify behave steps to use new bundle_list_map.\n", "proba": 1.1163150759330165e-07} {"commit": "e2b58ea96310a80d6533de2370ab53a81505a55a", "message": "Error fixing", "proba": 5.901931672269711e-07} {"commit": "3f89f173acbeae30bdaf91ebde81f2ae31870630", "message": "Replace an XFN-related `for` loop\n\nThanks to Google user mrjbq7 for this patch!\n\ngit-svn-id: 0b64a41b982ff43e34f7d1fb28f67dfdd6c68d26@567 73d2b349-402e-0410-baf4-070fd12ab5b7\n", "proba": 9.518720617052168e-06} {"commit": "b2d864b8fb85d7c8cb64c92a4dc71a56026396a1", "message": "removed @ removal from random_data\n", "proba": 3.378390829311684e-07} {"commit": "d97f6c8be42d04821199cad95db81b2e689333e8", "message": "Remove call to deprecated `apply()`\n\ngit-svn-id: 0b64a41b982ff43e34f7d1fb28f67dfdd6c68d26@591 73d2b349-402e-0410-baf4-070fd12ab5b7\n", "proba": 3.782838575716596e-06} {"commit": "a7ff679fd62e312b2cabb33988e2c18e20a71fcb", "message": "fix print to file\n", "proba": 1.947727014339762e-06} {"commit": "4cd34cbf9d758fd08b6dc562d3d61cfa140975d7", "message": "fixes issue 200\n\n--HG--\nextra : convert_revision : svn%3Ab1eb0509-c838-0410-b15c-e5ce2c1b85ca/trunk%40557\n", "proba": 3.3992554904216377e-07} {"commit": "da5b12f8939688f18f1893aabe41db28fa80618d", "message": "AttributeError: 'FileAdmin' object has no attribute 'queryset'", "proba": 7.469128831871785e-06} {"commit": "4bfe2d51b2a53305f6c55f42a99c74eed6d1b598", "message": "Coffee: First draft of a coffee-AST compiler/interpreter\n\nThis packs free indices and context data into argument lists, generates\na kernel function header around an empty kernel, compiles and loads the\nkernel and finally applies the kernel function to the context data.\n", "proba": 1.0203498135297195e-07} {"commit": "5965dd6753daf0f4d7d8014cf09b56e0d5fcc880", "message": "fixed broken WSGI middleware (didn't work with GAE)\n\nI'm not WSGI specialist, but that line is important for FirePython to get all app's logs from GAE\n", "proba": 5.45647367289348e-07} {"commit": "814a15ad0005634550ec2010d1ed8fac6333a55a", "message": "Sort posts in reverse order.\n", "proba": 7.491125870728865e-07} {"commit": "c29dfccbbb114cd0fb54632e2781633d069b89b6", "message": "Updating header format, improving PEP008 coformance.\n", "proba": 1.0903225700076291e-07} {"commit": "c7457205d2b22492cdf1d1d9345cce0651e97700", "message": "Removes unused argument in search.\n\nNo longer need to prevent order by operations when deleting since we\nonly delete one resource at a time.\n", "proba": 1.1210455141963394e-07} {"commit": "d6618bd52ded4a921a72a11fd4eeafc070d16595", "message": "fixes py3.x import error\n", "proba": 2.462399777414248e-07} {"commit": "e37b0a344c008cdcf36b7a730d5ee6ab65f55f2b", "message": "Avoid nested FrozenDic during state restore.\n", "proba": 1.2791782921794947e-07} {"commit": "7d585316707fe23af93c111be71f5b120a7528b2", "message": "Work around a DRBD sync speed race condition\n\nThis is modified forward-port of commit 1544 on the 1.2 branch:\n\n When DRBD is doing its dance to establish a connection with its\n peer, it also sends the synchronization speed over the wire. In\n some cases setting the sync speed only after setting up both\n sides can race with DRBD connecting, hence we set it here before\n telling DRBD anything about its peer.\n\n Reviewed-by: iustinp\n\nThe modification we make is that we split SetSyncSpeed in two so that we\ndon't need to modify our minor temporarily, and the fact that we call\nthis function from within _AssembleNet (right before enabling network),\ninstead of Assemble()/Attach().\n\nOriginal-Author: imsnah\n", "proba": 1.7726275700624683e-06} {"commit": "eb63ad918b208811c67cb202861c4ae0af946acb", "message": "Correcting typo\n", "proba": 0.9994940757751465} {"commit": "0e0f1dcfc1c2ecfb633b478d76c0fc89c5b8d920", "message": "removed unused methods\n", "proba": 1.0567139270278858e-06} {"commit": "33cfa092eaeb3445e4e7afe3e5f6a1b201d66b4e", "message": "Preventing deadlock (#7)\n\n* Changed the worker processes to detect when the queue is empty and\ngracefully close the connection and exit.\n* Changed use of `JoinableQueue` to use `Queue` instead. Now the main\nprocess will sleep and regularly check all the worker processes until\nit finds they are all dead. So, if they all fail for some reason the\nmain process will end too.\n* Updated the default S3 repository location.\n* Added check for scenario where zero keys were found, in which case we\nexit immediately with a warning prior to accessing the database or\nstarting worker processes at all.\n", "proba": 1.1698714530439247e-07} {"commit": "9bec745e4f2734c05ee20b0a87f59b7f39b6027e", "message": "modify: mapping by radio frame, don't align the frame and result\n", "proba": 1.662664033119654e-07} {"commit": "51bc4850201516a927f77ee0732adcdcec00860e", "message": "bug fixes\n", "proba": 8.304810990011902e-07} {"commit": "1ec14f67faa3b0da18c3f4c31c6a9fe858ed124d", "message": "removed some logging and clarified output text\n", "proba": 3.451552038313821e-05} {"commit": "e6c11aa20bf1ce5b6c90f23e9b382a7057e542bb", "message": "Correctly set the ID of the person in the roll call\n", "proba": 2.0614061213564128e-05} {"commit": "df3824bf7ce3c428f265891d3e6612881e52758c", "message": "make firstModeLinePatt slightly stricter\n", "proba": 1.0750932233349886e-06} {"commit": "7ded07a8ad60f3870ebe0a67ccc869b6cbea0771", "message": "Update backend database to ZODB\n", "proba": 3.076452799177787e-07} {"commit": "37a5b6b63fb829f94dadab24e54c448882a04f74", "message": "Better error message\n", "proba": 5.18346269018366e-07} {"commit": "7f24a47acf1b96195580db7a219c0c113bf08b06", "message": "Remove unnecessary print statement", "proba": 0.9996265172958374} {"commit": "c233c7f21c011f928e120c967ea5f890de2b859a", "message": "Add missing docstring\n", "proba": 0.005217216908931732} {"commit": "2e18a846ded2e4bc4902a6732d9e0eedf0b82a69", "message": "Updated management command to work with django 1.11\n", "proba": 1.6462045948628656e-07} {"commit": "47dffa80d919a482d3f70c9d049a50068168a77e", "message": "one more file\n", "proba": 3.7222170590212045e-07} {"commit": "6c5f5cc3b43b3e226d63e75970279061f12cf276", "message": "Get thumbnail.\n", "proba": 1.620596066231883e-07} {"commit": "8b273b46aa1ed754bea92fd2c48b6879fb23e05b", "message": "fix the encoding problem for subprocess.check_output\n", "proba": 0.004542916547507048} {"commit": "c62a979991a3c84fd8d3d70a2c151c08535c8de9", "message": "Adding test to check added column is copied over\n", "proba": 1.4138905157778936e-07} {"commit": "bcc22c5c2ef86f316848427aa8bfee5207358f77", "message": "Add status codes\n\nStatus codes are defined in withings API documentation\nhttp://oauth.withings.com/api/doc\n", "proba": 2.482669003711635e-07} {"commit": "a672dfc6ff71a4ff81a3584b4e00ceae930b7bbd", "message": "Bugfix\n", "proba": 8.038198870963242e-07} {"commit": "7ae8207102a936c974dfe9c2c22e088b02ba9a3f", "message": "Whoops again\n", "proba": 1.8479319408015726e-07} {"commit": "39014caad33a64f87e7816c4373ac168dc5080f6", "message": "Automated reinstallation push\n", "proba": 2.114745996095735e-07} {"commit": "a299a6a2278993f212f61a98f47569236bbf8f62", "message": "Fixing syntax on a tuple\n", "proba": 3.610895873862319e-05} {"commit": "af12d94b79a418553cee8216a7f639a7bbfba8f7", "message": "Add test to confirm remove_row keeps meta\n", "proba": 2.427499623536278e-07} {"commit": "7698ec31f871da4a02ebc8f9bf30bcaedb647d0c", "message": "Commented out calculation of mass density of sample not used for now\n", "proba": 1.0880394540890848e-07} {"commit": "7690b6072210fecee732b9673d224118ff30b4b5", "message": "Fixed bug: bins gets the wrong pointer offset (#832)\n\n", "proba": 1.1136800992517237e-07} {"commit": "1f218b1b17540e9a6dcb327dc9fd5662b001f5e8", "message": "Solving the starred expressions for python3.5-\n", "proba": 1.0982786989188753e-05} {"commit": "c3ef8b860f0b822b5d498975bd43a5dd077c20c3", "message": "Use SHA256 for OAuth\n", "proba": 9.349039373773849e-07} {"commit": "ec5dbb888583a01c213197003ae185dad1716b2c", "message": "Automated reinstallation push\n", "proba": 2.114745996095735e-07} {"commit": "64bb8eb960dbdf410512d0b373644a39686bc755", "message": "better buildscript\n", "proba": 2.0334773580543697e-05} {"commit": "8c27fb191364983a38c4c02ce6dcd8a83998aecb", "message": "actually, re-add the test with a different assert\n", "proba": 4.3313747255524504e-07} {"commit": "12759bdc22eccf2ad3e6f2c991fc44563285b9fc", "message": "no log in 404\n", "proba": 4.200870080239838e-06} {"commit": "21ebae566ce6c6a1b941b289de2b15af2e64e333", "message": "return value must be in a variable named 'returnVal' or else final check will be on wrong variable\n", "proba": 3.923529675375903e-06} {"commit": "2dd77d3bc496656b617cb06d41fd8f2e5d904976", "message": "[FIX] when a job is reset to pending (requeued after a failure) the retry count is reset to 0\n", "proba": 3.5917196328227874e-07} {"commit": "0f85c044480da92961b2be058741ed254351eec0", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "b42b7dd19f95aeec8b437c7bfd48b2357f5ecd2f", "message": "fix login as user link to ensure root path include logged in users language\n", "proba": 1.671417493298577e-07} {"commit": "1b6e8eed94907390b165acdc0e2ce0748bccfe55", "message": "added comments\n", "proba": 1.3997723158354347e-07} {"commit": "146232be7512660524d55c0aaff0d9c1f7e52439", "message": "Working on removing gain after loss from AGC in emis year script. This is to fix the model, not for sensitivity analysis. Correction for model v1.1.2.\n", "proba": 1.0547571349661666e-07} {"commit": "14e9e6d84f72e589bb4e21e71cac2a1aea828f2b", "message": "Temporarily disable Django logging", "proba": 6.021850254001038e-07} {"commit": "1fa91db99b7b84c691eb6588d8f790403b764cc4", "message": "Creating net flux tiles for maxgain.\n", "proba": 1.0895346491679447e-07} {"commit": "8ec7994af4fabbd81e48e0c9c66b0510fbd0aaf2", "message": "Err, plus one minute\n", "proba": 8.364106065528176e-07} {"commit": "62b0c41494534e487680410fa4f726ed61685dcc", "message": "Adding a sync all redis for user stories to be run in a migration.\n", "proba": 1.0391634930329019e-07} {"commit": "3467e4bb83e4f83f88e8a87d7f9c60796caea39a", "message": "fix dot-merge bug\n", "proba": 7.222967610687192e-07} {"commit": "d0bec9c663b70656f214614b87ae32c67c4c162b", "message": "Stats app : Support `-contextSanitiser` argument for images\n", "proba": 1.4324969299650547e-07} {"commit": "7ae188147b819469eee32e3220e3009a57ef8017", "message": "major bug fix in ELG class -- linesigma was log10'd!\n", "proba": 1.0361076618892184e-07} {"commit": "e8adfbd224568445b99fbd6225327266d1adb3e1", "message": "working with get_file\n", "proba": 6.753845127605018e-07} {"commit": "7673ae813c2e11e27366646170fc6756b928decb", "message": "removed lya absorption below lyman-limit\n", "proba": 2.44032179352871e-07} {"commit": "2c4546f4a06f19654af3e61f7fac776aad2ad121", "message": "Made latest_version/subtitles/latest_subtitles/version\nof Video use the new data model", "proba": 1.526846631350054e-07} {"commit": "aca7f2c9b15f5c3b42f5892da56933673b03a9fd", "message": "Fixed some docstrings. TODO note.\n", "proba": 1.0794239813094464e-07} {"commit": "5a6cefe4a812dd5296449d66dbee872530af7ebd", "message": "dev version bump after 0.10.0 tag\n", "proba": 2.1790160076307075e-07} {"commit": "004e0ef9dac1b7ddf379fd629d3230b6ff6b7129", "message": "force user to specify a model\n", "proba": 1.0958136726912926e-06} {"commit": "54c43c1d320a1dda53618b519d01b55924feb58f", "message": "Fixed get_widget_url method in SubtitleLanguage\n", "proba": 5.285778001962171e-07} {"commit": "99f944d97be51fb5ce4f433ea3ba325305fd2ee5", "message": "one more change\n", "proba": 8.106343898361956e-07} {"commit": "b1a83293ff47097ac6464d60d828156588776a57", "message": "Update comment format and field name\n", "proba": 2.0885522644675802e-07} {"commit": "9c030db0a4a04bac1ac79dfb71d7b4c284632684", "message": "bump version post 1.4.0\n", "proba": 1.5434956424087432e-07} {"commit": "7a9ac4bad3ee4dfa4fd8c4b7529050ee770309e5", "message": "Addition of operators to the 'date' types.\n", "proba": 2.7132518880534917e-06} {"commit": "0d4c4aede553deb60469623c6e8c921dc9bcade8", "message": "Start new Weather class that uses desimodel.seeing and updates at regular times instead of after each exposure\n", "proba": 1.205686430694186e-07} {"commit": "e41b3bb583a84e83271b560afd4d5b46aa99a5fd", "message": "bump version for release\n", "proba": 2.0679500778442161e-07} {"commit": "f1fcfaffd0622947c8bda1fa69f1e56e760fe073", "message": "fix #26\n", "proba": 3.823055578777712e-07} {"commit": "114d13ea98b4e3aab876ba66496bcd059c11bf1d", "message": "Under so far unclear circumstances, the column renderer is passed a None - has to be caught and treated accordingly.\n", "proba": 1.8457760120327293e-07} {"commit": "32b701b0234b145dd418fd642d632563ded90a75", "message": "Implement one-shot filters in the consumer\n\nWill work with a lib version that doesn't have one-shot filters\n\nSigned-off-by: Patrick Uiterwijk \n", "proba": 1.2085678235962405e-07} {"commit": "e56c6bdfc3693b89898c6ee97793bf2c28bc5e3e", "message": "Fix few typos and handle when request returns no text or json\n", "proba": 9.898776625050232e-06} {"commit": "052b0c612fd6a74b7e11fdf12c8526c2ec5c7976", "message": "[ci] try to build most local images before failing\n", "proba": 2.027737622256609e-07} {"commit": "8557e5f517012bcaeafcd08a40ed973cd20d4ee3", "message": "Sample: Fix NC namespace declaration.", "proba": 1.417423618477187e-07} {"commit": "b5871f2d587e35156f6acf2aa3b440a28cb4eca5", "message": "feat: add Video.frame_size property\n\nRaw frame is resized to `frame_size`. Defaults to original frame size.\n", "proba": 1.0236109915240377e-07} {"commit": "9e7fdb019bfdc20e883bb29c00b4422cd34c18c4", "message": "expecting data\n", "proba": 8.708619134267792e-05} {"commit": "044d79e2596f49c19a52d74f623184a151122735", "message": "BUG: fix parameter\n", "proba": 4.919932621305634e-07} {"commit": "7c4f58ef22bbdffaa42ed86a41f70cbc42bed6d7", "message": "Check for project.\n", "proba": 1.2249476810666238e-07} {"commit": "87152a33fd182b03cb6c63bbcbf3404d11ed51e1", "message": "cleaning\n", "proba": 1.01492532849079e-05} {"commit": "5b9065f7c454889dd91d2aece7e64f16bf022173", "message": "add symbols to ast->sexp\n", "proba": 2.3010564120795607e-07} {"commit": "8f547d31260bdbea6cdb046b75eb0091618284de", "message": "Potential fix for MUWM-2270\n\n", "proba": 6.27963174792967e-07} {"commit": "f88e7cc398d5892006ce3f2cc482e8725e580148", "message": "some strategic promotes\n", "proba": 2.0760457175583724e-07} {"commit": "f127ae65d10f64baf8d2cc769d43a5b1cc4e4d53", "message": "nanshe/nanshe/additional_generators.py: In reformat_slice, correct new_slice_step first as it has an effect on other parts of the slicing.\n", "proba": 1.2775872448855807e-07} {"commit": "c83f1bf221d7e4586870aac31328020bc4c2932f", "message": "art_brain: pick_from_feeder update\n", "proba": 6.081571655158768e-07} {"commit": "c3a393f83cb74d754122bc5b62f858b32b924aa8", "message": "Tiny update\n", "proba": 4.744823911551066e-07} {"commit": "72ca359b7d95089f1c1e7cdaadebacd38332eded", "message": "grew a new method, saveFrame\n", "proba": 2.637530087667983e-07} {"commit": "5cd30dababdf6f61187de215e2440a1917388007", "message": "In connectionFailed, handle an error from makeConnection() where on some\nsystems, /dev/random is apparently set to 0600 root:root, and also add\nhandling for propagating errors due to the network/server being unreachable.\n", "proba": 1.1499825802729902e-07} {"commit": "752f81d17d0f7ba66ee1c8e79dd8c58900cbe50b", "message": "Fix DBTask\n\n", "proba": 0.0004175612994004041} {"commit": "d1913225793291001ebc0e903a62d83ce8d49f88", "message": "Update version to 20160713\n", "proba": 1.5712089407315943e-07} {"commit": "c6f6ce0516b544b6ae25da6dc940978c11fdb544", "message": "Add method handleWantRead() for handling SSL_ERROR_WANT_READ until OpenSSL's\nmemory BIO state machine reports that it has been handled, and also jump to\nthe SSL_ERROR_WANT_WRITE handler when/if that error occurs.\n", "proba": 1.1477825268002562e-07} {"commit": "66c2a28c994678f06853e7a80f711995d0c72ff4", "message": "Add greyscale option for emission plots\n", "proba": 2.612184744066326e-07} {"commit": "ba09aef6c8fd631817dafd6159003acba04c50e0", "message": "Add better printing of results to stdout in handshakeSuccessful().\n", "proba": 1.6443732420157176e-06} {"commit": "ba2f5fd66bf19fd49f4f3495e342a5a43cfa8576", "message": "minor whitespace and comments\n", "proba": 7.290824441952282e-07} {"commit": "727042a2d012c61b8620dbed197de80d69e5fc12", "message": "Fixed minor bugs with contributions endpoints\n", "proba": 2.259189813003104e-07} {"commit": "e8e2eb5a599651e1da80f81ee0893d651d698a6c", "message": "screen: make _wait_for_input public\n\nFirst of all, thank you so much for this amazing project! We are using\nit in our project [1] to interactively visualize dependency graphs for\nour pipelines across all platforms. We are mostly using screen class\ndirectly, as a cross platform ncurses of sorts and would love to have\nan ability to use _wait_for_input method directly. In order to do that\nproperly, we need to make it formally public, so we could rely on it in\nfuture versions of asciimatics.\n\nI couldn't find any docs that need to be adjusted for this(seems\nauto-generated), so please let me know if I need to add/change anything.\n\n[1] https://github.com/iterative/dvc\n\nSigned-off-by: Ruslan Kuprieiev \n", "proba": 0.00010144325642613694} {"commit": "c30f1c64727fe731e44a4fc8d893baf0432947da", "message": "Update doc text.\nAddresses #689\n", "proba": 4.903403532807715e-05} {"commit": "e21410b58a960783d110fda2906732ca5500f5a4", "message": "documented top level methods, most callbacks for startup/shutdown are accounted for\n", "proba": 1.2725905662591686e-07} {"commit": "c417f58339b93ace467ff1c6e567eb07bb0a7505", "message": "minor fixes\n", "proba": 2.1220614598860266e-07} {"commit": "602b4b6f758c3d4dbaa0ba5bbf38f79949e96593", "message": "CloudProjectMembership factory\n", "proba": 2.0538716682949598e-07} {"commit": "ad0a9e79625525fe88de2e6dffa5d367c86465fc", "message": "initial conversion of reannounce() to inlineCallbacks\n", "proba": 2.570271817603498e-07} {"commit": "369d874016566339d3c43a6afa7b3a79c2e26318", "message": "use utility.remove_file in service\n", "proba": 1.6477248436785885e-06} {"commit": "0b42798bd0912332d8659cf4bd7848007122b222", "message": "don't bother with isinstance, a better way to get an int or str.\n", "proba": 1.322232776601595e-07} {"commit": "d3925985ccd1fdcc7872717dc993a17fa2f7deda", "message": "Adding commits before merge w/master\n", "proba": 3.5831459399560117e-07} {"commit": "70b36c6c60ca08165dadc464452124eaee3e2280", "message": "Use cache of geophysical_indices to avoid spin-up time.\n\nUpdate geophysical_indices only when a index file has been updated /\nadded (as evident by the file modification time).\n\nThis adds state context to the code (i.e., added complexity) but the\nexecution time is greatly reduced (though this is amortized on multiple\ninvocations of Point). For my use cases, this is a net win and a\nworthwhile optimization.\n\nRace conditions exist with this implementation --- the cache could get\nout of whack if an update occurred during the step in which file\nmodification times are queried. This code make the implicit assumption\nthat the user would not do such a thing.\n", "proba": 3.833080484128004e-07} {"commit": "37e25ae9e8fe2dd39a10070c836441501e95a5f0", "message": "AMPL: fix markup\n", "proba": 6.436961120925844e-05} {"commit": "b1e7e44391caba4cc323dfcb70145bad8378b413", "message": "Add analyse_text for matlab\n", "proba": 3.864039172185585e-05} {"commit": "c7f7c22cdf1f3ba466e33693b53232fe07787904", "message": "HTTP: Add support for PATCH, clean-up protocol detection.\n", "proba": 1.1354624973591854e-07} {"commit": "eb907b7709731bfcdb6fa9a886910bc8bd43fbc9", "message": "Diff lexer should highlight \"diff\" lines in addition to \"Index\" lines as\nheaders, patch provided by Pete Curry.\n", "proba": 1.0014087337140154e-07} {"commit": "d80c14aeff8f3de509a4ddd39a0e2d96a4d6bd9c", "message": "doctest: larger tolerance\n", "proba": 5.14484463565168e-06} {"commit": "02b13326a09b90425c5ea2f5ceb5e234cb96fae5", "message": "Remove debug line(!).\n", "proba": 7.621018198733509e-07} {"commit": "d13a8f5cb9b496282b36f427be58716160df4be6", "message": "Update aip.py\n\ncorrectly splitting idno now", "proba": 2.0163447800314316e-07} {"commit": "062aab34a4b09aa27ab0081a5842ed42cd72f269", "message": "add kwargs to plot\n", "proba": 5.476414344229852e-07} {"commit": "511bb3423bce4f4c614eca49b2699ad3212c6929", "message": "fix bug & test\n", "proba": 1.9937166939598683e-07} {"commit": "f31c1990a6480ace8abfdb4c8d099ba5f5d164a4", "message": "Enable Jawbone transfer to project\n", "proba": 1.3940464782535855e-07} {"commit": "d5ad3dc3f3cd243ad14693ec6b99b77e66e63703", "message": "adding time parameters to reducelogs command\n", "proba": 8.960367949839565e-07} {"commit": "14ef9e27fcadd14e25f2150313305801bfa7d55f", "message": "Improve reform\n", "proba": 1.3341356861928944e-05} {"commit": "2edb1e32299059f523154e21a0e85c4fc7612ac3", "message": "Fixes a minor typo\n", "proba": 0.00023477626382373273} {"commit": "15419e50a98f27abca27a96b12aff4b585c264a9", "message": "typo/syntax error\n", "proba": 4.467701273824787e-06} {"commit": "870013a291d1b0e3a6642ae294a16d1ae2474561", "message": "Constance setting for finding when markdown content is useless (e.g. too small to be real content).\n", "proba": 1.1563897572841597e-07} {"commit": "4a6512d22df2fe7a7e63deb119dfa5f5aae2f3d5", "message": "Fix [demos]\n\n\nFormer-commit-id: 6892b039924a797218fc4bee1990548137694818 [formerly be44cebbd3b51ad95e7f846f81e0d7bb6b060406] [formerly be44cebbd3b51ad95e7f846f81e0d7bb6b060406 [formerly 2837c32eab81113ba7fb1a5710b8bf2ad409a9ce]]\nFormer-commit-id: 9ad0b0b68dff580be3c2cc610b85916bf484bf52\nFormer-commit-id: 583b353f403868d5b2ac5cbe1bb046034b2230de", "proba": 2.3366781078948407e-06} {"commit": "88613a7c9b9551d1f9335b0ae7a36e23b6f34ac1", "message": "Fixed docstring [skip CI]\n", "proba": 1.2663339532537066e-07} {"commit": "a65a42b5c35b47992b23ddfb3261bc744f98c261", "message": "Change assertTrue(isinstance()) by optimal assert\n\nUse assertIsInstance() instead of assertTrue(isinstance())\n\nChange-Id: I47c75200a8c628779a96563c3982472743cbf4f9\n", "proba": 0.00021890184143558145} {"commit": "9c25485adb661d44b7f3f0c676ac3705e5754796", "message": "rabbit: on reconnect set socket timeout after channel is set\n\nCurrently we set it before the channel and as a result nothing\nhappens, only an error is logged at the debug level.\n\nChange-Id: Ifebdd957d403e47039c10f7e55c4e7ef08fba658\nCloses-Bug: #1640773\n", "proba": 5.223280368227279e-07} {"commit": "6f1f13113bffce983dbdf5a3efa22b5ff3ce7d21", "message": "logfile_values: fix time zone problems\n", "proba": 4.9997406676993705e-06} {"commit": "ba8d0e2c1a3963061d44ba5292ee4753c7b3e9a9", "message": "adding train/test split to outlier regression\n", "proba": 3.3139284028038674e-07} {"commit": "f0dda1996eb97780bf2722cf93108f44b4321348", "message": "make boost work for non-default pools\n", "proba": 4.818101047021628e-07} {"commit": "bc1e7d02ee1926335ded64a7731c55daa669e6a0", "message": "redirect to global submissions\n", "proba": 1.718034212672137e-07} {"commit": "3c5e5d5d16d80641636229abd4de6a2302259d45", "message": "moving config to phylesystem\n", "proba": 4.154445605308865e-07} {"commit": "3e03c484405e7052bb83c1356302ba8918cd8618", "message": "Fix bad translation syntax\n", "proba": 0.9984934329986572} {"commit": "5ccdd06b74e060a8a871b458564e4636b6ee05b5", "message": "replace keywords switched\n", "proba": 2.6416877517476678e-05} {"commit": "9bfbc5542f6246e16a748beda152671fc8a81825", "message": "second part of reviewer code fix\n", "proba": 2.2824178813607432e-07} {"commit": "bcbc0d0a7c559cde33b8dc019410696fe96e7f22", "message": "fix: Show complete frappe.conf including common conf\n", "proba": 1.355999614816028e-07} {"commit": "c91b1d6c9fc6949d668bc0098a8a7ad3e9cac3d9", "message": "[PEP8]\n", "proba": 2.909185354837973e-07} {"commit": "376ba5392ea540d9705fd45c0e7c92139bbb798e", "message": "fix: remove *_test.py\n", "proba": 8.607687777839601e-05} {"commit": "b5936ffa826931343b9497925731d8b80e49967c", "message": "Validate sub-query in order by and group by\n", "proba": 4.5880207721893385e-07} {"commit": "49532508c62154642cf714967ca03a1c8430d6ff", "message": "fix: use set_value instead of db_set\n", "proba": 1.7201233276864514e-05} {"commit": "69697bc1723a195134ca70f40af1f1066a3f7f4e", "message": "[fix] validate_email_add\n", "proba": 4.970045847585425e-05} {"commit": "a19bd0043558160beeab1a0655e54d18d2641d62", "message": "COUP.API: Rename class\n", "proba": 3.202997902462812e-07} {"commit": "a352dcd39cbc28c056a84a06a42f849bd8a1fe1e", "message": "fix: Dont cache website rules in development\n", "proba": 2.5643029744060186e-07} {"commit": "e06cd88f43bc3745d234aa78ad34420be679f459", "message": "Fixed photo extracting xpath\n", "proba": 2.3812424387870124e-07} {"commit": "97bb88ec19c1986376871aaf3fb298a3f6bd97d8", "message": "bug fixes. Catalog headers fixed\n", "proba": 2.8620183911698405e-07} {"commit": "4d46c3024ff1287af2d0014cc967ccf1bb608dbc", "message": "0.0.6\n", "proba": 7.085339893819764e-05} {"commit": "f98c6c4401bffa094f81c4910b7fea0b5574a59b", "message": "splits emoji from text\n\n\nFormer-commit-id: 78c5b589c5874ee87a6c3675b54c942b2ba284a0", "proba": 0.9999994039535522} {"commit": "a0b1cf0e3c7198f14f706805a6945c00028fdac9", "message": "Saving results to database. Also, hardcoded db connection string file to mcollins home dir; need better solution.\n", "proba": 1.0440606956763077e-07} {"commit": "062e04be7c4690d3e1a9568a8f685f2f9ed8f1f4", "message": "fix emacs color-identifiers:refresh\n", "proba": 0.0011581943836063147} {"commit": "eca0d82c6d6303ea9c85ff22d616332bb5e87ddf", "message": "Add functions, modify plot_obs_pred\n\n- Add functions to implement the more complicated alternative scaling\nrelationship between dbh and mr.\n- Modify function plot_obs_pred (and all functions that call it) to\nfacilitate inset. #To be tested#\n", "proba": 1.2720349218398042e-07} {"commit": "c832c31030ca620d8c5e65a4cbd2aa46196ca4a1", "message": "Changed the order of model deletion\n\nFixed associated bugs, cleaned up signals.py more\n", "proba": 1.0694275687228583e-07} {"commit": "5a5a0eece17063c038bf7ca733ada6b4fff0aa44", "message": "changes subjects\n", "proba": 3.0190903999027796e-07} {"commit": "3ff3739fd6f64ffa38feb03695e4ae5274b6d72a", "message": "Set profile name when creating a user\n", "proba": 1.508602167632489e-06} {"commit": "4157638d39ff5d6c9fe04045d8dfc56d00949d4a", "message": "Wrap a long line in decompilation in a PEP8-compliant way.\n", "proba": 3.631058643804863e-05} {"commit": "1990b849f8a39cf6243c321a746d11d85a9c2778", "message": "Fixes some pylint\n", "proba": 1.5440242577824392e-06} {"commit": "6b74fa7bd577d45efc413c4ae50a399be3fbcca1", "message": "minor updates\n", "proba": 2.60650864447598e-07} {"commit": "d371bbf52a80b1f777542573eb40965d3e46b944", "message": "Update frozen_dict__unittest.py\n\nThe unittest now tests for either the Python2 or Python3 version of FrozenDict, depending on your runtime environment.", "proba": 1.1588196713319121e-07} {"commit": "e89cc77d8fb3c88e15c309326ad3280d34303803", "message": "bug in build suffix tree\n", "proba": 4.2631006635929225e-07} {"commit": "473bb5ea84a5d76633c044810774d84dc5e2f6f8", "message": "Times in the schedule json are now in UTC.\n", "proba": 1.0282485618517967e-07} {"commit": "8f5c7f5715c1d4442a33b9c4b846e19469d15d30", "message": "Cleanup: Replace list() with []\n", "proba": 1.3504686648957431e-06} {"commit": "1b9bc05d5452111e34e6492fb3684f849c4f6ac1", "message": "!U MASSIVE CHANGE DO NOT YET USE!!!!!!!!\n========================================\n\nHuge refactor of the codebase to allow us to use the main functions of the code, the DataMap side of things, in other subclass. This means we can use all the same code and just replace the actual blocks that grab the data.\n", "proba": 1.201993029553705e-07} {"commit": "acb8c3187693b2b432267cb00b6009b981b40486", "message": "Reverse the -r run command arguments.\n\nThe run_options have to come after the module name for this to work. \r\nOptions like the following have to come after the module name to work:\r\nrun_options = --stop-time=100ms --wave=simulation.ghw --fst=simulation.fst --vcdgz=simulation.vcdgz --vcd=simulation.vcd\r\n\r\nhttps://ghdl.readthedocs.io/en/latest/Invoking_GHDL.html", "proba": 0.9999957084655762} {"commit": "a39a444c3a9114e3f0ceb03f710dce064da1950a", "message": "Update Reddit.py", "proba": 8.951536187851161e-07} {"commit": "42384651d9eb6f0dc40afa80fc09530d44a57b82", "message": "post_save signal to send backup to destination after saving in FileField. If successful, erases FileField file.\n", "proba": 1.0899628222205138e-07} {"commit": "985905f4f5a6c51135ae7e0a9796f40cdb98c199", "message": "Formatting revert", "proba": 7.398685397674853e-07} {"commit": "965335819279d076639dbe432203fbe05ff950d5", "message": "Interface changes\n", "proba": 1.120863203141198e-06} {"commit": "5d3c0e2c235b7f1261ea6c94d4295a9188e7108c", "message": "Improve logging for corrupted gaphor file\n\nSigned-off-by: Dan Yeaw <2591e5f46f28d303f9dc027d475a5c60d8dea17a@yeaw.me>\n", "proba": 1.2196160525945743e-07} {"commit": "9280e7738dad8415a52a81973b5a52e47c4cc8ea", "message": "getting there\n", "proba": 1.41557575261686e-06} {"commit": "ec432a8a16723792616c654252299576b928e84e", "message": "Corrigindo a defini\u00e7ao das variaveis globais\n", "proba": 1.0252537094856962e-06} {"commit": "276a9fa5d958b8aa9d0fc11df76992ab09e3acab", "message": "getting gsd from 1b image rpcs, preserving data range on dem resize/interp.\n", "proba": 9.979156345707452e-08} {"commit": "a9e47e8d1ade963eda0b7af0ae98c41da035dcd9", "message": "Fix address for evict.\n\nThe address for eviction is {tag, addr[], 00}.\nAlso, add the check for FLUSH2 state.\n", "proba": 1.001015061774524e-05} {"commit": "dda61e0a85c5a1ea18941d7beadf7e7e2f7d45d9", "message": "simplify fuse test\n", "proba": 8.793726010480896e-06} {"commit": "7422694e8a3f593fc5143ed7ae9c29a6eca6e73e", "message": "Fix refactor errors\n", "proba": 0.0008540464914403856} {"commit": "2453990cce7d5238b645120d9a5c146f4a116f3c", "message": "generator: use .getmtime() instead of getctime() in check_age()\n", "proba": 2.8120546176069183e-06} {"commit": "328b28f6ae5d7a7e660d0d19339433a16b317b8f", "message": "Reduce redundancy in write_puzzle by using set_direction_parameters\n", "proba": 0.0009428387274965644} {"commit": "c132f43a83422e3eeead9ea9ba262f0798b681fc", "message": "DOC: all other exceptions had docstrings except StockholmParseError, so I added one\n", "proba": 3.1167451197688933e-07} {"commit": "ae8ade8745161acde565c3006fa0931b7e983fda", "message": "fix bug with no arduino project\n", "proba": 6.645129815296968e-07} {"commit": "fb43da2e8e3ba2e7731e3a449af698e670372f17", "message": "Remove obsolete plugin class\n", "proba": 5.044340127824398e-07} {"commit": "ee09485a8f3d7d1f47de830fc79b09afa8e4fd69", "message": "PEP8ify image.py\n", "proba": 0.0002506984455976635} {"commit": "430c5dfb8374459f69b0c2f2ecf7ee88a228ef47", "message": "[svn] Fixing cheetah option to use normal templates dir.\n\n--HG--\nbranch : trunk\n", "proba": 1.3207255733505008e-07} {"commit": "7b11a176b5cd9ab970e4033f5de79bf93176267c", "message": "Add some add_cache docstrings.\n\n--HG--\nbranch : trunk\n", "proba": 4.509230166149791e-06} {"commit": "6fc00ce567fd93e61b1b03a75c3c11b9d76821ac", "message": "Change default MPRester endpoint at request of dwinston\n\nmaterialsproject.org without the www will be the preferred endpoint going forwards", "proba": 1.2242306013376947e-07} {"commit": "41f646387fecfbdb77a96ec8ec05e6f476886c92", "message": "Simplify bibtex checking further.\n\n\nFormer-commit-id: 3bde13077af7173853f78f942fb7257b9ffdaa7d [formerly 509f5fc3e71cc373c678d85939b8d28727955d68]\nFormer-commit-id: 913f0889dfc19844668c9ccbce90751f6c089769", "proba": 0.9994931221008301} {"commit": "a16e5c2d7de84d6a330eebcee97191aee227d06b", "message": "Use libmediainfo instead of the mediainfo binary\n", "proba": 3.0215673518796393e-07} {"commit": "70b813412282388bbc71a6088611e1297496c2fd", "message": "use pipes.quote\n", "proba": 9.463691412747721e-07} {"commit": "a89a9a1e5f83db61c8ec6fe9be08a1f72d10c578", "message": "improved custom virtual class workflow. fixed a bug in component names\n", "proba": 5.632174179481808e-06} {"commit": "697e431a89997c8cbd15c0b0efcf38fa7d660e28", "message": "id in object_map\n", "proba": 2.393236400166643e-06} {"commit": "139d7d4d09758424d9329286fbf35d715454abf8", "message": "Articles do not get concatenated anymore ;)\n", "proba": 5.18217234457552e-07} {"commit": "a8658e00d26e81923f484dcff1fdf2a0f5c4d459", "message": "[FIX] BadVector to BadVectorError\n", "proba": 3.257132163980714e-07} {"commit": "65c6b8e0e17c8ceb9eedc19974663d20010359a1", "message": "ganeti.http: Don't reuse key and cert objects\n\nReusing the private key and certificate objects gave us problems. This\npatch changes the code to only cache the PEM data, but the objects\nthemselves. For every socket, the private key and certificate objects\nare created again.\n\nReviewed-by: iustinp\n\n", "proba": 1.1053506909775024e-07} {"commit": "a806819ec31a91bdfa400f4954ea6bce2f9aadae", "message": "auto thresholds tests\n", "proba": 5.213814233684388e-07} {"commit": "827227530ad37a7211d3faa626781f618b288407", "message": "core: alias work. DependNode.attr() now casts aliases to Attributes properly (PyNode already does). added DependNode.listAliases(). added 'alias' keyword to DependNode.listAttr().\n", "proba": 1.1136758359953092e-07} {"commit": "8dfbe2f4a9ecb2cda939f619d78056191fef20b1", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "e5d87d4ac6c810c9aa738eee6d0173e4ab609356", "message": "Change parameter names in parser for clarity\n", "proba": 2.119508906162082e-07} {"commit": "14ab9638565be49df3c873efcfa883f3a5b128eb", "message": "Added a dumb little timer thread\n", "proba": 1.319637732422052e-07} {"commit": "74d16e26980d037f4521eb194f9f2b4f8bad18a9", "message": "a better way - pass function to be called as self (argio)\n", "proba": 1.589866229778636e-07} {"commit": "c7f8ef70295a89e28bd51161487356908a80e558", "message": "Implemented a naive version of stochastic gradient descent;\n(1) sgd update is x -> x - step * gradient;\n", "proba": 9.250786206393968e-06} {"commit": "a08fc002a676ff6acabfcf0cb414e406dfe8e37a", "message": "fix pb with comparing two sequences as boolean\n", "proba": 0.9999946355819702} {"commit": "41fddcb4077f60f47d1d2a67a80104425815f52f", "message": "astrokep: implemented consolidate_kepler_fitslc, will test soon\n", "proba": 1.3071922921881196e-07} {"commit": "256b780126fdc5023753446bf4929cc0a443fb5f", "message": "Detectors to be tested.\n", "proba": 1.3715127522573312e-07} {"commit": "f25503cb5e6d2f24687dc664727621fc85b10a55", "message": "Don't do the _tempfilestodel check if it is None\n\nCloses #2036\n", "proba": 1.0027922598965233e-06} {"commit": "e9604cb3557db32805da575f01972c54c598f9fd", "message": "Ajout du parser perso\n", "proba": 2.7701757062459365e-05} {"commit": "c8fb483d2a0b33f31277fccc4aa2db404ff9a903", "message": "PEP8 fixes on tests/dec_test.py\n", "proba": 1.418861330648724e-07} {"commit": "662f80cb773696b57026ce8c00ba71f9d20ca857", "message": "rm _find_pkg_data_path\n\nSigned-off-by: Nathaniel Starkman (@nstarman) \n", "proba": 1.4823169180999685e-07} {"commit": "d0250b6675c7cc4de6bf68eab0d118e551e648d7", "message": "PEP8 fixes on tests/eor_test.py\n", "proba": 1.450129332170036e-07} {"commit": "368c2df4b492f8fd6ac833ddd44a334049bd9dd9", "message": "Adds legend placement options for PCoA plot.\n\n", "proba": 1.1006108735500675e-07} {"commit": "cf80e90f1b2367007fdc6bdffe25b66601a83ae1", "message": "Addedd MDA sentence\n", "proba": 0.0020644906908273697} {"commit": "d201868a65fe93e00846f6bd82e58a3057745fc7", "message": "Suggest copy_records_to_table() for the purpose of bulk insert.\n\nConnection.executemany() is not the fastest choice for bulk insert,\ncopy_records_to_table() is a better choice, so make it easier to find by\nputting a note in executemany() documentation. See #346 for an example\nof a performance confusion.\n", "proba": 1.274390513117396e-07} {"commit": "085dc8803e0d2db5ab08a6f88fff152f4abf8351", "message": "Fixed a bug with deleting owner association\n", "proba": 2.459700851886737e-07} {"commit": "481d2b7553e8824d38efa82dc86146f6a0dfeaf3", "message": "Correct the way we create the nfs dirs.\n", "proba": 2.1286528806285787e-07} {"commit": "bcfba3b342facffe38a6c527937cd8647955d473", "message": "Syntax\n", "proba": 0.0002501824637874961} {"commit": "bfa95d72efd43d5e4b1421901790d76fb8f88afa", "message": "Update edit.py", "proba": 8.538000315638783e-07} {"commit": "a75c3845610f092ae161deea315fae4af4c0dc4e", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "8556f41840990116856e875bb7ecc1412021bac0", "message": "constellation constructor now makes empty constellation if no parameters are given\n", "proba": 2.2954191081225872e-07} {"commit": "91f0d25b4e6670c8d136701624f6df1acfccad7d", "message": "log10 of the rate coefficients.\n", "proba": 4.492574419145967e-07} {"commit": "ea3d885bea79858894e86fe798e5c28f346754ab", "message": "Fix double encoding bug\n", "proba": 2.4923127057263628e-05} {"commit": "fbaba7fde73247d8221b1407500d69acf37b58c5", "message": "more cleanup\n", "proba": 1.3725896508276492e-07} {"commit": "8918ebf3c6e1ef4b801f9690b439f50f83fe9920", "message": "Added boot segment parsing for raw boot disks (no assumptions about valid DOS flags in the boot sector)\n", "proba": 1.0453280196998094e-07} {"commit": "9c0316da4b32267e36b1d3d7b9c13de198ef257b", "message": "As of today, treat all pages as utf8.\nAlso - print a warning if converting from utf8 fails.\nAnd ignore a new class introduced into lordspages.\n\n\ngit-svn-id: 285608342ca21a36fbe1c940a1767f009072314d@10914 9cc54934-f9f6-0310-8a8d-e8e977684441\n", "proba": 1.7739567965691094e-06} {"commit": "49dc05f559b78d26a90ab7bf6c49de98909566dc", "message": "Add multiprocess queue logic to forward metric info\n", "proba": 2.4309608193107124e-07} {"commit": "1307ab810efa303a836c31532d2da2942d148161", "message": "Sort methods in alphabetical order\n", "proba": 0.999997615814209} {"commit": "768e3cdf5123c9b7c8efe17fdc772396e22851e7", "message": "Constraints renamed to restraints", "proba": 0.0006330472533591092} {"commit": "65015e37128feb3ba561b96361ee9a5c509467a6", "message": "Update the drawnet.py to reflect the recent revised net definition.\n", "proba": 1.0196961142128202e-07} {"commit": "6374a8925156bbd8805c5497506e57e4433f8675", "message": "ipex update\n", "proba": 3.700732236211479e-07} {"commit": "1309d85b35bf4ab07813f226e0e7cfda50e14a3d", "message": "refine some long commands to be more readable\n", "proba": 0.9994252920150757} {"commit": "85ad19f56d8a70d80d73f787351ac6ba4786d5d9", "message": "pylint fixes\n\nE1101:212:run_tests: Instance of 'SyncManager' has no 'list' member\nNot sure why this happened\n\nChange-Id: I4f095a1c33e71e688d0fc3e86a15a5e6580203bd\n", "proba": 3.3619041914789705e-06} {"commit": "553a4a7eb4b7e1a6219032b7e2b6c0e1cfd8c18a", "message": "qipkg: raise when projects are not found\n\nChange-Id: I2fca9740c03d2fc1de27b2f7a88d6822e5baf206\nReviewed-on: http://gerrit.aldebaran.lan/42572\nTested-by: gerrit\nReviewed-by: dmerejkowsky <1e4b13000fa8777df4cefd2fd8215187e3deb062@aldebaran-robotics.com>\n", "proba": 1.2462554366265977e-07} {"commit": "835464e6777ef12a393e9344d356d70ca6918154", "message": "remove unused variable.\n\nChange-Id: Ic88b354ade63299660b713b0a3c9c7d0a7597ca1\nReviewed-on: http://gerrit.aldebaran.lan:8080/9549\nReviewed-by: dmerejkowsky <1e4b13000fa8777df4cefd2fd8215187e3deb062@aldebaran-robotics.com>\nTested-by: fmichea \n", "proba": 6.688364919682499e-06} {"commit": "9445ae3293b8675835b731b0698c64ec43a10a36", "message": "qisys.command: fix dead lock in Process.run()\n\nHappened when terminate() failed but the process.communicate() call\nwas still running.\n\nChange-Id: I3bc001a503ccba8905142cac38bca6366d3d4490\nReviewed-on: http://gerrit.aldebaran.lan:8080/15013\nTested-by: gerrit\nReviewed-by: hcuche <2a0975cc082cedff4d4350e3f6ec187146151bc6@aldebaran-robotics.com>\nReviewed-by: proullon \n", "proba": 5.936478828516556e-07} {"commit": "2ebc76ef28a0efbdab66d380fa0242aa70f3cb3a", "message": "add Content-Type check as the desktop sync client is quite touchy about this\n", "proba": 1.135186380452069e-07} {"commit": "fe85fa7cdef8ecf8f8227fbf6b771d0e33609979", "message": "Update uthcode code.\n\n\ngit-svn-id: 28eb60533e633b69bbc2035b64c54cbcaec13509@658 1860ccae-0748-11de-bc6d-132d5dcf21d4\n", "proba": 2.975055031129159e-05} {"commit": "eb48a7fde5c37f1c905d1c85aca7d0518f65e652", "message": "Python/ifconfig: T1557: import cleanup for subprocess\n", "proba": 6.260634677346388e-07} {"commit": "7955fad79ae61b434b9056d606bc36810fd59a21", "message": "wiki_disambig: Change to directly use articles rather than locations; expand eval\n-- expand close match to 80\n-- expand evaluation to track various types\n-- option to output filtered version of redirect file\n-- add option to read in Wikipedia-generated toponym eval file\n-- add options to allow for weighted Naive Bayes\n", "proba": 6.904531915097323e-07} {"commit": "d38790cbca2602f37ab1aa0cc72b42bffc8304b2", "message": "minor bug fix\n", "proba": 4.360660739166633e-07} {"commit": "7f10cf880536064c2306abdb2e5e98363408d1a4", "message": "Combine attribute setting from nodes and values\n", "proba": 2.0863167549123318e-07} {"commit": "bbb96adb86eb1bc770ee7bfead982619a6ec9695", "message": "Allow integer tip names in BEAST nexus\n\n", "proba": 2.632232462929096e-05} {"commit": "60059c9b705e660c1d871cb97a188830098c2fd2", "message": "fix Hamiltonian methods _sample and _in_rotating_frame so that they copy over the site_labels attribute\n", "proba": 5.606406716651691e-07} {"commit": "673fe4423ab630adbf48c3095dd192357d58953d", "message": "tests: handle LVM thin pool\n", "proba": 4.376717868126434e-07} {"commit": "2c83c7b16c75931dd9f77e1806c5e6c266a27e13", "message": "qmemman: fix setting logger for foreground mode\n", "proba": 5.046510409556504e-07} {"commit": "57961e0069b5a2d3a7376535ceba29a4a1760603", "message": "Use tar images\n", "proba": 3.5885832971871423e-07} {"commit": "cf4e91cb794ef1f4c4de54ef7f1fed8bfe885d05", "message": "Update CAS2 script to conform JSF 2.2\n", "proba": 3.480420787127514e-07} {"commit": "e845eaa89eb2f96a52d7b4d01d16f22d0b66e15d", "message": "Redundancy setup: Check if tinc is installed remotely\n", "proba": 2.0597916261522187e-07} {"commit": "b3fc26ecb441d2ca9a5968ead7b2761c156b1451", "message": "matrix_builder should take a param dictionary, NOT a model instance\n", "proba": 0.00041592575144022703} {"commit": "4112ec29ba9c637145504197c8d123d0eae8a5e0", "message": "ErfEd: update setup.py.\n", "proba": 1.1940548461097933e-07} {"commit": "275c0ffb11cc76895176fed02684eb1001058347", "message": "hotfix showResult for ST2\n", "proba": 2.830685161825386e-07} {"commit": "cd7a9cf01f5f910d087ee71c4bc1fdfa8d6d1527", "message": "adding commented code in Floquet\n", "proba": 2.4203566795222287e-07} {"commit": "c747068d4a2c689f192a352a41689af532b7014d", "message": "use sys.exit\n", "proba": 2.1241288777673617e-05} {"commit": "963571a5b85a2bfde158366f539a5a9ffc07f1e9", "message": "Fixed import location of qft in its unit test\n", "proba": 1.2644754576740524e-07} {"commit": "8b2d4160351f9756658c3c6e23e0ca821bf0ae19", "message": "Simplified warning_tag() logic\n", "proba": 1.5447929399670102e-05} {"commit": "3063152af7d1c80d763548c27c1669000c7b6fbc", "message": "minor fix\n", "proba": 3.935496124540805e-07} {"commit": "babaf59ffc0f99af438ff9f8e91c7eb4e76ac9ec", "message": "update docstrings\n", "proba": 6.949685484869406e-07} {"commit": "95e8dae7e01677c73804e2b43506b9d6a424aa6c", "message": "indents\n", "proba": 1.2898217391921207e-05} {"commit": "6c12f2c726b1c93f28a572cbcb17cd0fd4c5884e", "message": "Added a few handy function to save dictionary to txt or bin file\n", "proba": 1.2589164555265597e-07} {"commit": "85228419c49a98631d3f4f3a93a37ac1c0b203dd", "message": "more changes\n", "proba": 1.488436538465976e-07} {"commit": "647c0bee553fcb6db762994e0582b29a163efe5f", "message": "Refactor setup\n", "proba": 4.546571972241509e-07} {"commit": "60d160a2e9e32715fe4514688c2a87b8d6b56fd9", "message": "Also document in example that unarchive download was added in 2.0\n", "proba": 1.1794933385544937e-07} {"commit": "2936682f004d9d3fc349e31113607636e971b71b", "message": "Revert \"removed invocation info as it is not no_log aware\"\n\nThis reverts commit 6127a8585e8eaea159ed5fd91c3ddb61b2d25dc8.\n", "proba": 1.3177135826936137e-07} {"commit": "5ba4e4411b5f76a83191fc45e2509219c0e343e0", "message": "Adding headers to be returned for retrieved messages. (#47375)\n\n", "proba": 1.1115198361721923e-07} {"commit": "06a4e75c44312dc6d8ac349dd3ecff3fc759faa1", "message": "add worker_conf_file parameter to init()\n", "proba": 1.9865311173816735e-07} {"commit": "4576951755f70b45f6fb4f9de304f57a36692dfe", "message": "fix refacto...\n", "proba": 1.4471038412011694e-07} {"commit": "241096193f396cdf37c49dd3e5ceaf2436877fa9", "message": "Don't raise exception for missing style\n", "proba": 7.951600196065556e-07} {"commit": "d5fdaecc952055d6aeec2a5b2925ccec621c1c9d", "message": "fixed bug and added URL-decoding\n", "proba": 2.386619257777056e-07} {"commit": "bbdf2fb12c943b6f3180e062414ca761cfaff97f", "message": "Update views.py", "proba": 4.614934141500271e-07} {"commit": "221ad37d6f555db7d8c563ce11ac8bbf92f4a2e8", "message": "logging\n", "proba": 1.1690622159221675e-06} {"commit": "cd7824576038b9eacecc989d4f7c3fb3caa55984", "message": "Update views.py", "proba": 4.614934141500271e-07} {"commit": "6f9fe4dfc2b258168d153a3e55dd75a26d7fae8c", "message": "Fix thread view.\n\nThreads weren't being saved in the view so new threads couldn't\nbe created. Fixed it now.\n", "proba": 1.0280309226118334e-07} {"commit": "86571e9419084aba76a964c69885dd222cfd1d85", "message": "reorder my links\n", "proba": 1.747094273696348e-07} {"commit": "c07b0d0507de943e55ea05c9310b3e728822b3db", "message": "fix(process): activate multiprocessing\n", "proba": 3.032906988664763e-06} {"commit": "4005f29a8517b6d28a492d9a02032db90e25a563", "message": "Use Exceptions when creating a match set.\n", "proba": 1.1811953726237334e-07} {"commit": "57c7f8c0a3ccec4b40fcdcaa944afbd8bcdedcfe", "message": "Repl environment passed down during defines\n", "proba": 1.5547946929928003e-07} {"commit": "e426f9ed98f2e7fcf3ded8ff4c5c9491f8cea0e6", "message": "Removed debugging message\n", "proba": 5.215161991145578e-07} {"commit": "4a6e4e47a74be078537405552699dbc4a7aeec5a", "message": "add special casing of bill number in search, #149\n", "proba": 1.247982936547487e-06} {"commit": "9f9e01e77f7b9feed62c29cc76cf18ffbd9e5486", "message": "commit\n", "proba": 8.363364258912043e-07} {"commit": "1889a0f935258f0654d2dcc21297ca7bd6c2df2a", "message": " debug in CI\n", "proba": 3.373464778633206e-07} {"commit": "07f634582544a1142f537a73091fb2153c4fbf67", "message": "move create_billable_for_sms to end of function\n", "proba": 7.547777727268112e-07} {"commit": "e477d3b791bf6eb819430264155b66688b064626", "message": "refactored connection form to avoid reverse lookup\n", "proba": 4.463134644083766e-07} {"commit": "1f2fd60391879b6544339fcd4b44354591dfb529", "message": "use CASE_INDEX_INFO constant + import cleanup\n", "proba": 1.2408457905621617e-06} {"commit": "1023d75ae7913a7d1a49be23d7b58fb1a62f8507", "message": "prog bar bugfix\n", "proba": 4.4699498857880826e-07} {"commit": "49e9ce72636aa3811b546ffe4a25eb0d3b2e0bad", "message": "Refactored non-maximum supresssion algorithm\n", "proba": 1.2897282431367785e-05} {"commit": "7f6c212313e6b1007b43ddbf72617ec2bb691f0c", "message": "Allow nullable object fields\n", "proba": 1.753343099153426e-06} {"commit": "76e85f9ca6db1c454c9513c658fc3191af5865e1", "message": "add weird binding.gyp which checks for icu-config\n\nonly when icu-config is available it actually tries to build\nnode-stringprep.cc.\n\ni added support for windows and linux seperatly like pg (node-postgres)\ndoes. might not be pretty but looks like that it works (at least on my\nmachine it builds with and without libicu-dev without errors).\nHaven't tested it on windows though.\n", "proba": 1.1926732668143813e-07} {"commit": "8f375e1379b97c20d226385616fcd797745c782b", "message": "Address bytes/str issue with POP3 email in get_email script, to address #565\n", "proba": 1.964237554830106e-07} {"commit": "7ffa37b5a175fea453d592c6bba44bbb580ff607", "message": "Add xcode flags", "proba": 1.2768372243954218e-06} {"commit": "c5d424e950b15c193489b7fac440fdbec157734a", "message": "make sdk easy to reach\n", "proba": 2.0585976301390474e-07} {"commit": "2126f9afc13a1a1b314f3d6153f8b308b2398be4", "message": "Ensure xcode/clang uses cflags\n\nSilence pedantic warnings triggered by V8 in 0.11\n", "proba": 2.4495878392372106e-07} {"commit": "44258ce59c17a0bd8c238a938bcad713c72cf7cf", "message": "deprecated UniqueObj and enum module\n", "proba": 2.0265119360374229e-07} {"commit": "3a1db53d5aa50716e18ccf8a7395094985e9469a", "message": "Simpler expression for finding vips-cpp libdir (#656)\n\nFixes: #655", "proba": 1.3428000045223598e-07} {"commit": "7ef158cc0ecc093463955d3f465fa24dc2c80e98", "message": "added set_gateway for get_gebouw_by_id\n", "proba": 2.2083146689055866e-07} {"commit": "136965e2230fe6808eca753d5d8ec69e42160065", "message": "Added convolution grinding routine, put debug flags in window functions\n", "proba": 1.4820822968886205e-07} {"commit": "3fa81faf583092836e449d5f202e69bd7257dcbc", "message": "Updated from Brython Server: 9/23/2015 2:00:36 PM", "proba": 1.0918688531091902e-07} {"commit": "d9c107501caf739a553f8577965cc5e7e2c51c97", "message": "created a formatting function which returns a string representation of any object or value. Will provide additional information for numpy arrays or lists, tuples, sets and dicts\n", "proba": 2.2779926212024293e-07} {"commit": "b0d54bbf9196b1001766acbb8dd03dcf8d15290f", "message": "Replace r_ calls with arange\n", "proba": 0.00786575861275196} {"commit": "9c5c9bf1ca7a95a5c7e5caf94763076527f3d699", "message": "Update naming of remaining EIA923 tables.\n", "proba": 1.0722973087240462e-07} {"commit": "0df7d3e3804f65731d211bbaa275eb69b265bc71", "message": "Updated from Brython Server: 2/1/2016 2:50:54 PM", "proba": 1.1735723859374048e-07} {"commit": "f863efdaca6e4bd5986b4f92913e330980e7f2dc", "message": "Use COMMAND_CLASS_THERMOSTAT_SETPOINT to get unit_of_measurement instad of COMMAND_CLASS_SENSOR_MULTILEVEL. Not all devices have multilevel sensor. (#3003)\n\n", "proba": 1.9015052998838655e-07} {"commit": "7964c6af36b7697c6db041cdf4b51c21499c6ca4", "message": "Additive constant term can be used when uniting two scattering curves measured at two different sample-to-detector distances\n", "proba": 2.7360351850802545e-07} {"commit": "a87eecc3e1c5c941ec29bcc4701afb2bc3acc885", "message": "Refactor get_version_from_app to better handle unexepcted cases\n\nFor example, graphite's `version` returns a `module`. So this should\ncover all of the bases to assure that we don't return back a `str`\nof a `module`.\n", "proba": 2.5300954575868673e-07} {"commit": "ac34973abc908edfbafa5c2d8a4784a1686fbf3d", "message": "Round g20500 to nearest integer value\n", "proba": 0.0018940343288704753} {"commit": "df46062999d192e56ea4d83b5d4401d5f2fc804c", "message": "Updated from Brython Server: 2/24/2016 1:43:05 PM", "proba": 1.0992954457833548e-07} {"commit": "145434981354f331f9415a6b1f9f1a6261210e40", "message": "Re-add support for input_number as source of filter integration (#45245)\n\n", "proba": 1.1770728747251269e-07} {"commit": "1cdfea9887bcecd49f8b405db06674e1699d62cb", "message": "Add tournament selection to possibility generation.\n", "proba": 1.2247257075159723e-07} {"commit": "3c6ffaeb5d8768ccf076b29fb13e88780b8fcc87", "message": "Fix a couple small style issues from my previous change.\n\nThis fixes up a couple issues that came in from review after I had pushed it.\n", "proba": 1.0378897741247783e-07} {"commit": "333aede826f774a2097a9d8290f6c687eeeaa054", "message": "update RECID\n", "proba": 6.589607437490486e-07} {"commit": "403087209ed6f61ee51ce208603bb4ba1cb2f650", "message": "Updated from Brython Server: 2/2/2016 2:47:22 PM", "proba": 1.1660787180289844e-07} {"commit": "6192c9b7a2dda64c38415f3cf65fff16b726fae7", "message": "ganeti.http: Remove unused attribute \"should_fork\"\n\nThis is a leftover from removed code.\n\nReviewed-by: ultrotter\n\n", "proba": 1.269753937549467e-07} {"commit": "2ac0aea765906d7e538df0a47b4bbc783849e8fe", "message": "Fix Lyric cool mode (#54856)\n\n* fixing Cool mode in lyric\r\n\r\n* Use climate integration constants\r\n\r\nI believe this fixes this issue: https://github.com/home-assistant/core/pull/51760#discussion_r650372737\r\n\r\n* Run through black\r\n\r\n* Delint\r\n\r\nCo-authored-by: Yadu Raghu <61be769f6275d2e51a8217d67bca4251f9c6d256@gmail.com>\r\nCo-authored-by: Martin Hjelmare <173b16105eb9b11d9c39631a02fb13474d673162@gmail.com>", "proba": 0.00021568930242210627} {"commit": "932c2ed19890924da07ad8f1921c93b10bdc9619", "message": "remove empty spaces in tags\n", "proba": 0.006347273476421833} {"commit": "d4e2abe311e0379f2c796c9b9aabbde7bfeb1f44", "message": "Added support for giving kwargs to parser and serializer (via format).\n", "proba": 1.0172659159479736e-07} {"commit": "4ed88558503bb6cd52fc7b5dc1b9be3c7e66b970", "message": "Updated from Brython Server: 2/5/2016 1:28:24 PM", "proba": 1.110843683704843e-07} {"commit": "dbf67d912c0ce7d2a26a67626154f3e2bd17a19b", "message": "Make patchelf test use the realpath (#27618)\n\nI think this test should be removed, but when it stays, it should at\r\nleast follow the symlink, cause it fails for me if I let spack build\r\npatchelf and have a symlink in a view.", "proba": 1.3069529813947156e-07} {"commit": "e482827975b58fe2ae9d0d246617fd5378716a28", "message": "Fix incorrect attribute checks in Modbus hub (#50241)\n\n", "proba": 1.5688013377257448e-07} {"commit": "3ea76ff9e18f0c8627acd8c382cb21c100d11e50", "message": "RDR-1181 consents link in launcher\n", "proba": 1.1239272623697616e-07} {"commit": "144aeb49cbaa6de5717e0f59d98099b55b59fde5", "message": "Updated from Brython Server: 2/1/2016 2:50:23 PM", "proba": 1.1587047055172661e-07} {"commit": "1d6fa4eb87f066cce1ca3a95b9a5e2065652b9b3", "message": "adds packet.net on config.py\n", "proba": 8.93405399438052e-07} {"commit": "1fff6ce4380c788deab85fcfdb8e12259c6ab71b", "message": "Deduplicate MQTT_PUBLISH_SCHEMA definition (#4411)\n\n", "proba": 4.408224413054995e-05} {"commit": "f66a6b2a007fefe01247fe40e64e40d863e1ff89", "message": "Remove unnecessary dependencies from webrtc_all target.\n\nThe xmllite and xmpp dependencies are pulled in when include_tests==1\nbut I need to be able to do a build without processing them\nhaving include_tests==0.\n\nBUG=4185\nR=andresp@webrtc.org, tommi@webrtc.org\n\nReview URL: https://webrtc-codereview.appspot.com/37679004\n\ngit-svn-id: 917f5d3ca488f358c4d40eaec14422cf392ccec9@8109 4adac7df-926f-26a2-2b94-8c16560cd09d\n", "proba": 0.0003097062581218779} {"commit": "a9a5e2280d5d77863ed7bd00c21d46e47f028d47", "message": "cryptopia: remove unused import\n", "proba": 1.0258963811793365e-06} {"commit": "b187b17a4f4c900183fbbf83c2db4ac20bc60b06", "message": "Fix MQTT availability startup race (#37718)\n\n", "proba": 7.085748734425579e-07} {"commit": "e0ca453e5d1ee661912b805c7271657127890e75", "message": "Switched from the attribute-style of model, inheriting from object, to a\nmodel inheriting from UserDict.IterableUserDict.\n\nThe reason for was because there was absolutely no clean way to safely\nmix the use of class attributes (the `fields` attribute) and instance\nattributes without running into infinite recursions due to overriding\nthe object.__setattr__ and object.__getattr__ methods.\n", "proba": 1.466383707793284e-07} {"commit": "49a671e76c1bbd9395369c8654dbeeb4914d117d", "message": "fix bug around getting access time of a nonexistent file\n", "proba": 2.840344563992403e-07} {"commit": "f6a6801750b29279aad8a7da2f64d607bcb13ef7", "message": "As evidenced in pytest #245 (https://bitbucket.org/hpk42/pytest/issue/245), some file objects may not have a mode attribute. In this case, and if mode is not supplied, trap the AttributeError same as if f.fileno triggered an AttributeError.\n", "proba": 1.2476051836074475e-07} {"commit": "a044b16f40311abbee9fb3c8c8b82d9179c9e2e3", "message": "[svn r37926] Small visual tweaks.\n\n--HG--\nbranch : trunk\n", "proba": 1.299334684290443e-07} {"commit": "233756a018dd54aa611ec8147bfda09a3c16268e", "message": "these are some assertions that would make things easier, if they can be maintained.\notherwise, if listonly can go from True to False, then there's the whole cascades issue\nto deal with, same for delete moving from False to True and vice versa.\n", "proba": 4.3173116637262865e-07} {"commit": "5891bb3324d15b9961a037ff6a3531e3ff0047bf", "message": "[svn r38700] Fixed paths, docs are now no longer placed in a sub dir.\n\n--HG--\nbranch : trunk\n", "proba": 1.4612686527470942e-07} {"commit": "ec807dc3268801720dc20e7bf3b9ff8b4b231e5f", "message": "fix global song reference\n", "proba": 4.97063338116277e-05} {"commit": "56bc01c18d6779aaad436a69ee693da2b7555bcb", "message": "propagate docstrings for column/fk collections\n\n\ngit-svn-id: 655ff90ec95d1eeadb1ee4bb9db742a3c015d499@5336 8cd8332f-0806-0410-a4b6-96f4b9520244\n", "proba": 1.4065197319723666e-05} {"commit": "dfbe9922b6e13b05f7a38f6d5de22d8034f05b35", "message": "allow simplified format for arc line filename\n", "proba": 2.284021320519969e-06} {"commit": "5565187300a533120c485085b47a4dd20136f813", "message": "Add more tests. Use MockLdap instead of LDAPObject directly to match the example\n", "proba": 1.3681056998393615e-07} {"commit": "422deea247ae3876f4bf9b47d815ccd6fef9a725", "message": "Fixed doc problem. Thanks Toby Ho.\n", "proba": 1.0676178163748773e-07} {"commit": "959af55f367c3ba28c4eb33c02735b295c581708", "message": "Bugfix for recipe grabbing\n", "proba": 1.5963689747877652e-07} {"commit": "ce8dcfbad6ab0242eefa93056aa76b35fadba5e1", "message": "GIT repo has been renamed to sremote. Bootstrap url has been changed.\n", "proba": 1.0791790572284299e-07} {"commit": "b79a1d42f3337f0eccdbea07e0f2afe9ecd18ab0", "message": "refactored naming in CompareValidator\n", "proba": 1.874323788797483e-05} {"commit": "2e644b6b76b8473aed72a8aaff2c026febee9409", "message": "Autodetect language if none specified\n", "proba": 7.314105801015103e-07} {"commit": "e2e28c0ad19ccb08807dde08e1b69cde9a86436e", "message": "Improved encoder docs\n", "proba": 2.668887759682548e-07} {"commit": "34f400f681c7497b10225c8d7564d4b3f1ee8aef", "message": "syntax error\n", "proba": 4.059871116623981e-06} {"commit": "17c10d7dad80212cd7bc387fa89a1edbc47cea33", "message": "Fudge the configuration of duplicate test results so that the output is consistent.\n", "proba": 1.0689774398997542e-06} {"commit": "4988b2ebd7cf766f4c5de487307e3ebfdde76393", "message": "debug msg b4 execution\n", "proba": 4.985679879609961e-06} {"commit": "190cabed040c3bf5daae2f56ed8c74f9fef6179c", "message": "last_modified values check\n", "proba": 8.165155804817914e-07} {"commit": "e34819db03d8592a3bc0b1811b4f43af5d1b28a5", "message": "Check if the accepted_error was not raised from test code\n", "proba": 7.867442377573752e-07} {"commit": "c902778188374351a7fbc2f25b2fd8688696b1b2", "message": "added goal to problem, also added predecessors and state_goal_test (for bidirectional search)\n", "proba": 1.1138777011865386e-07} {"commit": "c807449e4d399a195aae8b706bad3d09be63a368", "message": "Remove bogus 'self' parameter from the io version of output_server\n", "proba": 9.874638635665178e-07} {"commit": "5f1a39b697338979f6720d18b2caf44b7afcf0aa", "message": "Update main.py", "proba": 7.280797831299424e-07} {"commit": "209cf6badb37e58aa5ba81eae4638c911608ae75", "message": "Python 3 syntax error: '\\Users:' --> r'\\Users:'\n\nPython 3 will treat __\\U__ in a string as a Unicode escape and will raise a syntax error so let's use an r'string' instead of a normal 'string'.\r\n* $ __python3 -c \"print('\\U')__ # SyntaxError: (unicode error)\r\n* $ __python3 -c \"print(r'\\U')__ # __\\U__", "proba": 0.8739734888076782} {"commit": "ab69edc1b81f0abacb68d5d890a814a0afaec23e", "message": ":books: docs(lib/file#iterall): Add TODO note about using os.scandir.\n", "proba": 1.0448376031035878e-07} {"commit": "5d6869036130f6db33e0d99b6f16171db7730657", "message": "Fix bug in taring.\n", "proba": 1.2425989837083762e-07} {"commit": "bf047b7db22ce229b47b334e6fbdec2420ab6448", "message": "updated exceptions to NotImplementedError, the correct exception to use. Also, added some additional doctests. Finally, updated PriorityQueues's update_cost_limit function, so that it correctly updates. The direction of the inequality and the sign of the cost limit were wrong.\n", "proba": 1.2685482886354293e-07} {"commit": "1a498fba089a02490a73f76e5d19f4617bc0e7a8", "message": "made auto_npar optional for double relaxation\n", "proba": 1.2204979782381997e-07} {"commit": "b8ba39d683a81b6e26ff85faeedae5983da9c73a", "message": "dump CWL to files in a directory, correct parameter prompts\n", "proba": 1.450809890002347e-07} {"commit": "68bc4c175a4104baae300c919866c9fc2bdc7020", "message": "add mypy annotations to pyani/download.py\n", "proba": 2.4630480766063556e-07} {"commit": "129e1ba3712c1aa79afd1b92b973ec3538ebe51c", "message": "Entity UID Setting\n\nAdd Entity._set_uid method to ensure that the _instances dict and UID cache\nare kept up to date when a UID changes.\n", "proba": 1.0970353514494491e-07} {"commit": "fc5d8b9fe8abb9b9067a78e63d6a3180279e090b", "message": "Add constants for accessing sort_by tuple\n", "proba": 2.866806426027324e-06} {"commit": "28b47983c80382787bf26cffa1a9be6f7efd9cd9", "message": "fix request_public_key\n", "proba": 1.8993065395989106e-06} {"commit": "7e229de3101bbcd7a5547d6966fd7143cc574b66", "message": "Add comment for map variable", "proba": 1.7652794781497505e-07} {"commit": "603bd81fb6e8d0823dad545baea3ecc9eec0f877", "message": "added mkdir flag to Session.__init__() to allow adopting existing sessions\n(Boeing r1786)\n\n", "proba": 1.621686038788539e-07} {"commit": "b9fe0b2b7bae7b5f8fb6e6698bed7f4dd1165054", "message": "fixed #43\n", "proba": 3.4856526553994627e-07} {"commit": "5cefa5c97f798c4f7ec5c07aca62b4344c2b9c47", "message": "Remove clickjacking.XFrameOptionsMiddleware, since we now have\nthis protection in the nginx setup.\n\nFixes #1434\n", "proba": 1.0947006501282885e-07} {"commit": "fa777ef27f74c8231a7acda3b089adb4b1e0e5cd", "message": "Add docstring note about unset's limitations.\n", "proba": 1.163459444342152e-07} {"commit": "4dd13a8b031a57f6290fb43dc6daa5082041658a", "message": "Add ws_receive consumer with channel_session_user decorator\n", "proba": 6.44473630018183e-07} {"commit": "938de980e2a193ebed2954c1c3dc1a4d6f336c43", "message": "Beautified coupling figure.\n", "proba": 1.396489608396223e-07} {"commit": "c8560a28af561d3336ed9aad2dabfb3804689cd0", "message": "Fix indent in EOS.polyfit().\n", "proba": 1.3210168390287436e-06} {"commit": "a4969a8eda0034ed509a90109e1d1d661d517187", "message": "add vnorm to array imports\n\nFixes #35\n", "proba": 1.7794793905068218e-07} {"commit": "3a0550dd6aee1ead9e2b69f5de90546589d9fd25", "message": "fix documentation da.histogram (#6439)\n\n* fix documentation da.histogram\r\n\r\n* Update dask/array/routines.py\r\n\r\nCo-authored-by: Gil Forsyth \r\n\r\n* Update dask/array/routines.py\r\n\r\nCo-authored-by: Gil Forsyth \r\n\r\n* Update dask/array/routines.py\r\n\r\nCo-authored-by: Gil Forsyth \r\n\r\n* Update dask/array/routines.py\r\n\r\nCo-authored-by: Gil Forsyth \r\n\r\n* Update dask/array/routines.py\r\n\r\nCo-authored-by: Gil Forsyth \r\n\r\n* Update routines.py\r\n\r\nbins are not str\r\n\r\nCo-authored-by: Gil Forsyth ", "proba": 9.224386303685606e-07} {"commit": "c0b5f49c65854874e5ab6f710dd2c08dd5d636ad", "message": "Get a time-series of values from a file (e.g. netCDF)\n", "proba": 2.0325390437392343e-07} {"commit": "1f0af935aa5ac04bb9ca702d529cd3ae59280843", "message": "updated repartition documentation to add note about `partition_size` (#9288)\n\n", "proba": 1.0499098124228112e-07} {"commit": "c4ff1c92979910b2f457db935aad5c697aafb2ec", "message": "Allow default state transitions to allow for state strings as well as tuples\n", "proba": 3.166346118632646e-07} {"commit": "5a028f8bd32d59e37c4f9394ca93326776c4346e", "message": "Remove core module\n", "proba": 6.625892297051905e-07} {"commit": "aeb2d8ded2e75746e24325965e1f088cf28e5c60", "message": "plotting: no more qtg_default=False in docstrings\n", "proba": 0.0003860089636873454} {"commit": "8c512be48ca7dda9694ae686cf563ed487e6586e", "message": "Code refactoring\n", "proba": 2.3158183921623277e-06} {"commit": "7e51621ad18b0245ff30e7cfad12beb280d5b391", "message": "[svn] Fixed default ungettext to do default singular/pluralization how gettexts' one works.\n", "proba": 1.0973911912515177e-07} {"commit": "eb6548e25d121039c63148dc404ddb15fd76ff23", "message": "Fixing test c, g names for new names.\n\n--HG--\nbranch : trunk\n", "proba": 1.8688924683374353e-06} {"commit": "adf299711ae3309394c0326d729ad6b0ee306070", "message": "Change oder of B and C when decoding instruction arguments\n", "proba": 5.012364567846816e-07} {"commit": "c53040858b579e442024ec36df255d4f6084e9e9", "message": "switch to revision 1.2.2\n", "proba": 5.05446087117889e-06} {"commit": "221f7f792f4da943261fed106498c3e7d2adda51", "message": "fix for parallel optimization\n", "proba": 2.9172809945521294e-07} {"commit": "3a860cfe3ca0e6ec45b90a99591568103e5a4198", "message": "change version\n", "proba": 6.66106814151135e-07} {"commit": "7fdecf5e317a40461d1f5e31f3a9d912d74972c4", "message": "bug fixed\n", "proba": 6.739676905453962e-07} {"commit": "1c8d11f08bba3586a4e2fd82a98003b9dca2f24c", "message": "Remove fastMKSRegression import\n", "proba": 2.2090540596764185e-07} {"commit": "9321dc5d1a65b180c845c2073e40721c8b31b06d", "message": "Phi missing from transmute_spatial parameter list. Note that phi is constant over all volumes.\n", "proba": 1.0306695941153521e-07} {"commit": "29354b1579c98a68fe4e3c0e9b2d9a19f2521c33", "message": "typo bugfix\n", "proba": 1.2644504749914631e-06} {"commit": "d4f0cc05c24ee1045ab043e544f9ab959e15822b", "message": "pynodegl: typecheck dict argument in shared method\n\nnodes_def.pyx: 2198 -> 2188 (lines)\npynodegl.c: 61441 -> 61203 (lines)\npynodegl.so (x86_64): 549K -> 548K\n", "proba": 3.0103726658126106e-06} {"commit": "b219c3ae6b9183cf507685dc618bec5690ef8e43", "message": "paper over differences between Py2 and Py3 when displaying bytes reprs\n", "proba": 3.693215262501326e-07} {"commit": "e8231d8fe2dbfa3f6a1a0e12c29c7d1b1023ea16", "message": "MJup log axis number formatting\n\nUse scientific notation with exponents (e.g., 10^2) rather than scalars (e.g., 100)\n", "proba": 2.588571805972606e-05} {"commit": "4950a98637e3711d748e8d1676ef70e0e785477f", "message": "Fix ensure2dColumn: matrix to vector singleton.\n\nPreviously ensure2dColumn tried to check for singletons based on the\noutput, but there was a case in the nullspace of this check. By checking\nbased on the input, the problem is resolved.\n\nIn particular for res = [[0]] the return was always [[0]] previously.\nHowever, we actually want to return [[0]] only if the input was a matrix\n(2D array) and to return [0] if the input was a vector (1D array).\n", "proba": 0.0002090135676553473} {"commit": "70bf1e4207824cdf0ea6df056f274c935f3968d1", "message": "sorry testing once again before the release\n", "proba": 1.1758858420307661e-07} {"commit": "44d3504b5d2c1dbb4a9caba63ae02f5cda4425a2", "message": "removed superfluous @builder decorator from QueryBuilder.__getitem__\n", "proba": 1.7287585762915114e-07} {"commit": "832429041fa6d655b1854f6f09950a7719a5af23", "message": "Changed file name\n", "proba": 3.815133823081851e-06} {"commit": "f96be2247692a9ce36b887b124c1331f13ce6d1d", "message": "Equality rewrite refactor\n", "proba": 1.5882401385169942e-06} {"commit": "2267fcf129dcfc4f832f787dd9e541b0028cfa12", "message": "use deep copy value\n", "proba": 2.580553086772852e-07} {"commit": "b731c35a6b6865510c6521762d5c1906de6c7b38", "message": "formatting\n", "proba": 1.1576831639104057e-05} {"commit": "8f7ba3d757160aa3dd25d522fe85e9a093eea2b0", "message": "Remove mock http methods which are not needed.\n\nIt appears they become obsolete and unused during requests migration.\n", "proba": 1.033892758073307e-07} {"commit": "4c22204ddbaee58a84e6bddf2cee22586ae02ca1", "message": "Bumps version\n", "proba": 2.7765094046117156e-07} {"commit": "839c62bfdfb157bd6dc7d8ee10f14d5d97af1b9f", "message": "Update main.py", "proba": 7.280797831299424e-07} {"commit": "e547520ec6787558daff3bba2f65e01b14a5b077", "message": "reformat", "proba": 0.00018977442232426256} {"commit": "fddf45318eab2903de2b5d6ad2145179849961f4", "message": "New get_wcs method in Image class in imfuncs.py\n", "proba": 3.025500632247713e-07} {"commit": "1a89b650ab36b60b8025ce3cbe0a6b7e90d9cc6f", "message": "fixed mode\n", "proba": 1.5081591300258879e-06} {"commit": "095bc04e064d2fc4671ca93d0110ea79766383f6", "message": "Improved template handling\n", "proba": 3.0460444122581976e-07} {"commit": "74ea10f8942aba4297f1d6249327b516cbb9286b", "message": "fixed import for Python 3\n", "proba": 1.970567382159061e-06} {"commit": "82f05d36e625fa8456c9e810a15597e14ca04514", "message": "Fix GPIB timout getting/setting\n", "proba": 1.0229517783955089e-06} {"commit": "dd2f63eb4256fb5174b89e2dccb13ed37b016cc1", "message": "WL: relay touchpad gestures to clients\n\nThis adds support for wlr_pointer_gestures_v1 so that clients can\nreceive multi-finger touchpad events.\n", "proba": 1.0436943398417498e-07} {"commit": "60cbbe92b5c57dbba4282c9393ac27e32bc475b6", "message": "version: bump\n", "proba": 0.0004475593741517514} {"commit": "c02619f2a7d7e9f68403e60e845ca1eddb201ed3", "message": "Added Arch_paru and Arch_paru_Sup to CheckUpdates\n", "proba": 1.2003447125152888e-07} {"commit": "5b6345cec4a321fc1dd7f3ce4b78d39f3bc471a2", "message": "__repr__ must return a string, not an unicode object:\nprint {1: pywikibot.Page(pywikibot.Site(), u'\u00e9')} was failing before this commit.\n\n\ngit-svn-id: 9a050473c2aca1e14f53d73349e19b938c2cf203@6499 6a7f98fc-eeb0-4dc1-a6e2-c2c589a08aa6\n", "proba": 0.9999994039535522} {"commit": "bc074ba58f2b60a4e8bb5e1b9399a64b7000fd6a", "message": "[cleanup] return has_extension result in deprecated hasExtension method\n\nuse remove_last_args to ignore the old \"unknown\" parameter\n\nChange-Id: I53ebe1aa802b4ca18e3c03613a1464cac0af0bf4\n", "proba": 2.520627822377719e-05} {"commit": "64a48ea9726a063d38b8f50661c172696588b3e0", "message": "do not call timer when already inactive\n\ngit-svn-id: 9d763a2146cc7918956fa045a5de4b112f309167@1307 a8f5125c-1e01-0410-8897-facf34644b8e\n", "proba": 9.82547248895571e-07} {"commit": "eed8fb195f5101347238c057d85a9d3bb0fea081", "message": "lib.misc: add docstrings.\n", "proba": 1.2712902730527276e-07} {"commit": "77d260c5d01f57a8e7c4092363e28428e256a038", "message": "[doc] a better doc string for site.code and site.lang properties\n\ngive a better explanation for the differences\n\nChange-Id: I189ae24230e23b261a918f594c196a166453e161\n", "proba": 2.110824198098271e-06} {"commit": "b640bae8d25813f4e3b10d0eb34d52665b549f74", "message": "Fix VMwareMachine method remove()\n", "proba": 1.088358840206638e-05} {"commit": "087a3c1973239a30af96a5d3b9814602e78c02e2", "message": "Added test to check that bib_items method is called correctly\n", "proba": 1.502117470408848e-07} {"commit": "f2c666b29cc5a26f2a5019f184f62791c78a26d9", "message": "Fix test\n", "proba": 4.372618604975287e-06} {"commit": "8dafe2f5ca0a95c5e345db2ca8ddcc8e82aeb9f6", "message": "desk: fix typo in docstring\n", "proba": 0.0005157688283361495} {"commit": "bc1493cc957f3641d37c4295da7e2bf43f3df14e", "message": "1) Blank pages creation from the consolidated CSV. 2) Exporting individual CSV files for pages in the same lang order than the dest. site to simply the work with polylang in migrate_content\n", "proba": 1.861878473619072e-07} {"commit": "2049c0b601a897bf7096fb316c178cca5159cf90", "message": "Class cell change for Python 3.8+\n", "proba": 3.69421140931081e-05} {"commit": "3b337e7963fcbf81c28a44f91f346262214d6f42", "message": "Revert \"Fix variable name.\"\n\nThis reverts commit 0aa13310c5884c6c3d35d9992af7aa5e79a1fe1f.\n", "proba": 2.2851338599139126e-07} {"commit": "05f17d391589f9a1d431bec4cb3cbf5a492b5730", "message": "#2715: Replace the test of Person by Partner\n", "proba": 0.00010002565250033513} {"commit": "1089bdcf0205b7063b95a9a8f0ea1f0500289196", "message": "Check response code before processiong.\n", "proba": 1.2984553166006663e-07} {"commit": "69ee9fcec3bb97e4d62e0f4b75de33fc08dad751", "message": "Use new-style contenttypes\n", "proba": 1.8906698642240372e-06} {"commit": "33e2e81d7e847f047a41f9c345427c025c488587", "message": "Dealing once again with invalid indices from the distance query.\n", "proba": 1.3913343366311892e-07} {"commit": "e7b386c40ad1b1e12a690d05e92a00d73151a662", "message": "fixes a branding test which was passing for a trivial (wrong) reason\n", "proba": 2.3043821784085594e-06} {"commit": "a3aa24f1e4691a6db992ed16ed57d98e799d8d02", "message": "Testing for empty nearby query.\n", "proba": 1.499973052432324e-07} {"commit": "e9395799dd7e642792c8014c4172f5a8fae4c8eb", "message": "Update models.py", "proba": 4.731647038624942e-07} {"commit": "d4a8990462956d49640e445f7de0281c7ddce46a", "message": "Missing return\n", "proba": 5.371040242607705e-05} {"commit": "5da6826b3340d89bd75338b9e516907ba32b690c", "message": "Some documentation changes\n\n\ngit-svn-id: 003f22d385e25de9cff933a5ea4efd77cb5e7b28@8 d6536bca-fef9-0310-8506-e4c0a848fbcf\n", "proba": 1.4075553735892754e-06} {"commit": "de9b92074cd9f0ab2affc70339bae67caef99e28", "message": "Removed the private _rounding_decision: it was not needed, and the code\nis now simpler. Thanks Mark Dickinson.\n", "proba": 2.564728447396192e-07} {"commit": "9434bfe977b694d57ea112bda7f0b2e49c55d2e6", "message": "\u4fee\u6b63manage.py\u4e2dinitdb\u7684 import \u9519\u8bef\n", "proba": 8.41701876197476e-06} {"commit": "aee5e0510317daf0880265de24c7f19c6d51f77f", "message": "typos in attrfind regex\n", "proba": 2.4453391233691946e-05} {"commit": "a82f4ea960ccdc306a93103292e8f7cb7fb47a9a", "message": "Removed params\n\nNo use of params in exception", "proba": 2.0554209640977206e-06} {"commit": "e897e7aeaf8f4574f8a16aa94ecb70e25abfcb0a", "message": "Make comment fixed commit\n\nI figured out how to have the commenting key make function\nexecute correctly.\n", "proba": 1.1851965808773457e-07} {"commit": "cf88863f43c63db76e7334c6892f6595843554f9", "message": "Restore missing import.\n", "proba": 8.01567750841059e-07} {"commit": "b0233e72dcad935f4def1980d70da0f99cf612f1", "message": "Need those kwargs!\n", "proba": 1.3136607890373853e-07} {"commit": "2b0991c3f16914a6dda24e791ead1577cf51c658", "message": "api/v1/search/ now accepts both get (lucene syntax) and post (elasticsearch dsl) requests\n", "proba": 1.4093818379024015e-07} {"commit": "f2b63d5eb06d1ba3e165a9cf7713291694073825", "message": "Derp.\n", "proba": 3.5971424949821085e-07} {"commit": "11bced958b6f740b1ccae27e6a61ac1db82ca5db", "message": "backing out map of candcollection length calc\n", "proba": 2.007606667575601e-07} {"commit": "8ca0fa46d43953cd5220b508d17699e575670ca2", "message": "MIP seems to be valid\n", "proba": 0.005884359125047922} {"commit": "81e84bbf8efcdd72688bb057eb2ce2dc77a9725c", "message": "Simplify regex pattern\n", "proba": 0.9995299577713013} {"commit": "3318202d50faefa21dff8c4d585e1ad5e033403d", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "3c3fd9c45a9802293566ffa59f102248c3feedf0", "message": "Added grid attributes.\n", "proba": 1.2604782284597604e-07} {"commit": "272c1fe9627f802370ec86ffab5befbd650f859a", "message": "detect brackets and images\n", "proba": 3.203966230103106e-07} {"commit": "4611fb321836514b0577d56e5aa6016978d26028", "message": "fix fk_link_method to escape arguments\n", "proba": 2.0280153876228724e-06} {"commit": "d428e1f18736a1b97fef62ce3307526918bc1b80", "message": "Minor bug fixes to activation curves\n", "proba": 1.6220401732880418e-07} {"commit": "8b32f56300b81751784f813b40879bf452960737", "message": "On Py2, import the SafeConfigParser\n", "proba": 2.0517730092706188e-07} {"commit": "4b2e98d55dde4f6040a021a6ebd35d29fb5f8fdf", "message": "fix(bazel): remove unnecessary file extractions from `ng_package` (#45470)\n\nLooks like there is some old legacy code for extracting files\nfrom NPM packages. This is already captured by the unscoped\nESM2020 output extraction.\n\nPR Close #45470\n", "proba": 1.274439114240522e-07} {"commit": "de27815c6711adb83699c93607f47665db22e828", "message": "Fixed indentation error.\n", "proba": 2.2309920666430116e-07} {"commit": "be25ee1e2a7bff880776aab7b64a0e943bc44367", "message": "\u30af\u30a8\u30ea\u30bf\u30b9\u30af\u4e00\u89a7\u306b data_source_name \u3092\u542b\u3081\u308b\n", "proba": 1.6987164599413518e-06} {"commit": "13b7db845c0239607fd2399cdd45a1e2dcd339ba", "message": "Adding the user to the context\n", "proba": 6.133949500508606e-05} {"commit": "51a4dd91f05fe003ba0edacfcc6e6cebe2064e38", "message": "Fix disable decode for dump command on asyncio (#2070)\n\nCo-authored-by: dvora-h ", "proba": 3.3773278573789867e-07} {"commit": "70f161356cdaeba231b160d45536beb273302a1e", "message": "Bumped version\n", "proba": 2.83475912965514e-07} {"commit": "4154c37402605609f07f93469578c11fc9568c85", "message": "Add test_save_and_load test\n", "proba": 2.4405226213275455e-06} {"commit": "a6e75d73ad55b26f080028e25562d379f902ea04", "message": "Add spaces to naming for UI\n", "proba": 2.8744389055646025e-06} {"commit": "e0840e1756ce12dcd0071f42f72144e6bf6629e2", "message": "adding fisher matrix draws for ephemeris quadratic\n", "proba": 3.018681411504076e-07} {"commit": "8550b8e5258f5a6906f3a55c29fbfc7b9c359c5e", "message": "trying to improve font readability\n", "proba": 4.3497493606992066e-05} {"commit": "ea37553fdabcf2d97287c9123dbc2264f6040c77", "message": "v7.0.0\n", "proba": 5.027894530940102e-06} {"commit": "ed5240702c02e7f19f402c59e3e9be3a2ae56e8f", "message": "Final unmodularized changes\n", "proba": 5.034977448303835e-07} {"commit": "cf7eb3675010131a9df2055faefd763cf6140636", "message": "Fix a typo.\n", "proba": 0.9999574422836304} {"commit": "6603db9bd39063c34e5cb5d52a23544694f1051d", "message": "adicionando tamanhos diferentes\n", "proba": 1.3296140650709276e-06} {"commit": "f4c19ff681daf6504d3f14d5ff9acd166510d671", "message": "lcd update", "proba": 6.732610131621186e-07} {"commit": "19abd5b91fd93828d6bf6e24d18eb02ec810c6d2", "message": "enable pull-mode for aCT submitter\n", "proba": 2.2254543807775917e-07} {"commit": "97868150e41468780ca12ae6628900bd663bdc1f", "message": "Updated south_migrations to be aware of custom user models\n", "proba": 1.5038547473977815e-07} {"commit": "8d7310ac5fd9b11f1054532f25ed0b5bee5534e2", "message": "bom exploded items grouped by items\n", "proba": 2.8862541512353346e-07} {"commit": "d03b4b8abf37925e353b3875edf5baee4fe8ad7c", "message": "Adding in a check\n", "proba": 3.3671523169687134e-07} {"commit": "0d544fab1e8545688af459b6096cd1f8d3768330", "message": "add reader in hetero nn examples\n\nSigned-off-by: mgqa34 <873f6cae19e173e032060684f437bdb9a161fc74@163.com>\n", "proba": 1.1218840256788098e-07} {"commit": "896f5e779782d8e67adfe92b78c7d20d89717c37", "message": "Catch All Exceptions raised by Python wrapper (#1450)\n\n", "proba": 1.0828821928043908e-07} {"commit": "4ee659a1a4bbd7ebd086dcfdbf9f09c4c923786f", "message": "Upping feed fetching (4->3, still need 3->2 and 2->1) before I crank it.\n", "proba": 1.3464303094679053e-07} {"commit": "862a7ed4964fc730ced699304bd6ce56f82d91d9", "message": "Fix a bug where loading vistrails that have groups with ports that\nreference unloaded packages does not prompt the user to enable the\ndisabled package. This was fixed by delaying the creation of port\nspecs for groups until they are used (ie when a version is\nmaterialized).\n\ncore/vistrail/group.py:\n - Group.setup_indices: do not call make_port_specs, but set\n _port_specs and _port_specs_id_index as None to signal\n make_port_specs should be called\n - Group.summon: check _port_specs\n - Group._get_port_specs: check _port_specs\n - Group._get_port_spec_list: check _port_specs\n - Group.has_portSpec_with_name: check _port_specs\n - Group.get_portSpec_by_name: check _port_specs\n - Group._get_input_port_specs: added method (copied from Module) and\n now checks for _port_specs\n - Group._get_output_port_specs: added method (copied from Module)\n and now checks for _port_specs\n - Group.make_port_specs: don't set _port_specs_id_index here\n\n\n", "proba": 0.00650023715570569} {"commit": "6aede04f102c38e081e753b8fb883b0f88073121", "message": "Making feeds update WAY faster. Will I regret this? Most likely. But the weekend's the best time to find out.\n", "proba": 1.2872919796791393e-07} {"commit": "966936e044767c3e3f0f2f0f0c7ff4b27f35c4d5", "message": "Handles slightly different lat axes\n", "proba": 1.7149500308732968e-06} {"commit": "31592710a9409c54abf37d20ca0772f9da8957b0", "message": "Fixing fetch history bug. Ugggg, a week of fetch history lost. No big deal. Also dropping unused fetch exception history collection. Sentry handles this quite well.\n", "proba": 9.708615067438586e-08} {"commit": "2f0347de76a3909e2dcc9b6c86d2a76a78c7d849", "message": "Added historical to control diff panel\n", "proba": 1.2404890981088101e-07} {"commit": "60fde767c8ae4b19b96afff159691c72dab9bad2", "message": "Python solution die werkt voor new_lottery_game toegevoegd\n", "proba": 2.568113359302515e-06} {"commit": "20adc15008e5ac254de1a0ce2a9e0196852fdffc", "message": "be explict about ignored expected Rasa errors\n", "proba": 0.022414833307266235} {"commit": "98c4b2c7a03b62030300226e4d9b2e8543e15956", "message": "Updating stories which give integrity errors.\n", "proba": 1.1926437082365737e-07} {"commit": "d2d3337ac524dc98bc85fd1f18f0d1d732015d87", "message": "fix(vaex.open): during ds->df refactor renaming went bad for remote datasets\n", "proba": 4.1901085978679475e-07} {"commit": "68ec43eee566b8a610f7ea9b38f4ffef895de2bd", "message": "bug fix\n", "proba": 8.047648520914663e-07} {"commit": "d2478b3454c63d7da2d40905f891fdc36c60249e", "message": "use 'project' instead of 'name' to identify failed training in errback\n", "proba": 2.1562409528996795e-06} {"commit": "c41e9b89d89f230f3b8d14781e646c6efd025f09", "message": "final md5s\n\n--HG--\nbranch : distribute\nextra : rebase_source : 4c0af4c64d4d25930a470eb6f0059a3675a9cf92\n", "proba": 4.956671659783751e-07} {"commit": "ba74c7580c9214e790c9978a1afac9a7f8fa397e", "message": "Adapted sync_nodes to controller objects\n", "proba": 3.7447944123414345e-07} {"commit": "6a0e1f3085750988151b53cde1bf845647c800c6", "message": "add a wait to get datapath-id correctly\n", "proba": 3.594214206259494e-07} {"commit": "3c1a1cba7c6b8fd7a7f8dfc2e31c88cbe55bc5f6", "message": "Refactor utils\n\nSigned-off-by: Seth Buntin <7fa3258757ee476d85f026594ec3f1563305da2c@gmail.com>", "proba": 1.2793563541890762e-07} {"commit": "cc5eee9ae157e25425b8452c4963974b0f3d8c00", "message": "Porter is right to left from video models\n", "proba": 1.2837023177780793e-07} {"commit": "70ea211cfa89cf14748b57f24d7ea29411c82036", "message": "Can spot difference between recycle and death now.\n\nAdded recycle flag\nChanged pids to names for readability\n", "proba": 1.345558757748222e-07} {"commit": "e204af935d51de232d0d560aaa1ad4dd5cf07b29", "message": "IB\u589e\u52a0\u83b7\u53d6\u5408\u7ea6\u8be6\u60c5\n", "proba": 2.8076738090021536e-07} {"commit": "50446d56d26607b72804e720eac462c0235e5d1e", "message": "fixed typo (encode vs. encoded)\n", "proba": 2.756947026227863e-07} {"commit": "2c17a7dc6b7c2014efb165c1f2b7c93cbd785c20", "message": "Removed unnused import", "proba": 2.072757752102916e-07} {"commit": "d710833d88c4dcbc9fb003b088f604d11bbda117", "message": "imp daemonizer.kill\n", "proba": 1.0215965630777646e-05} {"commit": "3ff225056a312a4056eb68c6a8cc88b8f54e9e15", "message": "bsa - strain range in the middle zone parameterized", "proba": 1.2186440301320545e-07} {"commit": "3191b80324ac6b3fd18bfc2b9be3fbcf08e4d47a", "message": "update copyright\n", "proba": 1.645972247388272e-07} {"commit": "e44a8adfa81a4eea9bfdb93fdadb5300767f4bec", "message": "Header was used dict to store info changes to use list\n", "proba": 1.4634694878168375e-07} {"commit": "85a72bf4eccc6c3eb129cb1ae5f133d060211d8b", "message": "none of the hourly weather tests will pass\n", "proba": 1.934153743832212e-07} {"commit": "5798f8b8a3c08b2b0b827808cafdfc92fd9249e2", "message": "dont check dataframe length at all\n", "proba": 1.4903696410328848e-07} {"commit": "c4421aa9a188257af71e762384f41e9cd239e53d", "message": "Update Pulsar for https://github.com/galaxyproject/galaxy/commit/96e5aed4df7fdd911ddc0a9d1cecbdafb40ede56.\n", "proba": 1.603203969580136e-07} {"commit": "e29a1388bcf3a126f740097d40172d90b8773bd4", "message": "form-feed (^L) causes a redraw\n", "proba": 7.430894584103953e-07} {"commit": "e417f3bcecb91f5271df6016dc28ff6cb6ae9c93", "message": "updating tests\n", "proba": 6.505450187432871e-07} {"commit": "33d0726b32823f160ac1a3fc2fabaf185c779f66", "message": "start make_galaxy_templates refactor\n", "proba": 5.300072984937287e-07} {"commit": "35d7f2bc2c69a26b59093df493551e00006c8721", "message": "Oops. Need some more fixes for base64. Disabeling some tests.\n\n", "proba": 9.924035282438126e-08} {"commit": "cdf6252c78d3d77c97c063e6bfd2291858162332", "message": "fix logfile name\n", "proba": 3.161012864438817e-05} {"commit": "07875b2cd6b0a6f023fb651d2e4ea4f10de66afa", "message": "move higher level into basic get functions\n", "proba": 1.0474531109139207e-06} {"commit": "522238293595d58ec2c9f1be488ea91556fc388b", "message": "doc cleanup\n", "proba": 2.3347196531631198e-07} {"commit": "266c650b62511531229c0ff997c315c2d9cf7254", "message": "[REF] ir_actions: propagated res.users field name change (user_email -> email).\n\nbzr revid: tde@openerp.com-20120810082344-yr9fptnyz6adgxya", "proba": 8.223963163800363e-07} {"commit": "dd0b4330c4bf83188da19b63ab122b5d0357be70", "message": "be more specific with imports\n", "proba": 9.709926871437347e-07} {"commit": "db4fbdb6dccffee83362c9a8f91ad6a524f9e996", "message": "git version in PsfEx outputs\n", "proba": 4.712278780516499e-07} {"commit": "63fa71db6b2a7d082350c7d20ab88351cdff5334", "message": "mosaic: drop work-around for v1/v2 book-keeping error\n", "proba": 4.3381211867199454e-07} {"commit": "9c5a7799394a21a49e23992f517beb761a54ec7e", "message": "Danbooru: Implement artist_commentary_version()\n", "proba": 3.8533306678800727e-07} {"commit": "10a8a1e211dfcce78c5632fa6cdfaafe147c4a59", "message": "Refresh projects cache via API\n", "proba": 2.248204822308253e-07} {"commit": "e8d6685ab93c537ad32717a1b690e0d44d7bb679", "message": "Update the user.info with the new container format\n", "proba": 4.736613448130811e-07} {"commit": "9133f3d25b83668b408b7fa1bbc3fbddc50d6433", "message": "Immutable annotation typo\n", "proba": 7.167281728470698e-05} {"commit": "1bc68ddedc4f5739f801dcaa84b1082e9d8ca11d", "message": "additional mode parameter to make-instance\n", "proba": 2.302017776401044e-07} {"commit": "e0ed0c7497e39b6a7c8e842a0a6554d3c8716616", "message": "Fix bad method name\n", "proba": 0.9997509121894836} {"commit": "817cfdff8d14c5ef3c0e83fd29e00d6b7a6d0e40", "message": "adding func str again\n", "proba": 3.18547131428204e-06} {"commit": "ec12c0f2da32de5598b236bd36fc784555b7b818", "message": "Bump version\n", "proba": 4.5088074784871424e-07} {"commit": "04b56f93a8e46fa56b4e11c8ec0512f35b7161ad", "message": "time of compilation as first log message\n", "proba": 1.8123296285921242e-07} {"commit": "6da966d770b1b83fbaa341f7cb239b0516550781", "message": "Mkdirs that don't exist", "proba": 3.2547751516176504e-07} {"commit": "9f289c11167a16455ace64fce2ef5fe87da985f7", "message": "updated default bounds in sfr pars\n", "proba": 3.902394212218496e-07} {"commit": "efe09ec52dcdadb2c1f967ce661aba7ecc61f2f4", "message": "Tidy longname refs from pp_utils", "proba": 3.950492271087569e-07} {"commit": "8bee044e4c310d3812d2f919edbd0ad1495fad09", "message": "skeleton api for accounts\n", "proba": 3.341560841363389e-07} {"commit": "8f92be2890a0d2f1bed5b712cd7b4129a5dd6d42", "message": "compute standard deviation for mean returns. Compute spread between mean returns of factor quantiles\n", "proba": 0.000882229651324451} {"commit": "57341c581a19f72638538a3ca548be566836dace", "message": "remove unused import\n", "proba": 7.364135399257066e-07} {"commit": "6152bd7e99ab19be1c8784c922ee31a1b52c2f2c", "message": "Allow None for ram_warning, ram_max in job schema\n", "proba": 4.617025751940673e-06} {"commit": "4e107632e6d135ec26f47474be4b747ce40f1d67", "message": "malib: start cleaning up DEMStack outdir and stack_fn handling\n", "proba": 4.043026535782701e-07} {"commit": "8f318d16b7b0ed50b0ba6c78a3508953ca36a374", "message": "Force integers for advance, ascent and descent in freetype.\n\n--HG--\nextra : convert_revision : svn%3A14d46d22-621c-0410-bb3d-6f67920f7d95/trunk%401564\n", "proba": 1.1178677596035413e-05} {"commit": "f269e7c7953370cdec3ef1d88c6bfe4fa36cf400", "message": "[svn] reverted last change\n\n--HG--\nbranch : trunk\n", "proba": 2.8210777713866264e-07} {"commit": "098c6fe986841822ab576f4df6e98b8bc1a7ff8d", "message": "Allow fields without body.\n", "proba": 2.814536799178313e-07} {"commit": "037ac8f3d0395ed44c59736016788de415fba956", "message": "fixed empty-message bug(warning: hack)\n", "proba": 2.1284093065787602e-07} {"commit": "d2730e585d7528438ab99d86133cfc769f8aeda3", "message": "Update iop.py", "proba": 5.676611181115732e-07} {"commit": "a6a0c89a46443fdda7a5e04c273737bd6de48858", "message": "CXMAN-256: Add ResponseParserMixIn to PMICGetVersionCommand\n\nAlso cleaned up some extra imports\n", "proba": 1.2062464804785122e-07} {"commit": "dc186d03133e7357577026b43efecba1273c56ac", "message": "Initial implementation for simnet plugin profile support (#16).\n", "proba": 1.0245270232189796e-07} {"commit": "3728b5668ee46ca0d1610ac0463cad0337b9a6db", "message": "Check validity of URIs when serializing them.\n", "proba": 1.2485288891639357e-07} {"commit": "d04b021e98bb4d26999c9b70ecd436b6b82b45ef", "message": "Similarly, list(map(...)) makes more sense as a list comp.\n", "proba": 2.0695500779766007e-07} {"commit": "f4e5c9f2a9cd2ddea14226c0bd4a958a55021d0f", "message": "find_tx_sender: use raw_tx as a argument rather than calling for it via provider.\n", "proba": 1.2710647467883973e-07} {"commit": "14e4e533a8963b1eaa0777d21e6f9ca03f2e79ab", "message": "Simplify code for ms vs tsv iteration\n", "proba": 4.405177605804056e-06} {"commit": "76185decc38052f36bdce551f8e20e70ef7cad24", "message": "fix models for new sqlalchemy_mptt #42\n", "proba": 1.477209679023872e-07} {"commit": "b48fd40c1dd471707928557561729b2dfc8c9d86", "message": "age standardization and disk smoothing added", "proba": 1.3994439029829664e-07} {"commit": "1bfb8dd69ad174554e5838c9f4360025af45fd73", "message": "Test\n\nUpdate issue 49\n\n", "proba": 1.3150069833045563e-07} {"commit": "231d3908bcdb8a2868fd5de10376cbd4308d3b3c", "message": "BUG: Add stringify import\n", "proba": 0.0001361124886898324} {"commit": "6f7fcf03d7b57c1acc1c725b370c213f60a042e0", "message": "Add a verbose flag for debugging multiplayer connections.\n\nPiperOrigin-RevId: 236864702\n", "proba": 0.0004471206048037857} {"commit": "7ebb5d29ea77bc3f6b01fbc263b229cd00a561c5", "message": "Some lovely regexes to convert new 2013 double-bolding in Hansard back to what it used to be.\n\ngit-svn-id: 285608342ca21a36fbe1c940a1767f009072314d@10207 9cc54934-f9f6-0310-8a8d-e8e977684441\n", "proba": 2.6038305804831907e-05} {"commit": "7453606a04d076c8a21485067317ad27b601912d", "message": "update example\n", "proba": 7.13501947302575e-07} {"commit": "f02bb9f04e20d871fcb53caccd3b5193f4c117f3", "message": "Fix typos in the ODIM HDF5 importer\n", "proba": 0.9987998008728027} {"commit": "24994a1df5eefa9383d4f55eb71a3ec0e5bd5ab5", "message": "system test: if no parameters print list of available test classes\n", "proba": 4.009259555459721e-06} {"commit": "495a33c0dbb2bd9174b15ea934b8282ca3b78929", "message": "Use django shortcut for raising 404s.\n", "proba": 1.2124675663471862e-07} {"commit": "e8edeaa83abb83c8cbb669d36fc114d2d3209d19", "message": "Update tnc.py", "proba": 4.455717714790808e-07} {"commit": "02d24eb59db9a0fdaf4563cbbf784c30ac60d6c3", "message": "remove leftover print\n", "proba": 6.512068466690835e-06} {"commit": "76a283500a51e2907059713d2c5f1cb0a8aa003a", "message": "temp paths for wensleydale\n", "proba": 3.1759117291585426e-07} {"commit": "4b6cff01ab71de2a2bef5ef99ad250954d739fe3", "message": "Added class name to info()\n", "proba": 1.1921501652523148e-07} {"commit": "9fbc05451d1878c853f2252298b1a8f6ef05fa7a", "message": "Fix missing required_for_success support\n", "proba": 0.00020195473916828632} {"commit": "d011556eda4e4052c12183c9ff8b7fa6f5e48e6b", "message": "remove a debug print\n", "proba": 5.465105641633272e-05} {"commit": "072e799aa6a847595a84fff8176ab0c9f324af71", "message": "Routines for plotting effect of weight thresholds\n", "proba": 2.1029465813171555e-07} {"commit": "fc1b630a503ccf2c717a3ac51f5e5274df2c0472", "message": " + Added support for decorated methods\n", "proba": 1.1985179071416496e-07} {"commit": "5624f12e42ea7cd73304cf43e0b01ba606311b58", "message": "Fail on status != 0\n", "proba": 0.01987886056303978} {"commit": "74feefd643fbd0bd1e5a6e3bd8b8d6da21452ff9", "message": "autodetect test format using regex\n", "proba": 9.392963988830161e-07} {"commit": "418f9acd2d77c3242c737ff9cbb6213fcd8c9ce8", "message": "Removing unnecessary pass statement\n", "proba": 0.0007613475900143385} {"commit": "d3011b6df91f6a644a202916b7993eaee9c3f4ef", "message": "Reformat with black\n", "proba": 2.3752139099997294e-07} {"commit": "4aee2153b2d47e7dd969e7dace5099cd1366d955", "message": "RF: update model Bt to new interface\n", "proba": 1.9725536049008952e-07} {"commit": "fc07e1a6db93fd7db9ad034841a09c3ac5fb168f", "message": "[data] some initial changes for faster rasterization\n", "proba": 4.0228653119811497e-07} {"commit": "0bb3e40b8409b9a1abe28426c87a0a50c5913174", "message": "Flatten paths in url().\n", "proba": 2.022951412072871e-05} {"commit": "c08198bd0e8d0cd5204a0bb88edefa7e025890c5", "message": "Adding 1.2 userdata headers support\n", "proba": 1.9857128563671722e-07} {"commit": "9c87065025384f82862a9ac6ad0bd9039036b4f7", "message": "Fix model serializer\n", "proba": 6.965264560676587e-07} {"commit": "7df6a0c4174f65898ba02ef25175aa78f2416bac", "message": "can now do: from pyjac import create_jacobian\n", "proba": 3.63649149903722e-07} {"commit": "6b21965e39fe591044604c2fec166dc0cef7ce18", "message": "versions: added 2016_EXT2SP1 / 20165_SP1\n", "proba": 1.3341561952984193e-06} {"commit": "29932e08083a1417805b8f624e5e6ffe8e49c8b3", "message": "3 numbers version\n", "proba": 8.232756226789206e-05} {"commit": "2ace67881b49965d3397f81ad740638650fbf6df", "message": "Simplified xyzfile\n", "proba": 0.0015288688009604812} {"commit": "bad7dc1ba25ce34d3c05d57d7d7bfdf30defe1b8", "message": "Uses PPD's relative path as its URI.\n\nSo we avoid the problem of having PPDs with the same filename. It's\nworking as: if I call pyppd with the folder /usr/share/ppd, it removes\nthis part of each PPD path and uses the rest as the URI. For example,\n/usr/share/ppd/cups-included/textonly.ppd.gz will have the URI\n\"cups-included/textonly.ppd\".\n", "proba": 3.9807702023608726e-07} {"commit": "f0f04de74bad435856046131fdc99d7ec6baf2e3", "message": "Env based parallel setting (so Vagrant box doesn't explode).\n", "proba": 1.074311697379926e-07} {"commit": "fc4691a4296546b87604e108d8b1d4bd6ce5f80d", "message": "now method 2 of orbital fit also saves ifg phase and metdata after correction. refactored and reused save function\n", "proba": 1.4014619864610722e-07} {"commit": "fa8edde38f0a4f1fbdc11d8be1235a9cfa62c980", "message": "remove typed arguments in support runner constructor\n\nSigned-off-by: Eric Villard <34c6fceca75e456f25e7e99531e2425c6c1de443@eviweb.fr>\n", "proba": 1.14022078889775e-07} {"commit": "212165398e35f1a83a02c708da951ab06b227e81", "message": "Fix reference\n", "proba": 1.5953446563798934e-06} {"commit": "76832de7fd7b681706e5d464363420a047f56b7f", "message": "h5py version detect problem\n", "proba": 4.813948635273846e-07} {"commit": "c11aa354ea72dbed4a7a4c60fa12a2ef269e726d", "message": "Cookie Error function implemented!\n", "proba": 1.360255623694684e-07} {"commit": "ac8f92d65d7db3c2bc7eba3469677fd985d2a095", "message": "Fixed projector control bug\n", "proba": 2.7840792427014094e-07} {"commit": "3532eb2382b1e1cb4941752bc06e2dcf5750774c", "message": "another fix", "proba": 1.9980012666565017e-07} {"commit": "7d5390f2f0c0f3fb7a5d5b9d65c8d72c55872137", "message": "Added min subtraction for tuning in linear model\n", "proba": 1.286447570691962e-07} {"commit": "2b8299d7b3d09e744c1cbe8bd6be88ca7f05a897", "message": "removed todo\n", "proba": 2.0335937733761966e-07} {"commit": "f441542d542329743d1ad79ab4c0e7a619883ac9", "message": "server order id bug fix\n", "proba": 2.846899178621243e-07} {"commit": "7159493d67b8c96e145ccf613ea13cf3fea8a320", "message": "fix redeeming via qr code\n", "proba": 3.812035345163167e-07} {"commit": "d9af065019c8e8afa9b203f2d7e6cf31db29bfaf", "message": "Updating python tests for finegrained VM status\n", "proba": 2.3450402864000353e-07} {"commit": "3b430ed0b76580a8030b177cf44cb61f74d622a9", "message": "Give tribute for a code snippet from codepy.\n\nMost pieces of code from cxxgen.py are borrowed from Andreas Kl\u00f6ckner\nwork.\n", "proba": 9.871515516124418e-08} {"commit": "4e47a14ccb07d0cb7678015ca27b0176498ad0b5", "message": "Make sure all generator calls have an explicit \"site\" parameter\n\nhttps://mediawiki.org/wiki/Special:Code/pywikipedia/7722\n", "proba": 2.601869482532493e-06} {"commit": "842d102df6402269574c0b6a58c037f582acd65f", "message": "unhashable type: list -> tuple\n", "proba": 8.462248661089689e-05} {"commit": "21de39988105ba86db67bab917726d2d8a7a336e", "message": "Use the deprecate_arg decorator in addition to the debug message\n\n\ngit-svn-id: 9a050473c2aca1e14f53d73349e19b938c2cf203@11716 6a7f98fc-eeb0-4dc1-a6e2-c2c589a08aa6\n", "proba": 0.0005786168039776385} {"commit": "36dd800cba0451c6a8acd16b09a23c1748d7fe51", "message": "Use Describe, remove manifests_by_slice_urn\n", "proba": 7.717378025517974e-07} {"commit": "5cf7fb4275847ab39cafd0e974a3c0cba9c70213", "message": "APISite.logevents: Allow empty list as the namespace parameter\n\nThis fixes a regression introduced in ecb4bd67393c158ab9e9406d567dea4208ffd9a8\nwhich was causing test_logpages_dump to fail because the default value for\n`namespace` parameter is `[]`.\n\nChange-Id: I9ae4cac160702b12b49ff258e02b0acf5cdbfbad\n", "proba": 3.831126741715707e-05} {"commit": "4970194fc9274ad675a4dc41a2fdd19f3bd3299f", "message": "fixed a bug with perceptron trainer\n", "proba": 2.4958183075796114e-07} {"commit": "fb0fa8c70ae1df4778d0b8a38d716ceba7f67b4a", "message": "idwtn: only compare dtypes if both coeffs are not None\n", "proba": 0.9999974966049194} {"commit": "ac5d94bed9fbd5f0e2f01c6c4fc71d76d11596b4", "message": "add status remind for regression_generator\n", "proba": 3.200945855041937e-07} {"commit": "040243fafd6ec041c7578a540e5c84fee823a556", "message": "added has_key method to stylesheet1\n", "proba": 3.628818376455456e-06} {"commit": "18451e4c8b647b7a97d124ea03b5a541ae52cd6f", "message": "remove unused code\n", "proba": 1.6653786587994546e-05} {"commit": "68a02790ae8c90f6afcaebe830d6800dd7437ed7", "message": "+ secDNS:keyData\n", "proba": 2.57216981935926e-07} {"commit": "4ccc2e3c3450bba23f7301f60df5d00382934522", "message": "20091018b\n", "proba": 6.060433861421188e-07} {"commit": "2e4b1eca6b152a4e981ebdadf07ab5993f11fc24", "message": "updated settings (posters deadline)\n\n--HG--\nbranch : pyconar2012\n", "proba": 1.3025903911056957e-07} {"commit": "12deca629e2754c7767ecf1859c836cdd376f3c6", "message": "minor tweaks to plot_probabilities.\n", "proba": 1.1418693901532606e-07} {"commit": "9c5a2fc6369bc68a2a947d4b4eea84706071871c", "message": "Delete Ordenacao01.py", "proba": 3.8618361486442154e-07} {"commit": "b1f7283f4ae410dd6a6a1f136b696b712508b45d", "message": "ENH: Appropriately use pop\n", "proba": 1.555758785798389e-06} {"commit": "9d4bdd97f07f1b7231fe0d7405d04f7c62f7ceb6", "message": "working on fixes necessary for pulling into main sunpy\n", "proba": 1.4318112562250462e-07} {"commit": "86c9a45696e5337ebff28055d71671b6988c83cf", "message": "DB configs\n\ndefault db settings put to postgres\n", "proba": 2.6634870664565824e-07} {"commit": "540433101fe811b55bafb4a5f11d0f5ae4ae038e", "message": "remove recursive\n", "proba": 0.9985402822494507} {"commit": "07df258970d52cd5c85056078c845eabc4fa0013", "message": "try to use run_with_all_model_types parametrization\n", "proba": 9.391960702487268e-07} {"commit": "d2ab5c7694e76d870d6de1fec2655807ef8945a7", "message": "Fix for #1818 DB on USB media being locked after import\n", "proba": 1.2121600434511492e-07} {"commit": "73888c6aee8c0a679d5cf08417b42d4219f8c3f3", "message": "Add test_get_with_empty_list method to check that Empty is raised\n", "proba": 1.511028358436306e-06} {"commit": "b9a10b6b6827dfe8a01710c66229c2ceb5bd8a29", "message": "Fix missing addresses on some records\n", "proba": 0.017104074358940125} {"commit": "8b6274904d995f00db3f77836176c132267ca8d3", "message": "Fixed stuff; no long preloading image.\n", "proba": 1.0453359777784499e-07} {"commit": "b4a9f85c0064127a96ded999669fda1bd54a01c3", "message": "Make import more precise in computeDeltaG\n", "proba": 4.849345714319497e-06} {"commit": "5eee46634243045f22fd27e448839138640a5995", "message": "update to 2014 bls oes stats b/c 2013 data no longer available\n", "proba": 1.2809483962428203e-07} {"commit": "671c2c9a94ad10147ec1453da631c40ad4a48578", "message": "tests/wkb_test:\n\nAdded 2D cases for dumping multipoints to WKB.\n", "proba": 1.0357460666909901e-07} {"commit": "81bf02d1b8af9daf536a47cf8c862d0d54424658", "message": "Added 3d/4d test cases for multilinestring->wkt\n", "proba": 1.2059935272645816e-07} {"commit": "6d79309d24c338b74993540eef0266c643ed1c9f", "message": "Minor.\n", "proba": 1.1693643955368316e-06} {"commit": "6de7baf5a16a8282b28ae4e86fef74c8d802761c", "message": "cut n paste errors on logging lines", "proba": 2.0730898597776104e-07} {"commit": "b96b1e7d4c1b2e6012355e1559330ea9b0f7ac6b", "message": "overloading plus operator for Bounds, also better picking up of crs from passed in envelope in constructor\n", "proba": 1.287086917045599e-07} {"commit": "6253f41f31238f1ab44a033403e85019c148d782", "message": "added prop decorator for name, added crs\n", "proba": 1.4506521495150082e-07} {"commit": "be284b54506c7a0428d8391309a1b1fd96ec8787", "message": "Add opacity, rotation, stroke properties. Add the ability to have no fill.\n", "proba": 1.074338342732517e-07} {"commit": "c917f906ca5e5c01b700aaa8756e9885be2e15ba", "message": "Moving failed tests output into a dedicated directory.\n\nFailed test output is moved into R/tests/results/failed directory.\n", "proba": 1.496021582170215e-07} {"commit": "f7a047d3389780947704facfec85eb0ea25e723c", "message": "Stratos API URL added\n\nSigned-off-by: Imesh Gunaratne <0a06823246d2ec9125b87ff9e895f16e469ce70b@apache.org>\n", "proba": 1.236994648934342e-07} {"commit": "bec4fe0d12599f218409d0ca5dbb3478caa16747", "message": "made some edits to the variable_psf snrs script to get max quantiles too\n(#63)\n", "proba": 1.0360977853451914e-07} {"commit": "a1f715115b030124a9c3471f84976a13d9a023b9", "message": "Catch exceptions when calling populate_handler\n\ndarcs-hash:20071106175514-86b55-3e1da59ad7eec5c1ef28f1fe43f9cbe80f40a866.gz\n", "proba": 2.47282537202409e-06} {"commit": "38c53e20e483b46a1b7557be5c14c3ec6992d561", "message": "Added a case for text/html embed via iframe\n", "proba": 2.0470118045068375e-07} {"commit": "011c1a49bc2abba7ab4890c32c5c00ba05eb5d3c", "message": "automatically find dll path\n", "proba": 5.940414666838478e-07} {"commit": "19712c8efb1fe0eead2cd119150c02073de8332f", "message": "refactor code\n", "proba": 0.0234929621219635} {"commit": "ffd8f8a664ab309e7d93d809cbb5de520b786cf2", "message": "FIX : model defaults : address_id , right model now seted\n\nbzr revid: tta@openerp.com-20110413105224-4p697u2xxss9c65y", "proba": 2.045778444426105e-07} {"commit": "1344c8c8f4c0a94331145397e537a0f1b42ac229", "message": "Two more meme cmds (#36)\n\n* Two more meme cmds\r\n\r\nAdded two more meme commands\r\n\r\nBigsmoke's huge order of food\r\nand a reference to the meme \"ALL YOU HAD TO DO WAS FOLLOW THE DAMN TRAIN CJ\"\r\nnamed \"ALL YOU HAD TO DO WAS FOLLOW THE DAMN GUIDE CJ\"\r\n\r\n* fix indentation\r\n", "proba": 3.03659760447772e-07} {"commit": "d59343e46a4baed0208fa2f16a0088065b7e6757", "message": "new: Added method + tests for creating a dict and JSON representation of a Sentence object according to the WL API 1.0\n", "proba": 5.295611913425091e-07} {"commit": "220a733d7379be88514f7681ec37388755d4e612", "message": "Fix handling of failures when calling /event_auth.\n\nWhen processing an incoming event over federation, we may try and\nresolve any unexpected differences in auth events. This is a\nnon-essential process and so should not stop the processing of the event\nif it fails (e.g. due to the remote disappearing or not implementing the\nnecessary endpoints).\n\nFixes #3330\n", "proba": 8.132020070661383e-07} {"commit": "32443df04a795d931bfa6a1af340b99d086c539f", "message": "Added Docstrings to Production Views.\n\n", "proba": 1.0597379684895714e-07} {"commit": "9342cc6ab167836ca3965923989c33f5230c27e9", "message": "Add comments and paranoia\n", "proba": 1.5550735099623125e-07} {"commit": "15be6ce0f478aefe5dcdd9ce138f3801fc373fd7", "message": "Improvements to the python pmErr exception class\n\nThe interaction between the pmLookupName PMAPI wrapper\nand the exception class was not quite right. Firstly\nthe test-for-failure in the lookup wrapper came after\nthe test-for-not-the-same-number-of-PMIDs-passed-in,\nrendering the error case unreachable. Secondly, the\nvalue passed into the exception handler (which *must*\nbe an error code) was the positive return value, for\nthe case where some, but not all, names resolve.\n\nThis meant the error-symbol dictionary lookup would\nfail and neither an error message nor the list of\nnames which didn't resolve would be generated - not\nuseful behaviour when handling exceptions.\n\nFinally, when a pmContext constructor stalls (eg for\nfaraway connections) and is interrupted (eg killed),\nthe destructor is called with a partially-initialised\nobject. It then attempts to call pmDestroyContext(3)\non an uninitialised context, and badness results.\n\nThese bugs were found while testing some new python\nmonitor tools, automated regression testing will be\nadded shortly using those new tools as the vehicle.\n", "proba": 1.1835446684926865e-06} {"commit": "29ca23d32baf1b796a6971d4bb730bd9b2e6141a", "message": "re DEV-786: Move serialize / deserialize methods for Variant to Mixin class to access request if necessary.\n", "proba": 9.849566851016789e-08} {"commit": "050a47fdfb0be26e894b585bdd000437caafd217", "message": "Add additional test assertions\n", "proba": 2.056283619822352e-06} {"commit": "2daf38ba78e8e4f43ba166ff4a63bdb864831c9f", "message": "little conductor bug fix... more remain\n", "proba": 1.1700957003313306e-07} {"commit": "500bcc9d2b928ebb8a7772f48bdbb37577289729", "message": "Match item names that are not lowercase\n", "proba": 0.9999505281448364} {"commit": "9b77f4b51bae4357b411d2743b30c829f5998274", "message": "Data integrity constraint\n", "proba": 8.867301630743896e-07} {"commit": "2b49be992e26ad38875e80d7dca686edcfeede68", "message": "bugfix for better sla messages\n", "proba": 1.767359805171509e-07} {"commit": "5a3f984a74145506696b223dd36b13b4f20838fd", "message": "Alarm unicode\n", "proba": 1.256459017895395e-05} {"commit": "b5cea7d9ee1033eb351630ac8ce918d1c90a638c", "message": "Home and End keys support for text fields\n", "proba": 1.4978702722601156e-07} {"commit": "8d039dd14e2be55b8656c87695f2e9bd3be1202b", "message": "fix version import\n", "proba": 3.6803538705498795e-07} {"commit": "6c7a9927a154eac5fa825e2dae6f98ee23d71f2e", "message": "Updated analysisTest\n\nChanged the way a command was called in the analysis class so analysisTest was updated to match.", "proba": 1.2354809086900786e-07} {"commit": "844d9d9265f301ecd5e55863f10a405deca757d5", "message": "Remove orint statement\n", "proba": 1.1106737474619877e-05} {"commit": "c600ea37ac1a7ec141d12cb7d78916a9b4ae9dd8", "message": "Project: update docstring\n", "proba": 5.512790721695637e-07} {"commit": "541a54e38062285fa790451987af1248c07cc9e5", "message": "Added and verified autocomplete widget for animal/new using Mother and Father as the fields\n", "proba": 1.1963994950292545e-07} {"commit": "2a8c49901d512200c76d1e99935e508b9c317fc1", "message": "fixed concatenate default for index names\n", "proba": 3.7273644011293072e-06} {"commit": "46e6c2f0d27c77fdd5723d67303e5d4493092b36", "message": "Actually handle no stopword file\n", "proba": 2.604605242595426e-07} {"commit": "2a22e65b762838dab24bd495546d3592acd4b247", "message": "Removed debug printing.\n", "proba": 1.4998614972228097e-07} {"commit": "162eaca4db833db03a606e04e3d2062a4e824783", "message": "new password.py\n", "proba": 3.633674350567162e-05} {"commit": "02f2b1348d4d1ffa74885cb4cace8542849fdc98", "message": "Fix typo.\n", "proba": 0.0016038167523220181} {"commit": "5357d92b366d71b75777b702a09885470dad88a1", "message": "Preserve template file mode for rendered file\n", "proba": 2.0770556830029818e-07} {"commit": "e0fcaa603367bef9ea190cdba2d4a39d63d3cafa", "message": "fix some warts\n", "proba": 0.0013533404562622309} {"commit": "31d1a726ad8ab6a16f39179604f0127bc63d831e", "message": "Add placeholder tasks\n", "proba": 9.060250931725022e-07} {"commit": "3aeeb31c06bda362aa1ed7c1aa0e189bb7a8a90a", "message": "Update our entry-points for our new test suite\n", "proba": 1.2298335150262574e-07} {"commit": "3a5756d84073ec9f1a799748177829a3b2ae2800", "message": "Fix an invalid dependency in test_data.\nR=sebmarchand@chromium.org\nBUG=\n\nReview URL: https://codereview.appspot.com/11839043\n\ngit-svn-id: db59699583a60be9a535cd09cdc9132301867226@1675 15e8cca8-e42c-11de-a347-f34a4f72eb7d\n", "proba": 0.9999994039535522} {"commit": "eeee3ed0ce946b42df73ffddef188efa7ca310f1", "message": "BUGFIX: s/is None/is not None/\n", "proba": 0.00605480931699276} {"commit": "c7f4e03e5e4b941ff6ff593d11cbe0b023d1a7ed", "message": "add n_steps to command line\n", "proba": 3.902832759195007e-06} {"commit": "52d4d98383f395f8f5f425322d7b7aea7299e135", "message": "integration.wtf_service:\n - add single file loaders (without overlay filters)\n", "proba": 1.1073468897393468e-07} {"commit": "5295df12071e3f0bb43a8be83caa2a41e43a1e53", "message": "Better behavior when builder faces an error\n", "proba": 2.3256684755779133e-07} {"commit": "b4ca3b772e08e6348fb4e7993fe69996f1994182", "message": "DefendTheWeb: fix urls and html parsing\n", "proba": 1.90256241694442e-06} {"commit": "5d41246e739c5dd7d6d423403cb887b4d334a4a7", "message": "Support importing plugins in assistant when ran as module\n", "proba": 2.4289425937240594e-07} {"commit": "836ae6f785920bbe5597ee33aaa5acf51c7b9ce4", "message": "Remove an unused import.\n", "proba": 1.3998376857671246e-07} {"commit": "453c9df40f505e7e567099575a58260bda666969", "message": "Remove non-ASCII character\n", "proba": 0.9999980926513672} {"commit": "7b1aeb4f62b924c346a5a2dad6fcf8715f516fb2", "message": "add more log\n", "proba": 1.6513904199655371e-07} {"commit": "d04737a1033897b645c491b061887af19e542542", "message": "generic bugfix (fast message)\n", "proba": 1.250840853117552e-07} {"commit": "dd5dfe74631c6dd9631e577f7c70c417d4c98b78", "message": "more debugging\n", "proba": 1.4271489590100828e-07} {"commit": "9db9d08855f8c724d3168678767ac386a214e315", "message": "Consider `FakeQuantWithMinMaxArgs` to be a train-time quant op in the TFLite converter", "proba": 3.3606590932322433e-07} {"commit": "54acf09a5f21f17fc9ff0bdaf009689201e1aa64", "message": "Fix bundle version comparison", "proba": 6.553847242685151e-07} {"commit": "f327372a13a2e770810fbc749debe48eaa07d05d", "message": "Fix missing return value\n", "proba": 0.8066927194595337} {"commit": "eeed04c958b66f27a0133fe18cb8a2fabdc0f507", "message": "bundle command line arguments in run all script\n", "proba": 4.2465856608941976e-07} {"commit": "2421d75e23d4dbec26d4a542766a550907c5aa74", "message": "modify logging globus_utils routines\n", "proba": 5.229051680544217e-07} {"commit": "45ad40f165907f6f1882f56b43e3dd0b07faf728", "message": "move common globus functions to globus_utils\n", "proba": 1.2101496395189315e-05} {"commit": "80217cfb57dd4e73c9b80cf892ac2de661fae250", "message": "Add test to check check_like with different indexes (#40872)\n\n", "proba": 1.1627539464598158e-07} {"commit": "d38e6935f096211814d53364fa6eaca472200900", "message": "Enable multi-process testing.\n", "proba": 2.779033820843324e-07} {"commit": "61b992c73edfac36f47ffc0d688140519ea158a0", "message": "Fix gtk3 import bug.\n", "proba": 1.1883508932442055e-07} {"commit": "7668c794f8294b278e7f006d9594fd7653099bac", "message": "Pass CONF to logging setup\n\nThe function accepts two parameters, the first one being the\ncurrent CONF. The second parameter is the product name.\n\nCloses-bug: #1505710\n\nChange-Id: Id53214977f6ed87202c22314f7b864a9d0df8291\n", "proba": 0.00012970229727216065} {"commit": "2506cf8026ba74aa292894da4921c92d14b67798", "message": "Fixed imports.\n", "proba": 2.0198514505409548e-07} {"commit": "8e068bf85e30f70abd0d9d98dd674963942c2db3", "message": "Download lmbench from github, add checksum.\n\n-------------\nCreated by MOE: https://github.com/google/moe\nMOE_MIGRATED_REVID=259550727\n", "proba": 7.514767617067264e-07} {"commit": "6265396b890a7e3e07cf3e2554e16871c6af67e4", "message": "Disallow pdb if not running in debug or test mode\n", "proba": 3.2957430562419177e-07} {"commit": "1d3a5336ebabcdd6e9d5b80e067ee6ab304f7e0d", "message": "Fix: \u4fee\u6b63WechatExt\u4e2d\u7684\u8bed\u6cd5\u9519\u8bef\n", "proba": 4.3884061597054824e-05} {"commit": "204a4aea3fd35ae49ea2c1d7d0205c3689ab7490", "message": "added test for pushing to nonempty list\n", "proba": 6.298266725934809e-07} {"commit": "b4af3a239d67168482a7e01f9c670f80461bbfab", "message": "fix indent error\n", "proba": 3.8382345337595325e-06} {"commit": "746ca0dfafc49ccd84a873023f1275574a734416", "message": "Added a missing import used for fallback logic\n", "proba": 1.9721359478808154e-07} {"commit": "d4c9e505c48ef706d996f35b8d4ddb3fd078d080", "message": "Use Transformer for Laplace transform\n", "proba": 7.121973339963006e-07} {"commit": "d14ee763db0392b106fb670f152ed88ca916664b", "message": "Remove print statement\n", "proba": 0.0070150988176465034} {"commit": "b8430e9c17f2deca79b636473478b93d32eaf50f", "message": "Add `werobot.config`\n", "proba": 2.7054466045228764e-07} {"commit": "f8a42120a0ab9088ffba08a79ee6426b6e06aa9f", "message": "Add comment\n", "proba": 1.5774051576045167e-07} {"commit": "926dbbb71523b795bb78f1b9fde20ef2b87847c7", "message": "\u041f\u043e\u043f\u0440\u0430\u0432\u0438\u043b\u0430 \u0444\u0443\u043d\u043a\u0446\u0456\u044e \u043f\u043e\u0448\u0443\u043a\u0443 \u043f\u0435\u0440\u0435\u0432\u0430\u043b\u0456\u0432 - \u043f\u0440\u0438\u0439\u043c\u0430\u0454 4 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u0438\n", "proba": 6.261798830564658e-07} {"commit": "67671d6c43c64ea898f2f8f5f2c77ef0c0e3171c", "message": "Use Ival\n", "proba": 9.708556945042801e-07} {"commit": "d9e97e57351ba0af29e7dfe23447e52397c4337d", "message": "Support \\s in query\n", "proba": 2.8839124865953636e-07} {"commit": "138e8defd271cb79165df90436edd70c60b9fe7d", "message": "Use argparse to get input/output file name\n", "proba": 1.952938646354596e-06} {"commit": "f83a3958058e6d1ee93e6b05d38ae4626339c93e", "message": "#11 Fix Bug\n", "proba": 1.2756137834912806e-07} {"commit": "a1325f494182f1d9dfae981892c0bcd395ba114e", "message": "Add a time limit before restarts are allowed\n\navoids chanhistory triggering another restart\n", "proba": 5.480254117173899e-07} {"commit": "0cf5c1dac23211773c904f3c4b65fe50d8ea9d75", "message": "request 100 commits per pull request\n\nWorkaround for #43.\n", "proba": 1.0191789101554605e-07} {"commit": "94f41600c5f47b9b8e30c413bd71b1d308770690", "message": "BUG: Fix name bug in helloradiomics.py\n", "proba": 1.0493378113096696e-06} {"commit": "f3960019484104f9dc73446f1f6d5faae191511f", "message": "fix python2.6 dependence\n", "proba": 0.0001807137014111504} {"commit": "cb1cebe434b9a5833803845424182b7fb946ac3b", "message": "extract main method\n", "proba": 0.9999967813491821} {"commit": "2b2bba51b1a14581f32772bd1ac1aa2e2d8c7761", "message": "Audit - check clan name in display name.\n", "proba": 1.0782223114347289e-07} {"commit": "183c14fdc2663a1408ed122745b7ffedfd13b5f5", "message": "2.16\n + \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430\n", "proba": 2.682245394680649e-07} {"commit": "7f2ec0d044b21a4bd58dc50b53a4407e4f4a3724", "message": "close cursor and connection\n", "proba": 9.098331474888255e-07} {"commit": "42aa634fa2ca12f87466c72dd3e56c5a87a40be6", "message": "add instruction to regen\n", "proba": 4.827538759855088e-06} {"commit": "159a51202b3b398ce6de9089d126b99fa4df5f46", "message": "Bump patch version number", "proba": 4.2592969862198515e-07} {"commit": "2a4d8fce1c5c24f0383da727dc4b9548066d19fb", "message": "Fixed bugs in the detector for empty entries.\n", "proba": 1.1262083887686458e-07} {"commit": "3c145a47a20a55787b8ce8a4f00ff3449306ccbc", "message": "Enable mutable config in blazar\n\nNew releases of oslo.config support a 'mutable' parameter in Opts.\noslo.service provides an option [1] which allows services to tell it\nthey want mutate_config_files to be called by passing a parameter.\n\nThis commit is to use the same approach. This allows Blazar to benefit\nfrom [2], where the 'debug' option (owned by oslo.log) is made mutable.\nWe should be able to turn debug logging on and off by changing the\nconfig and sending a SIGHUP signal to blazar-manager.\n\nHowever, please note that blazar-manager currently doesn't work\ncorrectly after receiving a SIGHUP. As a result the mutable config is\nnot yet usable. Operators should continue restarting blazar-manager\nafter changing blazar.conf.\n\nTC goal: https://governance.openstack.org/tc/goals/rocky/enable-mutable-configuration.html\n\n[1] https://review.openstack.org/263312/\n[2] https://review.openstack.org/254821/\n\nChange-Id: Ieea9043b6f3a28dc92717680585614a68227120e\n", "proba": 0.0002382598613621667} {"commit": "5995d783548655c83568823e8273b1eea8f3658f", "message": "Use nd.asarray instead of nd.array for constructing blaze array\n", "proba": 9.117736226471607e-06} {"commit": "29d3aa446b609b057e3c9bf2ba7d48a8fbcf76af", "message": "Gera parent_map durante constru\u00e7\u00e3o do objeto ArticleAssets\n", "proba": 3.275379469869222e-07} {"commit": "41acd475182269e4c0ec5e3eee38b98c5567c826", "message": "- Remove extra type casts\n", "proba": 1.6677489611538476e-07} {"commit": "996b182999adae1f95bf06d1a8b74bcc544e5359", "message": "remove debug output\n", "proba": 0.00010129284783033654} {"commit": "903b4ce4eebd39fb7bc89f63d9dc5bb740c74cd8", "message": "when updating post, don't bother deleting the old one\n", "proba": 4.2088194618372654e-07} {"commit": "01a2eeb7b1fa3a91311c87024e5416f66603aa3a", "message": "changes added 5\n", "proba": 1.2932783022279182e-07} {"commit": "bf0071fd8be08cdd3e8362eed200cb9ce65a3187", "message": "Allow multithreaded SQLite on Python 3\n", "proba": 9.46340078371577e-05} {"commit": "0af40382766d6bc24227663b25fa110b090d4001", "message": "changed unicode to str\n", "proba": 0.9994483590126038} {"commit": "d52abd3c10839092f0cd75341661326a0d3bec4f", "message": "Updated Chinese holidays to 2021 year end\n", "proba": 6.742595815012464e-07} {"commit": "4715003d64ee97355dc88825f618b13382019a15", "message": "--noBuild in WF\n", "proba": 1.298782166259116e-07} {"commit": "679301e4ef6e5e86521956f621c4d5f6e683869b", "message": "Added possible input value in documentation\n", "proba": 2.9211398100414954e-07} {"commit": "c7cfa24f604c6d16d1e4095a780b16a86a39a0ed", "message": "make finding closest time in array faster by using bisect (netCDF time array is already sorted)\n", "proba": 1.7544692809678963e-07} {"commit": "918a42d90cd14721e3e8b5f42698da3eb9bd3695", "message": "ENH: RE() returns run_start_uid\n", "proba": 4.262492893758463e-06} {"commit": "ee797e45e0e8e838d81c6c9b41626731e0ff42a2", "message": "fixing ...\n", "proba": 1.5601477798554697e-07} {"commit": "48a077021bc74bd039e40772f05fdcb2219c00bc", "message": "Fix for libraries that pollute stdout in violation of the WSGi spec.\n", "proba": 1.0922479276587183e-07} {"commit": "23455a826f85919adfdb65583c83c60be729b35e", "message": "Add html param support to labels. Thanks rcscomp.\n", "proba": 1.0487329404895718e-07} {"commit": "5c12c29943e459fa57091e8f68cddc52a8e1b428", "message": "fix extra_url_var docstring\n", "proba": 1.735744626785163e-05} {"commit": "14415c5966cc5ae47796f83f8e3686142169f7de", "message": "Allow passing AnyRef to CustomJSHover (#12007)\n\n", "proba": 1.0157478413930221e-07} {"commit": "fa3358f4f4eee89a7f38974a7efbc0e4e4552e09", "message": "updated callback helpstring\n", "proba": 3.9545105323668395e-07} {"commit": "cffdb6cd3dae4bb2bcab5f43097b508c6b69478b", "message": "Set compression level of DeflateConnection to Z_DEFAULT_COMPRESSION which was set to Z_NO_COMPRESSION by mistake.\n\nBUG=http://code.google.com/p/pywebsocket/issues/detail?id=94\nReview URL: http://codereview.appspot.com/4538049", "proba": 1.3288102991282358e-06} {"commit": "c8804024ad7a414a6b68a453379a86652a66065e", "message": "model_style_transfer: support for windows (no EGL)", "proba": 1.278623358302866e-07} {"commit": "1e1e3cf1bde9d2676bafd0ecca6eb64900e72430", "message": "simplify since_id logic.\n", "proba": 7.910010936029721e-06} {"commit": "7c2e64c11e65fffce10ddac62bf59b1d2cf7ac65", "message": "settings to add eulcore.django.taskresult app for testing\n\ngit-svn-id: bb2ed31f08aebe2c251d311350391bbcccfc1c3a@659 1168706f-7e1d-44e7-b746-9e172b5a9a2f\n", "proba": 1.4807388879489736e-06} {"commit": "8231c285b85f684efdbad3587ed52891837fa613", "message": "fix bug\n", "proba": 6.400653660421085e-07} {"commit": "8b70028147db5e42f90321713cc60c682c7a5fa4", "message": "- fixed impl of set_grammar()\n\n\nsvn/trunk@857\n", "proba": 1.4128835346127744e-07} {"commit": "277a4dffc27a6036dfa68a38f7655c734d9f0c13", "message": "Added filetype to statepoint.py and fixed revision and k_generation.\n", "proba": 1.032515228871489e-07} {"commit": "5f32d3700080425c45b196641f81389ab67b3695", "message": "Get the 'from email' address via the configuration module.\n", "proba": 1.6407658165462635e-07} {"commit": "99b6fa96c420fc5de78f2f1220b51abd97590b38", "message": "QA: feature_rbf: Test full RBF mode\n", "proba": 3.509334192131064e-07} {"commit": "02dfb89b0244054bae98158de06f045458dd8639", "message": "fix test 50 -> 500\n\nSigned-off-by: Pasta <46139b0b16d7696468a818ef81ab82a93691f7d5@dashboost.org>\n", "proba": 1.1569909474928863e-07} {"commit": "9c3ec8979f820299f9c0a9b625c70261f3b743c6", "message": "tests: accept unicode characters on Windows\n", "proba": 6.537275567097822e-06} {"commit": "8f53e13ce9001293484d55d44af96be66a8d6490", "message": "add MacOs pidof compatibility\n\nSummary:\nAdds MacOs `pidof` compatibility for bitcoind detection.\n\nOtherwise, the warning is always shown:\n`WARNING! There is already a bitcoind process running on this system. Tests may fail unexpectedly due to resource contention!`\n\nif `pidof: stable 0.1.4 (bottled)` from `brew` is installed.\n\nDepends on D999\n\nTest Plan: ./test/functional/test_runner.py\n\nReviewers: deadalnix, schancel, #bitcoin_abc\n\nReviewed By: deadalnix, #bitcoin_abc\n\nDifferential Revision: https://reviews.bitcoinabc.org/D1008\n", "proba": 3.2518046282348223e-06} {"commit": "ebe9d18787e2dec271979952322f6119cc68a0ad", "message": "Add else case when it is a POST request but save or delete is not given\n", "proba": 2.4019016109377844e-07} {"commit": "007d95fefec13aad773cc94ad0b9316af65b6486", "message": "allow setting of allowLargeResults in datasource\n", "proba": 2.5159809524666343e-07} {"commit": "a8b9e64e21ad6190b1b87bf67ffbc115c18ed017", "message": "Remove references to filenames from LoadTestData()", "proba": 1.5243820428167965e-07} {"commit": "e453618381eec4c39535538f09bc4d96e6714677", "message": "Added Polypeptide.annotation_string() and MoleculeSet.write_fasta()\n", "proba": 1.6206469410917634e-07} {"commit": "5779b170e4fa672d2cb6e3b19f00474cfe887a95", "message": "Added Polypeptide.residues attribute\n", "proba": 1.835797718285903e-07} {"commit": "d43250a0842070e5c1716e36ee720dcbf6962feb", "message": "Bugfix: MoleculeSet dumps were failing unless the molecule class had a header method.\n", "proba": 1.1022684276440486e-07} {"commit": "6e5ba8a9a0c2f46a7a47db9342dca65fc2ffe482", "message": "deal with lack of last_message_index properly\n", "proba": 1.5980231182766147e-07} {"commit": "5faa159c908b75872e31ae44603b122bd9725932", "message": "Narrow type of handled exception on HTTP receiver startup to `OSError`\n", "proba": 1.148274080264855e-07} {"commit": "ed4d9ee32693149102674a89d44b2b50abbe38ae", "message": "Removed update of timestamp when checking app version\n", "proba": 3.0037830356377526e-07} {"commit": "4ff05d68812bb5eec6c07de8196a2227d3713da8", "message": "use the built-in sum()\n", "proba": 0.00157545052934438} {"commit": "5cf97d4239d1f434e1955e7b13a2c9c7149d333e", "message": "cli: do not count on formatting only empty fields\n\nChange-Id: I95cb388d2c35faaad4a3a48efa1efd525a59d8f4\n", "proba": 1.8433166815157165e-06} {"commit": "6d5ab68bfd8af302f74cbf3d64be91f569b62012", "message": "Fix demo4.\n", "proba": 1.2853193709361221e-07} {"commit": "2fafdf34eedd10022e450f79dffd42abe3694982", "message": "help bad spelers\n\nSome of us can never remember the old ditty:\n\n i before e, except after c\n or when sounding like \"a\"\n as in neighbor or weigh.\n\nPerhaps magic wormhole can coddle us in our misorthography :)\n", "proba": 1.2144047900619626e-07} {"commit": "4305bf0e61f17350fb2a0dc86e8e889625658d52", "message": "fix db_config refresh definition\n\nThis commit fixes the initialization of categories and the special category __timestamp__\n", "proba": 1.1243646724778955e-07} {"commit": "d2a8bde519cd9990a01d568458c89c3d6379a732", "message": "Add command 'projects'\n", "proba": 0.9990991353988647} {"commit": "7a35ee339e7ce0b01715ae85c1913228f9a803d7", "message": "fix parser tests\n", "proba": 1.6669680462655379e-06} {"commit": "c0bd2fb0dbfb03f910b25db266e0baeafcc992fd", "message": "Update HugePage memory_count for updated kernel version\n", "proba": 1.765385633234473e-07} {"commit": "46806cbd4b21feef2b41794d4695820714688f29", "message": "Adding City filtering\n", "proba": 2.906678275849117e-07} {"commit": "6337a8d30dcbff794a6fb126794241b84082392c", "message": "[devops] Implemented sample admin node creation script\n", "proba": 1.4505069145798188e-07} {"commit": "181ff6a2dc5259ed061b5ad8b77055f94fb4b111", "message": "Bugfix for uks fxc integration\n", "proba": 1.5435252009865508e-07} {"commit": "fe17409b726fc501463c787c4e0592bc2c0a8de4", "message": "doc & change taxon list check to not mutate input\n", "proba": 1.3970077361591393e-07} {"commit": "d8f6bd09cc5ad8c8a2446738277ae010e707527e", "message": "Fixes.\n", "proba": 3.172669380546722e-07} {"commit": "2d9a0fea57ee06493ea39808fcb9fb1d83d4b694", "message": "Fix +v animotes not being included in GIF animote support\n", "proba": 1.7092925475026277e-07} {"commit": "e772cf95c65b98bb17b094585ff3ff2040c148c9", "message": "Extract test pattern to helper\n\nAn existing test in diskfile established an prior art for a pattern to\ncreate a diskfile with a different suffix - I'd like to make use of it\nin new tests in multiple unrelated change sets.\n\nAlso add a test to demonstrate some existing robustness and prevent\nregression.\n\nAuthor: Pavel Kvasni\u010dka <54e56da5c5b238d9db626dccb26c750f53fc72c3@firma.seznam.cz>\nCo-Author: Alistair Coles <3e53127f3ad0d91a1ed4651b133d989b076d9d27@hpe.com>\nRelated-Change-Id: I64cadb1a3feb4d819d545137eecfc295389794f0\nChange-Id: I3a661fae5c7cfeb2dbcdb7f46941f55244d0b9ad\n", "proba": 0.0009235295001417398} {"commit": "7b0c9997019883d0b170041d35aa93fc7a1fe4b7", "message": "Ensure only the last commit is built on a source branch change\n\nWe usually make sure that, when source-branch for a package changes\nin rdoinfo, we only build the last commit. That is to avoid build\nstorms if a package is changed from a tagged release to another.\n\nThat code also checked that, if we had a previous built commit for\nthe new branch, we use that as a reference to find newer commits. This\nis in place to ensure we do not try to rebuild tag 0.1.0 if we changed\nto 0.2.0 and then went back.\n\nHowever, there is a corner case where we used to build from master,\nthen changed to another branch, then go back to master after some\ntime. In this case, we could end with a very long list of packages\nto build, which is usually not a good idea. Thus, let's make sure\nthat even in that case, we only build the last commit.\n\nChange-Id: Iad2fb5c4158520c20232c5eb3e5b9e9544f55c16\n", "proba": 0.00041004372178576887} {"commit": "7aed39687d24d1a4e9eefc38eed17cead4a35b42", "message": "Synced with changes in narcissus HEAD\n", "proba": 1.5117201712655515e-07} {"commit": "8d719feaf344d3a7eb3d2437b4803f23c3e792ca", "message": "Code PEP8\n", "proba": 6.304973680926196e-07} {"commit": "9150fb383e27c7e4f0bf5550e45a508b4882ccd1", "message": "Adjust timeout value in test_client_timeout\n\nPer information filed in bug (and related bugs referenced in the\nreport) it appears that in TestObjectController.test_client_timeout\nhaving a matching timeout value for both self.app.client_timeout\nand SlowBody() appears to work however, as expected, a smaller\nvalue in self.app.client_timeout also works where a larger\nvalue fails. With that short test combined with speculation and\nrelated fixes, seems reasonable to merge what is suggested in\nthe bug report, drop the self.app.client_timeout to 0.05\n\nFixes Bug #1316716\n\nChange-Id: Ib4c6d3bb275f6c50c62505c90656efa7ee566bc0\n", "proba": 3.31377268594224e-05} {"commit": "55fd49c564196ca28db013a6940715950d221b99", "message": "Fix bug with new _batch implementaiton\n", "proba": 2.815986590576358e-07} {"commit": "44616b09fb476f4e8bde8871f0280cfb4f38b2da", "message": "new language bar\n", "proba": 4.5645322188647697e-07} {"commit": "786b907b9f8617390ce1c161e2ec96b08857dea0", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "8995ba02ba1a10e1887d5ca21858aae4cfdc9ab1", "message": "Fixed assertion bug\n", "proba": 3.9674975482739683e-07} {"commit": "37ce7825c677d20ca9c74dff4c8869cd5a5c10e0", "message": "Add tests for brief summary page\n", "proba": 1.7319500500434515e-07} {"commit": "ef0abaad50bd69cc5445935293c87d0195db4b0d", "message": "restore additional tests\n", "proba": 5.05238062942226e-07} {"commit": "3ba4de59a2ac3bcd5f33acb6442710b41c9fdbe6", "message": "Added tests for BooleanField/NullBooleanField's check constraints on Oracle.\n\n", "proba": 1.0728557953143536e-07} {"commit": "1d474fe84624abc2b7b5d9cbdc050737ce7f2511", "message": "Get Version property using property interface\n\nIt tests the D-Bus API more directly than does getting it via\nGetManagedObjects.\n\nSigned-off-by: mulhern <7b51bcf507bcd7afb72bf8663752c0ddbeb517f6@redhat.com>\n", "proba": 1.240586158246515e-07} {"commit": "0718283d5dfa0746d4af197b7d335fe09e29354b", "message": "Ugh. No, if it's object, do ugly base hacking.\n", "proba": 1.1589257553623611e-07} {"commit": "150fcfc12c3d9a3204f3b6b757649702918555ca", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "4f3bda26534fba335d537c8d5601a3138a7a5c54", "message": "Fix Windows?\n", "proba": 1.6395706552430056e-06} {"commit": "662678cfd95709e2b5afa28bede17c552722ab43", "message": "debug\n", "proba": 1.5664004422433209e-06} {"commit": "f2beabd776b3079363d5b96d9c43153788a5f9fd", "message": "Add tests to test delete_on_exit argument\n", "proba": 1.503107796452241e-06} {"commit": "df9f59923e85a754de6be56a8ea1627893787cfa", "message": "fix idx\n", "proba": 4.075348988408223e-05} {"commit": "8696bdecf8742c94269af815bdd8b3e72f139c58", "message": "Updating two calls to run_rulesheet to use the new signature (includes \"environ\").\nUses an empty dictionary for now, as I'm not sure how to get the environ to\nrun_rulesheet via get_proxy.\n", "proba": 1.1144047107336519e-07} {"commit": "32c1f935726542fe52e794e4c65b05d948281a2f", "message": "TST: Updates tests to fit fixed stop behavior.\n\nChange the answers to the stop order tests to match the corrected\nbehavior, where results are opposite from previous behavior.\n", "proba": 1.1687975387530969e-07} {"commit": "d70573f7d25534c0311529da24f9a5a77de6023d", "message": "tests: Add --bin-path option to insttest regressions\n\nChange-Id: I229f37782b1c3650dc71ee481823b41f6f67e590\nSigned-off-by: Giacomo Travaglini <8eef13a4f970e2e9372c8d26ad0737b760f99c02@arm.com>\nReviewed-by: Nikos Nikoleris \nReviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/26483\nMaintainer: Bobby R. Bruce \nMaintainer: Jason Lowe-Power <92de577f37050ad05b60626d2f17913f40dcb1a2@gmail.com>\nTested-by: kokoro <2ac7b1f3fa578934c95181d4272be0d3bca00121@google.com>\nReviewed-by: Jason Lowe-Power <92de577f37050ad05b60626d2f17913f40dcb1a2@gmail.com>\n", "proba": 6.62702973386331e-07} {"commit": "31d74db9ecb34dacab5b1b04d8282b06b435f18f", "message": "cosmetic correction on a comment\n", "proba": 1.7179344524720364e-07} {"commit": "af070a56ad24b0663980bc03355539e22c7cb23b", "message": "its 'Denied Keys', not 'Denied Minions'\n", "proba": 6.587167445104569e-05} {"commit": "35ed4b64fccb2f2ca7e60a6bf20877fde7661d7a", "message": "Jinja2BearTest: Update to comply with latest coala\n\nUpdate testcase to comply with latest coala version,\nespecially for\nhttps://github.com/coala/coala/commit/16b3938fba3464\nwhich adds linebreaks to the coalib.results.Diff.unified_diff()\nreturn value.\n\nCloses https://github.com/coala/coala-bears/issues/1812\n", "proba": 4.760024978622823e-07} {"commit": "71e9c36e013cd9b6090877b9f03a753fb8383e14", "message": "comment out failing tests (for a moment)\n", "proba": 1.155018694021237e-07} {"commit": "36207f1bc480d281adff56891777b58d1575b6d6", "message": "Ensure admin user tests have a whitelisted example email\n", "proba": 5.538686309591867e-07} {"commit": "33b07fdf899a1a2148e030b958ee075ffec7d8e0", "message": "lib: Add support for temporary verbose mode\n\nWe want to display the output of shell commands that the user issues,\nsince they are likely to be important. Without this, we get only progress\noutput with something like 'chromite sh ls'. Since there is no progress\ninformation, this means no output.\n\nThis is a dev convenience to avoid the need for specifying -v3 on every\nshell command.\n\nBUG=chromium-os:26802\nTEST=tested with later commit: 'chromite sh ls' and see that the\ncommand output is not supressed even with the default verbosity\nsetting.\nChange-Id: Ie04651912dcda19c5e579058b9e15a95239bcc01\nReviewed-on: https://gerrit.chromium.org/gerrit/16618\nTested-by: Simon Glass \nReviewed-by: David James \nCommit-Ready: Simon Glass \n", "proba": 0.007532842922955751} {"commit": "bd6bb5d6412ec7672e411d49e788a6ac8fd88831", "message": "Fixed dateformat unit test that was failing -- the test was incorrect.\n\ngit-svn-id: 4f9f921b081c523744c7bf24d959a0db39629563@1146 bcc190cf-cafb-0310-a4f2-bffc1f526a37\n", "proba": 0.00011329486733302474} {"commit": "7d770b939b43b8473f398e1f8e03b6e44a99148f", "message": "Added more filter() tests\n", "proba": 1.2621214295904792e-07} {"commit": "0d8a7e5421edfe4614cf2f39627e698cdea420af", "message": "add Iterator protocol\n", "proba": 1.6659636230542674e-06} {"commit": "4ecde2b40a9eb95cdd170ff1f19f76e836c27b6a", "message": "Improve test\n", "proba": 2.1761927200714126e-05} {"commit": "78ad84544112ed2df19e39979d5ce95b6cb799f0", "message": "ut import upd\n", "proba": 7.976146889632219e-07} {"commit": "dfa1cb1721d72b96c4ba73b1ed3683da17d245aa", "message": "switch window rename to use sh shell as test\n\n\"top\" wasn't working on OS X\n", "proba": 4.889575961897208e-07} {"commit": "b5d653e450bfb24de78ff3b9d64a38770e884519", "message": "Be explicit when calling the super class.\n\nUsing self.__class__ doesn't necessarily refer to the class implementing\nthe method.\n", "proba": 3.415444496113196e-07} {"commit": "1e6a085362ce72e615f15d9e39e53719e6c896ad", "message": "Fixed misnamed TestPlotlyPlotInstantiation\n", "proba": 4.319700508403912e-07} {"commit": "167fd6264bddb2edc131eca760f9f66ce1dd6b71", "message": "Added unit test to check OverlayPlot propagates parameter values\n", "proba": 1.4419570959489647e-07} {"commit": "85076bb5b745729a38e18ce86ef8f7e3eac87a63", "message": "Improve coverage.\n", "proba": 5.620389629257261e-07} {"commit": "7f90d3e663407316a6b2fbe11780af9b4149d0ea", "message": "[test] fix: utf8 encoding is done by nyamuk library\n", "proba": 3.505858785501914e-07} {"commit": "cfac4a4377510a31747c1b536cc004366ca7bc8c", "message": "Add additional TornadoSession tests\n\nAdd coverage of TornadoSession._connect\n", "proba": 3.3869008575493353e-07} {"commit": "c257f2cd8e5348a932ed9e23c7924d0d6e4f2e66", "message": "Location: test the D-Bus properties\n", "proba": 4.685423846240155e-06} {"commit": "1680f18556fe0e6cb31f95f1e9975cf82b98df03", "message": "osarch mock for unit test\n", "proba": 1.646688190248824e-07} {"commit": "25b8a6045208b59cc42b7840987f66972fa1944b", "message": "Allow standalone test execution\n", "proba": 4.642856310965726e-06} {"commit": "d245b174121cc1e3242dc4f4726e1b973a001f84", "message": "Added support for `__main__` execution and formatting fixes.\n", "proba": 1.5602756775479065e-07} {"commit": "95e16247b8a40d19b65e27714aaf381e9ea1f173", "message": "Adding another unit test to check for zfs.create success if create_parent=True\n", "proba": 6.696031778119504e-05} {"commit": "205b955977a50142896ef0a816c80ca3fca5c0c4", "message": "specify encoding\n", "proba": 0.00024517677957192063} {"commit": "461ce05667c3fa1d30d163b219149cc7da29f30a", "message": "No module level globals\n", "proba": 1.2627670002984814e-06} {"commit": "7c9ab94863ab74cd79028b53ac20dadbcbd82095", "message": "Skip system CA test on old SSL modules\n", "proba": 1.6846662731495599e-07} {"commit": "3c0e31235dc6cb0fe7d7ecabac4965511be69538", "message": ".hashcreds files are no longer generated\n", "proba": 2.4964015210571233e-07} {"commit": "175de2a6407f21ee112343938219a040736601f9", "message": "task/install: run install commands in a concatenated string\n\nthis improve the readabiliy of long script.\n\nFWIW, the `arg` will be passed as the `command` parameter of\nparamiko.SSHClient.exec_command() if it is a `basestring`.\n\nSigned-off-by: Kyr Shatskyy <82d0c7561ff7e9a20a19db22e8fb5b2adaa3d71e@gmail.com>\nSigned-off-by: Kefu Chai \n", "proba": 0.00012618149048648775} {"commit": "9d67f42b7e9cb0ae8315486c6faa96e9a3f07d4a", "message": "Add appropriate BytecodeSymbol wrappers for new opcodes\n", "proba": 5.89563660469139e-06} {"commit": "58037be4c0dc5b35ff42d3372839740d3d0b4d81", "message": "Integrate LLVM at llvm/llvm-project@ebd0249fcf67\n\nUpdates LLVM usage to match\n[ebd0249fcf67](https://github.com/llvm/llvm-project/commit/ebd0249fcf67)\n\nPiperOrigin-RevId: 471547095\n", "proba": 4.6729016389690514e-07} {"commit": "6ef053ed11d8768a34940cd13a0868da5a25391e", "message": "Integrate LLVM at llvm/llvm-project@6c654b519835\n\nUpdates LLVM usage to match\n[6c654b519835](https://github.com/llvm/llvm-project/commit/6c654b519835)\n\nPiperOrigin-RevId: 421268136\n", "proba": 5.927359438828717e-07} {"commit": "22778973248b35d8500849715d7150dabde7d881", "message": "Integrate LLVM at llvm/llvm-project@016e59bf2cbf\n\nUpdates LLVM usage to match\n[016e59bf2cbf](https://github.com/llvm/llvm-project/commit/016e59bf2cbf)\n\nPiperOrigin-RevId: 439639907\n", "proba": 8.577476364735048e-07} {"commit": "ee804489b888292b7cba27132c356c0e336a0775", "message": "Integrate LLVM at llvm/llvm-project@6c8ff4032e2b\n\nUpdates LLVM usage to match\n[6c8ff4032e2b](https://github.com/llvm/llvm-project/commit/6c8ff4032e2b)\n\nPiperOrigin-RevId: 395706357\n", "proba": 1.4010412314746645e-06} {"commit": "479cafc61a5d893754992020433f15c6a541bc7d", "message": "Integrate LLVM at llvm/llvm-project@1fa4c188b5a4\n\nUpdates LLVM usage to match\n[1fa4c188b5a4](https://github.com/llvm/llvm-project/commit/1fa4c188b5a4)\n\nPiperOrigin-RevId: 390128959\n", "proba": 2.7579383186093764e-06} {"commit": "cf8393fd8ce0442e5de4624535c02430123faff0", "message": "Integrate LLVM at llvm/llvm-project@cd20a1828605\n\nUpdates LLVM usage to match\n[cd20a1828605](https://github.com/llvm/llvm-project/commit/cd20a1828605)\n\nPiperOrigin-RevId: 473984366\n", "proba": 4.943217959407775e-07} {"commit": "d1bcef0d0a8f8debbb7c2455b4e93eafc2a0826d", "message": "fixed import error\n", "proba": 5.289116415951867e-07} {"commit": "87f6daf107261acf497a9cded62ad19b16bc5b97", "message": "add missing import\n", "proba": 4.194788562017493e-05} {"commit": "327da09e9a0bee19ba93c69dc4e1c20906d94c82", "message": "fix issues with the jpegtran optimizer and the epoll IOLoop\n\nafter enabling the jpegtran optimizer and having enough traffic the IOLoop from tornado\nstarts to through now and then the following exception.\n\n{\n \"module\": \"ioloop\",\n \"funcName\": \"handle_callback_exception\",\n \"message\": \"Exception in callback None\",\n \"exception\": [\n \"Traceback (most recent call last):\\n\",\n \" File \\\"/usr/local/lib/python2.7/site-packages/tornado/ioloop.py\\\", line 887, in start\\n fd_obj, handler_func = self._handlers[fd]\\n\",\n \"KeyError: 14\\n\"\n ],\n \"name\": \"tornado.application\",\n \"threadName\": \"MainThread\",\n \"filename\": \"ioloop.py\",\n \"processName\": \"MainProcess\",\n \"pathname\": \"/usr/local/lib/python2.7/site-packages/tornado/ioloop.py\",\n \"lineno\": 638,\n \"levelname\": \"ERROR\"\n}\n\nReading through http://y.tsutsumi.io/keyerror-in-self_handlers-a-journey-deep-into-tornados-internals.html\nand keeping in mind that Popen is also doing a fork the base idea was to ensure that all FDs are being closed\non the fork which worked for us and the error doesn't happen anymore.\n\nThe error was easily reproducable with a local running thumbor 6.2.1 with Pillow and also with the OpenCV engine\n(tested both) by doing something like this:\n\nab -c 10 -n 1000 \"http://localhost:8080/unsafe/filters:format(jpeg)/http://172.17.0.1:8081/pic.png\"\n\n(be aware the error happens not immediately so wait until you have 300-400 requests)\n", "proba": 0.08698788285255432} {"commit": "12bc980a4883619630be7e45efbeebf15b6ddabb", "message": "Fix warning in tools/data_samples.py\n", "proba": 5.398123903432861e-06} {"commit": "d7c9ff0c5361213688923686f912ae708121d3bd", "message": "removing clog\n", "proba": 1.629781991141499e-06} {"commit": "cb1f17cb0426669ae8e587f7160dd8baae811a6b", "message": "Proper patch for an Issue #591\n", "proba": 1.6779944189693197e-07} {"commit": "0f8d1cb75ddbac180e2d74d35b5f49c57911c3bb", "message": "fix to the test-dir path\n", "proba": 0.0010826122015714645} {"commit": "cd8616e9e3ceda28391cea1b1d8bf5bef7a5b808", "message": "Add authentication base classes for SSH keys and passwords\n\ngit-svn-id: 353d90d4d8d13dcb4e0402680a9155a727f61a5a@894769 13f79535-47bb-0310-9956-ffa450edef68\n", "proba": 2.1235809981590137e-06} {"commit": "cd0b012edbcbff56585d1c9ed02624bedda1cf5e", "message": "Use standard size/alignment in xcbq.Window.set_property\n\nOn x86_64, the \"L\" (long) format with native size is 8 bytes instead of\nthe intended 4 bytes for a 32 bit property.\n", "proba": 2.981089437525952e-07} {"commit": "d9868c92108ead654a18dcdb27111dddef245593", "message": "correctly set env vars\n", "proba": 6.795504759793403e-06} {"commit": "fd5828fc728227adc6ddac719f1f9a568aed096a", "message": "Updated setup to include new modules\n\n--HG--\nbranch : trunk\n", "proba": 1.6279693682008656e-07} {"commit": "116e771955ff45fbbc466ba01695f9f72c2cb8b4", "message": "debug nocks\n", "proba": 1.1400504718039883e-06} {"commit": "d39f179fba7289621a39bc52363342faea439742", "message": "handle not metadata/src dir\n", "proba": 1.342300765827531e-05} {"commit": "af844559468916c877142dbfb70e32da818cb1f0", "message": "Update config.py", "proba": 1.2909164297525422e-06} {"commit": "67a61c2448688e8765f074be428bcfa7cbb4b172", "message": "Update warning message about eager execution.\n\nPiperOrigin-RevId: 396688535\n", "proba": 3.4892309486167505e-07} {"commit": "a927716432868ca2db4aa0a384a2de3188525b94", "message": "warning when captionfile exists\n", "proba": 3.361550398039981e-07} {"commit": "fea5423e69c8d232fcd9bd2877edaff753b4f4ee", "message": "emit a signal if a setting is removed\n\nWhile there is a standard signal for notifying that a object path is removed,\nit is not listened to. When a setting gets removed, at least send a signal that\nthe setting is no longer valid.\n\nThis is mainly for testing purposes, there are no uses cases at the moment for\nremoving settings.\n", "proba": 7.120647751435172e-06} {"commit": "b40e704b96e26c68abe53d8f55ccddcfd720dc58", "message": "v1.26\n", "proba": 1.4429629118239973e-06} {"commit": "b4ef44a1d29b9728c83525643cfd493217dca068", "message": "localtv/tiers.py: Fix indenting.\n", "proba": 1.526136230722841e-07} {"commit": "4a1ca2b9d3760ddb1f3e1587a66b89d4a5ecc743", "message": "adding dm support for loglast\n", "proba": 2.0123029287333338e-07} {"commit": "d8fef78de241b1ebd197c283f0fb4dba5a377d73", "message": "fix: Content-Type http header was treated incorrectly\n", "proba": 5.835681236021628e-07} {"commit": "e475b02f9e66aaefdf557f1f00a3749eee83c3d4", "message": "nodes should act as word boundaries for the purposes of the word-by-word diff\n", "proba": 4.345705292507773e-06} {"commit": "a2f4ea6c88161052d9201a7582e6583798bc8ae2", "message": "Remove UAID sweep\n\n* add add'l connection time arg to NotifyHandler delete() function\n* change multiple test_unregister names to be less vague\n", "proba": 2.494911370831687e-07} {"commit": "6ae38f39c354a76822ea6fa155691d20c465ddec", "message": "add spacing for readability\n", "proba": 2.2968231860431843e-05} {"commit": "406f8343c2b2f668860e4620402c8d007ab72e7c", "message": "remove unnecessary ops\n\n", "proba": 3.508044756017625e-05} {"commit": "4331c9098e844b5c77c3326092e02f5e12fff645", "message": "FIX #244\n", "proba": 2.3495039158660802e-07} {"commit": "e15ae2e48ac4695bccc893541728831495acf0da", "message": "simplify projections; start refactor\n", "proba": 2.062112116618664e-06} {"commit": "81fafd17156ff543ed59df046659a81bd5f4f8cd", "message": "started new get_target_spectra script\n", "proba": 4.386081684515375e-07} {"commit": "950e337289b2370735273524a298f7002c10985b", "message": "deprecate pass-based LRG cuts\n", "proba": 2.3876852992543718e-06} {"commit": "ab4670eb4110bf0c289f19638eb9c9c56f6f718d", "message": "changing data model in cuts.py; assigned name changes in apply_cuts and unextinct_fluxes\n", "proba": 2.0955832269464736e-07} {"commit": "7026faac70c0725ebaf9c373a589191f4ee77163", "message": "correct counting,\nsome flag will only show statistics without overwriting.\n", "proba": 1.1516507925080077e-07} {"commit": "7a21a4578129ddc3797cf387d73a5f3551036269", "message": "properly encode LDAP DN values on validation\n\nsee: https://github.com/ansible/ansible-tower/issues/7554\n", "proba": 5.6916769608506e-06} {"commit": "72537d517a3e7059847b837031e11e546946b4ff", "message": "correct autoscaling group name in CFN signal and hard-code EKS cluster name\n", "proba": 3.808394239968038e-07} {"commit": "1b8896c8296d2e24562c648c6e9c2684976255e1", "message": "BUG: Do not write test data to disk\n", "proba": 1.5432455313657556e-07} {"commit": "7039174a5138de6196e30f4fb15d57ff89ca846b", "message": "corrects typos\n", "proba": 0.9984346032142639} {"commit": "9babaccde833b4cc4658d1759c791485e1d96048", "message": "Handle italics at beginning of line. Also, don't strip a character.\n\nSigned-off-by: Drew Fisher <3bd6b4e8d86f88bc00081fe2103faa1298b9dfc0@gmail.com>\n", "proba": 1.1702691153914202e-06} {"commit": "e14e5e87755994598a4ace375a19add83b7234ed", "message": "python3 formatting\n", "proba": 9.544595513943932e-07} {"commit": "4f3cca755d41e9736d4fc084038c05b469b618a0", "message": "Fix logs for manager_name (#726)\n\nDo not use hardcoded manager_0, just use the actual name.\r\n\r\nCo-authored-by: LegitDongo <4dee3663e85f3143f7c5effa77f5bd8c5fac7116@users.noreply.github.com>", "proba": 5.304460046318127e-06} {"commit": "64dd1b69303b6c8020dc7e139c5b6b921b5e888c", "message": "provide profile timestamps on very large EFM SD validation\n", "proba": 1.58507930336782e-07} {"commit": "8eac47f26785eb18855f78cb32fb4f33ab1bda6d", "message": "added notes on virtual environment\n", "proba": 2.97449304298425e-07} {"commit": "a5ec28641e7b3eee7f4ea5a39fb9e3a30c086c79", "message": "fix i3status config reader tztime detection\n", "proba": 5.786122301287833e-07} {"commit": "b448953c6bd049cceec6eae74b1731d07f40038b", "message": "Minor: remove unused ddt\n", "proba": 2.4119701720337616e-06} {"commit": "f75630b4bb4822b98e85db044b907a7a3a161d4f", "message": "Empty inline image link - fixed [1799251]\n", "proba": 1.084610303792033e-07} {"commit": "61c3829d584b0f7c93d77726f6d05fac63468925", "message": "azure-common 1.1.8\n", "proba": 1.6254141428362345e-06} {"commit": "146c9ff23240e9fe16174d06bd675e402d3d330f", "message": "VideoWriter bug fix\n", "proba": 2.440875732645509e-07} {"commit": "063befbfcad15cbe671e7b2e0dddfa16a3c3fc29", "message": "Strip H atoms from remodelled pdbs\n", "proba": 2.493976580808521e-07} {"commit": "d9fff6b744fd72d687e37bfdcbd8075f7dcd0ed4", "message": "Make conditions more readable\n", "proba": 0.00023923390835989267} {"commit": "16f063cdbe159efdcb2aefa4c6d31045c94f57de", "message": "fix has_buffered(self) which failed when the table are only updated\n", "proba": 4.3789972892227524e-07} {"commit": "84f2b6471fab9c3e5f605619fe06fcfb79a0ee98", "message": "hack to handle jsonnet-style headers.\n", "proba": 1.089266632448016e-07} {"commit": "926847f3062d339c17f8bfe86d1d335b5caf07e5", "message": "Update lightcurve.py (#25)\n\n* Update lightcurve.py\r\n\r\n* Fix failed tests\r\n\r\n* Fix None type error\r\n\r\n* Fix\r\n\r\n* Add timemin/timemax args separate to xmin/xmax\r\n\r\n* Remove old timemin/timemax\r\n\r\n* Change xmin/xmax tome timemin/timemax\r\n\r\n* No text on single plot\r\n\r\n* Don't flip yaxis again\r\n\r\n* Don't overwrite lightcurve.pdf\r\n\r\n* Also save time of band max\r\n\r\n* Flip yaxis\r\n\r\n* Revert \"Also save time of band max\"\r\n\r\nThis reverts commit bd45a86f3151ac09d53f9d8a942892c1680ca665.\r\n\r\n* Fix some complaints by auto checks\r\n\r\n* Revert \"Fix some complaints by auto checks\"\r\n\r\nThis reverts commit 7616a5e05334706711e4c3c9d14bbfd6bb7945b7.\r\n\r\n* Change doc string to comment", "proba": 7.126117793632147e-07} {"commit": "1b0e275ddfe1f4d810450ef2d31f4f471d44599c", "message": "Country in userprofile can use babel territory list", "proba": 7.745300081296591e-07} {"commit": "a9bcdfac1f0ac8aa443bccb8b582a5cdf2d51ab8", "message": "[IMP]purchase_proposal: productos no vendibles a C\n", "proba": 0.9971279501914978} {"commit": "995ae094d1fecbc4044e2283d1d6510d12f41041", "message": "complete() --> Subgoal.complete()\n", "proba": 1.0731647307693493e-05} {"commit": "e4bb6ea541a6ba017a330144006942248fb4b1c0", "message": "This can be done later, saving a possible dictionary lookup.\n", "proba": 1.2172129970622336e-07} {"commit": "02e1daa3716db19e3988014d19b87de8364a90b1", "message": "clarify what to do on subgoal completion\n", "proba": 7.843620551284403e-06} {"commit": "690463ec05e346c6b61f545296d2ea02c79d12a5", "message": "extend field\n", "proba": 6.347785870275402e-07} {"commit": "ca5db84ed6d96ced772894f9ce5d02c13ae68ef6", "message": "JTOX: make the plugin use the new unique_prefixes function.", "proba": 1.0660387772531976e-07} {"commit": "12040fd641f2c57ebb2f8653d4a56a541a6e8a9a", "message": "- Fix Boleto Hsbc, correct data_vencimento_juliano length\n", "proba": 3.611751822063525e-07} {"commit": "5ca867b2f4c549cd65fa124b3e0ca29d0e3565e3", "message": "Fix session usage.\n", "proba": 3.6389093338584644e-07} {"commit": "cc959232185d15785a7ce4d83d3df450ed2f121d", "message": "fixed config dump\n\nraised exception before with pc_query\n", "proba": 2.7515781653164595e-07} {"commit": "3627290e6ec52d86b729a8e888a210141ece4faf", "message": "optimize the lam_to_sexp\n", "proba": 0.9999992847442627} {"commit": "180f78aae5ca7349d126562e826da66f5b1364f8", "message": "Split out get_context_data methods\n", "proba": 0.9998021721839905} {"commit": "4c40b29705020eb5abcb553a1913b4dfb71012f6", "message": "to_sexp for define-values\n", "proba": 9.98417021946807e-07} {"commit": "33fa9c9f02538da187388e4df79642eb75e449b9", "message": "Honor multiple inheritance correctly.\n", "proba": 4.60671998325779e-07} {"commit": "5e53a63b3f0fdf757f0ab1f3d8971d6ccffd036a", "message": "Removed blank line at the end of file.\n", "proba": 1.3747079208314972e-07} {"commit": "8efc2cc27d0d1b9d44cf9875ec0726498b2719eb", "message": "fix major error with evolutions and candies\n", "proba": 6.941498577361926e-05} {"commit": "806ec3e5e7b9d5931f4dbf54e8dcac388de93cdb", "message": "oops, don't jit the plausibility check\n", "proba": 4.2392940713398275e-07} {"commit": "38ae80118b738168798fff152f344e35a318bee7", "message": "Removes unicode_literals in utils.py.\n", "proba": 9.140999850387743e-07} {"commit": "18cb32fd436f067a5c638ce6214d16bdd499a432", "message": "Split the station update logic apart per station type.\n", "proba": 6.226825348676357e-07} {"commit": "c65cc758d33061185416f250b54f500a692d5a04", "message": "Added output-directory parameter.\n", "proba": 1.4070263887333567e-07} {"commit": "da290872ea7d271d9b962a101d4acf54482b6c3c", "message": "improve prior in variational loss\n", "proba": 1.4676834325655364e-07} {"commit": "a835cd12c25083018bd425ee9886bb8d4e8c62c6", "message": "speed up financial aid review UI\n", "proba": 4.7549298187732347e-07} {"commit": "b7eaaec81d7bc35e4655e9cc562a8ef08d43c637", "message": "refactoring tree\n", "proba": 2.151963826690917e-06} {"commit": "9e8bea7e994e1d255892404d2079f9b594411f02", "message": "fixed typo\n", "proba": 2.684115770534845e-06} {"commit": "59b66a1de8f72539f557715379bb349e1fbda432", "message": "don't call LidarViewer if the point cloud is not colorized\n", "proba": 4.996367124476819e-07} {"commit": "11c2a78835c593baf5e6de1381b8302bab6a66c4", "message": "Firewall code sexyness\n", "proba": 1.091122044272197e-06} {"commit": "e80c6f3cb10605666562b6b3a9c76c44129ea24e", "message": "minor fix in get_property\n", "proba": 2.406744386007631e-07} {"commit": "129b6708215b98fbc30c72378525ece1f86615cf", "message": "Fix not updating config files for commit checkers\n", "proba": 6.116879376349971e-07} {"commit": "b8dcf7b79ac8ae06ce65551708da5a3a174fa548", "message": "Finish is_valid_cubie function. Remove redundant assertion\n", "proba": 0.9999994039535522} {"commit": "4eda31981c1613d45e3196c53d044bea0fd55db0", "message": "Alphabetical sort json dump\n", "proba": 4.4472733861766756e-05} {"commit": "f4930dd1e3310c96691400a9b8ab92e3c012f212", "message": "debugging\n", "proba": 2.4004323222470703e-06} {"commit": "11c33199fd15f4e46e48c46a45c9d18ec1fb7d7e", "message": "choose file for reconstruction output\n", "proba": 9.036761525749171e-07} {"commit": "d39d451ff4e429bf1884c9c2549961088650faef", "message": "tests del download_strategy en push_dataset\n", "proba": 1.8056307737879251e-07} {"commit": "75f95e070fd4b0e227bc6b5048990b16ef76d7a2", "message": "remove unused forms definition file\n", "proba": 4.291409538836888e-07} {"commit": "471863af58734b992b49223488f8ab1e581b0aff", "message": "Delete also settings, when deleting a route\n", "proba": 2.7353959808351647e-07} {"commit": "35e89e7799217729e995eb2586745d56e9d6d2d7", "message": "Accidental commit of work in progress; reverted in\nr23215.\n", "proba": 1.0089857482853404e-07} {"commit": "cada2987a9c20ba0cf7c2c8a78f0bf3aba2063e1", "message": ":bug: CRLF\u304c\u542b\u307e\u308c\u308b\u6587\u5b57\u5217\u3092\u5206\u5272\u3057\u305f\u6642\u306bLF\u3057\u304b\u5185\u5bb9\u304c\u8868\u793a\u3055\u308c\u306a\u304b\u3063\u305f\n", "proba": 4.1415100326958054e-07} {"commit": "ea81e267f1f9cbc3dd20c8d8967a8f4d0c02f678", "message": "remove imports\n", "proba": 5.2137570492050145e-06} {"commit": "2ef7c9cb34cd25cce9015a2d502c572744d71f56", "message": "added support for pandas dataframes\n", "proba": 3.8282402670120064e-07} {"commit": "2313ede9596f73a52381494b9e3461a7d028dbc0", "message": "Update test_SKIP_python_base.py\n", "proba": 4.048758910357719e-06} {"commit": "bfe939160b3b397b41d51a89fc4283f07205f02c", "message": "Fixed creporter and added new plugin\n", "proba": 1.397558122562259e-07} {"commit": "f87aa8f239f0c43deb980807e6d7f6e39cf89467", "message": "Remove what appears to be some debugging cruft.\n\n* subversion/tests/cmdline/upgrade_tests.py\n (xml_entries_relocate): Lose an unnecessary print statement.\n", "proba": 1.2963086248873879e-07} {"commit": "19cac32314a57b5ffb8f68578aee63235190f74b", "message": "File mode fix.\n\ngit-svn-id: f4e1a40f847802203273bde8e26df4d11611876a@6964 44470bb9-56e9-0310-a0f8-c586564d3dc6\n", "proba": 7.61832925491035e-05} {"commit": "c233bc3592fc383f0c4ee39af934b399b72e63ed", "message": "Prevent attempt at initializing InteractionKernels when no interaction is specified.\n", "proba": 1.3114602381847362e-07} {"commit": "a70072f5cf34c30961a5f97042c8873f36258228", "message": "socket: Don't throw traceback when sessions are expired.\n\n(imported from commit 16c876b5bbd0c6ecd5ef48369a7f71ca74d1183f)\n", "proba": 2.954282649625384e-07} {"commit": "e8b1c1a7433ba9d1224f090fe47d3c78e8ec9fa6", "message": "(chore) Add exception handling for non-numeric inputs\n", "proba": 4.6321878471644595e-05} {"commit": "60c7a8778ab97487ea6b76824bce9ef884fb7982", "message": "Fabfile test wrapper now actually exits with error code if a test fails.\n", "proba": 1.0649535653328712e-07} {"commit": "b85bf0356d6035e3fa413761c3fd8fe7d595c754", "message": "Introduce AbstractCache and AbstractFileCache.\n", "proba": 1.3098927809096494e-07} {"commit": "093e18dfc3591b01e1a47901fce33865a10faca4", "message": "use target_srcfile.obj form rather than target-srcfile.obj because borland C++ doesn't like the latter\n\n\ngit-svn-id: 7746e1be614c04306162a6afe133859c0e9253b7@160 34294538-1d18-489e-82e9-bb8ff975a0eb\n", "proba": 1.36952976390603e-05} {"commit": "5827e24c78a9050e74977ddc9707018e0f90b36c", "message": "pep8 cleaning on hr_expense migration\n", "proba": 1.1489915863194256e-07} {"commit": "b17614ce4f272384becddfea164c934d485c878b", "message": "Checkpoint 2009-01-26 18:33\n", "proba": 1.674879968049936e-07} {"commit": "922920a70ebf686a99167cc3045e109caae74300", "message": "Rewrite the documentation of the FP interface to face implementors\nrather than users.\n", "proba": 1.2127173931730795e-07} {"commit": "af360e67f0c6db3140095bd9c5ab005935a77a23", "message": "Updated set_index portion\n", "proba": 4.954611085850047e-07} {"commit": "fcea059a4a0258d63ee2ed215318068f737247bb", "message": "Suggestions from @DavidPS incorporated\n", "proba": 1.1904073460300424e-07} {"commit": "a9ce2e4eb24a72ebdfe95f3e89f96d0efbc24cc7", "message": "Add resources/touch_ntp/tools/check to whitelist for +x.\nTBR=markmentovai@chromium.org\n\ngit-svn-id: http://src.chromium.org/svn/trunk/src@78609 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n\nFormer-commit-id: 2d6f0a83889c6b29f304b586a80ade4a85ef3f66", "proba": 1.2583474926941562e-05} {"commit": "a14ec174732a92ecaac5640c70070232f6e6fcf4", "message": "dev_login: Don't redirect to realm if it doesn't exist.\n\nFixes #7132.\n", "proba": 1.0276760775695948e-07} {"commit": "fb194e456d706e7bf59f151ff070fb87352695a3", "message": "Add a Course Name field to the Metalogix Grade Report script.\n", "proba": 1.0574402153906703e-07} {"commit": "cdbbcb5515bcafdfed5ec92c43846e3b03ba0afa", "message": "Longer timeout and more requests.post() fixed\n", "proba": 1.2492839118749544e-07} {"commit": "e048315d9b9a0cb6bdf55ad3d9b7d55f99a980b5", "message": "Adapt get_issues.py script for GitHub (instead of Bitbucket)\n", "proba": 3.175121321419283e-07} {"commit": "4a72d564a6d36d53b5209b8bcc497e8dc5e43bd5", "message": "replaced camera.png due to copyright issue (#556)\n\nCo-authored-by: Almar Klein <17af4bbb6771d9b974ea5e0408139a63d00bcb08@gmail.com>", "proba": 1.0623972457324271e-07} {"commit": "4477473485126ab447704dcfc15e568274496c79", "message": "Fix 'missing newlines in output' bug\n\nissue: #6\n", "proba": 0.0003541502810548991} {"commit": "d0ebc60f77da9b4f69cc333fbe04637c654e27b5", "message": "Added click_link\n", "proba": 5.310546384862391e-07} {"commit": "0b9f92db72b3ef406e50a063e16b1838d9333879", "message": "attempt to merge it in : mostly works (now, pub time).\n\n", "proba": 1.0299601882479692e-07} {"commit": "af87ba57f4d267133ebe384a88c1b55740f4b335", "message": "Added SoundFile frame accessors.\n", "proba": 1.0770835956463998e-07} {"commit": "f9efc8f23d06030dd569289d7e1bea3f996f995d", "message": "adjust auto trimming\n", "proba": 1.2099636705897865e-06} {"commit": "fd8c14fc04f38ee608a77691e65f4d04aade2d9f", "message": "MAINT: make TradingAlgorithm._run_pipeline public\n", "proba": 7.5214452408545185e-06} {"commit": "2b3df1a5ca05ff7b7f9bc16ddd06fc63162781ae", "message": "Adding additional filters to CallCenterClientMethods\n", "proba": 1.475613089496619e-07} {"commit": "62b55d2866f43a4e635147012dad8a9385c32483", "message": "Added nodes discovery\n", "proba": 2.76780099284224e-07} {"commit": "66c4e3585804c9334a04e66c8d67609bf8481e54", "message": "extract_features driver implementation", "proba": 1.8323570429856773e-06} {"commit": "ac97b584b21ec228db2f53c388987dbaa8b48bd4", "message": "Retrieve rtt usage data for user on home page\n", "proba": 2.1286244589191483e-07} {"commit": "8ed2e1638ce2a3a8c815e4c35c8af8763bdffcd2", "message": "use a hash for list of textures\n\n", "proba": 1.9382118807698134e-06} {"commit": "377c80d33ddc89c0f0f31ed340245c24004c0ea8", "message": "Remove useless 'pass' to make pylint happy\n", "proba": 1.6670392142259516e-05} {"commit": "46f203e4c6f018713cf6e8f83de64f888555e2e1", "message": "Allow hex datapath id's that begin with 0x.\n", "proba": 1.254912973536193e-07} {"commit": "bd4bce227b50718c3de207605609b2c4cd04958c", "message": "added keywords search\n", "proba": 2.968703256556182e-07} {"commit": "9b2e59d9471ec508a0812cfeafae1a91e55dbe95", "message": "[REM] stock_landed_costs: digits on monetary field", "proba": 7.4460012911004014e-06} {"commit": "01f7ccac82b213ee586de2b652fd07dd2371d429", "message": "less debugging\n\ngit-svn-id: d4fdfcd4de20a449196f78acc655f735742cd30d@1647 14d46d22-621c-0410-bb3d-6f67920f7d95\n", "proba": 1.6390079053962836e-06} {"commit": "ba3ca46244523553604cf2a4ebc45bbcfe260d8b", "message": "unicodedata: Decomposition records are written instead of codepoint records.\n", "proba": 2.274764483445324e-07} {"commit": "9f180a3d788dfb0e2635d75ee6533ba826ec0930", "message": "remove log\n", "proba": 1.3857714975529234e-06} {"commit": "5cd4994f368cb4486a48c6d8517046263b8e5dc7", "message": "\u4fee\u590d\u65e0\u6cd5\u4e0a\u4f20\u4e2d\u6587\u6587\u4ef6\u540d\u7684\u9519\u8bef\n", "proba": 8.732194146432448e-06} {"commit": "da51f9ddb44c79a9ca01c414b0027913ff02dbbd", "message": "pass _dropin to newly created Series\n\nif useing blist as dropin and calling get_slice(), it raises an\n'TypeError: Not valid data type' in __init__ of Series()\n", "proba": 2.406042767688632e-06} {"commit": "a8186f40216a794b4d7363ae0dd9f3cdd4898b9a", "message": "py2 + py3\n", "proba": 0.9999421834945679} {"commit": "7aef53a0dbc8d47d87fa8092b354919c12fc37ff", "message": "add __TABLE_NAME", "proba": 0.9997320771217346} {"commit": "f64628a4fae6807be3f838a4478567d257ed7ae4", "message": "sdk: Report to upstream transport before internal when configured\n", "proba": 1.3037524126957578e-07} {"commit": "0a61ccef96fddd8da97afa57ab19c31457739da2", "message": "Fix TextLayout.delete boxes\n\n\n\ngit-svn-id: d4fdfcd4de20a449196f78acc655f735742cd30d@2188 14d46d22-621c-0410-bb3d-6f67920f7d95\n", "proba": 7.837279554223642e-06} {"commit": "a3a4737051010a94832f7bceaa1fa414d7259da0", "message": "BaseTools: Fix a bug to correct SourceFileList\n\nWe met a case that use two microcode files in the Microcode.inf file,\none is .mcb file, another is .txt file. then it cause build failure\nbecause the SourceFileList include the .txt file's output file, while\nthis output file is still not be generated, so it cause\nGetFileDependency report failure.\n\nCc: Liming Gao <6480311aeeb4b006862f6d13ebabddc03f51e507@intel.com>\nContributed-under: TianoCore Contribution Agreement 1.1\nSigned-off-by: Yonghong Zhu <78d981fe33a016071af5222c56d5cf77f30fb0b2@intel.com>\nReviewed-by: Liming Gao <6480311aeeb4b006862f6d13ebabddc03f51e507@intel.com>\n", "proba": 0.00604464765638113} {"commit": "611015dbbd4591d7c6375a70591684e697254b76", "message": "Initializing attributes & cleanup\n", "proba": 1.4482097299151064e-07} {"commit": "add8aac6bfb480dcbcb46c97b883a8f5203226f0", "message": "Nicer task log report output\n", "proba": 6.899407162563875e-05} {"commit": "e5025091b8c070605435f4b65162d1d8b46e37db", "message": "harness: xeon_phi_boot test: make sure that we see xeon_phi.(\\d+).ready `nphi` times for test to succeed.\n\nSigned-off-by: Simon Gerber <13ba2e9de9ead0ea0b5f47504fb3a80bb9b1ee3b@inf.ethz.ch>\n", "proba": 1.7940514851488842e-07} {"commit": "347dc74c50a76379f5f3fef531c59f8f1171efbf", "message": "fix compileme of LeapFrog\n", "proba": 3.9569701471009466e-07} {"commit": "2094dbc74b23c8c069d6dd0a999a5036d6f9d014", "message": "[FIX] compute all parameters\n", "proba": 0.9998273253440857} {"commit": "0f4b6dd0c1a732d8084376396cbc89f63ee84cb7", "message": "settings: Fix an out-of-date comment on EVENT_LOG_DIR.\n", "proba": 1.2001547133877466e-07} {"commit": "3db85dc1af9749f475b186dd4f13f4c55afad28b", "message": "MAINT: docstring\n", "proba": 0.0005440711393021047} {"commit": "d8544130ee2ec67cc78c73de20e747f82dc6de70", "message": "Move content in column_dtypes to field metadata\n\nAdd enum constraint to timezone.\nAdd missing FERC 714 fields.\nAdd missing EIA fields.\nUpdate field types to match column_dtypes.\nDeprecate CUSTOMER_CLASSES, REVENUE_CLASSES, RELIABILITY_STANDARDS, TECH_CLASSES\nwith field enum constraint.\n", "proba": 1.0692318141991564e-07} {"commit": "18bdaba2e001c839ca9df86323ec186d9d1d25f6", "message": "remove unused var\n", "proba": 1.6420915471826447e-06} {"commit": "335ff932395a2aad72bcca065c5eee0c3f4febb9", "message": "Refactor mail send\n", "proba": 3.011825583598693e-06} {"commit": "15b3ff776edb7448a2f45c2cbe4118474680c7e7", "message": "Fix valign\n\n--HG--\nextra : convert_revision : svn%3A14d46d22-621c-0410-bb3d-6f67920f7d95/trunk%401813\n", "proba": 4.997658606953337e-07} {"commit": "c81005d546ca5b9f53d20e61da1a88aa81d14fda", "message": "Changed to ID based query\n\nSigned-off-by: John Cornwell \n", "proba": 2.3580473396123125e-07} {"commit": "a4706278a2beed563111265354824f0241e9718f", "message": "fix bug float/int conversion\n", "proba": 5.920941248405143e-07} {"commit": "3d45c29a9bcb1cddb021129ab8c760e43151d683", "message": "FIX multiple input blobs\n", "proba": 5.197835434955778e-06} {"commit": "6d53b8102c54d245702a283094581b60c52fe53c", "message": "l10n_es_ticketbai 14.0.2.5.2\n", "proba": 2.3110726488084765e-06} {"commit": "86c6e10630dcc2c95aaa824d1c88d2d75bd5cbf6", "message": "Add __repr__ for _Val\n", "proba": 0.9999696016311646} {"commit": "06eaffad891056ee58b90f76d589cb9ac0267423", "message": "Refactor reward network: make docstrings Google style, factor out _build_theta_network, make hidden units configurable\n", "proba": 6.603598876608885e-07} {"commit": "0e15344e2c9767c6e7287ef2d9b5059519423b3d", "message": "Fix group update for valign/halign property change.\n\n\n\ngit-svn-id: d4fdfcd4de20a449196f78acc655f735742cd30d@1823 14d46d22-621c-0410-bb3d-6f67920f7d95\n", "proba": 1.6163742202479625e-06} {"commit": "3e05af54afbaf010465a55c92f04d7f92496280a", "message": "Encode the content of the report when the ReportSkipped exception is raised. (#30)\n\n", "proba": 0.9994729161262512} {"commit": "406e3859ed8d9cc2a1713b037cf87b75523bf50b", "message": "updated for new bind syntax\n", "proba": 2.3863165665716224e-07} {"commit": "cb3c9a82b30be56eab88c391f8e0471649527a97", "message": "qubes/tests: fix qrexec policy context\n\nNow it removes policy file if it was created while entering the context.\n", "proba": 1.095949926366302e-07} {"commit": "550e56ad38567e38352e3d008e45c1ad680d2daa", "message": "check for otu in representatives sequence names when creating blast links\n", "proba": 1.2736602172935818e-07} {"commit": "f20dcdd6511894be1329450c6a0c055d33391904", "message": "reorganized trigger chain\n", "proba": 1.6826285218485282e-06} {"commit": "4f9323b6ba096ae8fb09dc80fc2c8d4ae24b8d61", "message": "Update version\n", "proba": 4.1292173591500614e-07} {"commit": "a858c3299bed0d25be198670d6bb40c59c0c6f0d", "message": "whole 'workflow' now works on the server - it is blocking itself on localhost\n", "proba": 1.8032611137641652e-07} {"commit": "d75cb201cf3bc1da610342fac4e78d186b5a405f", "message": "* li-el fix to new admin provisional command check-instl-folder-integrity\n", "proba": 1.2858244247127004e-07} {"commit": "dd7ef2bb3b4e7f1dbbdcd3072782a272ae2a2c22", "message": "Include the exploration variable and the maximum simulation actions\n\nin the extras returned by get_action.\n", "proba": 1.0098405311964598e-07} {"commit": "45411d1df9482bae5e8896f6caa281dc58663d96", "message": "assume cloud sql instance name matches app id\n", "proba": 0.9996534585952759} {"commit": "93f9ce0d25793f3f7046ff287e1363214beff240", "message": "ENH add \"predict_latent\" function to LatentSSVM\n", "proba": 0.005652295425534248} {"commit": "00a81b75a31dbd31a44faac053fd9d9cecd19d5e", "message": "qubespolicy: fix import order\n", "proba": 6.632442364207236e-07} {"commit": "d5a699a87c697c8ce3c90093bebd817bb5e65e9a", "message": "Added backrefs to ChemGeneIxn table\n", "proba": 1.3682283395155537e-07} {"commit": "244c45255f1b0c398ce5661ccce0c8e75bbe5bd9", "message": "Checkpoint 2009-01-29 12:34\n - Use eval instead of a JSON lib to parse input. Please don't put arbitrary\n Python constructs into build files.\n - Eliminate required arguments:\n - Allow a platform-specific default for -f (format).\n - Find build files in the current directory if none are specified.\n\n", "proba": 1.301589520608104e-07} {"commit": "06ddef41655e9eb85bbeb6655f5d63b6751b4095", "message": "add transposition\n", "proba": 0.9999861717224121} {"commit": "d691791164250d15ccd814f7d789738d5735415f", "message": "representation.TileCoding: Add optional offset arg\n\n simply offsetting each dimension by the same increment is known not\n to be a good idea\n \u2014Sutton, Barto: Reinforcement Learning. An Introduction. Draft of\n 2nd ed.\n\nDefying this advice, TileCoding prescribed a constant offset, even\nthough Tiles allows custom offsets. Add an option to TileCoding, so that\nusers can do the right thing.\n", "proba": 1.0119499194161108e-07} {"commit": "6c5ca535c69225115c577ae4bedbfd6f3088be75", "message": "Create batch_upload_files.py", "proba": 3.4810191209544428e-06} {"commit": "6bf9acb90fcb510223cadc1f41431ea5f57f0ca1", "message": "Fix import from core to mysql provider in mysql example DAG (#13060)\n\n", "proba": 1.0771924507935182e-07} {"commit": "3ac0ba942b22aae42a3450eea036bca4febba431", "message": "fixing conflict\n", "proba": 3.6704345802718308e-06} {"commit": "2d2af7b19f7add3797f83527b57b8f3bce3ac8ea", "message": "Commented out assertions in SRLS - to be checked later.\n", "proba": 1.0489110024991533e-07} {"commit": "671c7d190f04ef624c1f9bfb0fe202ffc226e834", "message": "less printing\n", "proba": 1.7480922451795777e-06} {"commit": "cf87ca49b6562d077bf4b89112cf31a7d939b8ea", "message": "Removed print statements\n", "proba": 7.278171779034892e-06} {"commit": "5f0937cfe6838c4225166c3ce5b3a5676d69727a", "message": "Added billing function\n", "proba": 1.642569458226717e-07} {"commit": "6dd260e1aba2478914dfb16130ee2e90e30cd294", "message": "Added default check for mbed_app.json\n", "proba": 4.031275864235795e-07} {"commit": "dafd2f6a6297514649a4930b33385c0e3b3b690f", "message": "added observe funtion to agent interface\n", "proba": 1.6733457641748828e-07} {"commit": "c8a0b913b211263daeeadf89075e69fac8cdfb75", "message": "Fix statlog\n\n\ngit-svn-id: 81e381228600e5752b80483efd2b45b26c451ea2@3977 e27351fd-9f3e-4f54-a53b-843176b1656c\n", "proba": 0.9981491565704346} {"commit": "1154c12b3389c3098ee8755887f785da43666ec4", "message": "don't expose fields for GET and DELETE - leaving room for parameters like e.g. filter or paginate\n", "proba": 1.5411643516927143e-07} {"commit": "dbb6679dd12a7d9bb720e3a58b10353b6732e3cf", "message": "disable drill demo startup code\n", "proba": 3.5897127759199066e-07} {"commit": "b4ca6c95b60230ad604f8b89440fef18cfaa3a8c", "message": "Meet @sigmavirus24's demanding stylistic criteria.\n", "proba": 1.165970857641696e-07} {"commit": "0db044a454b53e7c60c3cf0061016dcbea2bf2eb", "message": "added default value\n", "proba": 1.428441350981302e-06} {"commit": "9c2c57dd8cb2c09f6d002269ce1449a9495ad2a0", "message": "Update histogram.py\n", "proba": 2.207012357757776e-06} {"commit": "0d68975f3738d416319137bfed9fadbf576e1360", "message": "Get rid of debugging stuff\n", "proba": 1.5441229095358722e-07} {"commit": "1db01d9361a5f5e5c8a4c2d9e0fe02d60218e91d", "message": "Fix stream API\n", "proba": 6.532109182444401e-06} {"commit": "d4c7bdbebc9656e7bce039a99e5690d9823dbd1f", "message": "DEVEX-965 Fix file upload issue using api proxy in Python 3 environment (#459)\n\n", "proba": 1.025434102075451e-07} {"commit": "5540706c4079c502566c1f1c42d69c271aa78843", "message": "increased question set title length\n", "proba": 0.0017144130542874336} {"commit": "70f9da1cbacd6da2241fc05e2eeedca078b1391d", "message": "Minor code cleanup.\n", "proba": 1.328681946688448e-07} {"commit": "08c71c413ce8ca1d651659f6d7d94e1179252dac", "message": "default to standard marketplace if all other values are missing\n", "proba": 4.0874945739233226e-07} {"commit": "31cfee331c4593a0eef2a22e760aa25e5ca10da4", "message": "Bug fix in CoordinateSystem\n", "proba": 2.320535230637688e-07} {"commit": "3819edaa7530da0fbca690d1c2031710829720a7", "message": "Remove unused variable\n", "proba": 1.4636463674833067e-05} {"commit": "0df787d0f56a0308569c14262498807ff6bb8f8d", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "caa038ea99e62dab3fbeb458c1ee3f66ee2e9efd", "message": "tmp limit=5000\n", "proba": 0.000639046193100512} {"commit": "3ec801fd0b07ecac1cac0ad4b0f75ad24226ddf2", "message": "Filter out third-party deprecation warnings,\n\nwhich might be the cause of tests failing on Travis\n\n(cherry picked from commit aaec3d3792ca700439bbf367266d46f55f135cee)\n", "proba": 1.2332847063589725e-06} {"commit": "640a129eecc01aad7b290bcfb29f3a88acb3fd23", "message": "change docstrings for rand_ket and haar\n", "proba": 2.0098327979667374e-07} {"commit": "c094b75969debe7131cb7b582abea76ed3f4d173", "message": "Update feffio.\n", "proba": 1.3630761941385572e-07} {"commit": "cc1638a1af8e223eb26d644e74791beb1116193a", "message": "Remove renewer tests\n", "proba": 1.9689038310843898e-07} {"commit": "a595e42910351aa2113a1c48d54695db27024837", "message": "Retrying in case of ValidationError failure.\n", "proba": 1.3958478461972845e-07} {"commit": "a9847b18cdbc575683c1a1006c071766d1e5c1c6", "message": "Remove print statement\n", "proba": 0.0070150988176465034} {"commit": "f708ab16383762ec868e9f46307a7a86cd463d09", "message": "Updated to version 1.0.2.\n", "proba": 1.0934527239214731e-07} {"commit": "430d4415cde7cedcd56a0383fcc74f8b25f1ec4d", "message": "Allow dummy tasks.\n", "proba": 2.0658186258515343e-05} {"commit": "1d1a57b08f90f85d53d2ea4734bcaeaea96b93eb", "message": "Fix ros_flask_spin()\n", "proba": 0.0008225536439567804} {"commit": "42d50f61e1f13439032593e422ba8544a32d4f37", "message": "Fix service list in verify_tempest_config\n\nThis commit updates the service list for verify_tempest_config. The\nlist was not updated to include new options for marconi and trove. It\nalso wasn't updated for the sahara rename.\n\nPartially implements bp config-verification\n\nChange-Id: I00500e104dda34098cf445f4bbd522ea843fcabf\n", "proba": 1.4642389487562468e-06} {"commit": "b288dad887f226a39e80e772f772f9b00ca177cf", "message": "Fix problem with lattice_rec representation.\n\n\nFormer-commit-id: 349b56443cd7cfb34e3ce71e620a28d0dc3ee797 [formerly d30d8c1c86c317433f95dd44a5e8fce58dd36130]\nFormer-commit-id: 27084f72b2f9c4d44eaca3efb55977b2fe00d466", "proba": 0.999998927116394} {"commit": "ba15b2fee673f76c2cff2f193d5b4a19029b501f", "message": "[googledrive] report download page errors(closes #28005)\n", "proba": 1.144282890663817e-07} {"commit": "569989d5394d3eef0972701bf84438e46c5a2a19", "message": "Update sds_detect.py", "proba": 6.336680939966755e-07} {"commit": "e9f657265292ef4cc6f3ffdef2373558bc3f5910", "message": "Raise NotImplementedError for Integer#downto with no block.\n", "proba": 1.1107186992376228e-07} {"commit": "9c14e76497aa9c290054c053f177e7c08fb7cc53", "message": "add method to get automatic divisions for a given k-point density\n\n\nFormer-commit-id: afc864822d45910a4a7df9c44868daa0c6344001 [formerly 19cf0de6cbf90b5cb54c0db6e0033d9354fb19c0]\nFormer-commit-id: 4525769d91f57a98101b8ecc592fd53227eeb48f", "proba": 0.9999945163726807} {"commit": "bbc8cdb60991ab0f7b57ec0e72cb5771e3a160dc", "message": "Allow the unconditional next_frame_glow model to train on random frames from the video. Previously, the unconditional model used to support only \"hparams.num_input_frames=1\" and \"hparams.num_target_frames=1\" and train on the first frame in this instance. This is limiting in the scenario where there the dataset consists of a small number of long videos, (eg KTH) because datapoints become highly correltaed\n\nPiperOrigin-RevId: 221190817\n", "proba": 1.6256146409432404e-05} {"commit": "2e3f8e7498079d1f5346af1d184c9d80b2071417", "message": "[TOPI] Fix for pooling (#673)\n\n", "proba": 1.1613165895596467e-07} {"commit": "e65342052ed7501368668fecc5e89092ce6b0b85", "message": "Add possibility to resolve partial template specializations.\n\nExample: The class\n\n```\ntemplate \nclass Specialization {};\n```\n\ncan be accessed via\n\n```\n.. doxygenclass:: Specialization< T * >\n```\n\nThe white-spaces are necessary. This changeset addresses issue #113 but is far\nfrom being complete. Still, the argument of sphinx directives must match\nexactly the doxygen XML node name including white-spaces. A better solution\nis needed for that.\n", "proba": 3.620849611252197e-07} {"commit": "aa620337f6662dbdbdc5a79aa2e8553e0dc43aff", "message": "Updated distribution docstrings for new docs\n", "proba": 1.610230953019709e-07} {"commit": "67ab6fabefc50aa9e68424a0040622edda2afb44", "message": "- improved x and y axis labels: now the default position will never overlap with the tick labels\n\ngit-svn-id: 83a0274dba4329d458142e4079227af35a786d9d@120 2f3f69f2-b874-4715-96d5-35985bcb53a6\n", "proba": 1.286159658775432e-06} {"commit": "ed37af55641a4de2d3e1b9d1a0bda6ecc91bdfe1", "message": "Added beginning of CFProjectionPlotGroupSaver. Removed old, commented-out code. This version isn't suitable for anyone to use.\n\n", "proba": 9.963846281380029e-08} {"commit": "cb1c1d3f8df92b35bbda6af03607c2067a0ce5a4", "message": "strip info\n", "proba": 2.907415819208836e-07} {"commit": "e9b579c6c10c6447c969af347cbbfd021fd8c423", "message": "Capture a reference to TF_DeleteGraph in ScopedTFGraph.\n\nThis enables us to free the underlying TF_Graph object at process shutdown, and therefore satifies leak checkers.\n\nPiperOrigin-RevId: 285043863\nChange-Id: I6b71274ee806a16bf6df1096abc6ef762ba6e6de\n", "proba": 2.324822162336204e-06} {"commit": "953c1b1850d411fad8c557f8ea1d4b488eef46b4", "message": "Properly handle cases in which both reads in a pair map to the same\ncoordinate.\n\nIf paired-end sequencing is used and a fragment has length less than\nor equal to the read length, then both reads from that fragment should\nmap to the same coordinate. Previously, filter_remapped_reads.py skipped\nover remapped pairs in which both reads map to the same location,\nleading the original SNP-overlapping reads to be discarded. Now such\npairs should be properly handled.\n", "proba": 3.2493073831574293e-07} {"commit": "5c41d328d99afea072f7be2540361705c6ed9fdf", "message": "In web.browser, made get and post methods available for external use\n", "proba": 1.463281051883314e-07} {"commit": "c6953f9a41c959aeb041c6a37d419bf1dde9568d", "message": "config,columns etc\n", "proba": 2.3109063818083087e-07} {"commit": "ef764ee311bbb94361a7e80fbcf9afa123d515e2", "message": "scrapyd: add extra_sources consturctor argument, and also read scrapyd configuratoin from current project's scrapy.cfg file\n", "proba": 1.5306358136513154e-07} {"commit": "28eed07b2db64118ca9679d482833736f7e9fb85", "message": "bh107: fixed missing `re` import in setup.py\n", "proba": 1.674370508908396e-07} {"commit": "187387b11bd5c2589e014de9669af68e000b5393", "message": "TYPO IN COMMENTS: timout => timeout\n\nJust a typo in the \"settings_default.py\" comments....", "proba": 1.0452701815211185e-07} {"commit": "c01edff88c4b2451cee5d7f44f1e3b20fc8c287a", "message": "fixed indentation\n", "proba": 1.1986932122454164e-06} {"commit": "db20412ce1d3f01087dd3f7322b1324d91d2e800", "message": "Instrument: Add helper functions to pack and range-check signed and unsigned fields in the register def maps\n", "proba": 1.5299775668609072e-07} {"commit": "34c1be5d0f7c827758edaf03185308e5d02c3e0b", "message": "changed Topsy metric descriptions.\n\nWe don't need the 'powered by topsy' at the metric level any more since it's at the provider level.\n", "proba": 1.0932691907328262e-07} {"commit": "247fd59bce8ac5d2294bbbdc951db98fbb8c8bf5", "message": "Infile in mzidplus is mzid tsv\n", "proba": 0.9999520778656006} {"commit": "497c5d9bbe09eb2a8a0d4901e8a0ebfc7d2fc0c9", "message": "Changed settings_default to define DEFAULT_HOME as \"#2\" instead of just \"2\" to match the enforced way of using dbrefs.\n", "proba": 1.110233682766193e-07} {"commit": "dc09bf6e3e6d3ac36c36b2c2c16c6746c9700e32", "message": "fix documentation of tf.switch outputs (#8599)\n\n", "proba": 1.1879033223749502e-07} {"commit": "9b68cb51ee798e3be6cade9ede717f9ca21d4cc7", "message": "clarify todo\n", "proba": 0.00032615457894280553} {"commit": "468a1a76cfa1ef4c66941acc380da43e40ce9f1b", "message": "Adding support for comments: lines beginning with #\n", "proba": 1.4209099674644676e-07} {"commit": "84d7e8854f1bc5d918983c239e33cc849cda77c4", "message": "Use autocommit\n\n_execute, our own function to execute SQL statements always performed\ncommit for us. We are now switching to using autocommit so it's possible\nto perform a BEGIN / COMMIT to have longer running transactions.\n", "proba": 1.1921660814095958e-07} {"commit": "a35abb18ba4ccc5811852bd093f46ac5a4aa692e", "message": "Ignore invalid addresses for HEX files only\n", "proba": 1.558152291636361e-07} {"commit": "2c784d058aabb491a2c4c38e6587208d8bdbc36f", "message": "update\n", "proba": 7.755617730254016e-07} {"commit": "31e2144fe0fbbad1e1cee82835a128577beda4f0", "message": "Add operator to interpretation from napd\n\nThe result interpretation part from smart_search_prefix now includes\nwhat operator was used to match on a property.\n\nPart of #26\n", "proba": 1.400365192694153e-07} {"commit": "2b719af6a7fabc91d1a1305a7b1e07026073b15a", "message": "optionally use the versioned-epoch and version-id\n\nSigned-off-by: Alfredo Deza <3ae498813ac9b6992b3bb72690656738fc9b4e19@inktank.com>\n", "proba": 1.1652616649371339e-07} {"commit": "1e8cc26f471beecd974e6ce3edb970df16c1aaef", "message": "Ensure output of extract_information have 'sente' & 'gote' key\n", "proba": 0.9999994039535522} {"commit": "6cdf54c06732e005a2eb05330d3615f2c933a662", "message": "wrong return value\n", "proba": 0.0004149125306867063} {"commit": "668bb54507128a5d37c49d520f66883ccd6d26e9", "message": "Zadarapy: Support ports option in containers\n\nhttps://github.com/zadarastorage/Zadara-QA/issues/171\n\nChange-Id: Id90286388960f16416ba4dbe51c52972ad47ec1e\n", "proba": 2.827655407600105e-07} {"commit": "db217a7e813ea3a1ebc66b0cef251acf79a70a9a", "message": "Only publish ContainerConfigModifiedEvents if the container is connected\n", "proba": 1.408129719493445e-07} {"commit": "5a26619cf14b751438f0c42aca8159862199197b", "message": "docstrings\n", "proba": 1.7234823417311418e-06} {"commit": "1ca91c766942c75bc352179fc74dd16a3a740224", "message": "Python 2.6 Regex fix\n", "proba": 4.556221142593131e-07} {"commit": "82e14a85a779995ddf7dee9eb6f10799e352dc91", "message": "Fixed doctest to work on Python 2.6\n", "proba": 1.928458885913642e-07} {"commit": "7e2deb388fbea4d115010b9501f018ab8bf1554b", "message": "Add new routes", "proba": 5.784356744698016e-06} {"commit": "71cef8e20fd705ad3bebfc73b52a47231abc5add", "message": "Started consumer/delivery access\n", "proba": 1.217689060695193e-07} {"commit": "f8b8f9cb4a499ce9728ceae792f746e8bbd6682d", "message": "check ks values in setter\n", "proba": 5.900423047933145e-07} {"commit": "f325b68d31d279f0e1a7b096e7d1d482840e3599", "message": "add docstring\n", "proba": 4.840926521865185e-06} {"commit": "f971375acfd3ad87b60e9cc7ca0b5c6005a4d831", "message": "Use a descriptor class to create class properties\n", "proba": 8.836134952616703e-07} {"commit": "34dbae4da1302b807781ab20c0bda266e8f2f618", "message": "Fix JSON encoding of lazy strings (used by Babel)\n", "proba": 1.9398155927774496e-05} {"commit": "9910442292a1bb1da10536d42aff1c196670ee8a", "message": "Add transfers to transaction\n", "proba": 7.389884331132635e-07} {"commit": "6308a8ae17e30f2372d79202c733cfc340592f78", "message": "more comment\n", "proba": 1.162442373470185e-07} {"commit": "221a32441bda099c484dcb4eaf1818447a54cdfc", "message": "Update permanent failure error name", "proba": 4.72107274163136e-07} {"commit": "988d38ba2d59d42671d63a8e97b7f3d9d53306e1", "message": "bug fixes\n", "proba": 8.304810990011902e-07} {"commit": "271450cee42435db2b26e034d04f8ce159227d4f", "message": "fix typo\n", "proba": 0.9999909400939941} {"commit": "a244aa8aa35fbca333801482f7b20e6ea7676471", "message": "Bad English\n", "proba": 2.3012241854303284e-06} {"commit": "4af7229ad14dc795eac81e1341d11e90612d3b8d", "message": "fixup\n", "proba": 2.5732690573931905e-06} {"commit": "1932aba9dc3c904bb7b5767236a055013989abbb", "message": "Added __init__ to facilitate import of important functions and decorators.\n", "proba": 1.062510719407328e-07} {"commit": "9b607acf19e80967220c712a29b36fe6346f53a4", "message": "Change exception catch clause to match rest of codebase\n", "proba": 2.6432084609950834e-07} {"commit": "10f531729b44afc9c52b64c104fc86736af9aa93", "message": "added before run\n", "proba": 1.9395196204641252e-07} {"commit": "0a69704403dea0d446bf0355ceb06351a192b0c9", "message": "debianize: check also ./overrides for customizations\n", "proba": 2.1810451755754912e-07} {"commit": "2a4db8645ac6617feb64a9b2d9596dcf3f3b415f", "message": "better routes\n", "proba": 6.032319652149454e-05} {"commit": "00a2ddafa2dd274d6768203de21a93bfa9edbe5d", "message": "Normalize dev version nbr\n", "proba": 4.627062298823148e-05} {"commit": "9bc745313823174dbe070e87a8b1ea89d9f1ddbc", "message": "Windows exe builder defaults so that no command line arguments are required for ingres_setup.py\n", "proba": 4.2711866399258724e-07} {"commit": "a38483e4ddf67618344d298e8b5c43f95463a490", "message": "Remove redundant nl2br template filter\n", "proba": 4.999994303034327e-07} {"commit": "e0eebfe9d983cccc5cc20ccb44adf86a6364a9d9", "message": "new apis, improvements to authentication, documentation\n", "proba": 1.22624271625682e-07} {"commit": "432fda9c7262c38af291d7aff9979b067a405f6d", "message": "ONE MORE LOGGING THING\n", "proba": 1.8374126398157387e-07} {"commit": "78198803452a203d19cd55f4612fcf2ac7d9a09c", "message": "Improved Twitter Tests\n\nAdded more randomness\n\nSigned-off-by: Kim Thoenen \n", "proba": 1.1762335105913735e-07} {"commit": "2ebecb6a76278e55277a0234ab1bc78614b2704d", "message": "converted csv2rdf to six\n", "proba": 0.9999992847442627} {"commit": "8c57f6eea2caf49cc408251c9981517d69bd0a0c", "message": "Seeded with slightly more propoer modules\n", "proba": 1.1529837706802937e-07} {"commit": "335661a7e05b317b8ca1fdb88282511e20adffe9", "message": "[gamma.util] removed import of osgeo.ogr\n", "proba": 2.5453132934671885e-07} {"commit": "f8c221e16f102f30334f177c026017ebdcf644a0", "message": "Remove old comment.\n", "proba": 1.2609568500465684e-07} {"commit": "0cb2d71aac29ce3c646c55d419cb350a77c0caed", "message": "Uncommenting the line 'code = code.replace('**', '^')' in\n'sympy_to_muparser' since it turns out that BNG does NOT do this\nsubstitution internally.", "proba": 2.04439902518061e-06} {"commit": "9bea1f46c7a557817bffbd42347890ec85d97494", "message": "zerver/views/webhooks/bitbucket2.py: Fix line with length greater than 120.\n", "proba": 1.4271272164023685e-07} {"commit": "965b613c634599303a8a26cce18de7ea00d33fc8", "message": "Added get_project and project_id to ProjectProperties\n", "proba": 1.839920145130236e-07} {"commit": "4cbd08ca28dc13dbb804eb204080db652a82f795", "message": "formatting\n", "proba": 1.1576831639104057e-05} {"commit": "aed5b860a2306c8709be432f033066217b1bffc6", "message": "relative import\n", "proba": 9.116640740103321e-07} {"commit": "2675da493f3fe871d62afff97d0565cd49b03cfe", "message": "fixed test\n", "proba": 8.067889893936808e-07} {"commit": "8f6e8cf527165028efdb9dc1843b369128cb5aa1", "message": "Improve data logging for QVariant\n\nOtherwise we get simple QVariant repr's in the logging on PyQt4 which\ndoesn't make much sense.\n", "proba": 1.1049016990227756e-07} {"commit": "c9ac060c71ce0cc230697d1237bd1fe94557ff38", "message": "Changes to utemplate to enable loader to be non-filesystem based\n", "proba": 2.0440623416106973e-07} {"commit": "8a764132f601f9f089624353185a467a7e7cbc5b", "message": "document element family choices better\n", "proba": 3.17935132443381e-07} {"commit": "176a4a121dbfe360ba86c114256cd741fa0311a0", "message": "Equilibrate oxidizer stream for diffusion flames\n", "proba": 1.7371242222452565e-07} {"commit": "d68040a79cd2c4b0c6a63fce19fe9490334c1d9b", "message": "updating maze\n", "proba": 6.90973593009403e-07} {"commit": "30fdda872486ba941a20fe0ac442a3e6b9e4a0fb", "message": "Fix #32. (#33)\n\nThis bug was caused by a subtle change in the behavior of isel between\r\nxarray 0.16 and 0.17. The updated version is compatible with both old\r\nand new versions of xarray.", "proba": 1.0645108261542191e-07} {"commit": "13757eee3bce374be6bfebbf03fae7b3a57c70db", "message": "Removing extra {}s that got lost in restructuring a CL.\n\n\nReview URL: http://codereview.chromium.org/42195\n\ngit-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@11690 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 3.272086178185418e-05} {"commit": "9af124e10ff71f8b179daeb53f5642902fb56043", "message": "Keep reference to events table per thread\n\nWhen multi-threading, skip the default session in boto3 and create\na session per thread.\n", "proba": 1.0053741306137454e-07} {"commit": "3e3f3c4c133cfa067337da126ddb03c36dcccb9e", "message": "STY: PEP8/pyflakes clean btlaunchmanycurses\n", "proba": 3.8215941344788007e-07} {"commit": "97e6fce2ed0639c6eaf9f9a3efe25be695e7908e", "message": "improve robustness of softmax\n", "proba": 3.747670405118697e-07} {"commit": "bb7feebe159633729c3f88f1ba4a7f17d7fe3694", "message": "Sort out python path\n", "proba": 0.002801875350996852} {"commit": "61ca56422b38cb3807ad488e81532b601c89f2d4", "message": "cmake: Use find_library() on bare library names in cmake dependencies\n\nConvert bare library names to a dependency linker argument using\nfind_library(), rather than hardcoding the MSVC transformation.\n", "proba": 1.1058309610234573e-06} {"commit": "7ab2deb5a54924942b194cdca85327670e5a1dc4", "message": "Think I fixed the unicode issue (issue #3)\n", "proba": 1.893273946507179e-07} {"commit": "8a8123a021ca0b570483473b9fe65511cee71322", "message": "Correctly set User-Agent header\n", "proba": 3.5417600884102285e-05} {"commit": "16af3b34aa8f0a45e324509d42aa451f0d14da5c", "message": "Use threading.Lock instead of multiprocessing.Lock\n", "proba": 2.026586571446387e-06} {"commit": "87312d68a1d9992be6588ad5547a1a0f0bf554f5", "message": "Minor string formatting change\n", "proba": 6.903123335177952e-07} {"commit": "b9953dd005d45f0a7dcd1020090f54e642ee677b", "message": "Command to migrate data to ft_billing\n", "proba": 4.365862196209491e-07} {"commit": "a3035ad58f1a0e87bb3ee8798a9792f378c53b7f", "message": "Removed old code.\n", "proba": 1.3844585282640764e-06} {"commit": "a680997ebc72319558823d24ab72780c6c3ccaa7", "message": "[AC-5993] reworked global_operations_manager_check to use Clearance manager method\n", "proba": 1.4805269188400416e-07} {"commit": "c1ea3afb516c204925259f0928dfb17d0fa89621", "message": "Spark 1162 Implemented takeOrdered in pyspark.\n\nSince python does not have a library for max heap and usual tricks like inverting values etc.. does not work for all cases.\n\nWe have our own implementation of max heap.\n\nAuthor: Prashant Sharma \n\nCloses #97 from ScrapCodes/SPARK-1162/pyspark-top-takeOrdered2 and squashes the following commits:\n\n35f86ba [Prashant Sharma] code review\n2b1124d [Prashant Sharma] fixed tests\ne8a08e2 [Prashant Sharma] Code review comments.\n49e6ba7 [Prashant Sharma] SPARK-1162 added takeOrdered to pyspark\n", "proba": 1.1806675956904655e-06} {"commit": "d6336055ff37851fdbeecf40ed7ac1aa99226abc", "message": "qibuild.toc: complain when two projects have the same name\n\nChange-Id: Ide557d612a2f8a4a014dbe97768818f9f17469f2\n", "proba": 8.011612408154178e-06} {"commit": "cb31e145d013e2a05b3a2414424cfdf7768f4a28", "message": "Update robotserver.py", "proba": 7.741615490886034e-07} {"commit": "7d0fd65b3be0a4c58d6d7f5b999defcee7504956", "message": "Fix uri msg to Li's taste.\n", "proba": 2.692615055366332e-07} {"commit": "4d367f6530d766cfc081407ec36277ac78218cf1", "message": "Support i18n on Py3k\n", "proba": 1.555340389813864e-07} {"commit": "3836f0a98414e6aeb6fe0df3ff096639005d5fd5", "message": "no synesthesia mode for these files\n\nThey become either unreadable because they are just normal text, or they\nintefere with highlighting, like in 'ogre'.\n", "proba": 1.3086965111597237e-07} {"commit": "e950c9018a40d7719b09a0ea6af7d62968376524", "message": "replace old hp occurences to wwdata\n", "proba": 0.9999550580978394} {"commit": "f4159257722040acd418f7cb79d8de43c69dd909", "message": "Added check vector in rect\n", "proba": 1.767794657325794e-07} {"commit": "4db65b0b5c31e5fc971f40f41051023aecc22b99", "message": "[cli] Fix \"AttributeError\" of pytest arguments (#1505)\n\n", "proba": 1.2023301110275497e-07} {"commit": "f21b0e5170e7a24334515b5f52e7173e19a3b444", "message": "fixed misc/empty_pytest.py path\n", "proba": 9.776269962458173e-07} {"commit": "4afa41356317074d43f7c6e9dd948203f9798360", "message": "remove redundant pause that leaves it paused\n", "proba": 9.45927677094005e-05} {"commit": "800a85cdd9bb9f4e97780e22ed6998bf7c91263d", "message": "fix: check if url is existing\n", "proba": 1.3814745216222946e-05} {"commit": "33a8f194cc2d867a0b40ea14a561220cb7aad55b", "message": "export virtual columns, and strings\n", "proba": 4.874132741861104e-07} {"commit": "296c82c87017d2e7efc52ac2006cf9728eb5167f", "message": "Change options\n", "proba": 2.846540155587718e-06} {"commit": "ba9fcb87acadbe25ade87bc4c58e2b887d131ef3", "message": "Fixed issue in feedretriver saving format\n", "proba": 1.640448346051926e-07} {"commit": "1c907c9dd53f4f3aadf593bd674d12f5f75534bd", "message": "Do not consider uptime\n", "proba": 2.5396980163350236e-06} {"commit": "2723c42da1272837682ceac91f5a11b0cfaed81b", "message": "fix the pid change bug\n", "proba": 1.0909045613516355e-06} {"commit": "8afea7ea6d47695b5e41ed892285ec14b30f751e", "message": "REFACTOR : Removed custom exception for python build.\n", "proba": 1.0164571762061314e-07} {"commit": "476b2dcde90f26f835ff063d4214e3a99e6d1ed1", "message": "played with submitting len function but it is not reliably schedule\n", "proba": 1.6377612155338284e-07} {"commit": "d39511c61a6afe968e8cc3e5fe506ad9cc322df4", "message": "just fixing an internal test name, but I noticed this got an NPE when I was running . Surprised Tom hasn't \"notest\"'ed it yet\n10:45:52.441 # Session ERRR WATER: env.remove_and_unlock() failed\n+ java.lang.NullPointerException\n+ at water.exec.Env.allAlive(Env.java:248)\n+ at water.exec.Env.popAry(Env.java:189)\n+ at water.exec.Env.remove_and_unlock(Env.java:335)\n", "proba": 7.2845114118536e-06} {"commit": "d83819ea0b223e17354bb35907fefddb7f2c5471", "message": "Fix code formatting\n", "proba": 0.9704993367195129} {"commit": "e812791b42c16a809e9913d682562804f5335be6", "message": "Add an `__all__` array to expose the public objects of the pytx module\n", "proba": 6.378013495123014e-06} {"commit": "510bf10d51536cbe6f674ebaaf7b43fb1a75b3db", "message": "fixed TypeError in django example (#56)\n\n'qqtotalparts' defaults to null in the javascript", "proba": 1.7240760996628524e-07} {"commit": "24ae7ec38fb87152386159e0894849db0bb85075", "message": "Added\n- `get_device_stat()` method to get current state & configuration of device\n- `get_switch_port_overrides()` method to retrieve the overrides applied to the given Switch\n- `switch_port_power_off()` to turn off PoE for a specific Switch Port\n- `switch_port_power_on()` to turn on PoE for a specific Switch Port\n- Namespaced logger support\n", "proba": 5.221056653681444e-06} {"commit": "da3ac33808dd79f5e7e833a51cc6852e1eafc2ae", "message": "Update nvplib to use HTTP constants\n\nChange-Id: I5afe0796de2387566705d6669834d6bfac87ee8d\n", "proba": 5.409773393694195e-07} {"commit": "9e5556adb482d7b96e13b937695cb5dd75282765", "message": "Removed import", "proba": 2.3081334177277313e-07} {"commit": "2c6b9b4a9c639fd2e9c40201d2794bb4bc005013", "message": "Added Volume\n", "proba": 2.6533183472565725e-07} {"commit": "f99387ea89855613f0fd28110053fe17c836ed49", "message": "fix bug in debugging code \n", "proba": 2.544701658280246e-07} {"commit": "98b79fcbee28171874b52ef9a794a12a718bbc89", "message": "Improvements to page saving and throttling\n\nhttps://mediawiki.org/wiki/Special:Code/pywikipedia/5586\n", "proba": 1.9259299222085247e-07} {"commit": "00b2a919c3df09cf67c95469010165f0d2b74edf", "message": "Drop Virtual webcam check script as moved into buildbot scripts.\n\nHaving this script being located in the WebRTC repo doesn't make sense\nsince it has no connection to the source code.\nUpdating this script should apply to all build configurations and since\nthis script will be used for Chromium builders, we'll end up with having\nto wait for a new WebRTC revision to be rolled in DEPS before it's updated.\n\nTEST=none\nBUG=none\nTBR=phoglund\n\nReview URL: https://webrtc-codereview.appspot.com/1444006\n\nCr-Mirrored-From: https://chromium.googlesource.com/external/webrtc\nCr-Mirrored-Commit: 219762a68a294f3bfa0cd49772afcbf049a39942\n", "proba": 2.963367478514556e-06} {"commit": "de1dfa8600d6158c8887d8db4d1c1b5b700328e4", "message": "DEV: get start info from attrs in h5\n", "proba": 1.1426166679484595e-07} {"commit": "d78c4a43e136bb06685651650da86b1b6c98d9d4", "message": "some bugs. but the mocked data isn't consistent with actual disco data, so the tests must be updated'\n", "proba": 1.1001974087321287e-07} {"commit": "57b7c4ae195821fcb6e77673af6980e72b2334be", "message": "DEV: shape needs to be changed on scalar data\n", "proba": 6.989578764660109e-07} {"commit": "61e85ba0d23fff817e4168a03be2e5509095e441", "message": "Solved PEP8 issues\n", "proba": 1.7619291270420945e-07} {"commit": "71d0dda0c907f55af6a24b2717f9aec572b0cf54", "message": "bug fix in make command syntax\n", "proba": 7.507833288400434e-07} {"commit": "76d0a7dfc26dd90be9630d465a0bca5e1989d4b0", "message": "Update __init__.py\n\nAdd nuances in package lists", "proba": 2.4086961275315844e-05} {"commit": "9a01d6a43fa7354dc7e47d03548a5a04646f8ada", "message": "\u30df\u30b9\u3092\u3044\u304f\u3064\u304b\u4fee\u6b63\n", "proba": 1.0684933613447356e-06} {"commit": "f43c75e8072eb707ec2895fb853149ec695be7c1", "message": "Fix geometry of RevisionPanel viewport not update correctly\n", "proba": 1.8746997909602214e-07} {"commit": "8fa24587f0c9701ee1ed9ca98a9c97fea03301be", "message": "moving virtualenv root\n", "proba": 6.241081678126648e-07} {"commit": "6a3e4bfd90ddcfafdfe5aebeb0a6a6ba613b8119", "message": "Add blinker to dependencies (requirement for flatland)\n", "proba": 1.2123658166274254e-07} {"commit": "58beb086f35c7b23deabf2111296adc1a7eb3523", "message": "All tests passing. Will do some minor refactoring to tidy\n", "proba": 1.3562245726461697e-07} {"commit": "2da9898161af307ad83ef9d9d5c49c7d6b7fef99", "message": "FIX: shape parsing with list and not tuple\n", "proba": 1.0020962690759916e-06} {"commit": "33fcaf8c513283f9f7e866701de63efb7f7c4c59", "message": "Units!! (treecorr)\n", "proba": 1.6532341362562875e-07} {"commit": "ffa38e566ec125e7860757ae291459b6bbd790b3", "message": "Added condition on src_counts\n\nAdded a condition to check if src_counts are either zero or positive integers and raise a warning if they are not.\n", "proba": 1.272942569130464e-07} {"commit": "de6109852772798f5ae6fef588555c1336d4a443", "message": "Fix lookup\n", "proba": 7.979951419656572e-07} {"commit": "80ec13afe4212fac021157d61cde079004ae49c2", "message": "reindenting\n", "proba": 1.195088543681777e-06} {"commit": "6a9a8587260bd13d2ebd0831dc35c2eea2e0b8b7", "message": "Added a couple of missing types to the TYPES tuple.\n", "proba": 1.1959193102484278e-07} {"commit": "ef418b0fb46794446debef5d317c2c15a2ca6f93", "message": "added vefi and cosmic\n", "proba": 1.5999628999452398e-07} {"commit": "5b94c442470c844e121503acd5fd1f40de171a6e", "message": "Decompress archive using lzma.\n", "proba": 1.3262918230338983e-07} {"commit": "8bffed8e1522ec1e8a010dda05d1ed01e9b9408b", "message": "Update default log.max_bytes to 1 MB\n", "proba": 2.445550080665271e-06} {"commit": "34a280291b6b7777596950353043a38f7caf2916", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "eecea66bba86f8b3857081d019e244333bebda1b", "message": "check send destination\n", "proba": 5.597783570010506e-07} {"commit": "08b13e4faa6cb2f4ec59f841306ece7eef2a57a7", "message": "Update doc string for accelerated Kafka datasource (2)\n", "proba": 1.1422919499182171e-07} {"commit": "654affc745489add0adc06b870ff8a635965def9", "message": "findNode for keys wasn't returning close nodes on failure to find key\n", "proba": 6.824456590948103e-07} {"commit": "47322f1f5dbcea0fa2c2a166b60df9b7477e77bb", "message": "Minor cosmetic changes.\n", "proba": 1.338460720035073e-07} {"commit": "20a081f40d736c20da558548e460cf9e839bc0e7", "message": "\u589e\u52a0\u96c6\u6570\u8303\u56f4\u9009\u62e9\n", "proba": 6.625355126743671e-07} {"commit": "053f1a2c376dd40b723f680bfc48c624be25b5c6", "message": "Clarify metadata deletion message. (#754)\n\n", "proba": 9.659376519266516e-05} {"commit": "a60da796da75ee2a3f0c8de05250fbb5e21cebfb", "message": "ENH: lib/upgrade: Shorten doc string for v202_fixes\n", "proba": 3.917439812539669e-07} {"commit": "505bdc10af870e187249b0bd2641e628581047b3", "message": "Fix synchronizer issue?\n", "proba": 1.3173178103897953e-07} {"commit": "b23b53973c99aa31956c221c14b742c4d5591e25", "message": "Gives help for a pymel or python object.\n", "proba": 1.3716854141421209e-07} {"commit": "881c206fbfab63ec0b5009e0bab8c07c5db2df2e", "message": "Changed regexp for title: first non-whitespace text, up to newline.\n", "proba": 1.8368309895322454e-07} {"commit": "c216aa0ea1f8ddd3ed3502a9ed959958fafa355f", "message": "Made the Prequel update banner more obvious", "proba": 1.2924830627980555e-07} {"commit": "cbb6a15f5fb3c9283922ed40064ac6de3f285c2b", "message": "Bug Fixes\n", "proba": 6.039679760760919e-07} {"commit": "673b77c1c50eade4275891fae1f537fb68ea5c44", "message": "Handle socket timeouts in requests library\n", "proba": 6.013196411913668e-07} {"commit": "222a7f086f599d2a2d4ef6d0abef626d64dae066", "message": "notifier: Handle HTTP errors\n", "proba": 3.297804869362153e-05} {"commit": "1deea93ae493ea74ded50315460c6f583f8f5686", "message": "Update twitter URL\n", "proba": 1.5024728554635658e-06} {"commit": "0dd9e959c4407d9b60da1082303357ca806b43db", "message": "fix apt_pkg\n", "proba": 0.0012596413725987077} {"commit": "f3b4d78a096174bdcad8abd79f6fa91d25f0b2d3", "message": "Don't use chroot without use_chroot\n", "proba": 2.193650061599328e-06} {"commit": "c2a46413309ee73cf04f2abfb91a555e334ec59c", "message": "Remove spurious whitespace\n", "proba": 0.9999560117721558} {"commit": "d8bbfe44aa10d157f2dc6027aa2391bd98220c58", "message": "Update __init__.py to properly return False on line 324.\n", "proba": 3.3258203302466427e-07} {"commit": "d2e954ac2b2b4e8eac0469f30698e8867ebf60b0", "message": "Removes excessive logging message in the event of a rabbitmq failure. \n\nPro: logs stay under control\nCon: in the event of a non-comm failure, the exception will get eaten.", "proba": 1.1482138262408625e-07} {"commit": "e0aa3ff2326e0b90c0dfacfc8fb96a3b75956389", "message": "Cache against hosts pattern (fix a part of problem describe in https://github.com/ansible/ansible/issues/13023).\n", "proba": 1.329386662973775e-07} {"commit": "09318d685743a8f62ce28a6980f43633c0e85704", "message": "Respect the DISABLE_MULTIPROCESSING variable.\n\nAlso don't run multiprocessing if the host CPU count is less\nthan two - doing so would be pure overhead in that case.\n", "proba": 2.614260949940217e-07} {"commit": "d3a4cf17e58410791927b41b8b393157a67eeb59", "message": "Fix after python3 auto conversion\n", "proba": 5.92081164541014e-07} {"commit": "baf637b9ae4a99b21e2bce13dcc4acd99513dd69", "message": "Remove dead code: Inventory.also_restrict_to/lift_also_restriction\n\nThis was used earlier to implement serial, but that's now done using\nrestrict_to_hosts() (whose docstring is also suitably adjusted here)\nand there are no more callers.\n", "proba": 3.864304574108246e-07} {"commit": "f372ae3c23f5756b16be14c3f2e27f86e96f1747", "message": "lint: Add --show-lint-files boolean option\n\nThis can be used to debug which linters are being run over\nwhich files (which is useful for debugging purposes).\n", "proba": 2.8966277909603377e-07} {"commit": "d3b6af9dc7aa45b04bb0d3e0a3da0da4599fd25a", "message": "remove unused handlers file", "proba": 8.297876092910883e-07} {"commit": "e6dffed320bc41b00c6dfd6239665d280f92058d", "message": "Fix get_trade_price exception in future(tick).\n", "proba": 1.2630500805244083e-06} {"commit": "a2cfe8770b9a93ed2a1372396fa7a1e648bd658e", "message": "Inventory: fix logic mistake in loading/retrieving variables for groups\n", "proba": 1.0675765906853485e-06} {"commit": "d7ddf3cc015c13567954e62cd973a4e50481be8d", "message": "Add an extra argument lhs_only to get_definition\n", "proba": 1.3923792039349792e-06} {"commit": "d5b7908c7af24ae176ba3f674c9ea96f9bbd204c", "message": "Untruncated Commands\n\nChange some commands to be untruncated (players have to explicitly type\nthem out).\n", "proba": 1.4901465306138562e-07} {"commit": "88ba46aee04ef75359a44ac2d91e8a649b0506ac", "message": "Revert \"fixed append to add\"\ngood change on top of bad\nThis reverts commit 699f344e17e029302af0d5636d6e02e6b8d3dd4c.\n", "proba": 1.2334665200341988e-07} {"commit": "01c5760fe5a85a97c4c671c5c74de9999dcae17f", "message": "Update sale_order.py", "proba": 7.505656753892254e-07} {"commit": "f9ca6c12367a5e6c3df384e52c24a0773bae6a0b", "message": "CFY-1850 some cleanup\n", "proba": 1.4645193857631966e-07} {"commit": "89f059b8c2ada6a4cfef6f8bd2737730bf115f10", "message": "remove nonused parameters y\n", "proba": 9.431490184397262e-07} {"commit": "60e815c8444eb4df8e67155695b3565b2ae24ebe", "message": "Set ansible_distribution_version differently for Solaris variants.\n", "proba": 1.1707039959674148e-07} {"commit": "24c45609d2c134fbe3b3dac49e14ff3a06d6adef", "message": "Add tests for multivalued serialization\n", "proba": 2.528120148781454e-07} {"commit": "94a283eaeb20f277ca383bd72214f74231083eb1", "message": "Specify expire date.\n", "proba": 1.295441688853316e-05} {"commit": "b672259b9142c6a12afda3693284f7f5f74b4f44", "message": "fixing bad docs\n", "proba": 1.087501686924952e-06} {"commit": "a6415f9ad90a9b00fa4da03bba108874327d9456", "message": "copy: pylint and docs (#30847)\n\nThis PR includes;\r\n- pylint fixes\r\n- Documentation updates", "proba": 1.2104872837426228e-07} {"commit": "606ac3255d767acf60a1fb11f1f07064b5ad4cc6", "message": "Migrate filter_immune_slice_fields (#8718)\n\n", "proba": 1.2209392252771067e-07} {"commit": "be0a2b92b0b577467910b70333f29a660ad7ed2d", "message": "ENH: better tag cloud appearance for small number of submissions\n", "proba": 1.2767090140641812e-07} {"commit": "7215816797fd61c257a7aa4bb120fcc6941f9cad", "message": "fix: incorrect relative name in get_location\n", "proba": 0.00012855509703513235} {"commit": "99c77ae1751a85a122874862c783c960d22a1c4e", "message": "Further commenting", "proba": 1.1679707512257664e-07} {"commit": "bc7563d46699d33652c37f9481d2b2cae7c3bf75", "message": "Adding a TODO for automation stuff\n", "proba": 3.029889512617956e-07} {"commit": "223c6002a3e505973d87ae2180d79ad02498641c", "message": "trigger the factory-level monitor plugins from class Factory\n", "proba": 1.34588219680154e-07} {"commit": "99c41fa86f2b34d4a4d4028238ab260f4f1ad7b2", "message": "Update metric_used_time.py", "proba": 3.164237568853423e-06} {"commit": "e4e8b492a073c2e19aa8d3a73c0fda4d4da92638", "message": "better colors\n", "proba": 7.005782208580058e-06} {"commit": "e55dfd1f24bf65f3baf893974647d1e5ed5eb9c5", "message": "Fixed docstrings.\n", "proba": 1.8065144047341164e-07} {"commit": "7695a1b1182ffa198beca14a70ec110de22ebb9b", "message": "Fixed Elemental Rift Dungeon monster data logging location to match newer JSON schema. Added summon scroll logging.\n", "proba": 1.0085816626315136e-07} {"commit": "d14483a631f10f0f2be2e59c2a63dcbd508682da", "message": "Added baseline detectors to call classification transfer stats script.", "proba": 1.0656383153673232e-07} {"commit": "1cd4bd710f60eafae84da31a5d1bbc9fbcda9602", "message": "Switch to Python 3.\n", "proba": 1.875464704426122e-06} {"commit": "263e9e331fdf987a87e9e235d83eb0e98781256a", "message": "isort: Reorder imports\n", "proba": 8.23579114239692e-07} {"commit": "f2f0282719194f31557d628d0fb1fc6a44d72c53", "message": "Update docstring of ManualWatermarkEstimator.set_watermark()\n", "proba": 1.3184200042815064e-07} {"commit": "166e7f91f5aca3f8ab1f84ffb7fa93bc58d2111a", "message": "renamed iteration to generation\n", "proba": 5.366648565541254e-06} {"commit": "a32cd07a81c03118399dcbfd9c861c4b2fd7cab4", "message": "Improve docstring explanation\n", "proba": 5.713746304536471e-06} {"commit": "1abc8e18ef72f1dfdcd7e1a4e5a32dc6449d25fb", "message": "Changed docstring\n", "proba": 1.6783926639618585e-06} {"commit": "335de17adcb3af023ffafea2c75456490071a53f", "message": "[CrashManager] Fix another python2/3 problem with attaching crashdata\n", "proba": 7.851434020267334e-06} {"commit": "f4baefe7d4858f38d18a77cb2228dfb854a05210", "message": "Make structured apart return separate function for num and denom:\n\nIn [3]: f = 36 / (x**5-2*x**4-2*x**3+4*x**2+x-2)\n\nIn [4]: apart_structured(f)\nOut[4]:\n(1,\n Poly(0, x, domain='ZZ'),\n [(Poly(x - 2, x, domain='ZZ'), Lambda(_a, 4), Lambda(_a, -_a + x), 1),\n (Poly(x**2 - 1, x, domain='ZZ'),\n Lambda(_a, -3*_a - 6),\n Lambda(_a, -_a + x),\n 2),\n (Poly(x + 1, x, domain='ZZ'), Lambda(_a, -4), Lambda(_a, -_a + x), 1)])\n\nIn [5]: assemble_partfrac_full(_)\nOut[5]: -4/(x + 1) - 3/(x + 1)**2 - 9/(x - 1)**2 + 4/(x - 2)\n\nIn [6]: pprint(_)\n 4 3 9 4\n- \u2500\u2500\u2500\u2500\u2500 - \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 - \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 + \u2500\u2500\u2500\u2500\u2500\n x + 1 2 2 x - 2\n (x + 1) (x - 1)\n", "proba": 0.9999994039535522} {"commit": "57594397066fd9fda9be2df7b00aac155293c5c3", "message": "add import\n\nadd import datetime to fix error.", "proba": 1.2924436987304944e-07} {"commit": "6c5561755c091c6f52acf7b4ac667d765d87b093", "message": "Fix doctests\n\nNow that rationals respect fold_short_frac, they will print in / form (as\nopposed to \\frac form) in inline mode by default. I think it's an improvement,\nand there's a reason that this is already the default for symbolic fractions.\n", "proba": 5.423441962193465e-07} {"commit": "f12ca8c7e33f57b89904bf660fc58f32a2519028", "message": "Serialize onjects for unicode fields\n", "proba": 5.679362402588595e-07} {"commit": "757b501a4062fc1bcb59e4ba93ae8ef4d69ac6e8", "message": "Settings default input and output as utf-8\n", "proba": 7.133720032470592e-07} {"commit": "85a9fbf423d9de6b54336199e86c24fd59f9cd23", "message": "Changed confusing test name\n", "proba": 2.977531721626292e-06} {"commit": "efa9a618bb277612c1520eaea01264a866d654b0", "message": "Fix union with complexes\n", "proba": 1.5531037433902384e-06} {"commit": "37a9d6ca4407f8f9a8b0dbfe9fc55032042be690", "message": "Missed one test that needed to be fixed for the named-tuple swtich\n", "proba": 1.3818308843838167e-06} {"commit": "a14e9f8286745c629d13d411b3143847e7ad0d25", "message": "rsolve: Properly call rsolve_hyper.\n\nThe syntax for rsolve_hyper has what is named i_part on the right-\nhand side of the equality which we are trying to solve. Thus a\nminus sign was missing. Fixes issue 3290.\n", "proba": 1.5615485438047472e-07} {"commit": "2b3713b2f0f340990de632b7285ffc72b97340b2", "message": "more playing with ded script\n", "proba": 1.1896219831442068e-07} {"commit": "0445ba1b8cd07b8dd5d049c31dc8105455a83ca6", "message": "tidy up\n", "proba": 1.077007141248032e-06} {"commit": "16eadcfc5582f676a9561dd75675c31c8a823ba9", "message": "Clone lists before modifying\n\nWhen an opcode expands to a list of jobs, we extend the reason trail\nof the new jobs with that of the original opcode that expanded to them.\nBefore modifying the reason trail, however, we should duplicate it to\navoid side effects on shared copies---like the default empty list.\n\nSigned-off-by: Klaus Aehlig <4ce51de36d9068cd7db2eec1151e0f3f95419008@google.com>\nReviewed-by: Lisa Velden \n", "proba": 6.680011574644595e-05} {"commit": "beacb99c87ec085620df0c30b3607324b338d637", "message": "When processing events with addTufoEvents, defer the autoadds until after the original nodes have been created. This addresses an issue where the autoadd'd events may have required props which are not included in autoadds.\n", "proba": 1.0322789023575751e-07} {"commit": "17f50d0d2746808103652c5f09576086fb4fb434", "message": "bumps version number to 0.4.4-dev\n", "proba": 7.104681571945548e-07} {"commit": "08824b63d38ad430cb9ff5b8be211a1f8d91f893", "message": "S\u00e9paration des configurations - cf #296\n", "proba": 1.1689714085605374e-07} {"commit": "e1eb6418536a1d37aab16c1b5e72a2fe5f8dae02", "message": "Update getCoreXact docstring\n", "proba": 2.889870245326165e-07} {"commit": "84d6a3ada71a7c5dd6828a5189e29bfe08c4b539", "message": "Fix Add Gem and Import Asset in edit mode\n\nWith to_mesh new behaviour to get evalutaed mesh from edit mode it is required to evaluate dependency graph first.\n", "proba": 1.0140095696442586e-07} {"commit": "d15d1cd3f554aa009ee1213467d246da462894bc", "message": "modified __str__ for MRSData\n", "proba": 5.529205736820586e-05} {"commit": "a8e8b95c0343b9909b766d5fdf70fb4e8f231763", "message": "change some logging level for bad message parsing as discussed in #379\n", "proba": 1.3733136938753887e-07} {"commit": "540b6d8dd5e3eca8f2b5a030052184dae5181401", "message": "Fix contact form error message\n", "proba": 1.8996380504177068e-06} {"commit": "da25940f94e88b3e7c2a8d6c2521abaa4afd9f84", "message": "Fixed bug when userdata not supplied\n", "proba": 1.5763764338316832e-07} {"commit": "e8100413f96f22bc0a7b22eb270516efcd7cd5f5", "message": "jsonrpc compliance.\n", "proba": 1.8411874691537378e-07} {"commit": "accbea7ff1e66888d9090efb60d377caf0ea9c40", "message": "Fix #38 Add minimum of 5 histogram bins.\n", "proba": 1.4384245616838598e-07} {"commit": "b572504f092904860c465e411eaaa77378d6b3f0", "message": "The order is important for mpld3 here\n", "proba": 2.7650307288240583e-07} {"commit": "99355030b4bd3f97fcc6df148d2d0b90dd039239", "message": "Less aggressive exception catching\n\nCatch the exceptions that really make sense to catch here.", "proba": 1.1394880772286342e-07} {"commit": "762286aaec8c5ea46e6383a2c4db5a0d2e170a59", "message": "Check for flush existence\n", "proba": 2.7702620286618185e-07} {"commit": "cba8052e7501803ebc49d458568dd96c14c7960b", "message": "config v2: change server protocol to :s instead of removing it\n", "proba": 3.8315712913572497e-07} {"commit": "14acd8f120be2b4e61a2be710db27e2885c142cb", "message": "enable integrity checks\n", "proba": 4.5007308813183045e-07} {"commit": "d09d5e5dacf16e9a6657e3892c45815047304682", "message": "Plain number formatting for URIs.\n", "proba": 1.3683823851806665e-07} {"commit": "b32127752e3e4f26b239dd95612047f72d7e1767", "message": "cleanup|\n", "proba": 5.089637511446199e-07} {"commit": "5d69ace85adbbf0843ea0030a981a64eb4d4f77e", "message": "Cleared sphynx indentattion warning.\n", "proba": 1.287415898332256e-07} {"commit": "0d8227e2cd2ec2c75edddae66b1f715454002dc2", "message": "Moving Base.__hash__ to be consistent with previous commit\n", "proba": 1.8055005057249218e-05} {"commit": "32d6a060107857d51502e0939e1547764b7d9fa7", "message": "Reordering methods\n", "proba": 3.826648651283904e-07} {"commit": "950b4e26a2d715636cebc6137d115eb1d40afeef", "message": "remove rel prop lift hint. requires more work\n", "proba": 1.8670561985345557e-07} {"commit": "bd30e67a66b56d952de17b0005c654c971deae2a", "message": "[irc] fix IndexError exception\n", "proba": 5.707515811081976e-06} {"commit": "6d91c1743263da8bd9847dc0b5e5e707ad736d7d", "message": "About dialog: update copyright year\n", "proba": 1.2529696391538891e-07} {"commit": "121aca18aa150fbc1b5e971741fe55580766f3f7", "message": "Move imports to where they are being used\n\nMay be controversial, but if we want to keep inputstreamhelper's\nfootprint as small as possible to add-ons using it, this may help.\n", "proba": 1.1056416582277961e-07} {"commit": "d2e9360b4fd1dad5a790b1455d7642142b7f11f4", "message": "Switch to hosting version on github pages\n", "proba": 2.1333779898213834e-07} {"commit": "7b2c30eb8f06874cd25c4c7baf9d4b51e3c272aa", "message": "report total number of slices when showing current depth on HUD\n", "proba": 2.507329099898925e-07} {"commit": "375ec1c9357fcea7dcd03813b78103d5496fa4c0", "message": "Fixing watched, like and vote queries\n", "proba": 1.2846992092363507e-07} {"commit": "254dbbe68ac2c90cd2fd8d163252c22d64bf2d44", "message": "use DOM is sax filter generation fails\n", "proba": 2.79962823697133e-05} {"commit": "b953ca576d8197846d978937ee940872437cb719", "message": "Renamed Weak.WeakMethodProxy to the less redundant Weak.MethodProxy\n\nAlso updated comments in lib/util.py for the Weak class.\n", "proba": 1.0195599742246486e-07} {"commit": "53ff883a120b8731d6a1119492c1f4102b4ce82f", "message": "added code comments\n", "proba": 1.8687627800773043e-07} {"commit": "d341ffaad0beb3ef9876633035d114b6c51f214d", "message": "bump version\n", "proba": 4.770564032696711e-07} {"commit": "1eaaa5d51d8065571f936f30e4455de5d5ba0782", "message": "added ObjectCache\n", "proba": 3.143185836051998e-07} {"commit": "fa01725cf78fb0deb0d8958a944618e96e4c3b89", "message": "num genes option removed from backend code\n", "proba": 1.0492086630620179e-06} {"commit": "3999620c8ffb6cfa54bdf4a76d1a07d78f03f4ec", "message": "Fix critical typo; replace logger with print\n", "proba": 9.782271081348881e-05} {"commit": "6e9897389100c62d40a311f66a279b25c276b44d", "message": "added custom proc cleanup\n", "proba": 2.0051422211508907e-07} {"commit": "2b68da768d34e255f4fa3f0bea4f7bc6a7e16b13", "message": "Cleans up the filename to year code\n", "proba": 0.9999934434890747} {"commit": "3e0121def08411af56a9ebcad46b62e49b91bb91", "message": "fixed unification of conditional variables\n\n\ngit-svn-id: 7746e1be614c04306162a6afe133859c0e9253b7@155 34294538-1d18-489e-82e9-bb8ff975a0eb\n", "proba": 3.1715961085865274e-05} {"commit": "e3824462080584a82f537f52f5b7c1d5821c3ff1", "message": "remove column\n", "proba": 0.0028369519859552383} {"commit": "5208abd072d747c0da9dbd599ee50ea63c61842e", "message": "Make lines indented by four spaces instead of three\n", "proba": 0.0049155461601912975} {"commit": "9d0e6a339212d992bee2c246ae569f5bf858295b", "message": "Adding support for relationship in Bambou Fetchers\n", "proba": 1.1726236692766179e-07} {"commit": "bfda1c424fe02396ba7e7dd5a8c3959765cf6c57", "message": "Test fade to white\n", "proba": 2.8886248060189246e-07} {"commit": "a3d999f30a595533da04ec01ae734a865f322097", "message": "Use specialized classes\n", "proba": 2.33758029821729e-07} {"commit": "aa09535aaf45e1bf328cc07760dac102341d72b0", "message": "REFACTOR Rename variable\n", "proba": 5.338067126103851e-07} {"commit": "b05ff885fad26d116b8755f7dd249038b6321389", "message": "Replace /faq route in LMS urls\n\nThis route was mistakenly removed by the theming changes since the\n\"FAQ\" marketing link actually points to help_edx, not faq_edx.\n", "proba": 1.0905908709446521e-07} {"commit": "0c8f3fc4a522be60052bade70eebf89769809128", "message": "Added the custom exponent base for the `comp_t` definition from the `local.linux` template module.\n", "proba": 1.034080128192727e-07} {"commit": "e2e70f89d62cd122f3264a88c82a9462f1dd397a", "message": "Add a model method\n\nsome bug fixes\n", "proba": 3.1672386739955982e-06} {"commit": "8cedd989fe26d5ee6e2af8774e9471c585976798", "message": "Hack the RSS feed generation to avoid duplicates due to id changes\n", "proba": 1.6092668886358297e-07} {"commit": "e2405f0f94b9311949c9ae289e4af73767ba37c0", "message": "Remove logging module", "proba": 1.005299054668285e-06} {"commit": "abedc5fc4ca1816a8f1e902c95a77e6c14de09e0", "message": "Remove old method of handling filter parameters\n\nThe filter parameters used to be held in a yaml file, requiring a\nfunction to build the flux and wavelength arrays. This is no longer\nneeded\n", "proba": 6.603750080103055e-07} {"commit": "facb7656d7f4423cd624978ff9e23f47a7996a81", "message": "strip spaces\n", "proba": 8.227281114159268e-07} {"commit": "2a936adfeb7491fb3f595cd1a7fc8b8b3990cbb0", "message": "Fixed bug in CodeMirror editor.\n", "proba": 1.1261181498412043e-07} {"commit": "a49da7c13513a17525cda64f96631a25d774af0e", "message": "Added a new template filter model_verbose to display verbose name of model for model instance or modelform instance\n", "proba": 1.2267504700957943e-07} {"commit": "40b369fab65a41ddb3f539639292a12a284f84c5", "message": "removed traces new permission system\n", "proba": 2.9640639809258573e-07} {"commit": "71aabf5e9068932267b3ff3fd8ac2bebb39dc399", "message": "Fix temp file names\n", "proba": 2.9176753741921857e-06} {"commit": "513b6238015d7ad344d4bdf48974889f4059b8a9", "message": "Including dictionary of types\n", "proba": 1.3384267276705941e-06} {"commit": "2245051765709e80e8b5d91417317da02da711d9", "message": "release 1.2.6\n", "proba": 2.202801709927371e-07} {"commit": "8021eb687d20379a9717e9821f491e565bf962de", "message": "print out non-tree preds\n", "proba": 0.9999948740005493} {"commit": "72a283a6637001f08d87edd65842bb8118586662", "message": "Removed extra comments in #19\n", "proba": 1.1197120386441384e-07} {"commit": "5fa9b2b9bef5c45fb8bfad31af68ef2d56805580", "message": "More work on makecols.\n", "proba": 1.0551031692784818e-07} {"commit": "466b76d585b508944636df1f6ce96aff4f3ecb69", "message": "corrected a few more issues with _getGlyphHeight and added test for ScaleFonts\n", "proba": 1.1480911865646704e-07} {"commit": "4ede02cf04afc90ec26a1109f2367391a2c8e1bb", "message": "Fix slug regex bug\n", "proba": 7.725050090812147e-05} {"commit": "93f7e7943d4d3d726dc8e806def116ce72aac4e6", "message": "Ticket #4fix. Deleted LINK_ANGLED_PATTERN, deleted Pattern.contentGroup attribute.\n", "proba": 1.0680414419539375e-07} {"commit": "8726e1e8dc58ba3c62665751560204c1e1ffded4", "message": "added \"size\" property\n", "proba": 5.108076948090456e-07} {"commit": "ad9ec96f42e7b1facf60dade07d5fcd3c6dc10a5", "message": "Spawn friends.groups and friends.persons from the friends data in the XML\n", "proba": 2.6913085093838163e-07} {"commit": "926705451e4d72f635a061e8d36169c1dd49cf28", "message": "fixed grammar error\n", "proba": 1.2324615454417653e-05} {"commit": "e4d5fe42da9a679165c90850e217423c495923f3", "message": "Added \"*\" built-in", "proba": 3.0101750780886505e-07} {"commit": "c849153ac1f0553b5564ed4d785a509291cae71a", "message": "20150523.1116\n", "proba": 7.231465701806883e-07} {"commit": "cf4164310d09ba551c0b342d81e682b62b5aef93", "message": "Add exact author recognition to SPIRES => Invenio syntax translation. Correct replacement of the truncation symbol.\n", "proba": 1.1189605686467985e-07} {"commit": "10fb8018241b8d3519f7500e293ad2d37e9b43b1", "message": "remove comment\n", "proba": 2.1478579981248913e-07} {"commit": "c020424d0ad15d7e330f16f407af256b9b968d72", "message": "Changed location of account settings.\n", "proba": 1.280369446021723e-07} {"commit": "d06fd06123463e50f1a40d83d84f9bfdc9ef97c3", "message": "Adjusted paths\n", "proba": 1.680309765106358e-06} {"commit": "6ffbeda0de447b28c997cbeb7e996b13ffcf56d1", "message": "Fix bug with MSSQL reflecting and schemas\n\ngit-svn-id: 655ff90ec95d1eeadb1ee4bb9db742a3c015d499@5094 8cd8332f-0806-0410-a4b6-96f4b9520244\n", "proba": 2.914846845669672e-05} {"commit": "cbb9e7f191b5bedf7ef7ee53244fda8ab9d4d46b", "message": "add table_names() for mysql. maybe it works.\n", "proba": 1.2688170158980938e-07} {"commit": "8c2703b9989cebf2d70bb381e36ff1ad239090a9", "message": "Added test for Turbomole atomcoords\n", "proba": 1.3213403349254804e-07} {"commit": "9867f07546742269225df1a2b8df060294a75bea", "message": "svtplay: fix Subtitle not found\n\nfixes: #1206\n", "proba": 4.77395417419757e-07} {"commit": "a13909fd531df5571a454d215932d302eec5f906", "message": "show cua microfiche due 02-20-2022 status Off-site. Fixes #1100\n", "proba": 1.123535042779622e-07} {"commit": "ed7f18b2afafb2134c961c46ea21ed2aedabeae9", "message": "viaplay: they use longer first dirname nowdays\n", "proba": 1.2479538781917654e-05} {"commit": "115afb136d56c795822f98419ed7c5a8770d1a83", "message": "Print EVRs\n", "proba": 4.3545935568545246e-07} {"commit": "111efdb022ca7c946b7e18c5f0b7969654c129a6", "message": "Modified assassino.py\n", "proba": 5.676416776623228e-07} {"commit": "e920a7046220a0547826084c11b6a74029e3c658", "message": "[doc] better docstrings for tests\n", "proba": 6.090028250582691e-07} {"commit": "b26ff54c67171970d761469ec1aa591df2041b18", "message": "chg: dev: Modified iperf libraries\n\n- Added extra help information for functions\n- Added bandwidth setting to client_start\n", "proba": 1.2626787793124095e-07} {"commit": "721e80be4b180ff507735139984bd8a21d0274ca", "message": "Fix to the allow chapter numbers like 51.1 52.2, 53.3 for mangabee.\n", "proba": 0.0008723430219106376} {"commit": "2eec6cfdc3baa161f0a9030ed61446b5af0ccec5", "message": "Correction for bad mock tzinfo.\n", "proba": 1.1439206559771264e-07} {"commit": "b8e5aa1e4a8d9b3ad91378b2e675c0ea0fbca9e8", "message": "Correct a wrong docstring (stupid copy/paste!).\n", "proba": 9.061183732228528e-07} {"commit": "4518d4a1f21e28cce048bd2fa2282b81d99a33c3", "message": "guess default timeline name from address\n", "proba": 1.3636966968988418e-06} {"commit": "618140344f83d5e19f7470b6c2d03108ca7c1160", "message": "WebStyle: new invenio_pretty_date() jinja2 filter\n\nCo-authored-by: Konstantinos Ntemagkos \n", "proba": 1.2313192598867317e-07} {"commit": "718ed5a9fa4dc089581109d4829fa1c9f50f7982", "message": "Adding function to calculate and plot confidence hulls for multiple datasets.\n", "proba": 1.0894515867221344e-07} {"commit": "906f74a4d47a0de44b3568ad7f7ba82722808d93", "message": "main API now does both authed access and userless access. rate limiting updated accordingly.\n", "proba": 1.0187396526362136e-07} {"commit": "7baff67956d67c81b2d146045248f45b828c19bd", "message": "onapp resize function\n", "proba": 7.320588792936178e-07} {"commit": "04c597b8429c613518e54201ac5d03a8039ca655", "message": "TODOs for instantiating pipeline\n", "proba": 1.8956859548779903e-07} {"commit": "436e4132bc580cf6cf02bb3f27c8da3b8cb82cc1", "message": "Modify for CI\n", "proba": 1.1092045042460086e-06} {"commit": "033f3af95f4e67c930999badebfc37e25e9de294", "message": "removed testing feature from mconvert frontend\n", "proba": 2.923480906247278e-07} {"commit": "309a246d52b8f93ae674654cea4c1100125ba768", "message": "makemake: Fix Pylint naming warnings\n\nSigned-off-by: Euan Harris \n", "proba": 1.3676908849902247e-07} {"commit": "67abd3799cf7c7a43b8d38d332904698a3f5ed3e", "message": "remove type from md forms\n", "proba": 4.364372045984055e-07} {"commit": "b23bc583b4c04e77b4ca66c4913ccd51df04f615", "message": "Fixes issue #60 - anonymous users couldn't view forums.\n", "proba": 1.0115697079982056e-07} {"commit": "f86cf941267cff68d61fe8c125db5b03be1d1444", "message": "test/test_blacklists.py: add simple test for keyword blacklist\n\nNot very useful because .add() currently doesn't do validation\n", "proba": 8.688265893397329e-07} {"commit": "3bf44796d344542bac8268f76b0e28b916025db4", "message": "Refactor Testing\n", "proba": 8.092263215075945e-07} {"commit": "d241a381b5aa35dffd9be90a30c469d2b1e9493c", "message": "works\n", "proba": 4.5564860329250223e-07} {"commit": "7b494b1ccc063ce540411f114d19d2ce4193c921", "message": "Reverted the auto assign server hardware value as True\n", "proba": 0.9997461438179016} {"commit": "8a909de3b420304fefccf34ad0e33487c77fcd0f", "message": "Change np.save/load tempfile handling in test\n", "proba": 6.862151735731459e-07} {"commit": "db9802368fdf8ec12f8d4dee8b1697b572e6b938", "message": "temporarily disable the test of the decimal alignment with group separators\n", "proba": 1.1235323427172261e-06} {"commit": "fd7919e6275dd63fdb9f1c28a7bd831472974138", "message": "replaygain test: add basic importer test\n", "proba": 6.374532404151978e-07} {"commit": "7d681a77f082f2e522c20b325993d11ca125edd9", "message": "Update test\n", "proba": 5.55348492525809e-07} {"commit": "9d38d6ef8b53286c485a03614d1c9f812a8ffbcf", "message": "filter XMLPatentBase by subclass in order to correctly implement unittests\n", "proba": 2.2424639212204056e-07} {"commit": "2efe1424b27f8517d87a1f719d73e89fa2b748a1", "message": "Don't fail tests if the dummy table is already present.\n\nOn Postgres versions that support it, DROP TABLE IF EXISTS is used to clean up\nthe dummy table before running the tests.\n", "proba": 1.1477376204993561e-07} {"commit": "d9a6a3d0abf53a93b32d3d6bffd7a858a757d7e9", "message": "added tests for bruteforce blended spectrum kernel\n", "proba": 2.408264379027969e-07} {"commit": "dc98b5a3c993018c940296d6324aa9c7f721e390", "message": "There was a fix to the testset mpi case. Incorrect code directory\n", "proba": 6.747574161636294e-07} {"commit": "f9471914619068692186f17cfd8d471d1328fcf6", "message": "Safely get middlware classes incase it doesn't exist\n", "proba": 1.374081364247104e-07} {"commit": "4bf0c8be0d9a392e3b3262eed096e7950e37b836", "message": "Implement short-term fix for BeamBot crashing the bot.\n", "proba": 1.724782919154677e-06} {"commit": "7eb2b376098641f0905b5b58a70ee0e4e3626513", "message": "Fixed ADDS URL", "proba": 2.895821182846703e-07} {"commit": "045e18d898050659e52b18969157e0f31e6e0bfe", "message": "Dodaj komentarje in docstringe\n", "proba": 1.6545288872293895e-06} {"commit": "4e22539f553aa11570e2de98cd11f5a21fce6c69", "message": "+ Mint.initiate_account_refresh()\n", "proba": 8.829194371173799e-07} {"commit": "c6c16f22e52000d733723fb658612df1d5822279", "message": "global name EC2Exception not defined (RBL-3073)\n", "proba": 1.2292495910060097e-07} {"commit": "63a353f97c130504454a184d17c3849a43a09c13", "message": "add percentage_music\n", "proba": 0.9989984631538391} {"commit": "03a6413ef1dfc3cac25d3b4f276b7ac3c8efc272", "message": "update to use new product thingy\n\n", "proba": 1.199180985622661e-07} {"commit": "5bb73e7ba0ada8b84991c784c7538aa14bc6b44e", "message": "Preserve window geometry over respawn.\n", "proba": 1.1451736980916394e-07} {"commit": "12bc4e77c020dd36e674c324ac0467f0d795e6bf", "message": "A sklearn wrapper that endows a TransformerMixin that has no transform method with one.\n", "proba": 1.053743687862152e-07} {"commit": "bcc9ea8bb749c864cc5663a795fb26444141a701", "message": "Check date in addshow feature\n", "proba": 2.2278793210261938e-07} {"commit": "5be5fc74b2a4f608e50ba1617f847c30025273fe", "message": "basically works now (more or less)\n\nokay, so besides relativizing urls and dealing with unicode this thing\nworks now\n", "proba": 1.7304607524692983e-07} {"commit": "6fdfc85fe6dad5a5f1442cd9bdc79888a673628a", "message": "v1.5.2 release\n", "proba": 2.1493906388059258e-07} {"commit": "835a33320755cfb584efd732e96b8aaf31a30955", "message": "STY: Better messaging for CUDA\n", "proba": 1.5320976842758682e-07} {"commit": "f7c427e3de070fa05e2bdbb8371063c38367aae6", "message": "dropped unneeded param\n", "proba": 1.0930425560218282e-06} {"commit": "df6a77f8a0534f046e952a5d018b9c61cc318d77", "message": "deleted print statment, still need to get ipynb without hardcoded filepaths\n", "proba": 1.6346278641776735e-07} {"commit": "35e378060db7d98caf5aee8566a1143a6de00221", "message": "fix: handle character limit more cracefully, Closes #27\n\nThe status.set API call handles max 255 characters, if user enters\na message that is longer than that, warn for possible truncation. If\nchoose to continue, than it's fine, but let them return to editing if\nthey want to.\n", "proba": 1.1080398820695336e-07} {"commit": "031c42086683a91f2d77f08f603d0e03689a2e52", "message": "Start handling .\n", "proba": 1.7491431947291858e-07} {"commit": "3fa7498affa3c089e660ce8608b706cf7acc1124", "message": "Add code to dump MCL from store.\n\nThis is a neat check of what we are doing, but also should allow me to write a CSV -> MCL tool.\n", "proba": 1.1365577989863596e-07} {"commit": "d6698a58aacfc32d7148d520e11ead44b6a83854", "message": "IT WORKS! OMG IT WORKS!\n", "proba": 1.242030407411221e-07} {"commit": "72dc6d54c405c58283ebcc6b08fc2e6575fd1490", "message": "Delete mloginfo.py", "proba": 2.8075126010662643e-06} {"commit": "88767e798d15928ec6d853d87fb01e9d65f61822", "message": "Topo obj for easier topomaps\n", "proba": 1.4662271041743224e-07} {"commit": "2414aa5ebef20c6bb75f6df6283a2569db8d38b5", "message": "Corret path to 'settings' given in mytardis.py\n", "proba": 4.3955702722087153e-07} {"commit": "aed1dad4701cfe20fc77bac8d5afa3f735093fac", "message": "Fix typo\n", "proba": 0.9999992847442627} {"commit": "ce457a02db3d8569e7e180d6c6eddcdf67d75db2", "message": "Fixed typo\n", "proba": 1.2940510032422026e-06} {"commit": "5f8e7b09dadb7b2d82603e163e82004e11ceb388", "message": "Tidy for pylint\n", "proba": 2.5580743567843456e-07} {"commit": "0577d35d849e88825c6aba1b94ac40f75515f694", "message": "Fix issue #22\n\nSearch for an address should use the equal operator and not a\n\"contains_equal\" as was previously the case.\n", "proba": 1.8600610474095447e-07} {"commit": "9df5c3cd1dc64ebc6481acc0ecf656fd3f1efeb1", "message": "fix checksum behaviour\n", "proba": 1.6507290638401173e-05} {"commit": "18218f9d64735a920e8378d9f6665be2a4fc6fbc", "message": "Add support for changing mock object and dummy default\n", "proba": 1.9933877126732114e-07} {"commit": "d48934f6e557b2029b14f8e840a6edc232fe055d", "message": "Mockdata producing 1 lakh data-set\n", "proba": 1.2313333286328998e-07} {"commit": "cc53a8626bf6db1882030a257e74f0e3b624e24f", "message": "added email and lorem ipsums\n", "proba": 3.376055701664882e-07} {"commit": "10befd852f254a1f54eb20eca8158b9973c152c5", "message": "fixed settings (facutoff, common activities)\n\n--HG--\nbranch : pyconar2012\n", "proba": 1.2447802077986125e-07} {"commit": "cbf110e408b45b329e11ffec4446e516e75f200a", "message": "notifier: More specific type for load_configuration()\n", "proba": 1.6401916980157694e-07} {"commit": "103bcae9f172dfee64e7b9235807bcfe1a8aefb3", "message": "fix a minor bug unrelated to this change\n", "proba": 7.479005148525175e-07} {"commit": "b0ffe14da11addd2e1fcf14325b9bcf4c8cd3512", "message": "Reverting to original code", "proba": 2.8714588552247733e-05} {"commit": "1c71b9b9cf04f1b990b3ab5cfd4b4aae14b2d6f5", "message": "Implement RBF marking and look for option on CLI. Also fix some docstrings.\n", "proba": 1.0307364561867871e-07} {"commit": "9f4459f03e74ffc2d55a1656ed18f9a8ba8f2647", "message": "Creation of the CodeEmitter class to handle the core code emission.\n\nThis class contains the core of the code emission. This is where\noptimizations (such as binary search through preprocessor directives)\nwill be implemented. It does not _need_ to interact directly with the\nAST, although it will probably receive AST nodes in arguments in\npractice.\n", "proba": 1.180780841991691e-07} {"commit": "c7420e5b105e4394dcd1be550a0e84014c30dc8a", "message": "Fix returns", "proba": 1.1765470162572456e-06} {"commit": "db08cea7c6a59ef1c5902a2e520e6b41806c05ba", "message": "Added onchange method to mutables\n", "proba": 2.6662394247978227e-07} {"commit": "8a0aaa1e4846baa5fbfb10a158c439829ddcb848", "message": "Fix the standalone webkit build.\n\nIdeally this dependency on chrome from net should not exist, but\nuntil that is resolved, we can at least avoid the dependency when\nusing net.gyp from the standalone webkit build (which lacks a\ncheckout of chrome/).\n\nR=nick\nBUG=none\nTEST=none\n\nReview URL: http://codereview.chromium.org/1996010\n\ngit-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@46758 4ff67af0-8c30-449e-8e8b-ad334ec8d88c\n", "proba": 0.0010322821326553822} {"commit": "8d9fc950a9b2cf8a70e95045cb2837f9e0f2dac3", "message": "Add no linger to stream close\n", "proba": 1.9202188639155793e-07} {"commit": "2ad35248494fa026dbaf2fa6f08179c9900cf7b6", "message": "added prequel update check", "proba": 1.9110076721062796e-07} {"commit": "156f822fa4cfb51dd9fa83af26aac551f8fc550f", "message": "remove redundant v in message template\n", "proba": 5.459195904222724e-07} {"commit": "14d4885eac1531bac48601ad4cc534663b044cd8", "message": "Fixing it!\n", "proba": 3.294470332093624e-07} {"commit": "869f4437ec997b9e10cb091568bf9c9b9e30fc94", "message": "add docstring to reset method", "proba": 5.849215085618198e-07} {"commit": "f5af4acdfd438ecddef50714c32c2253cba8ca95", "message": "Added some comments", "proba": 1.1900917940010913e-07} {"commit": "1df0f667e6b846d9368923f6ebf20d0fa793da57", "message": "The test_name needs to be set before running cleanup.\n\nSo we might as well be able to set it in __init__.\n", "proba": 6.263501290959539e-07} {"commit": "4ffba518386124927dcc4163901dc414f5305271", "message": "Change the root key derivation to use subkey() and ints.\n", "proba": 2.3822896366709756e-07} {"commit": "0e31f2408aee32fa2d3564bafc7db5bf1f77a338", "message": "[FIX] npybabel shebang line", "proba": 1.1628792890405748e-05} {"commit": "6a8c086c9ae435bbc21ed8846e000b7bf7919856", "message": "add example\n", "proba": 1.502204895587056e-06} {"commit": "608914a1289e15bed73c62ba0f21cc9262e1ade7", "message": "fixed naming bug\n", "proba": 6.24736969712103e-07} {"commit": "1a81bcf137625df9e2d0e1962c9036d81670d0c7", "message": "Add better timing messages to the output for optimize.py cuts.\nUnderstand how much time was used overall by the processes parallelized out.\n", "proba": 1.341403645938044e-07} {"commit": "8c71a05b8791ad57c99bcaf8d2cf48aa72f94b00", "message": "Fix error when rx-ing two guest announcements in single string\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 1.594729292264674e-05} {"commit": "75acf32044d11fc74caacbff1ecd5b182be65a57", "message": "Make sure only the Oz's ssh privkey is used\n\nThis makes sure, that only the key provided by the ssh's `-i` option is\nused. This prevents the ssh's \"Too many authentication failures\" error,\nwhen the user has multiple ssh private keys.\n", "proba": 1.968749785419277e-07} {"commit": "076bd0920cacd8ecdfc82efbf67721e8c6967f65", "message": "page translation\n", "proba": 1.0558939038673998e-06} {"commit": "b9e4f2ebfb57ff2f4ab58c6a1e1cd8a4f9e55354", "message": "Fixed shortcoming where the script couldn't make valid archives from some paths.\n", "proba": 1.0522894910991454e-07} {"commit": "e48ec833df80f0297bc7b91235a5ff982361fa7c", "message": "Fix typo in template exception\n", "proba": 6.848019438621122e-06} {"commit": "31cb00f3bc8151fd516645f07f3f74e69998cb33", "message": "brequire.py: add __slots__ to Require class\n", "proba": 1.1824586181319319e-05} {"commit": "ea3e1acb5569ff1133fea41c14b1dc93498b5afb", "message": "Prepare v1.2.448.dev\n", "proba": 1.6527687876077835e-06} {"commit": "ae3f9bf9b6c162a7f9386eab45219d4c442f7e48", "message": "Corrected some flake8 errors, overindentation and pycharm reformat\ndon't seem to play well\n", "proba": 1.248678813681181e-07} {"commit": "9a066f77f2e3ba62ba689098725006c1cc7c050a", "message": "Move the shutil.copystat() to the right nesting level.\n", "proba": 1.707207246681719e-07} {"commit": "bff5260dd9bc8a2550b3ff8387000c74c5e27bb7", "message": "Prepare v3.1.104.dev\n", "proba": 1.0861417649721261e-06} {"commit": "9a4175dcd05b4565addf614ab2e69044fffd9960", "message": "Return value directly.\n", "proba": 2.80423250842432e-07} {"commit": "aa02bc4d153bb4bd3a909dd041de167ffeaccc17", "message": "combaining 2 TDM arrays\n", "proba": 1.2680185079716466e-07} {"commit": "19b92e1199439017e05bf79408a863a91c34972a", "message": "playlist: Improve speed in PlaylistQuery class\n\nImplement the col_clause method for faster, sqlite-based querying. This\nwill only make a difference if the \"fast\" kwarg is set to True.\n", "proba": 1.0078717878059251e-06} {"commit": "bfab0d26355d5d9610dca59b3d8b86ce3a4b0445", "message": "missing import: get_version_from_cache_dir\n", "proba": 0.00032976834336295724} {"commit": "8525dc953b67b5a1dd2fd592188e0a717f17535b", "message": "Updated project Archive text, closes #264\n", "proba": 1.242070624130065e-07} {"commit": "79810c22f123926d434efac70279eba76f37250e", "message": "BUG: fix python2.4 incompatible code.\n", "proba": 1.4410237270112702e-07} {"commit": "4b589650191fa00eca4f07ffc7347497a15fb46b", "message": "vertical-align css working\n", "proba": 3.510371868742368e-07} {"commit": "2244cf96234ef6e65f0619ea6232280a951bc336", "message": "Add check for 'type' in slack event\n", "proba": 8.119404242279415e-07} {"commit": "96712f98a586481b415aace85be33a74f9e7abe1", "message": "Close old output views when starting Sublime\n", "proba": 6.137330501587712e-07} {"commit": "b8d053436c6c0b8255b3b4df9234c59ddaaae543", "message": "Cleaning up\n", "proba": 5.428761369330459e-07} {"commit": "a3aa9029681b91a3cf74bb27341b940ecfc4892f", "message": "Add missing exports for GraphQLSyntaxError and located_error\n\nReplicates graphql/graphql-js@a9e87ce3f31393e824544aa9d98ff17ccb745629\n", "proba": 1.7282160342801944e-06} {"commit": "9956a48ec86be4c0e7f1cbebc4116c66091b6535", "message": "[importer][s]: (refs #66) minor final tweaks to have importer work with web uploader now that we have Collection.\n", "proba": 9.732588068800396e-08} {"commit": "9fa4341ed1b69d08a19a0adfbc6d4b7bd16b7012", "message": "filter columns if variables field set in model\n", "proba": 9.168903716272325e-07} {"commit": "c22274ad80669be0425bfc19c370e7c997896f7a", "message": "make derivatives their own BIDSLayouts\n", "proba": 6.563441274920478e-07} {"commit": "4c25b1f4e50bd9b81c6d4a0854917cb618980ca4", "message": "Make reports more flexible and skip when jsons are not found (instead of breaking)\n\nWe need to be able to access metadata stored in upper-level files\n(e.g., top-level task description json files).\n", "proba": 1.9341389645433082e-07} {"commit": "567758c7725d6a2992b08c72c1f4ef6b244fe484", "message": "update again", "proba": 1.4777324963688443e-07} {"commit": "54d5d6fa54bbcdb42af8392d7c29d096ddedffce", "message": "fixing node resource typo\n", "proba": 5.379727667786938e-07} {"commit": "75eb9da9f80c5bce3ee2a218ef102c613465657e", "message": "Strip serial messages\n", "proba": 3.244124400225701e-07} {"commit": "8b41c422cf9e033d00fa622e8b4869978c238275", "message": "Update version\n", "proba": 4.1292173591500614e-07} {"commit": "8b2179f44cde365cc94a9188c2d49b1711d652f8", "message": "raid in progress causes it to update\n", "proba": 1.7245135097709863e-07} {"commit": "22a655a44c477b0819f5b7beb647cdd15aa66663", "message": "20395 CLI Replace module listing/globbing with alloccli.__all__.\n", "proba": 1.1303671954010497e-07} {"commit": "329ad302e23c9d44886a6ff85352e71afd482067", "message": "Remove unused imports\n", "proba": 8.691937409821548e-07} {"commit": "4c92f8c0d06cbeeddcb7efc443f2043a5692b893", "message": "Replace main with __main__ (#3518)\n\n", "proba": 0.9999964237213135} {"commit": "8c7c5fa6f420240eb7d4ff9321d206253831b9dc", "message": "Changed a test to look for an attribut existing and not it's value.\n", "proba": 1.1043896819273868e-07} {"commit": "42fcde435609663423570d1da0e1f5939d185209", "message": "Now has a loop. and a -t argument for the loop delay.\n", "proba": 1.6446510642253998e-07} {"commit": "6f7f5bc0026df12b64935b4e9db32cfc7b6e8829", "message": "[tests] fix flake8 nits in feature_csv_activation.py\n", "proba": 1.537423912623126e-07} {"commit": "95bff80e2e43cc3e608ac191b80d9d7ede7ac11a", "message": "forgot import\n", "proba": 4.3756534751082654e-07} {"commit": "fa908afd4547fefd314009d456e92354445ac677", "message": "IoTPy: Faces Text\n\nAdd Text to Pictures\n\nSigned-off-by: Abraham Arce <1dfe57b55ce8f50c56dfae5c09e251b17f16c0ac@gmail.com>\n", "proba": 1.4357382838170452e-07} {"commit": "034cf509679301ed0d8d975915b424bdd9d0c328", "message": "Improve grammar of delete.py\n\nChange-Id: I8a7e31e9bee67d165655eb7552b26ea5e4bfaa49\n", "proba": 0.997702419757843} {"commit": "cf8520bba6617cbb36fb52b1f21ca32f5c338a17", "message": "remove soundMod.py\n", "proba": 6.306909767772595e-07} {"commit": "76c22c11f0a70791986a09dbf02e969ac6292b16", "message": "Reorganize admin file\n", "proba": 3.15905282377571e-07} {"commit": "bdbc29d234330801137edec3a942f7ac65556f48", "message": "bin/handlers-merge.py added __main__bin/handlers-merge.py added __main__bin/handlers-merge.py added __main__bin/handlers-merge.py added __main__bin/handlers-merge.py added __main__bin/handlers-merge.py added __main__bin/handlers-merge.py added __main__\n", "proba": 2.6638301164894074e-07} {"commit": "015dfcac5c3b0613412390786cea1a8a1d09ee7b", "message": "Fix syntax error.\n", "proba": 4.03202056986629e-06} {"commit": "82b589b74a04ee43b7da197fd9dfa17e60ee6ca5", "message": "Several fixes to OpenGL's output parameters.\n", "proba": 1.2076266386884527e-07} {"commit": "76312ecb9969a672219888b636b72c6cbc1b3503", "message": "add URL of studio edit page to CSV export\n", "proba": 2.27390344775813e-07} {"commit": "e4d05fb0bdad8716110880bf99aa77ea6e4f881e", "message": "Fix #20 path -> base_path\n", "proba": 6.907377496645495e-07} {"commit": "d18cc6e2176afed41bf393547126ad83b69f602f", "message": "line delimiter conversion\n", "proba": 2.1884945454075933e-05} {"commit": "ffb12a46a51d2b1aeb774131ee20f78340b00954", "message": "Minor changes.\n", "proba": 1.6103231814668106e-07} {"commit": "4ffdd1aee228c4fc96c61bace41a7af25f3ab096", "message": "Align `alias()` in package.py on Windows with how it works on Linux\n", "proba": 5.899129291719873e-07} {"commit": "8c4c01062ec17f0fd204e9b465ebb141b28674db", "message": "fixed Txn execute\n", "proba": 4.654985730212502e-07} {"commit": "d2c783979b0e5a5e64047660bac047fee0abbaff", "message": "P\u0159id\u00e1n\u00ed asteroidu\n", "proba": 1.3251227528598974e-06} {"commit": "22091fc8c360a8ddffacb122e5c7d2c5fd50ae94", "message": "Implement day 22 part 2\n", "proba": 1.975374652829487e-05} {"commit": "ac8e652e57c3bceac219773b380d0643fda07ff1", "message": "Add ContextFactory\n", "proba": 8.407571385760093e-07} {"commit": "3feb307f909b90a8c26af72f2f706975f06ce072", "message": "refs #2082 Fixes typo in event\n", "proba": 1.4815297788572934e-07} {"commit": "ad588d5d1d6c33e2a1d958666c4e4affadb8beab", "message": "rename -S(--save-responses) to -a\n", "proba": 0.0018748188158497214} {"commit": "bac3e6ac104b7d724b68282a87b07209da4ce705", "message": "Shorter url. #254\n", "proba": 0.0350145623087883} {"commit": "08ee0691b6c9507d2daa94fda34f61dfca48c0cb", "message": "[IMP] Add the signal handlers\n", "proba": 4.928992325403669e-07} {"commit": "8e3c6ddd145817238e6ec49734f45040670c3a2b", "message": "English comments", "proba": 6.378467105605523e-07} {"commit": "9ed5b219537c04c799c3501a3acf99d402dcb39b", "message": "Store file URL/path using the \"name\" attribute instead of \"url\"\n\nThis improve consistency with file-like objects.\n", "proba": 1.1620278428381425e-07} {"commit": "40f7d9867ef326d2f922d16f171235def7b0faba", "message": "Improve FH script to show date (#112)\n\n* Improve FH script to show date\r\n\r\n* fix sick undocumented feature\r\n\r\n* What is technical debt?\r\n", "proba": 1.0628816937696683e-07} {"commit": "1ab5d687d1c54117204647216794b5efb290ce8e", "message": "added check on self.pc == None for KSP_petsc4py so would run without a specified pc\n\n\nM LinearSolvers.py\n\n", "proba": 3.8948022051954467e-07} {"commit": "6848b3ad8709a16a520ba1db1aa6eb94c201728f", "message": "Add test checking that unimplemented attribute raises error\n", "proba": 7.528626042585529e-07} {"commit": "8b02d34a55835b56d5027f396316af2ad2998bac", "message": "Convert student_proposal.listSelf to the new list system\n", "proba": 0.9999994039535522} {"commit": "ad23d7ac6e6255d98a7858d7b88d7b7cb51cc2db", "message": "CommandLineMonitor: Fix output when stdout is redirected. Also added a FIXME for a bug we have.\n", "proba": 1.0501781844141078e-07} {"commit": "87b70044ac7771344d0db16fb462764c0c831905", "message": "sh.run errors: separate stdout and stderr only when necessary", "proba": 0.0006575875449925661} {"commit": "bd0c830f9fab8761f971baa038e5f08a176c8822", "message": "Updated documentation\n", "proba": 3.951920461986447e-07} {"commit": "f0e44eea82ea1483314948dbc30340b709f063c1", "message": "better docs\n", "proba": 4.177538812655257e-06} {"commit": "530aad36e104c135ce9d5381fdc3b3d55b8a83c5", "message": "adds test for mcl_test.py\n", "proba": 3.5803518017019087e-07} {"commit": "a5664b96b36ed2ddb61ea910592ac7eb6570b91a", "message": "docstrings for parse\n", "proba": 8.661924084663042e-07} {"commit": "b71d06106b60ec5b7477ac2639155882a2c87024", "message": "fix regist other user data.\n", "proba": 1.381194323357704e-07} {"commit": "d42ac3ea0db95cd73643217c6867957367adbfe4", "message": "store 'ROOT' special section in a constant\n", "proba": 1.726302070892416e-05} {"commit": "7edae196be9991b14e99bf43d19fcf5c9d6e59c9", "message": "Making a deepcopy of os envs and updating that to fix a weird issue on Theta\n", "proba": 1.2707229757324967e-07} {"commit": "858e2a18e1c31114a1e66ff05282b4e180a60bab", "message": "Added class docstring\n", "proba": 2.7511742928254534e-07} {"commit": "801d3cd640ddefb4d16dda8aff3beaa4e65327ed", "message": "update version\n", "proba": 3.3994695058936486e-07} {"commit": "2e4a50076128c72738451856058b2655933bc731", "message": "Expressions: don't call pool.get(None)\n", "proba": 0.9999994039535522} {"commit": "0ae24909d9b81525e7e4751734df4b3168ce7e77", "message": "Cleanup test and better naming of test case", "proba": 4.6252046104200417e-07} {"commit": "dea1eee231f0bf92cc5611bee580e974b1f14a9d", "message": "Bump to 2.5.18 dev.\n", "proba": 1.0619495327546247e-07} {"commit": "2c1c18e47a55db592c697d6862aa7451ec58035e", "message": "Wire up Bango constants into payment account form (bug 820961)\n", "proba": 1.2800886395325506e-07} {"commit": "f89bd22dbf5557fbafafc6522e1f9b11f35bbcbd", "message": "Convert binary log file to log file\n", "proba": 0.9999994039535522} {"commit": "8eb67667ef2c80344d43230292adfc6b97cc261a", "message": "Revert \"Add migration for Image\"\n\nThis reverts commit 28d07102411cbd019bdac97ce6e1251af3bffd35.\n", "proba": 1.249404277814392e-07} {"commit": "3d513edc9e0b9ca72198769a5320cf5dbe15e0bb", "message": "Explicitly convert the port argument to an integer\n", "proba": 0.9999990463256836} {"commit": "e2e69e5c299982a3d15c0a8edbb81fac5448b393", "message": "fix normalizaiton of data with patch drawing\n\n\n\ngit-svn-id: 94173bd64de46a96edb3f322c9878bdd956bcbff@555 40e545cb-b269-0410-8983-4113551e4d47\n", "proba": 7.499632488361385e-07} {"commit": "26695804abd2c2292cb195c51b8c50981d74b62b", "message": "Fixed another typo.\n", "proba": 1.7548826747315616e-07} {"commit": "c7be0b1d690decff31b15d1adac8868a4bc67727", "message": "monitor: Conditionally import windows stuff and fix HighlightedStatusText msg creation\n", "proba": 1.4580392360130645e-07} {"commit": "5486c3d30286c8dfe0c2c43747d829254aea2b31", "message": "New cards in my collection\n\n* Feral Spirit\n", "proba": 1.1050576631532749e-07} {"commit": "e63fdf7344f7bcf45fb68b2c2209eccc9922161a", "message": "add screenshot button and d.\n", "proba": 1.3055154113317258e-07} {"commit": "9f9e659c4004bde586d5572c9057c6ca5bc7721f", "message": "better params\n", "proba": 1.850321132224053e-05} {"commit": "b4f2f3f5373ec780f39f6858949a7d0a229ae9b0", "message": "added ent and method param\n", "proba": 2.5073268261621706e-07} {"commit": "bc76dd2a0b1a8b5a83d7b93bd32b8b36e4a7e2a6", "message": "Don't exclude own email accounts\n", "proba": 8.450448945040989e-07} {"commit": "bb59025c515fa6ac648a249cbfb9fecb6128bc92", "message": "Copied elasticsearch port from another elasticsearch travis user\n", "proba": 1.3062202697255998e-07} {"commit": "f31e7e769914210cec72d3876430f9addb427307", "message": "Fixed canary event\n", "proba": 6.02280920247722e-07} {"commit": "17ec10824740242c807811c89e569cf9e16db10a", "message": "ENH: Remove circular import\n\n`__init__.py` imports `base`, while `base` imports `radiomics` (`__init__.py`). However, base is only needed for the inheritance check in `getFeatureClasses`, change this to allow removal of the circular import.\n", "proba": 1.3199674242514448e-07} {"commit": "0a72b35cb9728cba1f5ee2a4c96bec0a35f6999d", "message": "the default table syncer\n", "proba": 5.912161782362091e-07} {"commit": "a99f36d005076e097aaa2eb2db53e1f35d2c0d2b", "message": "Bump to 3.0 RC 2 dev.\n", "proba": 1.1344353367803706e-07} {"commit": "eb3ec714a18dc92ae94f1135914ff453ac899805", "message": "Add failing test for django-cache-machine uprade (bug 883477)\n", "proba": 1.5794373098287906e-07} {"commit": "49c6fae3a9f58977be51b2b746309616d9a1eeed", "message": "Simplify pytest.fixture rooms_list and dependencies\n\nAdd group_room, direct_rooms, and team_room to the use / dependency\nlist of fixture rooms_list; remove these dependencies from the tests\nthat depend on rooms_list\n", "proba": 2.2816286673332797e-06} {"commit": "641877bfa5bc888ef478a64e227d0f9dcc17e72d", "message": "20181222: allow access from all hosts\n", "proba": 2.224686141971688e-07} {"commit": "9983603df2c5fc181f775dbb4812c199261dcf4c", "message": "Refresh env before every popen.\n", "proba": 1.1221151652307526e-07} {"commit": "a35839aa4798d04cfcb0105cdcc59279c916de90", "message": "Removing unused pprint", "proba": 9.506532023806358e-07} {"commit": "63ae4274a54827e6f302510aa3db1367a5396ad8", "message": "Add method to return the relay state\n", "proba": 7.140545221773209e-06} {"commit": "9dfdd256fcbb681449fbcfb419a4522dd0ef5941", "message": "Modified the 'search' field to use a HistoryEditor instead of a plain TextEditor.\n", "proba": 1.1821757794905352e-07} {"commit": "5c67ddc0a8b83e21b86d4f887c11d9f5e05bcfe0", "message": "Undid unintentional task reordering.\n", "proba": 0.00010086182010127231} {"commit": "250eabfb3e5ca4806d302d6de12935daea418cc6", "message": "make large rotation penalty optional in chpi function (#8770)\n\n* add option to penalized large rotations\r\n\r\n* Use Bias\r\n\r\nCo-authored-by: Eric Larson <14e6e0d1a6421c3f4a71ec06bfae870e115e40b0@gmail.com>", "proba": 1.271185965379118e-07} {"commit": "f3a10eb9fec11ebede62a99de097ad064ba5fb40", "message": "IronPython does not support regexp repeat qualifiers of form {,n}\nSee http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=18747\n\n--HG--\nextra : convert_revision : svn%3A79c32731-664e-0410-8185-e51b9e89f9fb/trunk%40855\n", "proba": 2.1632934021909023e-06} {"commit": "7b60759335a903099196f081c6b25d36c59f0243", "message": "make \\end{blockquote} in new line\n", "proba": 0.0002626842469908297} {"commit": "1b37df3817e0d78d356e9108347ff7c4c0e0e6d0", "message": "rungengui: shrink total time textctrl\n", "proba": 4.018274012196343e-06} {"commit": "2f13e61e01a3655dea495378e75b34a3386eaf4d", "message": "remove extra space", "proba": 0.002319066785275936} {"commit": "ac022dd297c7beb262a2f871286b2cfae03ad4a1", "message": "card_bot: keep last comment seen, not all of them\n\nWe will need to keep a list of comments we've replied to (not neccessarily\nthe ones we've seen)\n", "proba": 1.810760892340113e-07} {"commit": "c4ee82dc98ce46289119d1184af2d255eb01f625", "message": "Fix settings file.\n", "proba": 1.776679852127927e-07} {"commit": "fdd3c44577244144ecfbd554b46d8b8d72562ff7", "message": "Now storing the case of the names of players as an attribute for Player objects which allows for neater output. As part of this, the \\!alive command was finally tested.\n", "proba": 1.0259584826144419e-07} {"commit": "7381e58259fd6b73bf55d2c9affc06459cfd7784", "message": "10x speedup of build_output (or something like that)\n", "proba": 1.1246649478380277e-07} {"commit": "c6920910171e46c1b0f03772b245ddcdb2dc1f8d", "message": "Made participant grabbing sync\n", "proba": 1.522496120287542e-07} {"commit": "bd040d3674c2a8a89d7998f43fedf5093d34a253", "message": "auth_test uses schema metadata from the driver, not system tables\n", "proba": 1.5121153182917624e-06} {"commit": "afc5467ea5713b2e75c3e425f5ec5acd89c99a7f", "message": "STY: Removed Events class and converted CamelCase to camel_case\n", "proba": 3.3505020269331e-07} {"commit": "6ded62c749aeb046607bf3f852c2aab5a9d21d0c", "message": "Unit-tested out of gas exception handling (via DSToken/ERC20Token)\n", "proba": 1.1551993850389408e-07} {"commit": "fb73768164a0d885204838a8ec14a181d81c9431", "message": "Fix Tuya Option Flow tests (#46651)\n\n", "proba": 1.170566719110866e-07} {"commit": "4e5d0f5d0969217e46be646a5aa9225f89fbd6a5", "message": "A5: begin writing TestPuzzleSolver\n", "proba": 2.5123914383584633e-05} {"commit": "469c7fc40d7af060fa7d0ea5f6cf25ac089a8a16", "message": "[FIX] Adapted yaml_tag to serialize custom tags in module recorder.\n", "proba": 9.858344185431633e-08} {"commit": "335c3f88531777e1acf66c6a9ec7f6c6130feb9c", "message": "support for static filters in SQLDataSource\n", "proba": 1.7147833375474875e-07} {"commit": "6fb3a0179026dd24d8a477a8d896535e16530bb5", "message": "adds log gathering release test (fixes #81)\n", "proba": 1.0751583090495842e-07} {"commit": "6fb803099f9df241079bd4a0c3599caf9e1e48d1", "message": "frequency filter\n", "proba": 1.1247716429352295e-06} {"commit": "6b8d3e6fa96469a8b46cb160d66c837c65b3bcbb", "message": "ONLY FOR THE OLD STYLE TOMO MEASUREMENTS: Improves meas_obj_names extraction in get_observables to ensure they are in the correct order\n", "proba": 1.289019166961225e-07} {"commit": "3d5a0d2bd101f79df66d4720e1056227c5391196", "message": "Add loglevel attribute to collector\n", "proba": 6.587521284018294e-07} {"commit": "a3b0820c5ae212a6ff3b794f57aab89622a28be1", "message": "Added FIXME to place where I assume is a bug.\n", "proba": 1.035935781601438e-07} {"commit": "bb75c99a3881b64479235e0b30ec86069265c744", "message": "changed JSON data structure according to Sylvains comments\n", "proba": 1.780647238547317e-07} {"commit": "a61a49afcecd4cec9d5564cc8df67b303f5d0706", "message": "#2725: Fix searching to the correct records form rt.models.cal.Guest\n", "proba": 1.393086961343215e-07} {"commit": "eeb5e8171f0e26b72b3940e3b307f3ac9ccf76e5", "message": "removes unnecessary imports in cardinal.py\n", "proba": 2.7072553621110274e-06} {"commit": "274584c44fa12cd5c79ad1f36ffcc3d6685b5aee", "message": "Add fake EZID username and password for client testing on travis\n", "proba": 1.3710210566841852e-07} {"commit": "ebbbecde5513e6de8fd89fca4fc3871252c3acec", "message": "Fix URL\n\nSigned-off-by: Paul Durrant \n", "proba": 1.7122960116466857e-06} {"commit": "220ac685077aee68dd6e3078bfe4b1314b1f0f5d", "message": "Update confidence intervals after data point is added\n", "proba": 1.8562475645467202e-07} {"commit": "265ddfc2e46b03db976b4a2bf95d116169bd1a6d", "message": "blacklist to remove (#8994)\n\n", "proba": 1.3218394201430783e-07} {"commit": "362332556cfdc60b556d788adb836fff322582fb", "message": "Added MessageHeader and MessageAlternative models to add custom headers and alternative content types to queued messages.\n", "proba": 1.0068325906331665e-07} {"commit": "ed16d142f31c625d5619b3854772ee43280a6069", "message": "Refactoring in app.py\n", "proba": 2.361842462050845e-06} {"commit": "9bed6dba6bced1e1e958f5263134465b6f8b60db", "message": "added new model for Gplaces\n", "proba": 1.3045769264863338e-07} {"commit": "a28f3266e013fa1aba4d99a117a71490fe6cefff", "message": "Formatting improvements from Andromeda to make complex header structures less awful.\n", "proba": 1.025359850359564e-07} {"commit": "61b362d11525a5ff12d0fd858e362b0526ee1f1d", "message": "fixed substitution string for \\footnote in latex2text\n", "proba": 3.561214043656946e-07} {"commit": "31073ebda53d4848ee0429b73d23c88f054ea2d4", "message": "Initial addition of multiscale cnn model (not yet fully supported)\n", "proba": 1.0012941231707373e-07} {"commit": "fe936b47c64c068efe4d31539b97d516e72ba9e8", "message": "Hail is now working\n", "proba": 3.3867684123833897e-07} {"commit": "d1a6a3aef4ef6c4b4f4141fc0bf65722e1b7e33d", "message": "Remove import readline from rocommand to prevent escape sequence being sent to stdout\n", "proba": 1.6625435250716691e-07} {"commit": "49b82a92c16d660a07bd88f8e1a2c08e23c9a2bd", "message": "'Nones' problem fixed.\n", "proba": 6.335523721645586e-06} {"commit": "e3f46d6f48ac2a7fab0c61c600a97cee1635e790", "message": "fix config param and description patterns\n", "proba": 6.798666731810954e-07} {"commit": "cd6bfa5c43927a58b92399472c5d659ce1e1498b", "message": "RLS: pyline.py: :fast_forward: https://github.com/westurner/pyline/commit/f7c8a16\n", "proba": 6.395205218723277e-07} {"commit": "45966367b2af3688a3fa915578d08854543833e1", "message": "Expand user and environment variables in PythonLinter\n\nThis is a backport of the PR #64 from @gerardroche\nTy\n", "proba": 3.4982207353095873e-07} {"commit": "7a3bc0e269cf9f866359dcf7bfb0b3a037a3495b", "message": "selenium test bugfix\n", "proba": 6.166524144646246e-07} {"commit": "88087847e251c045b3f4462663ba66efc1b6d2b1", "message": "make sure obj is dict\n", "proba": 0.9987190961837769} {"commit": "3d297307f76c55fedf3773d8c421085ebbfb59a7", "message": "RMK-475\n(1) Add a configureClient boolean parameter to __init__ so that helper.py can\n be used as an api without having to create a client object.\n(2) Add an api to helper.py to call into query.py to display job and logs info.\n", "proba": 1.0698417440835328e-07} {"commit": "27188340c5f245b37c8fea48adcf6b02ff425ee0", "message": "Fixed non-HTML templates autoescaping (#9)\n", "proba": 1.267603835231057e-07} {"commit": "122f38717170766473df4dffd79632f90b3d41ad", "message": "Adjust init verbose and enabled mode handling\n\nReduce complexity and leave the enabled mode to be used\r\nwith the toggleable decorator that disables functionality\r\nwhen AXES_ENABLED is set to False for testing etc.\r\n\r\nThis conforms with the previous behaviour and logic flow.", "proba": 1.0375414660757087e-07} {"commit": "57b34d3593031e1861722b3d48c550c138eb6aaf", "message": "Generation gml de sortie\n", "proba": 4.404722631079494e-07} {"commit": "c66f64fcee9687462e26b903f9315ce428623ad4", "message": "handle config files changing to symlinks\n", "proba": 6.361360078699363e-07} {"commit": "e865c5801a2c2dd9823d63f9d0a4ea668e0352da", "message": "Made canceling a title jump via the quick jump restore to previous cursor position\n", "proba": 1.475777651194221e-07} {"commit": "6754151db8c61e635b8bae21fa4725535f3a15c9", "message": "Version 1.8.0\n", "proba": 4.111263933737064e-07} {"commit": "f5dcc5fbc357b59866c7e79e0ee01901eb180ce0", "message": "Improved MultilingualQuerySet\n", "proba": 2.1202873767833808e-07} {"commit": "ca12e93f04e974b1354076bd5ed8a05472affe10", "message": "oops, more cut and paste error\n", "proba": 1.3187218428356573e-07} {"commit": "5c23c95503053df6bb8badce92338c5928c14de3", "message": "preserve order where possible when generating flat_type_info and simple_type_info\n", "proba": 4.296768383937888e-05} {"commit": "3e7daa94ceee6ca1697a2b297c411069731caae3", "message": "rremoved old code\n", "proba": 1.5620265685356571e-06} {"commit": "72de95d7c41df23cf5e4aad6bbfb321e8fb47ac6", "message": "Avoid encoding errors\n", "proba": 0.02238694578409195} {"commit": "ae5a3e6c417ebd4f90d0ab07adc2ef01ea4a1d54", "message": "negative atom-pos as vector\n", "proba": 0.9986494183540344} {"commit": "71ba375518ae2ffc46a71ac50ab1b1855b560a4c", "message": "Update all drivers\n\nSigned-off-by: Paul Durrant \n", "proba": 1.1239487207603815e-07} {"commit": "fd32487786fe96c164e7acbdb8e78463f5b3787c", "message": "Fix to setMcGowanVolume method\n\nSets the V parameter to the McGowan volume rather than returning it\n", "proba": 1.342987019370412e-07} {"commit": "1820f569b6abc1a6ccc2a2a5dfc26a1b735d069a", "message": "Adapt profile list to pathlib\n", "proba": 6.803265364396793e-07} {"commit": "9b0f664dcd1f1da566c8bf29675e888c49161f24", "message": "Remove redundant comment\n\nSigned-off-by: Aleksi H\u00e4kli <44cb6a94c0d20644d531e2be44779b52833cdcd2@iki.fi>\n", "proba": 1.5980810985638527e-07} {"commit": "b75c5ce6ea65b7fe55cb1bc03aa629b90caac91a", "message": "Debugging\n", "proba": 2.1159132757020416e-06} {"commit": "ed4890a2931c0d7a13b229311bd63314484834e4", "message": "new ver\n", "proba": 5.567165999309509e-07} {"commit": "fb00c3d5ab90230d84c3375557d1c46eb30c96d0", "message": "#1084 add data serialisation in evaluation store\n", "proba": 1.666488174123515e-07} {"commit": "fa7eafaa4398a1faf7e9046b5260e955b97368f4", "message": "[Addon] Persistent self.info\n", "proba": 1.4949462467939156e-07} {"commit": "3379b08d458884f8188e0696f1674666946e4f70", "message": "2% for evaluating in trainset\n", "proba": 1.0675444883645469e-07} {"commit": "610bb92462129b0b6df4929ba9e1d70e0ce5fa1b", "message": "typo!\n", "proba": 3.8623184082098305e-06} {"commit": "6e69c9753c2af810bb1b23401c04591c48a29ea1", "message": "Added share size checking if creating from snapshot\n\nFixes bug 1231974\n\nChange-Id: I3148586de47a2474fdae288efb3adefd401f4552\n", "proba": 3.415884179958084e-07} {"commit": "65490daac61b99d962aa65cd266bf93ea9f2c524", "message": "search: Renamed \"relevance\" factor to \"weight\"\n", "proba": 1.1805565918621141e-05} {"commit": "0ac23a0dfd4f39ccd9b2bd308725925ff719b894", "message": "Dojo version 1.2.0 is now default!\nAdded more detailed documentation\n\n", "proba": 1.0507211811727757e-07} {"commit": "6ba08ea8fee2aa9c3abbcc7ff7188e9c0b3560cf", "message": "Few more fixes.\n", "proba": 1.2052737474732567e-07} {"commit": "7016c9e11aa97f39a5ddf9cadfcaeab20c68e1c5", "message": "Hide survey menu item if surveys are disabled\n", "proba": 4.731060698759393e-07} {"commit": "3362f68d3b564528aebb446dfb6388d4c5c2582c", "message": "use the troveVersion, not the fileVersion, when retrieving contents from the repository\n", "proba": 3.0202016887415084e-07} {"commit": "8939bcda2a1c9da22efeff9066fd233d42d0f2ec", "message": "update regex for Lords motions titles\n", "proba": 2.406781050012796e-07} {"commit": "554b00e66d92ebcadcffcc3a049929c2de5879d1", "message": "Append slashes to URLs\n", "proba": 3.400502828299068e-05} {"commit": "86ad6441ac4f88ab78e8dec6f2ca8879982f6012", "message": "[ExtractArchive] Bugfix\n", "proba": 1.9493550951210636e-07} {"commit": "74c1cd778ef9ce92e9660dde56abf7288ae72034", "message": "Remove relay state from wget url to get around recent shibboleth changes\n", "proba": 1.491862775537811e-07} {"commit": "f803f7c3ab5ff5d0e837564536000840e33af125", "message": "ext.sqlalchemy fields: Added deprecation warnings and import-catch for sqlalchemy.\n", "proba": 1.0172212938641678e-07} {"commit": "fbdff8575ecbb97bea48885b4e257ccac67e5fc6", "message": "Get rid of empty views file in manuscript.\n", "proba": 1.0995093191468186e-07} {"commit": "0d499cb99cfc0346db6faad3ca701da2cf1d4712", "message": "Create mapping for edge\n\nAdd mapping for events\n", "proba": 5.644469638355076e-07} {"commit": "bdc8d2a8a0cd3bd627a7ec3e925bf1c9f6946d3d", "message": "Horizontal- and VerticalSlider now accept min- and max-value\nAdded initial RangeSlider widget (at the moment commented!)\n\n", "proba": 9.746037221702863e-08} {"commit": "3ee94b205fb067ce7e84e9d6d8a11ca8c8abe147", "message": "Add load_children to serialize_session_block_entry\n\nIf set to True then the children of the entry\nwill be serialized as well\n", "proba": 4.2908447994705057e-07} {"commit": "ca6937ce3343b4bb5540721f4cddf8644b590d51", "message": "Updated script\n", "proba": 6.253843594095088e-07} {"commit": "c8e3ad8ba7fa6aa95468eb810b2890c6909df840", "message": "SceneInspector : Disable meaningless history queries.\n", "proba": 1.2700930085429718e-07} {"commit": "f0e868ec68bf83c8a0ab39230e1d7c38884ff08c", "message": "add method to iter accessible files recursively\n", "proba": 4.3286863160574285e-07} {"commit": "ccc698a7db0f0adb2962a8bbab8f9dec5514088c", "message": "Removed trailing \\0 from partition name\n", "proba": 3.1552851851301966e-06} {"commit": "4006077dccc9b53dab8d09fd179d4c10c0041854", "message": "Corrected find_start_points()\n", "proba": 3.22664636769332e-05} {"commit": "332c76eca2448ca03435338e98697ef0b9a50855", "message": "Finally add real documentation.\n", "proba": 1.0915439929704007e-07} {"commit": "bd64faaa3190e2d2c895e24ee2439836d5d37767", "message": "\n\ngit-svn-id: https://subversion.assembla.com/svn/threedhst_internal/trunk@335 f9184c78-529c-4a83-b317-4cf1064cc5e0\n", "proba": 6.257828886191419e-07} {"commit": "61ae254d43ea51beffe0ef898ad5396758530743", "message": "Update paper query.\n", "proba": 1.21367691008345e-06} {"commit": "05e2cb23c0158614097b60508c48bd8af36fc314", "message": "Better options bundling and also using pandas to cache the datafram so caching should work again\n", "proba": 1.2332841947682027e-07} {"commit": "df99b1a72dadcd4f0c2bf7e5cb158633924d42d8", "message": "Typing for several users\n", "proba": 5.356670840228617e-07} {"commit": "41a4c1823acdad1001cec5ad15bf12ce287b7a91", "message": "SceneInspector : Remove use of deprecated parenting keyword.\n", "proba": 1.1375576036698476e-07} {"commit": "a3f9a193b4a083da47800e50f5ed809449f9577b", "message": "Added basic support for pypiccolo.py library which is used for existing\nchange lookup (without requiring a p/p2 exe and checkout area, useful for\nviewing VERY old changes). Also added support for\nignoring file additions when using --p2-changenumber flag to post existing\nchange number.\n", "proba": 1.0572809117093129e-07} {"commit": "2043feda08d67a1ea91a3b506b5ea0e22d5d7ce7", "message": "Modify the imports to keep the organized.\n", "proba": 1.2934251003571262e-07} {"commit": "2dd9f1df7abc8bebc9e08fb6c46ecb09f8f2ef9d", "message": "Update multiple actor systems test to avoid test actors repeatedly sending messages back to themselves.\n", "proba": 1.0887764290146151e-07} {"commit": "bae4a9b21cca82dccd030de59fc1a673e6202c3d", "message": "Have find only grab _id\n", "proba": 1.6897799071102781e-07} {"commit": "0f319dbd8b27572efa0587b759ae60afa9db91cd", "message": "removes comment\n", "proba": 3.892741062827554e-07} {"commit": "3cc51e4b049cbd2a08d39744cbbc7dd70885fa18", "message": "Convert island label tests to generative.\n", "proba": 0.0015534276608377695} {"commit": "f0d1ec90ffd9097a8832b5e23996968e4fcfee17", "message": "fix connection keyword overriding\n", "proba": 1.6265182694041869e-06} {"commit": "e80978da4ce452dcddf1b80955864c446eb2a238", "message": "Add in artful and bionic to the short os names. (#493)\n\n* Add in artful and bionic to the short os names.\r\n\r\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@openrobotics.org>\r\n\r\n* Fix obvious syntax error.\r\n\r\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@openrobotics.org>\r\n\r\n* Alphabetize the releases.\r\n\r\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@openrobotics.org>\r\n", "proba": 0.0016875804867595434} {"commit": "56d92470787ea7b0450c2ee7e136852a2c48a84a", "message": "Fixed not-saving-the-new-RPKM-table bug.\n", "proba": 1.110862797304435e-07} {"commit": "6bbc2827431068bb31efd458439ab403dffcb52a", "message": "Add test for unrecognized mol_format and update docstrings\n", "proba": 1.9782278570801282e-07} {"commit": "10f1500fb06e66a662c05ad2d4e59a0a4c668d5d", "message": "Barchart sorted by count.\n", "proba": 1.5744788584015623e-07} {"commit": "f9b9167145dfe783d87bde5b88d21d7dda85c16a", "message": "Rename and improve get_server_from_config.\n", "proba": 1.2372790081371932e-07} {"commit": "27a0f52544367c24d2e476e29b576b7bebae21c4", "message": "fix docstring", "proba": 1.8441871361574158e-05} {"commit": "c868fb4cd6ecbe4c79b483195308a95433c0a9b8", "message": "* Remove unused aslist_crony and aslist functions. * Only print failed scrub attempt instead of dying. * Replace ConfigParser with CBCConfigParser.\n", "proba": 1.0744859224587344e-07} {"commit": "e6b6d6f6f1ef63ccb87822a641c7ff442e9c7532", "message": "Make normalization script parametric on HDF library\n", "proba": 2.445272286877298e-07} {"commit": "29936c29685b7298a8965b69f071004f1b315ffa", "message": "Change implementation of wrapper state corner case cleanup\n", "proba": 4.129024375743029e-07} {"commit": "42979118b9ea73e213d82e3f3910c7b8bebd995c", "message": "server: Don't throw exceptions on being ctrl+c'd\n", "proba": 4.974893727194285e-06} {"commit": "24c4d27a7b2be3cfca7d2f128b16175f1e3d4ca7", "message": "Adding default values for record_latency and language (#252)\n\n* Adding default values for record_latency and language\r\n\r\n* Removed whitespaces around the equal signs\r\n", "proba": 7.083451691869413e-07} {"commit": "cda4d91ca38d1daea35dc83887ee656149a825a9", "message": "Binary: Expose pure hex dump", "proba": 5.88077796237485e-07} {"commit": "fdbefdaf74698b7da957d69c4a8a39149332ad2b", "message": "Use put_no_wait to enqueue request\n", "proba": 8.001075002539437e-07} {"commit": "9a225e1399f74d92815de645cd9ddeed0b877463", "message": "Remove django-qbe from settings.py\n", "proba": 1.0983100082739838e-06} {"commit": "489bc47a58389ae4d82bc1c0da980f02db9ce76d", "message": "fix(python): include draco.bundle.js as a static_content_filename\n\nThis fixes support for Draco meshes when serving the Python Neuroglancer client from pkg_resources.\n", "proba": 1.0694031260527481e-07} {"commit": "c603e4819b20000e7e87576413626ae54f5d9c8a", "message": "Update cdbifunc.py\n\nSimplified function calls for update_all and new_household (formerly new_client; renamed for clarity). Functions now take objects.", "proba": 1.0276564665900878e-07} {"commit": "50fbd00b3e8fd822f1797bcffab806c7ddf41998", "message": "Fix problem on user deletion\n", "proba": 0.000773277715779841} {"commit": "1db95e3e154c939c6572c2b4635abc79d27fdd2c", "message": "add richer student info; fix exception\n", "proba": 2.152892477624846e-07} {"commit": "853e91a16a8f5f4e926877d52014b9cc4f9fd789", "message": "Make process scheduling parameters be passed to PD via haagent\n", "proba": 1.3606215532036003e-07} {"commit": "a86befd30939a8dea7301b84fc6053db31208fd5", "message": "pep8 style fixes\n", "proba": 1.6952145642790128e-07} {"commit": "a53cc0934c23a90440ad4cb13e303fb1afa3cbe4", "message": "Add function to find the nearest node to a set of points\n", "proba": 7.062129498081049e-06} {"commit": "7753970620d748e1d172c5df7174a4863a11e629", "message": "Spacing in compute/core.py\n", "proba": 4.1330744693368615e-07} {"commit": "866a994114e6a77cbd1d58953019417689a038a7", "message": "Remove old fitting functions at test time\n", "proba": 3.9784853811397625e-07} {"commit": "9a664d349f7129cd8320c2e75d60de4dab11d0b1", "message": "Trying to get the webserver working, made a few changes", "proba": 5.317773457136354e-07} {"commit": "e163282351fb453fe4c2f247443788dcff464ccd", "message": "Now change password directly need the current password\n", "proba": 2.455449248373043e-07} {"commit": "fd5b86024357d895fe453c0422a65478476e767d", "message": "Changed vis service queue monitor to every five minutes by default\n", "proba": 1.747332589729922e-07} {"commit": "fe6ec9072c68d6d7f4f92ee72d2c0c9a52bfb379", "message": "improved help text for cli interface\n", "proba": 4.915449380860082e-07} {"commit": "1b573e4e7078826dd037768baca8c80210e59fe2", "message": "fixes #4, fixes #5, fixes #6, fixes #7, fixes #8, fixes #9, fixes #10, fixes #11, fixes #12\n", "proba": 5.324619110069762e-07} {"commit": "4a6a2ba602e0259b7049e5b04a63f0a79c1bb041", "message": "cleaner\n", "proba": 1.0178488082601689e-05} {"commit": "8e0453d27194ffbe5b5b54f214c0b87290d7b8e3", "message": "Changed cert request to NONE\n\nDone to test issue with caFile.\n", "proba": 1.0400220418205208e-07} {"commit": "45e1d5e4ff2e606fab03fd11f63e21651de95ead", "message": "fixing issue with cert file not being written when update_sshagent is set to false. it should always be written.\n", "proba": 1.066777102209926e-07} {"commit": "7c6572cad7b3fc77e574418c699e5870fd2983bd", "message": "Revise cluster related key definition in rpc api based on current\nclass implementation.\n", "proba": 1.0373454983891861e-07} {"commit": "8469b2b154e27792b57edde82ec3a9357e89dedc", "message": "Fix convert test by using read only repo\n", "proba": 3.6419055504666176e-07} {"commit": "4e16891eeb7a035f133b7df0f104505d76f16fef", "message": "Do some checks in case the user doesn't have yet workouts or diet plans\n", "proba": 5.976777401883737e-07} {"commit": "05d4a0089c7771af2f15c20be2fa1568f52e7420", "message": "Fix merge_docstrings.py", "proba": 0.00018581656331662089} {"commit": "a13a5240e6c1b54f043fcaa0968bce304d61da9d", "message": "Fix typo in DatasetMonitor\n", "proba": 0.9984557628631592} {"commit": "c844e47f9e4fb0517767e66a0176eadf71e14315", "message": "clean up failing book search unit test\n", "proba": 2.5900258151523303e-06} {"commit": "7ddd9b1b978f3892f10f9f2b8a31e7895e4a3fa4", "message": "Handle codec errors\n", "proba": 1.179082664748421e-05} {"commit": "56bfff9ff01aad983790ac13a48043707e3492fc", "message": "Remove a remaining bit of code that relied on system.img being ext4\n\nPiperOrigin-RevId: 179607684\n", "proba": 0.00015690992586314678} {"commit": "84eb69908226ed78eceb4d6c69e83ca54c39cc21", "message": "Update modeling_xlnet.py", "proba": 6.336874207590881e-07} {"commit": "3aa4bec5b18c8df5a6a1cd99905e3eaaf2fd6ba7", "message": "More fixes for legacy data\n", "proba": 1.209877922292435e-07} {"commit": "d2d809e0c39a3b71bb83199f3bad4e91aac2b4c4", "message": "add capability dictionary\n", "proba": 5.44971499039093e-06} {"commit": "67b04190f4bc02db76a1000cf38348a3e33fcbfe", "message": "Fix VG free space check when shrinking an LV\n\nShrinking means that there is an LV that fits into the VG (otherwise it cannot\nexist) and thus we can skip the check for maximum size according to the current\nsize and VG's free space.\n", "proba": 1.3077109883852245e-07} {"commit": "7fc288d6094fe8ee01ec2a2bef159876487887bb", "message": "unit test for new pdf url method\n\n[#74309098]\n", "proba": 1.0622939328186476e-07} {"commit": "a48b26296365466bfe7d3ada9bf1fc5ef83ecb8c", "message": "azure - test fix - test_lock_action fix (#4777)\n\n* Nightly test_lock_action fix\r\n\r\n* Ordering fix\r\n", "proba": 1.7253951511975174e-07} {"commit": "2416e352e3a540e2a7e8237ff17947ff2fb45ec1", "message": "added shi and lez to sorting order for sr-wiki from trunk r9984\n\nhttps://mediawiki.org/wiki/Special:Code/pywikipedia/9985\n", "proba": 1.289159285988717e-07} {"commit": "1d0210a08cacfd7ed651569d94fa0001fec1251b", "message": "Don't echo warnings about unknown terrains to the client connection.\n", "proba": 1.0103934755534283e-07} {"commit": "4a1fa2c1accf8beda33682b9a597d15bc7e270d6", "message": "- Added smalldatetime date type conversion\n- fixed issues with converting camel case into underscores with identifier containing more than two words\n", "proba": 2.553618685396941e-07} {"commit": "99988f37d7c6ddfa773d3d6b738cb9b3b3acdcdf", "message": "release v0.2.1\n", "proba": 5.427850737760309e-07} {"commit": "c0a714552ae606d7c73ec0f6051c21a2fd20cf65", "message": "Add dartium buildbot step to clear temp directory on Windows\n\nBUG=https://bugs.chromium.org/p/chromium/issues/detail?id=645681\nR=kustermann@google.com\n\nReview URL: https://codereview.chromium.org/2355383002 .\n", "proba": 1.1282659784228599e-07} {"commit": "67d11158bbe5c369e6acab3b01a0a749c0cee910", "message": "Add header stuff to asv/__main__.py\n", "proba": 2.679870249266969e-06} {"commit": "b06b3eed24263950444a5d76278440e75512f936", "message": "Back to development: 0.8.3\n", "proba": 2.826835725500132e-07} {"commit": "09f1c7c0ec2f5c371218a9588b3b60b0c3033e4d", "message": "Add test for case insesitive columns\n", "proba": 3.343496928209788e-06} {"commit": "5281c9a028f6fc344357c2c9e0c06c171e16dfa4", "message": "vis.py: use basename of image when saving raw annotations to prevent file-not-found error\n", "proba": 2.2887259376602742e-07} {"commit": "4d2fda195bead37af9fe2831cd2d91fd01d977fa", "message": "Tools: DFG: Move files also in avr_reader.", "proba": 1.058857037605776e-07} {"commit": "00a591ba37c0318c30f53cb8cd7cfaf855cea73d", "message": " On branch master\n Your branch is up-to-date with 'origin/master'.\n\n Changes to be committed:\n\tmodified: async_curses.py\n\nadded a tablelayout method to ease the creation of a large number of windows.\n", "proba": 1.1854622528062464e-07} {"commit": "c6b47be0617ad620a61d159c46e6930e4c564c1c", "message": "neaten up main() in preparation for PLO and NLH bots\n", "proba": 1.437212375776653e-07} {"commit": "19e61300ad635e4a9c51abc3e61c168a5812e00f", "message": "Add keep_paths arg to git_checkout\n\nFollow-up to https://codereview.chromium.org/15271018.\n\nR=iannucci@chromium.org\n\nReview URL: https://chromiumcodereview.appspot.com/15520005\n\ngit-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@201356 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 2.0045041310368106e-05} {"commit": "145d2a2866b1c30c93068e3ae24869c47374d767", "message": "Bugfix\n", "proba": 8.038198870963242e-07} {"commit": "9a5a3740727250eee175f93b0b2d4bdf42684f49", "message": "Fix filters\n", "proba": 1.8860920363295008e-06} {"commit": "3553b87ab7bbbd20efd61d2c2ec052dee339eb3f", "message": "Skip attachments in XML data\n", "proba": 2.0273004963655694e-07} {"commit": "c6f87c3851abb9b033f7429f079497a8831a5e20", "message": "DOC: Correctify in-line description of what is happening to the event loop\n", "proba": 0.002323742024600506} {"commit": "0fb267dcae105fca5373e5645f74cd0523c0d4d2", "message": "add color_limits to viz\n", "proba": 9.724828942125896e-07} {"commit": "159f5ab20846839823794c0f7b866302a3031b76", "message": "Day finder created\n", "proba": 1.6342818298653583e-07} {"commit": "606cf9ee216811d7d979b031db07defa435d6daf", "message": "DOC: fix spelling in comments\n", "proba": 0.000207684570341371} {"commit": "13d8897d71f223c93caa133595bc1828af848b92", "message": "try fix in_coordinates and out_coordinates issues\n", "proba": 1.4190670754032908e-06} {"commit": "246871265e35024263fca87dbdd3275df881dbfd", "message": "m31 bulge\n", "proba": 8.13430006019189e-07} {"commit": "ffb395f05f9ce58a942186b7e0b992ea388d1808", "message": "Add view to get user's projects\n", "proba": 2.2478467087694298e-07} {"commit": "6f5d2a229a73643514dcb891d0b52a881e6438b8", "message": "augur/clades.py: change clade assignment from mutations to sequences to avoid unassigned nodes when reference sequence with respect to which mutations are defined is not part of the build\n", "proba": 1.2166513840838888e-07} {"commit": "6b90cf5bcf2d23d845f67c6a9c973fe2721905ba", "message": "ENH: update fly logic for mulitple event streams\n\nThe `describe` method on flyscan objects now returns\na list of descriptors and the `collect` method can\nyield events with a mix of descriptors.\n\nCloses #18\n", "proba": 2.0745454776260885e-07} {"commit": "46857126c685c1034fd60a300013b4f716f7c450", "message": "Fix the connection timeout information\n", "proba": 0.00031738984398543835} {"commit": "b0d130490688d39685e3d24d196fbf3049eda284", "message": "Re-use Django's existing REASON_PHRASE map\n", "proba": 1.4285353699960979e-06} {"commit": "1c670e4e05f6e699490ed95e08dead7b13a1aa3f", "message": "Refactores the conditional for missing_cats to never include _dummy category. Removes obsolete checks for _dummy category\n", "proba": 4.421587073011324e-05} {"commit": "5a26b8cd5664c424261b576b399e2b036e5e83d9", "message": "DOC: whitespace\n", "proba": 0.00015456897381227463} {"commit": "1ed158cab1c220b7430cc7f2bbc5c0dbd447b41a", "message": "Fix regex\n", "proba": 0.9999806880950928} {"commit": "ec39bb0779d5414ab9c294635e14daed687de394", "message": "Fix: query embeds are broken. (#2837)\n\n", "proba": 1.9019061880953814e-07} {"commit": "16d2a7546fe89ba0c25ba33b83976c85666f501d", "message": "Fixed another first run bug\n", "proba": 1.6107286171518354e-07} {"commit": "717736909a11da3d3cf511cc25a6c2809786dfa9", "message": "Add class AVLTree\n", "proba": 1.3229155229055323e-06} {"commit": "8d14793d1b94620fb40021ed4a6c0428214fbbfd", "message": "MNT: minor rename\n", "proba": 0.0005479044048115611} {"commit": "26e90b2f6043b0522391bf44275254a43b09cba7", "message": "Import reduce for Python 3\n", "proba": 8.842357601679396e-06} {"commit": "e518bd0238be4a37d4ddc8a3933f98fb8c502ddb", "message": "qt4: remove uic emitter\n", "proba": 5.657819315274537e-07} {"commit": "0471dd7606060626ea56e114995078f33d85662e", "message": "Fix return value of `import_bib_files`\n\nI had been setting the key values of the dict returned by\n`import_bib_files` to the string pointing to the candidate BibTeX file.\nWhat I wanted is the `pathlib.Path` object.\n", "proba": 4.775575689563993e-06} {"commit": "e86f347855f46a1b2de11818b984553fb4ba45bd", "message": "Message form view inherited from FormView\n", "proba": 1.3861374270618398e-07} {"commit": "d814c92bb8f0bc98fa74c06fad2301a5ab51ae9b", "message": "Made sure that it really falls back to the specified default.\n\ngit-svn-id: 283532407dd63776adb0ed68b2622dec87897356@3 c76b2324-5f53-0410-85ac-b1078a54aeeb\n", "proba": 0.00012300901289563626} {"commit": "89be53c7ebc6d05b3c7bd0ad2ef435b0630a5ca4", "message": "server: link attribute updates\n\nTested for name changes only, with the next commit's client side change.\n\nNotes:\n\nuses more than a single query to change each link's name. Since we use\nlabel's, and neo4j is finniky about them, we must:\n1. create a new link with copied properties (for future proofing, we use\nnone at the moment)\n2. delete the old link.\n\nCannot do those in the same statement, the following results in a Neo4j\nerror:\n\nmatch a-[l]->b create a-[l2:Poo]->b set l2=l delete l\n\n\"errors\": [\n {\n \"code\": \"Neo.DatabaseError.Statement.ExecutionFailure\",\n \"message\": \"Relationship 13 has been deleted\",\n \"stackTrace\": \n }\n]\n", "proba": 0.0001972060854313895} {"commit": "2deca21a0dda22d30ba0a30951a2a3234b5d23cb", "message": "Implemented the rest of the message classes.\n", "proba": 1.2284901629300293e-07} {"commit": "c02132f5aa7553935692f867b5caf2b1a64ef3af", "message": "Fixed files command to work also with databases that return an empty list of files.\n", "proba": 1.0744899725523283e-07} {"commit": "a600a2fb2d828928de88d620e89ecbded90f1426", "message": "balance_api: added missing key-value with steam_id\n", "proba": 9.58317627919314e-07} {"commit": "3d281a3524a4cd1bf9e2f60767ec8d89d3b589e2", "message": "Add logic, visir and submarine to wcloud\n", "proba": 9.665476682130247e-05} {"commit": "52cb30df4c2bd2d03712e9a42c7c8441907d6b83", "message": "use timespec from settings\n", "proba": 2.958252025564434e-07} {"commit": "2aad000247aa314d489cd75997062c4a95e19652", "message": "Added PDF nametag generator", "proba": 1.359967711778154e-07} {"commit": "49ecc55b66b5b34ae4190d573187f3a5adddf6ff", "message": "Make sure to strip port number when reporting remote IP in the originate\naccounting.\n", "proba": 1.0339104505874275e-07} {"commit": "2d31debdecdb2292c6759c4a26f89c519b335130", "message": "command line entry point file\n", "proba": 1.4244337762647774e-06} {"commit": "4242e2b96074c2d6c6a0af492803f849a559d531", "message": "Improve MRP tasks names generating logic\n", "proba": 0.001024690456688404} {"commit": "a38d5089b8db616813c06902c435d911d17f199e", "message": "Minor docstring formatting tweaks\n\n", "proba": 1.8899781650816294e-07} {"commit": "58f2c9d1108bf52de4f64ff82c15d194aeda9dcc", "message": "Changed JSON format\n", "proba": 9.862196748144925e-07} {"commit": "f10033af4c7ed97cf6ffdfc58193133620ad9ad7", "message": "Moved init handling to super\n", "proba": 1.6858476215020346e-07} {"commit": "e3bb7c8d39594a59f15c187c0e89ce8116afa328", "message": "xml parse definition\n", "proba": 2.3700238216406433e-06} {"commit": "1baad66b75cc7faeac3d95e396e1e4bc515a908d", "message": "expressions_library: refactor with reduce\n\nSee https://github.com/uwescience/datalogcompiler/pull/164#commitcomment-5986637\n", "proba": 6.222800266186823e-07} {"commit": "b0c21a5fc590373e7925c25b163f3c17a4dd1cee", "message": "Slugs not IDs\n\nWe don't actually use the ID anywhere, so why expose it to the api?\n", "proba": 1.034616730066773e-07} {"commit": "e0371b39f1d868a26feb89b420a5a83b11e25f5a", "message": "Handle tag and hash uniformly in commands.git_version()\n", "proba": 2.370538680906975e-07} {"commit": "a507c6308453f0a401866f764cb32300bf75fe5a", "message": "do not pull, highly experimental\n", "proba": 3.2759885471023154e-07} {"commit": "caa1d1adb7fcb79f6a44f315f212880ec985aa6c", "message": "Now using the Peak Importing package to find scrippt classes.\n", "proba": 1.0137136996490881e-07} {"commit": "dfe519ae6b93483cf88f39cf20ada286de0d83c0", "message": "Small tweak to the docstring for a method.\n\n", "proba": 1.0674304462554574e-07} {"commit": "f13419d01bd348f774855f5ec133a83a2cc38844", "message": "Rnamed port() to ioport().\n", "proba": 1.4696793471102865e-07} {"commit": "9eee0ea6d544decf9701240af5cb20796dee0156", "message": "Typo.\n", "proba": 1.1319933719278197e-06} {"commit": "83727fa36b459356661fde684a4d91296236be05", "message": "Update command.py\n\nto address issue #13", "proba": 1.6719117468255718e-07} {"commit": "9ef817b3996928dad82fac2b9fc66a209455eb95", "message": "convert iters to py3\n", "proba": 0.9999994039535522} {"commit": "d4ff4f1ff727b02ac875c02538713e3c40627110", "message": "fix variable naming for matching the document\n\nfrom\n\n`SHORTURL_LOCAL_BACKEND_ORIGINAL_URL_MAX_LENGTH`\n\nto\n\n`BREVISURL_LOCAL_BACKEND_ORIGINAL_URL_MAX_LENGTH`\n", "proba": 7.72642124502454e-07} {"commit": "32b864fb1ed52111f836c9b2aefdeb0e1673bcd2", "message": "now matmul makes sure of array types\n", "proba": 1.339399346989012e-07} {"commit": "2205b858ac9af71410f3c741f96a6f0641b80dc3", "message": "cleaned up mfd a bit.\n", "proba": 1.13290873571259e-07} {"commit": "b56cb5348dbcce7ac739bdeec5934aaf30ec179f", "message": "helpers.py: Added Canada (Central) region to the list. (#438)\n\n", "proba": 1.2212547062517842e-07} {"commit": "51db77fe361627d728b03704f338d38da0d779b8", "message": "raise unknown object id if DEBUG\n", "proba": 0.9993540644645691} {"commit": "4086b64f0c58d2a4a9d9959d0de91b182235c4e4", "message": "fix PY2 and binary parameter\n", "proba": 5.83227063088998e-07} {"commit": "2d25262c5ff5254b5df1f6773817abcec1ef0f4e", "message": "bump schema version\n", "proba": 3.2697928986635816e-07} {"commit": "76007141d9b7cd2aef83e9a74a532541b176454e", "message": "use dbstore's drop index command for mysql compatibility\n", "proba": 2.1225309865258168e-07} {"commit": "fa0efcc6b4c0d25fef5745a1cde0dfc98e4b0765", "message": "Remove debugging statements\n", "proba": 3.19724167638924e-05} {"commit": "84a20b52b29430e0422ef1427409806995f28502", "message": "Fix pwCheck\n", "proba": 8.361338359463844e-07} {"commit": "0d23818289ec1a1098dba7c49b5ff5a279f53167", "message": "Added commands used to generate \"favicons\" for the Nuitka web site.\n", "proba": 1.0500139069336001e-07} {"commit": "d4453910797f5e5e30d2fc776b683c6861cba454", "message": "Enh: some small refactoring\n", "proba": 2.796401986415731e-06} {"commit": "a22de7ec24ba873f699e989533122f36b4f6f693", "message": "fix to model variable scope", "proba": 6.152743026177632e-07} {"commit": "a8fcb5b3d66fdf1a1885e74fba578a2aab98d2b8", "message": "Refactored iterfields() to not use inspect.getmembers(). This is due to getmembers() calling getattr() on each class attr, which can have strange side effects on classproperty fields.\n", "proba": 1.1380849684883287e-07} {"commit": "f0b056a2172cebd7c199b453d02e1655d6d68731", "message": "updated payment settings\n\n--HG--\nbranch : pyconar2012\n", "proba": 1.325189344925093e-07} {"commit": "f2da96627214c909e166a4492a08b66dbeb4d618", "message": "Rework confirmation email, handles unicode now\n", "proba": 1.3475197135903727e-07} {"commit": "12f318322ef9cf7e278930be7f8ca675ef5d4dde", "message": "Added atom_idxs to within_distance for molecule\n\nTHis allows you to select specific atoms from the molecule to compare\ndistances to. This is easier than just getting the atoms and using the\natoms_within_distance because that would give you atoms on the same\nmolecule. Next I would just want to be able to compare the self molecule\nto any specific system member.\n", "proba": 1.2682023964316613e-07} {"commit": "c12a3aaf326fd4022d3b62a6138cb5cf9390fee6", "message": "Fix predict bug related to GridSearchCV model object vs regular estimator\n", "proba": 4.349285234184208e-07} {"commit": "520a665bf5b7d30be65d8d1bd92918fde262ffd5", "message": "Remove duplicate NotTest. Bad patch.\n\n\n\ngit-svn-id: a6b788f8f337f972f2eef25e065b182c49e085b0@19 b1010a0a-674b-0410-b734-77272b80c875\n", "proba": 4.500075647229096e-06} {"commit": "53f206e60983d1ddc23f421f983a27e2cdc75cfe", "message": "Don't import util internals\n", "proba": 4.000144429028296e-07} {"commit": "525496b3e67dc1d80c67a5f993586e6199738b95", "message": "pryce_mating() now allocates a fixed-length structured array, if there's enough memory, instead of using Python lists for the pedigree. I think that some of the slow performance with large pedigrees is due to memory segmentation with large lists. This is an attempt to speed-up the slowest step in the subroutine. I'm still benchmarking to see if it makes much difference. If the array can't be allocated, the program falls-back to using lists.\n", "proba": 3.8645919175905874e-07} {"commit": "5bdce27c0ea58fd9c2acab1974769bb2320e676e", "message": "New method: addPlayerToChat\n", "proba": 4.685290150518995e-06} {"commit": "49ca8aa8a3c5ecb8067ca3cdd8b329d00e6c5b88", "message": "Implement all telegram message types.\n", "proba": 0.0002996583643835038} {"commit": "06de065ed30c692078d9d3804c77eee9302644ed", "message": "Adding static path\n", "proba": 1.1887663049492403e-06} {"commit": "f5ff2d7e9362ea5c48d9198c52c46f0baa2e1611", "message": "Fail-safe flags.tostring\n", "proba": 2.8652348191826604e-06} {"commit": "644209bc096dd1d8db283ab7c926d5a9485d8617", "message": "remove sherlock print\n", "proba": 5.350459105102345e-06} {"commit": "8f8827fab7ca92bb926a9976a0abf09bea0de13a", "message": "[BSP] add -nostartfiles in link flags of sam7x bsp\n", "proba": 2.0219907526097813e-07} {"commit": "06cfc79e628d9594141985c204ca77f5e5bae0dc", "message": "Fix: Actually create config after initial git sync\n", "proba": 2.8285020903240365e-07} {"commit": "cd1b96a6485704f05bb80a352aec65a5133ac238", "message": "mirror Tony's commit 01ce17452bc to 'call utcparse before exiting get_expiration instead of calling it when timestamp is compared' src/sfa/trust/credential.py\n", "proba": 1.784530212489699e-07} {"commit": "909b79a40e568e7608d7a7a36b8c38f6fd1dcec5", "message": "print to stdout log from pyfontaine\n", "proba": 5.592246907326626e-06} {"commit": "d28a87f1fe503c104f972cde79c40d46b022d0eb", "message": "keep back compatibility with host and service keys\n", "proba": 1.5093101524144004e-07} {"commit": "eb6d239c0e5fb13876f46c3c834dcad5492ab416", "message": "Applying late feedback on CL https://chromiumcodereview.appspot.com/10834051.\n\nAll are stylistic changes reordering targets for better maintainability. \n\nBUG=None\n\n\nReview URL: https://chromiumcodereview.appspot.com/10832082\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@149611 0039d316-1c4b-4281-b951-d872f2087c98\n", "proba": 3.173281220369972e-05} {"commit": "3cccb0d6a3db817430e81d8a99ce571f800a252f", "message": "Fix import\n", "proba": 1.5394750789710088e-06} {"commit": "9cb9d8ebdf8be54e0b097e490feb049b0a5f2557", "message": "Fix: bad daemon property name make webui dont start\n", "proba": 2.790461621771101e-07} {"commit": "683ac7b1b99a5b1a89471a8f1625e2e6638085df", "message": "Modules: Alive Hashtag\n\nInstead of System Name use Hashtag\n", "proba": 2.7355175916454755e-05} {"commit": "ff135bde72c5f409124a5eecb98cf438eca95927", "message": "Added auto-title-casing for blog posts.\n", "proba": 1.0027810759538625e-07} {"commit": "fd644bb7cf9867bff83435c5e92e5e7c5f1a4204", "message": "first check for tags\n", "proba": 1.4394757386071433e-07} {"commit": "a0558084359275df16a5d37c089dd5256932daa0", "message": "gnome: Building the gir depends on the dynamic library.\n", "proba": 1.0360820112964575e-07} {"commit": "1ae70ac1c8d9ea4aae8cc898fad1d9b38d025722", "message": "Test if a point is in a circle or ellipse\n", "proba": 0.9996798038482666} {"commit": "4cde3646d3abcfb87f92a72875afbfd8cca91701", "message": "finished adapting pion code\n", "proba": 1.7457368528539519e-07} {"commit": "aba56980e69cc1efcea94f5483b539ab210fe08d", "message": "Revert commit 9ff0074 - lxml does this automatically.\n", "proba": 1.0309330633617719e-07} {"commit": "3e9d4055fe47af15c075ce9dc22899d7578f6f1f", "message": "Print stats for traceSplit\n", "proba": 2.2906955621238012e-07} {"commit": "ba9cc9b0cf8b2b78a7a3e03742f3d72d46f88a8c", "message": "for plot.surf, make surface edges visible (slightly)\n", "proba": 1.581075395051812e-07} {"commit": "dd479c4f5d84b9b69fc08ff0e631ad43754eaddb", "message": "Not checking for unfound peer\n", "proba": 1.4957491600853245e-07} {"commit": "7e2c5f5cdd444134c11048ac169f9fac2c828716", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "6a7d5b86d4d533a8ccdf4a7d4d832d7269858803", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "43d784d5340f283fc1e8e58874693e2e3dd73f98", "message": "Update\n", "proba": 1.038289269672532e-06} {"commit": "bed66a7df50635a847070f749049044fc4fd514e", "message": "Remove obsolete imports\n", "proba": 0.0005098436959087849} {"commit": "005f6747c0db703790de92ecdd4ac702786054fd", "message": "pep8 compliance\n", "proba": 2.08203360330117e-07} {"commit": "5d423c6ac5446b1ebf0c8e708f80757ebc3c1d78", "message": "Create async print loop\n", "proba": 4.811195594811579e-06} {"commit": "f1d34d316bc200db67f2bdcb2db3bd1d6d05da25", "message": "Make job_id/process name available to the KVS GC logger.\n\n\nFormer-commit-id: 755d5a94409c5f0cf5c6a0e6363f23122bab913c [formerly 755d5a94409c5f0cf5c6a0e6363f23122bab913c [formerly f3ff3a3a426ed7453eaa8d96326636a99b7c05e1]]\nFormer-commit-id: 3a26c19ba65ea61b1b8c50bca9d2aa645c47c2f6\nFormer-commit-id: e284d0d752a3adc7b3000b2b257d3afb4b500592", "proba": 0.9999982118606567} {"commit": "31e6bbc20b6f9a65f5b15243f2c7b668da4cca18", "message": "fix bug\n", "proba": 6.400653660421085e-07} {"commit": "bc0e04e09a1e441a70e47857505fe0d11300a487", "message": "created upgrade to 29 to loop through files to check for timestamps and give the acquistion's if none exists\n", "proba": 1.656500927538218e-07} {"commit": "dd270ab87b87239fe4d42c0f851a5d9472ce75b9", "message": "models: Stop using globals to get model names in JSON decoding.\n", "proba": 1.1450262604739692e-07} {"commit": "8b485059a19da9350b85f1cdf8855c157c72242d", "message": "add ERROR: prefix to error log\n", "proba": 0.0007393689011223614} {"commit": "49525a551b63a3b37cca688c735c93f474251ae0", "message": "start to handle test failures where a timeout is suspected", "proba": 3.83616338694992e-07} {"commit": "ac1e583903027a324032f73979a085dbb6e49308", "message": "Solving string2\n", "proba": 0.9999995231628418} {"commit": "2f542005d195ee3321ad0f6590173eacc0134517", "message": "2to3: urllib host\n", "proba": 1.0700988241296727e-05} {"commit": "1f9a0e9e53ef8e1e09ae09955b8272c1f8335289", "message": "Improve version checking\n\nParse version of tinctool with pkg_resources.parse_version()\n", "proba": 2.1230755464785034e-07} {"commit": "7617723f0fef6b5ccaaa75b3d80473d00ef1960d", "message": "Stuff\n", "proba": 2.155303491235827e-06} {"commit": "14f9d5839daa17650946d39054e023017fec121c", "message": "Dot-qualify column names only when there is a specified table.\n", "proba": 1.1275172795421895e-07} {"commit": "d6bd89f2976ebd6879f8addfbd225d91beb14ca9", "message": "Update bcbio/cwl/hpc.py\n\nadd lsf defaul and fix job-id-regex\n", "proba": 4.121863810269133e-07} {"commit": "a89f4367ee4c59c0e5d771a22bcfa94066f40c24", "message": "updated Browse feature to still display sources even if they have no photometry/spectroscopy\n", "proba": 1.2739262444938504e-07} {"commit": "3a0b84e1ba92f484521495a99b7481335abc7264", "message": "Add reward for reaching target\n", "proba": 1.5920876705877163e-07} {"commit": "ca73fb48dfebfcacbb7f58cc7b1e6a1d72e00a98", "message": "octal constant notation\n", "proba": 1.6783746104920283e-05} {"commit": "5afd2b91177a3ee9ce14b13b0a1f5be75eb54d16", "message": "logtools tweaks\n", "proba": 6.474996894212381e-07} {"commit": "1e9ea22c35845cbfe69ce2f65e189634566be6e2", "message": "Change default loglevel for pixiv_dl.py\n", "proba": 3.6872958730782557e-07} {"commit": "580def5dd8018099cfafc5a2ae2c04db2963b0eb", "message": "Cleanup and more consistent output\n\n- cleaned up the error handling to make for less untested lines of code\n- write report files to the same directory as the BEAST XML such\n as not to litter cwd from tests.\n", "proba": 1.0205502576354775e-07} {"commit": "b59ef4c24790583fd046d38c3f145b292bdffa29", "message": "add a legacy compatibility mode that wraps newer objects\n", "proba": 1.967548541870201e-07} {"commit": "9210a998b4c949a0d23438b5ed731e95a9adfa48", "message": "Partial fix for crashes caused by globbed files\n", "proba": 1.7599022328340652e-07} {"commit": "c25fffbf5ad9d46369993338b0d9f3020016247f", "message": "update messaging\n", "proba": 4.6740694870095467e-07} {"commit": "8a6e0983ba1b4b0dd721e73cd56e3c97f7fc7ed0", "message": "Adding reserved name fix to id_variable\n", "proba": 4.5076467358740047e-07} {"commit": "67b3ebc82be886aa220934de3d521bf86f575417", "message": "Minor changes to the default bokeh settings\n", "proba": 1.983543853611991e-07} {"commit": "25a02cac921f57a590c1e23dee9b792fb674e3c8", "message": "reorganize library.py\n", "proba": 8.840806003718171e-06} {"commit": "624feb056c481927329b682188be3c1cce13de61", "message": "More cmd line options; Examine sync results and summarize for the log.\n", "proba": 1.0453518939357309e-07} {"commit": "b1e3742382314209b73760eeb88571ec2ad0ef45", "message": "Added mpes.analysis.apply_mask_along\n", "proba": 1.5907960460026516e-07} {"commit": "672fc36cc8b3c51d7332a4dbba2a9613e36d17d4", "message": "fix docstring for aunique empty bracket\n", "proba": 8.456140676571522e-07} {"commit": "dc453af019208bfe693e0a5b3bc678bd0eec3ac5", "message": "Added pcolor and pcolormesh support\n", "proba": 1.2973337959465425e-07} {"commit": "1c5da4d5c1bb75ec0ff0a778263cb83264835a3a", "message": "Make annotations applied in sets everywhere\n", "proba": 2.219238126599521e-07} {"commit": "1066c79b56cd4f9ee421cd852685cac953402154", "message": "simplify path type coercion in MatchQuery (#470)\n", "proba": 1.4358725763941038e-07} {"commit": "a7739cedde4c8e0e6113f4ee5ea7d3ecd825cdbb", "message": "ENH: @deprecated changes docstring for deprecated functions.\n", "proba": 1.1122833143417665e-07} {"commit": "d032acf1bf7be736758c10371afd2ee9360158a5", "message": "Support multiple sinkers #30\n", "proba": 1.0980962770190672e-06} {"commit": "6d2f07322f9ff5a8889064015cea66e2e2ce2fbc", "message": "factory.random_mpa: Revert default to non-normalized MPA\n", "proba": 1.7501455431556678e-06} {"commit": "39123773f39660957a3689c7687ba2fe090ab8bc", "message": "Update main.py", "proba": 7.280797831299424e-07} {"commit": "4814bdbc6bddf02530ff10e1ec842fb316b0fa91", "message": "updated version to 1.0.12\n", "proba": 5.937441187597869e-07} {"commit": "18c341fe01ea2a7b37fef21f71b365bb773e8fde", "message": "bot.run() should also have the ability to log tracebacks\n", "proba": 6.273897383834992e-07} {"commit": "27baec49ccdf06b389b534a89b9d7ebc7e62c1d6", "message": "Fixed some 'typo' mistake\n\tmodified: mprint/mprint.py\n", "proba": 6.642443395321607e-07} {"commit": "c5fb01390ce82aeaedac39fba47c189d4a3ac2b8", "message": "ENH: use config_py instead of hardcoding paths for windows binaries.\n", "proba": 1.104768898585462e-07} {"commit": "fff503ffac2dfe6a540904e6d5cc2f1d6b6c3758", "message": "add a poor mans templating capability pmtc\n", "proba": 4.942143050357117e-07} {"commit": "17aff88ecdbca66c9af58f011fb02c5a9efd9879", "message": "Made schema detection more robust (labels that start with x or y are correctly detected).\n", "proba": 1.0472118106008566e-07} {"commit": "576e56da86fe2adfaac5523b98796bb4e03510df", "message": "cc => jl2\n", "proba": 5.2445662731770426e-05} {"commit": "94e5864e4ff57bfb82bca76fe8d00e15b646fe98", "message": "Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py\n", "proba": 1.83036448220264e-07} {"commit": "07db892ee80cad756926247433239ea7dffcb3b5", "message": "more testing\n", "proba": 1.259183051161017e-07} {"commit": "3ea36de14fed11c0a73f886170723134dda26a9c", "message": "remove unused import\n", "proba": 7.364135399257066e-07} {"commit": "7af4a20632231891a4b59ecfac8a667170f43edf", "message": "Substantial changes to test7 in bibulous_test.py.\\n\\nThe structure of the test had to change as a result of removing the n'generate_bibitem_label()' function inside bibulous.py.\n", "proba": 5.484645839715085e-07} {"commit": "f733baf66f0a14064a84b82094e69fb01270b969", "message": "do not build indexes if none needed\n", "proba": 2.981930720125092e-06} {"commit": "8f9fed66480a8150dedfb1e2b753e7d82704ca72", "message": "Stupid retabulation errors corrected", "proba": 3.646889581432333e-07} {"commit": "7843d5aef092363b5ba2d77773b3c285dabf0e4d", "message": "Version bump\n", "proba": 5.605834303423762e-07} {"commit": "f675d69351fe60ffc2a2cf0a47e8f2d37444ac2b", "message": "Find xcassets without hardcoding the path (#48)\n\n* Added functionality to find the xcassets relative to the file, without hardcoding the path", "proba": 1.5331588087974524e-07} {"commit": "5f4a6a4728a58cc28af3e42af02eebd12446e27a", "message": "Pool.terminate_job should ignore no such process error\n", "proba": 0.0001654232619330287} {"commit": "ff1dcdaf4a2564ee2ed6feb363c724d2cfffc238", "message": "Avoided recreating related cache during clearing.\n", "proba": 1.1761303397861411e-07} {"commit": "bf530ca9cda35d7062497aac200c6fa23037cc13", "message": "document limits in debug env\n", "proba": 5.732663339585997e-07} {"commit": "5739281857f666568871a301ec0e38623c77ad68", "message": " Merge branch 'ogdzh-76-additional-infos' into 'master'\n\n[WIP] Import: Additional Infos (related items)\n", "proba": 9.968275094252022e-08} {"commit": "2b727ee53e3cd3cd69206cdab52bfdc84b647781", "message": "Use functions to name mutations in get_all_possible_mutation_transitions\n", "proba": 8.32803107186919e-06} {"commit": "dce5cae853ccf811f92878cd8dbda11feb1ab206", "message": "define document size and margin\n", "proba": 1.8586456462799106e-06} {"commit": "935686ab77f3135f6904ac9a36e5b795d1c61a4e", "message": "Add test for data structure\n\nassertItemsEqual tests compares that the two data structures are equal after first sorting them. This means the tests won't fail if the ordering is changed as it will first sort the two items before comparing.", "proba": 4.266826465482154e-07} {"commit": "5bde1ab81729b1a27835507658de65d47ae214d3", "message": "small rules change\n", "proba": 1.2895580994154443e-06} {"commit": "7c3fdc13b08998d120c3da9bf10fd3975aa5120d", "message": "Push prebuilts by default.\n\nChange-Id: I0d03b037253f299e36c3621ff6e5970e9af2bb11\n\nBUG=chromium-os:10375\nTEST=NA\n\nReview URL: http://codereview.chromium.org/5876002\n", "proba": 2.8096022219870065e-07} {"commit": "b696b4a420233ed4dbcd91000878bf7883f2ae2e", "message": "Sender - actually, block on queue\n", "proba": 2.0517612142612052e-07} {"commit": "0472e440b8ebcf4f158d421b2cf315e7ee6e87e1", "message": "Random space removal\n", "proba": 6.430026928683219e-07} {"commit": "e02d1ffc989b81cadaf6539685388b421444a4a4", "message": "Fix Python 3 packaging issue", "proba": 0.00032666398328728974} {"commit": "afdea91be941f3be96c84dbe17f845f3b502f58c", "message": "included #end in the crossposted_content\n", "proba": 1.433057121857928e-07} {"commit": "d34681b1af5264c2a7aa5bc99e3cb8186cb29f61", "message": "Update.\n", "proba": 3.493966005407856e-07} {"commit": "4879465140d9ee6a218dc959bcb033908f10dc89", "message": "fix wrong initial commit handling\n", "proba": 2.474835355315008e-06} {"commit": "8dc78cb2c03e737cfcd9bfc7fe98107613782bb0", "message": "Formated: Progress output\n", "proba": 0.0006481314194388688} {"commit": "155942de242e1184f60620bb8c98a05017702002", "message": "ENH: Allow final_plan to be a list.\n", "proba": 2.5123267732851673e-07} {"commit": "f12ee2a80c03042903407d7d6ca7fa25a2fbb3bc", "message": "The input formats property maybe not available #29\n", "proba": 5.251380343906931e-07} {"commit": "599c7f4f208101a5a31be66a9a25074935a6c3cb", "message": "fix motion to table status update on hres304-116 which was tabled in the REFERRED status which was not handled\n", "proba": 1.1926573506571003e-07} {"commit": "dc06ad93a1717978e306d2767550f708895deb36", "message": "MNT: change how to make sure we see unix signals\n", "proba": 1.4371205736551929e-07} {"commit": "4994e18e1c9fe338647bffbc89c468a4caa7ef16", "message": "Fix return values in abnormal cases\n", "proba": 0.0004961527301929891} {"commit": "59895752ee3a7f43826456ae780aa28fa99564ae", "message": "Move more things into Board\n", "proba": 1.6218051257510524e-07} {"commit": "6dc73aa3f4acd40ffbf6057c8765e2c693495657", "message": "Make convert command work with files or stdin/out\n", "proba": 2.338979129490326e-06} {"commit": "e06eee81bb5aa16c8c6ff9457086d19533dad1d8", "message": "added south support\n", "proba": 1.3616599403576402e-07} {"commit": "68d79d102315dedd59ef112d9f7b5e2f534379c2", "message": "upload?\n", "proba": 4.0964168874779716e-05} {"commit": "597523fc0a852d9082129ca0243cc488adaa9482", "message": "testing\n", "proba": 1.6199514902837109e-06} {"commit": "88efd1101c051432a0abe3fd68c0e81e1b39ad86", "message": "Don't strip strings twice\n\nyou heathen\n", "proba": 5.165298375686689e-07} {"commit": "c2bd5b5269f8a49accc19f0bc4c252a44769106a", "message": "Fixed typo in __version__ attribute.\n", "proba": 2.7716203021554975e-07} {"commit": "f9edfd508108b89ab079ae692b1211b144c94708", "message": "elastic mapreduce: jarstep main_class parameter is now optional since main-class can be defined in the jar manifest\n", "proba": 1.5549578336049308e-07} {"commit": "c0bf46e16c5c1c02e484ba19944b152008a54871", "message": "storage.py: add extract_datasets and hdf path option\n", "proba": 2.922176349784422e-07} {"commit": "f9c0b6af3e6b4a2ce3e4dae212661ce86f3bec3b", "message": "bug 1667213: disable sites app\n", "proba": 7.245569122460438e-07} {"commit": "3d9e97c9fb6c379398db9a29848e73c25060aede", "message": "superlog_parser: removing unnecessary assert\n", "proba": 1.0933981684502214e-05} {"commit": "2b3e09cf2b52cef610324334b938240197e9b8ce", "message": "add LEM collection fields", "proba": 1.724391722746077e-07} {"commit": "d98d0accd3cad0c13a02bc62825b8ada92412031", "message": "Added a test for the reset flag of the mail handler\n", "proba": 2.431751511267066e-07} {"commit": "43445c594907ea0f6c1bc384537673292d3fcb78", "message": "fix build\n", "proba": 6.818289080001705e-07} {"commit": "668d1e94f3801a4f4b9b1d852232f34ebc0dba70", "message": ":bug: Fixing when the file cannot be opened\n", "proba": 2.4827210154398927e-07} {"commit": "b57c7eb1de254f1fc2f273d90adc5183c231ebbc", "message": "Add UI + backend for Flow\n", "proba": 3.6962737226531317e-07} {"commit": "933ee20f9b9a01795dae432cc7874637f7dc9ab1", "message": "dealing with concept names\n", "proba": 1.819886250586933e-07} {"commit": "77db55cf96a5be518e6bf66f85b859cf9e774378", "message": "Replaced sys.path.append() by corresponding import\n", "proba": 1.85397202585591e-05} {"commit": "8c5e0664cb4f77b9ad35e5f84597b2bbe246a4df", "message": "pass filters to one_sed, add docs, other little fixes\n", "proba": 1.5268263098278112e-07} {"commit": "c5ebe23dbea835eb3e47a4f157d85c38b344d7fc", "message": "python3 compatibility for print\n", "proba": 4.739902976780286e-07} {"commit": "8945dec53b339e26b62decb36f3d33d6d28960db", "message": "Fixed some command line functionality, more tests to follow...\n\nAttempt to fix the build\n\nSecond attempt to fix build\n\n3rd attempt to fix the build\n\nImprove command line functionality\n", "proba": 1.9316096313559683e-06} {"commit": "7b66bd08c24f135793894769db5329df966a9ce9", "message": "expose address on-screen verification\n", "proba": 4.7638260980420455e-07} {"commit": "a1dc3152ba3a31db33d3c130dc0da3bd39637bce", "message": "fixed failing test by adding specific BuildSpec and added the additional case for 3\n", "proba": 1.3618249283808836e-07} {"commit": "0ea98e6c4f6e753c47894c6d2d644fc832cdb02f", "message": "Add test for relevant condition\n", "proba": 1.6635868860248593e-06} {"commit": "b5c061a38b57744c8021af6eface9baec559a2b9", "message": "flush timeout message\n", "proba": 6.343101972561271e-07} {"commit": "4b558125cd0bf8b0c41e74132ac2e61ae8bb368a", "message": "EL Import: Don't require yum (#1710)\n\nA customer reported they had a CentOS 7 failed import where the machine didn't have yum, even though they used --no-guest-environment. This updates the EL logic to check whether yum is available prior to using it (for non-guest operations).", "proba": 1.2108105806873937e-07} {"commit": "5a0ce41b35297b82e32658db24bd4556ce369065", "message": "Allow SRV/MX records to have priority 0\n\nChange-Id: Iaa756669a975a972699f1379471c4ea52e4ea5f4\n", "proba": 5.229460384725826e-07} {"commit": "c53307f697a1d8758a373242b8eb31efdccec676", "message": "made button desapear\n", "proba": 5.657522592628084e-07} {"commit": "487da6b6433b5a8fc0128c6253d93e157817cde2", "message": "postprocess: add comment about use of -S and -M\n", "proba": 3.553661827027099e-07} {"commit": "95030dca9ff42b5ff41142cd84727e1ad95bcae0", "message": "Minor corrections\n", "proba": 3.40525161846017e-07} {"commit": "bb09d0fc767c94d008350bdff09d6118f4dbf859", "message": "postprocess: the output is an .mp4 file\n", "proba": 0.999991774559021} {"commit": "ed6ffdf63cf506e2bed852009e21922132acfd66", "message": "use only code.bc instead of symbiotic_code.bc\n\nsince we work in a subdirectory, we can drop the prefix\n", "proba": 1.7750386405168683e-07} {"commit": "8b2568b4a70fb93465938f8baee9f730e4e34c06", "message": "add an OA journal\n", "proba": 5.045599209552165e-06} {"commit": "223147e269e44fc54b9bd7dd2fa11c96f3080fb0", "message": "__pos__\n\nWho uses __pos__, honestly?", "proba": 7.640916919626761e-06} {"commit": "2b41164a395cd82b7856074c631b0ffb57f556b7", "message": "fix docstring type\n", "proba": 4.124099177715834e-06} {"commit": "48392c53abe4f578ddd60ef1b0b0c64a335e2c3e", "message": "Oops bug.\n", "proba": 1.727835439169212e-07} {"commit": "c24fa37ddc1fe6959191b3d261fd853807bbca9e", "message": "edited oneguess.py\n", "proba": 2.3487555722567777e-07} {"commit": "384f396f2bd7a9b407cf2ab5836613f10684cf95", "message": "added feature for getting structure of tables regarding schema\n", "proba": 1.2982187058696582e-07} {"commit": "eb45c9497780fc6baeb55310d9f22eca3c1a16b1", "message": "- Fix default value in shrinking code (Blocks)\n", "proba": 1.1279259837237987e-07} {"commit": "755322b78d43594ecea8ac44a54852f9fa963f16", "message": "Update WifiOpenEVSE to use JSON responses.\n", "proba": 1.1008648925781017e-07} {"commit": "72e3b29dbd1d21a3151fca2f6696b9b2a393eb55", "message": "ctdeploy: per-fragment log() for dynamically loaded modules\n", "proba": 3.0892124414094724e-07} {"commit": "9f090193b68944d9369cc66caa5f19de0d9d5100", "message": "fixes failed method call ( python is not ruby )\n", "proba": 4.2297273239455535e-07} {"commit": "00840d8223c4a4a001fe7a2b32d9f8798bf83a98", "message": "add fstdisambiguate\n", "proba": 0.9999748468399048} {"commit": "dcdff3f09cd560e00d40a1b33a0f5c7aed5635cf", "message": "Add remove cmd\n", "proba": 1.0884128641919233e-05} {"commit": "b31167369da663549c7415c5aa47da6f4eca979a", "message": "[openstc.service] moved purchases field in this module, such as the one used in validation process\n", "proba": 1.4660034253211052e-07} {"commit": "5089e1e149366b564f489388f8579864036b4b4c", "message": "Return series stats from play_series()\n", "proba": 4.088554987902171e-07} {"commit": "2c4819ab4edc59c19cb4a793ac3e4aa7d2840007", "message": "route53 updates\n", "proba": 3.180467160746048e-07} {"commit": "9f21f1f91a2dd35b34f37d322f2dd2e75cc3caa3", "message": "Fix lint issues.\n", "proba": 3.0101318770903163e-07} {"commit": "2ab8c43f352d0e2377ec5e12d88a6668f6667692", "message": "Implement noop in rapidpro backend for get_url_patterns\n", "proba": 3.6331081787466246e-07} {"commit": "1feeb584a482397596464e394b72e495f7ca9dad", "message": "refs #2082 Fixes dict and resources field\n", "proba": 1.1776320718581701e-07} {"commit": "140ad226c26a3d66707014cabc800216a500cd92", "message": "Remove leftover, meaningless format()\n", "proba": 3.263973485445604e-05} {"commit": "0ee1974fb5618c04c47c29126a52a8c60a864961", "message": "LIBCLOUD-345: Fix CloudStack compute driver create_node method to return\nCloudStackNode and add new expunging node state.\n\nSigned-off-by: Tomaz Muraus \n", "proba": 1.3716120861317904e-07} {"commit": "3670b76b3bc713a6765c631ce24ddc6760c49e2d", "message": "Update thermal_loads.py\n", "proba": 7.058379765112477e-07} {"commit": "65fdf87915d1cba5c126e60c34b3b61d01d3bae5", "message": "Make sure quit messages appear now that we buffer\n", "proba": 1.3183043279241247e-07} {"commit": "2904439766eba12d6ef5a731189fcf999b79d739", "message": "celeryd-multi: Hardcode name of program in splash\n", "proba": 1.9950823570979992e-07} {"commit": "e9cf92e466c336987792d5b12eb30a815615a9eb", "message": "Fix stories that expect style combos we can't do\n", "proba": 3.884093473516259e-07} {"commit": "f3f0bcfdca49556c80c6018da66e5980793954de", "message": "admin: show location abbrev and name\n", "proba": 1.6513997991296492e-07} {"commit": "acf76f29609327efdbea3dd151f96da6776f8506", "message": "Didn't really want that traceback import there.\n", "proba": 1.0892790669458918e-07} {"commit": "526dacd0ab645c5bc37e889dd3c6a4c244368c5c", "message": " Version 0.15 Candidate\n - Added a raw HTTP handler\n", "proba": 1.1884087314228964e-07} {"commit": "5ef13bbe2e0eb1ff2bc4f52baff5a879e3731b4c", "message": "Patch for issue: Filenames for sha1 would be calculated with filename before first period in string. Therefore multiple period filenames would not be fetched properly. This fixes the fetch issue to match the sha1 creation method.\n", "proba": 1.2423620887602738e-07} {"commit": "7b51de84a6ff385f5e772b0640d9d60684b9c245", "message": "no need to run the recent test queue for user tests", "proba": 5.273145688988734e-07} {"commit": "9a589608e85eed8e77d8a8f0f16cd3532e5e4753", "message": "Fix import statement\n", "proba": 2.6117362722288817e-05} {"commit": "7435cfdea391e6793735174ffe83a9b407610dfc", "message": "[mod] simplify code, give more verbose debug output\n", "proba": 3.055929846595973e-05} {"commit": "5a6a08805f47acc2fe6aa76e2bf965902cf1006a", "message": "MAINT: define exception\n", "proba": 0.0011891622561961412} {"commit": "776d086553bd04630cb1d9e2f429c7bf05b1ca23", "message": "Address testing on 32-bit platforms (#11)\n", "proba": 1.19320674230039e-07} {"commit": "ad5ec07f5b2f954c72481c58cd5c42cc8cc729dd", "message": "Port to Python 3", "proba": 4.355856049187423e-07} {"commit": "be531d848187ea84e8a64614257cbfeb6007f8dd", "message": "Fix deletion of sqlite repositories\n", "proba": 4.6749322791583836e-05} {"commit": "58460761105aa433b212e873099bd525476256fe", "message": "removed unnecessary error message\n", "proba": 1.4501613350148546e-06} {"commit": "fa8d0ec60a398cfa375919b03a925ed58c05c95f", "message": "- add the public schema to the postgresql search path\n", "proba": 1.324982008554798e-07} {"commit": "8fb00d7c79203f207cf08599ec7df42fab76ba3c", "message": "Add test for remounting of whack roots\n", "proba": 2.1483249668108328e-07} {"commit": "1cf7eee809838438201f45858b1f85bbc25fb551", "message": "Revert add unified title and tool bar on mac.", "proba": 1.0660631488690342e-07} {"commit": "b569874ffffc34043edf9335e27b4c580cf91804", "message": "enable download stats for project developers too\n", "proba": 1.2368813884222618e-07} {"commit": "76ba90c1c75ee2f1b40eabf76dd12fe176307044", "message": "fixed nursing\n", "proba": 5.461070600176754e-07} {"commit": "9e8b4278add09d4eca0197e3b36f33cd01b06208", "message": "Fix linter error\n", "proba": 3.6360788726597093e-06} {"commit": "24d9123bc9dc1bb6545589af1e4ef999a3255d80", "message": "Create a SerialManager on launch\n", "proba": 6.879811849103135e-07} {"commit": "65b788d21efe2052b5454b8e3ebbb4162918f3eb", "message": "Remove obsolete cli.py file\n\nOld command line interface before __main__ was written\n", "proba": 1.2249761311977636e-05} {"commit": "8f7c1ee9aef52f3cb304917c4780eccb6f23e3f2", "message": "Use NotFound, not Http404, inside Publisher\n", "proba": 1.6817111259115336e-07} {"commit": "2b446dee6b7d643442c53e0a9f432bd57bde0886", "message": "ATLAS updates\n", "proba": 5.120230639477086e-07} {"commit": "74e3e2d56804ff9a133c95eb6b4fa0fbca254fcf", "message": "Sort methods in TcpClient\n", "proba": 6.549535669364559e-07} {"commit": "004a1637f45f803d16fac6d21c0f9597ef8252ea", "message": "Fix backup processing\n\n* Don't drop status.lastVersion from buildconfigs as this causes name\n collisions of newly created builds with restored builds.\n* Don't drop lastTriggeredImageID because empty value may cause a\n rebuild from the same base image.\n\nCloses #407.\n", "proba": 1.0585985421585065e-07} {"commit": "6142fe1d447e0b98db794de60a8d96d3b2d10266", "message": "Fix ordering/timestamp of grouped events.\n", "proba": 3.935019492473657e-07} {"commit": "287f7738574bf1f2156454e6ab99083cb0353ad3", "message": "Return, don't raise, NotFound in shortcuts\n", "proba": 6.115355063229799e-06} {"commit": "98cc025d8fa7ae250015f54b1aa8525ee8aff162", "message": "exemplars for maps_*_char_*_keys\n", "proba": 1.280967626371421e-05} {"commit": "d80eda57331339fdf54f3b919b40275a145e6699", "message": "Update user_info.py", "proba": 1.3027944305576966e-06} {"commit": "d96b181ba6790c3d98b44998857f89da9a81330a", "message": "\tmodified: transport/udp/udp_connector.py\n", "proba": 6.756730499546393e-07} {"commit": "19b9dff9e1a1e3a04914c3cf0843daeb968423fd", "message": "In the YamboBSEAbsorptionSpectra try to find the o- files in path and path/job_name\n", "proba": 2.5435903694415174e-07} {"commit": "5fe576d688f6785bcda528a72df08a00c5eeef57", "message": "Calculate proper input signatures for metrics in Trainer.\n\nPiperOrigin-RevId: 302910641\n", "proba": 0.9998366832733154} {"commit": "75a704de0492110b3b94bfdfaa9b74199ffbaef9", "message": "support case where user may accept TERMS_OF_USE\n", "proba": 1.1940677495658747e-06} {"commit": "925995aa818caf60d380061cce704fe6833b2178", "message": "Fix an error on RichTextFields during migrations\n", "proba": 3.2895802632992854e-06} {"commit": "29defe674e3f95e0e6a73f21ddd773801e3dd918", "message": "add newline\n", "proba": 0.9982471466064453} {"commit": "cc0508b6f32a4ae81d0fcd9acc323e1df2637745", "message": "Bug 1152769 - Log parser: Make error & debug output strings more useful\n\nIn order to find the job in question, the project name is required in\naddition to the job guid. We also now specify the URL for errors, to\nsave having to look up the job at all in many cases.\n", "proba": 2.0536444367280637e-07} {"commit": "298148528059a84887364acc8a2faa3220eb4897", "message": "[1.7.x] Fixed flake8 warnings.\n\nBackport of 6f59d29158 from master\n", "proba": 1.198802550561595e-07} {"commit": "09f63d8a792654c0eee4c6df593654f2f784a2e3", "message": "lock models directory\n", "proba": 2.972476806917257e-07} {"commit": "7b33b3d646b0da664bfd6bda80063b265b10bd5f", "message": "fix quantan name in test\n", "proba": 0.9999115467071533} {"commit": "b0dc050b2e8d7af9c7c5c058df3d6ea7163b1afd", "message": "Add a filter processing for the parameter of restore\n\nNow the protection service only check the keys 'username'\nand 'password' in the parameter of restore. It should check\nmore keys.\n\nChange-Id: I902e26456ab2c166cd927fed786f0c833c138ff0\n", "proba": 1.5112203982425854e-05} {"commit": "d1c5a120cf828f1dca0d76b865a751d6956ac848", "message": "Restart gateway on full_init of config\n", "proba": 4.968977123098739e-07} {"commit": "333f1fe829544fba60c4e46567411257d765e9cd", "message": "[FIX] l10n_br_tax_estimate update search domain\n", "proba": 3.4616880384419346e-07} {"commit": "0b0db0c108dd56c002eb6e655bbe009bc9397c80", "message": "Only applying wait_for shim for python 3.4.2 and below.\n", "proba": 1.0195016386660427e-07} {"commit": "d0e891ee4cd6c3dcfde341482af1746782c68e3b", "message": "python-vlc: tweak EventManager\n\nSigned-off-by: Olivier Aubert <6156ad34beef884227e9079455af537dce64089d@liris.cnrs.fr>\n", "proba": 1.238037867778985e-07} {"commit": "04a57bc109036f6a9ef186a3295709dcc8c6b585", "message": "Use np.random.normal not np.random.norm.\n", "proba": 0.998849630355835} {"commit": "299f092af27c298e9f1fce0f013bc94c357447e9", "message": "make use of values on django18 too\n", "proba": 1.7900319448926894e-07} {"commit": "5c6c00dd4a767ab120531435e18835e5c2197a4b", "message": "Delete obj.__acl__ set in ACLs\n", "proba": 5.376529225031845e-05} {"commit": "f0dae2354a44f3fd8c8c270073b41fcf85a70e9b", "message": "only perform cosine similarity on the examples selected. Also fixes some typos in the processing\n", "proba": 2.806394263643597e-07} {"commit": "67259be33ceeb33fd935dd3d52f582c9efabaaaf", "message": "add AnalogSignal to supported objects\n", "proba": 1.711850501351364e-07} {"commit": "7d5aadfe055d0128b8ee8771d52fc7ab14470c78", "message": "Fill in do_generate(). Require eventWeightBranch to exist.\n", "proba": 1.927344612795423e-07} {"commit": "1616db26bb8273f80b4432597fe8cb05964a1885", "message": "Store internally a unique identifier for the network state. This will be used to uniquely identify this network during deployments. This lazily creates new UUIDs until the point when it would matter; on saves. We could perform the work more often, but it won't be remembered long term. I felt this was an optimization that does not have any long-standing effects.\n", "proba": 1.7669081842086598e-07} {"commit": "5e81281be9fb2ce742d3dc55e28646e2d7b7307a", "message": "Add CSV write to benchmark\n", "proba": 1.380390017402533e-06} {"commit": "5d8d52d9aa100fd0105040d87d907847712d5105", "message": "adding an option to not eat up all of a system's resources\n", "proba": 1.5130528936424525e-06} {"commit": "a268161824bd1745c8a928c821943e321e86f9c4", "message": "complete named channel interface\n\n\n20051014151839-0e791-a9f791776b41b262e12a23d52455c1e1f7ec8bfe.gz\n", "proba": 2.5391406666130933e-07} {"commit": "97746cc9209f09581ae87d916b176eec4db24b0e", "message": "Fix up ISO checksum checking.\n\nThe ISO checksum is actually not 1's complement,\nsince carry bits are thrown away.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 6.231306178960949e-05} {"commit": "5ce2dea914e22be0874a8d7b1192d24d61601444", "message": "Do the presence check for env_configure correctly. (#142)\n\n", "proba": 1.4952684068703093e-07} {"commit": "ca57afefd4b1395e89fb94608f7bdeb9cf66297a", "message": "Missing number of arguments\n", "proba": 0.00012108898954465985} {"commit": "fbd9009c5406f1dfecd2d600065c2b84d2ea87f6", "message": "Add test of jnp.arange() corner case\n", "proba": 8.25994138722308e-05} {"commit": "48a39d218c02ac25d1c64e872ed7392dc37bd1b2", "message": "fix production settings error\n", "proba": 5.517218824024894e-07} {"commit": "ec322ae41aec76c18c8ff335d5fe0b680ace80f6", "message": "il mapping cc -> paypal viene fatto da assopy, posso semplificare la cosa qua\n\n\nFormer-commit-id: a16d55ac3d8d36627052a3c4c0a9529570f78389", "proba": 9.280885819862306e-07} {"commit": "559cb3c897c3f9e091b9229450b27e1de73bf0bc", "message": "Update index.wsgi", "proba": 8.068789725257375e-07} {"commit": "93618730b5454c3a7369f90c86ac0d49c7b8c89e", "message": "deactivating nodata mask\n", "proba": 8.870059104992833e-07} {"commit": "94d42d3a78f5b1c23108fbbb9a80abe45922a49e", "message": "Removed unused import\n", "proba": 2.9346514907047094e-07} {"commit": "bb151df1b7a7de286310786e752fff033d8a640b", "message": "Started DB query code\n", "proba": 3.8888043718543486e-07} {"commit": "42fddafe2be5d279b5f9b043058ea3ec0d5ae792", "message": "Fixed a typo pointed out by AndreMiras\n", "proba": 1.6891466714241687e-07} {"commit": "a1fe83c8937ba8c3012374f97607e3d6dbcd2bb9", "message": "Further fixes for OSBS.get_build_logs().\n\nNow handles annotations/labels in metadata.\n", "proba": 9.821221169659111e-08} {"commit": "fc2ad301293781fb6b4e02c6322562ecca6f64e5", "message": "Fix 'new' no exist in md5 method\n", "proba": 0.9984664916992188} {"commit": "39c72d5d5e610760aad244f88378d3190699023b", "message": "Made file paths relative to module location\n", "proba": 2.6324414648115635e-07} {"commit": "dec28d1a2748445a763392863a94142b117271d7", "message": "Simplifies colors to use stock colors\n", "proba": 1.8570123927474924e-07} {"commit": "131f5e52121ae0f5a32af603f1d34bdbf2f837fd", "message": "Typo: should be WLS\n", "proba": 0.9999954700469971} {"commit": "ec26ac3d426ce9b64a6857491eb0b45fb430ec1f", "message": "Test for exists twice\n\nFixes https://github.com/dask/s3fs/issues/363\n", "proba": 1.720810445249299e-07} {"commit": "b8b6ac0f82cf8f66298a0e952f3b8e4de4de8ac6", "message": "Permanent redirect on trackback\n", "proba": 2.2161630397476983e-07} {"commit": "7b18589d53592c3785aea9ac716372e12a494933", "message": "do not show Purchased install buttons for purchased apps\n", "proba": 1.732898340378597e-07} {"commit": "f269b7b5c7b0bb0973f504db1c3605c9ff3ac6da", "message": "Add function to extract solution from valuation\n", "proba": 6.482191565737594e-06} {"commit": "584bb0ed36e6fcd5f2fc351e577a490cc59b98e2", "message": "fixes windows color\n", "proba": 5.345413001123234e-07} {"commit": "b45f9e58902019428de3c45938f9b17e2ff1504c", "message": "Added grade to logging information\n", "proba": 1.221802250483961e-07} {"commit": "3775e7c400e3bbf5af63fc63b809f1d640c0dcab", "message": "Add basic Python 3 compatibility for `mergeex.py`.\n\nThese changes do not affect the output for Python 2 but introduce\nsupport for Python 3. The output is the same except for minor order\ndifferences for the regular expression.\n", "proba": 5.70636643715261e-07} {"commit": "2ceeac1237c075da58c0f0cbeec061a4a669b294", "message": "BUG: Use compat unicode.\n", "proba": 1.2874147614638787e-07} {"commit": "a18cc280a248969975e6fda48bd1563eb412f34f", "message": "catch base exception HTTPError to catch any request errors\n", "proba": 2.940004719675926e-07} {"commit": "5b1a122000def33f5cf787c94dd05e3184be32a2", "message": "Bug fixing: location is no longer a response header in update calls\n", "proba": 9.62541889748536e-07} {"commit": "1d5acb84cc213839b360d597637c4e5010191ffc", "message": "Adding newline at end of file.\n\n", "proba": 1.2790026460152149e-07} {"commit": "91f991bf92ae40eaf78a49314b0037d745c7b121", "message": "syncing\n", "proba": 1.1201707366126357e-06} {"commit": "e6d8d1420af56471eac27f6b85640eae3278d881", "message": "added glyc mask to run_flu\n", "proba": 1.554183910457141e-07} {"commit": "868885a52da6ded5a6b1aa977f867ec218e0cacd", "message": "update python rundemo.py - refs #2324\n", "proba": 2.0740667139307334e-07} {"commit": "cc6631c883eddd3b44d90bb6e18024d5740db861", "message": "Fix import. ", "proba": 2.2054503290291905e-07} {"commit": "28f975fd5535ec8a8621b15a1bf740f0ba155907", "message": "Don't replace right now.\n", "proba": 1.39139018529022e-07} {"commit": "6f1c779d049f2afb8ad703bf483647cd9399f9fa", "message": "_get_config_list() was incorrectly returning [\"\"] instead of [] for blank config lists\n", "proba": 3.995556107838638e-05} {"commit": "77545bbd7ca7e198c2140c21a6d0886370680b63", "message": "Extend CSV field_size_limit\n\nAllow large files to change the\nfield size property of CSV\n", "proba": 3.8827749904157827e-07} {"commit": "64ffdd52e81cf914818015733b9b5e7f37acb7c6", "message": "fix: [Onion] loop\n", "proba": 0.9984017014503479} {"commit": "9414b78c35f8c5f13417eaa347017673fe4d2fc5", "message": "Updated settings\n", "proba": 9.113693977269577e-07} {"commit": "39e6912cdb4760ed810a614510662c511e328117", "message": "Add standard type header remark to testRemark\n\nSigned-off-by: Misha Komarovskiy <6929490d9243dfad8c3c349ae2ec57189195237c@gmail.com>\n", "proba": 1.1144918232730561e-07} {"commit": "5b4fedd68edde930861ae73152f14f065c0cc926", "message": "Add use_sensors flag and option to get sensor values from database\n", "proba": 1.9236902915054088e-07} {"commit": "790275dd342d3028f40224a2a7cafa97ddf85204", "message": "Add hostname to header info\n", "proba": 1.2220206144775148e-06} {"commit": "2e24c21217f3664881c4f8af1c21ac5325ace38f", "message": "raw_id_field for collection input in product admin\n", "proba": 1.9120523120363941e-07} {"commit": "7f2849547ded77f1b2fcf77afa6bd7c3d33de9d0", "message": "Update sensor data before each reading.\n", "proba": 1.2896634871140122e-07} {"commit": "722ff20fed4842630be14b8ce1c3b5b257063a46", "message": "Add Hamming distance func\n", "proba": 0.0007486091344617307} {"commit": "30f0f657ce3042c456ffabae6f739cfbe767109a", "message": "Re-added accidentally removed line 85\n", "proba": 1.7012051500842063e-07} {"commit": "9c1c35a59f37f6aa29b91804fe79ffa4ba8de644", "message": "Remove leading dash (-) from options in archive.tar documentation\n", "proba": 1.7498022941708768e-07} {"commit": "d5ec283af0b3840746b28d16989d71775cc99ac2", "message": "modules.arhive:__virtual__ return err msg\n", "proba": 0.9982870221138} {"commit": "03e5143c7e0fd0cee9d6f84ce3b5b1f50f29594b", "message": "quote dbtable in update query\n", "proba": 2.678674491107813e-07} {"commit": "68ef0b27c155ab7a5a24427306591733c46c0d56", "message": "Fix typo in environ module documentation\n", "proba": 6.9641291702282615e-06} {"commit": "6f1437813de8772dbc3568c50b5863cff4d559be", "message": "Add support for systemd in latest XenServer 7.0 release which is now based on CentOS 7.\n", "proba": 1.0026204222413071e-07} {"commit": "ce80a60b33b825ca1a07bedab86869d3beedd52f", "message": "Add published date to editable news fields\n", "proba": 3.3389454756616033e-07} {"commit": "d2cca5836649d8e93bd0d0ab06c479b8a7f60202", "message": "Newline for lint", "proba": 3.376142672095739e-07} {"commit": "087dfb2ef4035716778a9dc07e86c722bb9ab0ce", "message": "Added tests for UltrasoundSimulatorGanModelZooTest Highres3dnetBrainParcellationModelZooTest AnisotropicNetsBratsChallengeModelZooTest MRCTRegressionModelZooTest and AutoContextMRCTModelZooTest\n", "proba": 1.344883884257797e-07} {"commit": "1161888ec1aafb0c2e6829acf13fc62cbea4f3dd", "message": "Port more functions from yumpkg.py to yumpkg5.py\n", "proba": 2.3627926282188128e-07} {"commit": "09e2b7fef2baa44866fe1f3f44d1dba3d59fea05", "message": "Improve: Optimize Import\n", "proba": 1.1648571671685204e-05} {"commit": "30b934b9652b53840df01ac69c6707d482fb2ac5", "message": "added Andre's username as unit-tests are using his account\n", "proba": 1.2721659459202783e-07} {"commit": "bf20a56f656c9d2b2024b95b1fe60e13d30e86d1", "message": "feat: add option to pass segments/processes to be used for download\n", "proba": 1.4166208472943254e-07} {"commit": "b939e2e5ec8f982663d221d50fe871c4a396f831", "message": "Replaced import six in file /salt/pillar/__init__.py\n", "proba": 2.03773015527986e-06} {"commit": "0caf04db7d002990504a15a51e3356ef413f4a4c", "message": "Speed-up whitelist check in data_pack.py\n\nPreviously whitelist was passed as a list causing a slow down when doing\n'key in whitelist' check. Converting the list to a set to speed that up.\n\nLocal testing shows about 4x speedup in running RePack().\n\nBUG=338759\nR=thakis@chromium.org\n\nReview URL: https://codereview.chromium.org/244893005\n\nPatch from Aurimas Liutikas .\n\ngit-svn-id: 50c90c531a9fd8f38831f054b7ea6b96f50d91dc@166 7262f16d-afe8-6277-6482-052fa10e57b1\n", "proba": 7.790192466927692e-05} {"commit": "33ccb62dcd64f8f54c5817c63f178959cbcd0ea1", "message": "Fix more fallout from lxml conversion.\n\nSigned-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@gmail.com>\n", "proba": 2.787674020510167e-07} {"commit": "a2aea8a6c544e8b52f315ade3eb7def23b363271", "message": "Allow setting the filter snotype\n\nThe module uses the filter snotype but subscribing to it does not\nwork because it is not a valid snotype.\n", "proba": 1.911497747641988e-06} {"commit": "8b86f94272d0242d45c314ce55e8fdb4d786b12d", "message": "Cleanup.\n", "proba": 3.34995263528981e-07} {"commit": "58d6037736cc9f764ef87104843f351b86f21377", "message": "Starting to retrieve data in batches\n", "proba": 7.240084300974559e-07} {"commit": "5445134d24851caf2d40ada57c88aef79f8b655c", "message": "wkbotsfeeder.py: only-failures logic was inversed\n", "proba": 1.2736588359985035e-05} {"commit": "8f3cb38b0f1073f1ee68f0f9c9ccee4a6bc69dba", "message": "add celeryd config for cleaning processes\n", "proba": 1.7851259315193602e-07} {"commit": "60f33acd1370dd10e7c9c99cb4814073b70596b0", "message": "Expose the Grow environment name to preprocessors.\n\nPreprocessors like gulp can look at GROW_ENVIRONMENT_NAME to make decisions,\nor pass them on to subprocesses (like Angular).\n", "proba": 1.1281766632009749e-07} {"commit": "2a184496deeda1d9fa260c9c6ca367d1a2acd87a", "message": "bug fix & clean up\n\n\nFormer-commit-id: a2c0e07244b0d092ee881d68b322a590f15a34fa [formerly 561e3c8de2b922952ac949a5afcb0bc918fba85a] [formerly 876986be392a9cf361925d4d8a495f2f68d27fe6 [formerly 1134d4c0c2d181018f556e168cbdf3fe75791c00]]\nFormer-commit-id: a33312573a18e06a100443bdd85f4d03dcf9c902\nFormer-commit-id: 084662c910d5537bc7d8b513b93b50aa0965d6a4", "proba": 1.6653694956403342e-06} {"commit": "8b77de43c7222f44385f389bd66bbf13d2f379b1", "message": "Fixed test to work with binary classification\n", "proba": 1.9791883687503287e-07} {"commit": "a90542b8f58b296593bf0c7d74d2b327a46742d0", "message": "Be less fussy about what to click to submit form\n\nWe\u2019re moving from `` to `