Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 213 for spcs (0.04 sec)

  1. src/cmd/compile/internal/types2/check_test.go

    func testFiles(t *testing.T, filenames []string, srcs [][]byte, colDelta uint, manual bool, opts ...func(*Config)) {
    	enableAlias := true
    	opts = append(opts, func(conf *Config) { conf.EnableAlias = enableAlias })
    	testFilesImpl(t, filenames, srcs, colDelta, manual, opts...)
    	if !manual {
    		enableAlias = false
    		testFilesImpl(t, filenames, srcs, colDelta, manual, opts...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/internal/trace/internal/testgen/go122/trace.go

    	names           map[string]event.Type
    	specs           []event.Spec
    	events          []raw.Event
    	gens            []*Generation
    	validTimestamps bool
    
    	// Expectation state.
    	bad      bool
    	badMatch *regexp.Regexp
    }
    
    // NewTrace creates a new trace.
    func NewTrace() *Trace {
    	ver := version.Go122
    	return &Trace{
    		names:           event.Names(ver.Specs()),
    		specs:           ver.Specs(),
    		validTimestamps: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

    filegroup(
        name = "extra_files",
        srcs = glob(
            [
                "**/importer_test_min_max.cc.mlir",
                "**/reshape.mlir",
            ],
        ),
    )
    
    # A binary to inject min/max to a tflite model.
    # A file check command is used to verify the imported result from this
    # binary format.
    tf_native_cc_binary(
        name = "importer_test_min_max",
        srcs = [
            "importer_test_min_max.cc",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/trace/pprof.go

    		return rec
    	}
    	// Slow path: the stack may still be in the map.
    
    	// Grab the stack's PCs as the source-of-truth.
    	var pcs [pprofMaxStack]uint64
    	pcsForStack(stack, &pcs)
    
    	// Check the source-of-truth.
    	var rec *traceviewer.ProfileRecord
    	if existing, ok := m.pcs[pcs]; ok {
    		// In the map.
    		rec = m.stacks[existing]
    		delete(m.stacks, existing)
    	} else {
    		// Not in the map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/go/doc/example.go

    					}
    					if len(ns.Names) > 0 {
    						specs = append(specs, &ns)
    					}
    				}
    			}
    			if len(specs) > 0 {
    				// Constant with iota? Keep it all.
    				if d.Tok == token.CONST && containsIota {
    					ds = append(ds, d)
    				} else {
    					// Synthesize a GenDecl with just the Specs we need.
    					nd := *d // copy the GenDecl
    					nd.Specs = specs
    					if len(specs) == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. src/internal/trace/batchcursor.go

    func readTimedBaseEvent(b []byte, e *baseEvent) (int, timestamp, error) {
    	// Get the event type.
    	typ := event.Type(b[0])
    	specs := go122.Specs()
    	if int(typ) >= len(specs) {
    		return 0, 0, fmt.Errorf("found invalid event type: %v", typ)
    	}
    	e.typ = typ
    
    	// Get spec.
    	spec := &specs[typ]
    	if len(spec.Args) == 0 || !spec.IsTimedEvent {
    		return 0, 0, fmt.Errorf("found event without a timestamp: type=%v", typ)
    	}
    	n := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/internal/trace/raw/textreader.go

    	}
    	v := version.Version(rawv)
    	if !v.Valid() {
    		return nil, fmt.Errorf("unknown or unsupported Go version 1.%d", v)
    	}
    	tr.v = v
    	tr.specs = v.Specs()
    	tr.names = event.Names(tr.specs)
    	for _, r := range line {
    		if !unicode.IsSpace(r) {
    			return nil, fmt.Errorf("encountered unexpected non-space at the end of the header: %q", line)
    		}
    	}
    	return tr, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. build/pause/Makefile

    # For more information, see: https://github.com/kubernetes/kubernetes/pull/91452
    BIN.linux = pause
    BIN.windows = pause wincat
    BIN := ${BIN.${OS}}
    SRCS.linux = linux/pause.c
    SRCS.windows = windows/pause.c
    SRCS := ${SRCS.${OS}}
    
    EXTENSION.linux =
    EXTENSION.windows = .exe
    EXTENSION := ${EXTENSION.${OS}}
    
    # The manifest command is still experimental as of Docker 18.09.3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. tensorflow/BUILD

    # filegroup(
    #     name = "copybara_library",
    #     srcs = glob(
    #         [
    #             "*.bara.sky",
    #             "*.dic",
    #             "*.ftrcp",
    #         ],
    #         exclude = [
    #             "copy.bara.sky",
    #         ],
    #     ),
    #     visibility = ["//visibility:public"],
    # )
    #
    # filegroup(
    #     name = "copybara_config",
    #     srcs = ["copy.bara.sky"],
    #     data = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/sparsity/BUILD

        packages = [
            "//learning/brain/experimental/mlir/...",
            "//tensorflow/compiler/mlir/lite/...",
            "//tensorflow/lite/...",
        ],
    )
    
    cc_library(
        name = "sparsify_model",
        srcs = [
            "sparsify_model.cc",
        ],
        hdrs = [
            "sparsify_model.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/lite:common",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top