Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for lastmod (0.17 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

            private static final String PRIORITY_ELEMENT = "priority";
    
            private static final String CHANGEFREQ_ELEMENT = "changefreq";
    
            private static final String LASTMOD_ELEMENT = "lastmod";
    
            private static final String LOC_ELEMENT = "loc";
    
            private static final String URL_ELEMENT = "url";
    
            private SitemapSet sitemapSet;
    
            private SitemapUrl sitemapUrl;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/check.go

    				if m == nil {
    					continue
    				}
    				if lastmem[b.ID] != nil && lastmem[b.ID] != m {
    					f.Fatalf("two live memory values in %s: %s and %s", b, lastmem[b.ID], m)
    				}
    				lastmem[b.ID] = m
    			}
    		}
    	}
    	// Propagate last live memory through storeless blocks.
    	for {
    		changed := false
    		for _, b := range f.Blocks {
    			if lastmem[b.ID] != nil {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/net/http/httputil/persist.go

    		return nil, errClosed
    	}
    	r := sc.r
    	lastbody := sc.lastbody
    	sc.lastbody = nil
    	sc.mu.Unlock()
    
    	// Make sure body is fully consumed, even if user does not call body.Close
    	if lastbody != nil {
    		// body.Close is assumed to be idempotent and multiple calls to
    		// it should return the error that its first invocation
    		// returned.
    		err = lastbody.Close()
    		if err != nil {
    			sc.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. cmd/bucket-stats.go

    type ReplicationLastHour struct {
    	Totals  [60]AccElem
    	LastMin int64
    }
    
    // Merge data of two ReplicationLastHour structure
    func (l ReplicationLastHour) merge(o ReplicationLastHour) (merged ReplicationLastHour) {
    	if l.LastMin > o.LastMin {
    		o.forwardTo(l.LastMin)
    		merged.LastMin = l.LastMin
    	} else {
    		l.forwardTo(o.LastMin)
    		merged.LastMin = o.LastMin
    	}
    
    	for i := range merged.Totals {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

    using DQ = quantfork::DequantizeCastOp;
    
    template <typename LstmOp>
    LogicalResult GetLstmProperty(LstmOp op,
                                  operator_property::OpVariant* lstm_variant,
                                  operator_property::OperatorProperty* op_property,
                                  int activation_number_of_bits = 8) {
      if (llvm::isa<TFL::LSTMOp>(op.getOperation())) {
        lstm_variant->op_code = tflite::BuiltinOperator_LSTM;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. src/go/printer/printer.go

    				p.impliedSemi = false
    			}
    			p.lastTok = token.ILLEGAL
    			continue
    
    		case *ast.Ident:
    			data = x.Name
    			impliedSemi = true
    			p.lastTok = token.IDENT
    
    		case *ast.BasicLit:
    			data = x.Value
    			isLit = true
    			impliedSemi = true
    			p.lastTok = x.Kind
    
    		case token.Token:
    			s := x.String()
    			if mayCombine(p.lastTok, s[0]) {
    				// the previous and the current token must be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/lstm_utils_test.cc

      EXPECT_EQ(it->getName().getStringRef(),
                mlir::func::ReturnOp::getOperationName());
      it++;  // tensor_cast
      it++;  // lstm
      EXPECT_EQ(it->getName().getStringRef(),
                mlir::TFL::LSTMOp::getOperationName());
      EXPECT_EQ(it->getNumOperands(), 24);
      EXPECT_EQ(it->getNumResults(), 1);
      // cifg = false, so input2input is not None.
      EXPECT_FALSE(mlir::isa<NoneType>(it->getOperand(1).getType()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	doc.Blocks = removeEmptySections(doc.Blocks)
    	if len(doc.Blocks) > 0 && len(doc.Links) > 0 {
    		// Add a blank line to separate the links.
    		lastPos := lastBlock(doc).Pos()
    		lastPos.StartLine += 2
    		lastPos.EndLine += 2
    		doc.Blocks = append(doc.Blocks, &md.Empty{Position: lastPos})
    	}
    	return doc, nil
    }
    
    // stdlibPackage returns the standard library package for the given filename.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/printer.go

    	return strings.HasPrefix(text, "//")
    }
    
    func (p *printer) addWhitespace(kind ctrlSymbol, text string) {
    	p.pending = append(p.pending, whitespace{p.lastTok, kind /*text*/})
    	switch kind {
    	case semi:
    		p.lastTok = _Semi
    	case newline:
    		p.lastTok = 0
    		// TODO(gri) do we need to handle /*-style comments containing newlines here?
    	}
    }
    
    func (p *printer) flush(next token) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        # So hist_mids[i] = (lower_bound + bin_width / 2) + bin_width * i
        first_mid = self._lower_bound + self._bin_width / 2
        last_mid = first_mid + (self._num_bins - 1) * self._bin_width
        self._hist_mids = np.linspace(first_mid, last_mid, self._num_bins)
    
      def _get_dequantized_hist_mids_after_quantize(
          self, quant_min: float, quant_max: float
      ) -> np.ndarray:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top