Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 200 for spdelta (0.29 sec)

  1. src/runtime/symtab.go

    	// For both uvdelta and pcdelta, the common case (~70%)
    	// is that they are a single byte. If so, avoid calling readvarint.
    	uvdelta := uint32(p[0])
    	if uvdelta == 0 && !first {
    		return nil, false
    	}
    	n := uint32(1)
    	if uvdelta&0x80 != 0 {
    		n, uvdelta = readvarint(p)
    	}
    	*val += int32(-(uvdelta & 1) ^ (uvdelta >> 1))
    	p = p[n:]
    
    	pcdelta := uint32(p[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    	var logFiltered string
    	if !req.Delta.IsEmpty() && !requiresResourceNamesModification(w.TypeUrl) {
    		// Some types opt out of this and natively handle req.Delta
    		logFiltered = " filtered:" + strconv.Itoa(len(w.ResourceNames)-len(req.Delta.Subscribed))
    		w = &model.WatchedResource{
    			TypeUrl:       w.TypeUrl,
    			ResourceNames: req.Delta.Subscribed.UnsortedList(),
    		}
    	}
    
    	var res model.Resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pkg/adsc/delta.go

    	if config == nil {
    		config = &DeltaADSConfig{}
    	}
    	delta := NewDelta(discoveryAddr, config, opts...)
    	delta.cfg.BackoffPolicy = backoffPolicy
    	return delta
    }
    
    func typeName[T proto.Message]() string {
    	ft := new(T)
    	return resource.APITypePrefix + string((*ft).ProtoReflect().Descriptor().FullName())
    }
    
    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. android/guava-tests/test/com/google/common/math/StatsTesting.java

        assertThat(transformation.transform(x1 + xDelta)).isWithin(ALLOWED_ERROR).of(y1 + yDelta);
        assertThat(transformation.inverse().transform(y1)).isWithin(ALLOWED_ERROR).of(x1);
        assertThat(transformation.inverse().transform(y1 + yDelta))
            .isWithin(ALLOWED_ERROR)
            .of(x1 + xDelta);
        assertThat(transformation.slope()).isWithin(ALLOWED_ERROR).of(yDelta / xDelta);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. src/image/draw/draw.go

    	dx, dy := r.Dx(), r.Dy()
    	d0 := dst.PixOffset(r.Min.X, r.Min.Y)
    	s0 := src.PixOffset(sp.X, sp.Y)
    	var (
    		ddelta, sdelta int
    		i0, i1, idelta int
    	)
    	if r.Min.Y < sp.Y || r.Min.Y == sp.Y && r.Min.X <= sp.X {
    		ddelta = dst.Stride
    		sdelta = src.Stride
    		i0, i1, idelta = 0, dx*4, +4
    	} else {
    		// If the source start point is higher than the destination start point, or equal height but to the left,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. src/debug/gosym/pclntab.go

    func (t *LineTable) step(p *[]byte, pc *uint64, val *int32, first bool) bool {
    	uvdelta := t.readvarint(p)
    	if uvdelta == 0 && !first {
    		return false
    	}
    	if uvdelta&1 != 0 {
    		uvdelta = ^(uvdelta >> 1)
    	} else {
    		uvdelta >>= 1
    	}
    	vdelta := int32(uvdelta)
    	pcdelta := t.readvarint(p) * t.quantum
    	*pc += uint64(pcdelta)
    	*val += vdelta
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/gradient_checker.cc

            // Evaluate at positive delta.
            x_data_flat(r) = v + x_delta;
            std::vector<Tensor> y_pos;
            TF_RETURN_IF_ERROR(EvaluateGraph(&session, xs, ys, x_datas, &y_pos));
            // Evaluate at negative delta.
            x_data_flat(r) = v - x_delta;
            std::vector<Tensor> y_neg;
            TF_RETURN_IF_ERROR(EvaluateGraph(&session, xs, ys, x_datas, &y_neg));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/image/jpeg/scan.go

    							if err != nil {
    								return err
    							}
    							if value > 16 {
    								return UnsupportedError("excessive DC component")
    							}
    							dcDelta, err := d.receiveExtend(value)
    							if err != nil {
    								return err
    							}
    							dc[compIndex] += dcDelta
    							b[0] = dc[compIndex] << al
    						}
    
    						if zig <= zigEnd && d.eobRun > 0 {
    							d.eobRun--
    						} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/runtime/netpoll.go

    //     Disable notifications for fd. Return an errno value.
    //
    // func netpoll(delta int64) (gList, int32)
    //     Poll the network. If delta < 0, block indefinitely. If delta == 0,
    //     poll without blocking. If delta > 0, block for up to delta nanoseconds.
    //     Return a list of goroutines built by calling netpollready,
    //     and a delta to add to netpollWaiters when all goroutines are ready.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/types.go

    //go:nosplit
    func (i *Int32) Swap(new int32) int32 {
    	return Xchgint32(&i.value, new)
    }
    
    // Add adds delta to i atomically, returning
    // the new updated value.
    //
    // This operation wraps around in the usual
    // two's-complement way.
    //
    //go:nosplit
    func (i *Int32) Add(delta int32) int32 {
    	return Xaddint32(&i.value, delta)
    }
    
    // Int64 is an atomically accessed int64 value.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top