Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 204 for unambiguous (0.45 sec)

  1. .github/ISSUE_TEMPLATE.md

    ## Possible Solution
    <!--- Not obligatory, but suggest a fix/reason for the bug, -->
    <!--- or ideas how to implement the addition or change -->
    
    ## Steps to Reproduce (for bugs)
    <!--- Provide a link to a live example, or an unambiguous set of steps to -->
    <!--- reproduce this bug. Include code to reproduce, if relevant -->
    <!--- and make sure you have followed https://github.com/minio/minio/tree/release/docs/debugging to capture relevant logs -->
    
    1.
    2.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 29 00:04:16 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_ambiguous_pkg.txt

    go get example.net/ambiguous/nested/pkg@v0.1.0 example.net/ambiguous/nested@none
    go list -m all
    ! stdout '^example.net/ambiguous/nested '
    stdout '^example.net/ambiguous v0.1.0$'
    
    
    # The user should also be able to fix it by *downgrading* the conflicting module
    # away.
    
    cp go.mod.orig go.mod
    go mod edit -require=example.net/ambiguous@v0.1.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_util.h

    // executable by XLA, whereas a cluster that contains operations placed on the
    // CPU and also operations placed on the GPU will be compiled into a GPU
    // executable.
    //
    // Returns a non-OK Status if no unambiguous choice of device exists.
    //
    // We choose the device using the following rules:
    //
    //  - It is an error for `device_names` to contain more than one device of the
    //    same type.
    //  - GPU is preferred over CPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/bug_report.md

    ## Possible Solution
    <!--- Not obligatory, but suggest a fix/reason for the bug, -->
    <!--- or ideas how to implement the addition or change -->
    
    ## Steps to Reproduce (for bugs)
    <!--- Provide a link to a live example, or an unambiguous set of steps to -->
    <!--- reproduce this bug. Include code to reproduce, if relevant -->
    <!--- and make sure you have followed https://github.com/minio/minio/tree/release/docs/debugging to capture relevant logs -->
    
    1.
    2.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:37:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    go list -f $MODFMT example.net/ambiguous/nested/pkg
    stdout '^example.net/ambiguous/nested v0\.1\.0$'
    ! stderr .
    
    go mod edit -go=1.16
    go list -m all
    cmp stdout all-m.txt
    
    ! go list -f $MODFMT example.net/ambiguous/nested/pkg
    stderr '^ambiguous import: found package example\.net/ambiguous/nested/pkg in multiple modules:\n\texample\.net/ambiguous v0\.1\.0 \(.*\)\n\texample\.net/ambiguous/nested v0\.1\.0 \(.*\)\n'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/match.go

    							count++
    						}
    					}
    					if count == 1 {
    						return tt, nil
    					}
    					// Even if we fail to find a unique Region, we might have
    					// an unambiguous script.
    					if goodScript {
    						t.ScriptID = tt.ScriptID
    					}
    				}
    			}
    		}
    	} else {
    		// Search matches for und-script.
    		if t.ScriptID != 0 {
    			x := likelyScript[t.ScriptID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    	}
    	if pos, ok := seen.Get(key, val, level); ok {
    		alsoPos := pass.Fset.Position(pos)
    		alsoPos.Column = 0
    
    		// Make the "also at" position relative to the current position,
    		// to ensure that all warnings are unambiguous and correct. For
    		// example, via anonymous struct fields, it's possible for the
    		// two fields to be in different packages and directories.
    		thisPos := pass.Fset.Position(field.Pos())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. src/encoding/xml/typeinfo.go

    		}
    		finfo.parents = parents[:len(parents)-1]
    	}
    
    	// If the field type has an XMLName field, the names must match
    	// so that the behavior of both marshaling and unmarshaling
    	// is straightforward and unambiguous.
    	if finfo.flags&fElement != 0 {
    		ftyp := f.Type
    		xmlname := lookupXMLName(ftyp)
    		if xmlname != nil && xmlname.name != finfo.name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. 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)
Back to top