Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 161 for doPing (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    // watchCacheInterval serves as an abstraction over a source
    // of watchCacheEvents. It maintains a window of events over
    // an underlying source and these events can be served using
    // the exposed Next() API. The main intent for doing things
    // this way is to introduce an upper bound of memory usage
    // for starting a watch and reduce the maximum possible time
    // interval for which the lock would be held while events are
    // copied over.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck-jsr166e/AtomicDoubleTest.java?revision=1.8
     * (Modified to adapt to guava coding conventions)
     */
    
    package com.google.common.util.concurrent;
    
    /** Unit test for {@link AtomicDouble}. */
    public class AtomicDoubleTest extends JSR166TestCase {
    
      private static final double[] VALUES = {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/deployment/builder.go

    	// namespaces
    	namespaces map[string]namespace.Instance
    	// the set of injection templates for each cluster
    	templates map[string]sets.String
    	// errs contains a multierror for failed validation during With calls
    	errs error
    }
    
    func (b *builder) WithConfig(cfg echo.Config) Builder {
    	return b.With(nil, cfg)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top