Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 375 for initiatives (1.41 sec)

  1. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

      let summary = "eager context initialization operation";
      let description = [{
        The "tfd.init_eager_context" operation takes an input chain, creates and
        initializes the TF EagerContext and returns an output chain.
    
        Example:
          %c1 = "tfd.init_eager_context"(%c0): (!tfrt.chain) -> !tfrt.chain
      }];
    
      let arguments = (ins TFRT_ChainType);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    		if ready := fn(); !ready {
    			log.Warnf("%s is not ready", name)
    			w.WriteHeader(http.StatusServiceUnavailable)
    			return
    		}
    	}
    	w.WriteHeader(http.StatusOK)
    }
    
    // initServers initializes http and grpc servers
    func (s *Server) initServers(args *PilotArgs) {
    	s.initGrpcServer(args.KeepaliveOptions)
    	multiplexGRPC := false
    	if args.ServerOptions.GRPCAddr != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/universe.go

    	op   ir.Op
    }{
    	{"Add", ir.OUNSAFEADD},
    	{"Slice", ir.OUNSAFESLICE},
    	{"SliceData", ir.OUNSAFESLICEDATA},
    	{"String", ir.OUNSAFESTRING},
    	{"StringData", ir.OUNSAFESTRINGDATA},
    }
    
    // InitUniverse initializes the universe block.
    func InitUniverse() {
    	types.InitTypes(func(sym *types.Sym, typ *types.Type) types.Object {
    		n := ir.NewDeclNameAt(src.NoXPos, ir.OTYPE, sym)
    		n.SetType(typ)
    		n.SetTypecheck(1)
    		sym.Def = n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. pkg/controller/endpointslicemirroring/metrics/cache.go

    // total numbers of desired endpoints and the efficiency of EndpointSlice
    // endpoints distribution.
    type EfficiencyInfo struct {
    	Endpoints int
    	Slices    int
    }
    
    // NewEndpointPortCache initializes and returns a new EndpointPortCache.
    func NewEndpointPortCache() *EndpointPortCache {
    	return &EndpointPortCache{
    		items: map[endpointsliceutil.PortMapKey]EfficiencyInfo{},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

      )
      ```
      """
    
      def __init__(
          self,
          path_map: Mapping[str, os.PathLike[str]],
          expected_input_key_map: Optional[Mapping[str, Collection[str]]] = None,
      ):
        """Initializes TFRecord represenatative dataset saver.
    
        Args:
          path_map: Signature def key -> path mapping. Each path is a TFRecord file
            to which a `RepresentativeDataset` is saved. The signature def keys
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. cmd/tier-sweeper.go

    	TransitionStatus    string
    	TransitionTier      string
    	TransitionVersionID string
    	RemoteObject        string
    }
    
    // newObjSweeper returns an objSweeper for a given bucket and object.
    // It initializes the versioning information using bucket name.
    func newObjSweeper(bucket, object string) *objSweeper {
    	return &objSweeper{
    		Object: object,
    		Bucket: bucket,
    	}
    }
    
    // WithVersion sets the version ID from v
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 05:09:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. pkg/util/filesystem/watcher.go

    package filesystem
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    // FSWatcher is a callback-based filesystem watcher abstraction for fsnotify.
    type FSWatcher interface {
    	// Initializes the watcher with the given watch handlers.
    	// Called before all other methods.
    	Init(FSEventHandler, FSErrorHandler) error
    
    	// Starts listening for events and errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.h

    // Hardware. Example,
    // class MyType : public TargetHardware {
    //  public:
    //   static constexpr char kId[] = "MyHardware";
    // };
    class TargetHardware {
     public:
      virtual ~TargetHardware() = default;
    
      // Initializes all TargetHardwareOperation registered for this hardware.
      // Users overriding this function, should call the base class method to
      // initialize the ops.
      virtual bool Init();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 21:39:59 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/base/goflags.go

    // The list can be assumed to contain one string per flag,
    // with each string either beginning with -name or --name.
    func GOFLAGS() []string {
    	InitGOFLAGS()
    	return goflags
    }
    
    // InitGOFLAGS initializes the goflags list from $GOFLAGS.
    // If goflags is already initialized, it does nothing.
    func InitGOFLAGS() {
    	if goflags != nil { // already initialized
    		return
    	}
    
    	// Ignore bad flag in go env and go bug, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/KotlinDslTestProjectInitiation.groovy

            """)
            return new BuildSpec(
                scripts: [
                    settings: settings,
                    a: a
                ]
            )
        }
    
        /**
         * Initializes a new project with <i>Kotlin-based</i> build scripts.
         */
        BuildSpec withMultipleSubprojects() {
            def settings = withSettings("""
                include("a", "b")
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top