Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for course (0.14 sec)

  1. src/net/http/httputil/reverseproxy_test.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Reverse proxy tests.
    
    package httputil
    
    import (
    	"bufio"
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"net/http"
    	"net/http/httptest"
    	"net/http/httptrace"
    	"net/http/internal/ascii"
    	"net/textproto"
    	"net/url"
    	"os"
    	"reflect"
    	"slices"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputContains 'Providing metadata for group:projectA:1.2'
        }
    
        /**
         * Component metadata from an external source only support 2 different types of attributes: boolean or string.
         * Gradle makes the necessary work to coerce those into "real" typed attributes during matching. This test
         * is here to prove that coercion works properly whenever attributes are sourced from a component metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  3. src/strings/strings_test.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strings_test
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"math"
    	"math/rand"
    	"reflect"
    	"strconv"
    	. "strings"
    	"testing"
    	"unicode"
    	"unicode/utf8"
    	"unsafe"
    )
    
    func eq(a, b []string) bool {
    	if len(a) != len(b) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    	})
    	t.Logf("total %d CPU profile samples collected:\n%s", samples, buf.String())
    
    	if samples < 10 && runtime.GOOS == "windows" {
    		// On some windows machines we end up with
    		// not enough samples due to coarse timer
    		// resolution. Let it go.
    		t.Log("too few samples on Windows (golang.org/issue/10842)")
    		return p, false
    	}
    
    	// Check that we got a reasonable number of samples.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. src/net/http/request.go

    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/sagernet/sing
    //   - github.com/v2fly/v2ray-core/v4
    //   - github.com/v2fly/v2ray-core/v5
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname readRequest
    func readRequest(b *bufio.Reader) (req *Request, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/internal/src"
    	"fmt"
    	"math"
    )
    
    type branch int
    
    const (
    	unknown branch = iota
    	positive
    	negative
    	// The outedges from a jump table are jumpTable0,
    	// jumpTable0+1, jumpTable0+2, etc. There could be an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/cache_test.go

    	for _, p := range pods {
    		updatedPod := p.DeepCopy()
    		priority := int32(1000)
    		updatedPod.Spec.Priority = &priority
    		updatedPods = append(updatedPods, updatedPod)
    	}
    
    	// Add a couple of pods with affinity, on the first and seconds nodes.
    	var podsWithAffinity []*v1.Pod
    	for i := 0; i < 2; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    .Setting up working integration tests
    ====
    include::sample[dir="snippets/java/basic/kotlin",files="build.gradle.kts[tags=practical-integ-test-source-set]"]
    include::sample[dir="snippets/java/basic/groovy",files="build.gradle[tags=practical-integ-test-source-set]"]
    ====
    
    This will set up a new source set called `intTest` that automatically creates:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <2> Uses an accessor to configure the `sourceSets` project extension
    <3> Uses an accessor to configure the `main` source set
    <4> Uses an accessor to configure the `java` source for the `main` source set
    <5> Uses an accessor to configure the `test` task
    
    [TIP]
    ====
    Your IDE knows about the type-safe accessors, so it will include them in its suggestions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    		// We don't have source info for these types, so write them out without source info.
    		// Otherwise types would look like:
    		//
    		// type _Ctype_struct_cb struct {
    		// //line :1
    		//        on_test *[0]byte
    		// //line :1
    		// }
    		//
    		// Which is not useful. Moreover we never override source info,
    		// so subsequent source code uses the same source info.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top