Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 273 for cont (0.13 sec)

  1. pkg/kubelet/cm/container_manager_linux.go

    	hasEnsureStateFuncs := false
    	for _, cont := range cm.systemContainers {
    		if cont.ensureStateFunc != nil {
    			hasEnsureStateFuncs = true
    			break
    		}
    	}
    	if hasEnsureStateFuncs {
    		// Run ensure state functions every minute.
    		go wait.Until(func() {
    			for _, cont := range cm.systemContainers {
    				if cont.ensureStateFunc != nil {
    					if err := cont.ensureStateFunc(cont.manager); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    	loop := body                       // target of back-edge
    	if s.Cond != nil {
    		loop = b.newBlock(KindForLoop, s)
    	}
    	cont := loop // target of 'continue'
    	if s.Post != nil {
    		cont = b.newBlock(KindForPost, s)
    	}
    	if label != nil {
    		label._break = done
    		label._continue = cont
    	}
    	b.jump(loop)
    	b.current = loop
    	if loop != body {
    		b.add(s.Cond)
    		b.ifelse(body, done)
    		b.current = body
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			containerName: "container1",
    			expectedProfile: &runtimeapi.SecurityProfile{
    				ProfileType:  runtimeapi.SecurityProfile_Localhost,
    				LocalhostRef: seccompLocalhostRef("field-cont-profile.json"),
    			},
    		},
    	}
    
    	for i, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/test2json/main.go

    //
    // The Action field is one of a fixed set of action descriptions:
    //
    //	start  - the test binary is about to be executed
    //	run    - the test has started running
    //	pause  - the test has been paused
    //	cont   - the test has continued running
    //	pass   - the test passed
    //	bench  - the benchmark printed log output but did not fail
    //	fail   - the test or benchmark failed
    //	output - the test printed output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		}
    	}
    
    	resourceACountGot, err := store.Count(resourceA)
    	if err != nil {
    		t.Fatalf("store.Count failed: %v", err)
    	}
    
    	// count for resourceA should not include the objects for resourceB
    	// even though resourceA is a prefix of resourceB.
    	if int64(resourceACountExpected) != resourceACountGot {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  6. src/testing/testing.go

    	outputDir = flag.String("test.outputdir", "", "write profiles to `dir`")
    	// Report as tests are run; default is silent for success.
    	flag.Var(&chatty, "test.v", "verbose: print additional output")
    	count = flag.Uint("test.count", 1, "run tests and benchmarks `n` times")
    	coverProfile = flag.String("test.coverprofile", "", "write a coverage profile to `file`")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. .github/workflows/mint/nginx.conf

                          '"$http_user_agent" "$http_x_forwarded_for"';
    
        access_log  /var/log/nginx/access.log  main;
        sendfile        on;
        keepalive_timeout  65;
    
        # include /etc/nginx/conf.d/*.conf;
    
        upstream minio {
            server minio1:9000 max_fails=1 fail_timeout=10s;
            server minio2:9000 max_fails=1 fail_timeout=10s;
            server minio3:9000 max_fails=1 fail_timeout=10s;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/conf/application.conf

    # Furthermore, it's assumed your route file is named properly.
    # So for an application router like `my.application.Router`,
    # you may need to define a router file `conf/my.application.routes`.
    # Default to Routes in the root package (and conf/routes)
    # application.router=my.application.Routes
    
    # Database configuration
    # ~~~~~
    # You can declare as many datasources as you want.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/go/types/const.go

    	if x.Kind() == constant.Unknown {
    		return true // avoid follow-up errors
    	}
    
    	var conf *Config
    	if check != nil {
    		conf = check.conf
    	}
    
    	sizeof := func(T Type) int64 {
    		s := conf.sizeof(T)
    		return s
    	}
    
    	switch {
    	case isInteger(typ):
    		x := constant.ToInt(x)
    		if x.Kind() != constant.Int {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. cmd/sftp-server-driver.go

    	}
    
    	bucket, object := path2BucketObject(r.Filepath)
    	if bucket == "" {
    		return nil, errors.New("bucket name cannot be empty")
    	}
    
    	clnt, err := f.getMinIOClient()
    	if err != nil {
    		return nil, err
    	}
    
    	obj, err := clnt.GetObject(context.Background(), bucket, object, minio.GetObjectOptions{})
    	if err != nil {
    		return nil, err
    	}
    
    	_, err = obj.Stat()
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top