Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for lastmod (2.87 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. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

            filter.getCommandLineIncludePatterns().each { includePattern ->
                def lastDot = includePattern.lastIndexOf(".")
                if (lastDot == -1) {
                    classOnlyFilters.add(includePattern)
                } else {
                    def className = includePattern.substring(0, lastDot)
                    def methodName = includePattern.substring(lastDot + 1)
                    if (Character.isLowerCase(methodName.charAt(0))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/transforms/merge_control_flow.cc

                it2->getElseBranch());
          }
        }
      }
    }
    
    // Move ops in the `moved_ops_ordered` after `last_op`.
    void MoveOpsAfter(Operation* last_op,
                      llvm::SmallVector<Operation*, 8>& moved_ops_ordered) {
      auto block = last_op->getBlock();
      absl::flat_hash_set<Operation*> all_moved_ops(moved_ops_ordered.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  10. 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)
Back to top