Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 410 for rebind (0.19 sec)

  1. tensorflow/c/experimental/saved_model/public/BUILD

    # See RFC https://github.com/tensorflow/community/pull/207
    # All headers are on the public surface of Tensorflow's C API.
    # Once moved out of experimental, these will be stable.
    # The idea behind a separate public/ directory is to make apparent
    # which headers are part of TF's public interface (and which headers)
    # are implementation details. This structure allows us to also perform future
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. docs/metrics/README.md

    ## Prometheus Probe
    
    MinIO allows reading metrics for the entire cluster from any single node. This allows for metrics collection for a MinIO instance across all servers. Thus, metrics collection for instances behind a load balancer can be done without any knowledge of the individual node addresses. The cluster wide metrics can be read at
    `<Address for MinIO Service>/minio/v2/metrics/cluster`.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ContinuousBuildFileWatchingIntegrationTest.groovy

        def setup() {
            executer.requireIsolatedDaemons()
        }
    
        def "file system watching picks up changes causing a continuous build to rebuild"() {
            given:
            // Do not drop the VFS in the first build, since there is only one continuous build invocation.
            // FileSystemWatchingFixture automatically sets the argument for the first build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmLanguageSourceDirectoryBuilder.java

        /**
         * Assumes that this source set will contain Java sources and therefore creates a Java
         * compile task which configuration can be refined using the provided action configuration.
         * Implicitly calls {@link #includeInAllJava()}
         * @param compilerConfiguration the configuration of the compile task
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:44:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelBinding.java

        public String toString() {
            return "ModelBinding{predicate=" + predicate + ", node=" + boundTo + '}';
        }
    
        public abstract boolean canBindInState(ModelNode.State state);
    
        public final void onBind(ModelNodeInternal node) {
            if (boundTo != null) {
                ModelRuleDescriptor creatorDescriptor = node.getDescriptor();
                ModelPath path = node.getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/build_defs.bzl

            # copybara:uncomment(OSS version passes this to py_library) lib_rule = py_strict_library,
            deps = [
                ":gen_%s" % name,
            ],
        )
    
        # Link the register op and rebuild the binary
        gen_tfr_lib_exec = gen_op_lib_exec + "_with_op_library"
        py_strict_binary(
            name = gen_tfr_lib_exec,
            main = src,
            srcs = [src],
            python_version = "PY3",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentRegistry.java

         */
        enum ChangeBehavior {
            /**
             * When changes are detected, wait for a deployment request before rebuilding.
             *
             * The deployment needs to call {@link Deployment#status()} to trigger a rebuild wait for changes.
             */
            BLOCK_AND_REBUILD,
    
            /**
             * When changes are detected, block the deployment until all changes are incorporated.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 06:23:31 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  8. build/build-image/Dockerfile

    ARG KUBE_CROSS_IMAGE
    ARG KUBE_CROSS_VERSION
    
    FROM ${KUBE_CROSS_IMAGE}:${KUBE_CROSS_VERSION}
    
    # Mark this as a kube-build container
    RUN touch /kube-build-image
    
    # To run as non-root we sometimes need to rebuild go stdlib packages.
    RUN chmod -R a+rwx /usr/local/go/pkg
    
    # For running integration tests /var/run/kubernetes is required
    # and should be writable by user
    RUN mkdir /var/run/kubernetes && chmod a+rwx /var/run/kubernetes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 23:26:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. lib/time/update.bash

    cd zoneinfo
    ../mkzip ../../zoneinfo.zip
    cd ../..
    
    files="update.bash zoneinfo.zip"
    modified=true
    if git diff --quiet $files; then
    	modified=false
    fi
    
    if [ "$1" = "-work" ]; then
    	echo Left workspace behind in work/.
    	shift
    else
    	rm -rf work
    fi
    
    if ! $modified; then
    	echo No updates needed.
    	exit 0
    fi
    
    echo Updated for $CODE/$DATA: $files
    
    commitmsg="lib/time: update to $CODE/$DATA
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/goaway.go

    // according to the given chance for HTTP2 requests. After client receive GOAWAY,
    // the in-flight long-running requests will not be influenced, and the new requests
    // will use a new TCP connection to re-balancing to another server behind the load balance.
    func WithProbabilisticGoaway(inner http.Handler, chance float64) http.Handler {
    	return &goaway{
    		handler: inner,
    		decider: &probabilisticGoawayDecider{
    			chance: chance,
    			next: func() float64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 28 20:27:28 UTC 2020
    - 2.4K bytes
    - Viewed (0)
Back to top