Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 89 of 89 for allocAll (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "broken file collection")
        def "fails when no variants match and no view attributes specified"() {
            ivyHttpRepo.module("test","test", "1.2").publish().allowAll()
    
            given:
            buildFile << """
                project(':lib') {
                    configurations {
                        compile {
                            outgoing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. plugin/pkg/admission/imagepolicy/admission_test.go

    				}
    			}
    			if tt.wantErr {
    				if err == nil {
    					t.Errorf("expected error making admission request: %v", err)
    				}
    				return
    			}
    			if err != nil {
    				t.Errorf("%s: failed to admit with AllowAll policy: %v", tt.test, err)
    				return
    			}
    
    			service.Deny()
    			if err := wh.Validate(context.TODO(), attr, nil); err == nil {
    				t.Errorf("%s: incorrectly admitted with DenyAll policy", tt.test)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 32.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
Back to top