Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for printssa (0.2 sec)

  1. src/text/template/exec_test.go

    func TestEvalFieldErrors(t *testing.T) {
    	tests := []struct {
    		name, src string
    		value     any
    		want      string
    	}{
    		{
    			// Check that calling an invalid field on nil pointer
    			// prints a field error instead of a distracting nil
    			// pointer error. https://golang.org/issue/15125
    			"MissingFieldOnNil",
    			"{{.MissingField}}",
    			(*T)(nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //  Synopsys:
    //    GTEST_CHECK_(boolean_condition);
    //     or
    //    GTEST_CHECK_(boolean_condition) << "Additional message";
    //
    //    This checks the condition and if the condition is not satisfied
    //    it prints message about the condition violation, including the
    //    condition itself, plus additional message streamed into it, if any,
    //    and then it aborts the program. It aborts the program irrespective of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. src/go/build/build.go

    			// It does not exist, and printing errors about it confuses
    			// those users even more, because they think "sure ~ exists!".
    			// The go command diagnoses this situation and prints a
    			// useful error.
    			// On Windows, ~ is used in short names, such as c:\progra~1
    			// for c:\program files.
    			continue
    		}
    		all = append(all, p)
    	}
    	return all
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    but changes the default to select patch releases.
    
    When the -t and -u flags are used together, get will update
    test dependencies as well.
    
    The -x flag prints commands as they are executed. This is useful for
    debugging version control commands when a module is downloaded directly
    from a repository.
    
    For more about build flags, see 'go help build'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    		// Already enabled.
    		return true
    	}
    	if initialized {
    		// Initialized, not enabled.
    		return false
    	}
    
    	// Keep in sync with Init. Init does extra validation and prints warnings or
    	// exits, so it can't call this function directly.
    	env := cfg.Getenv("GO111MODULE")
    	switch env {
    	case "on", "":
    		return true
    	case "auto":
    		break
    	default:
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top