Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 526 for REJECT (3.94 sec)

  1. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

        - port:
            number: 8092
          tls:
            mode: DISABLE
    `
    )
    
    // TestTrustDomainValidation tests the trust domain validation when mTLS is enabled.
    // The trust domain validation should reject a request if it's not from the trust domains configured in the mesh config.
    // The test uses naked client (no sidecar) with custom certificates of different trust domains and covers the following:
    // - plaintext requests are not affected
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options.go

    		"Turns on aggregator routing requests to endpoints IP rather than cluster IP.")
    
    	fs.BoolVar(&s.AggregatorRejectForwardingRedirects, "aggregator-reject-forwarding-redirect", s.AggregatorRejectForwardingRedirects,
    		"Aggregator reject forwarding redirect response back to client.")
    
    	fs.StringVar(&s.ServiceAccountSigningKeyFile, "service-account-signing-key-file", s.ServiceAccountSigningKeyFile, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. pkg/adsc/delta.go

    	Parents keySet
    	// Children of the resource
    	Children keySet
    }
    
    type HandlerContext interface {
    	RegisterDependency(typeURL string, resourceName ...string)
    	Reject(reason error)
    }
    
    var _ HandlerContext = &handlerContext{}
    
    // HandlerContext provides an event for a single delta response, allowing handlers to react to it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell_test.go

    				t.Skipf("skipping %#q: contains non-graphic character %q", b, c)
    			}
    		}
    
    		args, err := splitPkgConfigOutput(b)
    		if err != nil {
    			// We haven't checked that the shell would actually reject this input too,
    			// but if splitPkgConfigOutput rejected it it's probably too dangerous to
    			// run in the script.
    			t.Logf("%#q: %v", b, err)
    			return
    		}
    		t.Logf("splitPkgConfigOutput(%#q) = %#q", b, args)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

                // Explicitly unsupported Listener types are disallowed.
                return false;
            }
            // We had to check for unsupported first to reject a listener that implements both allowed and disallowed interfaces.
            // Just reject everything we don't know.
            return listener instanceof ProjectEvaluationListener
                || listener instanceof TaskExecutionGraphListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    const prefixOpcode = 1
    
    // instFormat is a decoding rule for one specific instruction form.
    // an instruction ins matches the rule if ins&Mask == Value
    // DontCare bits should be zero, but the machine might not reject
    // ones in those bits, they are mainly reserved for future expansion
    // of the instruction set.
    // The Args are stored in the same order as the instruction manual.
    //
    // Prefixed instructions are stored as:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. pkg/controller/controller_ref_manager.go

    	if err := m.CanAdopt(ctx); err != nil {
    		return fmt.Errorf("can't adopt Pod %v/%v (%v): %v", pod.Namespace, pod.Name, pod.UID, err)
    	}
    	// Note that ValidateOwnerReferences() will reject this patch if another
    	// OwnerReference exists with controller=true.
    
    	patchBytes, err := ownerRefControllerPatch(m.Controller, m.controllerKind, pod.UID, m.finalizers...)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

    class ComponentAttributesDynamicVersionIntegrationTest extends AbstractModuleDependencyResolveTest {
    
        @Unroll("#outcome if component-level attribute is #requested")
        def "component attributes are used to reject fixed version"() {
            given:
            repository {
                'org.test:module:1.0' {
                    attribute('quality', 'qa')
                }
            }
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. plugin/pkg/admission/certificates/signing/admission_test.go

    					err:         test.authzErr,
    				},
    			}
    			err := p.Validate(context.Background(), test.attributes, nil)
    			if err == nil && !test.allowed {
    				t.Errorf("Expected authorization policy to reject CSR but it was allowed")
    			}
    			if err != nil && test.allowed {
    				t.Errorf("Expected authorization policy to accept CSR but it was rejected: %v", err)
    			}
    		})
    	}
    }
    
    type fakeAuthorizer struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 28 16:20:40 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  10. pkg/istio-agent/health/health_probers.go

    		headers[val.Name] = append(headers[val.Name], val.Value)
    	}
    	targetURL, err := url.Parse(h.Config.Path)
    	// Something is busted with the path, but it's too late to reject it. Pass it along as is.
    	if err != nil {
    		targetURL = &url.URL{
    			Path: h.Config.Path,
    		}
    	}
    	targetURL.Scheme = h.Config.Scheme
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top