Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for whatis1 (0.18 sec)

  1. src/runtime/testdata/testprog/gc.go

    	// Clear the condemned memory.
    	runtime.GC()
    
    	// At this point, the background scavenger is likely running
    	// and could pick up the work, so the next line of code doesn't
    	// end up doing anything. That's fine. What's important is that
    	// this test fails somewhat regularly if the runtime doesn't
    	// scavenge on heap growth, and doesn't fail at all otherwise.
    
    	// Make a large allocation that in theory could fit, but won't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  2. src/log/log.go

    	"io"
    	"log/internal"
    	"os"
    	"runtime"
    	"sync"
    	"sync/atomic"
    	"time"
    )
    
    // These flags define which text to prefix to each log entry generated by the [Logger].
    // Bits are or'ed together to control what's printed.
    // With the exception of the Lmsgprefix flag, there is no
    // control over the order they appear (the order listed here)
    // or the format they present (as described in the comments).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. src/net/http/pprof/pprof.go

    	defer t.Stop()
    
    	select {
    	case <-r.Context().Done():
    		err := r.Context().Err()
    		if err == context.DeadlineExceeded {
    			serveError(w, http.StatusRequestTimeout, err.Error())
    		} else { // TODO: what's a good status code for canceled requests? 400?
    			serveError(w, http.StatusInternalServerError, err.Error())
    		}
    		return
    	case <-t.C:
    	}
    
    	p1, err := collectProfile(p)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/debug/dwarf/line_test.go

    			t.Errorf("pathJoin(%q, %q) = %q, want %q", test.dirname, test.filename, got, test.path)
    		}
    	}
    }
    
    func TestPathLineReaderMalformed(t *testing.T) {
    	// This test case drawn from issue #52354. What's happening
    	// here is that the stmtList attribute in the compilation
    	// unit is malformed (negative).
    	var aranges, frame, pubnames, ranges, str []byte
    	abbrev := []byte{0x10, 0x20, 0x20, 0x20, 0x21, 0x20, 0x10, 0x21, 0x61,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/plugin/noderesources.go

    	} else {
    		logger.V(5).Info("Syncing existing driver node resource slices with driver resources", "slices", klog.KObjSlice(slices), "numResources", len(driverResources))
    	}
    
    	// Update stale slices before removing what's left.
    	//
    	// We don't really know which of these slices might have
    	// been used for "the" driver resource because they don't
    	// have a unique ID. In practice, a driver is most likely
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    		threadCount: threads,
    		tokenCount:  tokens,
    	}
    	s.makeTokens()
    	return s
    }
    
    // singleBenchmark collects all the state needed to run a benchmark. The
    // question this benchmark answers is, "what's the average latency added by the
    // cache for N concurrent tokens?"
    //
    // Given the size of the key range constructed by this test, the default go
    // benchtime of 1 second is often inadequate to test caching and expiration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  7. src/encoding/xml/xml_test.go

    	{"\xef\xbf\xbe<doc/>", "illegal character code U+FFFE"},
    	{"<?xml version=\"1.0\"?><doc>\r\n<hiya/>\x07<toots/></doc>", "illegal character code U+0007"},
    	{"<?xml version=\"1.0\"?><doc \x12='value'>what's up</doc>", "expected attribute name in element"},
    	{"<doc>&abc\x01;</doc>", "invalid character entity &abc (no semicolon)"},
    	{"<doc>&\x01;</doc>", "invalid character entity & (no semicolon)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. pkg/controlplane/instance.go

    	ret.EnableVersions(stableAPIGroupVersionsEnabledByDefault...)
    
    	// disable alpha and beta versions explicitly so we have a full list of what's possible to serve
    	ret.DisableVersions(betaAPIGroupVersionsDisabledByDefault...)
    	ret.DisableVersions(alphaAPIGroupVersionsDisabledByDefault...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            // the cache hit. We want the only change to be in the normalization rules so we can be sure that's what's changing the cache key.
            project.buildFile << """
                normalization {
                    runtimeClasspath {
                        if (providers.gradleProperty('${enableFilterFlag}').present) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    			pass.ReportRangef(call, "%s arg %s causes recursive call to %s method", fn.FullName(), analysisutil.Format(pass.Fset, arg), methodName)
    		}
    	}
    }
    
    // count(n, what) returns "1 what" or "N whats"
    // (assuming the plural of what is whats).
    func count(n int, what string) string {
    	if n == 1 {
    		return "1 " + what
    	}
    	return fmt.Sprintf("%d %ss", n, what)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top