Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for synthesized (0.34 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    		}
    		if e != ERROR_INSUFFICIENT_BUFFER {
    			return "", "", 0, e
    		}
    		if n <= uint32(len(b)) {
    			return "", "", 0, e
    		}
    	}
    }
    
    // Various types of pre-specified SIDs that can be synthesized and compared at runtime.
    type WELL_KNOWN_SID_TYPE uint32
    
    const (
    	WinNullSid                                    = 0
    	WinWorldSid                                   = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p256_fiat64.go

    //
    // m = 0xffffffff00000001000000000000000000000000ffffffffffffffffffffffff (from "2^256 - 2^224 + 2^192 + 2^96 - 1")
    //
    //
    //
    // NOTE: In addition to the bounds specified above each function, all
    //
    //   functions synthesized for this Montgomery arithmetic require the
    //
    //   input to be strictly less than the prime modulus (m), and also
    //
    //   require the input to be in the unique saturated representation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p224_fiat64.go

    //
    // m = 0xffffffffffffffffffffffffffffffff000000000000000000000001 (from "2^224 - 2^96 + 1")
    //
    //
    //
    // NOTE: In addition to the bounds specified above each function, all
    //
    //   functions synthesized for this Montgomery arithmetic require the
    //
    //   input to be strictly less than the prime modulus (m), and also
    //
    //   require the input to be in the unique saturated representation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    a non-Go program in the directory. Files in package documentation
    are ignored by the go command.
    
    As a special case, if the package list is a list of .go files from a
    single directory, the command is applied to a single synthesized
    package made up of exactly those files, ignoring any build constraints
    in those files and ignoring any other files in the directory.
    
    Directory and file names that begin with "." or "_" are ignored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/runtime/panic.go

    // execute a range-over-function loop in which the loop body
    // may execute a defer statement. That defer needs to add to
    // the chain for the current function, not the func literal synthesized
    // to represent the loop body. To do that, the original function
    // calls deferrangefunc to obtain an opaque token representing
    // the current frame, and then the loop body uses deferprocat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    // each input param reg will be spilled in the prolog). In addition
    // to the register params, here we also build location lists (where
    // appropriate for the ".closureptr" compiler-synthesized variable
    // needed by the debugger for range func bodies.
    func BuildFuncDebugNoOptimized(ctxt *obj.Link, f *Func, loggingEnabled bool, stackOffset func(LocalSlot) int32, rval *FuncDebug) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	}
    	return p.ImportPath
    }
    
    // IsTestOnly reports whether p is a test-only package.
    //
    // A “test-only” package is one that:
    //   - is a test-only variant of an ordinary package, or
    //   - is a synthesized "main" package for a test binary, or
    //   - contains only _test.go files.
    func (p *Package) IsTestOnly() bool {
    	return p.ForTest != "" ||
    		p.Internal.TestmainGo != nil ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    type PushContext struct {
    	proxyStatusMutex sync.RWMutex
    	// ProxyStatus is keyed by the error code, and holds a map keyed
    	// by the ID.
    	ProxyStatus map[string]map[string]ProxyPushStatus
    
    	// Synthesized from env.Mesh
    	exportToDefaults exportToDefaults
    
    	// ServiceIndex is the index of services by various fields.
    	ServiceIndex serviceIndex
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm.go

    				q := c.newprog()
    				prev.Link = q
    				q.Link = p
    				q.Pc = pc
    				q.As = obj.APCALIGN
    				q.From.Type = obj.TYPE_CONST
    				q.From.Offset = loopAlign
    				// Don't associate the synthesized PCALIGN with
    				// the original source position, for deterministic
    				// mapping between source and corresponding asm.
    				// q.Pos = p.Pos
    
    				// Manually make the PCALIGN come into effect,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p384_fiat64.go

    //
    //
    //
    // NOTE: In addition to the bounds specified above each function, all
    //
    //   functions synthesized for this Montgomery arithmetic require the
    //
    //   input to be strictly less than the prime modulus (m), and also
    //
    //   require the input to be in the unique saturated representation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
Back to top