Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for mod$ (0.05 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    			c.ctxt.Diag("Invalid addressing mode used in index type instruction: %v", p.As)
    		}
    
    		o1 = AOP_RRR(c.opirr(p.As), uint32(p.From.Reg), uint32(p.To.Reg), 0) | (uint32(c.regoff(p.GetFrom3()))&0x7F)<<11
    
    	case 42: /* lswi */
    		if p.From.Type == obj.TYPE_MEM && p.From.Index == 0 && p.From.Offset != 0 {
    			c.ctxt.Diag("Invalid addressing mode used in index type instruction: %v", p.As)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    	}
    
    	// Can't check the signature here without a package cycle.
    }
    
    func TestImports(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in -short mode")
    	}
    	testenv.MustHaveGoRun(t)
    
    	if out, err := exec.Command(testenv.GoToolPath(t), "run", "x509_test_import.go").CombinedOutput(); err != nil {
    		t.Errorf("failed to run x509_test_import.go: %s\n%s", err, out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		// a C-created thread and need to create a new thread.
    		startTemplateThread()
    		cgocall(_cgo_notify_runtime_init_done, nil)
    	}
    
    	// Run the initializing tasks. Depending on build mode this
    	// list can arrive a few different ways, but it will always
    	// contain the init tasks computed by the linker for all the
    	// packages in the program (excluding those added at runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    			runtimeSupportsRRO: true,
    			expected:           false,
    			expectedErr:        "unknown recursive read-only mode",
    		},
    	}
    
    	for _, tc := range testCases {
    		got, err := resolveRecursiveReadOnly(tc.m, tc.runtimeSupportsRRO)
    		t.Logf("resolveRecursiveReadOnly(%+v, %v) = (%v, %v)", tc.m, tc.runtimeSupportsRRO, got, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top