Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for ss_size (0.12 sec)

  1. src/runtime/sys_darwin.go

    	if new != nil && new.ss_flags&_SS_DISABLE != 0 && new.ss_size == 0 {
    		// Despite the fact that Darwin's sigaltstack man page says it ignores the size
    		// when SS_DISABLE is set, it doesn't. sigaltstack returns ENOMEM
    		// if we don't give it a reasonable size.
    		// ref: http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20140421/214296.html
    		new.ss_size = 32768
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/runtime/signal_unix.go

    		return false
    	}
    
    	var st stackt
    	sigaltstack(nil, &st)
    	stsp := uintptr(unsafe.Pointer(st.ss_sp))
    	if st.ss_flags&_SS_DISABLE == 0 && sp >= stsp && sp < stsp+st.ss_size {
    		setGsignalStack(&st, gsigStack)
    		return true
    	}
    
    	if sp >= mp.g0.stack.lo && sp < mp.g0.stack.hi {
    		// The signal was delivered on the g0 stack.
    		// This can happen when linked with C code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      // exist in both lhs and rhs.
      const int64_t lhs_size =
          ProdShapeWithIndexInTuple<0>(lhs_type.getShape(), dnums.lhs_rhs);
      const int64_t rhs_size =
          ProdShapeWithIndexInTuple<1>(rhs_type.getShape(), dnums.lhs_rhs);
      lhs_shape.push_back(lhs_size);
      rhs_shape.push_back(rhs_size);
    
      for (auto i : dnums.lhs_rhs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. cmd/endpoint-ellipses.go

    			return nil, config.ErrInvalidNumberOfErasureEndpoints(nil).Msg(msg)
    		}
    
    		// Final set size with all the symmetry accounted for.
    		setSize = commonSetDriveCount(commonSize, setCounts)
    	}
    
    	// Check whether setSize is with the supported range.
    	if !isValidSetSize(setSize) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. cmd/batch-handlers_gen.go

    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *BatchJobRequest) Msgsize() (s int) {
    	s = 1 + 3 + msgp.StringPrefixSize + len(z.ID) + 5 + msgp.StringPrefixSize + len(z.User) + 8 + msgp.TimeSize + 10
    	if z.Replicate == nil {
    		s += msgp.NilSize
    	} else {
    		s += z.Replicate.Msgsize()
    	}
    	s += 10
    	if z.KeyRotate == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api.cc

        case tensorflow::AttrValue::kList: {
          // String
          if (const int s_size = default_value.list().s_size()) {
            absl::InlinedVector<const void*, 4> values_vector;
            values_vector.reserve(s_size);
            absl::InlinedVector<size_t, 4> lengths_vector;
            lengths_vector.reserve(s_size);
            for (int i = 0; i < s_size; ++i) {
              const string& v = default_value.list().s(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	if err := r.ReadAt(0, &seg); err != nil {
    		return err
    	}
    	seg.Offset = uint64(dwarfstart)
    
    	if compressedSects != nil {
    		var segSize uint64
    		for _, newSect := range compressedSects {
    			segSize += newSect.Size
    		}
    		seg.Filesz = segSize
    	} else {
    		seg.Filesz = dwarfsize
    	}
    
    	// We want the DWARF segment to be considered non-loadable, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. internal/grid/handlers.go

    	if c == nil {
    		if h.ignoreNilConn {
    			return resp, nil
    		}
    		return resp, ErrDisconnected
    	}
    	payload, err := req.MarshalMsg(GetByteBufferCap(req.Msgsize()))
    	if err != nil {
    		return resp, err
    	}
    	switch any(req).(type) {
    	case *MSS, *URLValues:
    		ctx = context.WithValue(ctx, TraceParamsKey{}, req)
    	case *NoPayload, *Bytes:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. src/compress/flate/deflate.go

    		index := j * 256
    		end := index + 256 + minMatchLength - 1
    		if end > n {
    			end = n
    		}
    		toCheck := d.window[index:end]
    		dstSize := len(toCheck) - minMatchLength + 1
    
    		if dstSize <= 0 {
    			continue
    		}
    
    		dst := d.hashMatch[:dstSize]
    		d.bulkHasher(toCheck, dst)
    		for i, val := range dst {
    			di := i + index
    			hh := &d.hashHead[val&hashMask]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

        // Attribute for that proto, and finally splat the Attribute.
    
        TensorProto tensor_copy = input_tensor;
        auto* shape = tensor_copy.mutable_tensor_shape();
        shape->clear_dim();
        shape->add_dim()->set_size(1);
    
        TF_ASSIGN_OR_RETURN(ElementsAttr single_attr,
                            ConvertTensorProto(tensor_copy, builder));
    
        llvm::SmallVector<int64_t> original_dimensions;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top