Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for disovery (0.23 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    // making sure that after registration, devices are correctly updated and if a re-registration
    // happens, we will NOT delete devices; and no orphaned devices left.
    // While testing above scenario, plugin discovery and registration will be done using
    // Kubelet probe based mechanism
    func TestDevicePluginReRegistrationProbeMode(t *testing.T) {
    	// TODO: Remove skip once https://github.com/kubernetes/kubernetes/pull/115269 merges.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Gradle will no longer prefer a version of Visual Studio found on the path over other locations. It is now a last resort.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// converted to before persisted in etcd, given a list of possible
    	// kinds of the object.
    	// If the StorageVersioner is nil, apiserver will leave the
    	// storageVersionHash as empty in the discovery document.
    	StorageVersioner runtime.GroupVersioner
    
    	// DestroyFunc cleans up clients used by the underlying Storage; optional.
    	// If set, DestroyFunc has to be implemented in thread-safe way and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    kind: Service
    metadata:
      name: headless
      namespace: default
    spec:
      clusterIP: None
      selector:
        app: headless
      ports:` + ports + `
    ---
    apiVersion: discovery.k8s.io/v1
    kind: EndpointSlice
    metadata:
      name: headless
      namespace: default
      labels:
        kubernetes.io/service-name: headless
    endpoints:
    - addresses:
      - 1.2.3.4
    ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    	"istio.io/istio/tests/common/jwt"
    	"istio.io/istio/tests/integration/security/util/reachability"
    	util "istio.io/istio/tests/integration/telemetry"
    )
    
    const (
    	templateFile = "manifests/charts/istio-control/istio-discovery/files/waypoint.yaml"
    )
    
    func IsL7() echo.Checker {
    	return check.Each(func(r echot.Response) error {
    		// TODO: response headers?
    		_, f := r.RequestHeaders[http.CanonicalHeaderKey("X-Request-Id")]
    		if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    // packageHasBenchmarks reports whether pkg has benchmarks.
    // On any error, it conservatively returns true.
    //
    // This exists just to eliminate work on the builders, since compiling
    // a test in race mode just to discover it has no benchmarks costs a
    // second or two per package, and this function returns false for
    // about 100 packages.
    func (t *tester) packageHasBenchmarks(pkg string) bool {
    	pkgDir := filepath.Join(goroot, "src", pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    	// For efficiency, we consider only the dominator tree rather
    	// than the entire flow graph. On the way down, we consider
    	// incoming branches and accumulate conditions that uniquely
    	// dominate the current block. If we discover a contradiction,
    	// we can eliminate the entire block and all of its children.
    	// On the way back up, we consider outgoing branches that
    	// haven't already been considered. This way we consider each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route_test.go

    		g.Expect(routes[0].GetRoute().Timeout.Seconds).To(Equal(int64(0)))
    		// nolint: staticcheck
    		g.Expect(routes[0].GetRoute().MaxGrpcTimeout.Seconds).To(Equal(int64(0)))
    	})
    
    	t.Run("for virtual service with HTTP/3 discovery enabled", func(t *testing.T) {
    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    		routes, err := route.BuildHTTPRoutesForVirtualService(node(cg), virtualServicePlain, serviceRegistry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    		// Extract 64 bits from the byte pointer and get a OnesCount.
    		// Note that the unsafe cast here doesn't preserve endianness,
    		// but that's OK. We only care about how many bits are 1, not
    		// about the order we discover them in.
    		mrkBits := *(*uint64)(unsafe.Pointer(s.gcmarkBits.bytep(i)))
    		count += sys.OnesCount64(mrkBits)
    	}
    	return count
    }
    
    // Read the bytes starting at the aligned pointer p into a uintptr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        cache.close()
        createNewCache()
    
        // The journal has no record that 'a' and 'b' were removed. It will have an entry for both, but
        // when it tries to read the cache files for either entry, it will discover the cache files are
        // missing and remove the entries from the cache.
        assertThat(cache.size()).isEqualTo(4)
        assertThat(cache["a"]).isNull()
        assertThat(cache["b"]).isNull()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top