- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for Ident (0.07 sec)
-
android/guava/src/com/google/common/eventbus/SubscriberRegistry.java
method, parameterTypes[0].getName(), Primitives.wrap(parameterTypes[0]).getSimpleName()); MethodIdentifier ident = new MethodIdentifier(method); if (!identifiers.containsKey(ident)) { identifiers.put(ident, method); } } } } return ImmutableList.copyOf(identifiers.values()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:16:45 UTC 2024 - 10.8K bytes - Viewed (0) -
src/cmd/asm/internal/lex/input.go
value := "1" i := strings.IndexRune(name, '=') if i > 0 { name, value = name[:i], name[i+1:] } tokens := Tokenize(name) if len(tokens) != 1 || tokens[0].ScanToken != scanner.Ident { fmt.Fprintf(os.Stderr, "asm: parsing -D: %q is not a valid identifier name\n", tokens[0]) flags.Usage() } macros[name] = &Macro{ name: name, args: nil, tokens: Tokenize(value), } }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Sep 06 13:17:27 UTC 2024 - 12.5K bytes - Viewed (0) -
internal/s3select/sql/parser.go
Expressions []*AliasedExpression `parser:"| @@ { \",\" @@ }"` } // TableExpression represents the FROM clause type TableExpression struct { Table *JSONPath `parser:"@@"` As string `parser:"( \"AS\"? @Ident )?"` } // JSONPathElement represents a keypath component type JSONPathElement struct { Key *ObjectKey `parser:" @@"` // ['name'] and .name forms
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 12.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
abi := obj.ABI0 isStatic := false if p.peek() != '<' { return isStatic, abi } p.next() tok := p.peek() if tok == '>' { isStatic = true } else if tok == scanner.Ident { abistr := p.get(scanner.Ident).String() if !p.allowABI { if issueError { p.errorf("ABI selector only permitted when compiling runtime, reference was to %q", name) } } else {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 36.9K bytes - Viewed (0) -
src/cmd/cgo/ast.go
c = c[2 : len(c)-2] } pieces = append(pieces, c) } return strings.Join(pieces, "") } func (f *File) validateIdents(x interface{}, context astContext) { if x, ok := x.(*ast.Ident); ok { if f.isMangledName(x.Name) { error_(x.Pos(), "identifier %q may conflict with identifiers generated by cgo", x.Name) } } } // Save various references we are going to need later.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 14 15:47:06 UTC 2024 - 14.3K bytes - Viewed (0) -
tensorflow/c/eager/c_api_experimental_test.cc
ASSERT_TRUE(TF_GetCode(status) == TF_OK) << TF_Message(status); TF_Output input{arg, 0}; TF_Output output{id, 0}; TF_Function* fn = TF_GraphToFunction(function_graph, "ident", 0, 1, &id, 1, &input, 1, &output, nullptr, nullptr, "test", status); ASSERT_TRUE(TF_GetCode(status) == TF_OK) << TF_Message(status); TF_DeleteGraph(function_graph);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Aug 03 03:14:26 UTC 2023 - 31.5K bytes - Viewed (0) -
api/go1.18.txt
pkg go/types, type Config struct, Context *Context pkg go/types, type Config struct, GoVersion string pkg go/types, type Context struct pkg go/types, type Info struct, Instances map[*ast.Ident]Instance pkg go/types, type Instance struct pkg go/types, type Instance struct, Type Type pkg go/types, type Instance struct, TypeArgs *TypeList pkg go/types, type Term struct pkg go/types, type TypeList struct
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 13K bytes - Viewed (0) -
api/go1.5.txt
pkg go/types, method (*Func) Pos() token.Pos pkg go/types, method (*Func) Scope() *Scope pkg go/types, method (*Func) String() string pkg go/types, method (*Func) Type() Type pkg go/types, method (*Info) ObjectOf(*ast.Ident) Object pkg go/types, method (*Info) TypeOf(ast.Expr) Type pkg go/types, method (*Initializer) String() string pkg go/types, method (*Interface) Complete() *Interface pkg go/types, method (*Interface) Embedded(int) *Named
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 30 21:14:09 UTC 2015 - 46.6K bytes - Viewed (0) -
api/except.txt
pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]int32 pkg syscall (openbsd-amd64), type Kevent_t struct, Data int32 pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint32 pkg syscall (openbsd-amd64), type Mclpool struct, Grown uint32 pkg syscall (openbsd-amd64), type RtMetrics struct, Expire uint32 pkg syscall (openbsd-amd64), type Stat_t struct, Ino uint32
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Sun Jun 16 23:08:08 UTC 2024 - 34.8K bytes - Viewed (0) -
src/cmd/api/main_test.go
if strings.HasPrefix(c.Text, "// Deprecated:") { return true } } } return false } w.deprecated = make(map[token.Pos]bool) mark := func(id *ast.Ident) { if id != nil { w.deprecated[id.Pos()] = true } } for _, file := range w.current.Files { ast.Inspect(file, func(n ast.Node) bool { switch n := n.(type) { case *ast.File:
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 31.4K bytes - Viewed (0)