Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 166 for seni (0.05 sec)

  1. src/syscall/zerrors_linux_ppc64le.go

    	64:  "machine is not on the network",
    	65:  "package not installed",
    	66:  "object is remote",
    	67:  "link has been severed",
    	68:  "advertise error",
    	69:  "srmount error",
    	70:  "communication error on send",
    	71:  "protocol error",
    	72:  "multihop attempted",
    	73:  "RFS specific error",
    	74:  "bad message",
    	75:  "value too large for defined data type",
    	76:  "name not unique on network",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.addService(t, "svc1",
    		map[string]string{},
    		map[string]string{},
    		[]int32{80}, map[string]string{"app": "a"}, "10.0.0.1")
    	s.assertAddresses(t, s.addrXdsName("10.0.0.1"), "pod1", "pod2", "pod3", "svc1")
    	// Send update for the workloads as well...
    	s.assertEvent(t, s.podXdsName("pod1"),
    		s.podXdsName("pod2"),
    		s.podXdsName("pod3"),
    		s.svcXdsName("svc1"),
    	)
    	// Make sure Service sees waypoints as well
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  3. src/crypto/des/des_test.go

    		}
    	}
    }
    
    // Use the known semi-weak key pairs to test DES implementation
    func TestSemiWeakKeyPairs(t *testing.T) {
    	for i, tt := range semiWeakKeyTests {
    		var encrypt = func(key, in []byte) (out []byte) {
    			c := newCipher(key)
    			out = make([]byte, len(in))
    			c.Encrypt(out, in)
    			return
    		}
    
    		// Encrypting with one member of the semi-weak pair
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    		if volerr.IsDeletedVolumeInUse(err) {
    			// The plugin needs more time, don't mark the volume as Failed
    			// and send Normal event only
    			ctrl.eventRecorder.Event(volume, v1.EventTypeNormal, events.VolumeDelete, err.Error())
    		} else {
    			// The plugin failed, mark the volume as Failed and send Warning
    			// event
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. src/syscall/zerrors_linux_loong64.go

    	64:  "machine is not on the network",
    	65:  "package not installed",
    	66:  "object is remote",
    	67:  "link has been severed",
    	68:  "advertise error",
    	69:  "srmount error",
    	70:  "communication error on send",
    	71:  "protocol error",
    	72:  "multihop attempted",
    	73:  "RFS specific error",
    	74:  "bad message",
    	75:  "value too large for defined data type",
    	76:  "name not unique on network",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers.go

    func (p *podWorkers) ShouldPodRuntimeBeRemoved(uid types.UID) bool {
    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    	if status, ok := p.podSyncStatuses[uid]; ok {
    		return status.IsTerminated()
    	}
    	// a pod that hasn't been sent to the pod worker yet should have no runtime components once we have
    	// synced all content.
    	return p.podsSynced
    }
    
    func (p *podWorkers) ShouldPodContentBeRemoved(uid types.UID) bool {
    	p.podLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    	}
    	if !slices.Equal(a.applicationProtocols, b.applicationProtocols) {
    		return false
    	}
    	// SNI order does not matter, and we ignore * entries
    	sniSet := func(sni []string) sets.String {
    		if len(sni) == 0 {
    			return nil
    		}
    		res := sets.NewWithLength[string](len(sni))
    		for _, s := range sni {
    			if s == "*" {
    				continue
    			}
    			res.Insert(s)
    		}
    		return res
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    	// that match less (or, eventually, none) preferences.
    	// For instance, with `[NETWORK, REGION, ZONE]`, we will send to:
    	// 1. Endpoints matching `[NETWORK, REGION, ZONE]`
    	// 2. Endpoints matching `[NETWORK, REGION]`
    	// 3. Endpoints matching `[NETWORK]`
    	// 4. Any endpoints
    	LoadBalancing_FAILOVER LoadBalancing_Mode = 2
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_test.go

    	runServerTestTLS13(t, test)
    }
    
    // TestHandshakeServerSNI involves a client sending an SNI extension of
    // "snitest.com", which happens to match the CN of testSNICertificate. The test
    // verifies that the server correctly selects that certificate.
    func TestHandshakeServerSNI(t *testing.T) {
    	test := &serverTest{
    		name:    "SNI",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    // need a sample HTTP request to be sent as argument so that the relevant handler is called, the handler registration is expected
    // to be done since its called from within the API handler tests, the reference to the registered HTTP handler has to be sent
    // as an argument.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top