Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for lastmod (0.34 sec)

  1. src/internal/dag/parse.go

    // A rulesParser parses the depsRules syntax described above.
    type rulesParser struct {
    	lineno   int
    	lastWord string
    	text     string
    }
    
    // syntaxError reports a parsing error.
    func (p *rulesParser) syntaxError(msg string) {
    	panic(syntaxError(fmt.Sprintf("parsing graph: line %d: syntax error: %s near %s", p.lineno, msg, p.lastWord)))
    }
    
    // nextList parses and returns a comma-separated list of names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/list.go

    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch/codehost"
    	"cmd/go/internal/modinfo"
    	"cmd/go/internal/search"
    	"cmd/internal/pkgpattern"
    
    	"golang.org/x/mod/module"
    )
    
    type ListMode int
    
    const (
    	ListU ListMode = 1 << iota
    	ListRetracted
    	ListDeprecated
    	ListVersions
    	ListRetractedVersions
    )
    
    // ListModules returns a description of the modules matching args, if known,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/go/types/typeparam.go

    // respective 64 bit atomic instructions are not available
    // on all platforms.
    var lastID atomic.Uint32
    
    // nextID returns a value increasing monotonically by 1 with
    // each call, starting with 1. It may be called concurrently.
    func nextID() uint64 { return uint64(lastID.Add(1)) }
    
    // A TypeParam represents a type parameter type.
    type TypeParam struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. tools/docker-builder/builder/crane.go

    	updates := make(chan v1.Update, 1000)
    	go func() {
    		lastLog := time.Time{}
    		for u := range updates {
    			if time.Since(lastLog) < time.Second && !(u.Total == u.Complete) {
    				// Limit to 1 log per-image per-second, unless it is the final log
    				continue
    			}
    			if u.Total == 0 {
    				continue
    			}
    			lastLog = time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. pkg/test/fakes/gce_metadata_server/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    .PHONY: build_and_push clean all
    
    MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
    MD_PATH := $(dir $(MKFILE_PATH))
    IMG ?= gcr.io/istio-testing/fake-gce-metadata
    
    # NOTE: TAG should be updated whenever changes are made in this directory
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/tools/op_quant_spec_getters_gen.cc

      // TODO(b/176258587): Move to OpTrait if this should be generalized.
      // Add special handling for LSTM.
      OUT(2) << "if (auto lstm_op = llvm::dyn_cast<TFL::LSTMOp>(op)) {\n";
      OUT(4) << "return GetLstmOpQuantSpec<TFL::LSTMOp>(lstm_op);\n";
      OUT(2) << "} else if (auto lstm_op = "
                "llvm::dyn_cast<TFL::UnidirectionalSequenceLSTMOp>(op)) {\n";
      OUT(4) << "return "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 11:18:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top