Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,508 for makeID (0.1 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            """
    
            writeSourceFile()
    
            when:
            run("javadoc")
    
            then:
            file("build/javadoc/Foo.html").exists()
        }
    
        def "changing standard doclet options makes task out-of-date"() {
            buildFile << """
                task javadoc(type: Javadoc) {
                    destinationDir = file("build/javadoc")
                    source "src/main/java"
                    options {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprog/gc.go

    	// unlikely to all be re-allocated by the runtime).
    	const size = 190
    	const count = 8192 / size
    	keep := make([]*byte, 0, (count+1)/2)
    	free := make([]uintptr, 0, (count+1)/2)
    	zombies := make([]*byte, 0, len(free))
    	for i := 0; i < count; i++ {
    		obj := make([]byte, size)
    		p := &obj[0]
    		if i%2 == 0 {
    			keep = append(keep, p)
    		} else {
    			free = append(free, uintptr(unsafe.Pointer(p)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  3. src/crypto/tls/conn_test.go

    	clientConn, serverConn := localPipe(t)
    
    	serverConfig := config.Clone()
    	serverConfig.DynamicRecordSizingDisabled = false
    	tlsConn := Server(serverConn, serverConfig)
    
    	handshakeDone := make(chan struct{})
    	recordSizesChan := make(chan []int, 1)
    	defer func() { <-recordSizesChan }() // wait for the goroutine to exit
    	go func() {
    		// This goroutine performs a TLS handshake over clientConn and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. src/time/sleep_test.go

    )
    
    // newTimerFunc simulates NewTimer using AfterFunc,
    // but this version will not hit the special cases for channels
    // that are used when calling NewTimer.
    // This makes it easy to test both paths.
    func newTimerFunc(d Duration) *Timer {
    	c := make(chan Time, 1)
    	t := AfterFunc(d, func() { c <- Now() })
    	t.C = c
    	return t
    }
    
    // haveHighResSleep is true if the system supports at least ~1ms sleeps.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    		GoVersion: cfg.GoVersion,
    	}
    	info := &types.Info{
    		Types:      make(map[ast.Expr]types.TypeAndValue),
    		Defs:       make(map[*ast.Ident]types.Object),
    		Uses:       make(map[*ast.Ident]types.Object),
    		Implicits:  make(map[ast.Node]types.Object),
    		Instances:  make(map[*ast.Ident]types.Instance),
    		Scopes:     make(map[ast.Node]*types.Scope),
    		Selections: make(map[*ast.SelectorExpr]*types.Selection),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		for i, v := range src.Value {
    			ss.Value[i] += v
    		}
    		return ss
    	}
    
    	// Make new sample.
    	s := &Sample{
    		Location: make([]*Location, len(src.Location)),
    		Value:    make([]int64, len(src.Value)),
    		Label:    make(map[string][]string, len(src.Label)),
    		NumLabel: make(map[string][]int64, len(src.NumLabel)),
    		NumUnit:  make(map[string][]string, len(src.NumLabel)),
    	}
    	for i, l := range src.Location {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy_delta.go

    		upstreamError:     make(chan error), // can be produced by recv and send
    		downstreamError:   make(chan error), // can be produced by recv and send
    		deltaRequestsChan: channels.NewUnbounded[*discovery.DeltaDiscoveryRequest](),
    		// Allow a buffer of 1. This ensures we queue up at most 2 (one in process, 1 pending) responses before forwarding.
    		deltaResponsesChan: make(chan *discovery.DeltaDiscoveryResponse, 1),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. pkg/kube/inject/template.go

    	if err != nil {
    		log.Warnf("Unable to marshal %v: %v", v, err)
    		return "{}"
    	}
    
    	return ba
    }
    
    // Rather than dump the entire proxy config, we remove fields that are default
    // This makes the pod spec much smaller
    // This is not comprehensive code, but nothing will break if this misses some fields
    func cleanProxyConfig(msg proto.Message) proto.Message {
    	originalProxyConfig, ok := msg.(*meshconfig.ProxyConfig)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    	}
    
    	s := preFilterState{
    		Constraints:          constraints,
    		TpKeyToCriticalPaths: make(map[string]*criticalPaths, len(constraints)),
    		TpPairToMatchNum:     make(map[topologyPair]int, sizeHeuristic(len(allNodes), constraints)),
    	}
    
    	tpCountsByNode := make([]map[topologyPair]int, len(allNodes))
    	requiredNodeAffinity := nodeaffinity.GetRequiredNodeAffinity(pod)
    	processNode := func(i int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. src/runtime/chan_test.go

    	if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64le" {
    		testenv.SkipFlaky(t, 22047)
    	}
    	c1 := make(chan byte, trials+1)
    	c2 := make(chan byte, trials+1)
    	for i := 0; i < trials+1; i++ {
    		c1 <- 1
    		c2 <- 2
    	}
    	c3 := make(chan byte)
    	c4 := make(chan byte)
    	out := make(chan byte)
    	done := make(chan byte)
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		for {
    			var b byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
Back to top