Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BTrue (0.69 sec)

  1. src/encoding/xml/read_test.go

    	UI64   uint64
    	F32    float32
    	F32Neg float32
    	F64    float64
    	F64Neg float64
    }
    
    const whitespaceValuesXML = `
    <WhitespaceValuesParent>
        <BFalse>   false   </BFalse>
        <BTrue>   true   </BTrue>
        <I>   266703   </I>
        <INeg>   -266703   </INeg>
        <I8>  112  </I8>
        <I8Neg>  -112  </I8Neg>
        <I16>  6703  </I16>
        <I16Neg>  -6703  </I16Neg>
        <I32>  266703  </I32>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_linux_test.go

    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    )
    
    func TestMakeMounts(t *testing.T) {
    	bTrue := true
    	propagationHostToContainer := v1.MountPropagationHostToContainer
    	propagationBidirectional := v1.MountPropagationBidirectional
    	propagationNone := v1.MountPropagationNone
    
    	testCases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher_test.go

    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    const (
    	testWatchTimeout     = 10 * time.Second
    	testWatchFailTimeout = 2 * time.Second
    )
    
    var (
    	bFalse = false
    	bTrue  = true
    )
    
    func makeTestAttachment(attachID, nodeName, pvName string) *storage.VolumeAttachment {
    	return &storage.VolumeAttachment{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: attachID,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    				b.Kind = ssa.BlockIf
    				b.SetControl(v)
    				bTrue := s.f.NewBlock(ssa.BlockPlain)
    				bFalse := s.f.NewBlock(ssa.BlockPlain)
    				bEnd := s.f.NewBlock(ssa.BlockPlain)
    				b.AddEdgeTo(bTrue)
    				b.AddEdgeTo(bFalse)
    				b.Likely = ssa.BranchLikely
    
    				// We have atomic instructions - use it directly.
    				s.startBlock(bTrue)
    				emit(s, n, args, op1, typ)
    				s.endBlock().AddEdgeTo(bEnd)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation_test.go

    			t.Errorf("test %v failed, expected error", name)
    		}
    	}
    }
    
    func TestValidateMountPropagation(t *testing.T) {
    	bTrue := true
    	bFalse := false
    	privilegedContainer := &core.Container{
    		SecurityContext: &core.SecurityContext{
    			Privileged: &bTrue,
    		},
    	}
    	nonPrivilegedContainer := &core.Container{
    		SecurityContext: &core.SecurityContext{
    			Privileged: &bFalse,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top