Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 165 for synthetic (0.32 sec)

  1. pilot/pkg/networking/core/listener.go

    	binds []string
    	// bindToPort determines whether this binds to a real port. If so, it becomes a real linux-level listener. Otherwise,
    	// it is just a synthetic listener for matching with original_dst
    	bindToPort bool
    }
    
    // Primary returns the primary bind, or empty if there is none
    func (l listenerBinding) Primary() string {
    	if len(l.binds) == 0 {
    		return ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	needCloCtx := f.CloSlot != nil
    	pri := f.ABISelf.ABIAnalyzeFuncType(f.Type)
    
    	// Look to see if we have any named register-promoted parameters,
    	// and/or whether we need location info for the ".closureptr"
    	// synthetic variable; if not bail early and let the caller sort
    	// things out for the remainder of the params/locals.
    	numRegParams := 0
    	for _, inp := range pri.InParams() {
    		if isNamedRegParam(inp) {
    			numRegParams++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - Implemented API for streaming for the `etcd` store implementation.
      When `sendInitialEvents ListOption` is set together with `watch=true`, it begins the watch stream with synthetic init events followed by a synthetic `Bookmark`, after which the server continues streaming events. ([#119557](https://github.com/kubernetes/kubernetes/pull/119557), [@p0lyn0mial](https://github.com/p0lyn0mial))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - Implemented API streaming for the `watch-cache`
      
      When `sendInitialEvents` `ListOption` is set together with `watch=true`, it begins the watch stream with synthetic init events followed by a synthetic "Bookmark" after which the server continues streaming events. ([#110960](https://github.com/kubernetes/kubernetes/pull/110960), [@p0lyn0mial](https://github.com/p0lyn0mial))
    - Introduced API for streaming.
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	typeCertificateVerify   uint8 = 15
    	typeClientKeyExchange   uint8 = 16
    	typeFinished            uint8 = 20
    	typeCertificateStatus   uint8 = 22
    	typeKeyUpdate           uint8 = 24
    	typeMessageHash         uint8 = 254 // synthetic message
    )
    
    // TLS compression types.
    const (
    	compressionNone uint8 = 0
    )
    
    // TLS extension numbers
    const (
    	extensionServerName              uint16 = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    NOTE: Not all test frameworks play well with filtering. Some advanced, synthetic tests may not be fully compatible.
    However, the vast majority of tests and use cases work perfectly well with Gradle's filtering mechanism.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    			Port: &istio.PortSelector{Number: uint32(*to.Port)},
    		}, invalidBackendErr
    	}
    	if nilOrEqual((*string)(to.Group), gvk.ServiceEntry.Group) && nilOrEqual((*string)(to.Kind), "Hostname") {
    		// Hostname synthetic type
    		if to.Port == nil {
    			// We don't know where to send without port
    			return nil, &ConfigError{Reason: InvalidDestination, Message: "port is required in backendRef"}
    		}
    		if to.Namespace != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    			goVersion string
    			pruning   modPruning
    			roots     []module.Version
    			direct    = map[string]bool{"go": true}
    		)
    		if inWorkspaceMode() {
    			// Since we are in a workspace, the Go version for the synthetic
    			// "command-line-arguments" module must not exceed the Go version
    			// for the workspace.
    			goVersion = MainModules.GoVersion()
    			pruning = workspace
    			roots = []module.Version{
    				mainModule,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	}
    	return time.Now()
    }
    
    // newTimer creates a new time.Timer, or a synthetic timer in tests.
    func (s *http2Server) newTimer(d time.Duration) http2timer {
    	if s.group != nil {
    		return s.group.NewTimer(d)
    	}
    	return http2timeTimer{time.NewTimer(d)}
    }
    
    // afterFunc creates a new time.AfterFunc timer, or a synthetic timer in tests.
    func (s *http2Server) afterFunc(d time.Duration, f func()) http2timer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
Back to top