Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for sldprt (0.1 sec)

  1. src/runtime/slice.go

    //
    //go:linkname growslice
    func growslice(oldPtr unsafe.Pointer, newLen, oldCap, num int, et *_type) slice {
    	oldLen := newLen - num
    	if raceenabled {
    		callerpc := getcallerpc()
    		racereadrangepc(oldPtr, uintptr(oldLen*int(et.Size_)), callerpc, abi.FuncPCABIInternal(growslice))
    	}
    	if msanenabled {
    		msanread(oldPtr, uintptr(oldLen*int(et.Size_)))
    	}
    	if asanenabled {
    		asanread(oldPtr, uintptr(oldLen*int(et.Size_)))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/plan9/syscall_plan9.go

    	fixwd()
    	oldp, err := BytePtrFromString(old)
    	if err != nil {
    		return err
    	}
    	oldptr := uintptr(unsafe.Pointer(oldp))
    
    	var r0 uintptr
    	var e syscall.ErrorString
    
    	// bind(2) man page: If name is zero, everything bound or mounted upon old is unbound or unmounted.
    	if name == "" {
    		r0, _, e = Syscall(SYS_UNMOUNT, _zero, oldptr, 0)
    	} else {
    		namep, err := BytePtrFromString(name)
    		if err != nil {
    			return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 7K bytes
    - Viewed (0)
  3. src/syscall/syscall_plan9.go

    	}
    	oldp, err := BytePtrFromString(old)
    	if err != nil {
    		return err
    	}
    	oldptr := uintptr(unsafe.Pointer(oldp))
    
    	var r0 uintptr
    	var e ErrorString
    
    	// bind(2) man page: If name is zero, everything bound or mounted upon old is unbound or unmounted.
    	if name == "" {
    		r0, _, e = Syscall(SYS_UNMOUNT, _zero, oldptr, 0)
    	} else {
    		namep, err := BytePtrFromString(name)
    		if err != nil {
    			return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    		s.timer.stop()
    		unlock(&s.lock)
    	} else {
    		unlock(&s.lock)
    		slept = s.sleepStub(sleepTime)
    	}
    
    	// Stop here if we're cooling down from the controller.
    	if s.controllerCooldown > 0 {
    		// worked and slept aren't exact measures of time, but it's OK to be a bit
    		// sloppy here. We're just hoping we're avoiding some transient bad behavior.
    		t := slept + int64(worked)
    		if t > s.controllerCooldown {
    			s.controllerCooldown = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime_test.go

    		go func() {
    			<-start
    			r.OnError()
    			wg.Done()
    		}()
    	}
    	st := time.Now()
    	close(start)
    	wg.Wait()
    
    	if since := time.Since(st); since > 5*time.Second {
    		t.Errorf("OnError slept for too long: %s", since)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/soap+xml"/>
    
      <mime-type type="application/sldworks">
        <_comment>SolidWorks CAD program</_comment>
        <glob pattern="*.sldprt" />
        <glob pattern="*.sldasm" />
        <glob pattern="*.slddrw" />
        <sub-class-of type="application/x-tika-msoffice" />
      </mime-type>
    
      <mime-type type="application/sparql-query">
        <glob pattern="*.rq"/>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/assign.go

    	slice := ir.NewSliceExpr(base.Pos, ir.OSLICE, s, nil, newLen, nil)
    	slice.SetBounded(true)
    	nif.Body = []ir.Node{ir.NewAssignStmt(base.Pos, s, slice)}
    
    	// else { s = growslice(oldPtr, newLen, oldCap, num, T) }
    	call := walkGrowslice(s, nif.PtrInit(), oldPtr, newLen, oldCap, num)
    	nif.Else = []ir.Node{ir.NewAssignStmt(base.Pos, s, call)}
    
    	nodes.Append(nif)
    
    	// Index to start copying into s.
    	//   idx = newLen - len(l2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

        }
      }
    
      abstract double doGetRate();
    
      /**
       * Acquires a single permit from this {@code RateLimiter}, blocking until the request can be
       * granted. Tells the amount of time slept, if any.
       *
       * <p>This method is equivalent to {@code acquire(1)}.
       *
       * @return time spent sleeping to enforce rate, in seconds; 0.0 if not rate-limited
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/RateLimiter.java

        }
      }
    
      abstract double doGetRate();
    
      /**
       * Acquires a single permit from this {@code RateLimiter}, blocking until the request can be
       * granted. Tells the amount of time slept, if any.
       *
       * <p>This method is equivalent to {@code acquire(1)}.
       *
       * @return time spent sleeping to enforce rate, in seconds; 0.0 if not rate-limited
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. src/time/sleep_test.go

    	go func() {
    		Sleep(delay / 2)
    		Interrupt()
    	}()
    	start := Now()
    	Sleep(delay)
    	delayadj := adjustDelay(t, delay)
    	duration := Since(start)
    	if duration < delayadj {
    		t.Fatalf("Sleep(%s) slept for only %s", delay, duration)
    	}
    }
    
    // Test the basic function calling behavior. Correct queuing
    // behavior is tested elsewhere, since After and AfterFunc share
    // the same code.
    func TestAfterFunc(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top