Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 881 for Frozen (0.14 sec)

  1. futures/listenablefuture1/src/com/google/common/util/concurrent/ListenableFuture.java

     * com.google.guava:listenablefuture:1.0 artifact. (For more on that artifact, see
     * https://github.com/google/guava/releases/tag/v27.0) This means that the copy of ListenableFuture
     * in com.google.guava:guava differs from the "frozen" copy in the listenablefuture artifact. This
     * could in principle cause problems for some users. Still, we expect that the benefits of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ListenableFuture.java

     * com.google.guava:listenablefuture:1.0 artifact. (For more on that artifact, see
     * https://github.com/google/guava/releases/tag/v27.0) This means that the copy of ListenableFuture
     * in com.google.guava:guava differs from the "frozen" copy in the listenablefuture artifact. This
     * could in principle cause problems for some users. Still, we expect that the benefits of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

     * com.google.guava:listenablefuture:1.0 artifact. (For more on that artifact, see
     * https://github.com/google/guava/releases/tag/v27.0) This means that the copy of ListenableFuture
     * in com.google.guava:guava differs from the "frozen" copy in the listenablefuture artifact. This
     * could in principle cause problems for some users. Still, we expect that the benefits of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. tensorflow/cc/tools/freeze_saved_model.cc

          StatusOr<string> handle_name = GetHandleNameIfNeedsToFreeze(
              name_to_node_map, node.name(), variable_node_names);
          if (handle_name.ok()) {
            // Identity node that is forwarding the value of a frozen
            // VarhandleOp. We ensure that the dtype matches of the variable dtype.
            NodeDef* new_node = frozen_graph_def->add_node();
            *new_node = node;
            (*new_node->mutable_attr())["T"] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. src/testing/quick/quick.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package quick implements utility functions to help with black box testing.
    //
    // The testing/quick package is frozen and is not accepting new features.
    package quick
    
    import (
    	"flag"
    	"fmt"
    	"math"
    	"math/rand"
    	"reflect"
    	"strings"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. src/net/smtp/smtp.go

    // It also implements the following extensions:
    //
    //	8BITMIME  RFC 1652
    //	AUTH      RFC 2554
    //	STARTTLS  RFC 3207
    //
    // Additional extensions may be handled by clients.
    //
    // The smtp package is frozen and is not accepting new features.
    // Some external packages provide more functionality. See:
    //
    //	https://godoc.org/?q=smtp
    package smtp
    
    import (
    	"crypto/tls"
    	"encoding/base64"
    	"errors"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // This decomposes resource ops like ResourceGather into read-variable op
      // followed by gather. This is used when the saved model import path is used
      // during which resources don't get frozen in the python layer.
      pass_manager->addNestedPass<mlir::func::FuncOp>(
          mlir::TFDevice::CreateDecomposeResourceOpsPass());
    
      pass_manager->addPass(mlir::TF::CreateTFRegionControlFlowToFunctional());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. src/text/tabwriter/tabwriter.go

    // translates tabbed columns in input into properly aligned text.
    //
    // The package is using the Elastic Tabstops algorithm described at
    // http://nickgravgaard.com/elastictabstops/index.html.
    //
    // The text/tabwriter package is frozen and is not accepting new features.
    package tabwriter
    
    import (
    	"fmt"
    	"io"
    	"unicode/utf8"
    )
    
    // ----------------------------------------------------------------------------
    // Filter implementation
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. src/net/rpc/server.go

    			// shut down the connection to signal that the connection is broken.
    			log.Println("rpc: gob error encoding response:", err)
    			c.Close()
    		}
    		return
    	}
    	if err = c.enc.Encode(body); err != nil {
    		if c.encBuf.Flush() == nil {
    			// Was a gob problem encoding the body but the header has been written.
    			// Shut down the connection to signal that the connection is broken.
    			log.Println("rpc: gob error encoding body:", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/freeze_variables.mlir

        %1 = "tf.AddV2"(%arg0, %0) : (tensor<0xf32>, tensor<0xf32>) -> tensor<0xf32>
        func.return %1 : tensor<0xf32>
      }
    }
    
    // -----
    
    // Test variable is frozen when it is used inside `TF::BatchFunctionOp` without
    // assignment.
    
    module {
      func.func private @f_batch_callee(%arg0: tensor<?xf32>, %arg1: tensor<*x!tf_type.resource>) -> (tensor<?xf32>, tensor<0xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top