Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 128 for Builtin (0.34 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/stablehlo_util.cc

      // It returns the default list of accepted dialects.
      std::vector<std::string> accepted_dialects({"stablehlo", "builtin", "func"});
      return accepted_dialects;
    }
    
    std::vector<std::string> GetAcceptedTFLiteDialects() {
      // It returns the default list of accepted dialects.
      std::vector<std::string> accepted_dialects({"tfl", "builtin", "func"});
      return accepted_dialects;
    }
    
    bool IsAcceptedDialect(llvm::StringRef dialect_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 21:06:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. releasenotes/notes/46339.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue: []
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 14:39:12 UTC 2023
    - 153 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_acl_windows.txt

    cmp $WORK\exe-acl.txt $WORK\src-acl.txt
    
    # The file written to the guest-allowed directory should give Guests control.
    grep 'BUILTIN\\Guests\s+Allow' $WORK\guest-acl.txt
    
    # The file written to the ordinary directory should not.
    ! grep 'BUILTIN\\Guests\s+Allow' $WORK\exe-acl.txt
    
    
    -- TestACL/go.mod --
    module TestACL
    -- TestACL/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/decompose_optionals.mlir

    func.func @if_with_variants_in_branches() {
      // CHECK-NOT: Optional
      %0 = builtin.unrealized_conversion_cast to tensor<5xi1>
      %2 = "tf.If"(%0) <{else_branch = @false, is_stateless = false, then_branch = @true}>
          : (tensor<5xi1>) -> (tensor<!tf_type.variant<tensor<f32>>>)
      return
    }
    func.func private @false() -> tensor<!tf_type.variant<tensor<f32>>> {
      %0 = builtin.unrealized_conversion_cast to tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top