Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 163 for patching (0.22 sec)

  1. pilot/pkg/networking/core/listener.go

    	plaintextHTTPALPNs = func() []string {
    		if features.HTTP10 {
    			// If HTTP 1.0 is enabled, we will match it
    			return []string{"http/1.0", "http/1.1", "h2c"}
    		}
    		// Otherwise, matching would just lead to immediate rejection. By not matching, we can let it pass
    		// through as raw TCP at least.
    		// NOTE: mtlsHTTPALPNs can always include 1.0, for simplicity, as it will only be sent if a client
    		return []string{"http/1.1", "h2c"}
    	}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			want:  nil,
    		},
    		{
    			name:  "proxy with IP from the registry, 1 matching WE, but no matching Service",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"4.4.4.41"}},
    			want:  nil,
    		},
    		{
    			name:  "proxy with IP from the registry, 1 matching WE, and matching Service",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"3.3.3.31"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
      // on whether the namespace for that object matches the selector. If the
      // object itself is a namespace, the matching is performed on
      // object.metadata.labels. If the object is another cluster scoped resource,
      // it never skips the policy.
      //
      // For example, to run the webhook on any objects whose namespace is not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    							// Test creating a policy with a cluster or namesapce-scoped param
    							// and binding with the provided configuration. Test will ensure
    							// that the provided configuration is capable of matching
    							// params as expected, and not matching params when not expected.
    							// Also ensures the NotFound setting works as expected with this particular
    							// configuration of ParamRef when all the previously
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DomainObjectSet.matching(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DomainObjectSet.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
      // on whether the namespace for that object matches the selector. If the
      // object itself is a namespace, the matching is performed on
      // object.metadata.labels. If the object is another cluster scoped resource,
      // it never skips the policy.
      //
      // For example, to run the webhook on any objects whose namespace is not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_test.go

    		xdstest.ValidateRoutes(t, routes)
    
    		g.Expect(err).NotTo(HaveOccurred())
    		g.Expect(len(routes)).To(Equal(1))
    	})
    
    	t.Run("for virtual service with regex matching on URI", func(t *testing.T) {
    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    		routes, err := route.BuildHTTPRoutesForVirtualService(node(cg), virtualServiceWithRegexMatchingOnURI,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// There are a maximum of 64 match conditions allowed.
    	//
    	// If a parameter object is provided, it can be accessed via the `params` handle in the same
    	// manner as validation expressions.
    	//
    	// The exact matching logic is (in order):
    	//   1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
    	//   2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        }
    
        /**
         * Travels all containing classes of [innerClass] and finds the one matching ClassId with one of [candidates]. Returns the matching
         * ClassId. If it does not have a matching ClassId, it returns null.
         */
        private fun findMostInnerClassMatchingId(innerClass: KtClassOrObject, candidates: Set<ClassId>): ClassId? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// There are a maximum of 64 match conditions allowed.
    	//
    	// If a parameter object is provided, it can be accessed via the `params` handle in the same
    	// manner as validation expressions.
    	//
    	// The exact matching logic is (in order):
    	//   1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
    	//   2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
Back to top