Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 113 for stackID (0.19 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                     = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }
    	SYS_IOCTL                    = 54  // { int ioctl(int fd, u_long com, caddr_t data); }
    	SYS_REBOOT                   = 55  // { int reboot(int opt); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                     = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }
    	SYS_IOCTL                    = 54  // { int ioctl(int fd, u_long com, caddr_t data); }
    	SYS_REBOOT                   = 55  // { int reboot(int opt); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/internal/godebug/godebug.go

    // Parse only updates settings k=v for which did[k] = false.
    // It also sets did[k] = true for settings that it updates.
    // Each value v can also have the form v#pattern,
    // in which case the GODEBUG is only enabled for call stacks
    // matching pattern, for use with golang.org/x/tools/cmd/bisect.
    func parse(did map[string]bool, s string) {
    	// Scan the string backward so that later settings are used
    	// and earlier settings are ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/runtime/tracestack.go

    // license that can be found in the LICENSE file.
    
    // Trace stack table and acquisition.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    const (
    	// Maximum number of PCs in a single stack trace.
    	// Since events contain only stack id rather than whole stack trace,
    	// we can allow quite large values here.
    	traceStackSize = 128
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/net/net_test.go

    			}
    		}()
    		select {
    		case err := <-errc:
    			return err
    		case <-time.After(5 * time.Second):
    			buf := make([]byte, 2<<20)
    			buf = buf[:runtime.Stack(buf, true)]
    			println("Stacks at timeout:\n", string(buf))
    			return errors.New("timeout waiting for Read to finish")
    		}
    
    	}
    	// Do nothing in the client. Never write. Just wait for the
    	// server's half to be done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/internal/trace/event/go122/event.go

    	EvUserTaskEnd     // end of a task [timestamp, internal task ID, stack ID]
    	EvUserRegionBegin // trace.{Start,With}Region [timestamp, internal task ID, name string ID, stack ID]
    	EvUserRegionEnd   // trace.{End,With}Region [timestamp, internal task ID, name string ID, stack ID]
    	EvUserLog         // trace.Log [timestamp, internal task ID, key string ID, value string ID, stack]
    
    	// Coroutines. Added in Go 1.23.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/go/types/unify.go

    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    			//
    			// This is a quadratic algorithm, but in practice these stacks
    			// are extremely short (bounded by the nesting depth of interface
    			// type declarations that recur via parameter types, an extremely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/tests/go122-annotations.test

    UserRegionBegin dt=286 task=1 name_string=24 stack=15
    UserRegionBegin dt=244 task=1 name_string=25 stack=16
    UserRegionBegin dt=6 task=1 name_string=26 stack=17
    UserLog dt=6 task=1 key_string=27 value_string=28 stack=18
    UserRegionEnd dt=4 task=1 name_string=26 stack=19
    UserRegionEnd dt=315 task=1 name_string=25 stack=20
    UserTaskEnd dt=5 task=1 stack=21
    GoUnblock dt=11 g=1 g_seq=1 stack=22
    GoDestroy dt=6
    GoStart dt=10 g=1 g_seq=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/join.go

    			if data.cfg.ControlPlane != nil {
    				// outputs the join control plane done message and exit
    				etcdMessage := ""
    				if data.initCfg.Etcd.External == nil {
    					etcdMessage = "* A new etcd member was added to the local/stacked etcd cluster."
    				}
    
    				ctx := map[string]string{
    					"KubeConfigPath": kubeadmconstants.GetAdminKubeConfigPath(),
    					"etcdMessage":    etcdMessage,
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/canonicalize.mlir

      %2 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      %3 = "tf.Const"() {value = dense<2> : tensor<i32>} : () -> tensor<i32>
      %4 = "tf.StackV2"(%3) {elem_type = f32, stack_name = "s"} : (tensor<i32>) -> tensor<!tf_type.resource>
      %5:5 = "tfl.while"(%2, %3, %2, %4, %0) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top