Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for Fits (0.59 sec)

  1. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    the refracting Angle of the Prism be turned upwards, so that the Paper may seem to be lifted upwards by the Refraction, its blue half will be lifted higher by the Refraction than its red half. But if the refracting Angle of the Prism be turned downward, so that the Paper may seem to be carried lower by the Refraction, its blue half will be carried something lower thereby than its red half. Wherefore in both Cases the Light which comes from the blue half of the Paper through the Prism to the Eye, does...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			// but in this unit test, we don't run NodeAffinity/TaintToleration Predicate, so node-b and node-x are
    			// still expected to be fits;
    			// the fact that node-a fits can prove the underlying logic works
    			name: "incoming pod has nodeAffinity, pods spread as 2/~1~/~0~/3, hence node-a fits",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				NodeAffinityIn("node", []string{"node-a", "node-y"}).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    	ft   uint8
    	f3t  uint8
    	tt   uint8
    	code uint8
    	op   [4]uint8
    }
    
    const (
    	Yxxx = iota
    	Ynone
    	Yi0 // $0
    	Yi1 // $1
    	Yu2 // $x, x fits in uint2
    	Yi8 // $x, x fits in int8
    	Yu8 // $x, x fits in uint8
    	Yu7 // $x, x in 0..127 (fits in both int8 and uint8)
    	Ys32
    	Yi32
    	Yi64
    	Yiauto
    	Yal
    	Ycl
    	Yax
    	Ycx
    	Yrb
    	Yrl
    	Yrl32 // Yrl on 32-bit system
    	Yrf
    	Yf0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    // x is known to be a bitcon
    // a bitcon is a sequence of n ones at low bits (i.e. 1<<n-1), right rotated
    // by R bits, and repeated with period of 64, 32, 16, 8, 4, or 2.
    // it is encoded in logical instructions with 3 bitfields
    // N (1 bit) : R (6 bits) : S (6 bits), where
    // N=1           -- period=64
    // N=0, S=0xxxxx -- period=32
    // N=0, S=10xxxx -- period=16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Less8  (Const8  <t> [math.MaxInt8 -1]) x) => (Eq8  x (Const8  <t> [math.MaxInt8 ]))
    
    // Ands clear bits. Ors set bits.
    // If a subsequent Or will set all the bits
    // that an And cleared, we can skip the And.
    // This happens in bitmasking code like:
    //   x &^= 3 << shift // clear two old bits
    //   x  |= v << shift // set two new bits
    // when shift is a small constant and v ends up a constant 3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    	op_RISBG   uint32 = 0xEC55 // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS
    	op_RISBGN  uint32 = 0xEC59 // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS
    	op_RISBHG  uint32 = 0xEC5D // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS HIGH
    	op_RISBLG  uint32 = 0xEC51 // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS LOW
    	op_RLL     uint32 = 0xEB1D // FORMAT_RSY1       ROTATE LEFT SINGLE LOGICAL (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    implementation must:
    </p>
    
    <ul>
    	<li>Represent integer constants with at least 256 bits.</li>
    
    	<li>Represent floating-point constants, including the parts of
    	    a complex constant, with a mantissa of at least 256 bits
    	    and a signed binary exponent of at least 16 bits.</li>
    
    	<li>Give an error if unable to represent an integer constant
    	    precisely.</li>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    			nodes:     []string{"node1", "node2"},
    			pod:       st.MakePod().Name("ignore").UID("ignore").Obj(),
    			wantNodes: sets.New("node1", "node2"),
    			name:      "test 2",
    			wErr:      nil,
    		},
    		{
    			// Fits on a node where the pod ID matches the node name
    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterFilterPlugin("MatchFilter", tf.NewMatchFilterPlugin),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. src/net/http/server.go

    //
    // The new Handler calls h.ServeHTTP to handle each request, but if a
    // call runs for longer than its time limit, the handler responds with
    // a 503 Service Unavailable error and the given message in its body.
    // (If msg is empty, a suitable default message will be sent.)
    // After such a timeout, writes by h to its [ResponseWriter] will return
    // [ErrHandlerTimeout].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    moment to be trampled under its feet, ran round the thistle
    again; then the puppy began a series of short charges at the
    stick, running a very little way forwards each time and a long
    way back, and barking hoarsely all the while, till at last it sat
    down a good way off, panting, with its tongue hanging out of its
    mouth, and its great eyes half shut.
    
      This seemed to Alice a good opportunity for making her escape;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top