Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 236 for impacted (0.17 sec)

  1. architecture/networking/pilot.md

    Next, for an individual proxy we will check if it could possibly be impacted by the change. For example, we know a sidecar never is impacted by a `Gateway` update, and we can also look at scoping (from `Sidecar.egress.hosts`) to further restrict update scopes.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

            result.getLockedDependencies() == [newId(DefaultModuleIdentifier.newId('com', 'foo'), '1.0')] as Set
    
            where:
            unique << [true, false]
        }
    
        def 'can filter lock entries impacted by dependency substitutions (Unique: #unique)'() {
            given:
            dependencySubstitutionRules.rulesMayAddProjectDependency() >> true
            Action< DependencySubstitution> substitutionAction = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. tests/integration/security/egress_sidecar_tls_origination_test.go

    					},
    				},
    				// Mutual TLS origination from an authorized sidecar to https endpoint with a CRL with a dummy revoked certificate.
    				// Since the certificate in action is not revoked, the communication should not be impacted.
    				{
    					name:             "dummy crl",
    					credentialToUse:  credWithDummyCRL,
    					from:             apps.Ns2.B,
    					drSelector:       "b",
    					authorizeSidecar: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .build());
            options.addOption(Option.builder(FAIL_AT_END)
                    .longOpt("fail-at-end")
                    .desc("Only fail the build afterwards; allow all non-impacted builds to continue")
                    .build());
            options.addOption(Option.builder(FAIL_NEVER)
                    .longOpt("fail-never")
                    .desc("NEVER fail the build, regardless of project result")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. tests/integration/security/egress_gateway_origination_test.go

    				},
    				// Set up an UpstreamCluster with a CredentialName where the secret has a CRL specified with an unused server certificate as revoked.
    				// Since the certificate in action is not revoked, the communication should not be impacted.
    				{
    					name:            "credential with CRL having unused revoked server certificate",
    					statusCode:      http.StatusOK,
    					credentialToUse: credWithDummyCRL,
    					useGateway:      true,
    				},
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    	// Now we should be able to look up a VIP as well
    	s.assertWorkloads(t, s.addrXdsName("10.0.0.1"), workloadapi.WorkloadStatus_HEALTHY, "name1", "name2")
    	// We should get an event for the two WEs and the selecting service impacted
    	s.assertEvent(t, s.wleXdsName("name1"), s.wleXdsName("name2"), s.svcXdsName("svc1"))
    
    	// Add a new pod to the service, we should see it
    	s.addWorkloadEntries(t, "127.0.0.4", "name4", "sa4", map[string]string{"app": "a"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pilot/pkg/xds/bench_test.go

    func BenchmarkListenerGeneration(b *testing.B) {
    	runBenchmark(b, v3.ListenerType, testCases)
    }
    
    func TestListenerGeneration(t *testing.T) {
    	testBenchmark(t, v3.ListenerType, testCases)
    }
    
    // NDS isn't really impacted by anything beyond number of services, so just run these separately
    var ndsCases = []ConfigInput{
    	{
    		Name:     "tcp",
    		Services: 1000,
    	},
    }
    
    func BenchmarkNameTableGeneration(b *testing.B) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. doc/godebug.md

    then fixing the bug will break that code.
    New features can also have similar impacts:
    enabling the HTTP/2 use by the HTTP client broke programs
    connecting to servers with buggy HTTP/2 implementations.
    These kinds of changes are unavoidable and
    [permitted by the Go 1 compatibility rules](/doc/go1compat).
    Even so, Go provides a mechanism called GODEBUG to
    reduce the impact such changes have on Go developers
    using newer toolchains to compile old code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/discovery.go

    	// default generator, or the combination of Generator metadata and TypeUrl to select a
    	// different generator for a type.
    	// Normal istio clients use the default generator - will not be impacted by this.
    	Generators map[string]model.XdsResourceGenerator
    
    	// ProxyNeedsPush is a function that determines whether a push can be completely skipped. Individual generators
    	// may also choose to not send any updates.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Projects imported into Eclipse now include custom source set classpaths
    
    Previously, projects imported by Eclipse only included dependencies for the main and test source sets.
    The compile and runtime classpaths of custom source sets were ignored.
    
    Since Gradle 6.8, projects imported into Eclipse include the compile and runtime classpath for every source set defined by the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top