Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,481 for Eaccess (0.39 sec)

  1. cmd/bucket-policy-handlers.go

    	// Policy configuration file.
    	bucketPolicyConfig = "policy.json"
    )
    
    // PutBucketPolicyHandler - This HTTP handler stores given bucket policy configuration as per
    // https://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html
    func (api objectAPIHandlers) PutBucketPolicyHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PutBucketPolicy")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. docs/sts/web-identity.py

            token_url, data=data, verify=False,
            allow_redirects=False, auth=(client_id, client_secret))
    
        print('body: ' + id_token_response.text)
    
        # we can now use the id_token as much as we want to access protected resources.
        tokens = json.loads(id_token_response.text)
        id_token = tokens['id_token']
    
        response = sts_client.assume_role_with_web_identity(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 28 01:37:51 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

            result.task(':library:compileDebugJavaWithJavac').outcome == TaskOutcome.SUCCESS
            result.task(':app:compileDebugJavaWithJavac').outcome == TaskOutcome.SUCCESS
            result.task(':library:assembleDebug').outcome == TaskOutcome.SUCCESS
            result.task(':app:assembleDebug').outcome == TaskOutcome.SUCCESS
    
            and:
            if (GradleContextualExecuter.isConfigCache()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. cmd/handler-utils.go

    	} else {
    		hostName = r.Host
    	}
    	return
    }
    
    // Proxy any request to an endpoint.
    func proxyRequest(ctx context.Context, w http.ResponseWriter, r *http.Request, ep ProxyEndpoint) (success bool) {
    	success = true
    
    	// Make sure we remove any existing headers before
    	// proxying the request to another node.
    	for k := range w.Header() {
    		w.Header().Del(k)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. pkg/bootstrap/platform/gcp.go

    			log.Warnf("failed to decode response: %v", err)
    			success <- false
    			return
    		}
    		instanceLabels = instance.Labels
    		success <- true
    	}()
    	select {
    	case <-ctx.Done():
    		log.Warnf("context deadline exceeded for instance get request: %v", ctx.Err())
    	case ok := <-success:
    		if ok && instanceLabels != nil {
    			labels = instanceLabels
    		}
    	}
    	return labels
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/worker.go

    			return true
    		}
    	}
    
    	// Note, exec probe does NOT have access to pod environment variables or downward API
    	result, err := w.probeManager.prober.probe(ctx, w.probeType, w.pod, status, w.container, w.containerID)
    	if err != nil {
    		// Prober error, throw away the result.
    		return true
    	}
    
    	switch result {
    	case results.Success:
    		ProberResults.With(w.proberResultsSuccessfulMetricLabels).Inc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    		},
    	}
    
    	// Allow all in-cluster workloads (via their service accounts) to read the OIDC discovery endpoints.
    	// Users with certain forms of write access (create pods, create secrets, create service accounts, etc)
    	// can gain access to a service account identity which would allow them to access this information.
    	// This includes the issuer URL, which is already present in the SA token JWT.  Similarly, SAs can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  8. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * Creates an {@code MonitorBasedArrayBlockingQueue} with the given (fixed) capacity and the
       * specified access policy.
       *
       * @param capacity the capacity of this queue
       * @param fair if {@code true} then queue accesses for threads blocked on insertion or removal,
       *     are processed in FIFO order; if {@code false} the access order is unspecified.
       * @throws IllegalArgumentException if {@code capacity} is less than 1
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * Creates an {@code MonitorBasedArrayBlockingQueue} with the given (fixed) capacity and the
       * specified access policy.
       *
       * @param capacity the capacity of this queue
       * @param fair if {@code true} then queue accesses for threads blocked on insertion or removal,
       *     are processed in FIFO order; if {@code false} the access order is unspecified.
       * @throws IllegalArgumentException if {@code capacity} is less than 1
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users_test.go

    	}
    
    	// 2. Check that user has no access
    	uClient := s.getUserClient(c, accessKey, secretKey, "")
    	c.mustNotListObjects(ctx, uClient, bucket)
    
    	// 3. Associate policy to group and check user got access.
    	err = s.adm.SetPolicy(ctx, policy, group, true)
    	if err != nil {
    		c.Fatalf("Unable to set policy: %v", err)
    	}
    	// 3.1 check user has access to bucket
    	c.mustListObjects(ctx, uClient, bucket)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top