Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 148 for admins (0.56 sec)

  1. cmd/bucket-handlers.go

    	// We encode the xml bytes as base64 to ensure there are no encoding
    	// errors.
    	cfgStr := base64.StdEncoding.EncodeToString(configData)
    	replLogIf(ctx, globalSiteReplicationSys.BucketMetaHook(ctx, madmin.SRBucketMeta{
    		Type:             madmin.SRBucketMetaTypeObjectLockConfig,
    		Bucket:           bucket,
    		ObjectLockConfig: &cfgStr,
    		UpdatedAt:        updatedAt,
    	}))
    
    	// Write success response.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			EndpointPort: 6060,
    		},
    	}
    
    	for _, wi := range []*model.WorkloadInstance{wiRatings1, wiDetails1, wiReviews1, wiReviews2, wiProduct1} {
    		ctl.workloadInstanceHandler(wi, model.EventAdd) // simulate adding a workload entry
    	}
    
    	cases := []struct {
    		name  string
    		proxy *model.Proxy
    		want  []model.ServiceTarget
    	}{
    		{
    			name:  "proxy with unspecified IP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			matchConditions: []api.WebhookMatchCondition{
    				{
    					Expression: "request.user == 'admin'",
    				},
    				{
    					Expression: "request.user == 'admin'",
    				},
    			},
    			featureEnabled: true,
    			expectedErr:    `matchConditions[1].expression: Duplicate value: "request.user == 'admin'"`,
    		},
    		{
    			name: "match conditions with undeclared reference",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    			return rs, mg, rsErr
    		}
    		rs = newRS
    		mg, mgErr = rs.Graph(ctx)
    	}
    
    	return rs, mg, mgErr
    }
    
    // EditBuildList edits the global build list by first adding every module in add
    // to the existing build list, then adjusting versions (and adding or removing
    // requirements as needed) until every module in mustSelect is selected at the
    // given version.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    //
    // Examples using `.` as a separator:
    // - `@request.auth.claims.admin` matches the claim "admin".
    // - `@request.auth.claims.group.id` matches the nested claims "group" and "id".
    //
    // Examples using `[]` as a separator:
    // - `@request.auth.claims[admin]` matches the claim "admin".
    // - `@request.auth.claims[group][id]` matches the nested claims "group" and "id".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    		if err != nil {
    			logger.V(4).Info("Pod doesn't exist in podLister, aborted adding it to the nominator", "pod", klog.KObj(pi.Pod))
    			return
    		}
    		if updatedPod.Spec.NodeName != "" {
    			logger.V(4).Info("Pod is already scheduled to a node, aborted adding it to the nominator", "pod", klog.KObj(pi.Pod), "node", updatedPod.Spec.NodeName)
    			return
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

      * **alpha**: NVIDIA GPU support ([#24836](https://github.com/kubernetes/kubernetes/pull/24836), [@therc](https://github.com/therc))
      * Adding loadBalancer services and nodeports services to quota system
    
    ## Known Issues and Important Steps before Upgrading
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

    {
        "configs": [
            {
                "@type": "type.googleapis.com/envoy.admin.v3.EndpointsConfigDump",
                "static_endpoint_configs": [
                    {
                        "endpoint_config": {
                            "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                            "cluster_name": "zipkin",
                            "policy": {
                                "overprovisioning_factor": 140
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    For the following use cases, consider these alternatives when replacing a `beforeResolve` hook:
    
    * **Adding dependencies**: Use link:{javadocPath}/org/gradle/api/artifacts/Configuration.html#withDependencies-org.gradle.api.Action-[`withDependencies`].
    * **Changing dependency versions**: Use <<using_preferred_versions,preferred version constraints>>.
    * **Adding excludes**: Use <<component_metadata_rules.adoc#sec:component_metadata_rules,Component Metadata Rules>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    		nodes                []*v1.Node
    		expectedAntiAffinity topologyToMatchedTermCount
    		expectedAffinity     topologyToMatchedTermCount
    	}{
    		{
    			name: "preFilterState anti-affinity terms are updated correctly after adding and removing a pod",
    			pendingPod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "pending", Labels: selector1},
    				Spec: v1.PodSpec{
    					Affinity: &v1.Affinity{
    						PodAntiAffinity: antiAffinityFooBar,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
Back to top