Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for unambiguous (0.22 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

      func.return %1: tensor<2xi32>
    }
    
    // CHECK-LABEL: func @broadcast_add
    // TODO(laurenzo): Change this to a (5 + 2x1) shaped add to make the check
    // patterns unambiguous and more interesting (once broadcastable trait is
    // fixed upstream).
    func.func @broadcast_add(%arg0: tensor<1xi32>, %arg1: tensor<1x2xi32>) -> tensor<1x2xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    	return andTerm(items)
    }
    
    // valueEscaper prefixes \,= characters with a backslash
    var valueEscaper = strings.NewReplacer(
    	// escape \ characters
    	`\`, `\\`,
    	// then escape , and = characters to allow unambiguous parsing of the value in a fieldSelector
    	`,`, `\,`,
    	`=`, `\=`,
    )
    
    // EscapeValue escapes an arbitrary literal string for use as a fieldSelector value
    func EscapeValue(s string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/query.go

    	path string
    
    	// pkgMods is a set of zero or more modules, each of which contains the
    	// package with the indicated path. Due to the requirement that imports be
    	// unambiguous, only one such module can be in the build list, and all others
    	// must be excluded.
    	pkgMods []module.Version
    
    	// mod is either the zero Version, or a module that does not contain any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation.go

    		return fmt.Errorf("domain name %q invalid (top level domain %q cannot be all-numeric)", domain, topLevelDomain)
    	}
    	for i, label := range parts {
    		// Allow the last part to be empty, for unambiguous names like `istio.io.`
    		if i == len(parts)-1 && label == "" {
    			return nil
    		}
    		if !labels.IsDNS1123Label(label) {
    			return fmt.Errorf("domain name %q invalid (label %q invalid)", domain, label)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/validation_test.go

    			name:  "standard FQDN",
    		},
    		{
    			fqdn:  "istio.io.",
    			valid: true,
    			name:  "unambiguous FQDN",
    		},
    		{
    			fqdn:  "istio-pilot.istio-system.svc.cluster.local",
    			valid: true,
    			name:  "standard kubernetes FQDN",
    		},
    		{
    			fqdn:  "istio-pilot.istio-system.svc.cluster.local.",
    			valid: true,
    			name:  "unambiguous kubernetes FQDN",
    		},
    	}
    	for _, tt := range tests {
    		tt := tt
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  6. src/os/exec/lp_windows_test.go

    	}
    }
    
    // installExe installs a copy of the test executable
    // at the given location, creating directories as needed.
    //
    // (We use a copy instead of just a symlink to ensure that os.Executable
    // always reports an unambiguous path, regardless of how it is implemented.)
    func installExe(t *testing.T, dstPath string) {
    	src, err := os.Open(exePath(t))
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer src.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. src/regexp/onepass.go

    		visitQueue   = newQueue(len(p.Inst))
    		check        func(uint32, []bool) bool
    		onePassRunes = make([][]rune, len(p.Inst))
    	)
    
    	// check that paths from Alt instructions are unambiguous, and rebuild the new
    	// program as a onepass program
    	check = func(pc uint32, m []bool) (ok bool) {
    		ok = true
    		inst := &p.Inst[pc]
    		if visitQueue.contains(pc) {
    			return
    		}
    		visitQueue.insert(pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/shell.go

    	if err != nil {
    		err = errors.New(cmdline[0] + ": " + err.Error())
    	}
    	return buf.Bytes(), err
    }
    
    // joinUnambiguously prints the slice, quoting where necessary to make the
    // output unambiguous.
    // TODO: See issue 5279. The printing of commands needs a complete redo.
    func joinUnambiguously(a []string) string {
    	var buf strings.Builder
    	for i, s := range a {
    		if i > 0 {
    			buf.WriteByte(' ')
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    dependencies {
        implementation("com.acme:example:1.0")  // <2>
    }
    ----
    =====
    ====
    <1> Property assignment
    <2> Function invocation
    
    While staying valid Groovy, it is now unambiguous and close to the Kotlin syntax, making it easier to then rename the script to turn it into a Gradle Kotlin DSL script.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo_test.go

    	// tag itself. (Otherwise, we would potentially have two different commits
    	// both named "v2.0.0+incompatible".) However, the tag is still valid semver
    	// and can still be used as the base for an unambiguous pseudo-version.
    	{
    		vcs:  "git",
    		path: "vcs-test.golang.org/git/odd-tags.git",
    		rev:  "v2.0.0+incompatible",
    		err:  `unknown revision v2.0.0`,
    	},
    	{
    		vcs:     "git",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top