Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 257 for impacted (0.25 sec)

  1. testing/precondition-tester/build.gradle.kts

        testClassesDirs = sourceSets.test.get().output.classesDirs
        // All test should have this project's "test" source set on their classpath
        classpath += sourceSets.test.get().output
    
        // These tests should not be impacted by the predictive selection
        extensions.findByType<DevelocityTestConfiguration>()?.apply {
            predictiveTestSelection.enabled = false
        }
    
        // These tests should always run
        outputs.upToDateWhen { false }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

      fun flush() {
        writer.flush()
      }
    
      /**
       * Degrades this connection such that new streams can neither be created locally, nor accepted
       * from the remote peer. Existing streams are not impacted. This is intended to permit an endpoint
       * to gracefully stop accepting new requests without harming previously established streams.
       */
      @Throws(IOException::class)
      fun shutdown(statusCode: ErrorCode) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    		e.registry.Add(evaluator)
    		klog.Infof("quota admission added evaluator for: %s", gr)
    	}
    	// for this kind, check if the operation could mutate any quota resources
    	// if no resources tracked by quota are impacted, then just return
    	if !evaluator.Handles(a) {
    		return nil
    	}
    	waiter := newAdmissionWaiter(a)
    
    	e.addWork(waiter)
    
    	// wait for completion or timeout
    	select {
    	case <-waiter.finished:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

          call1.execute()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("timeout")
        }
    
        // Confirm that a subsequent request on the same connection is not impacted.
        val call2 = client.newCall(Request(server.url("/")))
        val response2 = call2.execute()
        assertThat(response2.body.string()).isEqualTo("A")
    
        // Confirm that the connection was reused.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top