Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 318 for Builtin (0.12 sec)

  1. src/cmd/doc/main.go

    		}
    		if buildPackage == nil {
    			return fmt.Errorf("no such package: %s", userPath)
    		}
    
    		// The builtin package needs special treatment: its symbols are lower
    		// case but we want to see them, always.
    		if buildPackage.ImportPath == "builtin" {
    			unexported = true
    		}
    
    		symbol, method = parseSymbol(sym)
    		pkg := parsePackage(writer, buildPackage, userPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/go/internal/srcimporter/srcimporter_test.go

    func walkDir(t *testing.T, path string, endTime time.Time) (int, bool) {
    	if time.Now().After(endTime) {
    		t.Log("testing time used up")
    		return 0, true
    	}
    
    	// ignore fake packages and testdata directories
    	if path == "builtin" || path == "unsafe" || strings.HasSuffix(path, "testdata") {
    		return 0, false
    	}
    
    	list, err := os.ReadDir(filepath.Join(testenv.GOROOT(t), "src", path))
    	if err != nil {
    		t.Fatalf("walkDir %s failed (%v)", path, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/check_control_dependencies.mlir

    // RUN: tf-opt -split-input-file -tf-executor-check-control-dependencies -verify-diagnostics %s | FileCheck %s
    
    // expected-error@+1 {{'builtin.module' op not suitable for checking control dependencies}}
    module {
      // CHECK-LABEL: func @not_suitable_for_checking
      func.func @not_suitable_for_checking() -> () {
        tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 16:14:07 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. cmd/typed-errors.go

    // error returned in IAM subsystem when user doesn't exist.
    var errNoSuchUser = errors.New("Specified user does not exist")
    
    // error returned by IAM when a use a builtin IDP command when they could mean
    // to use a LDAP command.
    var errNoSuchUserLDAPWarn = errors.New("Specified user does not exist. If you meant a user in LDAP please use command under `mc idp ldap`")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_arguments.mlir

      // CHECK: return %arg0, %arg0
      return %0, %1 : f32, f32
    }
    
    // -----
    
    // CHECK-LABEL: @has_inner_function
    func.func private @has_inner_function(%arg0: f32) -> (f32, f32) {
      builtin.module {
        func.func private @inner() -> (tensor<f32>, tensor<f32>) {
          %0, %1 = "some_constant"() : () -> (tensor<f32>, tensor<f32>)
          // CHECK: return
          // CHECK-SAME: tensor<f32>, tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 23:00:44 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritedec64.go

    	// result: (Int64Make (Arg <typ.Int32> {n} [off+4]) (Arg <typ.UInt32> {n} [off]))
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		n := auxToSym(v.Aux)
    		if !(is64BitInt(v.Type) && !config.BigEndian && v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin")) {
    			break
    		}
    		v.reset(OpInt64Make)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  7. src/runtime/print.go

    	rp := (*slice)(unsafe.Pointer(&ret))
    	sp := stringStructOf(&s)
    	rp.array = sp.str
    	rp.len = sp.len
    	rp.cap = sp.len
    	return
    }
    
    var (
    	// printBacklog is a circular buffer of messages written with the builtin
    	// print* functions, for use in postmortem analysis of core dumps.
    	printBacklog      [512]byte
    	printBacklogIndex int
    )
    
    // recordForPanic maintains a circular buffer of messages written by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/search.go

    	if !m.IsMeta() {
    		isMatch = pkgpattern.MatchPattern(m.Pattern())
    		treeCanMatch = pkgpattern.TreeCanMatchPattern(m.Pattern())
    	}
    
    	var mu sync.Mutex
    	have := map[string]bool{
    		"builtin": true, // ignore pseudo-package that exists only for documentation
    	}
    	addPkg := func(p string) {
    		mu.Lock()
    		m.Pkgs = append(m.Pkgs, p)
    		mu.Unlock()
    	}
    	if !cfg.BuildContext.CgoEnabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    	for i in $errors
    	do
    		echo -E '	'$i,
    	done
    
    	echo -E "
    };
    
    int signals[] = {
    "
    	for i in $signals
    	do
    		echo -E '	'$i,
    	done
    
    	# Use -E because on some systems bash builtin interprets \n itself.
    	echo -E '
    };
    
    static int
    intcmp(const void *a, const void *b)
    {
    	return *(int*)a - *(int*)b;
    }
    
    int
    main(void)
    {
    	int i, j, e;
    	char buf[1024], *p;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (2)
  10. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	//
    	// The cases are handled in four steps:
    	//
    	// 1. reject nil and builtin
    	// 2. accept package-level objects
    	// 3. reject obviously invalid objects
    	// 4. search the API for the path to the param/result/field/method.
    
    	// 1. reference to nil or builtin?
    	if pkg == nil {
    		return "", fmt.Errorf("predeclared %s has no path", obj)
    	}
    	scope := pkg.Scope()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top