Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 195 for rejections (0.19 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                    failures before ejection occurs.
                                  nullable: true
                                  type: integer
                                interval:
                                  description: Time interval between ejection sweep analysis.
                                  type: string
                                maxEjectionPercent:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    		})
    
    		group(t, "unsigned bignum", []test{
    			{
    				name:  "rejected",
    				in:    hex("c249010000000000000000"), // 2(18446744073709551616)
    				fixme: "decoding cbor data tagged with 2 produces big.Int instead of rejecting",
    				assertOnError: func(t *testing.T, e error) {
    					// TODO: Once this can pass, make the assertion stronger.
    					if e == nil {
    						t.Error("expected non-nil error")
    					}
    				},
    			},
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    	return types.Bool(ip.Addr.IsGlobalUnicast())
    }
    
    // parseIPAddr parses a string into an IP address.
    // We use this function to parse IP addresses in the CEL library
    // so that we can share the common logic of rejecting IP addresses
    // that contain zones or are IPv4-mapped IPv6 addresses.
    func parseIPAddr(raw string) (netip.Addr, error) {
    	addr, err := netip.ParseAddr(raw)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (status.ok()) {
        if (!compile) {
          VLOG(2) << "Rejecting " << node->name() << ": kXlaCompileAttr("
                  << kXlaCompileAttr << ") is false.";
        }
        return !compile;
      }
    
      status = flib_def_->GetAttr(*node, kXlaCompileAttr, &compile);
      if (status.ok()) {
        if (!compile) {
          VLOG(2) << "Rejecting " << node->name() << ": kXlaCompileAttr("
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/types.go

    	// Plugins **have to** implement a QueueingHint for Pod/Update event
    	// if the rejection from them could be resolved by updating unscheduled Pods themselves.
    	// Example: Pods that require excessive resources may be rejected by the noderesources plugin,
    	// if this unscheduled pod is updated to require fewer resources,
    	// the previous rejection from noderesources plugin can be resolved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    		return nil
    	}
    }
    
    func sampleIndex(flag *bool, si string, sampleType, option string, ui plugin.UI) string {
    	if *flag {
    		if si == "" {
    			return sampleType
    		}
    		ui.PrintErr("Multiple value selections, ignoring ", option)
    	}
    	return si
    }
    
    func outputFormat(bcmd map[string]*bool, acmd map[string]*string) (cmd []string, err error) {
    	for n, b := range bcmd {
    		if *b {
    			if cmd != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            then:
            _ * componentSelectionRules.rules >> rules({ ComponentSelection selection ->
                selection.reject("Rejecting everything")
            })
            1 * selectedComponentResult.getContentFilter() >> null
            1 * selectedComponentResult.rejectedByRule({it.id == c.id})
            1 * selectedComponentResult.rejectedByRule({it.id == b.id})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/scalar.go

    func (s *Scalar) SetBytesWithClamping(x []byte) (*Scalar, error) {
    	// The description above omits the purpose of the high bits of the clamping
    	// for brevity, but those are also lost to reductions, and are also
    	// irrelevant to edwards25519 as they protect against a specific
    	// implementation bug that was once observed in a generic Montgomery ladder.
    	if len(x) != 32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/syscall/syscall_plan9.go

    	if newoffset == -1 {
    		err = NewError(e)
    	}
    	return
    }
    
    func Mkdir(path string, mode uint32) (err error) {
    	// If path exists and is not a directory, Create will fail silently.
    	// Work around this by rejecting Mkdir if path exists.
    	statbuf := make([]byte, bitSize16)
    	// Remove any trailing slashes from path, otherwise the Stat will
    	// fail with ENOTDIR.
    	n := len(path)
    	for n > 1 && path[n-1] == '/' {
    		n--
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/debug/macho/file_test.go

    }
    
    func TestOpen(t *testing.T) {
    	for i := range fileTests {
    		tt := &fileTests[i]
    
    		// Use obscured files to prevent Appleā€™s notarization service from
    		// mistaking them as candidates for notarization and rejecting the entire
    		// toolchain.
    		// See golang.org/issue/34986
    		f, err := openObscured(tt.file)
    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		if !reflect.DeepEqual(f.FileHeader, tt.hdr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
Back to top