Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Armode (0.19 sec)

  1. pkg/apis/core/v1/defaults_test.go

    			svc := obj.(*v1.Service)
    			for i, s := range svc.Status.LoadBalancer.Ingress {
    				got := s.IPMode
    				expected := tc.expectedIPMode[i]
    				if !reflect.DeepEqual(got, expected) {
    					t.Errorf("Expected IPMode %v, got %v", tc.expectedIPMode[i], s.IPMode)
    				}
    			}
    		})
    	}
    }
    
    func TestSetDefaultSecretVolumeSource(t *testing.T) {
    	s := v1.PodSpec{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix_test.go

    		defer cancel()
    		_, h, err := r.exchange(ctx, tt.server, tt.question, time.Second, useUDPOrTCP, false)
    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		if h.RCode != tt.rcode {
    			t.Errorf("got %v from %v; want %v", h.RCode, tt.server, tt.rcode)
    			continue
    		}
    	}
    }
    
    func TestDNSTransportNoFallbackOnTCP(t *testing.T) {
    	fake := fakeDNSServer{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	return printUint16(uint16(o))
    }
    
    // An RCode is a DNS response status code.
    type RCode uint16
    
    // Header.RCode values.
    const (
    	RCodeSuccess        RCode = 0 // NoError
    	RCodeFormatError    RCode = 1 // FormErr
    	RCodeServerFailure  RCode = 2 // ServFail
    	RCodeNameError      RCode = 3 // NXDomain
    	RCodeNotImplemented RCode = 4 // NotImp
    	RCodeRefused        RCode = 5 // Refused
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    		return
    	}
    
    	// In gcstoptheworld debug mode, upgrade the mode accordingly.
    	// We do this after re-checking the transition condition so
    	// that multiple goroutines that detect the heap trigger don't
    	// start multiple STW GCs.
    	mode := gcBackgroundMode
    	if debug.gcstoptheworld == 1 {
    		mode = gcForceMode
    	} else if debug.gcstoptheworld == 2 {
    		mode = gcForceBlockMode
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    				v1.ReadOnlyMany,
    			},
    			VolumeMode: &mode,
    			ClaimRef:   &v1.ObjectReference{Namespace: "ns", Name: "pvc-volume-name"},
    		},
    	}
    
    	gcepvc := &v1.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{UID: "pvc-001", Name: "pvc-volume-name", Namespace: "ns"},
    		Spec: v1.PersistentVolumeClaimSpec{
    			VolumeName: "volume-name",
    			VolumeMode: &mode,
    		},
    		Status: v1.PersistentVolumeClaimStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - The nftables kube-proxy mode now has its own metrics rather than reporting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top