Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for clap (2.24 sec)

  1. src/image/draw/draw.go

    			sr, sg, sb, sa := pxRGBA(sp.X+x, sp.Y+y)
    			er, eg, eb, ea := int32(sr), int32(sg), int32(sb), int32(sa)
    			if floydSteinberg {
    				er = clamp(er + quantErrorCurr[x+1][0]/16)
    				eg = clamp(eg + quantErrorCurr[x+1][1]/16)
    				eb = clamp(eb + quantErrorCurr[x+1][2]/16)
    				ea = clamp(ea + quantErrorCurr[x+1][3]/16)
    			}
    
    			if palette != nil {
    				// Find the closest palette color in Euclidean R,G,B,A space:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/slices/slices_test.go

    	orig := Clone(s1)
    	if len(s1) != 3 {
    		t.Errorf("len(%v) = %d, want 3", s1, len(s1))
    	}
    	if cap(s1) < 6 {
    		t.Errorf("cap(%v[:3]) = %d, want >= 6", orig, cap(s1))
    	}
    	s2 := Clip(s1)
    	if !Equal(s1, s2) {
    		t.Errorf("Clip(%v) = %v, want %v", s1, s2, s1)
    	}
    	if cap(s2) != 3 {
    		t.Errorf("cap(Clip(%v)) = %d, want 3", orig, cap(s2))
    	}
    }
    
    func TestReverse(t *testing.T) {
    	even := []int{3, 1, 4, 1, 5, 9} // len = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. docs/vi/docs/index.md

    ### Tài liệu API thay thế
    
    Và bây giờ, hãy truy cập tới <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a>.
    
    Bạn sẽ thấy tài liệu được thay thế (cung cấp bởi <a href="https://github.com/Rebilly/ReDoc" class="external-link" target="_blank">ReDoc</a>):
    
    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png)
    
    ## Nâng cấp ví dụ
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

       ),
       // linear_clipped_minus_linear =
       //   (multiply_linear_by_lr ? clamp(-l1 * lr, linear, l1 * lr)
       //                            clamp(-l1, linear, l1)) - linear
       (TF_SubOp:$linear_clipped_minus_linear
         (ConstAttrIfThenElse
           $multiply_linear_by_lr,
           (Clamp $src_op,
             (TF_NegOp (TF_MulOp $l1, $lr)),
             (CreateTFReadVariableOp $src_op, $l1, $linear),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/slices/slices.go

    func Grow[S ~[]E, E any](s S, n int) S {
    	if n < 0 {
    		panic("cannot be negative")
    	}
    	if n -= cap(s) - len(s); n > 0 {
    		s = append(s[:cap(s)], make([]E, n)...)[:len(s)]
    	}
    	return s
    }
    
    // Clip removes unused capacity from the slice, returning s[:len(s):len(s)].
    func Clip[S ~[]E, E any](s S) S {
    	return s[:len(s):len(s)]
    }
    
    // TODO: There are other rotate algorithms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/mdo/model-v3.vm

          #elseif ( $field.to == "String" && $field.type == "java.util.List" && $field.multiplicity == "*" )
            return new WrapperList<String, ${field.to}>(() -> getDelegate().get${cap}(), this::set${cap}, s -> s, s -> s);
          #elseif ( $field.to )
            return getDelegate().${pfx}${cap}() != null ? new ${field.to}(getDelegate().${pfx}${cap}(), this) : null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                }
            }
        }
    
        /**
         * Clamp the value to an int, or return {@link Diagnostic#NOPOS} if the value is too large.
         * <p>
         * This is used to ensure that we don't report invalid locations.
         *
         * @param value the value to clamp
         * @return either the clamped value, or {@link Diagnostic#NOPOS}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pilot/test/xdstest/extract.go

    	for _, cla := range cla {
    		if cla == nil {
    			continue
    		}
    		got[cla.ClusterName] = append(got[cla.ClusterName], ExtractEndpoints(cla)...)
    	}
    	return got
    }
    
    // ExtractHealthEndpoints returns all health and unhealth endpoints
    func ExtractHealthEndpoints(cla *endpoint.ClusterLoadAssignment) ([]string, []string) {
    	if cla == nil {
    		return nil, nil
    	}
    	healthy := []string{}
    	unhealthy := []string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  9. src/runtime/slice.go

    //
    //go:linkname makeslice
    func makeslice(et *_type, len, cap int) unsafe.Pointer {
    	mem, overflow := math.MulUintptr(et.Size_, uintptr(cap))
    	if overflow || mem > maxAlloc || len < 0 || len > cap {
    		// NOTE: Produce a 'len out of range' error instead of a
    		// 'cap out of range' error when someone does make([]T, bignumber).
    		// 'cap out of range' is true too, but since the cap is only being
    		// supplied implicitly, saying len is clearer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/regexp/exec.go

    			continue
    		}
    		if longest && m.matched && len(t.cap) > 0 && m.matchcap[0] < t.cap[0] {
    			m.pool = append(m.pool, t)
    			continue
    		}
    		i := t.inst
    		add := false
    		switch i.Op {
    		default:
    			panic("bad inst")
    
    		case syntax.InstMatch:
    			if len(t.cap) > 0 && (!longest || !m.matched || m.matchcap[1] < pos) {
    				t.cap[1] = pos
    				copy(m.matchcap, t.cap)
    			}
    			if !longest {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
Back to top