Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for yyy (0.02 sec)

  1. src/go/printer/testdata/declarations.golden

    	const (
    		zzzzzz	= 1
    		z	= 2
    		zzz	= 3
    	)
    	// some entries have a type
    	const (
    		xxxxxx			= 1
    		x			= 2
    		xxx			= 3
    		yyyyyyyy	float	= iota
    		yyyy			= "bar"
    		yyy
    		yy	= 2
    	)
    }
    
    func _() {
    	// no entry has a type
    	var (
    		zzzzzz	= 1
    		z	= 2
    		zzz	= 3
    	)
    	// no entry has a value
    	var (
    		_	int
    		_	float
    		_	string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  2. src/runtime/crash_test.go

    // Test that panic message is not clobbered.
    // See issue 30150.
    func TestDoublePanic(t *testing.T) {
    	output := runTestProg(t, "testprog", "DoublePanic", "GODEBUG=clobberfree=1")
    	wants := []string{"panic: XXX", "panic: YYY"}
    	for _, want := range wants {
    		if !strings.Contains(output, want) {
    			t.Errorf("output:\n%s\n\nwant output containing: %s", output, want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    You can have attributes on both the requested dependency _or_ the substitute and the substitution is not limited to `platform`: you can actually specify the whole set of dependency attributes using the `variant` notation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top