Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 96 for realm (0.65 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    // being malformed), or it returns a non-nil error to signify a test case error.
    //
    // t.Error isn't used here to give the caller the opportunity to decide whether
    // the test case failing is expected before promoting it to a real test failure.
    // See expectFail and -f flag.
    func (t test) run() error {
    	srcBytes, err := os.ReadFile(filepath.Join(t.gorootTestDir, t.goFileName()))
    	if err != nil {
    		t.Fatal("reading test case .go file:", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    	//    invokes the dynamic resolver via a pointer provided by
    	//    the dynamic linker. This will patch up the .plt slot to
    	//    point directly at the function so future calls go
    	//    straight from the call stub to the real function, and
    	//    then call the function.
    
    	// NOTE: It's possible we could make ppc64 closer to other
    	// architectures: ppc64's .plt is like .plt.got on other
    	// platforms and ppc64's .glink is like .plt on other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   Mutex, MutexLock, ThreadLocal, GetThreadCount()
    //                  - synchronization primitives.
    //   GTEST_IS_THREADSAFE - defined to 1 to indicate that the above
    //                         synchronization primitives have real implementations
    //                         and Google Test is thread-safe; or 0 otherwise.
    //
    // Template meta programming:
    //   is_pointer     - as in TR1; needed on Symbian and IBM XL C/C++ only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   Mutex, MutexLock, ThreadLocal, GetThreadCount()
    //                  - synchronization primitives.
    //   GTEST_IS_THREADSAFE - defined to 1 to indicate that the above
    //                         synchronization primitives have real implementations
    //                         and Google Test is thread-safe; or 0 otherwise.
    //
    // Template meta programming:
    //   is_pointer     - as in TR1; needed on Symbian and IBM XL C/C++ only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    	// future syncs.
    	// This lets us run specific logic that's required only during proxy startup.
    	// For eg: it enables us to update weights of existing destinations only on startup
    	// saving us the cost of querying and updating real servers during every sync.
    	initialSync bool
    	// endpointSlicesSynced, and servicesSynced are set to true when
    	// corresponding objects are synced after startup. This is used to avoid updating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    	if targetUser == requestorUser || targetUser == requestorParentUser {
    		isSvcAccForRequestor = true
    	}
    
    	// If we are creating svc account for request sender, ensure
    	// that targetUser is a real user (i.e. not derived
    	// credentials).
    	if isSvcAccForRequestor {
    		if requestorIsDerivedCredential {
    			if requestorParentUser == "" {
    				writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    			c := common.NewCaller()
    			cert, err := istio.CreateCertificate(t, i, apps.Captured.ServiceName(), apps.Namespace.Name())
    			if err != nil {
    				t.Fatal(err)
    			}
    			// this is real odd but we're going to assume for now that we've just got the one waypoint I guess?
    			hbwl := echo.HBONE{
    				Address:            apps.WaypointProxies[apps.WorkloadAddressedWaypoint.Config().WorkloadWaypointProxy].Inbound(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    ) {
    	t.Helper()
    	pod := generatePod(ip, name, testNS, sa, "node1", labels, annotations)
    
    	p := s.pc.Get(name, pod.Namespace)
    	if p == nil {
    		// Apiserver doesn't allow Create to modify the pod status; in real world it's a 2 part process
    		pod.Status = corev1.PodStatus{}
    		newPod := s.pc.Create(pod)
    		if markReady {
    			setPodReady(newPod)
    		}
    		newPod.Status.PodIP = ip
    		newPod.Status.Phase = phase
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    		fmt.Fprintf(fgcc, "\treturn _cgo_errno;\n")
    	}
    	fmt.Fprintf(fgcc, "}\n")
    	fmt.Fprintf(fgcc, "\n")
    }
    
    // Write out a wrapper for a function when using gccgo. This is a
    // simple wrapper that just calls the real function. We only need a
    // wrapper to support static functions in the prologue--without a
    // wrapper, we can't refer to the function, since the reference is in
    // a different file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    		l.mapped = pEnd
    	}
    	return unsafe.Pointer(p)
    }
    
    // notInHeap is off-heap memory allocated by a lower-level allocator
    // like sysAlloc or persistentAlloc.
    //
    // In general, it's better to use real types which embed
    // runtime/internal/sys.NotInHeap, but this serves as a generic type
    // for situations where that isn't possible (like in the allocators).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top