Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 421 for call27 (0.09 sec)

  1. cmd/kube-proxy/app/server_other.go

    )
    
    // platformApplyDefaults is called after parsing command-line flags and/or reading the
    // config file, to apply platform-specific default values to config.
    func (o *Options) platformApplyDefaults(config *proxyconfigapi.KubeProxyConfiguration) {
    }
    
    var unsupportedError = fmt.Errorf(runtime.GOOS + "/" + runtime.GOARCH + "is unsupported")
    
    // platformSetup is called after setting up the ProxyServer, but before creating the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/linuxcontaineruser.go

    }
    
    // WithUID sets the UID field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the UID field is set to the value of the last call.
    func (b *LinuxContainerUserApplyConfiguration) WithUID(value int64) *LinuxContainerUserApplyConfiguration {
    	b.UID = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/runtime/traceruntime.go

    }
    
    // GCSweepSpan traces the sweep of a single span. If this is
    // the first span swept since traceGCSweepStart was called, this
    // will emit a GCSweepBegin event.
    //
    // This may be called outside a traceGCSweepStart/traceGCSweepDone
    // pair; however, it will not emit any trace events in this case.
    //
    // Must be called with a valid P.
    func (tl traceLocker) GCSweepSpan(bytesSwept uintptr) {
    	pp := tl.mp.p.ptr()
    	if pp.trace.maySweep {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. src/runtime/lockrank_off.go

    	return 0
    }
    
    func lockWithRank(l *mutex, rank lockRank) {
    	lock2(l)
    }
    
    // This function may be called in nosplit context and thus must be nosplit.
    //
    //go:nosplit
    func acquireLockRankAndM(rank lockRank) {
    	acquirem()
    }
    
    func unlockWithRank(l *mutex) {
    	unlock2(l)
    }
    
    // This function may be called in nosplit context and thus must be nosplit.
    //
    //go:nosplit
    func releaseLockRankAndM(rank lockRank) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/sync/once.go

    	done atomic.Uint32
    	m    Mutex
    }
    
    // Do calls the function f if and only if Do is being called for the
    // first time for this instance of [Once]. In other words, given
    //
    //	var once Once
    //
    // if once.Do(f) is called multiple times, only the first call will invoke f,
    // even if f has a different value in each invocation. A new instance of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

    /**
     * [KotlinGlobalModificationService] is a central service for the invalidation of caches during/between tests.
     *
     * All `publish` functions must be called in a write action because the events in [KotlinModificationTopics] guarantee that the listener is called in a
     * write action.
     *
     * Implementations of this service should publish global modification events to at least the following components:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

     * and {@link BuildFeatures#getIsolatedProjects() Isolated Projects}.
     *
     * @since 8.8
     */
    @Incubating
    public interface GradleLifecycle {
        /**
         * Adds an {@link IsolatedAction isolated action} to be called immediately before a project is evaluated.
         *
         * Any extensions added to the {@code Project} model will be available to build scripts.
         *
         * @param action The action to execute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/plugin/plugin.go

    	draPlugins.delete(pluginName)
    }
    
    // DeRegisterPlugin is called when a plugin has removed its socket,
    // signaling it is no longer available.
    func (h *RegistrationHandler) DeRegisterPlugin(pluginName string) {
    	klog.InfoS("DeRegister DRA plugin", "name", pluginName)
    	deregisterPlugin(pluginName)
    	h.controller.removePlugin(pluginName)
    }
    
    // ValidatePlugin is called by kubelet's plugin watcher upon detection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// function-valued expression, instead of being called.
    	//
    	// Per the spec:
    	//  "The built-in functions do not have standard Go types, so they can only
    	//  appear in call expressions; they cannot be used as function values."
    	//
    	// Example:
    	//  var _ = copy
    	UncalledBuiltin
    
    	// InvalidAppend occurs when append is called with a first argument that is
    	// not a slice.
    	//
    	// Example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "top-level adder has a convention and is called"     | addToList("foo") | addToList("bar")   | "list = foo, bar"
            "top-level adder has a convention and is not called" | addToList("foo") | ""                 | "list = foo"
            "nested adder has a convention and is called"        | addToBaz("foo")  | addToBaz("bar")    | "baz = foo, bar"
            "nested adder has a convention and is not called"    | addToBaz("foo")  | ""                 | "baz = foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top