Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for rend (0.05 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    				zRS(op_STM, uint32(rstart), uint32(rend), uint32(reg), uint32(offset), asm)
    			} else {
    				zRSY(op_STMY, uint32(rstart), uint32(rend), uint32(reg), uint32(offset), asm)
    			}
    		case ASTMG:
    			zRSY(op_STMG, uint32(rstart), uint32(rend), uint32(reg), uint32(offset), asm)
    		}
    
    	case 98: // load multiple
    		rstart := p.Reg
    		rend := p.To.Reg
    		offset := c.regoff(&p.From)
    		reg := p.From.Reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      if (!tail_type || !full_type || !tail_type.hasRank() ||
          !full_type.hasRank() || tail_type.getRank() > full_type.getRank())
        return false;
      auto i1 = tail_type.getShape().rbegin(), e1 = tail_type.getShape().rend();
      auto i2 = full_type.getShape().rbegin();
      return std::equal(i1, e1, i2);
    }
    
    // This function removes explicit broadcasting on type1 and returns whether if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    inline std::vector<int64_t> GetPaddedShape(ArrayRef<int64_t> old_shape,
                                               int new_dims) {
      std::vector<int64_t> new_shape(new_dims, 1);
      std::copy_backward(old_shape.begin(), old_shape.end(), new_shape.end());
      return new_shape;
    }
    
    // Helper method that given and 'current_index' representing
    // index in broadcasted tensor, get the index in the flat original tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      // rank of 2 (no batch dimension).
      SmallVector<int64_t, 2> new_filter_shape(filter_shape.rbegin(),
                                               filter_shape.rend());
    
      // Construct the value array of transposed filter. Assumes 2D matrix.
      SmallVector<int8_t> new_filter_values(filter_values.size(), /*Value=*/0);
      for (int i = 0; i < filter_shape[0]; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    // request being received piecemeal. Deadlines can be set and enforced in both
    // Read and Write.
    type slowTestConn struct {
    	// over multiple calls to Read, time.Durations are slept, strings are read.
    	script []any
    	closec chan bool
    
    	mu     sync.Mutex // guards rd/wd
    	rd, wd time.Time  // read, write deadline
    	noopConn
    }
    
    func (c *slowTestConn) SetDeadline(t time.Time) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    		ctxt.xdefine("_edata", ldr.SymType(edata), ldr.SymValue(edata))
    		ctxt.xdefine("_end", ldr.SymType(end), ldr.SymValue(end))
    		ldr.SetSymSect(ldr.Lookup("_etext", 0), ldr.SymSect(etext))
    		ldr.SetSymSect(ldr.Lookup("_edata", 0), ldr.SymSect(edata))
    		ldr.SetSymSect(ldr.Lookup("_end", 0), ldr.SymSect(end))
    	}
    
    	if ctxt.IsPPC64() && ctxt.IsElf() {
    		// Resolve .TOC. symbols for all objects. Only one TOC region is supported. If a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    func TestCreateCertificateRequest(t *testing.T) {
    	random := rand.Reader
    
    	ecdsa256Priv, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
    	if err != nil {
    		t.Fatalf("Failed to generate ECDSA key: %s", err)
    	}
    
    	ecdsa384Priv, err := ecdsa.GenerateKey(elliptic.P384(), rand.Reader)
    	if err != nil {
    		t.Fatalf("Failed to generate ECDSA key: %s", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    	switch i {
    	case LevelDefault:
    		return "Default"
    	case LevelReadUncommitted:
    		return "Read Uncommitted"
    	case LevelReadCommitted:
    		return "Read Committed"
    	case LevelWriteCommitted:
    		return "Write Committed"
    	case LevelRepeatableRead:
    		return "Repeatable Read"
    	case LevelSnapshot:
    		return "Snapshot"
    	case LevelSerializable:
    		return "Serializable"
    	case LevelLinearizable:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    }
    
    // resolveRecursiveReadOnly resolves the recursive read-only mount mode.
    func resolveRecursiveReadOnly(m v1.VolumeMount, runtimeSupportsRRO bool) (bool, error) {
    	if m.RecursiveReadOnly == nil || *m.RecursiveReadOnly == v1.RecursiveReadOnlyDisabled {
    		return false, nil
    	}
    	if !m.ReadOnly {
    		return false, fmt.Errorf("volume %q requested recursive read-only mode, but it is not read-only", m.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * exists and is not marked read-only. By default, resources are
     * considered to be read-only and therefore for <code>smb1://</code>,
     * <code>smb1://workgroup/</code>, and <code>smb1://server/</code> resources
     * will be read-only.
     *
     * @return  <code>true</code> if the resource exists is not marked
     *          read-only
     */
    
        public boolean canWrite() throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top