Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 687 for isInitialized (0.35 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/issue44956/main.go

    // initialize base.stmp.
    //
    // plugin2 is then loaded. base.init already ran, so it doesn't run
    // again. When base.stmp is not exported, plugin2's base.X points to
    // its own private base.stmp, which is not initialized, fail.
    
    package main
    
    import "plugin"
    
    func main() {
    	_, err := plugin.Open("issue44956p1.so")
    	if err != nil {
    		panic("FAIL")
    	}
    
    	p2, err := plugin.Open("issue44956p2.so")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/admission/initializer_test.go

    	wantsCloudConfigAdmission := &WantsCloudConfigAdmissionPlugin{}
    	initializer.Initialize(wantsCloudConfigAdmission)
    
    	if wantsCloudConfigAdmission.cloudConfig == nil {
    		t.Errorf("Expected cloud config to be initialized but found nil")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/op_or_arg_name_mapper.h

    };
    
    // OpOrArgNameMapper that returns, for operations or values not initialized
    // to a specific name, a name based on the location of the operation or
    // value.
    class OpOrArgLocNameMapper : public OpOrArgNameMapper {
     protected:
      std::string GetName(OpOrVal op_or_val) override;
    };
    
    // OpOrArgNameMapper that returns, for operations or values not initialized
    // to a specific name, a short name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MultimapBuilder.java

      public static MultimapBuilderWithKeys<@Nullable Object> hashKeys() {
        return hashKeys(DEFAULT_EXPECTED_KEYS);
      }
    
      /**
       * Uses a hash table to map keys to value collections, initialized to expect the specified number
       * of keys.
       *
       * @throws IllegalArgumentException if {@code expectedKeys < 0}
       */
      public static MultimapBuilderWithKeys<@Nullable Object> hashKeys(int expectedKeys) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MultimapBuilder.java

      public static MultimapBuilderWithKeys<@Nullable Object> hashKeys() {
        return hashKeys(DEFAULT_EXPECTED_KEYS);
      }
    
      /**
       * Uses a hash table to map keys to value collections, initialized to expect the specified number
       * of keys.
       *
       * @throws IllegalArgumentException if {@code expectedKeys < 0}
       */
      public static MultimapBuilderWithKeys<@Nullable Object> hashKeys(int expectedKeys) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. cmd/sts-errors.go

    	},
    	ErrSTSNotInitialized: {
    		Code:           "STSNotInitialized",
    		Description:    "STS API not initialized, please try again.",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrSTSIAMNotInitialized: {
    		Code:           "STSIAMNotInitialized",
    		Description:    "STS IAM not initialized, please try again.",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrSTSUpstreamError: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/math/big/doc.go

    Alternatively, new values can be allocated and initialized with factory
    functions of the form:
    
    	func NewT(v V) *T
    
    For instance, [NewInt](x) returns an *[Int] set to the value of the int64
    argument x, [NewRat](a, b) returns a *[Rat] set to the fraction a/b where
    a and b are int64 values, and [NewFloat](f) returns a *[Float] initialized
    to the float64 argument f. More flexibility is provided with explicit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    	// and initializableConn#InitializeWrite() has been called with the result.
    	initializableConn
    
    	lock          sync.Mutex
    	headerBuffer  []byte
    	initialized   bool
    	initializeErr error
    }
    
    // initializableConn is a connection that will be initialized before any calls to Write are made
    type initializableConn interface {
    	net.Conn
    	// InitializeWrite is called when the backend response headers have been read.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenComponentMetadataRulesChangingModulesIntegrationTest.groovy

    """
    repositories {
        maven {
            url "$repo.uri"
        }
    }
    """
        }
    
        def setup() {
            moduleA.rootMetaData.allowGetOrHead()
        }
    
        def "snapshot dependencies have changing flag initialized to true"() {
            def moduleB = repo.module("org.test", "moduleB", "1.0-SNAPSHOT").publish()
            moduleB.allowAll()
    
            buildFile <<
    """
    $repoDeclaration
    configurations {
        modules
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testcshared/testdata/main2.c

    // Read a string from the file descriptor and print it.
    int main(void) {
      int i;
      ssize_t n;
      char buf[20];
      struct timespec ts;
    
      // The descriptor will be initialized in a thread, so we have to
      // give a chance to get opened.
      for (i = 0; i < 200; i++) {
        n = read(fd, buf, sizeof buf);
        if (n >= 0)
          break;
        if (errno != EBADF && errno != EINVAL) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top