Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for mid2 (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    // Copy creates a duplicate of security identifier SID.
    func (sid *SID) Copy() (*SID, error) {
    	b := make([]byte, sid.Len())
    	sid2 := (*SID)(unsafe.Pointer(&b[0]))
    	e := CopySid(uint32(len(b)), sid2, sid)
    	if e != nil {
    		return nil, e
    	}
    	return sid2, nil
    }
    
    // IdentifierAuthority returns the identifier authority of the SID.
    func (sid *SID) IdentifierAuthority() SidIdentifierAuthority {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        CALIBRATION_METHOD_HISTOGRAM_PERCENTILE = 3;
        // Use the histogram mid values that minimize MSE error.
        // This is very slow algorithm because it computes all errors for all
        // histogram mid value pairs. Therefore the value of num_bins is recommended
        // to be 256 or less.
        CALIBRATION_METHOD_HISTOGRAM_MSE_BRUTEFORCE = 4;
        // Use the histogram mid values that minimize MSE error.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/testprog/gc-stress.go

    	for i := 0; i < procs; i++ {
    		i := i
    		go func() {
    			for {
    				sink[i] = make([]byte, 4<<10)
    			}
    		}()
    	}
    	// Increase the chance that we end up starting and stopping
    	// mid-GC by only starting to trace after a few milliseconds.
    	time.Sleep(5 * time.Millisecond)
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	}
    
    	// Validate that the M we're stealing from is what we expect.
    	mid := ThreadID(ev.args[2]) // The M we're stealing from.
    
    	newCtx := curCtx
    	if mid == curCtx.M {
    		// We're stealing from ourselves. This behaves like a ProcStop.
    		if curCtx.P != pid {
    			return curCtx, false, fmt.Errorf("tried to self-steal proc %d (thread %d), but got proc %d instead", pid, mid, curCtx.P)
    		}
    		newCtx.P = NoProc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. pkg/test/framework/suite_test.go

    	var exit2Called bool
    	var errCode2 int
    	exitFn2 := func(errCode int) {
    		exit2Called = true
    		errCode2 = errCode
    	}
    
    	s := newTestSuite("tid1", runFn1, exitFn1, defaultSettingsFn)
    
    	s2 := newTestSuite("tid2", runFn2, exitFn2, defaultSettingsFn)
    
    	go s.Run()
    	waitForRun1.Wait()
    
    	s2.Run()
    	waitForTestCompletion.Done()
    	waitForExit1Call.Wait()
    
    	g.Expect(exit2Called).To(Equal(true))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/internal/trace/generation.go

    		ts, err := binary.ReadUvarint(r)
    		if err != nil {
    			return nil, err
    		}
    
    		// Read the sample's M.
    		m, err := binary.ReadUvarint(r)
    		if err != nil {
    			return nil, err
    		}
    		mid := ThreadID(m)
    
    		// Read the sample's P.
    		p, err := binary.ReadUvarint(r)
    		if err != nil {
    			return nil, err
    		}
    		pid := ProcID(p)
    
    		// Read the sample's G.
    		g, err := binary.ReadUvarint(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	}
    	if c.id2 != (cache.ActionID{}) {
    		if cache.DebugTest {
    			fmt.Fprintf(os.Stderr, "testcache: %s: save test ID %x => input ID %x => %x\n", a.Package.ImportPath, c.id2, testInputsID, testAndInputKey(c.id2, testInputsID))
    		}
    		cache.PutNoVerify(cache.Default(), c.id2, bytes.NewReader(testlog))
    		cache.PutNoVerify(cache.Default(), testAndInputKey(c.id2, testInputsID), bytes.NewReader(a.TestOutput.Bytes()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    	// this here and not e.g. on the trace reader.
    	traceFrequency(gen)
    
    	// Collect all the untraced Gs.
    	type untracedG struct {
    		gp           *g
    		goid         uint64
    		mid          int64
    		stackID      uint64
    		status       uint32
    		waitreason   waitReason
    		inMarkAssist bool
    	}
    	var untracedGs []untracedG
    	forEachGRace(func(gp *g) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/builtins0.go

    		_ = min(1)
    		_ = min(1, 2.3, 'a')
    		_ = min(1, "foo" /* ERROR "mismatched types" */ )
    		_ = min(1, 0i /* ERROR "cannot be ordered" */ )
    		_ = min(1, 2 /* ERROR "cannot be ordered" */ + 3i )
    	)
    }
    
    func min2() {
    	_ = assert(min(0) == 0)
    	_ = assert(min(0, 1) == 0)
    	_ = assert(min(0, -10, 123456789) == -10)
    	_ = assert(min(-12345678901234567890, 0) == -12345678901234567890)
    
    	_ = assert(min(1, 2.3) == 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: %[[BITCAST2:.+]] = "tfl.bitcast"(%[[ARG2]]) : (tensor<i64>) -> tensor<1xi64>
    // CHECK: %[[MIN2:.+]] = "tfl.minimum"(%[[BITCAST2]], %[[MAX2]]) : (tensor<1xi64>, tensor<1xi64>) -> tensor<1xi64>
    // CHECK: %[[CONCAT:.+]] = "tfl.concatenation"(%[[MIN1]], %[[MIN2]]) <{axis = 0 : i32, fused_activation_function = "NONE"}> : (tensor<1xi64>, tensor<1xi64>) -> tensor<2xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
Back to top