Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for unambiguous (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

        }
    
        def "demonstrate ambiguous graph variant without single disambiguating value selection failure for project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

                if (expected == null && result) {
                    throw new Exception("Expected an ambiguous result, but got $result")
                }
                assert result == [expected] as Set
            } catch (VariantSelectionException e) {
                if (expected == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

            failure.assertHasErrorOutput(UnknownPluginException.class.getName())
        }
    
        @Issue("https://github.com/gradle/gradle/issues/24609")
        def "when plugin request fails due to ambiguous plugin variants available, gets default error message"() {
            given:
            def producer = file('producer')
            def consumer = file('consumer')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    // resolvePorts takes a Gateway port, and resolves it to the port that will actually be listened on.
    // When legacyGatewaySelector=false, then the gateway is directly referencing a Service. In this
    // case, the translation is un-ambiguous - we just find the matching port and return the targetPort
    // When legacyGatewaySelector=true things are a bit more complex, as we support referencing a Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. src/internal/trace/summary_test.go

    			},
    			goroutines: []trace.GoID{7},
    		},
    	}
    	for id, summary := range summaries {
    		want, ok := wantTasks[id]
    		if !ok {
    			continue
    		}
    		if id != summary.ID {
    			t.Errorf("ambiguous task %d (or %d?): field likely set incorrectly", id, summary.ID)
    		}
    
    		// Check parent.
    		if want.parent != nil {
    			if summary.Parent == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. cmd/sts-handlers.go

    		return
    	}
    
    	// We have to establish a TLS connection and the
    	// client must provide exactly one client certificate.
    	// Otherwise, we don't have a certificate to verify or
    	// the policy lookup would ambiguous.
    	if r.TLS == nil {
    		writeSTSErrorResponse(ctx, w, ErrSTSInsecureConnection, errors.New("No TLS connection attempt"))
    		return
    	}
    
    	// A client may send a certificate chain such that we end up
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/util.go

    	sc := armCondCode[(s&C_SCOND)^C_SCOND_XOR]
    	if s&C_SBIT != 0 {
    		sc += ".S"
    	}
    	if s&C_PBIT != 0 {
    		sc += ".P"
    	}
    	if s&C_WBIT != 0 {
    		sc += ".W"
    	}
    	if s&C_UBIT != 0 { /* ambiguous with FBIT */
    		sc += ".U"
    	}
    	return sc
    }
    
    func (p *Prog) String() string {
    	if p == nil {
    		return "<nil Prog>"
    	}
    	if p.Ctxt == nil {
    		return "<Prog without ctxt>"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top