Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,027 for relaxed (0.19 sec)

  1. pkg/filewatcher/filewatcher.go

    package filewatcher
    
    import (
    	"errors"
    	"fmt"
    	"path/filepath"
    	"sync"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    // FileWatcher is an interface that watches a set of files,
    // delivering events to related channel.
    type FileWatcher interface {
    	// Start watching a path. Calling Add multiple times on the same path panics.
    	Add(path string) error
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tpu_model_to_cpu.cc

        // the textual format (on the commandline for example).
        return "quant-convert-tpu-model-to-cpu";
      }
      StringRef getDescription() const final {
        return "Convert TPU models to CPU by rewriting TPU related operations.";
      }
    
      void runOnOperation() override;
    };
    
    class RemoveTpuOp : public RewritePattern {
     public:
      explicit RemoveTpuOp(MLIRContext* context)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/os/pidfd_linux.go

    	case statusReleased:
    		return errors.New("os: process already released")
    	}
    	defer p.handleTransientRelease()
    
    	return convertESRCH(unix.PidFDSendSignal(handle, s))
    }
    
    func pidfdWorks() bool {
    	return checkPidfdOnce() == nil
    }
    
    var checkPidfdOnce = sync.OnceValue(checkPidfd)
    
    // checkPidfd checks whether all required pidfd-related syscalls work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/README.md

        LTS images are stable and usually include latest bug and security fix.
        'image' should be used to specify the image.
    
      * To integrate continuously with other container
        related technologies like runc, containerd, docker and kubernetes, the
        latest LTS or stable images are preferred. 'image_family' should be used to
        specify the image.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    	"github.com/spf13/pflag"
    
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    )
    
    // Initialize the prometheus instrumentation and client related flags.
    var (
    	listenAddress        string
    	metricsPath          string
    	etcdVersionScrapeURI string
    	etcdMetricsScrapeURI string
    	scrapeTimeout        time.Duration
    )
    
    func registerFlags(fs *pflag.FlagSet) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. pilot/pkg/features/tuning.go

    // limitations under the License.
    
    package features
    
    import (
    	"runtime"
    	"time"
    
    	"istio.io/istio/pkg/env"
    )
    
    // Define performance tuning related features here.
    var (
    	MaxConcurrentStreams = env.Register(
    		"ISTIO_GPRC_MAXSTREAMS",
    		100000,
    		"Sets the maximum number of concurrent grpc streams.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (1)
  7. pkg/url/url.go

    	// DocsURL is a base docs URL for istio.io
    	DocsURL = fmt.Sprintf("%s%s%s", BaseURL, DocsVersion, "/docs/")
    
    	// #####################################
    	// Operations related URLs for istio.io
    	// #####################################
    
    	// OpsURL is a base URL for operations related docs
    	OpsURL = fmt.Sprintf("%s%s", DocsURL, "ops/")
    
    	// DeploymentRequirements should generate
    	// https://istio.io/v1.7/docs/ops/deployment/requirements/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 11:12:37 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/check.go

    	for i := top; i < len(check.delayed); i++ {
    		a := &check.delayed[i]
    		if check.conf.Trace {
    			if a.desc != nil {
    				check.trace(a.desc.pos.Pos(), "-- "+a.desc.format, a.desc.args...)
    			} else {
    				check.trace(nopos, "-- delayed %p", a.f)
    			}
    		}
    		a.f() // may append to check.delayed
    		if check.conf.Trace {
    			fmt.Println()
    		}
    	}
    	assert(top <= len(check.delayed)) // stack must not have shrunk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. src/go/types/check.go

    	for i := top; i < len(check.delayed); i++ {
    		a := &check.delayed[i]
    		if check.conf._Trace {
    			if a.desc != nil {
    				check.trace(a.desc.pos.Pos(), "-- "+a.desc.format, a.desc.args...)
    			} else {
    				check.trace(nopos, "-- delayed %p", a.f)
    			}
    		}
    		a.f() // may append to check.delayed
    		if check.conf._Trace {
    			fmt.Println()
    		}
    	}
    	assert(top <= len(check.delayed)) // stack must not have shrunk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. hack/OWNERS

    approvers:
      - bentheelder
      - cblecker
      - dchen1107
      - deads2k
      - dims # for local-up-cluster related files
      - enj # for sig-auth related stuff like cert testdata
      - liggitt
      - mikedanese
      - pohly # for logging and linting
      - pwittrock
      - SataQiu
      - smarterclayton
      - soltysh # for sig-cli related stuff
      - spiffxp
      - sttts
      - thockin
      - wojtek-t
    emeritus_approvers:
      - eparis
      - fejta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 16:43:38 UTC 2023
    - 777 bytes
    - Viewed (0)
Back to top