Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for regUsed (0.4 sec)

  1. cmd/iam-store.go

    			if err := store.loadUsers(ctx, regUser, newCache.iamUsersMap); err != nil {
    				return err
    			}
    			bootstrapTraceMsg("loading regular groups")
    			if err := store.loadGroups(ctx, newCache.iamGroupsMap); err != nil {
    				return err
    			}
    		}
    
    		bootstrapTraceMsg("loading user policy mapping")
    		// load polices mapped to users
    		if err := store.loadMappedPolicies(ctx, regUser, false, newCache.iamUserPolicyMap); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                problemsWithStackTraceCount = 0
            }
            outputContains("Configuration cache entry reused with 4 problems.")
        }
    
        def "configuration time problems are reported and fail the build by default only when configuration is executed invalidating the cache"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. cmd/iam.go

    	updatedAt, addedOrRemoved, effectivePolicies, err = sys.store.PolicyDBUpdate(ctx, userOrGroup, isGroup,
    		regUser, r.Policies, isAttach)
    	if err != nil {
    		return
    	}
    
    	// Notify all other MinIO peers to reload policy
    	if !sys.HasWatcher() {
    		for _, nerr := range globalNotificationSys.LoadPolicyMapping(ctx, userOrGroup, regUser, isGroup) {
    			if nerr.Err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Configuration cache entry reused.
    ----
    
    But, what if we change the value of the system property?
    
    ----
    ❯ gradle --configuration-cache someTask -DsomeDestination=another
    include::{snippetsPath}/configurationCache/problemsFixed/tests/store-another.out[]
    Configuration cache entry stored.
    ----
    
    The previous configuration cache entry could not be reused, and the task graph had to be calculated and stored again.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    	canceledErr          error // set non-nil if conn is canceled
    	broken               bool  // an error has happened on this connection; marked broken so it's not reused.
    	reused               bool  // whether conn has had successful request/response and is being reused.
    	// mutateHeaderFunc is an optional func to modify extra
    	// headers on each outbound request before it's written. (the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val call2 = client.newCall(Request(server.url("/")))
        val response2 = call2.execute()
        assertThat(response2.body.string()).isEqualTo("A")
    
        // Confirm that the connection was reused.
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(1)
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  7. cmd/admin-handlers-users.go

    		}
    	} else {
    		_, err := globalIAMSys.GetGroupDescription(entityName)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    	}
    
    	userType := regUser
    	if globalIAMSys.GetUsersSysType() == LDAPUsersSysType {
    		userType = stsUser
    
    		// Validate that the user or group exists in LDAP and use the normalized
    		// form of the entityName (which will be an LDAP DN).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    	var strflags Flags
    	start := 0
    	out := sub[:0]
    	for i := 0; i <= len(sub); i++ {
    		// Invariant: the Regexps that were in sub[0:start] have been
    		// used or marked for reuse, and the slice space has been reused
    		// for out (len(out) <= start).
    		//
    		// Invariant: sub[start:i] consists of regexps that all begin
    		// with str as modified by strflags.
    		var istr []rune
    		var iflags Flags
    		if i < len(sub) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. src/syscall/zerrors_darwin_arm64.go

    	56:  "socket is already connected",
    	57:  "socket is not connected",
    	58:  "can't send after socket shutdown",
    	59:  "too many references: can't splice",
    	60:  "operation timed out",
    	61:  "connection refused",
    	62:  "too many levels of symbolic links",
    	63:  "file name too long",
    	64:  "host is down",
    	65:  "no route to host",
    	66:  "directory not empty",
    	67:  "too many processes",
    	68:  "too many users",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{76, "ENOTCONN", "socket is not connected"},
    	{77, "ESHUTDOWN", "can't send after socket shutdown"},
    	{78, "ETIMEDOUT", "connection timed out"},
    	{79, "ECONNREFUSED", "connection refused"},
    	{80, "EHOSTDOWN", "host is down"},
    	{81, "EHOSTUNREACH", "no route to host"},
    	{82, "ERESTART", "restart the system call"},
    	{83, "EPROCLIM", "too many processes"},
    	{84, "EUSERS", "too many users"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
Back to top