Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 318 for Builtin (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/jcifs/SID.java

         * been resolved and it is not a domain SID or builtin account,
         * the full DOMAIN\name form of the account will be
         * returned (e.g. MYDOM\alice or MYDOM\Domain Users).
         * If the SID has been resolved but it is is a domain SID,
         * only the domain name will be returned (e.g. MYDOM).
         * If the SID has been resolved but it is a builtin account,
         * only the name component will be returned (e.g. SYSTEM).
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. test/fixedbugs/issue29304.go

    // run
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that relocation target go.builtin.error.Error
    // is defined and the code links and runs correctly.
    
    package main
    
    import "errors"
    
    func main() {
    	err := errors.New("foo")
    	if error.Error(err) != "foo" {
    		panic("FAILED")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 17 19:48:36 UTC 2018
    - 404 bytes
    - Viewed (0)
  9. test/varerr.go

    // Verify that a couple of illegal variable declarations are caught by the compiler.
    // Does not compile.
    
    package main
    
    func main() {
    	_ = asdf	// ERROR "undefined.*asdf"
    
    	new = 1	// ERROR "use of builtin new not in function call|invalid left hand side|must be called"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 449 bytes
    - Viewed (0)
  10. 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)
Back to top