Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for doPing (0.28 sec)

  1. tests/integration/ambient/main_test.go

    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = &EchoDeployments{}
    
    	// used to validate telemetry in-cluster
    	prom prometheus.Instance
    )
    
    type EchoDeployments struct {
    	// Namespace echo apps will be deployed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    // behavior for programs that are unable to apply more targeted fixes.
    // A future version of Go may remove support for this variable.
    //
    // Before adding such overrides, make sure you understand the
    // security implications of doing so.
    // See https://go.dev/blog/path-security for more information.
    package exec
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"internal/godebug"
    	"internal/syscall/execenv"
    	"io"
    	"os"
    	"path/filepath"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        public boolean isRefreshKeys() {
            return refreshKeys;
        }
    
        /**
         * If true, after writing the dependency verification file, a public keyring
         * file will be generated with all keys seen during generation of the file.
         *
         * This file can then be used as a source for public keys instead of reaching
         * out public key servers.
         *
         * @return true if keys should be exported
         * @since 6.2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/productpage.py

            }
        ]
    
    
    def getProduct(product_id):
        products = getProducts()
        if product_id + 1 > len(products):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

    fi
    
    if [[ "${master_upgrade}" == "false" ]] && [[ "${node_upgrade}" == "false" ]]; then
      echo "Can't specify both -M and -N" >&2
      exit 1
    fi
    
    # prompt if etcd storage media type isn't set unless using etcd2 when doing master upgrade
    if [[ -z "${STORAGE_MEDIA_TYPE:-}" ]] && [[ "${STORAGE_BACKEND:-}" != "etcd2" ]] && [[ "${master_upgrade}" == "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

                    // depends on a different version of the root module. In this case, we effectively
                    // allow 2 modules to have the same capability, so we filter the nodes coming
                    // from transitive dependencies
                    ModuleIdentifier rootModuleId = rootId;
                    candidatesForConflict.removeIf(n -> !n.isRoot() && n.getComponent().getId().getModule().equals(rootModuleId));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Fix a race condition in transforming informer happening when objects were accessed during Resync operation ([#124344](https://github.com/kubernetes/kubernetes/pull/124344), [@wojtek-t]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. common/scripts/setup_env.sh

      KUBECONFIG="${container_kubeconfig%?}"
    fi
    
    # LOCAL_OUT should point to architecture where we are currently running versus the desired.
    # This is used when we need to run a build artifact during tests or later as part of another
    # target.
    if [[ "${FOR_BUILD_CONTAINER:-0}" -eq "1" ]]; then
      # Override variables with container specific
      TARGET_OUT=${CONTAINER_TARGET_OUT}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. cni/pkg/cmd/root.go

    		// Whatever user has set (with --log_output_level) for 'cni-plugin', pass it down to the plugin. It will use this to determine
    		// what level to use for itself.
    		// This masks the fact we are doing this weird log-over-UDS to users, and allows them to configure it the same way.
    		PluginLogLevel:        istiolog.LevelToString(istiolog.FindScope(constants.CNIPluginLogScope).GetOutputLevel()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

            when (val readResolve = readResolveMethod.forObject(bean)) {
                null -> bean
                else -> readResolve.invoke(bean)
            }
    
        /**
         * Caches the computed `readObject` method hierarchies during decoding because [ReadContext.decode] might
         * be called multiple times for the same type.
         */
        private
        fun readObjectMethodHierarchyForDecoding(type: Class<*>): List<Method> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top