Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for pStates (0.35 sec)

  1. src/internal/trace/testdata/tests/go122-gc-stress.test

    GoBlock dt=65 reason_string=15 stack=5
    GoStart dt=26 g=130 g_seq=1
    ProcStatus dt=380 p=38 pstatus=2
    ProcStatus dt=4 p=39 pstatus=2
    ProcStatus dt=4 p=40 pstatus=2
    ProcStatus dt=3 p=41 pstatus=2
    ProcStatus dt=5 p=42 pstatus=2
    ProcStatus dt=5 p=43 pstatus=2
    ProcStatus dt=2 p=44 pstatus=2
    ProcStatus dt=3 p=45 pstatus=2
    ProcStatus dt=4 p=46 pstatus=2
    GoStop dt=1488 reason_string=16 stack=15
    GoUnblock dt=17 g=51 g_seq=45 stack=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    	var states []string
    	if obj.DeletionTimestamp != nil {
    		states = append(states, "deleted")
    	}
    	if obj.Status.Allocation == nil {
    		if obj.DeletionTimestamp == nil {
    			states = append(states, "pending")
    		}
    	} else {
    		states = append(states, "allocated")
    		if len(obj.Status.ReservedFor) > 0 {
    			states = append(states, "reserved")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    	}
    	latestPeerName = info.Sites[latestID].Name
    	// heal policy of peers if peer does not have it.
    	for dID, pStatus := range us {
    		if dID == globalDeploymentID() {
    			continue
    		}
    		if !pStatus.PolicyMismatch && pStatus.HasPolicyMapping {
    			continue
    		}
    		if isPolicyMappingEqual(pStatus.userPolicy, latestUserStat.userPolicy) {
    			continue
    		}
    		peerName := info.Sites[dID].Name
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    within, and the interior blue without and red within. These are the Phænomena of thick convexo-concave Plates of Glass, which are every where of the same thickness. There are yet other Phænomena when these Plates are a little thicker on one side than on the other, and others when the Plates are more or less concave than convex, or plano-convex, or double-convex. For in all these cases the Plates make Rings of Colours, but after various manners; all which, so far as I have yet observed, follow from...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. src/cmd/trace/testdata/go122.test

    ProcStatus dt=56 p=0 pstatus=1
    GoStatus dt=4 g=1 m=1709038 gstatus=2
    ProcsChange dt=184 procs_value=8 stack=1
    STWBegin dt=81 kind_string=21 stack=2
    HeapGoal dt=5 heapgoal_value=4194304
    ProcStatus dt=2 p=1 pstatus=2
    ProcStatus dt=1 p=2 pstatus=2
    ProcStatus dt=1 p=3 pstatus=2
    ProcStatus dt=1 p=4 pstatus=2
    ProcStatus dt=1 p=5 pstatus=2
    ProcStatus dt=1 p=6 pstatus=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Trunc       ...) => (FRINTZD ...)
    (FMA       x y z) => (FMADDD z x y)
    
    (Sqrt32 ...) => (FSQRTS ...)
    
    (Min(64|32)F ...) => (FMIN(D|S) ...)
    (Max(64|32)F ...) => (FMAX(D|S) ...)
    
    // lowering rotates
    // we do rotate detection in generic rules, if the following rules need to be changed, check generic rules first.
    (RotateLeft8  <t> x (MOVDconst [c])) => (Or8 (Lsh8x64 <t> x (MOVDconst [c&7])) (Rsh8Ux64 <t> x (MOVDconst [-c&7])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    	if err := <-shutdownRes; err != nil {
    		t.Fatalf("Shutdown: %v", err)
    	}
    	<-gotOnShutdown // Will hang if RegisterOnShutdown is broken.
    
    	if states := <-statesRes; states[StateActive] != 1 {
    		t.Errorf("connection in wrong state, %v", states)
    	}
    }
    
    func TestServerShutdownStateNew(t *testing.T) { run(t, testServerShutdownStateNew) }
    func testServerShutdownStateNew(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          // TODO: b/326332748 - For forward convolution in transpose_conv,
          // IsSamePadding calculation may need to be updated.
          // Reference: https://arxiv.org/pdf/1603.07285.pdf
          // Section 4.6 > Relationship 13 states `stride_dim = dilation + 1`.
          rewriter.replaceOpWithNewOp<TFL::TransposeConvOp>(
              // op result should be recasted to desired quantized type.
              op, output_type, /*output_shape=*/
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

          // The reduce function __reduce_func has 36 arguments, and the source of those arguments are listed below:
          //   [arg0, arg5]:   these are states coming from ReduceDatasetOp's [arg1, arg6]
          //   [arg6: arg14]:  these are the input elements coming from the output of %51:9
          //   [arg15: arg35]: these are the captured elements from ReduceDatasetOp's [arg7:arg27]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    // Some macros
    
    // ROL rotates the uint32s in register R left by N bits, using temporary T.
    #define ROL(N, R, T) \
    	MOVO R, T; PSLLL $(N), T; PSRLL $(32-(N)), R; PXOR T, R
    
    // ROL16 rotates the uint32s in register R left by 16, using temporary T if needed.
    #ifdef GOAMD64_v2
    #define ROL16(R, T) PSHUFB ·rol16<>(SB), R
    #else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
Back to top