Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 223 for f$ (0.04 sec)

  1. src/crypto/ecdsa/testdata/SigVer.rsp.bz2

    d9fa54d0300a6ac74936 Result = F (1 - Message changed) Msg = fd5d8331e5cdd7f205bd Qx = f4fd02f3d224727e156a Qy = e7aa734828ef326259f9 R = 9f57e28f69d2ebd96f6d S = 8cfe716488479e04500c Result = F (4 - Q changed) Msg = 0f05382e2df448462075 Qx = 0fdb8faf52d8f46229cc Qy = 96c8d1946528bdd2c14c R = c53c0ce7d408278552a5 S = be7453a12693ce7812fe Result = F (4 - Q changed) Msg = 826ca168835f0d8b3005 Qx = 240431da69703b32ba2a Qy = 13beb5198ee00abdcfb2 R = ad03bdf64e3450407a2a S = 7b55db9abf2045e2dc7c Result = F (1 - Message...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 93.2K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    d<c;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;f<g;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,f=0,h=[];if(w(a))for(d=a.length;f<d;f++)e=b(a[f],f,c),null!=e&&h.push(e);else for(f in a)e=b(a[f],f,c),null!=e&&h.push(e);return g.apply([],h)},guid:1,proxy:function(a,b){var c,d,e;if("string"==typeof b&&(c=a[b],b=a,a=c),r.isFunction(a))return d=f.call(arguments,2),e=function(){return a.apply(b||this,d.concat(f.call(argume...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  3. src/math/all_test.go

    			t.Errorf("Ldexp(%g, %d) = %g, want %g", frexp[i].f, frexp[i].i, f, vf[i])
    		}
    	}
    	for i := 0; i < len(vffrexpSC); i++ {
    		if f := Ldexp(frexpSC[i].f, frexpSC[i].i); !alike(vffrexpSC[i], f) {
    			t.Errorf("Ldexp(%g, %d) = %g, want %g", frexpSC[i].f, frexpSC[i].i, f, vffrexpSC[i])
    		}
    	}
    	for i := 0; i < len(vfldexpSC); i++ {
    		if f := Ldexp(vfldexpSC[i].f, vfldexpSC[i].i); !alike(ldexpSC[i], f) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},gu...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    	slicePtr interface{}
    }
    
    func (f *frameworkImpl) getExtensionPoints(plugins *config.Plugins) []extensionPoint {
    	return []extensionPoint{
    		{&plugins.PreFilter, &f.preFilterPlugins},
    		{&plugins.Filter, &f.filterPlugins},
    		{&plugins.PostFilter, &f.postFilterPlugins},
    		{&plugins.Reserve, &f.reservePlugins},
    		{&plugins.PreScore, &f.preScorePlugins},
    		{&plugins.Score, &f.scorePlugins},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    		// parameterized functions
    		{`package p0; func f[T any](T) {}; var _ = f[int]`, `f`, `func[T any](T)`},
    		{`package p1; func f[T any](T) {}; var _ = f[int]`, `f[int]`, `func(int)`},
    		{`package p2; func f[T any](T) {}; func _() { f(42) }`, `f`, `func(int)`},
    		{`package p3; func f[T any](T) {}; func _() { f[int](42) }`, `f[int]`, `func(int)`},
    		{`package p4; func f[T any](T) {}; func _() { f[int](42) }`, `f`, `func[T any](T)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    		// parameterized functions
    		{`package p0; func f[T any](T) {}; var _ = f[int]`, `f`, `func[T any](T)`},
    		{`package p1; func f[T any](T) {}; var _ = f[int]`, `f[int]`, `func(int)`},
    		{`package p2; func f[T any](T) {}; func _() { f(42) }`, `f`, `func(int)`},
    		{`package p3; func f[T any](T) {}; func _() { f[int](42) }`, `f[int]`, `func(int)`},
    		{`package p4; func f[T any](T) {}; func _() { f[int](42) }`, `f`, `func[T any](T)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. src/os/os_test.go

    	}
    }
    
    func TestFTruncate(t *testing.T) {
    	t.Parallel()
    
    	f := newFile("TestFTruncate", t)
    	defer Remove(f.Name())
    	defer f.Close()
    
    	checkSize(t, f, 0)
    	f.Write([]byte("hello, world\n"))
    	checkSize(t, f, 13)
    	f.Truncate(10)
    	checkSize(t, f, 10)
    	f.Truncate(1024)
    	checkSize(t, f, 1024)
    	f.Truncate(0)
    	checkSize(t, f, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. src/compress/flate/testdata/huffman-rand-max.in

    "_��Y�H8�F� �W�b�2Fi��� ~*l�yh���U �y.]�����M��_���D��tedn�w��c��^�4�g$����]FV��>"�Գ��<����3�����5���_(sXsZd�Lp����0r�`%�
    L165:P����԰nO2B|YpV�򇈎f�T�D�\��s|Ԉ���7i��~�Yܺ
    L��U�H� ��\q��[�)Z�'�>Ʉ��pi#�}e���?o�ii�lf�1�ˀU^\*&�7�5�P��齆B�/��/�Sbv%�j<o��Љ_���zf��Q:l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

    // TF-DAG: %[[pc_1:.*]] = "tf.PartitionedCall"(%[[pc_0]], %[[cst_2]], %[[cst_4]], %[[cst_5]], %[[cst_8]], %[[cst_9]], %[[cst_6]], %[[cst_5]]) <{config = "", config_proto = "", executor_type = "", f = @quantized_matmul_fn_1}
    // TF-DAG: %[[pc_2:.*]] = "tf.PartitionedCall"(%[[pc_1]], %[[cst_6]], %[[cst_5]]) <{config = "", config_proto = "", executor_type = "", f = @dequantize_i8}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
Back to top