Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for filterNil (0.15 sec)

  1. src/go/ast/filter.go

    // always removed. The [File.Comments] list is not changed.
    //
    // FilterFile reports whether there are any top-level declarations
    // left after filtering.
    func FilterFile(src *File, f Filter) bool {
    	return filterFile(src, f, false)
    }
    
    func filterFile(src *File, f Filter, export bool) bool {
    	j := 0
    	for _, d := range src.Decls {
    		if filterDecl(d, f, export) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

        const int stride_i = mlir::cast<IntegerAttr>(strides[i]).getInt();
        const int dilation_i = mlir::cast<IntegerAttr>(dilations[i]).getInt();
        const int filter_i = filter_shape.getDimSize(i - 1);
        Value pad_i_low, pad_i_high;
        GetSamePaddingValues(builder, loc, input_size_i, filter_i, dilation_i,
                             stride_i, pad_i_low, pad_i_high);
        temp_padding_values.push_back(scalar_to_rank1(pad_i_low));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/database/sql/fakedb_test.go

    //	  where types are: "string", [u]int{8,16,32,64}, "bool"
    //	INSERT|<tablename>|col=val,col2=val2,col3=?
    //	SELECT|<tablename>|projectcol1,projectcol2|filtercol=?,filtercol2=?
    //	SELECT|<tablename>|projectcol1,projectcol2|filtercol=?param1,filtercol2=?param2
    //
    // Any of these can be preceded by PANIC|<method>|, to cause the
    // named method on fakeStmt to panic.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"File.Name", Field, 0},
    		{"File.Package", Field, 0},
    		{"File.Scope", Field, 0},
    		{"File.Unresolved", Field, 0},
    		{"FileExports", Func, 0},
    		{"Filter", Type, 0},
    		{"FilterDecl", Func, 0},
    		{"FilterFile", Func, 0},
    		{"FilterFuncDuplicates", Const, 0},
    		{"FilterImportDuplicates", Const, 0},
    		{"FilterPackage", Func, 0},
    		{"FilterUnassociatedComments", Const, 0},
    		{"ForStmt", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top