Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for startCheck (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    		clock,
    	}
    }
    
    type delayedLivezCheck struct {
    	check      healthz.HealthChecker
    	startCheck time.Time
    	clock      clock.Clock
    }
    
    func (c delayedLivezCheck) Name() string {
    	return c.check.Name()
    }
    
    func (c delayedLivezCheck) Check(req *http.Request) error {
    	if c.clock.Now().After(c.startCheck) {
    		return c.check.Check(req)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    }
    
    func (b *Builder) startCheck(s section) error {
    	if b.section <= sectionNotStarted {
    		return ErrNotStarted
    	}
    	if b.section > s {
    		return ErrSectionDone
    	}
    	return nil
    }
    
    // StartQuestions prepares the builder for packing Questions.
    func (b *Builder) StartQuestions() error {
    	if err := b.startCheck(sectionQuestions); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. src/os/stat_test.go

    func testDirStats(t *testing.T, path string) {
    	params := testStatAndLstatParams{
    		isLink:     false,
    		statCheck:  testIsDir,
    		lstatCheck: testIsDir,
    	}
    	testStatAndLstat(t, path, params)
    }
    
    func testFileStats(t *testing.T, path string) {
    	params := testStatAndLstatParams{
    		isLink:     false,
    		statCheck:  testIsFile,
    		lstatCheck: testIsFile,
    	}
    	testStatAndLstat(t, path, params)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top