Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for sponge (0.18 sec)

  1. src/runtime/mspanset.go

    	// growable spine that points to fixed-sized blocks. The spine
    	// can be accessed without locks, but adding a block or
    	// growing it requires taking the spine lock.
    	//
    	// Because each mspan covers at least 8K of heap and takes at
    	// most 8 bytes in the spanSet, the growth of the spine is
    	// quite limited.
    	//
    	// The spine and all blocks are allocated off-heap, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/scalar_test.go

    		t.Errorf("failed scalar->bytes->scalar round-trip: %v", err)
    	}
    
    	b := scalarMinusOneBytes
    	b[31] += 1
    	s := scOne
    	if out, err := s.SetCanonicalBytes(b[:]); err == nil {
    		t.Errorf("SetCanonicalBytes worked on a non-canonical value")
    	} else if s != scOne {
    		t.Errorf("SetCanonicalBytes modified its receiver")
    	} else if out != nil {
    		t.Errorf("SetCanonicalBytes did not return nil with an error")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/enumDeclArg.kt

    enum class Enum(val i: Int) {
        TEST(<expr>45</expr>),
        PROBE(45),
        SONDE(45)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 87 bytes
    - Viewed (0)
  4. src/runtime/proc_test.go

    			default:
    			}
    		}
    	}()
    
    	// Ping-pong b.N times
    	ping, pong := make(chan bool), make(chan bool)
    	go func() {
    		for j := 0; j < b.N; j++ {
    			pong <- <-ping
    		}
    		close(stop)
    		done <- true
    	}()
    	go func() {
    		for i := 0; i < b.N; i++ {
    			ping <- <-pong
    		}
    		done <- true
    	}()
    	b.ResetTimer()
    	ping <- true // Start ping-pong
    	<-stop
    	b.StopTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

        }
      }
    
      /**
       * Attempts to remove a single frame from a queue and send it. This prefers to write urgent pongs
       * before less urgent messages and close frames. For example it's possible that a caller will
       * enqueue messages followed by pongs, but this sends pongs followed by messages. Pongs are always
       * written in the order they were enqueued.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

        newWebSocket()
        clientListener.assertOpen()
        clientListener.assertFailure(
          SocketTimeoutException::class.java,
          "sent ping but didn't receive pong within 500ms (after 0 successful ping/pongs)",
        )
        latch.countDown()
        val elapsedUntilFailure = System.nanoTime() - openAtNanos
        assertThat(TimeUnit.NANOSECONDS.toMillis(elapsedUntilFailure).toDouble())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/enumDeclPrimaryConstructorArgList.kt

    enum class Enum<expr>(val i: Int)</expr> {
        TEST(45),
        PROBE(45),
        SONDE(45)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 87 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/enumDecl.txt

    expression: CLASS
    text: enum class Enum(val i: Int) {
        TEST(45),
        PROBE(45),
        SONDE(45)
    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 125 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/enumDecl.kt

    <expr>enum class Enum(val i: Int) {
        TEST(45),
        PROBE(45),
        SONDE(45)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 87 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/enumDeclConstructor.kt

    enum class Enum(val i: Int) {
    
        TEST(45),
        PROBE(45),
        SONDE(45);
    
        <expr>constructor(x: String) : this(x.length)</expr>
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 135 bytes
    - Viewed (0)
Back to top