Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for req_dn (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    			Parts:             []string{"goodrscs", "eman"},
    		},
    		User: ui,
    	}
    	reqN := RequestDigest{
    		RequestInfo: &request.RequestInfo{
    			IsResourceRequest: false,
    			Path:              "/openapi/v2",
    			Verb:              "goodverb",
    		},
    		User: ui,
    	}
    	checkRules(t, true, reqRN, []flowcontrol.PolicyRulesWithSubjects{{
    		Subjects: []flowcontrol.Subject{{Kind: flowcontrol.SubjectKindUser,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/embedding_pipelining.mlir

        // backward_ops
        %res_b = "tf.Identity"(%res_t) {_embedding_pipelining = "backward", _replication_info = "repl_info"} : (tensor<i32>) -> tensor<i32>
    
        // non_tpu_ops
        %res_n = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
    
        return %res_n : tensor<i32>
      }
      func.func private @while_cond(%arg0: tensor<i32>) -> tensor<i1> {
        %0 = "tf.Less"(%arg0, %arg0) : (tensor<i32>, tensor<i32>) -> tensor<i1>
        return %0 : tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  3. src/net/http/fcgi/child.go

    	pw        *io.PipeWriter
    	reqId     uint16
    	params    map[string]string
    	buf       [1024]byte
    	rawParams []byte
    	keepConn  bool
    }
    
    // envVarsContextKey uniquely identifies a mapping of CGI
    // environment variables to their values in a request context
    type envVarsContextKey struct{}
    
    func newRequest(reqId uint16, flags uint8) *request {
    	r := &request{
    		reqId:    reqId,
    		params:   map[string]string{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. cmd/metacache-stream_test.go

    	}
    
    	want = want[:0]
    	entries, err = r.readN(0, false, true, false, "")
    	if err != nil {
    		t.Fatal(err, entries.len())
    	}
    	if entries.len() != len(want) {
    		t.Fatal("unexpected length:", entries.len(), "want:", len(want))
    	}
    
    	// Reload.
    	r = loadMetacacheSample(t)
    	defer r.Close()
    	entries, err = r.readN(0, false, true, false, "")
    	if err != nil {
    		t.Fatal(err, entries.len())
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 15K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTransport.java

        protected Request peekKey() throws IOException {
            int n;
            do {
                if ((n = readn( in, sbuf, 0, 4 )) < 4)
                    return null;
            } while (sbuf[0] == (byte)0x85);  /* Dodge NetBIOS keep-alive */
                                                       /* read smb header */
            if ((n = readn( in, sbuf, 4, 32 )) < 32)
                return null;
            if (log.level >= 4) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  6. src/net/http/fcgi/fcgi_test.go

    			continue
    		}
    		if rec.h.Id != test.reqId {
    			t.Errorf("%s: got request ID %d expected %d", test.desc, rec.h.Id, test.reqId)
    			continue
    		}
    		if !bytes.Equal(content, test.content) {
    			t.Errorf("%s: read wrong content", test.desc)
    			continue
    		}
    		buf.Reset()
    		c := newConn(&nilCloser{buf})
    		w := newWriter(c, test.recType, test.reqId)
    		if _, err := w.Write(test.content); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. src/io/io_test.go

    		buf := make([]byte, contentSize+1)
    		readN, err := tmpfile.ReadAt(buf, off+at)
    		if err != EOF {
    			t.Fatalf("ReadAt failed: %v", err)
    		}
    		readContent := string(buf[:contentSize])
    		if writeN != int64(readN) || writeN != contentSize || readContent != content {
    			t.Fatalf("%s:: WriteAt(%s, %d) error. \ngot n: %v, content: %s \nexpected n: %v, content: %v",
    				position, content, at, readN, readContent, contentSize, content)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/x86/ssa.go

    		if v.Op == ssa.Op386DIVLU || v.Op == ssa.Op386MODLU ||
    			v.Op == ssa.Op386DIVWU || v.Op == ssa.Op386MODWU {
    			c := s.Prog(x86.AXORL)
    			c.From.Type = obj.TYPE_REG
    			c.From.Reg = x86.REG_DX
    			c.To.Type = obj.TYPE_REG
    			c.To.Reg = x86.REG_DX
    		}
    
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = x
    
    		// signed division, rest of the check for -1 case
    		if j != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  9. cmd/metacache-stream.go

    			}
    			r.err = err
    			return err
    		}
    	}
    }
    
    // readN will return all the requested number of entries in order
    // or all if n < 0.
    // Will return io.EOF if end of stream is reached.
    // If requesting 0 objects nil error will always be returned regardless of at end of stream.
    // Use peek to determine if at end of stream.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix.go

    	l := len(tcpReq) - 2
    	tcpReq[0] = byte(l >> 8)
    	tcpReq[1] = byte(l)
    	return id, udpReq, tcpReq, nil
    }
    
    func checkResponse(reqID uint16, reqQues dnsmessage.Question, respHdr dnsmessage.Header, respQues dnsmessage.Question) bool {
    	if !respHdr.Response {
    		return false
    	}
    	if reqID != respHdr.ID {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top