Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 195 for rejections (0.18 sec)

  1. 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)
  2. tensorflow/cc/gradients/linalg_grad.cc

      return std::make_tuple(reduced_subs, reduced_dims,
                             Const(scope, reduced_axes_tensor));
    }
    
    // Returns the gradient wrt input for a unary einsum with reductions.
    //
    //  scope: Scope for grad operations.
    //  output_grad: The gradient wrt the output of a unary einsum operation.
    //  output_subs: The output subscript. (E.g. `ac` for equation `abc->ac`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/rsc.io/markdown/table.go

    			i++
    		}
    	}
    
    	if strings.TrimSpace(hdr1) == "|" {
    		// https://github.com/github/cmark-gfm/pull/127 and
    		// https://github.com/github/cmark-gfm/pull/128
    		// fixed a buffer overread by rejecting | by itself as a table line.
    		// That seems to violate the spec, but we will play along.
    		return false
    	}
    
    	return col == tableCount(tableTrimOuter(hdr1))
    }
    
    func tableCount(row tableTrimmed) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    // expands to ~string|~[]byte|int|string, which reduces to ~string|~[]byte|int,
    // which when intersected with C (~string|~int) yields ~string|int.
    //
    // NormalTerms computes these expansions and reductions, producing a
    // "normalized" form of the embeddings. A structural restriction is normalized
    // if it is a single union containing no interface terms, and is minimal in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/Quantiles.java

        int required = allRequired[requiredChosen];
    
        // ...do the first selection...
        selectInPlace(required, array, from, to);
    
        // ...then recursively perform the selections in the range below...
        int requiredBelow = requiredChosen - 1;
        while (requiredBelow >= requiredFrom && allRequired[requiredBelow] == required) {
          requiredBelow--; // skip duplicates of required in the range below
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top