About 50 results
Open links in new tab
  1. Newest Questions - Stack Overflow

    2 days ago · Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work. Try for free Learn more

  2. How to get all groups that a user is a member of? - Stack Overflow

    PowerShell's Get-ADGroupMember cmdlet returns members of a specific group. Is there a cmdlet or property to get all the groups that a particular user is a member of?

  3. SSL: CERTIFICATE_VERIFY_FAILED certificate verify failed: unable to get ...

    Nov 8, 2023 · When I try to install a python module or execute a script I get the following error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate …

  4. Unable to get local issuer certificate when using requests

    The get function has also got the verify parameter. It is also possible, when using a session, see the example in the documentation. Then it worked.

  5. Single controller with multiple GET methods in ASP.NET Web API

    Feb 29, 2012 · 8 With the newer Web Api 2 it has become easier to have multiple get methods. If the parameter passed to the GET methods are different enough for the attribute routing system to …

  6. What is the { get; set; } syntax in C#? - Stack Overflow

    Feb 24, 2011 · The get/set pattern provides a structure that allows logic to be added during the setting ('set') or retrieval ('get') of a property instance of an instantiated class, which can be useful when …

  7. Understanding .get() method in Python - Stack Overflow

    Here the get method finds a key entry for 'e' and finds its value which is 1. We add this to the other 1 in characters.get (character, 0) + 1 and get 2 as result.

  8. Why doesn't list have safe "get" method like dictionary?

    Ultimately it probably doesn't have a safe .get method because a dict is an associative collection (values are associated with names) where it is inefficient to check if a key is present (and return its value) …

  9. How to get just one file from another branch - Stack Overflow

    To get app.js from the new-feature branch, do: git checkout new-feature path/to/app.js // Note that there isn't any leading slash in the path! This will bring you the contents of the desired file. You can, as …

  10. How to get the type of T from a member of a generic class or method

    How to get the type of T from a member of a generic class or method Asked 17 years ago Modified 2 years ago Viewed 926k times