Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 96 for realm (0.22 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

       * Foo<Enum<?>>} according to JLS. See testRecursiveWildcardSubtypeBug() for a real example.
       *
       * <p>It appears that properly handling recursive type bounds in the presence of implicit type
       * bounds is not easy. For now we punt, hoping that this defect should rarely cause issues in real
       * code.
       *
       * @param formalType is {@code Foo<formalType>} a supertype of {@code Foo<T>}?
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		// There are no relocations against these dies, and their names
    		// are not unique, so don't create a symbol.
    		return die
    	case dwarf.DW_ABRV_COMPUNIT, dwarf.DW_ABRV_COMPUNIT_TEXTLESS:
    		// Avoid collisions with "real" symbol names.
    		name = fmt.Sprintf(".pkg.%s.%d", name, len(d.linkctxt.compUnits))
    		st = sym.SDWARFCUINFO
    	case dwarf.DW_ABRV_VARIABLE:
    		st = sym.SDWARFVAR
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. pkg/controller/endpoint/endpoints_controller_test.go

    	endpointsHandler.ValidateRequest(t, "/api/v1/namespaces/"+ns+"/endpoints/foo", "PUT", &data)
    }
    
    // TestPodUpdatesBatching verifies that endpoint updates caused by pod updates are batched together.
    // This test uses real time.Sleep, as there is no easy way to mock time in endpoints controller now.
    // TODO(mborsz): Migrate this test to mock clock when possible.
    func TestPodUpdatesBatching(t *testing.T) {
    	type podUpdate struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    	}
    	hcnImpl := proxier.hcn
    	err := hcnImpl.DsrSupported()
    	if err != nil {
    		preserveDIP = false
    		localTrafficDSR = false
    	}
    	// targetPort is zero if it is specified as a name in port.TargetPort.
    	// Its real value would be got later from endpoints.
    	targetPort := 0
    	if port.TargetPort.Type == intstr.Int {
    		targetPort = port.TargetPort.IntValue()
    	}
    
    	info.preserveDIP = preserveDIP
    	info.targetPort = targetPort
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    type listenerBinding struct {
    	// binds contains a list of all addresses this listener should bind to. The first one in the list is considered the primary
    	binds []string
    	// bindToPort determines whether this binds to a real port. If so, it becomes a real linux-level listener. Otherwise,
    	// it is just a synthetic listener for matching with original_dst
    	bindToPort bool
    }
    
    // Primary returns the primary bind, or empty if there is none
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    			// runtime.types size must be removed, as it's a real symbol.
    			tsize := ldr.SymSize(ldr.Lookup("runtime.types", 0))
    			outerSymSize["typerel.*"] = size - tsize
    			return
    		}
    		fallthrough
    	case sym.STYPE:
    		if !ctxt.DynlinkingGo() {
    			// runtime.types size must be removed, as it's a real symbol.
    			tsize := ldr.SymSize(ldr.Lookup("runtime.types", 0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    			x.mode = invalid
    			return
    		}
    
    		// check for divisor underflow in complex division (see go.dev/issue/20227)
    		if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
    			re, im := constant.Real(y.val), constant.Imag(y.val)
    			re2, im2 := constant.BinaryOp(re, token.MUL, re), constant.BinaryOp(im, token.MUL, im)
    			if constant.Sign(re2) == 0 && constant.Sign(im2) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ====
    The current support for CUnit is quite rudimentary. Plans for future integration include:
    
    * Allow tests to be declared with Javadoc-style annotations.
    * Improved HTML reporting, similar to that available for JUnit.
    * Real-time feedback for test execution.
    * Support for additional test frameworks.
    ====
    
    [[native_binaries:google_test]]
    == GoogleTest support
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/time/time_test.go

    		y, w := dt.ISOWeek()
    		if w != wt.wex || y != wt.yex {
    			t.Errorf("got %d/%d; expected %d/%d for %d-%02d-%02d",
    				y, w, wt.yex, wt.wex, wt.year, wt.month, wt.day)
    		}
    	}
    
    	// The only real invariant: Jan 04 is in week 1
    	for year := 1950; year < 2100; year++ {
    		if y, w := Date(year, January, 4, 0, 0, 0, 0, UTC).ISOWeek(); y != year || w != 1 {
    			t.Errorf("got %d/%d; expected %d/1 for Jan 04", y, w, year)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    type memRecord struct {
    	// The following complex 3-stage scheme of stats accumulation
    	// is required to obtain a consistent picture of mallocs and frees
    	// for some point in time.
    	// The problem is that mallocs come in real time, while frees
    	// come only after a GC during concurrent sweeping. So if we would
    	// naively count them, we would get a skew toward mallocs.
    	//
    	// Hence, we delay information to get consistent snapshots as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top