Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for realm (0.1 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		makeInstance(tcpStatic, "2.2.2.2", 444, tcpStatic.Spec.(*networking.ServiceEntry).Ports[0], nil, MTLS),
    	}, "2.2.2.2")
    }
    
    // Keeping this test for legacy - but it never happens in real life.
    func TestServiceDiscoveryInstances(t *testing.T) {
    	store, sd, _ := initServiceDiscovery(t)
    
    	createConfigs([]*config.Config{httpDNS, tcpStatic}, store, t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	//
    	// When the function argument is a conversion to unsafe.Pointer,
    	// we unwrap the conversion before checking the pointer,
    	// and then wrap again when calling C.f. This lets us check
    	// the real type of the pointer in some cases. See issue #25941.
    	//
    	// When the call to C.f is deferred, we use an additional function
    	// literal to evaluate the arguments at the right time.
    	//    defer func() func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // system-related operations on the local computer.
    type Token Handle
    
    // OpenCurrentProcessToken opens an access token associated with current
    // process with TOKEN_QUERY access. It is a real token that needs to be closed.
    //
    // Deprecated: Explicitly call OpenProcessToken(CurrentProcess(), ...)
    // with the desired access instead, or use GetCurrentProcessToken for a
    // TOKEN_QUERY token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. configure.py

        suppress_default_error: (Bool) Suppress the above error message in favor of
          one from the check_success function.
        resolve_symlinks: (Bool) Translate symbolic links into the real filepath.
        n_ask_attempts: (Integer) Number of times to query for valid input before
          raising an error and quitting.
    
      Returns:
        [String] The value of var_name after querying for input.
    
      Raises:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
    	// Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  6. hack/local-up-cluster.sh

            echo "clusterDomain: \"${DNS_DOMAIN}\""
          else
            # To start a private DNS server set ENABLE_CLUSTER_DNS and
            # DNS_SERVER_IP/DOMAIN. This will at least provide a working
            # DNS server for real world hostnames.
            echo "clusterDNS: [ \"8.8.8.8\" ]"
          fi
    
          # eviction
          if [[ -n ${EVICTION_HARD} ]]; then
            echo "evictionHard:"
            parse_eviction "${EVICTION_HARD}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         *
         * This code handles some quirks of FIR sources and PSI:
         * - in `vararg args: String` declaration, `String` type reference has fake source, but `Array<String>` has real source
         * (see [KtFakeSourceElementKind.ArrayTypeFromVarargParameter]).
         * - if FIR reference points to the type with generic parameters (like `Foo<Bar>`), its source is not [KtTypeReference], but
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. pkg/controller/disruption/disruption_test.go

    // (A) We will delete 1 pod and trigger DisruptionController to set
    // DisruptionsAllowed to 1.
    // (B) As the DisruptionController attempts this write, we will evict the
    // remaining 2 pods and update DisruptionsAllowed to 0. (The real eviction
    // handler would allow this because it still sees DisruptionsAllowed=2.)
    // (C) If the DisruptionController writes DisruptionsAllowed=1 despite the
    // resource conflict error, then there is a bug.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	// For HA clusters, we want to prevent race conditions when changing status to Established,
    	// so we want to be sure that CRD is Installing at least for 5 seconds before Establishing it.
    	// TODO: find a real HA safe checkpointing mechanism instead of an arbitrary wait.
    	if !apiextensionshelpers.IsCRDConditionTrue(newCRD, apiextensionsv1.Established) &&
    		apiextensionshelpers.IsCRDConditionTrue(newCRD, apiextensionsv1.NamesAccepted) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    	off := f.Offset()
    	for {
    		l := nextar(f, off, &arhdr)
    		if l == 0 {
    			break
    		}
    		if l < 0 {
    			Exitf("%s: malformed archive", lib.File)
    		}
    		off += l
    
    		// __.PKGDEF isn't a real Go object file, and it's
    		// absent in -linkobj builds anyway. Skipping it
    		// ensures consistency between -linkobj and normal
    		// build modes.
    		if arhdr.name == pkgdef {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top