Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 210 for fc_test (0.17 sec)

  1. pkg/volume/fc/fc_test.go

    	utiltesting "k8s.io/client-go/util/testing"
    	"k8s.io/kubernetes/pkg/volume"
    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    )
    
    func TestCanSupport(t *testing.T) {
    	tmpDir, err := utiltesting.MkTmpdir("fc_test")
    	if err != nil {
    		t.Fatalf("error creating temp dir: %v", err)
    	}
    	defer os.RemoveAll(tmpDir)
    
    	plugMgr := volume.VolumePluginMgr{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  2. src/io/fs/fs_test.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fs_test
    
    import (
    	. "io/fs"
    	"testing"
    )
    
    var isValidPathTests = []struct {
    	name string
    	ok   bool
    }{
    	{".", true},
    	{"x", true},
    	{"x/y", true},
    
    	{"", false},
    	{"..", false},
    	{"/", false},
    	{"x/", false},
    	{"/x", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 11 01:10:28 UTC 2021
    - 847 bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	{"%☠", make(chan int), "%!☠(chan int=0xPTR)"},
    	{"%☠", func() {}, "%!☠(func()=0xPTR)"},
    	{"%☠", reflect.ValueOf(renamedInt(0)), "%!☠(fmt_test.renamedInt=0)"},
    	{"%☠", SI{renamedInt(0)}, "{%!☠(fmt_test.renamedInt=0)}"},
    	{"%☠", &[]any{I(1), G(2)}, "&[%!☠(fmt_test.I=1) %!☠(fmt_test.G=2)]"},
    	{"%☠", SI{&[]any{I(1), G(2)}}, "{%!☠(*[]interface {}=&[1 2])}"},
    	{"%☠", reflect.Value{}, "<invalid reflect.Value>"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. src/net/http/fs_test.go

    	// ServeFile, test it:
    	test(Dir("/etc/hosts"), "")
    	test(Dir("/etc/hosts"), "/")
    	test(Dir("/etc/hosts"), "../")
    }
    
    func TestEmptyDirOpenCWD(t *testing.T) {
    	test := func(d Dir) {
    		name := "fs_test.go"
    		f, err := d.Open(name)
    		if err != nil {
    			t.Fatalf("open of %s: %v", name, err)
    		}
    		defer f.Close()
    	}
    	test(Dir(""))
    	test(Dir("."))
    	test(Dir("./"))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. src/internal/trace/gc_test.go

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/go/build/testdata/directives/c_test.go

    //go:xtest1
    
    package p_test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 42 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/fp_test.go

    Russ Cox <******@****.***> 1643591623 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  8. src/strconv/fp_test.go

    Russ Cox <******@****.***> 1632321992 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/field/fe_test.go

    Bryan C. Mills <******@****.***> 1692902414 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. src/runtime/gc_test.go

    Keith Randall <******@****.***> 1717538095 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top