Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,102 for mymath (0.12 sec)

  1. src/cmd/compile/internal/syntax/nodes_test.go

    	// position of the first token of an individual
    	// declaration, independent of grouping.
    	{"ImportDecl", `import @"math"`},
    	{"ImportDecl", `import @mymath "math"`},
    	{"ImportDecl", `import @. "math"`},
    	{"ImportDecl", `import (@"math")`},
    	{"ImportDecl", `import (@mymath "math")`},
    	{"ImportDecl", `import (@. "math")`},
    
    	{"ConstDecl", `const @x`},
    	{"ConstDecl", `const @x = 0`},
    	{"ConstDecl", `const @x, y, z = 0, 1, 2`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.input

    import (
    	. "fmt"
    	"io"
    	"malloc"	// for the malloc count test only
    	"math"
    	"strings"
    	"testing"
    )
    
    // more import examples
    import (
    	"xxx"
    	"much_longer_name" // comment
    	"short_name" // comment
    )
    
    import (
    	_ "xxx"
    	"much_longer_name" // comment
    )
    
    import (
    	mymath "math"
    	"/foo/bar/long_package_path" // a comment
    )
    
    import (
    	"package_a" // comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  3. src/go/printer/testdata/declarations.golden

    import (
    	. "fmt"
    	"io"
    	"malloc"	// for the malloc count test only
    	"math"
    	"strings"
    	"testing"
    )
    
    // more import examples
    import (
    	"xxx"
    	"much_longer_name"	// comment
    	"short_name"		// comment
    )
    
    import (
    	_ "xxx"
    	"much_longer_name"	// comment
    )
    
    import (
    	mymath "math"
    	"/foo/bar/long_package_path"	// a comment
    )
    
    import (
    	"package_a"	// comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/jacoco-application/groovy/src/main/java/org/gradle/MyMain.java

    package org.gradle;
    
    import java.lang.String;
    
    public class MyMain{
    
        public static void main(String... args){
            new MyMain().someMethod();
        }
    
        private void someMethod(){
            System.out.println("Some output from 'MyMain'");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 252 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/jacoco-application/kotlin/src/main/java/org/gradle/MyMain.java

    package org.gradle;
    
    import java.lang.String;
    
    public class MyMain{
    
        public static void main(String... args){
            new MyMain().someMethod();
        }
    
        private void someMethod(){
            System.out.println("Some output from 'MyMain'");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 252 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/test-suite-plugin/kotlin/src/main/java/org/gradle/MyMain.java

     * limitations under the License.
     */
    
    package org.gradle;
    
    import java.lang.String;
    
    public class MyMain{
    
        public static void main(String... args){
            new MyMain().someMethod();
        }
    
        private void someMethod(){
            System.out.println("Some output from 'MyMain'");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 869 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/test-suite-plugin/groovy/src/main/java/org/gradle/MyMain.java

     * limitations under the License.
     */
    
    package org.gradle;
    
    import java.lang.String;
    
    public class MyMain{
    
        public static void main(String... args){
            new MyMain().someMethod();
        }
    
        private void someMethod(){
            System.out.println("Some output from 'MyMain'");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 869 bytes
    - Viewed (0)
  8. test/codegen/math.go

    	// ppc64x:"FMADD"
    	// riscv64:"FMADDD"
    	return math.FMA(x, y, z)
    }
    
    func fms(x, y, z float64) float64 {
    	// riscv64:"FMSUBD"
    	return math.FMA(x, y, -z)
    }
    
    func fnms(x, y, z float64) float64 {
    	// riscv64:"FNMSUBD",-"FNMADDD"
    	return math.FMA(-x, y, z)
    }
    
    func fnma(x, y, z float64) float64 {
    	// riscv64:"FNMADDD",-"FNMSUBD"
    	return math.FMA(x, -y, -z)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. src/runtime/internal/math/math.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    import "internal/goarch"
    
    const MaxUintptr = ^uintptr(0)
    
    // MulUintptr returns a * b and whether the multiplication overflowed.
    // On supported platforms this is an intrinsic lowered by the compiler.
    func MulUintptr(a, b uintptr) (uintptr, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:03:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultLibraryBinaryIdentifierTest.groovy

            then:
            defaultBuildComponentIdentifier.projectPath == ':myPath'
            defaultBuildComponentIdentifier.libraryName == 'myLib'
            defaultBuildComponentIdentifier.variant == 'api'
            defaultBuildComponentIdentifier.displayName == /project ':myPath' library 'myLib' variant 'api'/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top