Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,302 for nack (4.72 sec)

  1. src/cmd/internal/bio/buf_mmap.go

    //go:build unix
    
    package bio
    
    import (
    	"runtime"
    	"sync/atomic"
    	"syscall"
    )
    
    // mmapLimit is the maximum number of mmaped regions to create before
    // falling back to reading into a heap-allocated slice. This exists
    // because some operating systems place a limit on the number of
    // distinct mapped regions per process. As of this writing:
    //
    //	Darwin    unlimited
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/rate_limiters.go

    		interval: interval,
    	}
    }
    
    // When returns the interval of the rate limiter
    func (r *FixedItemIntervalRateLimiter) When(item string) time.Duration {
    	return r.interval
    }
    
    // NumRequeues returns back how many failures the item has had
    func (r *FixedItemIntervalRateLimiter) NumRequeues(item string) int {
    	return 1
    }
    
    // Forget indicates that an item is finished being retried.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run.go

    			}
    		}
    
    		// Avoid infinite loops. Don't redirect Envoy traffic directly back to
    		// Envoy for non-loopback traffic.
    		cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand, constants.ISTIOOUTPUT, constants.NAT,
    			"-m", "owner", "--uid-owner", uid, "-j", constants.RETURN)
    	}
    
    	for _, gid := range split(cfg.cfg.ProxyGID) {
    		// Redirect app calls back to itself via Envoy when using the service VIP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      if (!llvm::hasSingleElement(body))
        return parser.emitError(loc) << "expects a single block region";
    
      // Get the results type from the terminator type inside the graph.
      Operation &fetch = body.back().back();
      if (!isa<FetchOp>(fetch))
        return parser.emitError(loc) << "expects a tf_executor.fetch terminator";
    
      // The return value of the graph operation are the non-control operands of
      // the fetch operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/hack/build-image.sh

    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../../../../..
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    # Register function to be called on EXIT to remove generated binary.
    function cleanup {
      rm "${KUBE_ROOT}/staging/src/k8s.io/apiextensions-apiserver/artifacts/simple-image/apiextensions-apiserver"
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/context.go

    }
    
    var NodeTypes = [...]NodeType{SidecarProxy, Router, Waypoint, Ztunnel}
    
    // SetSidecarScope identifies the sidecar scope object associated with this
    // proxy and updates the proxy Node. This is a convenience hack so that
    // callers can simply call push.Services(node) while the implementation of
    // push.Services can return the set of services from the proxyNode's
    // sidecar scope or from the push context's set of global services. Similar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  7. staging/src/k8s.io/api/testdata/README.md

    ```sh
    go test k8s.io/api -run //HEAD
    ```
    
    All three formats of a given group/version/kind are expected to decode successfully to identical objects,
    and to round-trip back to serialized form with identical bytes.
    Adding new fields or API types *is* expected to modify these fixtures. To regenerate them, run:
    
    ```sh
    UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/api -run //HEAD
    ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/RangeGwtSerializationDependencies.java

    /**
     * A dummy superclass to support GWT serialization of the element type of a {@link Range}. The GWT
     * supersource for this class contains a field of type {@code C}.
     *
     * <p>For details about this hack, see {@code GwtSerializationDependencies}, which takes the same
     * approach but with a subclass rather than a superclass.
     *
     * <p>TODO(cpovirk): Consider applying this subclass approach to our other types.
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. cluster/log-dump/log-dump.sh

        echo "Using 'use_custom_instance_list' with gke, skipping check for LOG_DUMP_SSH_KEY and LOG_DUMP_SSH_USER"
        # Source the below script for the ssh-to-node utility function.
        # Hack to save and restore the value of the ZONE env as the script overwrites it.
        local gke_zone="${ZONE:-}"
        source "${KUBE_ROOT}/cluster/gce/util.sh"
        ZONE="${gke_zone}"
      elif [[ -z "${LOG_DUMP_SSH_KEY:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/README.md

    The `cmd` directory contains helpful tools for debugging traces.
    
    * `gotraceraw` parses traces without validation.
      It can produce a text version of the trace wire format, or convert
      the text format back into bytes.
    * `gotracevalidate` parses traces and validates them.
      It performs more rigorous checks than the parser does on its own,
      which helps for debugging the parser as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top