Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 881 for Frozen (0.12 sec)

  1. src/internal/coverage/stringtab/stringtab.go

    // a new entry if need be, and returning an index into the table.
    func (stw *Writer) Lookup(s string) uint32 {
    	if idx, ok := stw.stab[s]; ok {
    		return idx
    	}
    	if stw.frozen {
    		panic("internal error: string table previously frozen")
    	}
    	idx := uint32(len(stw.strs))
    	stw.stab[s] = idx
    	stw.strs = append(stw.strs, s)
    	return idx
    }
    
    // Size computes the memory in bytes needed for the serialized
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. src/log/syslog/doc.go

    // and write again.
    //
    // The syslog package is frozen and is not accepting new features.
    // Some external packages provide more functionality. See:
    //
    //	https://godoc.org/?q=syslog
    package syslog
    
    // BUG(brainman): This package is not implemented on Windows. As the
    // syslog package is frozen, Windows users are encouraged to
    // use a package outside of the standard library. For background,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 935 bytes
    - Viewed (0)
  3. tensorflow/cc/tools/freeze_saved_model_test.cc

      }
    
      void TestFreezeGraphWithoutDependentVariables(bool use_resource) {
        // Test freezing a graph with variables that are not needed by the outputs
        // in the SignatureDef. The resulting graph shouldn't be frozen, but
        // non-dependent nodes should be pruned.
        SavedModelBundle saved_model_bundle;
        GraphDef graph_def;
        Scope scope = Scope::NewRootScope();
        Output a = ops::Const(scope.WithOpName("a"), 10.0f, {});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  4. tensorflow/cc/tools/freeze_saved_model.h

    #include <unordered_set>
    
    #include "tensorflow/cc/saved_model/loader.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    
    // Returns a frozen GraphDef, input tensors, and output tensors from the loaded
    // SavedModelBundle.
    // `inputs` and `outputs` consist of the union of all inputs and outputs in the
    // SignatureDefs in the SavedModelBundle.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/whitelist.go

    // unkeyedLiteral is a white list of types in the standard packages
    // that are used with unkeyed literals we deem to be acceptable.
    var unkeyedLiteral = map[string]bool{
    	// These image and image/color struct types are frozen. We will never add fields to them.
    	"image/color.Alpha16": true,
    	"image/color.Alpha":   true,
    	"image/color.CMYK":    true,
    	"image/color.Gray16":  true,
    	"image/color.Gray":    true,
    	"image/color.NRGBA64": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 00:08:36 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. api/README

    Files in this directory are data for Go's API checker ("go tool api", in src/cmd/api).
    
    Each file is a list of API features, one per line.
    
    go1.txt (and similarly named files) are frozen once a version has been
    shipped. Each file adds new lines but does not remove any.
    
    except.txt lists features that may disappear without breaking true
    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/FreezableAttributeContainer.java

    import org.gradle.api.attributes.AttributeContainer;
    import org.gradle.api.provider.Provider;
    
    import javax.annotation.Nullable;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * An attribute container which can be frozen in order to avoid subsequent mutations.
     */
    public class FreezableAttributeContainer implements AttributeContainerInternal {
    
        private final Describable owner;
    
        private AttributeContainerInternal delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/os/stat_solaris.go

    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"internal/filepathlite"
    	"syscall"
    	"time"
    )
    
    // These constants aren't in the syscall package, which is frozen.
    // Values taken from golang.org/x/sys/unix.
    const (
    	_S_IFNAM  = 0x5000
    	_S_IFDOOR = 0xd000
    	_S_IFPORT = 0xe000
    )
    
    func fillFileStatFromSys(fs *fileStat, name string) {
    	fs.name = filepathlite.Base(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/unfreeze_constants.cc

    // `checkpoint_dir`. `checkpoint_dir` will be created within this function. It
    // will return a non-OK status if it already exists or permission is denied.
    // TODO(b/261652258): Make sure this works for when there are non-frozen
    // variables in the model.
    absl::Status UnfreezeConstantsAndSaveVariables(
        const absl::string_view checkpoint_dir, mlir::MLIRContext &ctx,
        mlir::ModuleOp module_op) {
      TF_RETURN_IF_ERROR(RunPasses(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 11:07:03 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/annotations/Beta.java

     * compatibility guarantees made by its containing library. Note that the presence of this
     * annotation implies nothing about the quality or performance of the API in question, only the fact
     * that it is not "API-frozen."
     *
     * <p>It is generally safe for <i>applications</i> to depend on beta APIs, at the cost of some extra
     * work during upgrades. However it is generally inadvisable for <i>libraries</i> (which get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top