Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,132 for initialize_ (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

      if (!attr) return nullptr;
      return symbol_table.lookup(attr.getValue());
    }
    
    SessionInitializerOp GetSessionInitializerOp(mlir::ModuleOp op) {
      auto initializers = op.getOps<SessionInitializerOp>();
      if (initializers.empty()) return {};
      return *initializers.begin();
    }
    
    class OptimizeSessionInitializerPattern
        : public OpRewritePattern<SessionInitializerOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/Striped64.java

     * so.
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    	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)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

            1 * initializationAction.initialize(exclusiveLock)
            1 * exclusiveLock.close()
    
            then:
            1 * lockManager.lock(lockFile, mode(Shared), "<display-name>") >> sharedLock
            1 * initializationAction.requiresInitialization(sharedLock) >> false
            _ * sharedLock.state
            0 * _._
        }
    
        def "initializes cache on open when lock mode is exclusive"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/staticinit/sched.go

    		return false
    	}
    	orig := rn
    	r := rn.Defn.(*ir.AssignStmt).Y
    	if r == nil {
    		// types2.InitOrder doesn't include default initializers.
    		base.Fatalf("unexpected initializer: %v", rn.Defn)
    	}
    
    	// Variable may have been reassigned by a user-written function call
    	// that was invoked to initialize another global variable (#51913).
    	if s.seenMutation {
    		if base.Debug.StaticCopy != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // Destructuring declarations use their initializer.
                is KtDestructuringDeclaration ->
                    parent.initializer == child
    
                // Backing field declarations use their initializer.
                is KtBackingField ->
                    parent.initializer == child
    
                // Property accessors can use their bodies if not blocks.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitializer.java

    import java.util.Set;
    
    /**
     * Initializes a Gradle build, either by converting an existing build to Gradle or generating a new Gradle build.
     *
     * <p>This interface currently includes a bunch of methods that are related to build generation and should move to {@link BuildGenerator}.</p>
     */
    public interface BuildInitializer {
        /**
         * Unique and user-friendly ID for the type of the initialized build like 'java-application' or 'kotlin-library'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. pkg/proxy/util/nfacct/handler.go

    // for communication with the NFAcct subsystem.
    type netlinkHandler struct {
    	socket *nl.NetlinkSocket
    }
    
    // newNetlinkHandler initializes a netlink socket in the current network namespace and returns
    // an instance of netlinkHandler with the initialized socket.
    func newNetlinkHandler() (handler, error) {
    	socket, err := nl.GetNetlinkSocketAt(netns.None(), netns.None(), unix.NETLINK_NETFILTER)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. internal/logger/target/kafka/kafka.go

    	}
    
    	sconfig.Net.KeepAlive = 60 * time.Second
    	sconfig.Net.SASL.User = h.kconfig.SASL.User
    	sconfig.Net.SASL.Password = h.kconfig.SASL.Password
    	initScramClient(h.kconfig, sconfig) // initializes configured scram client.
    	sconfig.Net.SASL.Enable = h.kconfig.SASL.Enable
    
    	tlsConfig, err := saramatls.NewConfig(h.kconfig.TLS.ClientTLSCert, h.kconfig.TLS.ClientTLSKey)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/PersistentCache.java

     *
     * <p>You can use {@link CacheBuilder#withInitializer(java.util.function.Consumer)} to provide an action to initialize the contents
     * of the cache, for building a read-only cache. An exclusive lock is held by this process while the initializer is running.</p>
     *
     * <p>You can also use {@link #useCache(java.util.function.Supplier)} to perform some action on the cache while holding an exclusive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top