Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for my_dep (0.18 sec)

  1. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/internal/installation/CurrentGradleInstallationLocatorTest.groovy

        }
    
        def "determines Gradle home by class bundled in JAR located in valid distribution subdirectory '#jarDirectory'"() {
            given:
            def jar = distDir.file("$jarDirectory/mydep-1.2.jar")
            createJarFile(jar)
    
            when:
            def clazz = loadClassFromJar(jar)
            def installation = CurrentGradleInstallationLocator.locateViaClass(clazz).getInstallation()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/build_defs.bzl

            tags:
            test:
        """
        if not src.endswith(".py") or name == src[:-3]:
            fail("'src' %s conflicts with op Python wrapper. Rename it to be different from 'name'." % src)
    
        py_deps = [
            "//tensorflow/compiler/mlir/tfr:op_reg_gen",
            "//tensorflow/compiler/mlir/tfr:tfr_gen",
            "//tensorflow/compiler/mlir/tfr:composite",
        ] + deps
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. internal/config/identity/ldap/help.go

    	defaultHelpPostfix = func(key string) string {
    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	Help = config.HelpKVS{
    		config.HelpKV{
    			Key:         ServerAddr,
    			Description: `AD/LDAP server address e.g. "myldap.com" or "myldapserver.com:636"` + defaultHelpPostfix(ServerAddr),
    			Type:        "address",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         SRVRecordName,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

      auto loc_filtered2 = FileLineColLoc::get(&context, id_filtered2, 0, 0);
      auto id_filtered3 =
          StringAttr::get(&context, "//tensorflow/python/something/my_op.py");
      auto loc_filtered3 = FileLineColLoc::get(&context, id_filtered3, 0, 0);
    
      // Build a small stack for each error; the MLIR diagnostic filtering will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    doLast {
                        def libs = catalogs.named("libs")
                        assert libs.findVersion('my-ver').present
                        assert libs.findVersion('my_ver').present
                        assert libs.findVersion('my.ver').present
    
                        assert libs.findLibrary('my-lib').present
                        assert libs.findLibrary('my_lib').present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
Back to top