Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for someuser (0.34 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. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

        }
    
        @Test
        public void testFluentLinkOffline() {
            final String extDocUrl = "http://otherdomain.org/javadoc";
            final String packageListLoc = "/home/someuser/used-lib-local-javadoc-list";
            assertEquals(options, options.linksOffline(extDocUrl, packageListLoc));
            assertEquals(extDocUrl, options.getLinksOffline().get(0).getExtDocUrl());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tests/count_test.go

    		t.Fatalf("Count should be 3, but got count: %v err %v", count10, err)
    	}
    
    	var count11 int64
    	sameUsers := make([]*User, 0)
    	for i := 0; i < 3; i++ {
    		sameUsers = append(sameUsers, GetUser("count-4", Config{}))
    	}
    	DB.Create(sameUsers)
    
    	if err := DB.Model(&User{}).Where("name = ?", "count-4").Group("name").Count(&count11).Error; err != nil || count11 != 1 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    	authz := New(resolver, resolver, resolver, resolver)
    
    	nodeUser := &user.DefaultInfo{Name: "system:node:node1", Groups: []string{"system:nodes", "system:authenticated"}}
    	requests := []struct {
    		name  string
    		attrs authorizer.Attributes
    	}{
    		{
    			"allow list pods",
    			authorizer.AttributesRecord{
    				ResourceRequest: true,
    				User:            nodeUser,
    				Verb:            "list",
    				Resource:        "pods",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top