Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for flipper (0.14 sec)

  1. docs/works_with_okhttp.md

     * [CWAC-NetSecurity](https://github.com/commonsguy/cwac-netsecurity): Simplifying Secure Internet Access.
     * [Failsafe](https://failsafe.dev/okhttp/): Fault tolerance and resilience patterns.
     * [Flipper](https://fbflipper.com/): A desktop debugging platform for mobile developers.
     * [Fresco](https://github.com/facebook/fresco): An Android library for managing images and the memory they use.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jun 08 18:15:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"flatbread":                            "\U0001fad3",
    	"fleur_de_lis":                         "\u269c\ufe0f",
    	"flight_arrival":                       "\U0001f6ec",
    	"flight_departure":                     "\U0001f6eb",
    	"flipper":                              "\U0001f42c",
    	"floppy_disk":                          "\U0001f4be",
    	"flower_playing_cards":                 "\U0001f3b4",
    	"flushed":                              "\U0001f633",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/SkipFirstTextStreamTest.groovy

    class SkipFirstTextStreamTest extends Specification {
    
        def "skips the first emission"() {
            given:
            def delegate = Mock(TextStream)
            def skipper = new SkipFirstTextStream(delegate)
    
            when:
            skipper.text("a")
            skipper.text("b")
            skipper.endOfStream(null)
    
            then:
            1 * delegate.text("b")
            0 * delegate.text(_)
    
            and:
            1 * delegate.endOfStream(null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:13 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/edwards25519.go

    	YminusX.Subtract(&p.y, &p.x)
    
    	PP.Multiply(&YplusX, &q.YminusX) // flipped sign
    	MM.Multiply(&YminusX, &q.YplusX) // flipped sign
    	TT2d.Multiply(&p.t, &q.T2d)
    	ZZ2.Multiply(&p.z, &q.Z)
    
    	ZZ2.Add(&ZZ2, &ZZ2)
    
    	v.X.Subtract(&PP, &MM)
    	v.Y.Add(&PP, &MM)
    	v.Z.Subtract(&ZZ2, &TT2d) // flipped sign
    	v.T.Add(&ZZ2, &TT2d)      // flipped sign
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_json.txt

    stdout '"Action":"skip","Package":"m/empty/pkg"'
    
    # Check skipper for output and skip actions
    stdout '"Action":"start","Package":"m/skipper"'
    stdout '"Action":"output","Package":"m/skipper","Test":"Test","Output":"--- SKIP:'
    stdout '"Action":"skip","Package":"m/skipper","Test":"Test"'
    
    # Check that starts were ordered properly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/command_headers.go

    // CommandHeaderRoundTripper adds a layer around the standard
    // round tripper to add Request headers before delegation. Implements
    // the go standard library "http.RoundTripper" interface.
    type CommandHeaderRoundTripper struct {
    	Delegate http.RoundTripper
    	Headers  map[string]string
    }
    
    // CommandHeaderRoundTripper adds Request headers before delegating to standard
    // round tripper. These headers are kubectl command headers which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. cmd/prune-junit-xml/prunexml.go

    					head := testcase.SkipMessage.Message[:maxBytes/2]
    					tail := testcase.SkipMessage.Message[len(testcase.SkipMessage.Message)-maxBytes/2:]
    					testcase.SkipMessage.Message = head + "[...clipped...]" + tail
    				}
    			}
    			if testcase.Failure != nil {
    				if len(testcase.Failure.Contents) > maxBytes {
    					fmt.Printf("clipping failure message in test case : %s\n", testcase.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/ReaderInputStream.java

       * is perpetually "flipped" (unencoded characters between position and limit).
       */
      private CharBuffer charBuffer;
    
      /**
       * byteBuffer holds encoded characters that have not yet been sent to the caller of the input
       * stream. When encoding it is "unflipped" (encoded bytes between 0 and position) and when
       * draining it is flipped (undrained bytes between position and limit).
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/ReaderInputStream.java

       * is perpetually "flipped" (unencoded characters between position and limit).
       */
      private CharBuffer charBuffer;
    
      /**
       * byteBuffer holds encoded characters that have not yet been sent to the caller of the input
       * stream. When encoding it is "unflipped" (encoded bytes between 0 and position) and when
       * draining it is flipped (undrained bytes between position and limit).
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/optimize.td

    include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    // Remove redundant `CastOp` to int8 if the input is properly clipped.
    def RemoveRedundantCastOps : Pat<
      (TF_CastOp:$root_cast
        (TF_CastOp:$i8_cast
          (TF_ClipByValueOp:$clip $input, $min_value, $max_value),
          ConstBoolAttrFalse:$truncate2),
        ConstBoolAttrFalse:$truncate1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top