Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for my_dep (0.13 sec)

  1. docs/en/docs/release-notes.md

    In short, if you had dependencies that looked like:
    
    ```Python
    def my_dep():
        try:
            yield
        except SomeException:
            pass
    ```
    
    Now you need to make sure you raise again after `except`, just as you would in regular Python:
    
    ```Python
    def my_dep():
        try:
            yield
        except SomeException:
            raise
    ```
    
    ### Docs
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

    """
            buildFile << """
            model {
                components {
                    main {
                        binaries.all {
                            ${helloWorldApp.compilerDefine("MY_DEF")}
                        }
                    }
                }
            }
    """
            extraSource.delete()
    
            and:
            run "mainExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. docs/sts/ldap.md

    ```
    $ mc admin config set myminio identity_ldap --env
    KEY:
    identity_ldap  enable LDAP SSO support
    
    ARGS:
    MINIO_IDENTITY_LDAP_SERVER_ADDR*            (address)   AD/LDAP server address e.g. "myldap.com" or "myldapserver.com:636"
    MINIO_IDENTITY_LDAP_SRV_RECORD_NAME         (string)    DNS SRV record name for LDAP service, if given, must be one of "ldap", "ldaps" or "on"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

        static final String PVC_NAME = "provider.convertible"
        static final String PVC_VERSION = "1.5"
    
        static final String BAR_TXT = "bar.txt"
    
        static final String MYDEPS_BUNDLE = "mydeps"
    
        static final String PROJECT_GROUP = ""
        static final String PROJECT_NAME = "testproject"
        static final String PROJECT_VERSION = "1.1"
    
        String singleString(String group, String name, String version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_freebsd_arm.go

    	SYS_CAP_GETRIGHTS            = 515 // { int cap_getrights(int fd, \
    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_CAP_GETRIGHTS            = 515 // { int cap_getrights(int fd, \
    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_freebsd_386.go

    	SYS_CAP_GETRIGHTS            = 515 // { int cap_getrights(int fd, \
    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  8. src/go/printer/testdata/declarations.golden

    )
    
    import (
    	mymath "math"
    	"/foo/bar/long_package_path"	// a comment
    )
    
    import (
    	"package_a"	// comment
    	"package_b"
    	my_better_c "package_c"	// comment
    	"package_d"		// comment
    	my_e "package_e"	// comment
    
    	"package_a"	// comment
    	"package_bb"
    	"package_ccc"	// comment
    	"package_dddd"	// comment
    )
    
    // print import paths as double-quoted strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  9. src/go/printer/testdata/declarations.input

    )
    
    import (
    	mymath "math"
    	"/foo/bar/long_package_path" // a comment
    )
    
    import (
    	"package_a" // comment
    	"package_b"
    	my_better_c "package_c" // comment
    	"package_d" // comment
    	my_e "package_e" // comment
    
    	"package_a"    // comment
    	"package_bb"
    	"package_ccc"  // comment
    	"package_dddd" // comment
    )
    
    // print import paths as double-quoted strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_freebsd_arm64.go

    	SYS___CAP_RIGHTS_GET         = 515 // { int __cap_rights_get(int version, int fd, cap_rights_t *rightsp); }
    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
Back to top