Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for escalate (0.23 sec)

  1. pkg/registry/rbac/escalation_check.go

    	rbac.SchemeGroupVersion.WithResource("roles").GroupResource():        true,
    }
    
    // RoleEscalationAuthorized checks if the user associated with the context is explicitly authorized to escalate the role resource associated with the context
    func RoleEscalationAuthorized(ctx context.Context, a authorizer.Authorizer) bool {
    	if a == nil {
    		return false
    	}
    
    	user, ok := genericapirequest.UserFrom(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccess.java

        @Override
        public <T> T withFileLock(Supplier<T> factory) {
            throw failure();
        }
    
        protected UnsupportedOperationException failure() {
            return new UnsupportedOperationException("Cannot escalate a shared lock to an exclusive lock. This is not yet supported.");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/runtime/security_test.go

    	}
    	_, err := cmd.CombinedOutput()
    	return err
    }
    
    const highPrivUser = "root"
    
    func setSetuid(t *testing.T, user, bin string) {
    	t.Helper()
    	// We escalate privileges here even if we are root, because for some reason on some builders
    	// (at least freebsd-amd64-13_0) the default PATH doesn't include /usr/sbin, which is where
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:10:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. CODE_OF_CONDUCT.md

    However, for the vast majority of issues, we aim to empower individuals to first resolve conflicts themselves, asking for help when needed, and only after that fails to escalate further. This approach gives people more control over the outcome of their dispute. 
    
    If you are experiencing or witnessing conflict, we ask you to use the following escalation strategy to address the conflict:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 05 18:43:16 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top