Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for Implementation (0.27 sec)

  1. src/crypto/tls/handshake_server_test.go

    	}
    }
    
    // Note: see comment in handshake_test.go for details of how the reference
    // tests work.
    
    // serverTest represents a test of the TLS server handshake against a reference
    // implementation.
    type serverTest struct {
    	// name is a freeform string identifying the test and the file in which
    	// the expected results will be stored.
    	name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    	// generate metadata
    	node, err := a.generateNodeMetadata()
    	if err != nil {
    		return fmt.Errorf("failed generating node metadata: %v", err)
    	}
    
    	// GRPC bootstrap requires this. Original implementation injected this via env variable, but
    	// this interfere with envoy, we should be able to use both envoy for TCP/HTTP and proxyless.
    	node.Metadata.Generator = "grpc"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    // algorithms completes a roundtrip. If any algorithm
    // produces an incorrect checksum it fails with a hard error.
    //
    // compressSelfTest tries to catch any issue in the compression implementation
    // early instead of silently corrupting data.
    func compressSelfTest() {
    	// 4 MB block.
    	// Approx runtime ~30ms
    	data := make([]byte, 4<<20)
    	rng := rand.New(rand.NewSource(0))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    				// TLS is not terminated, so we will attempt to decode as HTTP and fail
    				Error: simulation.ErrProtocolError,
    			},
    			Permissive: simulation.Result{
    				// This could also be a protocol error. In the current implementation, we choose not
    				// to create a match since if we did it would just be rejected in HCM; no match
    				// is more performant
    				Error: simulation.ErrNoFilterChain,
    			},
    			Strict: simulation.Result{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. cmd/iam.go

    )
    
    // LoadGroup - loads a specific group from storage, and updates the
    // memberships cache. If the specified group does not exist in
    // storage, it is removed from in-memory maps as well - this
    // simplifies the implementation for group removal. This is called
    // only via IAM notifications.
    func (sys *IAMSys) LoadGroup(ctx context.Context, objAPI ObjectLayer, group string) error {
    	if !sys.Initialized() {
    		return errServerNotInitialized
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_test.go

    	if e.NumField() != 14 {
    		t.Fatalf("Expected 14 fields, got %v. This means we need to update filterChainMatchEqual implementation", e.NumField())
    	}
    }
    
    func TestInboundListener_PrivilegedPorts(t *testing.T) {
    	// Verify that an explicit ingress listener will not bind to privileged ports
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  7. cmd/storage-rest-server.go

    		return errXLBackend
    	}
    
    	return nil
    }
    
    // A single function to write certain errors to be fatal
    // or informative based on the `exit` flag, please look
    // at each implementation of error for added hints.
    //
    // FIXME: This is an unusual function but serves its purpose for
    // now, need to revisit the overall erroring structure here.
    // Do not like it :-(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	klet.setNodeStatusFuncs = klet.defaultNodeStatusFuncs()
    
    	return klet, nil
    }
    
    type serviceLister interface {
    	List(labels.Selector) ([]*v1.Service, error)
    }
    
    // Kubelet is the main kubelet implementation.
    type Kubelet struct {
    	kubeletConfiguration kubeletconfiginternal.KubeletConfiguration
    
    	// hostname is the hostname the kubelet detected or was given via flag/config
    	hostname string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/cluster/topology.go

    package cluster
    
    import (
    	"bytes"
    	"fmt"
    
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/framework/config"
    )
    
    // Map can be given as a shared reference to multiple Topology/Cluster implementations.
    // allowing clusters to find each other for lookups of Primary, ConfigCluster, etc.
    type Map = map[string]Cluster
    
    func NewTopology(config Config, allClusters Map) Topology {
    	return Topology{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    			if err := c.Close(); err != nil {
    				base.Fatalf("go: failed to trim cache: %v", err)
    			}
    		}()
    	}
    
    	// Build list of all actions, assigning depth-first post-order priority.
    	// The original implementation here was a true queue
    	// (using a channel) but it had the effect of getting
    	// distracted by low-level leaf actions to the detriment
    	// of completing higher-level actions. The order of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top