Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for revoked (0.54 sec)

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

    		o2 = AOP_RRR(OP_MULLD, REGTMP, REGTMP, uint32(p.From.Reg))
    		o3 = AOP_RRR(OP_SUBF|t, uint32(p.To.Reg), REGTMP, uint32(r))
    		/* cases 50,51: removed; can be reused. */
    
    		/* cases 50,51: removed; can be reused. */
    
    	case 52: /* mtfsbNx cr(n) */
    		v := c.regoff(&p.From) & 31
    
    		o1 = AOP_RRR(c.oprrr(p.As), uint32(v), 0, 0)
    
    	case 53: /* mffsX ,fr1 */
    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. cmd/server_test.go

    }
    
    func (s *TestSuiteCommon) TestPutBucket(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    	// Block 1: Testing for racy access
    	// The assertion is removed from this block since the purpose of this block is to find races
    	// The purpose this block is not to check for correctness of functionality
    	// Run the test with -race flag to utilize this
    	var wg sync.WaitGroup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          }
        }
    
        // Verify that all operations except the terminator have exactly one
        // result of type supported by TFLite (or is a ControlType, which
        // will be removed later by ExtractControlEdges.)
        for (auto& inst : bb) {
          if (inst.hasTrait<mlir::OpTrait::IsTerminator>()) break;
    
          for (auto result : inst.getResults()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// Pass list of absolute paths to vet,
    	// so that vet's error messages will use absolute paths,
    	// so that we can reformat them relative to the directory
    	// in which the go command is invoked.
    	vcfg := &vetConfig{
    		ID:           a.Package.ImportPath,
    		Compiler:     cfg.BuildToolchainName,
    		Dir:          a.Package.Dir,
    		GoFiles:      mkAbsFiles(a.Package.Dir, gofiles),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    	}
    }
    
    // TestConnIsValid verifies that a database connection that should be discarded,
    // is actually discarded and does not re-enter the connection pool.
    // If the IsValid method from *fakeConn is removed, this test will fail.
    func TestConnIsValid(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	db.SetMaxOpenConns(1)
    
    	ctx := context.Background()
    
    	c, err := db.Conn(ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // after UREM (case like quo, rem := z/y, z%y), then the second UDIV instruction becomes redundant.
    // The purpose of this rule is to have this extra UDIV instruction removed in CSE pass.
    (UMOD  <typ.UInt64> x y) => (MSUB <typ.UInt64> x y (UDIV <typ.UInt64> x y))
    (UMODW <typ.UInt32> x y) => (MSUBW <typ.UInt32> x y (UDIVW <typ.UInt32> x y))
    
    // 64-bit addition with carry.
    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/server.go

    // semicolons and ampersands. (See golang.org/issue/25192). Note that this
    // behavior doesn't match that of many proxies, and the mismatch can lead to
    // security issues.
    //
    // AllowQuerySemicolons should be invoked before [Request.ParseForm] is called.
    func AllowQuerySemicolons(h Handler) Handler {
    	return HandlerFunc(func(w ResponseWriter, r *Request) {
    		if strings.Contains(r.URL.RawQuery, ";") {
    			r2 := new(Request)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    			// for embedded fields other than the first.
    			// Therefore, for now, we expect those methods
    			// to not exist.  See issues 15924 and 20824.
    			// When those issues are fixed, this test of panic
    			// should be removed.
    			if j == 1 && table.impl {
    				func() {
    					defer func() {
    						if err := recover(); err == nil {
    							t.Errorf("test-%d-%d did not panic", i, j)
    						}
    					}()
    					_ = StructOf(fields)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top