Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 307 for decl (0.04 sec)

  1. src/cmd/cgo/ast.go

    					ws++
    				}
    			}
    			if ws == 0 {
    				continue
    			}
    			d.Specs = d.Specs[0:ws]
    			ast2.Decls[w] = d
    			w++
    		}
    		ast2.Decls = ast2.Decls[0:w]
    	} else {
    		for _, decl := range ast2.Decls {
    			d, ok := decl.(*ast.GenDecl)
    			if !ok {
    				continue
    			}
    			for _, spec := range d.Specs {
    				if s, ok := spec.(*ast.ImportSpec); ok && s.Path.Value == `"C"` {
    Registered: 2025-05-27 11:13
    - Last Modified: 2024-10-14 15:47
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	DECQ (BX)                               // 48ff0b
    	DECQ (R11)                              // 49ff0b
    	DECQ DX                                 // 48ffca
    	DECQ R11                                // 49ffcb
    	DECB (BX)                               // fe0b
    	DECB (R11)                              // 41fe0b
    	DECB DL                                 // feca
    	DECB R11                                // 41fecb
    Registered: 2025-05-27 11:13
    - Last Modified: 2021-10-08 21:38
    - 581.9K bytes
    - Viewed (1)
  3. api/go1.txt

    pkg go/ast, type CompositeLit struct, Rbrace token.Pos
    pkg go/ast, type CompositeLit struct, Type Expr
    pkg go/ast, type Decl interface, End() token.Pos
    pkg go/ast, type Decl interface, Pos() token.Pos
    pkg go/ast, type Decl interface, unexported methods
    pkg go/ast, type DeclStmt struct
    pkg go/ast, type DeclStmt struct, Decl Decl
    pkg go/ast, type DeferStmt struct
    pkg go/ast, type DeferStmt struct, Call *CallExpr
    Registered: 2025-05-27 11:13
    - Last Modified: 2013-08-14 18:58
    - 1.7M bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2_test.go

    		}
    		count++
    	}
    }
    
    func Benchmark_mergeXLV2Versions(b *testing.B) {
    	data, err := os.ReadFile("testdata/xl.meta-v1.2.zst")
    	if err != nil {
    		b.Fatal(err)
    	}
    	dec, _ := zstd.NewReader(nil)
    	data, err = dec.DecodeAll(data, nil)
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	var xl xlMetaV2
    	if err = xl.LoadOrConvert(data); err != nil {
    		b.Fatal(err)
    	}
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-09 14:28
    - 37.9K bytes
    - Viewed (0)
  5. licenses/github.com/shopspring/decimal/LICENSE

    The MIT License (MIT)
    
    Copyright (c) 2015 Spring, Inc.
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: 2025-05-28 22:53
    - Last Modified: 2021-01-06 22:59
    - 2.2K bytes
    - Viewed (0)
  6. internal/s3select/simdj/reader_amd64_test.go

    type tester interface {
    	Fatal(args ...interface{})
    }
    
    func loadCompressed(t tester, file string) (js []byte) {
    	dec, err := zstd.NewReader(nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer dec.Close()
    	js, err = os.ReadFile(filepath.Join("testdata", file+".json.zst"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	js, err = dec.DecodeAll(js, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	return js
    }
    
    var testCases = []struct {
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-09-19 18:05
    - 3.9K bytes
    - Viewed (0)
  7. internal/s3select/sql/jsonpath_test.go

    	"github.com/minio/minio/internal/s3select/jstream"
    )
    
    func getJSONStructs(b []byte) ([]interface{}, error) {
    	dec := jstream.NewDecoder(bytes.NewBuffer(b), 0).ObjectAsKVS().MaxDepth(100)
    	var result []interface{}
    	for parsedVal := range dec.Stream() {
    		result = append(result, parsedVal.Value)
    	}
    	if err := dec.Err(); err != nil {
    		return nil, err
    	}
    	return result, nil
    }
    
    func TestJsonpathEval(t *testing.T) {
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-23 19:35
    - 2.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess.json

            },
            "italian_elision": {
              "type":         "elision",
              "articles": [
                    "c", "l", "all", "dall", "dell",
                    "nell", "sull", "coll", "pell",
                    "gl", "agl", "dagl", "degl", "negl",
                    "sugl", "un", "m", "t", "s", "v", "d"
              ]
            },
            "italian_stop": {
              "type":       "stop",
    Registered: 2025-05-26 08:04
    - Last Modified: 2022-08-11 01:26
    - 39.9K bytes
    - Viewed (0)
  9. docs/es/docs/advanced/index.md

    Y las siguientes secciones asumen que ya lo leíste y que conoces esas ideas principales.
    
    ## Cursos externos
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-30 17:46
    - 2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/BigDecimalConversionUtil.java

        }
    
        /**
         * {@link BigDecimal}を文字列に変換します。
         *
         * @param dec
         *            変換元の{@link BigDecimal}
         * @return 変換された文字列
         */
        public static String toString(final BigDecimal dec) {
            return dec.toPlainString();
        }
    
        /**
         * {@link BigDecimal}を正規化します。
         *
         * @param dec
         *            変換元の{@link BigDecimal}
         * @return 正規化されたデータ
         */
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 2.8K bytes
    - Viewed (0)
Back to top