Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 99 for allowAll (0.11 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

        def "invalidates cache when verification file changes"() {
            server.start()
            def v3 = remoteRepo.module("thing", "lib", "1.3").publish()
            def checkSum = getChecksum(v3, "sha256")
            v3.allowAll()
    
            taskTypeLogsInputFileCollectionContent()
            buildFile << """
                configurations {
                    implementation
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

        }
    
        static libRequest(MavenHttpRepository repo, String group, String name, Object version) {
            MavenHttpModule module = repo.module(group, name, version as String)
            module.allowAll()
        }
    
        def withSharedResources() {
            resources.maybeCopy('MavenConversionIntegrationTest/sharedResources')
        }
    
        static PomHttpArtifact expectParentPomRequest(MavenHttpRepository repo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

            javaLibrary()
            def foo = uncheckedModule("org", "foo", "1.0") {
                dependsOn("org", "bar", "1.0")
            }
            def bar = ivyHttpRepo.module("org", "bar", "1.0")
                .allowAll()
                .publish()
            buildFile << """
                repositories {
                    ivy { url "${ivyHttpRepo.uri}" }
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    			}
    			if tt.wantErr {
    				if err == nil {
    					t.Errorf("expected error making authorization request: %v", err)
    				}
    				return
    			}
    			if err != nil {
    				t.Errorf("%s: failed to authorize with AllowAll policy: %v", tt.test, err)
    				return
    			}
    
    			service.Deny()
    			if decision, _, _ := wh.Authorize(context.Background(), attr); decision == authorizer.DecisionAllow {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    }
                }
            """
        }
    
        def withExternalLibDependency(artifactId = "lib1") {
            def lib = mavenHttpRepo.module('org.test.foo', artifactId).publish()
            lib.allowAll()
            """
                project(':lib') {
                    dependencies {
                        compile 'org.test.foo:${artifactId}:${lib.version}'
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    						AllowedNames: sets.New[string](),
    					}
    				}
    				if to.Name != nil {
    					res[fromKey][toKey].AllowedNames.Insert(string(*to.Name))
    				} else {
    					res[fromKey][toKey].AllowAll = true
    				}
    			}
    		}
    	}
    	return res
    }
    
    // convertVirtualService takes all xRoute types and generates corresponding VirtualServices.
    func convertVirtualService(r configContext) []config.Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

    * Add support for running clusters on GCI ([#24893](https://github.com/kubernetes/kubernetes/pull/24893), [@andyzheng0831](https://github.com/andyzheng0831))
    * Switch to ABAC authorization from AllowAll ([#24210](https://github.com/kubernetes/kubernetes/pull/24210), [@cjcullen](https://github.com/cjcullen))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. plugin/pkg/admission/imagepolicy/config_test.go

    		{
    			test: "config within normal ranges",
    			config: imagePolicyWebhookConfig{
    				AllowTTL:     ((minAllowTTL + maxAllowTTL) / 2) / time.Second,
    				DenyTTL:      ((minDenyTTL + maxDenyTTL) / 2) / time.Second,
    				RetryBackoff: ((minRetryBackoff + maxRetryBackoff) / 2) / time.Millisecond,
    			},
    			normalizedConfig: imagePolicyWebhookConfig{
    				AllowTTL:     ((minAllowTTL + maxAllowTTL) / 2) / time.Second * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. plugin/pkg/admission/imagepolicy/config.go

    )
    
    // imagePolicyWebhookConfig holds config data for imagePolicyWebhook
    type imagePolicyWebhookConfig struct {
    	KubeConfigFile string        `json:"kubeConfigFile"`
    	AllowTTL       time.Duration `json:"allowTTL"`
    	DenyTTL        time.Duration `json:"denyTTL"`
    	RetryBackoff   time.Duration `json:"retryBackoff"`
    	DefaultAllow   bool          `json:"defaultAllow"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 04:07:36 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. plugin/pkg/admission/imagepolicy/admission.go

    	webhook       *webhook.GenericWebhook
    	responseCache *cache.LRUExpireCache
    	allowTTL      time.Duration
    	denyTTL       time.Duration
    	defaultAllow  bool
    }
    
    var _ admission.ValidationInterface = &Plugin{}
    
    func (a *Plugin) statusTTL(status v1alpha1.ImageReviewStatus) time.Duration {
    	if status.Allowed {
    		return a.allowTTL
    	}
    	return a.denyTTL
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top