Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for rejections (0.33 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    May be followed by a `because` text.
    
    | Rejection : <version> by rule because <text>
    | A `ComponentSelection.reject` link:{groovyDslPath}/org.gradle.api.artifacts.ComponentSelection.html#org.gradle.api.artifacts.ComponentSelection:reject(java.lang.String)[rejected the given version] of the dependency.
    
    | Rejection: version <version>: <attributes information>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/go/types/eval_test.go

    		expr, err := parser.ParseExprFrom(fset, "eval", str, 0)
    		if err != nil {
    			return nil, err
    		}
    
    		info := &Info{
    			Uses:       make(map[*ast.Ident]Object),
    			Selections: make(map[*ast.SelectorExpr]*Selection),
    		}
    		if err := CheckExpr(fset, pkg, pos, expr, info); err != nil {
    			return nil, fmt.Errorf("CheckExpr(%q) failed: %s", str, err)
    		}
    		switch expr := expr.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. src/crypto/ecdh/ecdh_test.go

    		r := &countingReader{r: rand.Reader}
    		k, err := curve.GenerateKey(r)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// GenerateKey does rejection sampling. If the masking works correctly,
    		// the probability of a rejection is 1-ord(G)/2^ceil(log2(ord(G))),
    		// which for all curves is small enough (at most 2^-32, for P-256) that
    		// a bit flip is more likely to make this test fail than bad luck.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/model.go

    	VirtualService []config.Config
    	// AllowedReferences stores all allowed references, from Reference -> to Reference(s)
    	AllowedReferences AllowedReferences
    	// ReferencedNamespaceKeys stores the label key of all namespace selections. This allows us to quickly
    	// determine if a namespace update could have impacted any Gateways. See namespaceEvent.
    	ReferencedNamespaceKeys sets.String
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/stdlib_test.go

    	}
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test"),
    		"cmplxdivide.go", // also needs file cmplxdivide1.go - ignore
    		"directive.go",   // tests compiler rejection of bad directive placement - ignore
    		"directive2.go",  // tests compiler rejection of bad directive placement - ignore
    		"embedfunc.go",   // tests //go:embed
    		"embedvers.go",   // tests //go:embed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/runtime/debug.go

    // target program. This pinner in turn can be used to extend this property
    // to other objects, which debuggers can use to simplify the evaluation of
    // expressions involving multiple call injections.
    func debugPinnerV1() *Pinner {
    	p := new(Pinner)
    	p.Pin(unsafe.Pointer(p))
    	if debugPinnerKeepUnpin {
    		// Make Unpin reachable.
    		p.Unpin()
    	}
    	return p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa_test.go

    	} else if p.Bytes()[0] != 4 {
    		t.Error("p is infinity")
    	}
    	if loopCount == 0 {
    		t.Error("zero was not rejected")
    	}
    	loopCount = 0
    
    	// P-256 has a 2⁻³² chance or randomly hitting a rejection. For P-224 it's
    	// 2⁻¹¹², for P-384 it's 2⁻¹⁹⁴, and for P-521 it's 2⁻²⁶², so if we hit in
    	// tests, something is horribly wrong. (For example, we are masking the
    	// wrong bits.)
    	if c.curve == elliptic.P256() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/gateway-api-crd.yaml

                            underlying implementation must actively reject request attempts to this
                            backend, by rejecting the connection or returning a 500 status code.
                            Request rejections must respect weight; if an invalid backend is
                            requested to have 80% of requests, then 80% of requests must be rejected
                            instead.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/httpresponse/httpresponse.go

    				}
    			}
    			break
    		}
    
    		if _, ok := stack[i].(*ast.CallExpr); ok {
    			ncalls++
    		}
    	}
    	return nil, 0
    }
    
    // rootIdent finds the root identifier x in a chain of selections x.y.z, or nil if not found.
    func rootIdent(n ast.Node) *ast.Ident {
    	switch n := n.(type) {
    	case *ast.SelectorExpr:
    		return rootIdent(n.X)
    	case *ast.Ident:
    		return n
    	default:
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/test/mock/caserver.go

    	*pb.IstioCertificateResponse, error,
    ) {
    	caServerLog.Infof("received CSR request")
    	if s.shouldReject() {
    		caServerLog.Info("force rejecting CSR request")
    		return nil, status.Error(codes.Unavailable, "CA server is not available")
    	}
    	if s.sendEmpty() {
    		caServerLog.Info("force sending empty cert chain in CSR response")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top