Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for setEnum (0.16 sec)

  1. src/crypto/internal/hpke/hpke_test.go

    					seqNum, err := strconv.Atoi(enc["sequence number"])
    					if err != nil {
    						t.Fatal(err)
    					}
    					context.seqNum = uint128{lo: uint64(seqNum)}
    					expectedNonce := mustDecodeHex(t, enc["nonce"])
    					// We can't call nextNonce, because it increments the sequence number,
    					// so just compute it directly.
    					computedNonce := context.seqNum.bytes()[16-context.aead.NonceSize():]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/crypto/internal/hpke/hpke.go

    }
    
    func (s *Sender) nextNonce() []byte {
    	nonce := s.seqNum.bytes()[16-s.aead.NonceSize():]
    	for i := range s.baseNonce {
    		nonce[i] ^= s.baseNonce[i]
    	}
    	// Message limit is, according to the RFC, 2^95+1, which
    	// is somewhat confusing, but we do as we're told.
    	if s.seqNum.bitLen() >= (s.aead.NonceSize()*8)-1 {
    		panic("message limit reached")
    	}
    	s.seqNum = s.seqNum.addOne()
    	return nonce
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/jar.go

    				}
    			}
    			continue
    		}
    		if submap == nil {
    			submap = make(map[string]entry)
    		}
    
    		if old, ok := submap[id]; ok {
    			e.Creation = old.Creation
    			e.seqNum = old.seqNum
    		} else {
    			e.Creation = now
    			e.seqNum = j.nextSeqNum
    			j.nextSeqNum++
    		}
    		e.LastAccess = now
    		submap[id] = e
    		modified = true
    	}
    
    	if modified {
    		if len(submap) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DefaultDaemonConnectorTest.groovy

                return { connection } as ConnectCompletion
            }
        }
    
        def createAddress(int i) {
            new Address() {
                int getNum() { i }
    
                String getDisplayName() { getNum() }
            }
        }
    
        def createConnector() {
            def connector = Spy(DefaultDaemonConnector, constructorArgs: [
                    new EmbeddedDaemonRegistry(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/crypto/x509/oid.go

    	firstComponent.Add(firstComponent, second)
    
    	der := appendBase128BigInt(make([]byte, 0, 32), firstComponent)
    
    	for nextComponentExists {
    		var strNum string
    		strNum, oid, nextComponentExists = strings.Cut(oid, ".")
    		b, ok := big.NewInt(0).SetString(strNum, 10)
    		if !ok {
    			return errInvalidOID
    		}
    		der = appendBase128BigInt(der, b)
    	}
    
    	o.der = der
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/time/format.go

    		case stdHour:
    			hour, value, err = getnum(value, false)
    			if hour < 0 || 24 <= hour {
    				rangeErrString = "hour"
    			}
    		case stdHour12, stdZeroHour12:
    			hour, value, err = getnum(value, std == stdZeroHour12)
    			if hour < 0 || 12 < hour {
    				rangeErrString = "hour"
    			}
    		case stdMinute, stdZeroMinute:
    			min, value, err = getnum(value, std == stdZeroMinute)
    			if min < 0 || 60 <= min {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. cmd/object-api-utils.go

    func getCompressedOffsets(oi ObjectInfo, offset int64, decrypt func([]byte) ([]byte, error)) (compressedOffset int64, partSkip int64, firstPart int, decryptSkip int64, seqNum uint32) {
    	var skipLength int64
    	var cumulativeActualSize int64
    	var firstPartIdx int
    	for i, part := range oi.Parts {
    		cumulativeActualSize += part.ActualSize
    		if cumulativeActualSize <= offset {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        Operation* op, PatternRewriter& rewriter) const {
      auto tf_unpack_op = cast<TF::UnpackOp>(op);
    
      auto input = tf_unpack_op.getValue();
      auto num = rewriter.getI32IntegerAttr(tf_unpack_op.getNum());
      // Axis can be negative.
      auto axis = rewriter.getI32IntegerAttr(tf_unpack_op.getAxis());
    
      rewriter.replaceOpWithNewOp<UnpackOp>(op, tf_unpack_op.getOutput().getTypes(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (1)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Sec  uint32
    	Usec uint32
    }
    
    type TpacketHdrV1 struct {
    	Block_status        uint32
    	Num_pkts            uint32
    	Offset_to_first_pkt uint32
    	Blk_len             uint32
    	Seq_num             uint64
    	Ts_first_pkt        TpacketBDTS
    	Ts_last_pkt         TpacketBDTS
    }
    
    type TpacketReq struct {
    	Block_size uint32
    	Block_nr   uint32
    	Frame_size uint32
    	Frame_nr   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (!result_type || !result_type.hasStaticShape()) {
          return failure();
        }
    
        DenseIntElementsAttr num_attr;
        if (!matchPattern(op.getNum(), m_Constant(&num_attr))) {
          return rewriter.notifyMatchFailure(op, "Num must be a constant scalar");
        }
    
        if (num_attr.begin() == num_attr.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (1)
Back to top