Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for coshe1 (0.1 sec)

  1. src/math/cosh_s390x.s

    // 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
    DATA coshe4<>+0(SB)/8, $0.416666664838056960e-01
    GLOBL coshe4<>+0(SB), RODATA, $8
    DATA coshe5<>+0(SB)/8, $0.833349307718286047e-02
    GLOBL coshe5<>+0(SB), RODATA, $8
    DATA coshe6<>+0(SB)/8, $0.138926439368309441e-02
    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. tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache_test.cc

      EXPECT_FALSE(cache.Lookup(key, &value));
    }
    
    TEST(ExpiringLRUCacheTest, MaxEntries) {
      // max_age of 0 means nothing will be cached.
      tf_gcs_filesystem::ExpiringLRUCache<int> cache1(0, 4);
      cache1.Insert("a", 1);
      int value = 0;
      EXPECT_FALSE(cache1.Lookup("a", &value));
      // Now set max_age = 1 and verify the LRU eviction logic.
      tf_gcs_filesystem::ExpiringLRUCache<int> cache2(1, 4);
      cache2.Insert("a", 1);
      cache2.Insert("b", 2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 19:31:22 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  3. test/fixedbugs/issue40367.go

    // run
    
    // Copyright 2020 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 main
    
    func case1() {
    	rates := []int32{1,2,3,4,5,6}
    	var sink [6]int
    	j := len(sink)
    	for star, _ := range rates {
    		if star+1 < 1 {
    			panic("")
    		}
    		j--
    		sink[j] = j
    	}
    }
    
    func case2() {
    	i := 0
    	var sink [3]int
    	j := len(sink)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 17:23:11 UTC 2020
    - 526 bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

            def access = newAccess(OnDemand)
    
            when:
            def cache1 = access.newCache(IndexedCacheParameters.of('cache', String.class, Integer.class))
            def cache2 = access.newCache(IndexedCacheParameters.of('cache', String.class, Integer.class))
    
            then:
            cache1 == cache2
    
            cleanup:
            access?.close()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/math/cmplx/cmath_test.go

    		}
    	}
    }
    func TestCosh(t *testing.T) {
    	for i := 0; i < len(vc); i++ {
    		if f := Cosh(vc[i]); !cSoclose(cosh[i], f, 2e-15) {
    			t.Errorf("Cosh(%g) = %g, want %g", vc[i], f, cosh[i])
    		}
    	}
    	for _, v := range coshSC {
    		if f := Cosh(v.in); !cAlike(v.want, f) {
    			t.Errorf("Cosh(%g) = %g, want %g", v.in, f, v.want)
    		}
    		if math.IsNaN(imag(v.in)) || math.IsNaN(imag(v.want)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  6. src/regexp/syntax/perl_groups.go

    package syntax
    
    var code1 = []rune{ /* \d */
    	0x30, 0x39,
    }
    
    var code2 = []rune{ /* \s */
    	0x9, 0xa,
    	0xc, 0xd,
    	0x20, 0x20,
    }
    
    var code3 = []rune{ /* \w */
    	0x30, 0x39,
    	0x41, 0x5a,
    	0x5f, 0x5f,
    	0x61, 0x7a,
    }
    
    var perlGroup = map[string]charGroup{
    	`\d`: {+1, code1},
    	`\D`: {-1, code1},
    	`\s`: {+1, code2},
    	`\S`: {-1, code2},
    	`\w`: {+1, code3},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/clean_binary.txt

    # Build something to create the executable, including several cases
    [short] skip
    
    # --------------------- clean executables -------------------------
    
    # case1: test file-named executable 'main'
    env GO111MODULE=on
    
    ! exists main$GOEXE
    go build main.go
    exists -exec main$GOEXE
    go clean
    ! exists main$GOEXE
    
    # case2: test module-named executable 'a.b.c'
    ! exists a.b.c$GOEXE
    go build
    exists -exec a.b.c$GOEXE
    go clean
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 13:36:17 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/scope_test.go

    	"testing"
    )
    
    func TestGetAffinity(t *testing.T) {
    	tcases := []struct {
    		name          string
    		containerName string
    		podUID        string
    		expected      TopologyHint
    	}{
    		{
    			name:          "case1",
    			containerName: "nginx",
    			podUID:        "0aafa4c4-38e8-11e9-bcb1-a4bf01040474",
    			expected:      TopologyHint{},
    		},
    	}
    	for _, tc := range tcases {
    		scope := scope{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 11:44:15 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/kotlin/antLoadfileResources/gradle.manifesto.txt

    Make the impossible possible, make the possible easy and make the easy elegant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 111 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/antLoadfileWithMethod/kotlin/antLoadfileResources/gradle.manifesto.txt

    Make the impossible possible, make the possible easy and make the easy elegant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 111 bytes
    - Viewed (0)
Back to top