Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 761 for course (0.14 sec)

  1. pkg/controller/garbagecollector/garbagecollector.go

    //
    // Note that discoveryClient should NOT be shared with gc.restMapper, otherwise
    // the mapper's underlying discovery client will be unnecessarily reset during
    // the course of detecting new resources.
    func (gc *GarbageCollector) Sync(ctx context.Context, discoveryClient discovery.ServerResourcesInterface, period time.Duration) {
    	oldResources := make(map[schema.GroupVersionResource]struct{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/InternetDomainName.java

     * but given that any public suffix may become a host without warning, it is better to err on the
     * side of permissiveness and thus avoid spurious rejection of valid sites. Of course, to actually
     * determine addressability of any host, clients of this class will need to perform their own DNS
     * lookups.
     *
     * <p>During construction, names are normalized in two ways:
     *
     * <ol>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. src/go/types/named.go

    // Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
    // Source: ../../cmd/compile/internal/types2/named.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.
    
    package types
    
    import (
    	"go/token"
    	"strings"
    	"sync"
    	"sync/atomic"
    )
    
    // Type-checking Named types is subtle, because they may be recursively
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git.go

    	// it is running on a Windows system or not, in an attempt to normalize
    	// text file line endings. Setting -c core.autocrlf=input means only
    	// translate files on the way into the repo, not on the way out (archive).
    	// The -c core.eol=lf should be unnecessary but set it anyway.
    	archive, err := Run(ctx, r.dir, "git", "-c", "core.autocrlf=input", "-c", "core.eol=lf", "archive", "--format=zip", "--prefix=prefix/", info.Name, args)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	// never exceeds pallocChunkDensePages over the course of a single GC cycle, the chunk
    	// becomes eligible for scavenging on the next cycle. If a chunk ever hits this density
    	// threshold it immediately becomes unavailable for scavenging in the current cycle as
    	// well as the next.
    	//
    	// [min, max) represents the range of chunks that is safe to access (i.e. will not cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	// Note that the assist ratio values are updated atomically
    	// but not together. This means there may be some degree of
    	// skew between the two values. This is generally OK as the
    	// values shift relatively slowly over the course of a GC
    	// cycle.
    	assistWorkPerByte := float64(scanWorkRemaining) / float64(heapRemaining)
    	assistBytesPerWork := float64(heapRemaining) / float64(scanWorkRemaining)
    	c.assistWorkPerByte.Store(assistWorkPerByte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    // To avoid this problem, for releases we use the release version string instead
    // of the compiler binary's content hash. This assumes that all compilers built
    // on all different systems are semantically equivalent, which is of course only true
    // modulo bugs. (Producing the exact same executables also requires that the different
    // build setups agree on details like $GOROOT and file name paths, but at least the
    // tool IDs do not make it impossible.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/ipset/ipset_test.go

    		},
    		{ // case[3]
    			portRange: DefaultPortRange,
    			expectErr: false,
    			desc:      "default port range is valid, of course",
    		},
    		{ // case[4]
    			portRange: "12",
    			expectErr: true,
    			desc:      "a single number is invalid",
    		},
    		{ // case[5]
    			portRange: "1-",
    			expectErr: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer_test.go

    		cycle++
    		if cycle == period {
    			cycle = 0
    		}
    		return math.Sin(p) * amp
    	}
    }
    
    // ramp returns a stream that moves from zero to height
    // over the course of length steps.
    func ramp(height float64, length int) float64Stream {
    	var cycle int
    	return func() float64 {
    		h := height * float64(cycle) / float64(length)
    		if cycle < length {
    			cycle++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    In this example, the `moveFile` task uses the `Copy` task type to specify the source and destination directories.
    Inside the `doLast` closure, it uses `File.renameTo()` to move the file from the source directory to the destination directory:
    
    [source,groovy]
    ----
    task moveFile {
        doLast {
            def sourceFile = file('source.txt')
            def destFile = file('destination/new_name.txt')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top