Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for wspolicy (0.31 sec)

  1. src/crypto/x509/root_darwin.go

    			}
    			macOS.CFArrayAppendValue(certs, sc)
    		}
    	}
    
    	policies := macOS.CFArrayCreateMutable()
    	defer macOS.ReleaseCFArray(policies)
    	sslPolicy, err := macOS.SecPolicyCreateSSL(opts.DNSName)
    	if err != nil {
    		return nil, err
    	}
    	macOS.CFArrayAppendValue(policies, sslPolicy)
    
    	trustObj, err := macOS.SecTrustCreateWithCertificates(certs, policies)
    	if err != nil {
    		return nil, err
    	}
    	defer macOS.CFRelease(trustObj)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	// Indicates a rune starts a new segment and should not be added.
    	ssStarter
    	// Indicates a rune caused a segment overflow and a CGJ should be inserted.
    	ssOverflow
    )
    
    // streamSafe implements the policy of when a CGJ should be inserted.
    type streamSafe uint8
    
    // first inserts the first rune of a segment. It is a faster version of next if
    // it is known p represents the first rune in a segment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/debug/pe/file.go

    /*
    Package pe implements access to PE (Microsoft Windows Portable Executable) files.
    
    # Security
    
    This package is not designed to be hardened against adversarial inputs, and is
    outside the scope of https://go.dev/security/policy. In particular, only basic
    validation is done when parsing object files. As such, care should be taken when
    parsing untrusted inputs, as parsing malformed files may consume significant
    resources, or cause panics.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_SCHED_GETSCHEDULER       = 330 // { int sched_getscheduler (pid_t pid); }
    	SYS_SCHED_YIELD              = 331 // { int sched_yield (void); }
    	SYS_SCHED_GET_PRIORITY_MAX   = 332 // { int sched_get_priority_max (int policy); }
    	SYS_SCHED_GET_PRIORITY_MIN   = 333 // { int sched_get_priority_min (int policy); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    // This always returns a freshly copied ABI.
    func AbiForBodylessFuncStackMap(fn *ir.Func) *abi.ABIConfig {
    	return ssaConfig.ABI0.Copy() // No idea what races will result, be safe
    }
    
    // abiForFunc implements ABI policy for a function, but does not return a copy of the ABI.
    // Passing a nil function returns the default ABI based on experiment configuration.
    func abiForFunc(fn *ir.Func, abi0, abi1 *abi.ABIConfig) *abi.ABIConfig {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/cmd/covdata/dump.go

    	}
    	d := &dstate{
    		cmd: cmd,
    		cm:  &cmerge.Merger{},
    	}
    	// For these modes (percent, pkglist, func, etc), use a relaxed
    	// policy when it comes to counter mode clashes. For a percent
    	// report, for example, we only care whether a given line is
    	// executed at least once, so it's ok to (effectively) merge
    	// together runs derived from different counter modes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	SPDRP_DEVICE_POWER_DATA           SPDRP = 0x0000001E // Device Power Data (R)
    	SPDRP_REMOVAL_POLICY              SPDRP = 0x0000001F // Removal Policy (R)
    	SPDRP_REMOVAL_POLICY_HW_DEFAULT   SPDRP = 0x00000020 // Hardware Removal Policy (R)
    	SPDRP_REMOVAL_POLICY_OVERRIDE     SPDRP = 0x00000021 // Removal Policy Override (RW)
    	SPDRP_INSTALL_STATE               SPDRP = 0x00000022 // Device Install State (R)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/order.go

    	// presented by the paper:
    	// "AFL++: Combining Incremental Steps of Fuzzing Research"
    	// The NeverZero policy avoids the overflow to 0 by setting the counter to one
    	// after it reaches 255 and so, if an edge is executed at least one time, the entry is
    	// never 0.
    	// Another policy presented in the paper is the Saturated Counters policy which
    	// freezes the counter when it reaches the value of 255. However, a range
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	{99, "ENOSTR", "not a STREAM"},
    	{100, "EPROTO", "protocol error"},
    	{101, "ETIME", "STREAM ioctl timeout"},
    	{102, "EOPNOTSUPP", "operation not supported on socket"},
    	{103, "ENOPOLICY", "policy not found"},
    	{104, "ENOTRECOVERABLE", "state not recoverable"},
    	{105, "EOWNERDEAD", "previous owner died"},
    	{106, "EQFULL", "interface output queue is full"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  10. src/encoding/encoding.go

    //
    // Adding encoding/decoding methods to existing types may constitute a breaking change,
    // as they can be used for serialization in communicating with programs
    // written with different library versions.
    // The policy for packages maintained by the Go project is to only allow
    // the addition of marshaling functions if no existing, reasonable marshaling exists.
    package encoding
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:43:37 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top