Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 177 for zero (0.05 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		if statusSubresourceEnabled {
    			v := reflect.ValueOf(schema).Elem()
    			for i := 0; i < v.NumField(); i++ {
    				// skip zero values
    				if value := v.Field(i).Interface(); reflect.DeepEqual(value, reflect.Zero(reflect.TypeOf(value)).Interface()) {
    					continue
    				}
    
    				fieldName := v.Type().Field(i).Name
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	// with an intrinsic. Note that newMarkBits guarantees that
    	// gcmarkBits will be 8-byte aligned, so we don't have to
    	// worry about edge cases, irrelevant bits will simply be zero.
    	for i := uintptr(0); i < bytes; i += 8 {
    		// Extract 64 bits from the byte pointer and get a OnesCount.
    		// Note that the unsafe cast here doesn't preserve endianness,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    	default:
    		return 0, false // Not an abi func
    	}
    	n, e := strconv.Atoi(s[2])
    	if e != nil || n < minReg || n > 31 || r.Add() != 0 {
    		return 0, false // Invalid register number, or non-zero addend. Not an abi func.
    	}
    
    	// tname is a valid relocation to an ABI defined register save/restore function. Re-relocate
    	// them to a go version of these functions in runtime/asm_ppc64x.s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			knownTypes:      sets.NewString(string("Webhook")),
    			repeatableTypes: sets.NewString(string("Webhook")),
    		},
    		{
    			name: "authorizer names should be of non-zero length",
    			configuration: api.AuthorizationConfiguration{
    				Authorizers: []api.AuthorizerConfiguration{
    					{
    						Type: "Foo",
    						Name: "",
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/asm0.go

    	var o *Optab
    	for p = p.Link; p != nil; p = p.Link {
    		p.Pc = pc
    		o = c.oplook(p)
    		m = int(o.size)
    		if m == 0 {
    			if p.As != obj.ANOP && p.As != obj.AFUNCDATA && p.As != obj.APCDATA {
    				c.ctxt.Diag("zero-width instruction\n%v", p)
    			}
    			continue
    		}
    
    		pc += int64(m)
    	}
    
    	c.cursym.Size = pc
    
    	/*
    	 * if any procedure is large enough to
    	 * generate a large SBRA branch, then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    								stc.Logf("could not query for traffic from %q to %q: %v", deployName(localSrc), localDst.Config().Service, err)
    								return false
    							}
    							if reqs == 0.0 {
    								stc.Logf("found zero-valued sum for traffic from %q to %q: %v", deployName(localSrc), localDst.Config().Service, err)
    								return false
    							}
    							return true
    						}, retry.Timeout(30*time.Second), retry.BackoffDelay(1*time.Second))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    		return &istio.TCPRoute{
    			Route: []*istio.RouteDestination{{
    				Destination: &istio.Destination{
    					Host:   "internal.cluster.local",
    					Subset: "zero-weight",
    					Port:   &istio.PortSelector{Number: 65535},
    				},
    				Weight: 0,
    			}},
    		}, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    		if _, _, err := rs.GetOffsetLength(objInfo.Size); err != nil {
    			// Make sure to return object info to provide extra information.
    			return &GetObjectReader{
    				ObjInfo: objInfo,
    			}, err
    		}
    
    		// Zero byte objects don't even need to further initialize pipes etc.
    		return NewGetObjectReaderFromReader(bytes.NewReader(nil), objInfo, opts)
    	}
    
    	if objInfo.IsRemote() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. src/net/dnsclient_unix_test.go

    	var deadline0 time.Time
    
    	fake := fakeDNSServer{rh: func(_, s string, q dnsmessage.Message, deadline time.Time) (dnsmessage.Message, error) {
    		t.Log(s, q, deadline)
    
    		if deadline.IsZero() {
    			t.Error("zero deadline")
    		}
    
    		if s == "192.0.2.1:53" {
    			deadline0 = deadline
    			time.Sleep(10 * time.Millisecond)
    			return dnsmessage.Message{}, os.ErrDeadlineExceeded
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

    // CHECK: %[[dq:.*]] = "tfl.dequantize"(%[[q]])
    // CHECK: return %[[dq]]
    }
    
    // CHECK-LABEL: ZeroPointLegacy
    // Legacy-LABEL: ZeroPointLegacy
    // Legacy mode re-calculates zero point when it's changed due to subtle difference in scale.
    func.func @ZeroPointLegacy(%arg0: tensor<1x2xf32>) -> tensor<1x2xf32>  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top