Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,540 for Calling (0.22 sec)

  1. src/cmd/compile/internal/typecheck/syms.go

    // must follow the internal calling convention.
    func LookupRuntimeFunc(name string) *obj.LSym {
    	return LookupRuntimeABI(name, obj.ABIInternal)
    }
    
    // LookupRuntimeVar looks up a variable (or assembly function) name in package
    // runtime. If this is a function, it may have a special calling
    // convention.
    func LookupRuntimeVar(name string) *obj.LSym {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/fuzzer/fuzzer.go

    var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(obj *flowcontrol.LimitedPriorityLevelConfiguration, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    
    			// NOTE: setting a zero value here will cause the roundtrip
    			// test (from internal to v1beta2, v1beta1) to fail
    			if obj.NominalConcurrencyShares == 0 {
    				obj.NominalConcurrencyShares = int32(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    					// Ignore context cancelled from webhook metrics
    					if errors.Is(callErr.Reason, context.Canceled) {
    						klog.Warningf("Context canceled when calling webhook %v", hook.Name)
    					} else {
    						klog.Warningf("Failed calling webhook, failing open %v: %v", hook.Name, callErr)
    						admissionmetrics.Metrics.ObserveWebhookFailOpen(ctx, hook.Name, "validating")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerTest.groovy

                true
            }
    
            when:
            controller.load(key, cacheableEntity)
    
            then:
            0 * local.storeLocally(key, _)
        }
    
        def "stops calling through after read error"() {
            local = null
    
            when:
            def controller = getController()
            controller.load(key, cacheableEntity)
            controller.load(key, cacheableEntity)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. pkg/util/filesystem/watcher.go

    // Multiple observed events may collapse to a single invocation of eventHandler().
    //
    // eventHandler() is invoked immediately after successful initialization of the filesystem watch,
    // in case the path changed concurrent with calling WatchUntil().
    func WatchUntil(ctx context.Context, pollInterval time.Duration, path string, eventHandler func(), errorHandler func(err error)) {
    	if pollInterval <= 0 {
    		panic(fmt.Errorf("pollInterval must be > 0"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilitiesResolution.java

     * When there's a capability conflict, this object will let you select
     * what to do in that situation. The configuration can either be global,
     * for <i>any</i> capability by calling the {@link #all(Action)} method,
     * or it can be specific to a capability by calling one of the {@link #withCapability(Object, Action)},
     * {@link #withCapability(Capability, Action)} or {@link #withCapability(String, String, Action)} methods.
     *
     * @since 5.6
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 17:57:43 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/GradlePluginDevelopmentExtension.java

            this.testSourceSets.add(testSourceSet);
        }
    
        /**
         * Provides the source sets executing the functional tests with TestKit.
         * <p>
         * Calling this method multiple times with different source sets is <strong>NOT</strong> additive.  Calling this
         * method will overwrite any existing test source sets with the provided arguments.
         *
         * @param testSourceSets the test source sets
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. src/log/slog/example_log_level_test.go

    import (
    	"log"
    	"log/slog"
    	"log/slog/internal/slogtest"
    	"os"
    )
    
    // This example shows how to use slog.SetLogLoggerLevel to change the minimal level
    // of the internal default handler for slog package before calling slog.SetDefault.
    func ExampleSetLogLoggerLevel_log() {
    	defer log.SetFlags(log.Flags()) // revert changes after the example
    	log.SetFlags(0)
    	defer log.SetOutput(log.Writer()) // revert changes after the example
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/iter/pull_test.go

    		}
    		// Make sure we don't panic again if we try to call next or stop.
    		if _, ok := next(); ok {
    			t.Fatal("next returned true after iterator panicked")
    		}
    		// Calling stop again should be a no-op.
    		stop()
    	})
    	t.Run("stop", func(t *testing.T) {
    		next, stop := Pull(panicCleanupSeq())
    		x, ok := next()
    		if !ok || x != 55 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/io/ioutil/tempfile.go

    // string to the end. If pattern includes a "*", the random string
    // replaces the last "*".
    // If dir is the empty string, TempFile uses the default directory
    // for temporary files (see [os.TempDir]).
    // Multiple programs calling TempFile simultaneously
    // will not choose the same file. The caller can use f.Name()
    // to find the pathname of the file. It is the caller's responsibility
    // to remove the file when no longer needed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top