Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 266 for tp (0.02 sec)

  1. src/runtime/netpoll_solaris.go

    				}
    				netpollWakeSig.Store(0)
    			}
    			continue
    		}
    
    		if ev.portev_events == 0 {
    			continue
    		}
    
    		tp := taggedPointer(uintptr(unsafe.Pointer(ev.portev_user)))
    		pd := (*pollDesc)(tp.pointer())
    		if pd.fdseq.Load() != tp.tag() {
    			continue
    		}
    
    		var mode, clear int32
    		if (ev.portev_events & (_POLLIN | _POLLHUP | _POLLERR)) != 0 {
    			mode += 'r'
    			clear |= _POLLIN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/runtime/signal_riscv64.go

    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("ra  ", hex(c.ra()), "\t")
    	print("sp  ", hex(c.sp()), "\n")
    	print("gp  ", hex(c.gp()), "\t")
    	print("tp  ", hex(c.tp()), "\n")
    	print("t0  ", hex(c.t0()), "\t")
    	print("t1  ", hex(c.t1()), "\n")
    	print("t2  ", hex(c.t2()), "\t")
    	print("s0  ", hex(c.s0()), "\n")
    	print("s1  ", hex(c.s1()), "\t")
    	print("a0  ", hex(c.a0()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/traces.go

    )
    
    // WithTracing adds tracing to requests if the incoming request is sampled
    func WithTracing(handler http.Handler, tp trace.TracerProvider) http.Handler {
    	opts := []otelhttp.Option{
    		otelhttp.WithPropagators(tracing.Propagators()),
    		otelhttp.WithPublicEndpoint(),
    		otelhttp.WithTracerProvider(tp),
    		otelhttp.WithSpanNameFormatter(func(operation string, r *http.Request) string {
    			ctx := r.Context()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 15 01:42:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerUnsupportedFeatureFailureIntegrationTest.groovy

            if (condition) {
                throw throwable
            }
        }
    
        @Requires(UnitTestPreconditions.Jdk8OrEarlier) // tests against old Gradle version that can only work with Java versions up tp 8
        @Debug
        def "fails informatively when trying to inspect build output in debug mode with unsupported gradle version"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_json_timeout.txt

    ! go test -json -timeout=1ms
    
    stdout '"Action":"output","Package":"p","Output":"FAIL\\tp\\t'
    stdout '"Action":"fail","Package":"p","Elapsed":'
    
    -- go.mod --
    module p
    
    -- x_test.go --
    package p
    
    import (
    	"testing"
    	"time"
    )
    
    func Test(t *testing.T) {
    	time.Sleep(1*time.Hour)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 278 bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    		// the scheduled pod anti-affinity terms
    		for topologyKey, topologyValue := range nodeInfo.Node().Labels {
    			tp := topologyPair{key: topologyKey, value: topologyValue}
    			if state.existingAntiAffinityCounts[tp] > 0 {
    				return false
    			}
    		}
    	}
    	return true
    }
    
    // Checks if the node satisfies the incoming pod's anti-affinity rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. pkg/volume/projected/projected.go

    			}
    		case source.ServiceAccountToken != nil:
    			tp := source.ServiceAccountToken
    
    			// When FsGroup is set, we depend on SetVolumeOwnership to
    			// change from 0600 to 0640.
    			mode := *s.source.DefaultMode
    			if mounterArgs.FsUser != nil || mounterArgs.FsGroup != nil {
    				mode = 0600
    			}
    
    			var auds []string
    			if len(tp.Audience) != 0 {
    				auds = []string{tp.Audience}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go

    	SYS_CLOCK_GETTIME  = 87  // { int sys_clock_gettime(clockid_t clock_id, struct timespec *tp); }
    	SYS_CLOCK_SETTIME  = 88  // { int sys_clock_settime(clockid_t clock_id, const struct timespec *tp); }
    	SYS_CLOCK_GETRES   = 89  // { int sys_clock_getres(clockid_t clock_id, struct timespec *tp); }
    	SYS_DUP2           = 90  // { int sys_dup2(int from, int to); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. pkg/api/v1/pod/util_test.go

    func collectResourcePaths(t *testing.T, resourcename string, path *field.Path, name string, tp reflect.Type) sets.Set[string] {
    	resourcename = strings.ToLower(resourcename)
    	resourcePaths := sets.New[string]()
    
    	if tp.Kind() == reflect.Pointer {
    		resourcePaths.Insert(sets.List[string](collectResourcePaths(t, resourcename, path, name, tp.Elem()))...)
    		return resourcePaths
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/duplicated.keys

    F68khemdUD3P8WVMQ4F9zPigUrKJABEBAAGJAh8EGAEIAAkFAlcyNOoCGwwACgkQ
    FcccCk4Ljt3t8hAAmfRLEBwnmJIp6cgcLOJ6kM/1nreGOq6ECCYOhXFzWynhjgwx
    Steq6dK43mLZFc1gfY508IK/I6O3++OMjSk+sDGL4PqccTr68UBowLTN4oV0rIfJ
    tp+D3LN3R7rS/j+9c6Sy0GrzX5ebxrAPbQnDj2sEAW76myDENpKjyMp5nnfqeL16
    tNNnUVP55EbygguWFFtdfo8pIl9hu/EzrwtYl4/Ifx+N4vgN9l94CpsPkzK38rBT
    mIXMTGd8iUbQV7XYl078ZiDKqT2XYehu6BF3nhIFb6CzI0IbmDbZoGTdJ51pZ8u2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top