Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for unambiguous (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
    
                task ambiguous(type: Consumer) {
                    // reference cannot be resolved by type as multiple services with the given type exist
                    doLast {
                        counter.get()
                    }
                }
            """
            enableStableConfigurationCache()
    
            when:
            fails 'ambiguous'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    //
    // resolveQueries starts by resolving one module version from each
    // unambiguous pathSet attached to the given queries.
    //
    // If no unambiguous query results in a change to the build list,
    // resolveQueries revisits the ambiguous query candidates and resolves them
    // arbitrarily in order to guarantee forward progress.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. 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)
Back to top