Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,770 for Eaccess (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. docs/bucket/notifications/README.md

    index*       (string)             Elasticsearch index to store/update events, index is auto-created
    format*      (namespace*|access)  'namespace' reflects current bucket/object list and 'access' reflects a journal of object operations, defaults to 'namespace'
    queue_dir    (path)               staging dir for undelivered messages e.g. '/home/events'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. docs/site-replication/README.md

    - All sites must be using the **same** external IDP(s) if any.
    - For [SSE-S3 or SSE-KMS encryption via KMS](https://min.io/docs/minio/linux/operations/server-side-encryption.html "MinIO KMS Guide"), all sites **must**  have access to a central KMS deployment. This can be achieved via a central KES server or multiple KES servers (say one per site) connected via a central KMS (Vault) server.
    
    ## Configuring Site Replication
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. native-image-tests/src/main/kotlin/okhttp3/TestRegistration.kt

    @AutomaticFeature
    class TestRegistration : Feature {
      override fun beforeAnalysis(access: Feature.BeforeAnalysisAccess) {
        // Presumably needed for parsing the testlist.txt file.
        RuntimeClassInitialization.initializeAtBuildTime(access.findClassByName("kotlin.text.Charsets"))
    
        registerKnownTests(access)
    
        registerJupiterClasses(access)
    
        registerParamProvider(access, "okhttp3.SampleTestProvider")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

                String[] children = dir.list();
                if (children != null) {
                    for (int i = 0; i < children.length; i++) {
                        boolean success = deleteDir(new File(dir, children[i]));
                        if (!success) {
                            return false;
                        }
                    }
                }
            }
    
            // The directory is now empty so delete it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberSelector.java

        }
    
        public static boolean isCandidateApiMember(int access, boolean apiIncludesPackagePrivateMembers) {
            return isPublicMember(access)
                || isProtectedMember(access)
                || (apiIncludesPackagePrivateMembers && isPackagePrivateMember(access));
        }
    
        private static boolean isPublicMember(int access) {
            return (access & ACC_PUBLIC) == ACC_PUBLIC;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top