Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 340 for pattern1 (0.16 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // StableHLO and converts them to TFLite ops that accept or produce uniform
      // quantized types. They only target a specific set of models that contain
      // "decomposed" quantized ops produced from the framework level. This is why
      // they are placed right after the `LegalizeTFXlaCallModuleToStablehloPass`
      // because the quantization patterns should be identified before any
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    func substituteValues(patterns []string, varName string, values []string) []string {
    	ret := make([]string, 0, len(patterns))
    	for _, pattern := range patterns {
    		if !strings.Contains(pattern, varName) {
    			ret = append(ret, pattern)
    			continue
    		}
    
    		for _, val := range values {
    			ret = append(ret, strings.Replace(pattern, varName, val, -1))
    		}
    	}
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// x-kubernetes-int-or-string specifies that this value is
    	// either an integer or a string. If this is true, an empty
    	// type is allowed and type as child of anyOf is permitted
    	// if following one of the following patterns:
    	//
    	// 1) anyOf:
    	//    - type: integer
    	//    - type: string
    	// 2) allOf:
    	//    - anyOf:
    	//      - type: integer
    	//      - type: string
    	//    - ... zero or more
    	XIntOrString bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

      });
    
      RewritePatternSet patterns(ctx);
      PopulateLegalizeTfQuantizationPatterns(ctx, &patterns);
      if (failed(applyPartialConversion(func, target, std::move(patterns)))) {
        signalPassFailure();
      }
    }
    
    }  // namespace
    
    void PopulateLegalizeTfQuantizationPatterns(MLIRContext *context,
                                                RewritePatternSet *patterns) {
      patterns
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. src/runtime/os3_plan9.go

    		print("sighandler: note is longer than ERRMAX\n")
    		goto Throw
    	}
    	if isAbortPC(c.pc()) {
    		// Never turn abort into a panic.
    		goto Throw
    	}
    	// See if the note matches one of the patterns in sigtab.
    	// Notes that do not match any pattern can be handled at a higher
    	// level by the program but will otherwise be ignored.
    	flags = _SigNotify
    	for sig, t = range sigtable {
    		if stringslite.HasPrefix(notestr, t.name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. internal/event/rules.go

    type Rules map[string]TargetIDSet
    
    // Add - adds pattern and target ID.
    func (rules Rules) Add(pattern string, targetID TargetID) {
    	rules[pattern] = NewTargetIDSet(targetID).Union(rules[pattern])
    }
    
    // MatchSimple - returns true one of the matching object name in rules.
    func (rules Rules) MatchSimple(objectName string) bool {
    	for pattern := range rules {
    		if wildcard.MatchSimple(pattern, objectName) {
    			return true
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray_test.go

    	"os"
    	"path/filepath"
    	"regexp"
    	"slices"
    	"sort"
    	"strings"
    	"testing"
    )
    
    type testCase struct {
    	name     string   // name of test case
    	source   string   // source to index
    	patterns []string // patterns to lookup
    }
    
    var testCases = []testCase{
    	{
    		"empty string",
    		"",
    		[]string{
    			"",
    			"foo",
    			"(foo)",
    			".*",
    			"a*",
    		},
    	},
    
    	{
    		"all a's",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    the Go repository.
    
    An import path is a pattern if it includes one or more "..." wildcards,
    each of which can match any string, including the empty string and
    strings containing slashes. Such a pattern expands to all package
    directories found in the GOPATH trees with names matching the
    patterns.
    
    To make common patterns more convenient, there are two special cases.
    First, /... at the end of the pattern can match an empty string,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisScriptSourceModuleResolveCandidatesTestGenerated.java

    import org.jetbrains.kotlin.test.TestMetadata;
    import org.junit.jupiter.api.Nested;
    import org.junit.jupiter.api.Test;
    
    import java.io.File;
    import java.util.regex.Pattern;
    
    /** This class is generated by {@link org.jetbrains.kotlin.generators.tests.analysis.api.GenerateAnalysisApiTestsKt}. DO NOT MODIFY MANUALLY */
    @SuppressWarnings("all")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  10. pkg/test/framework/suite.go

    	if !config.Parsed() {
    		config.Parse()
    	}
    
    	return resource.SettingsFromCommandLine(testID)
    }
    
    func mustCompileAll(patterns ...string) []*regexp.Regexp {
    	out := make([]*regexp.Regexp, 0, len(patterns))
    	for _, pattern := range patterns {
    		out = append(out, regexp.MustCompile(pattern))
    	}
    
    	return out
    }
    
    func appendToFile(contents []byte, file string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top