Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 228 for claims0 (0.14 sec)

  1. internal/config/dns/operator_dns.go

    func (c *OperatorDNS) addAuthHeader(r *http.Request) error {
    	if c.username == "" || c.password == "" {
    		return nil
    	}
    
    	claims := &jwt.StandardClaims{
    		ExpiresAt: int64(15 * time.Minute),
    		Issuer:    c.username,
    		Subject:   config.EnvDNSWebhook,
    	}
    
    	token := jwt.NewWithClaims(jwt.SigningMethodHS512, claims)
    	ss, err := token.SignedString([]byte(c.password))
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/namespace/namespace.go

    	IsAmbient() bool
    	IsInjected() bool
    }
    
    // Claim an existing namespace in all clusters, or create a new one if doesn't exist.
    func Claim(ctx resource.Context, cfg Config) (i Instance, err error) {
    	cfg.overwriteRevisionIfEmpty(ctx.Settings().Revisions.Default())
    	return claimKube(ctx, cfg)
    }
    
    // ClaimOrFail calls Claim and fails test if it returns error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 18:12:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/cmd/go/note_test.go

    		if err != nil {
    			if tg.grepCountBoth("(invalid linker|gold|cannot find [‘']ld[’'])") > 0 {
    				// It's not an error if gold isn't there. gcc claims it "cannot find 'ld'" if
    				// ld.gold is missing, see issue #22340.
    				t.Log("skipping gold test")
    				break
    			}
    			t.Fatalf("building hello binary: %v", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. pkg/config/security/security_test.go

    			values: []string{"value"},
    		},
    		{
    			key:    "request.auth.presenter",
    			values: []string{"value"},
    		},
    		{
    			key:    "request.auth.claims[id]",
    			values: []string{"123"},
    		},
    		{
    			key:       "request.auth.claims[]",
    			values:    []string{"value"},
    			wantError: true,
    		},
    		{
    			key:    "destination.ip",
    			values: []string{"1.2.3.4", "5.6.7.0/24"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/AntWorkerMemoryLeakIntegrationTest.groovy

        public static final String LOCAL_GROOVY = 'localGroovy()'
    
        private void goodCode(String groovyVersion, TestFile root = testDirectory) {
            root.file("src/main/java/org/gradle/Class0.java") << "package org.gradle; public class Class0 { }"
            root.file("src/main/groovy/org/gradle/Class1.groovy") << "package org.gradle; class Class1 { }"
            root.file('build.gradle') << """
    
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. plugin/pkg/admission/storage/persistentvolume/resize/admission.go

    	if newSize.Cmp(oldSize) <= 0 {
    		return nil
    	}
    
    	if oldPvc.Status.Phase != api.ClaimBound {
    		return admission.NewForbidden(a, fmt.Errorf("Only bound persistent volume claims can be expanded"))
    	}
    
    	// Growing Persistent volumes is only allowed for PVCs for which their StorageClass
    	// explicitly allows it
    	if !pvcr.allowResize(pvc, oldPvc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/util/cdi/cdi_test.go

    			expectedAnnotations: []container.Annotation{{Name: "cdi.k8s.io/test-driver-name_test-claim-uid", Value: "vendor.com/class=device1"}},
    		},
    	}
    
    	as := assert.New(t)
    	for _, tc := range testCases {
    		t.Run(tc.description, func(t *testing.T) {
    			annotations, err := GenerateAnnotations("test-claim-uid", "test-driver-name", tc.deviceIDs)
    			as.ErrorIs(err, tc.expecteError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:47:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

            values: ["audiences"]
            notValues: ["not-audiences"]
          - key: "request.auth.presenter"
            values: ["presenter"]
            notValues: ["not-presenter"]
          - key: "request.auth.claims[iss]"
            values: ["iss"]
            notValues: ["not-iss"]
          - key: "destination.ip"
            values: ["10.10.10.10"]
            notValues: ["90.10.10.10"]
          - key: "destination.port"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/options/options.go

    func (o *PersistentVolumeControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	fs.DurationVar(&o.PVClaimBinderSyncPeriod, "pvclaimbinder-sync-period", o.PVClaimBinderSyncPeriod,
    		"The period for syncing persistent volumes and persistent volume claims")
    	fs.StringVar(&o.VolumeConfigFlags.PersistentVolumeRecyclerPodTemplateFilePathNFS,
    		"pv-recycler-pod-template-filepath-nfs", o.VolumeConfigFlags.PersistentVolumeRecyclerPodTemplateFilePathNFS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 04 20:45:21 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  10. docs/iam/access-management-plugin.md

          "userid": [
            "minio"
          ],
          "username": [
            "minio"
          ],
          "versionid": [
            ""
          ]
        },
        "owner": true,
        "object": "",
        "claims": {},
        "denyOnly": false
      }
    }
    ```
    
    </details>
    
    The response expected by MinIO, is a JSON body with a boolean:
    
    ```json
    {
        "result": true
    }
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 13 22:28:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
Back to top