Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 472 for clap (0.26 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"city_sunset":                          "\U0001f306",
    	"cityscape":                            "\U0001f3d9\ufe0f",
    	"cl":                                   "\U0001f191",
    	"clamp":                                "\U0001f5dc\ufe0f",
    	"clap":                                 "\U0001f44f",
    	"clapper":                              "\U0001f3ac",
    	"classical_building":                   "\U0001f3db\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-tfl-stablehlo-clamp.mlir

      %0 = "tfl.custom"(%arg0, %arg1, %arg2) {custom_code = "stablehlo.clamp", custom_option = #tfl<const_bytes : "0x00000100002401">} : (tensor<2xi32>, tensor<2xi32>, tensor<2xi32>) -> tensor<2xi32>
      func.return %0 : tensor<2xi32>
    }
    }
    
    // CHECK:       module {
    // CHECK-NEXT:  func @main(%arg0: tensor<2xi32>, %arg1: tensor<2xi32>, %arg2: tensor<2xi32>) -> tensor<2xi32> {
    // CHECK-NEXT:    %0 = stablehlo.clamp %arg0, %arg1, %arg2 : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 16 05:09:09 UTC 2022
    - 710 bytes
    - Viewed (0)
  3. src/slices/example_test.go

    	grow := slices.Grow(numbers, 2)
    	fmt.Println(cap(numbers))
    	fmt.Println(grow)
    	fmt.Println(len(grow))
    	fmt.Println(cap(grow))
    	// Output:
    	// 4
    	// [0 42 -10 8]
    	// 4
    	// 8
    }
    
    func ExampleClip() {
    	a := [...]int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
    	s := a[:4:10]
    	clip := slices.Clip(s)
    	fmt.Println(cap(s))
    	fmt.Println(clip)
    	fmt.Println(len(clip))
    	fmt.Println(cap(clip))
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/go/ast/commentmap.go

    			stack.push(q)
    		}
    	}
    
    	return cmap
    }
    
    // Update replaces an old node in the comment map with the new node
    // and returns the new node. Comments that were associated with the
    // old node are associated with the new node.
    func (cmap CommentMap) Update(old, new Node) Node {
    	if list := cmap[old]; len(list) > 0 {
    		delete(cmap, old)
    		cmap[new] = append(cmap[new], list...)
    	}
    	return new
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

    // CHECK: %[[CONV:.*]] = stablehlo.convolution(%arg0, %arg1)
    // CHECK-DAG: %[[CONST_0:.*]] = stablehlo.constant dense<0.000000e+00>
    // CHECK: %[[CLAMP:.*]] = stablehlo.clamp %[[CONST_0]], %[[CONV]], %[[CONST_1]]
    // CHECK: return %[[CLAMP]] : tensor<1x3x3x4xf32>
    // CHECK: }
    
    // -----
    
    // CHECK-LABEL: @dot_general_with_relu6_fn(
    // CHECK-SAME:                 %[[ARG_0:.*]]: tensor<1x1x167xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. CONTRIBUTING.md

    + #Maven IRC channel on freenode.org
    
    [dev-ml-list]: https://maven.apache.org/mailing-lists.html
    [code-style]: https://maven.apache.org/developers/conventions/code.html
    [cla]: https://www.apache.org/licenses/#clas
    [maven-wiki]: https://cwiki.apache.org/confluence/display/MAVEN/Index
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 10 09:48:27 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/git.go

    }
    
    func (h *gitHandler) Handler(dir string, env []string, logger *log.Logger) (http.Handler, error) {
    	if !h.Available() {
    		return nil, ServerNotInstalledError{name: "git"}
    	}
    
    	baseEnv := append(slices.Clip(env),
    		"GIT_PROJECT_ROOT="+dir,
    		"GIT_HTTP_EXPORT_ALL=1",
    	)
    
    	handler := http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		// The Git client sends the requested Git protocol version as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. 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)
Back to top