Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,936 for opus (0.06 sec)

  1. src/image/gif/writer.go

    	b := m.Bounds()
    	if b.Dx() >= 1<<16 || b.Dy() >= 1<<16 {
    		return errors.New("gif: image is too large to encode")
    	}
    
    	opts := Options{}
    	if o != nil {
    		opts = *o
    	}
    	if opts.NumColors < 1 || 256 < opts.NumColors {
    		opts.NumColors = 256
    	}
    	if opts.Drawer == nil {
    		opts.Drawer = draw.FloydSteinberg
    	}
    
    	pm, _ := m.(*image.Paletted)
    	if pm == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. pkg/volume/emptydir/empty_dir_linux.go

    	// Get page size from the 'pagesize' option value
    	for _, opt := range mountPoint.Opts {
    		opt = strings.TrimSpace(opt)
    		prefix := "pagesize="
    		if strings.HasPrefix(opt, prefix) {
    			// NOTE: Adding suffix 'i' as result should be comparable with a medium size.
    			// pagesize mount option is specified without a suffix,
    			// e.g. pagesize=2M or pagesize=1024M for x86 CPUs
    			trimmedOpt := strings.TrimPrefix(opt, prefix)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    }
    
    Node* Unary(ops::NodeOut a, const GraphDefBuilder::Options& opts) {
      return ops::UnaryOp("UnaryTest", std::move(a), opts);
    }
    
    Node* Binary(ops::NodeOut a, ops::NodeOut b,
                 const GraphDefBuilder::Options& opts) {
      return ops::BinaryOp("BinaryTest", std::move(a), std::move(b), opts);
    }
    
    Node* BinaryUnknownShape(ops::NodeOut a, ops::NodeOut b,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/fake.go

    	}
    
    	domainSuffix := defaultFakeDomainSuffix
    	if opts.DomainSuffix != "" {
    		domainSuffix = opts.DomainSuffix
    	}
    	if opts.Client == nil {
    		opts.Client = kubelib.NewFakeClient()
    	}
    	if opts.MeshWatcher == nil {
    		opts.MeshWatcher = mesh.NewFixedWatcher(&meshconfig.MeshConfig{TrustDomain: "cluster.local"})
    	}
    	cleanupStop := false
    	stop := opts.Stop
    	if stop == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    // by number of free CPUs that their cores contain. Finally, for each core, the CPUs in it are
    // sorted by numerical ID. The order is always ascending. In other words, the relative order of two
    // CPUs is determined as follows:
    //  1. If the two CPUs belong to different sockets, the CPU in the socket with the smaller amount of
    //     free CPUs appears first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. cluster/images/etcd/migrate/migrate.go

    	target := &EtcdVersionPair{
    		version:        MustParseEtcdVersion(opts.targetVersion),
    		storageVersion: MustParseEtcdStorageVersion(opts.targetStorage),
    	}
    
    	migrate(
    		opts.name, opts.port, opts.peerListenUrls, opts.peerAdvertiseUrls, opts.clientListenUrls,
    		opts.binDir, opts.dataDir, opts.etcdDataPrefix, opts.ttlKeysDirectory, opts.initialCluster,
    		target, opts.supportedVersions, opts.etcdServerArgs)
    }
    
    func copyBinaries() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

    struct IslandSourcesAndSinks {
      // Sub-ops that need a control dependency going into the island. This includes
      // sub-ops that do not depend on other sub-ops in the island and functional
      // control ops (e.g. if, while, case) with side effects that must not take
      // effect before the previous island is finished executing.
      llvm::SmallPtrSet<Operation*, 4> sources;
    
      // Sub-ops that need a control dependency going out of the island. This
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

    def TF_IfrtRestoreVariableOp : TF_Op<"IfrtRestoreVariableOp", []> {
      let summary = "Restore variable tensors";
      let description = [{
        This Op is similar to a combination of RestoreV2 and AssignVariable Op, but
        this Op's execution is asynchronous.
    
        This Op is specific to TFRT + IFRT runtime and is not a stable interface for
        serialization.
    
        This Op will restore the tensors asynchronously. There are N restored tensors
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. tests/integration/security/reachability_test.go

    									opts := opts.DeepCopy()
    									opts.To = to
    
    									if c.expectSuccess(from, opts) {
    										opts.Check = check.OK()
    
    										// Check HTTP headers to confirm expected use of mTLS in the request.
    										if c.expectMTLS(from, opts) {
    											opts.Check = check.And(opts.Check, check.MTLSForHTTP())
    										} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. cmd/background-newdisks-heal-ops.go

    Anis Eleuch <******@****.***> 1717513952 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top