Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for Ordinary (0.17 sec)

  1. src/runtime/cpuprof.go

    	}
    
    	prof.signalLock.Store(0)
    }
    
    // addExtra adds the "extra" profiling events,
    // queued by addNonGo, to the profile log.
    // addExtra is called either from a signal handler on a Go thread
    // or from an ordinary goroutine; either way it can use stack
    // and has a g. The world may be stopped, though.
    func (p *cpuProfile) addExtra() {
    	// Copy accumulated non-Go profile events.
    	hdr := [1]uint64{1}
    	for i := 0; i < p.numExtra; {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/runtime/error.go

    )
    
    // The Error interface identifies a run time error.
    type Error interface {
    	error
    
    	// RuntimeError is a no-op function but
    	// serves to distinguish types that are run time
    	// errors from ordinary errors: a type is a
    	// run time error if it has a RuntimeError method.
    	RuntimeError()
    }
    
    // A TypeAssertionError explains a failed type assertion.
    type TypeAssertionError struct {
    	_interface    *_type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        host_compute_out_ops.push_back(out_full);
        full_outputs.push_back(out_full);
      }
    
      return mlir::success();
    }
    
    // Create the _XlaHostComputeMlir with `inputs` and `outputs` for the ordinary
    // outside_compilation case.
    // Output `full_outputs`, which is the outputs of the `_XlaHostComputeMlir` and
    // add the `_XlaHostComputeMlir` to `host_compute_out_ops`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/fsys/fsys.go

    			// always stat through it (using Stat, not Lstat). That way we don't need
    			// to worry about the interaction between Lstat and directories: if a
    			// symlink in the overlay points to a directory, we reject it like an
    			// ordinary directory.
    			fi, err := os.Stat(to.actualFilePath)
    			if err != nil {
    				files[name] = missingFile(name)
    				continue
    			} else if fi.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. src/runtime/runtime_test.go

    // the operating system and the runtime can process these faults
    // correctly. That is, we're indirectly testing that without SetPanicOnFault
    // these would manage to turn into ordinary crashes.
    // Note that these are truncated on 32-bit systems, so the bottom 32 bits
    // of the larger addresses must themselves be invalid addresses.
    // We might get unlucky and the OS might have mapped one of these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/syscall/syscall_darwin.go

    // Copyright 2009,2010 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.
    
    // Darwin system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/infer.go

    	assert(params.Len() == len(args))
    
    	// If we already have all type arguments, we're done.
    	if len(targs) == n && !containsNil(targs) {
    		return targs
    	}
    
    	// If we have invalid (ordinary) arguments, an error was reported before.
    	// Avoid additional inference errors and exit early (go.dev/issue/60434).
    	for _, arg := range args {
    		if arg.mode == invalid {
    			return nil
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. src/go/types/stmt.go

    			}
    
    			rhs = guard.Rhs[0]
    
    		default:
    			check.error(s, InvalidSyntaxTree, "incorrect form of type switch guard")
    			return
    		}
    
    		// rhs must be of the form: expr.(type) and expr must be an ordinary interface
    		expr, _ := rhs.(*ast.TypeAssertExpr)
    		if expr == nil || expr.Type != nil {
    			check.error(s, InvalidSyntaxTree, "incorrect form of type switch guard")
    			return
    		}
    		var x operand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. src/go/types/infer.go

    	assert(params.Len() == len(args))
    
    	// If we already have all type arguments, we're done.
    	if len(targs) == n && !containsNil(targs) {
    		return targs
    	}
    
    	// If we have invalid (ordinary) arguments, an error was reported before.
    	// Avoid additional inference errors and exit early (go.dev/issue/60434).
    	for _, arg := range args {
    		if arg.mode == invalid {
    			return nil
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/instantiate.go

    		// If V is strictly comparable, we're done.
    		if comparable(V, false /* strict comparability */, nil, nil) {
    			return true
    		}
    		// For constraint satisfaction, use dynamic (spec) comparability
    		// so that ordinary, non-type parameter interfaces implement comparable.
    		if constraint && comparable(V, true /* spec comparability */, nil, nil) {
    			// V is comparable if we are at Go 1.20 or higher.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top