Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,133 for programs (0.16 sec)

  1. src/regexp/syntax/doc.go

    // license that can be found in the LICENSE file.
    
    // Code generated by mksyntaxgo from the RE2 distribution. DO NOT EDIT.
    
    /*
    Package syntax parses regular expressions into parse trees and compiles
    parse trees into programs. Most clients of regular expressions will use the
    facilities of package [regexp] (such as [regexp.Compile] and [regexp.Match]) instead of this package.
    
    # Syntax
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. pkg/ctrlz/ctrlz.go

    		go listeningTestProbe()
    	}
    	err := s.httpServer.Serve(s.listener)
    	log.Infof("ControlZ terminated: %v", err)
    	s.shutdown.Done()
    }
    
    // Close terminates ControlZ.
    //
    // Close is not normally used by programs that expose ControlZ, it is primarily intended to be
    // used by tests.
    func (s *Server) Close() {
    	log.Info("Closing ControlZ")
    
    	if s.listener != nil {
    		if err := s.listener.Close(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typeparam.go

    	obj   *TypeName // corresponding type name
    	index int       // type parameter index in source order, starting at 0
    	bound Type      // any type, but underlying is eventually *Interface for correct programs (see TypeParam.iface)
    }
    
    // NewTypeParam returns a new TypeParam. Type parameters may be set on a Named
    // or Signature type by calling SetTypeParams. Setting a type parameter on more
    // than one type will result in a panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/runtime/metrics/doc.go

    		Memory that is reserved for or used to hold runtime metadata.
    
    	/memory/classes/os-stacks:bytes
    		Stack memory allocated by the underlying operating system.
    		In non-cgo programs this metric is currently zero. This may
    		change in the future.In cgo programs this metric includes
    		OS thread stacks allocated directly from the OS. Currently,
    		this only accounts for one stack in c-shared and c-archive build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. src/html/template/js.go

    // tokens, regular expression literal tokens, or division operators.
    //
    // This fails on some valid but nonsensical JavaScript programs like
    // "x = ++/foo/i" which is quite different than "x++/foo/i", but is not known to
    // fail on any known useful programs. It is based on the draft
    // JavaScript 2.0 lexical grammar and requires one token of lookbehind:
    // https://www.mozilla.org/js/language/js20-2000-07/rationale/syntax.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/net/netip/slow_test.go

    //   - IPv6 with trailing 32 bits expressed as IPv4: 1111:2222:3333:4444:5555:6666:77.77.88.88
    //
    // It does not process the following IP address forms, which have been
    // varyingly accepted by some programs due to an under-specification
    // of the shapes of IPv4 addresses:
    //
    //   - IPv4 as a single 32-bit uint: 4660 (same as "1.2.3.4")
    //   - IPv4 with octal numbers: 0300.0250.0.01 (same as "192.168.0.1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/go/types/typeparam.go

    	obj   *TypeName // corresponding type name
    	index int       // type parameter index in source order, starting at 0
    	bound Type      // any type, but underlying is eventually *Interface for correct programs (see TypeParam.iface)
    }
    
    // NewTypeParam returns a new TypeParam. Type parameters may be set on a Named
    // or Signature type by calling SetTypeParams. Setting a type parameter on more
    // than one type will result in a panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/internal/abi/type.go

    // Above this length, the GC information is recorded as a GC program,
    // which can express repetition compactly. In either form, the
    // information is used by the runtime to initialize the heap bitmap,
    // and for large types (like 128 or more words), they are roughly the
    // same speed. GC programs are never much larger and often more
    // compact. (If large arrays are involved, they can be arbitrarily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. src/runtime/runtime1.go

    	// The value can change at any time (in response to os.Setenv("GODEBUG"))
    	// and affects all extant timer channels immediately.
    	// Programs wouldn't normally change over an execution,
    	// but allowing it is convenient for testing and for programs
    	// that do an os.Setenv in main.init or main.main.
    	asynctimerchan atomic.Int32
    }
    
    var dbgvars = []*dbgVar{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/net/unixsock_posix.go

    	// and replaced our socket name already--
    	// but this sequence (remove then close)
    	// is at least compatible with the auto-remove
    	// sequence in ListenUnix. It's only non-Go
    	// programs that can mess us up.
    	// Even if there are racy calls to Close, we want to unlink only for the first one.
    	ln.unlinkOnce.Do(func() {
    		if ln.path[0] != '@' && ln.unlink {
    			syscall.Unlink(ln.path)
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top