Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for isInitialized (0.23 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// generatedFromIndex is the lookup name for the index function
    	// which indexes by other resource which generated the parameters object.
    	generatedFromIndex = "generated-from-index"
    )
    
    // The state is initialized in PreFilter phase. Because we save the pointer in
    // framework.CycleState, in the later phases we don't need to call Write method
    // to update the value
    type stateData struct {
    	// preScored is true if PreScore was invoked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // translation units and the environments have dependencies among them
    // (remember that the compiler doesn't guarantee the order in which
    // global variables from different translation units are initialized).
    inline Environment* AddGlobalTestEnvironment(Environment* env) {
      return UnitTest::GetInstance()->AddEnvironment(env);
    }
    
    // Initializes Google Test.  This must be called before calling
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Currently, features created while calling `link:{javadocPath}/org/gradle/api/plugins/FeatureSpec.html#usingSourceSet-org.gradle.api.tasks.SourceSet-[usingSourceSet]` with the `main` source set are initialized differently than features created while calling `usingSourceSet` with any other source set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    // call gzip.NewReader on the first call to Read
    type gzipReader struct {
    	_    incomparable
    	body *bodyEOFSignal // underlying HTTP/1 response body framing
    	zr   *gzip.Reader   // lazily-initialized gzip reader
    	zerr error          // any error from gzip.NewReader; sticky
    }
    
    func (gz *gzipReader) Read(p []byte) (n int, err error) {
    	if gz.zr == nil {
    		if gz.zerr == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top