Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for unambiguous (0.24 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // Import paths are intermediate between module paths and file paths: we allow
    // disallow characters that would be confusing or ambiguous as arguments to
    // 'go get' (such as '@' and ' ' ), but allow certain characters that are
    // otherwise-unambiguous on the command line and historically used for some
    // binary names (such as '++' as a suffix for compiler binaries and wrappers).
    func importPathOK(r rune) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/coderepo.go

    				// can't use the version from the tag directly: since the tag is not
    				// canonical, it could be ambiguous. For example, tags v0.0.1+a and
    				// v0.0.1+b might both exist and refer to different revisions.
    				//
    				// The tag is otherwise valid for the module, so we can at least use it as
    				// the base of an unambiguous pseudo-version.
    				//
    				// If multiple tags match, tagToVersion will canonicalize them to the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    		// We may need to add a filename extension from PATHEXT
    		// or verify an extension that is already present.
    		// Since the path is absolute, its extension should be unambiguous
    		// and independent of cmd.Dir, and we can go ahead and cache the lookup now.
    		//
    		// Note that we cannot add an extension here for relative paths, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

            failure.assertHasResolutions(
                GET_TASKS,
                NAME_EXPANSION,
                INFO_DEBUG,
                SCAN,
                GET_HELP
            )
        }
    
        def "reports ambiguous task"() {
            enableProblemsApiCheck()
            createDirs("a", "b")
            settingsFile << """
                rootProject.name = 'test'
                include 'a', 'b'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top