Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 297 for Builtin (0.15 sec)

  1. src/cmd/internal/goobj/mkbuiltin.go

    	pkg := "runtime"
    	fset := token.NewFileSet()
    	path := filepath.Join("..", "..", "compile", "internal", "typecheck", "_builtin", "runtime.go")
    	f, err := parser.ParseFile(fset, path, nil, 0)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	decls := make(map[string]bool)
    
    	fmt.Fprintf(w, "var builtins = [...]struct{ name string; abi int }{\n")
    	for _, decl := range f.Decls {
    		switch decl := decl.(type) {
    		case *ast.FuncDecl:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/_builtin/coverage.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // NOTE: If you change this file you must run "go generate"
    // in cmd/compile/internal/typecheck
    // to update builtin.go. This is not done automatically
    // to avoid depending on having a working compiler binary.
    
    //go:build ignore
    
    package coverage
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 16:59:48 UTC 2024
    - 437 bytes
    - Viewed (0)
  3. releasenotes/notes/iptables-lock.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 15:20:31 UTC 2023
    - 245 bytes
    - Viewed (0)
  4. src/go/types/operand.go

    type operandMode byte
    
    const (
    	invalid   operandMode = iota // operand is invalid
    	novalue                      // operand represents no value (result of a function call w/o result)
    	builtin                      // operand is a built-in function
    	typexpr                      // operand is a type
    	constant_                    // operand is a constant; the operand's typ is a Basic type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. pkg/config/schema/ast/ast.go

    	VersionAliases     []string `json:"versionAliases"`
    	Kind               string   `json:"kind"`
    	Plural             string   `json:"plural"`
    	ClusterScoped      bool     `json:"clusterScoped"`
    	Builtin            bool     `json:"builtin"`
    	Specless           bool     `json:"specless"`
    	Synthetic          bool     `json:"synthetic"`
    	Proto              string   `json:"proto"`
    	ProtoPackage       string   `json:"protoPackage"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_list_std.txt

    # GOROOT/src/... should list the packages in std as if it were a module
    # dependency: omitting vendored dependencies and stopping at the 'cmd' module
    # boundary.
    
    go list $GOROOT/src/...
    stdout ^bytes$
    ! stdout ^builtin$
    ! stdout ^cmd/
    ! stdout ^vendor/
    ! stdout ^golang\.org/x/
    
    
    # Vendored dependencies should appear with their 'vendor/' paths in std (they're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/adjust-layout.mlir

    // RUN: tf-opt -pass-pipeline='builtin.module(func.func(infeed-ops-xla-adjust-layout))' %s | FILECHECK_OPTS="" FileCheck %s
    
    func.func @infeed_dequeue_tuple() -> (tensor<1x8x4x4xi32>, tensor<1x100x1xf32>) {
      // CHECK: [[TOKEN:%.*]] = mhlo.create_token : !mhlo.token
      %0 = "mhlo.create_token"() : () -> !mhlo.token
    
      // CHECK:               [[INFEED:%.*]]:3 = "mhlo.infeed"([[TOKEN]]) <{
      // CHECK-SAME{LITERAL}:   infeed_config = "", layout = [[1, 3, 2, 0], [1, 2, 0]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 817 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/example_test.go

    	// }
    	// sort.Strings(items)
    	// fmt.Println(strings.Join(items, "\n"))
    
    	// Output:
    	// InitOrder: [c = "hello" b = S(c) a = len(b)]
    	//
    	// Defs and Uses of each named object:
    	// builtin len:
    	//   defined at <unknown position>
    	//   used at 6:15
    	// func fib(x int) int:
    	//   defined at fib:8:6
    	//   used at 12:20, 12:9
    	// type S string:
    	//   defined at fib:4:6
    	//   used at 6:23
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/executor_island_materialize_const.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(func.func(canonicalize))' | FileCheck %s
    
    // Test that a constant stays inside an island after canonicalization
    
    // CHECK-LABEL: func @constant_in_island
    func.func @constant_in_island(%arg0 : tensor<i1>) -> tensor<f32> {
      %0 = tf_executor.graph {
    // CHECK: tf_executor.island
    // CHECK: tf.Const{{.*}}2.0
        %1:2 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 854 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/operand.go

    type operandMode byte
    
    const (
    	invalid   operandMode = iota // operand is invalid
    	novalue                      // operand represents no value (result of a function call w/o result)
    	builtin                      // operand is a built-in function
    	typexpr                      // operand is a type
    	constant_                    // operand is a constant; the operand's typ is a Basic type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top