Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Alert (0.12 sec)

  1. src/crypto/tls/alert.go

    	alertUnexpectedMessage            alert = 10
    	alertBadRecordMAC                 alert = 20
    	alertDecryptionFailed             alert = 21
    	alertRecordOverflow               alert = 22
    	alertDecompressionFailure         alert = 30
    	alertHandshakeFailure             alert = 40
    	alertBadCertificate               alert = 42
    	alertUnsupportedCertificate       alert = 43
    	alertCertificateRevoked           alert = 44
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/maturity/maturity.go

    	annotation.SidecarTrafficIncludeOutboundIPRanges.Name: true,
    }
    
    var AlwaysIgnoredAnnotations = map[string]bool{
    	// this annotation is set by default in istiod, don't alert on it.
    	annotation.SidecarStatus.Name: true,
    
    	// this annotation is set by controller, don't alert on it.
    	annotation.GatewayControllerVersion.Name: true,
    
    	// this annotation is added automatically.
    	annotation.IoIstioRev.Name: true,
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/upgrade/admin_upgrade.jsp

    				</div>
    			</div>
    			<section class="content">
    				<la:form action="/admin/upgrade/">
    					<%-- Message: BEGIN --%>
    					<div class="col-md-12">
    						<la:info id="msg" message="true">
    							<div class="alert alert-info">${msg}</div>
    						</la:info>
    						<la:errors />
    					</div>
    					<%-- Message: END --%>
    					<div class="col-md-12">
    						<div class="card card-outline card-primary">
    							<div class="card-header">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    		} else {
    			var a alert
    			c.out.Lock()
    			if !errors.As(c.out.err, &a) {
    				a = alertInternalError
    			}
    			c.out.Unlock()
    			// Return an error which wraps both the handshake error and
    			// any alert error we may have sent, or alertInternalError
    			// if we didn't send an alert.
    			// Truncate the text of the alert to 0 characters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/html/template/doc.go

    	err = t.ExecuteTemplate(out, "T", "<script>alert('you have been pwned')</script>")
    
    produces
    
    	Hello, <script>alert('you have been pwned')</script>!
    
    but the contextual autoescaping in html/template
    
    	import "html/template"
    	...
    	t, err := template.New("foo").Parse(`{{define "T"}}Hello, {{.}}!{{end}}`)
    	err = t.ExecuteTemplate(out, "T", "<script>alert('you have been pwned')</script>")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. internal/config/scanner/scanner.go

    	// Delay is the sleep multiplier.
    	Delay float64 `json:"delay"`
    
    	// Sleep always or based on incoming S3 requests.
    	IdleMode int32 // 0 => on, 1 => off
    
    	// Alert upon this many excess object versions
    	ExcessVersions int64 // 100
    
    	// Alert upon this many excess sub-folders per folder in an erasure set.
    	ExcessFolders int64 // 50000
    
    	// MaxWait is maximum wait time between operations
    	MaxWait time.Duration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/crypto/tls/quic.go

    	if err == nil {
    		return nil
    	}
    	var ae AlertError
    	if errors.As(err, &ae) {
    		return err
    	}
    	var a alert
    	if !errors.As(err, &a) {
    		a = alertInternalError
    	}
    	// Return an error wrapping the original error and an AlertError.
    	// Truncate the text of the alert to 0 characters.
    	return fmt.Errorf("%w%.0w", err, AlertError(a))
    }
    
    func (c *Conn) quicReadHandshakeBytes(n int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. pkg/controller/resourcequota/resource_quota_monitor.go

    	// list of resources to ignore
    	ignoredResources map[schema.GroupResource]struct{}
    
    	// The period that should be used to re-sync the monitored resource
    	resyncPeriod controller.ResyncPeriodFunc
    
    	// callback to alert that a change may require quota recalculation
    	replenishmentFunc ReplenishmentFunc
    
    	// maintains list of evaluators
    	registry quota.Registry
    
    	updateFilter UpdateFilter
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    	// HTML.
    	{"html", `{{html "<script>alert(\"XSS\");</script>"}}`,
    		"&lt;script&gt;alert(&#34;XSS&#34;);&lt;/script&gt;", nil, true},
    	{"html pipeline", `{{printf "<script>alert(\"XSS\");</script>" | html}}`,
    		"&lt;script&gt;alert(&#34;XSS&#34;);&lt;/script&gt;", nil, true},
    	{"html", `{{html .PS}}`, "a string", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    link:https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-supply-chain-security[GitHub supply chain security] features will detect and alert about any dependencies that have known vulnerabilities.
    In order to do this, GitHub requires a complete dependency graph for your project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top