Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for someuser (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

                     .mutable()
                     .attribute(Attribute.of('foo', String), 'value')
            """
        }
    
        def "can publish maven publication metadata to remote repository"() {
            def username = "someuser"
            def password = "somepassword"
            def projectConfig = configureProject(username, password, "mavenRepo", false)
            def configurationCache = newConfigurationCacheFixture()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

            then:
            configurationCache.assertStateLoaded()
        }
    
        def "can publish ivy publication metadata to remote repository"() {
            def username = "someuser"
            def password = "somepassword"
            def projectConfig = configureProject(username, password, "ivyRepo", false)
            def configurationCache = newConfigurationCacheFixture()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                                samlUser.getNameIdFormat(), samlUser.getNameidNameQualifier(), samlUser.getNameidSPNameQualifier());
                        return auth.logout(null, logoutRequestParams, true);
                    } catch (final Exception e) {
                        logger.warn("Failed to logout from IdP: {}", samlUser, e);
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

        @Override
        public String toString() {
            return "{" + getUserId() + "}";
        }
    
        @Override
        public String getUserId() {
            return nameId;
        }
    
        public SamlUser getUser() {
            return new SamlUser(nameId, sessionIndex, nameIdFormat, nameidNameQualifier, nameidSPNameQualifier, getDefaultGroupsAsArray(),
                    getDefaultRolesAsArray());
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. docs/em/docs/how-to/sql-databases-peewee.md

        👥 🚫 🎯 ✔ `id` 🔢 🏒 🏷, ✋️ 🏒 🚮 1️⃣ 🔁.
    
        👥 ❎ 🎱 `owner_id` 🔢 `Item`.
    
    ### ✍ `PeeweeGetterDict` Pydantic *🏷* / 🔗
    
    🕐❔ 👆 🔐 💛 🏒 🎚, 💖 `some_user.items`, 🏒 🚫 🚚 `list` `Item`.
    
    ⚫️ 🚚 🎁 🛃 🎚 🎓 `ModelSelect`.
    
    ⚫️ 💪 ✍ `list` 🚮 🏬 ⏮️ `list(some_user.items)`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/sql-databases-peewee.md

    ### Create a `PeeweeGetterDict` for the Pydantic *models* / schemas
    
    When you access a relationship in a Peewee object, like in `some_user.items`, Peewee doesn't provide a `list` of `Item`.
    
    It provides a special custom object of class `ModelSelect`.
    
    It's possible to create a `list` of its items with `list(some_user.items)`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. tests/migrate_test.go

    	}
    
    	DB.Migrator().DropTable(&GameUser{})
    	err := DB.AutoMigrate(&GameUser{})
    	AssertEqual(t, nil, err)
    
    	err = DB.Table("game_users").AutoMigrate(&GameUser1{})
    	AssertEqual(t, nil, err)
    
    	_, err = findColumnType(&GameUser{}, "stat_ab_ground_destroy_count")
    	AssertEqual(t, nil, err)
    
    	_, err = findColumnType(&GameUser{}, "rate_ground_rb_ground_destroy_count")
    	AssertEqual(t, nil, err)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcs/vcs.go

    	}
    	out := strings.TrimSpace(string(outb))
    
    	var repoURL *urlpkg.URL
    	if m := scpSyntaxRe.FindStringSubmatch(out); m != nil {
    		// Match SCP-like syntax and convert it to a URL.
    		// Eg, "git@github.com:user/repo" becomes
    		// "ssh://******@****.***/user/repo".
    		repoURL = &urlpkg.URL{
    			Scheme: "ssh",
    			User:   urlpkg.User(m[1]),
    			Host:   m[2],
    			Path:   m[3],
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top