Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 384 for minipay (0.26 sec)

  1. src/math/cosh_s390x.s

    DATA coshtab<>+104(SB)/8, $0.118665304327406698E-01
    DATA coshtab<>+112(SB)/8, $0.214434994118118914E-01
    DATA coshtab<>+120(SB)/8, $0.322580645161290314E-01
    GLOBL coshtab<>+0(SB), RODATA, $128
    
    // Minimax polynomial approximations
    DATA coshe2<>+0(SB)/8, $0.500000000000004237e+00
    GLOBL coshe2<>+0(SB), RODATA, $8
    DATA coshe3<>+0(SB)/8, $0.166666666630345592e+00
    GLOBL coshe3<>+0(SB), RODATA, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpecTest.groovy

        }
    
        def "RuntimeExcpetion is thrown if a version lower than the minimal tested is specified"() {
            given:
            def spec = new GradleVersionSpec("3.0")
    
            when:
            spec.toSpec("<1.3")
    
            then:
            thrown(RuntimeException)
        }
    
        def "no RuntimeExcpetion is thrown if a version higher than the minimal tested is specified"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/BUILD

        visibility = ["//visibility:public"],
        deps = [
            # The purpose of the benchmark library is to support building an aot
            # binary with minimal dependencies, to demonstrate small binary sizes.
            #
            # KEEP THE DEPENDENCIES MINIMAL.
            "//tensorflow/core:framework_lite",
        ],
    )
    
    cc_library(
        name = "benchmark_extra_android",
        tags = [
            "manual",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/math/sin_s390x.s

    GLOBL sincosxpi2m<>+0(SB), RODATA, $8
    DATA sincosxpi2h<>+0(SB)/8, $0.157079632679489656e+01
    GLOBL sincosxpi2h<>+0(SB), RODATA, $8
    DATA sincosrpi2<>+0(SB)/8, $0.636619772367581341e+00
    GLOBL sincosrpi2<>+0(SB), RODATA, $8
    
    // Minimax polynomial approximations
    DATA sincosc0<>+0(SB)/8, $0.100000000000000000E+01
    GLOBL sincosc0<>+0(SB), RODATA, $8
    DATA sincosc1<>+0(SB)/8, $-.499999999999999833E+00
    GLOBL sincosc1<>+0(SB), RODATA, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 04:25:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/firsthit_restmapper.go

    		}
    		errors = append(errors, err)
    	}
    
    	return nil, collapseAggregateErrors(errors)
    }
    
    func (m FirstHitRESTMapper) Reset() {
    	m.MultiRESTMapper.Reset()
    }
    
    // collapseAggregateErrors returns the minimal errors.  it handles empty as nil, handles one item in a list
    // by returning the item, and collapses all NoMatchErrors to a single one (since they should all be the same)
    func collapseAggregateErrors(errors []error) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. tests/integration/operator/uninstall_test.go

    )
    
    const deletionTimeout = 5 * time.Minute
    
    func TestReconcileDelete(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			// For positive casse, use minimal profile, iop file will be deleted
    			t.NewSubTest("delete-iop-success").Run(func(t framework.TestContext) {
    				istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. src/regexp/testdata/nullsubexpr.dat

    E	([^a]*)*	b		(0,1)(0,1)
    E	SAME		bbbbbb		(0,6)(0,6)
    E	SAME		aaaaaa		(0,0)(0,0)
    E	([^ab]*)*	ccccxx		(0,6)(0,6)
    E	SAME		ababab		(0,0)(0,0)
    
    E	((z)+|a)*	zabcde		(0,2)(1,2)
    
    #{E	a+?		aaaaaa		(0,1)	no *? +? minimal match ops
    #E	(a)		aaa		(0,1)(0,1)
    #E	(a*?)		aaa		(0,0)(0,0)
    #E	(a)*?		aaa		(0,0)
    #E	(a*?)*?		aaa		(0,0)
    #}
    
    B	\(a*\)*\(x\)		x	(0,1)(0,0)(0,1)
    B	\(a*\)*\(x\)		ax	(0,2)(0,1)(1,2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typeparams/normalize.go

    // if it is a single union containing no interface terms, and is minimal in the
    // sense that removing any term changes the set of types satisfying the
    // constraint. It is left as a proof for the reader that, modulo sorting, there
    // is exactly one such normalized form.
    //
    // Because the minimal representation always takes this form, StructuralTerms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

        validations:
          required: false
      - type: textarea
        id: steps-to-reproduce
        attributes:
          label: Steps to Reproduce
          description: |
            Provide a [minimal, self-contained example](https://en.wikipedia.org/wiki/Minimal_reproducible_example) project demonstrating the problem as a GitHub repository or an attached archive.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/scheme.go

    // serializer for the rest.client with options, status and the like.
    func UnstructuredPlusDefaultContentConfig() rest.ContentConfig {
    	// TODO: scheme.Codecs here should become "pkg/apis/server/scheme" which is the minimal core you need
    	// to talk to a kubernetes server
    	jsonInfo, _ := runtime.SerializerInfoForMediaType(scheme.Codecs.SupportedMediaTypes(), runtime.ContentTypeJSON)
    
    	jsonInfo.Serializer = dynamicCodec{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 21 15:58:15 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top