Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 417 for speaking (0.14 sec)

  1. src/math/rand/v2/auto_test.go

    	// order in the deterministic seeded result.
    	var out []int64
    	for i := 0; i < 10; i++ {
    		out = append(out, Int64())
    	}
    
    	// Look for out in seeded output.
    	// Strictly speaking, we should look for them in order,
    	// but this is good enough and not significantly more
    	// likely to have a false positive.
    	r := New(NewPCG(1, 0))
    	found := 0
    	for i := 0; i < 1000; i++ {
    		x := r.Int64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/math/rand/auto_test.go

    	// order in the deterministic Seed(1) result.
    	var out []int64
    	for i := 0; i < 10; i++ {
    		out = append(out, Int63())
    	}
    
    	// Look for out in Seed(1)'s output.
    	// Strictly speaking, we should look for them in order,
    	// but this is good enough and not significantly more
    	// likely to have a false positive.
    	Seed(1)
    	found := 0
    	for i := 0; i < 1000; i++ {
    		x := Int63()
    		if x == out[found] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:49:48 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/punycode.go

    	}
    	delta += delta / numPoints
    	k := int32(0)
    	for delta > ((base-tmin)*tmax)/2 {
    		delta /= base - tmin
    		k += base
    	}
    	return k + (base-tmin+1)*delta/(delta+skew)
    }
    
    // Strictly speaking, the remaining code below deals with IDNA (RFC 5890 and
    // friends) and not Punycode (RFC 3492) per se.
    
    // acePrefix is the ASCII Compatible Encoding prefix.
    const acePrefix = "xn--"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 23:42:56 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  4. src/net/http/example_test.go

    		if err != nil {
    			http.Error(w, err.Error(), http.StatusInternalServerError)
    			return
    		}
    		// Don't forget to close the connection:
    		defer conn.Close()
    		bufrw.WriteString("Now we're speaking raw TCP. Say hi: ")
    		bufrw.Flush()
    		s, err := bufrw.ReadString('\n')
    		if err != nil {
    			log.Printf("error reading string: %v", err)
    			return
    		}
    		fmt.Fprintf(bufrw, "You said: %q\nBye.\n", s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 16:12:45 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            class Rules extends RuleSource {
                @Mutate
                void addTasks(ModelMap<Task> tasks) {
                    tasks.create("actionMan", EchoTask) {
                        text = 'This is your commander speaking'
                    }
                    tasks.create("climbTask", ClimbTask) {}
                    tasks.create("jumpTask", JumpTask) {}
                    tasks.create("overruleTask", OverruleTask) {}
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactLinkedHashMap.java

     * load on the garbage collector by only using a constant number of internal objects.
     *
     * <p>This class should not be assumed to be universally superior to {@code
     * java.util.LinkedHashMap}. Generally speaking, this class reduces object allocation and memory
     * consumption at the price of moderately increased constant factors of CPU. Only use this class
     * when there is a specific reason to prioritize memory over CPU.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_extended_nonce.go

    // only used once as an AES-GCM key with a random 12 byte nonce.  This avoids any concerns around
    // cryptographic wear out (by either number of encryptions or the amount of data being encrypted).
    // Speaking on the cryptographic safety, the limit on the number of operations that can be preformed
    // with a single seed with derived keys and randomly generated nonces is not practically reachable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/StartParameterResolutionOverride.java

            }
        }
    
        private File computeReportDirectory(BuildCommencedTimeProvider timeProvider) {
            // TODO: This is not quite correct: we're using the "root project" build directory
            // but technically speaking, this can be changed _after_ this service is created.
            // There's currently no good way to figure that out.
            File buildDir = new File(gradleDir.getParentFile(), "build");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. cmd/speedtest.go

    				totalGet += result.Downloads
    			}
    
    			if totalGet < throughputHighestGet {
    				// Following check is for situations
    				// when Writes() scale higher than Reads()
    				// - practically speaking this never happens
    				// and should never happen - however it has
    				// been seen recently due to hardware issues
    				// causes Reads() to go slower than Writes().
    				//
    				// Send such results anyways as this shall
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/net/resolverdialfunc_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that Resolver.Dial can be a func returning an in-memory net.Conn
    // speaking DNS.
    
    package net
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"reflect"
    	"slices"
    	"testing"
    	"time"
    
    	"golang.org/x/net/dns/dnsmessage"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top