Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for sigblock (0.12 sec)

  1. src/runtime/os_netbsd.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    const (
    	_SS_DISABLE  = 4
    	_SIG_BLOCK   = 1
    	_SIG_UNBLOCK = 2
    	_SIG_SETMASK = 3
    	_NSIG        = 33
    	_SI_USER     = 0
    
    	// From NetBSD's <sys/ucontext.h>
    	_UC_SIGMASK = 0x01
    	_UC_CPU     = 0x04
    
    	// From <sys/lwp.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/templates/productpage.html

    <!-- Sign in dialog -->
    <dialog id="dialog" class="w-full sm:w-2/3 lg:w-1/3 border rounded-md shadow-xl">
      <div class="flex min-h-full flex-col justify-center px-6 py-12 lg:px-8">
        <div class="absolute right-0 top-0 hidden pr-4 pt-4 sm:block">
          <button id="close-dialog" type="button" class="rounded-md bg-white text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2">
            <span class="sr-only">Close</span>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    				r.setIndirect(true)
    			}
    		} else {
    			line = new(Line)
    			*line = *r.Syntax
    			if !line.InBlock && len(line.Token) > 0 && line.Token[0] == "require" {
    				line.Token = line.Token[1:]
    			}
    			r.Syntax.Token = nil // Cleanup will delete the old line.
    			r.Syntax = line
    		}
    		line.InBlock = true
    		block.Line = append(block.Line, line)
    	}
    
    	// Examine existing require lines and blocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/cache.go

    		return nil, err
    	}
    	return lockedfile.MutexAt(path).Lock()
    }
    
    // SideLock locks a file within the module cache that previously guarded
    // edits to files outside the cache, such as go.sum and go.mod files in the
    // user's working directory.
    // If err is nil, the caller MUST eventually call the unlock function.
    func SideLock(ctx context.Context) (unlock func(), err error) {
    	if err := checkCacheDir(ctx); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/edit.go

    		os.Stdout.Write(out)
    		return
    	}
    
    	// Make a best-effort attempt to acquire the side lock, only to exclude
    	// previous versions of the 'go' command from making simultaneous edits.
    	if unlock, err := modfetch.SideLock(ctx); err == nil {
    		defer unlock()
    	}
    
    	err = lockedfile.Transform(gomod, func(lockedData []byte) ([]byte, error) {
    		if !bytes.Equal(lockedData, data) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

        ): List<KaSymbol> {
            // Handle situation when we're in the middle/beginning of qualifier
            // <caret>A.B.C.foo() or A.<caret>B.C.foo()
            // NB: in this case we get some parent FIR, like FirBlock, FirProperty, FirFunction or the like
            var parent = expression.parent as? KtDotQualifiedExpression
            var unresolvedCounter = 1
            while (parent != null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/fetch.go

    	}
    
    	// Make a best-effort attempt to acquire the side lock, only to exclude
    	// previous versions of the 'go' command from making simultaneous edits.
    	if unlock, err := SideLock(ctx); err == nil {
    		defer unlock()
    	}
    
    	err := lockedfile.Transform(GoSumFile, func(data []byte) ([]byte, error) {
    		tidyGoSum := tidyGoSum(data, keep)
    		return tidyGoSum, nil
    	})
    
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top