Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,102 for mymath (1.15 sec)

  1. operator/pkg/object/testdata/invalid.yaml

    apiVersion: v1
    metadata:
      name: myconfigmap
      namespace: default
    data:
      mydata: |-
        First line of data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 132 bytes
    - Viewed (0)
  2. operator/pkg/object/testdata/well-formed-with-space.out.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 147 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/jacoco-application/groovy/build.gradle

    // tag::application-configuration[]
    plugins {
        id 'application'
        id 'jacoco'
    }
    
    application {
        mainClass = 'org.gradle.MyMain'
    }
    
    jacoco {
        applyTo run
    }
    
    tasks.register('applicationCodeCoverageReport', JacocoReport) {
        executionData run
        sourceSets sourceSets.main
    }
    // end::application-configuration[]
    
    repositories {
        mavenCentral()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 359 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/jacoco-application/kotlin/build.gradle.kts

    // tag::application-configuration[]
    plugins {
        application
        jacoco
    }
    
    application {
        mainClass = "org.gradle.MyMain"
    }
    
    jacoco {
        applyTo(tasks.run.get())
    }
    
    tasks.register<JacocoReport>("applicationCodeCoverageReport") {
        executionData(tasks.run.get())
        sourceSets(sourceSets.main.get())
    }
    // end::application-configuration[]
    
    repositories {
        mavenCentral()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 382 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializerTest.groovy

            then:
            result.projectPath == projectPath
            result.libraryName == libraryName
    
            where:
            projectPath | libraryName
            ':myPath'   | null
            ':myPath'   | 'myLib'
            ':myPath'   | null
            ':myPath'   | 'myLib'
        }
    
        def "serializes version constraint"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. guava-gwt/src/com/google/common/math/Math.gwt.xml

    David P. Baker <******@****.***> 1641482883 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_main_import_path.txt

    # Go test -cover should behave the same way.
    go test -cover .
    stdout 'ok\s+mainwithtest\s+\S+\s+coverage:'
    ! stdout 'ok\s+main\s+.*'
    
    
    -- go.mod --
    module mainwithtest
    
    go 1.20
    -- mymain.go --
    package main
    
    func main() {
    	println("hi mom")
    }
    
    func Mainer() int {
    	return 42
    }
    -- main_test.go --
    package main
    
    import "testing"
    
    func TestCoverage(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/math/atan.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    /*
    	Floating-point arctangent.
    */
    
    // The original C code, the long comment, and the constants below were
    // from http://netlib.sandia.gov/cephes/cmath/atan.c, available from
    // http://www.netlib.org/cephes/cmath.tgz.
    // The go code is a version of the original C.
    //
    // atan.c
    // Inverse circular tangent (arctangent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

                  apiVersion: v1
                  fieldPath: metadata.name
            - name: POD_NAMESPACE
              valueFrom:
                fieldRef:
                  apiVersion: v2
                  fieldPath: metadata.myPath
            - name: SERVICE_ACCOUNT
              valueFrom:
                fieldRef:
                  apiVersion: v1
                  fieldPath: spec.serviceAccountName
            - name: KUBECONFIG
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. src/math/tanh.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // The original C code, the long comment, and the constants
    // below were from http://netlib.sandia.gov/cephes/cmath/sin.c,
    // available from http://www.netlib.org/cephes/cmath.tgz.
    // The go code is a simplified version of the original C.
    //      tanh.c
    //
    //      Hyperbolic tangent
    //
    // SYNOPSIS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top