Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for watchTests (0.36 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    				}
    
    				expectObj := out
    				if watchTest.watchType == watch.Deleted {
    					expectObj = currentObjs[watchTest.obj.Name]
    					expectObj.ResourceVersion = out.ResourceVersion
    					delete(currentObjs, watchTest.obj.Name)
    				} else {
    					currentObjs[watchTest.obj.Name] = out
    				}
    				if watchTest.expectEvent {
    					testCheckResult(t, w, watch.Event{Type: watchTest.watchType, Object: expectObj})
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/WatchTest.java

     *
     */
    @RunWith ( Parameterized.class )
    @SuppressWarnings ( "javadoc" )
    public class WatchTest extends BaseCIFSTest {
    
        private static final Logger log = LoggerFactory.getLogger(WatchTest.class);
    
        private ExecutorService executor;
        private SmbFile base;
        private Future<List<FileNotifyInformation>> future;
    
    
        public WatchTest ( String name, Map<String, String> properties ) {
            super(name, properties);
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  3. src/path/match_test.go

    // license that can be found in the LICENSE file.
    
    package path_test
    
    import (
    	. "path"
    	"testing"
    )
    
    type MatchTest struct {
    	pattern, s string
    	match      bool
    	err        error
    }
    
    var matchTests = []MatchTest{
    	{"abc", "abc", true, nil},
    	{"*", "abc", true, nil},
    	{"*c", "abc", true, nil},
    	{"a*", "a", true, nil},
    	{"a*", "abc", true, nil},
    	{"a*", "ab/c", false, nil},
    	{"a*/b", "abc/b", true, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 14:59:03 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  4. src/path/filepath/match_test.go

    	"os"
    	. "path/filepath"
    	"reflect"
    	"runtime"
    	"slices"
    	"strings"
    	"testing"
    )
    
    type MatchTest struct {
    	pattern, s string
    	match      bool
    	err        error
    }
    
    var matchTests = []MatchTest{
    	{"abc", "abc", true, nil},
    	{"*", "abc", true, nil},
    	{"*c", "abc", true, nil},
    	{"a*", "a", true, nil},
    	{"a*", "abc", true, nil},
    	{"a*", "ab/c", false, nil},
    	{"a*/b", "abc/b", true, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/AllTests.java

        SidTest.class, NamingTest.class, DfsTest.class, FileAttributesTest.class, EnumTest.class, PipeTest.class, FileOperationsTest.class,
        WatchTest.class, ReadWriteTest.class, ConcurrencyTest.class, RandomAccessFileTest.class, OplockTests.class
    } )
    
    public class AllTests {
    
        private static final Logger log = LoggerFactory.getLogger(AllTests.class);
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  6. src/encoding/json/testdata/code.json.gz

    33967,"mean_t":1251233967}],"cl_weight":0.045454545454545456,"touches":1,"min_t":1251233967,"max_t":1251233967,"mean_t":1251233967}],"cl_weight":0.09090909090909091,"touches":1,"min_t":1251233967,"max_t":1251233967,"mean_t":1251233967},{"name":"WATCHLISTS","kids":[],"cl_weight":1.0063291139240507,"touches":2,"min_t":1247249136,"max_t":1248307041,"mean_t":1247778088}],"cl_weight":1081.9999999997342,"touches":1082,"min_t":1224189829,"max_t":1316547546,"mean_t":1261142951}],"cl_weight":0,"touches":...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top