Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 880 for logical (0.24 sec)

  1. hack/lib/util.sh

    kube::util::array_contains() {
      local search="$1"
      local element
      shift
      for element; do
        if [[ "${element}" == "${search}" ]]; then
          return 0
         fi
      done
      return 1
    }
    
    kube::util::wait_for_url() {
      local url=$1
      local prefix=${2:-}
      local wait=${3:-1}
      local times=${4:-30}
      local maxtime=${5:-1}
    
      command -v curl >/dev/null || {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. cluster/log-dump/log-dump.sh

    # This function shouldn't ever trigger errexit
    function save-logs() {
        local -r node_name="${1}"
        local -r dir="${2}"
        local files=()
        IFS=' ' read -r -a files <<< "$3"
        local opt_systemd_services="${4:-""}"
        local on_master="${5:-"false"}"
    
        local extra=()
        IFS=' ' read -r -a extra <<< "$extra_log_files"
        files+=("${extra[@]}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Gradle supports a `local` and a `remote` build cache that can be configured separately.
    When both build caches are enabled, Gradle tries to load build outputs from the local build cache first, and then tries the remote build cache if no build outputs are found.
    If outputs are found in the remote cache, they are also stored in the local cache, so next time they will be found locally.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

     *
     * Usage: java build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
     */
    public class KillLeakingJavaProcesses {
        enum ExecutionMode {
            /**
             * Run at the beginning of each build. Kill potentially leaked processes in previous builds.
             * Only kill local Gradle processes (classpath in checkout directory).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. hack/update-codegen.sh

        # The result file, in each pkg, of open-api generation.
        local output_file="${GENERATED_FILE_PREFIX}openapi.go"
    
        local output_dir="pkg/generated/openapi"
        local output_pkg="k8s.io/kubernetes/${output_dir}"
        local known_violations_file="${API_KNOWN_VIOLATIONS_DIR}/violation_exceptions.list"
    
        local report_file="${OUT_DIR}/api_violations.report"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. src/path/filepath/path.go

    // For example, Clean("//host/share/../x") returns `\\host\share\x`.
    //
    // See also Rob Pike, “Lexical File Names in Plan 9 or
    // Getting Dot-Dot Right,”
    // https://9p.io/sys/doc/lexnames.html
    func Clean(path string) string {
    	return filepathlite.Clean(path)
    }
    
    // IsLocal reports whether path, using lexical analysis only, has all of these properties:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. cni/README.md

    | HOST_PROBE_SNAT_IP | "169.254.7.127" | Applied to SNAT host probe packets, so they can be identified/skipped podside. Any link-local address in the 169.254.0.0/16 block can be used |
    | HOST_PROBE_SNAT_IPV6 | "fd16:9254:7127:1337:ffff:ffff:ffff:ffff" | IPv6 link local ranges are designed to be collision-resistant by default, and so this probably never needs to be overridden |
    
    ## Sidecar Mode Implementation Details
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/offline-mode.apt

      This one is obvious...we only have access to the repositories using
      the file:// protocol and living on a truly local filesystem when
      offline.
    
    ** Plugin Resolution
    
      This is similar to dependency resolution. Plugin repositories not
      using file:// or not residing on a local (not shared) filesystem will
      be unavailable.
    
    
    * Implications for Mojo Execution
    
    ** Deployment mojos
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway_simulation_test.go

    			name: "basic",
    			config: createGatewayWithServiceSelector("gateway80", "istio-ingressgateway.istio-system.svc.cluster.local", `
    port:
     number: 80
     name: http
     protocol: HTTP
    hosts:
    - "example.com"
    `) + createGatewayWithServiceSelector("gateway81", "istio-ingressgateway.istio-system.svc.cluster.local", `
    port:
     number: 8080
     name: http
     protocol: HTTP
    hosts:
    - "example.com"
    `) + `
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

     * Using the `plugins {}` block
     * Putting local build logic in the build's _buildSrc_ directory
    
    The <<plugins.adoc#sec:plugins_block,`plugins {}` block>> is about keeping your build scripts declarative in order to get the best out of the Kotlin DSL.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top