Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for Anonymous1 (0.14 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaClassChangeIncrementalCompilationIntegrationTest.groovy

                    }
                """
                source """
                    class Consumer {
                        void consume() {
                            System.out.println(new Anonymous1().getAnonymous().foo());
                            System.out.println(new Anonymous2().getAnonymous().foo());
                            System.out.println(new MethodLocal1().getAnonymous().foo());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. cluster/gce/gci/audit_policy_test.go

    	at.testResources(request, defaultSA, anonymous, npd, namespaceController, "get", "list", "watch", sysEndpoints, podMetrics, pods, clusterRoles, deployments)
    	at.testResources(response, defaultSA, anonymous, npd, namespaceController, "create", "update", "patch", "delete", sysEndpoints, podMetrics, pods, clusterRoles, deployments)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication.go

    		"defaults to a single element list containing the issuer URL.")
    
    	if o.Anonymous != nil {
    		fs.BoolVar(&o.Anonymous.Allow, "anonymous-auth", o.Anonymous.Allow, ""+
    			"Enables anonymous requests to the secure port of the API server. "+
    			"Requests that are not rejected by another authentication method are treated as anonymous requests. "+
    			"Anonymous requests have a username of system:anonymous, and a group name of system:unauthenticated.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/authenticator/config.go

    	}
    
    	if len(authenticators) == 0 {
    		if config.Anonymous {
    			return anonymous.NewAuthenticator(), nil, &securityDefinitionsV2, securitySchemesV3, nil
    		}
    		return nil, nil, &securityDefinitionsV2, securitySchemesV3, nil
    	}
    
    	authenticator := union.New(authenticators...)
    
    	authenticator = group.NewAuthenticatedGroupAdder(authenticator)
    
    	if config.Anonymous {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. cmd/bucket-handlers_test.go

    		}
    
    	}
    
    	// Test for Anonymous/unsigned http request.
    	anonReq, err := newTestRequest(http.MethodHead, getHEADBucketURL("", bucketName), 0, nil)
    	if err != nil {
    		t.Fatalf("MinIO %s: Failed to create an anonymous request for bucket \"%s\": <ERROR> %v",
    			instanceType, bucketName, err)
    	}
    
    	// ExecObjectLayerAPIAnonTest - Calls the HTTP API handler using the anonymous request, validates the ErrAccessDeniedResponse,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

            file("buildSrc/src/main/java/${anonymousClassName}.java") << javaClass(anonymousClassName, anonymousClassWritingFile("ACTION", "anonymous"))
            buildFile << """
                task myTask(type: TaskWithActionProperty) {
                    outputs.cacheIf { true }
                    action = providers.gradleProperty("anonymous").isPresent()
                        ? ${anonymousClassName}.ACTION
                        : ${lambdaClassName}.ACTION
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/signature.go

    			params = append(params, par)
    			anonymous = true
    		}
    	}
    
    	if named && anonymous {
    		check.error(list[0], InvalidSyntaxTree, "list contains both named and anonymous parameters")
    		// ok to continue
    	}
    
    	// For a variadic function, change the last parameter's type from T to []T.
    	// Since we type-checked T rather than ...T, we also need to retro-actively
    	// record the type for ...T.
    	if variadic {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. cmd/bucket-policy-handlers_test.go

    			}
    		}
    	}
    
    	// Test for Anonymous/unsigned http request.
    	// Bucket policy related functions doesn't support anonymous requests, setting policies shouldn't make a difference.
    	// create unsigned HTTP request for PutBucketPolicyHandler.
    	anonReq, err := newTestRequest(http.MethodGet, getPutPolicyURL("", bucketName), 0, nil)
    	if err != nil {
    		t.Fatalf("MinIO %s: Failed to create an anonymous request for bucket \"%s\": <ERROR> %v",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    			case "known":
    				return &authenticator.Response{User: &user.DefaultInfo{Name: "panda"}}, true, nil
    			case "error":
    				return nil, false, errors.New("authn err")
    			case "anonymous":
    				return anonymous.NewAuthenticator().AuthenticateRequest(r)
    			case "anonymous_group":
    				return &authenticator.Response{User: &user.DefaultInfo{Groups: []string{user.AllUnauthenticated}}}, true, nil
    			default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  10. src/go/types/signature.go

    			params = append(params, par)
    			anonymous = true
    		}
    	}
    
    	if named && anonymous {
    		check.error(list, InvalidSyntaxTree, "list contains both named and anonymous parameters")
    		// ok to continue
    	}
    
    	// For a variadic function, change the last parameter's type from T to []T.
    	// Since we type-checked T rather than ...T, we also need to retro-actively
    	// record the type for ...T.
    	if variadic {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top